/* === BRAND FONTS === */
@font-face {
  font-family: "Kanit";
  src: url("assets/Kanit-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Kanit";
  src: url("assets/Kanit-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hind";
  src: url("assets/Hind-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hind";
  src: url("assets/Hind-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ===========================================
   FIXED 16:9 STAGE: MANDATORY BASE STYLES
   Slides are authored at 1920x1080 and scaled as a whole.
   =========================================== */
html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--stage-bg, #071c2d);
}

.deck-viewport {
  position: fixed;
  inset: 0;
  overflow: hidden;
  background: var(--stage-bg, #071c2d);
}

.deck-stage {
  position: absolute;
  left: 0;
  top: 0;
  width: 1920px;
  height: 1080px;
  overflow: hidden;
  transform-origin: 0 0;
  background: var(--paper, #f6f6f3);
}

.slide {
  position: absolute;
  inset: 0;
  width: 1920px;
  height: 1080px;
  overflow: hidden;
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background: var(--paper, #f6f6f3);
}

/* Shared stacked-paper edge, carried across the full deck. */
.deck-rail {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 20;
  width: 56px;
  height: 1080px;
  pointer-events: none;
  background: linear-gradient(180deg, var(--navy) 0%, var(--green) 52%, var(--brand-grey) 100%);
  clip-path: path("M 0 0 H 56 A 28 28 0 0 0 28 28 V 1052 A 28 28 0 0 0 56 1080 H 0 Z");
}

.slide.active,
.slide.visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

img,
video,
canvas,
svg {
  max-width: 100%;
  max-height: 100%;
}

.deck-controls {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  background: rgba(7,28,45,0.86);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
  color: #fff;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 180ms ease;
}

body:hover .deck-controls,
.deck-controls:focus-within {
  opacity: 1;
}

.deck-controls button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #fff;
  font: 500 28px/1 "Kanit", sans-serif;
  cursor: pointer;
}

.deck-controls button:hover,
.deck-controls button:focus-visible {
  outline: none;
  background: rgba(255,255,255,0.12);
}

#slide-counter {
  min-width: 74px;
  text-align: center;
  font: 500 14px/1 "Kanit", sans-serif;
}

@media print {
  @page {
    size: 13.333333in 7.5in;
    margin: 0;
  }

  html,
  body {
    width: 1920px;
    height: auto;
    overflow: visible;
    background: #fff;
  }

  .deck-viewport {
    position: static;
    overflow: visible;
    background: #fff;
  }

  .deck-stage {
    position: static;
    width: auto;
    height: auto;
    transform: none !important;
    background: none;
  }

  .slide {
    position: relative;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    width: 1920px;
    height: 1080px;
    break-after: page;
    page-break-after: always;
  }

  .slide:last-child {
    break-after: auto;
    page-break-after: auto;
  }

  .deck-controls {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.2s !important;
  }
}

/* Applied only by the PDF renderer so every captured slide is in its final state. */
.pdf-render *,
.pdf-render *::before,
.pdf-render *::after {
  animation: none !important;
  transition: none !important;
}

.pdf-render .reveal,
.pdf-render .reveal-left,
.pdf-render .reveal-scale {
  opacity: 1 !important;
  transform: none !important;
}

/* === CRUSTAL DESIGN TOKENS === */
:root {
  /* Core brand sequence: navy -> green -> grey -> yellow. */
  --navy: #0b2c48;
  --deep-navy: #071c2d;
  --green: #1c4b2e;
  --gold: #f8b51f;
  --brand-grey: #5a5a5a;

  /* Authoritative tonal scales supplied with the Crustal palette. */
  --blue-100: #cee0fb;
  --blue-200: #89baf7;
  --blue-300: #3996e5;
  --blue-400: #2870ad;
  --blue-500: #194d79;
  --blue-700: #031221;
  --green-100: #cdfcdb;
  --green-200: #69ee9c;
  --green-300: #54c27e;
  --green-400: #409862;
  --green-500: #2e7047;
  --green-700: #0c2917;
  --grey-100: #f1f1f1;
  --grey-200: #c9c9c9;
  --grey-300: #a3a3a3;
  --grey-400: #7d7d7d;
  --grey-600: #393939;
  --grey-700: #1b1b1b;
  --yellow-100: #fee5c8;
  --yellow-300: #c79117;
  --yellow-400: #996e0f;
  --yellow-500: #6c4d07;
  --yellow-600: #432e03;
  --yellow-700: #1e1201;
  --cool-grey-100: #dddee0;
  --cool-grey-200: #b5b6ba;
  --cool-grey-300: #8e9096;
  --cool-grey-400: #6a6c70;
  --cool-grey-500: #484a4d;
  --cool-grey-600: #292a2c;
  --cool-grey-700: #101112;

  --ink: #101b22;
  --paper: #f6f6f3;
  --white: #ffffff;
  --muted: #687078;
  /* The deck uses spacing and colour blocks rather than neutral hairlines. */
  --line: transparent;
  --soft-green: #e8efe9;
  --soft-blue: #e8edf1;
  --soft-gold: #fff2d1;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

body {
  color: var(--ink);
  font-family: "Hind", sans-serif;
}

.copy {
  margin: 0;
  letter-spacing: 0;
}

.multiline {
  white-space: pre-line;
}

.brand-mark {
  position: absolute;
  left: 102px;
  top: 55px;
  width: 220px;
  height: 80px;
  object-fit: contain;
  object-position: left center;
  z-index: 20;
}

.brand-mark.small {
  left: auto;
  right: 92px;
  top: 46px;
  width: 180px;
  height: 62px;
}

.slide-number {
  position: absolute;
  right: 72px;
  bottom: 42px;
  z-index: 30;
  color: var(--muted);
  font: 500 20px/1 "Kanit", sans-serif;
}

.source-line {
  position: absolute;
  left: 102px;
  right: 170px;
  bottom: 38px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.2;
}

.source-line.dark {
  color: rgba(255,255,255,0.66);
}

.slide-kicker,
.appendix-code {
  color: var(--green);
  font: 600 22px/1.1 "Kanit", sans-serif;
  text-transform: uppercase;
  font-variant-ligatures: none;
  font-feature-settings: "liga" 0, "clig" 0;
  letter-spacing: 0.01em;
}

.slide-kicker::before,
.appendix-code::before {
  content: "";
  display: inline-block;
  width: 52px;
  height: 7px;
  margin: 0 18px 3px 0;
  border-radius: 7px;
  background: var(--gold);
}

.slide-title {
  color: var(--navy);
  font: 500 46px/1.13 "Kanit", sans-serif;
}

.slide-title.compact {
  font-size: 42px;
  line-height: 1.12;
}

.std-header {
  position: absolute;
  left: 102px;
  top: 80px;
  right: 98px;
  min-height: 190px;
}

.std-header.has-brand {
  top: 155px;
}

.std-header .slide-title {
  max-width: 1560px;
}

.std-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  display: none;
}

.section-label {
  color: var(--green);
  font: 600 20px/1.1 "Kanit", sans-serif;
  text-transform: uppercase;
}

.section-title {
  color: var(--navy);
  font: 500 29px/1.15 "Kanit", sans-serif;
}

.body-copy {
  color: #283138;
  font-size: 24px;
  line-height: 1.28;
}

.body-copy.small {
  font-size: 21px;
  line-height: 1.25;
}

.metric-value {
  color: var(--navy);
  font: 500 53px/1 "Kanit", sans-serif;
}

.metric-label {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.15;
}

.img-frame {
  overflow: hidden;
  border-radius: 28px;
}

.img-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-placeholder {
  position: relative;
  display: grid;
  place-content: center;
  padding: 52px;
  overflow: hidden;
  border: 2px solid rgba(11,44,72,0.2);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(11,44,72,0.03), rgba(28,75,46,0.08)),
    repeating-linear-gradient(0deg, transparent 0 68px, rgba(11,44,72,0.06) 69px 70px),
    repeating-linear-gradient(90deg, transparent 0 68px, rgba(11,44,72,0.06) 69px 70px),
    var(--white);
  text-align: center;
}

.visual-placeholder::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 30px;
  width: 84px;
  height: 8px;
  border-radius: 8px;
  background: var(--gold);
}

.visual-placeholder .placeholder-label {
  margin-bottom: 24px;
  color: var(--green);
  font: 600 18px/1 "Kanit", sans-serif;
}

.visual-placeholder .placeholder-title {
  max-width: 700px;
  color: var(--navy);
  font: 500 34px/1.14 "Kanit", sans-serif;
}

.visual-placeholder .placeholder-note {
  max-width: 700px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.2;
}

.conclusion-band {
  position: absolute;
  left: 102px;
  right: 102px;
  bottom: 105px;
  min-height: 92px;
  display: flex;
  align-items: center;
  padding: 22px 32px;
  border-radius: 16px;
  background: var(--navy);
  color: var(--white);
  font: 500 25px/1.2 "Kanit", sans-serif;
}

/* === COVER === */
.cover-slide {
  background: var(--deep-navy);
}

.cover-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 28, 45, 0.91) 0%, rgba(7, 28, 45, 0.74) 42%, rgba(7, 28, 45, 0.22) 74%, rgba(7, 28, 45, 0.06) 100%),
    linear-gradient(145deg, rgba(28, 75, 46, 0.32) 0%, rgba(28, 75, 46, 0.05) 54%, transparent 72%),
    radial-gradient(circle at 82% 84%, rgba(248, 181, 31, 0.12), transparent 34%);
}

.cover-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 0;
}

.cover-image::after {
  display: none;
}

.cover-logo-field {
  position: absolute;
  right: 86px;
  top: 56px;
  width: 242px;
  height: 82px;
  z-index: 3;
}

.cover-logo-field .brand-mark {
  position: static;
  width: 242px;
  height: 82px;
  filter: none;
}

.cover-kicker {
  position: absolute;
  left: 102px;
  top: 210px;
  z-index: 2;
  color: var(--gold);
  font: 600 20px/1 "Kanit", sans-serif;
}

.cover-title-logo {
  position: absolute;
  left: 102px;
  top: 290px;
  z-index: 2;
  width: 760px;
  height: 280px;
}

.cover-title-logo .brand-mark {
  position: static;
  width: 760px;
  height: auto;
}

.cover-tagline {
  position: absolute;
  left: 102px;
  top: 620px;
  z-index: 2;
  width: 900px;
  color: var(--white);
  font: 500 48px/1.12 "Kanit", sans-serif;
  text-shadow: 0 3px 20px rgba(7, 28, 45, 0.28);
}

.cover-subtitle {
  position: absolute;
  left: 102px;
  top: 780px;
  z-index: 2;
  width: 800px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 28px;
  line-height: 1.2;
  text-shadow: 0 2px 14px rgba(7, 28, 45, 0.24);
}

.cover-ticker {
  position: absolute;
  left: 102px;
  bottom: 92px;
  z-index: 2;
  color: var(--gold);
  font: 500 24px/1 "Kanit", sans-serif;
}

/* === IMPORTANT INFORMATION === */
.legal-slide {
  background: var(--paper);
}

.legal-slide .legal-header {
  position: absolute;
  left: 102px;
  top: 92px;
}

.legal-slide .legal-title {
  margin: 0;
  color: var(--navy);
  font: 500 52px/1 "Kanit", sans-serif;
}

.legal-grid {
  position: absolute;
  left: 102px;
  right: 154px;
  top: 215px;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.legal-item {
  margin: 0;
  padding: 0;
}

.legal-copy {
  color: #30383e;
  font-size: 23px;
  line-height: 1.42;
}

.legal-footer {
  position: absolute;
  left: 102px;
  bottom: 76px;
  color: var(--green);
  font: 500 20px/1.2 "Kanit", sans-serif;
}

/* === INVESTMENT CASE === */
.investment-slide {
  background: linear-gradient(90deg, var(--paper) 0 69%, var(--deep-navy) 69% 100%);
}

.investment-title-area {
  position: absolute;
  left: 102px;
  top: 152px;
  width: 1140px;
  z-index: 5;
}

.investment-title-area .slide-title {
  margin-top: 22px;
  font-size: 44px;
}

.investment-logic {
  position: absolute;
  left: 102px;
  top: 432px;
  width: 1060px;
  z-index: 6;
}

.investment-point {
  position: relative;
  display: grid;
  grid-template-columns: 64px 350px 1fr;
  min-height: 136px;
  padding: 0 0 18px;
}

.investment-index {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 2px solid var(--green);
  border-radius: 50%;
  background: var(--paper);
  color: var(--green);
  font: 600 20px/1 "Kanit", sans-serif;
}

.investment-heading {
  margin: 5px 30px 0 20px;
  color: var(--navy);
  font: 500 25px/1.16 "Kanit", sans-serif;
}

.investment-body {
  color: #2b3237;
  font-size: 21px;
  line-height: 1.28;
}

.investment-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 660px;
  height: 1080px;
  border-radius: 30px 0 0 30px;
}

.investment-image img {
  object-position: 100% 50%;
}

.investment-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,28,45,0.05), rgba(7,28,45,0.72));
}

.valuation-callout {
  position: absolute;
  right: 78px;
  top: 580px;
  z-index: 8;
  width: 498px;
  min-height: 292px;
  padding: 34px 42px 38px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 18px;
  background: rgba(7,28,45,0.92);
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
}

.valuation-callout .investment-index {
  position: absolute;
  top: 24px;
  right: 30px;
  width: auto;
  height: auto;
  border: 0;
  background: none;
  color: var(--gold);
  box-shadow: none;
}

.valuation-callout .investment-heading {
  max-width: 370px;
  margin: 0 0 9px;
  color: var(--white);
  font-size: 28px;
}

.valuation-callout .investment-body {
  color: rgba(255,255,255,0.82);
}

.investment-caption {
  position: absolute;
  right: 72px;
  bottom: 50px;
  z-index: 8;
  color: rgba(255,255,255,0.84);
  font: 500 18px/1 "Kanit", sans-serif;
}

.stat-strip {
  position: absolute;
  right: 50px;
  top: 520px;
  z-index: 8;
  width: 548px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.stat-strip .stat {
  min-height: 154px;
  padding: 26px 26px 22px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  background: rgba(7,28,45,0.86);
  box-shadow: 0 16px 34px rgba(0,0,0,0.16);
}

.stat-strip .stat + .stat {
  padding-left: 26px;
}

.stat-strip .metric-value {
  color: var(--white);
  font-size: 40px;
}

.stat-strip .metric-label {
  margin-top: 8px;
  color: rgba(255,255,255,0.82);
  font-size: 18px;
  line-height: 1.15;
}

/* === THREE-COLUMN ANALYSIS === */
.analysis-grid {
  position: absolute;
  left: 102px;
  right: 102px;
  top: 300px;
  bottom: 230px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}

.analysis-column {
  position: relative;
  padding: 40px 28px 0 0;
  border-top: 8px solid var(--navy);
}

.analysis-column:nth-child(1) {
  border-color: var(--gold);
}

.analysis-column:nth-child(2) {
  border-color: var(--green);
}

.analysis-column + .analysis-column {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

/* Slide 4: keep the macro table clear of its long title and unruled. */
.analysis-slide .analysis-grid {
  top: 340px;
}

.analysis-slide .analysis-column + .analysis-column {
  border-left: 0;
}

.analysis-slide .std-header::after {
  display: none;
}

.analysis-column .section-title {
  min-height: 72px;
  margin-bottom: 28px;
}

.analysis-column .body-copy {
  font-size: 21px;
  line-height: 1.26;
}

.policy-column {
  padding-top: 0;
  border-top: 0;
}

.policy-number {
  margin-bottom: 24px;
  color: var(--gold);
  font: 600 23px/1 "Kanit", sans-serif;
}

.policy-column .section-title {
  padding-top: 22px;
  border-top: 7px solid var(--navy);
}

.policy-column:nth-child(2) .section-title {
  border-color: var(--green);
}

.policy-column:nth-child(3) .section-title {
  border-color: var(--gold);
}

/* Slide 5 follows the unruled, lower three-column treatment used on slide 4. */
.policy-slide .analysis-grid {
  top: 340px;
}

.policy-slide .analysis-column + .analysis-column {
  border-left: 0;
}

.policy-slide .std-header::after {
  display: none;
}

.policy-slide .policy-column .section-title {
  padding-top: 40px;
}

/* === SWEDEN === */
.sweden-layout {
  position: absolute;
  left: 102px;
  right: 102px;
  top: 340px;
  bottom: 230px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}

.sweden-copy-block {
  padding: 40px 28px 0 0;
  border-top: 8px solid var(--navy);
}

.sweden-copy-block:nth-child(2) {
  border-color: var(--green);
}

.sweden-copy-block:nth-child(3) {
  border-color: var(--brand-grey);
}

.sweden-copy-block .section-title {
  min-height: 72px;
  margin-bottom: 28px;
}

.sweden-copy-block .body-copy {
  font-size: 21px;
  line-height: 1.26;
}

.sweden-slide .std-header::after {
  display: none;
}

.sweden-photo {
  position: relative;
  border-radius: 24px;
}

.sweden-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(7,28,45,0.76));
}

.sweden-photo-copy {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 30px;
  z-index: 3;
  color: var(--white);
}

.sweden-photo-copy .section-title,
.sweden-photo-copy .body-copy,
.sweden-photo-copy .section-label {
  color: inherit;
}

.sweden-photo-copy .body-copy {
  font-size: 19px;
}

.sweden-combined {
  display: grid;
  grid-template-rows: 1.12fr 0.88fr;
  gap: 20px;
}

.sweden-combined .sweden-photo {
  min-height: 0;
}

.sweden-photo-meta {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  z-index: 4;
  color: var(--white);
}

.sweden-photo-meta .section-label,
.sweden-photo-meta .section-title,
.sweden-photo-meta .body-copy {
  color: inherit;
}

.sweden-photo-meta .section-label {
  font-size: 14px;
}

.sweden-photo-meta .section-title {
  margin-top: 7px;
  font-size: 23px;
}

.sweden-photo-meta .body-copy {
  margin-top: 5px;
  font-size: 16px;
}

.sweden-execution {
  padding: 24px 26px;
  border-radius: 18px;
  background: var(--navy);
}

.sweden-execution .section-title,
.sweden-execution .body-copy {
  color: var(--white);
}

.sweden-execution .section-title {
  margin-bottom: 10px;
  font-size: 25px;
}

.sweden-execution .body-copy {
  font-size: 17px;
  line-height: 1.18;
}

/* === BUSINESS MODEL === */
.model-flow {
  position: absolute;
  left: 102px;
  right: 102px;
  top: 310px;
  height: 445px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.model-step {
  position: relative;
  padding: 98px 42px 40px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: none;
}

.model-step:nth-child(2) {
  background: var(--soft-green);
}

.model-step:nth-child(3) {
  background: var(--navy);
}

.model-number {
  position: absolute;
  left: 42px;
  top: 30px;
  color: var(--gold);
  font: 600 24px/1 "Kanit", sans-serif;
}

.model-step .section-title {
  margin-bottom: 24px;
  font-size: 35px;
}

.model-step .body-copy {
  font-size: 22px;
}

.model-step:nth-child(3) .section-title,
.model-step:nth-child(3) .body-copy {
  color: var(--white);
}

.business-model-slide .model-examples {
  min-height: 104px;
  text-align: left;
}

/* === EXPLORATION PHILOSOPHY === */
.philosophy-layout {
  position: absolute;
  left: 102px;
  right: 102px;
  top: 300px;
  bottom: 75px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
}

.philosophy-sequence {
  position: relative;
  padding-left: 72px;
}

.philosophy-sequence::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 28px;
  height: 430px;
  width: 5px;
  border-radius: 5px;
  background: linear-gradient(var(--gold), var(--green));
}

.philosophy-step {
  position: relative;
  min-height: 142px;
  padding: 10px 0 18px;
}

.philosophy-number {
  position: absolute;
  left: -72px;
  top: 5px;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 2px solid var(--green);
  border-radius: 50%;
  background: var(--paper);
  color: var(--green);
  font: 600 21px/1 "Kanit", sans-serif;
}

.philosophy-step .section-title {
  margin-bottom: 10px;
  font-size: 28px;
}

.philosophy-step .body-copy {
  font-size: 21px;
}

.application-panel {
  align-self: stretch;
  padding: 40px 42px;
  border-radius: 24px;
  background: var(--navy);
  color: var(--white);
}

.application-panel > .section-title {
  margin-bottom: 34px;
  color: var(--white);
  font-size: 34px;
}

.application-item {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.application-item .section-label {
  margin-bottom: 9px;
  color: var(--gold);
  font-size: 17px;
}

.application-item .body-copy {
  color: rgba(255,255,255,0.86);
  font-size: 21px;
}

/* === PORTFOLIO === */
.portfolio-layout {
  position: absolute;
  left: 102px;
  right: 102px;
  top: 300px;
  bottom: 105px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 675px;
  gap: 54px;
}

.portfolio-list {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  padding-bottom: 130px;
}

.portfolio-item {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  align-content: center;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.portfolio-item:first-child {
  border-top: 7px solid var(--gold);
}

.portfolio-item .portfolio-name {
  color: var(--navy);
  font: 500 31px/1.13 "Kanit", sans-serif;
}

.portfolio-item .section-label {
  margin-bottom: 10px;
  font-size: 17px;
}

.portfolio-item .body-copy {
  font-size: 21px;
}

.portfolio-map {
  width: 675px;
  height: 675px;
  align-self: start;
  border-radius: 0;
  background: var(--white);
}

.portfolio-map img {
  object-fit: contain;
}

.portfolio-summary {
  right: auto;
  width: 987px;
}

.portfolio-logic {
  position: absolute;
  left: 102px;
  right: 102px;
  bottom: 90px;
  min-height: 92px;
  display: flex;
  align-items: center;
  padding: 20px 30px;
  border-left: 8px solid var(--green);
  background: var(--soft-blue);
  color: var(--navy);
  font: 500 24px/1.2 "Kanit", sans-serif;
}

/* === GLADHAMMAR FOUNDATION === */
.gladhammar-slide {
  background: linear-gradient(90deg, var(--paper) 0 67%, var(--deep-navy) 67% 100%);
}

.gladhammar-header {
  position: absolute;
  left: 102px;
  top: 170px;
  z-index: 4;
  width: 1080px;
}

.gladhammar-header .slide-title {
  margin-top: 22px;
  font-size: 44px;
}

.gladhammar-list {
  position: absolute;
  left: 102px;
  top: 445px;
  z-index: 5;
  width: 950px;
}

.gladhammar-item {
  display: grid;
  grid-template-columns: 66px 320px 1fr;
  min-height: 142px;
  padding: 8px 0 18px;
  border-top: 1px solid var(--line);
}

.gladhammar-item:first-child {
  border-top: 7px solid var(--gold);
}

.gladhammar-item .investment-index {
  margin-top: 6px;
}

.gladhammar-item .section-title {
  margin: 9px 26px 0 10px;
  font-size: 27px;
}

.gladhammar-item .body-copy {
  padding-top: 8px;
  font-size: 20px;
}

.gladhammar-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 670px;
  height: 1080px;
  border-radius: 30px 0 0 30px;
}

.gladhammar-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,28,45,0.02), rgba(7,28,45,0.72));
}

.gladhammar-caption {
  position: absolute;
  right: 70px;
  bottom: 66px;
  z-index: 7;
  width: 500px;
  color: var(--white);
}

.gladhammar-caption .section-label {
  color: var(--gold);
}

.gladhammar-caption .body-copy {
  margin-top: 12px;
  color: var(--white);
  font-size: 22px;
}

/* === WORKSTREAMS === */
.workstream-grid {
  position: absolute;
  left: 102px;
  right: 102px;
  top: 300px;
  bottom: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.workstream {
  position: relative;
  padding: 40px 34px 34px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(11,44,72,0.07);
}

.workstream:nth-child(2) {
  background: var(--soft-green);
}

.workstream:nth-child(3) {
  background: var(--soft-blue);
}

.workstream .section-label {
  margin-bottom: 18px;
  color: var(--gold);
}

.workstream .section-title {
  min-height: 74px;
  margin-bottom: 22px;
  font-size: 29px;
}

.workstream .body-copy {
  font-size: 20px;
  line-height: 1.25;
}

.next-evidence {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 32px;
  padding-top: 20px;
  border-top: 2px solid var(--navy);
}

.next-evidence .section-label {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 16px;
}

.next-evidence .body-copy {
  color: var(--navy);
  font-size: 19px;
  font-weight: 600;
}

/* === TABLE SYSTEM === */
.data-table {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.table-cell {
  min-width: 0;
  padding: 16px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #2c343a;
  font-size: 18px;
  line-height: 1.18;
}

.table-cell.header {
  display: flex;
  align-items: center;
  background: var(--navy);
  color: var(--white);
  font: 500 18px/1.1 "Kanit", sans-serif;
}

.table-cell.key {
  color: var(--navy);
  font-weight: 600;
}

.table-cell.last-col {
  border-right: 0;
}

.table-cell.last-row {
  border-bottom: 0;
}

.pipeline-table {
  position: absolute;
  left: 102px;
  right: 102px;
  top: 300px;
  bottom: 162px;
  grid-template-columns: 0.82fr 1fr 1.55fr 1.4fr;
  grid-template-rows: 58px repeat(5, 1fr);
}

.pipeline-note {
  position: absolute;
  left: 102px;
  right: 102px;
  bottom: 74px;
  color: var(--green);
  font: 500 22px/1.2 "Kanit", sans-serif;
}

/* === TEAM === */
.team-layout {
  position: absolute;
  left: 102px;
  right: 102px;
  top: 300px;
  bottom: 168px;
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 54px;
}

.team-section {
  position: relative;
  padding-top: 54px;
  border-top: 8px solid var(--navy);
}

.team-section.technical {
  border-color: var(--green);
}

.team-header {
  margin-bottom: 28px;
  color: var(--navy);
  font: 500 36px/1 "Kanit", sans-serif;
}

.team-person {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 26px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.team-name {
  color: var(--navy);
  font: 500 22px/1.15 "Kanit", sans-serif;
}

.team-copy {
  color: #31383d;
  font-size: 19px;
  line-height: 1.22;
}

.ceo-block {
  margin-top: 24px;
  padding: 22px 24px;
  border-radius: 16px;
  background: var(--soft-gold);
}

.ceo-block .section-label {
  margin-bottom: 10px;
  font-size: 16px;
}

.ceo-block .team-person {
  padding: 0;
  border: 0;
}

.team-metric {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.team-metrics {
  position: absolute;
  left: 102px;
  right: 102px;
  bottom: 62px;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 112px;
  padding: 14px 42px;
  border-top: 6px solid var(--gold);
  background: var(--soft-grey);
}

.team-metric .metric-value {
  color: var(--gold);
  font: 600 58px/1 "Kanit", sans-serif;
}

.team-metric .metric-label {
  color: var(--green);
  max-width: 260px;
  font: 500 18px/1.1 "Kanit", sans-serif;
}

.team-compliance {
  position: absolute;
  left: 102px;
  right: 102px;
  bottom: 55px;
  color: var(--green);
  font: 500 20px/1.1 "Kanit", sans-serif;
  text-align: center;
}

/* === FUNDING === */
.funding-layout {
  position: absolute;
  left: 102px;
  right: 102px;
  top: 320px;
  bottom: 110px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 64px;
}

.funding-right {
  display: grid;
  grid-template-rows: 0.76fr 1.24fr;
  gap: 22px;
  min-height: 0;
}

.cash-panel {
  padding: 44px 46px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(11,44,72,0.08);
}

.cash-panel .section-label {
  margin-bottom: 20px;
}

.cash-total {
  color: var(--navy);
  font: 500 70px/1 "Kanit", sans-serif;
}

.cash-date {
  margin-top: 8px;
  color: var(--muted);
  font-size: 21px;
}

.mini-table {
  display: grid;
  margin-top: 42px;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  border-top: 2px solid var(--navy);
}

.mini-table .table-cell {
  padding: 13px 12px;
  font-size: 18px;
}

.mini-table .table-cell.header {
  background: transparent;
  color: var(--green);
  font-size: 16px;
}

.cash-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
}

.programme-panel {
  position: relative;
  padding: 34px 42px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--navy);
  color: var(--white);
}

.programme-panel::after {
  content: "";
  position: absolute;
  right: -76px;
  bottom: -106px;
  width: 280px;
  height: 280px;
  border: 34px solid rgba(248,181,31,0.18);
  border-radius: 50%;
}

.programme-panel .section-label {
  margin-bottom: 12px;
  color: var(--gold);
}

.reporting-panel {
  padding: 32px 42px;
  border-radius: 24px;
  background: var(--soft-grey);
}

.reporting-list {
  margin-top: 17px;
}

.reporting-item {
  display: grid;
  grid-template-columns: 162px minmax(0, 1fr);
  gap: 16px;
  padding: 15px 0;
  border-top: 1px solid rgba(11,44,72,0.14);
}

.reporting-date {
  color: var(--green);
  font: 500 18px/1.2 "Kanit", sans-serif;
}

.reporting-copy {
  color: var(--navy);
  font-size: 19px;
  line-height: 1.2;
}

.programme-title {
  color: var(--white);
  font: 500 42px/1.04 "Kanit", sans-serif;
}

.programme-copy {
  position: relative;
  z-index: 2;
  margin-top: 13px;
  color: rgba(255,255,255,0.78);
  font-size: 18px;
  line-height: 1.25;
}

/* === OWNERSHIP === */
.ownership-layout {
  position: absolute;
  left: 102px;
  right: 102px;
  top: 295px;
  bottom: 228px;
  display: grid;
  grid-template-columns: 510px 1fr;
  gap: 48px;
}

.ownership-panel {
  padding: 28px 30px;
  border-top: 8px solid var(--navy);
}

.ownership-left {
  display: grid;
  grid-template-rows: 218px 1fr;
  gap: 26px;
}

.ownership-ceo {
  border-color: var(--gold);
  background: var(--soft-gold);
}

.ownership-warrants {
  border-color: var(--green);
  background: var(--soft-grey);
}

.ownership-shareholders {
  padding-bottom: 20px;
}

.ownership-panel .section-title {
  margin-bottom: 20px;
  font-size: 28px;
}

.ownership-big {
  color: var(--navy);
  font: 600 47px/1 "Kanit", sans-serif;
}

.ceo-ownership-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.ownership-big-label,
.ownership-date {
  margin-top: 8px;
  color: var(--muted);
  font-size: 19px;
}

.ownership-date {
  margin-top: 17px;
  font-size: 16px;
}

.ownership-banner {
  position: absolute;
  left: 102px;
  right: 102px;
  bottom: 80px;
  min-height: 104px;
  display: grid;
  grid-template-columns: 1fr 600px;
  align-items: stretch;
  background: var(--navy);
  border-top: 7px solid var(--gold);
}

.ownership-capital .capital-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 100%;
}

.ownership-capital .capital-list > * {
  padding: 20px 15px 0;
  color: rgba(255,255,255,0.72);
  font: 500 15px/1.15 "Kanit", sans-serif;
}

.ownership-capital .capital-list .label:nth-child(odd) {
  grid-row: 1;
}

.ownership-capital .capital-list .value {
  grid-row: 2;
  align-self: start;
  padding-top: 1px;
  color: var(--white);
  font: 600 23px/1 "Kanit", sans-serif;
}

.warrant-total {
  color: var(--green);
  font: 600 48px/1 "Kanit", sans-serif;
}

.warrant-label {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.warrant-summary {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 14px;
}

.ownership-warrants .body-copy {
  font-size: 18px;
  line-height: 1.25;
}

.shareholder-table {
  display: grid;
  grid-template-columns: 2.35fr 0.72fr 0.95fr 0.72fr 0.78fr;
  font-size: 16px;
}

.shareholder-cell {
  min-height: 39px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 5px 10px;
  color: #30383d;
  background: rgba(11,44,72,0.035);
}

.shareholder-cell.key {
  justify-content: flex-start;
}

.shareholder-cell.header {
  min-height: 43px;
  color: var(--white);
  background: var(--navy);
  font: 500 16px/1 "Kanit", sans-serif;
}

.shareholder-cell.emphasis {
  color: var(--navy);
  background: var(--soft-gold);
  font-weight: 600;
}

.ownership-table-note {
  margin-top: 13px;
  color: var(--muted);
  font-size: 15px;
}

.ownership-listing {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: var(--white);
  border-left: 1px solid rgba(255,255,255,0.25);
  font: 500 18px/1 "Kanit", sans-serif;
  text-align: center;
  white-space: nowrap;
}

/* === MARKET CAPITALISATION === */
.market-layout {
  position: absolute;
  left: 102px;
  right: 102px;
  top: 320px;
  bottom: 105px;
  display: grid;
  grid-template-columns: 1fr 410px;
  gap: 54px;
}

.market-chart {
  position: relative;
  padding: 2px 16px 52px 220px;
}

.market-row {
  position: relative;
  height: 32px;
}

.market-label {
  position: absolute;
  right: calc(100% + 16px);
  top: 5px;
  width: 205px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1;
  text-align: right;
}

.market-label.crustal {
  color: var(--green);
  font-weight: 600;
}

.market-bar {
  position: absolute;
  left: 0;
  top: 8px;
  height: 18px;
  min-width: 8px;
  border-radius: 9px;
  background: var(--navy);
}

.market-bar.crustal {
  background: var(--gold);
}

.market-grid {
  position: absolute;
  left: 220px;
  right: 16px;
  top: 0;
  bottom: 49px;
  z-index: -1;
  background: repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 20%);
}

.market-axis {
  position: absolute;
  left: 220px;
  right: 16px;
  bottom: 22px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 15px;
}

.market-axis-title {
  position: absolute;
  left: 220px;
  right: 16px;
  bottom: 0;
  color: var(--muted);
  font-size: 16px;
  text-align: center;
}

.market-summary {
  padding: 42px 38px;
  border-radius: 24px;
  background: var(--navy);
  color: var(--white);
}

.market-summary .section-label {
  color: var(--gold);
}

.market-summary-value {
  margin: 28px 0 34px;
  color: var(--white);
  font: 500 61px/1 "Kanit", sans-serif;
}

.market-summary .body-copy {
  color: rgba(255,255,255,0.84);
  font-size: 21px;
}

.market-interpretation {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 5px solid var(--gold);
  color: var(--white);
  font: 500 21px/1.2 "Kanit", sans-serif;
}

/* === SHARE-PRICE PERFORMANCE === */
.stock-layout {
  position: absolute;
  top: 230px;
  right: 102px;
  bottom: 104px;
  left: 102px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 245px;
  gap: 38px;
}

.stock-chart-canvas {
  min-width: 0;
  padding: 14px 14px 8px 0;
  background: var(--white);
}

.stock-chart-canvas svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.stock-grid {
  stroke: rgba(11, 44, 72, 0.14);
  stroke-width: 1;
}

.stock-grid.vertical {
  stroke-dasharray: 3 4;
}

.stock-axis-label {
  fill: var(--muted);
  font: 16px "Hind", sans-serif;
}

.stock-area {
  fill: rgba(28, 75, 46, 0.12);
}

.stock-line {
  fill: none;
  stroke: var(--green);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stock-latest-dot {
  fill: var(--gold);
  stroke: var(--white);
  stroke-width: 3;
}

.stock-metrics {
  display: grid;
  align-content: start;
  gap: 14px;
}

.stock-metric {
  padding: 22px;
  border-left: 7px solid var(--navy);
  background: var(--soft-blue);
}

.stock-metric:nth-child(2) {
  border-color: var(--green);
}

.stock-metric:nth-child(3) {
  border-color: var(--gold);
}

.stock-metric-label {
  color: var(--muted);
  font: 500 17px/1.1 "Kanit", sans-serif;
}

.stock-metric-value {
  margin-top: 9px;
  color: var(--navy);
  font: 600 35px/1 "Kanit", sans-serif;
}

.stock-source {
  position: absolute;
  bottom: 67px;
  left: 102px;
  color: var(--muted);
  font-size: 14px;
}

/* === CLOSING === */
.closing-slide {
  background: var(--deep-navy);
}

.closing-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 760px;
  height: 1080px;
  border-radius: 32px 0 0 32px;
}

.closing-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,28,45,0.02), rgba(7,28,45,0.6));
}

.closing-content {
  position: absolute;
  left: 102px;
  top: 92px;
  width: 1010px;
}

.closing-content .slide-kicker {
  color: var(--gold);
}

.closing-title {
  margin-top: 30px;
  color: var(--white);
  font: 500 53px/1.08 "Kanit", sans-serif;
}

.closing-grid {
  position: absolute;
  left: 102px;
  top: 440px;
  width: 1000px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 42px;
}

.closing-point {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.closing-point .section-label {
  margin-bottom: 12px;
  color: var(--gold);
}

.closing-point .body-copy {
  color: rgba(255,255,255,0.82);
  font-size: 21px;
}

.closing-tagline {
  position: absolute;
  left: 102px;
  bottom: 70px;
  color: var(--white);
  font: 500 28px/1 "Kanit", sans-serif;
}

/* === CONTACT === */
.contact-slide,
.appendix-start-slide {
  background:
    linear-gradient(118deg, rgba(11, 44, 72, 0.99) 0%, rgba(28, 75, 46, 0.98) 74%, rgba(90, 90, 90, 0.95) 100%);
}

.contact-slide .brand-mark,
.appendix-start-slide .brand-mark {
  width: 292px;
  height: 104px;
}

.contact-direct {
  position: absolute;
  top: 252px;
  left: 102px;
  width: 770px;
}

.contact-title {
  margin: 0 0 54px;
  color: var(--white);
  font: 600 74px/1 "Kanit", sans-serif;
}

.contact-name {
  color: var(--gold);
  font: 600 34px/1.05 "Kanit", sans-serif;
}

.contact-role {
  margin: 8px 0 40px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 25px;
  line-height: 1.2;
}

.contact-link {
  display: block;
  width: max-content;
  margin: 11px 0;
  color: var(--white);
  font: 500 25px/1.15 "Kanit", sans-serif;
  text-decoration: none;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--gold);
  outline: none;
}

.contact-channels {
  position: absolute;
  top: 377px;
  right: 190px;
  width: 520px;
  padding-left: 36px;
  border-left: 5px solid var(--gold);
}

.contact-channels-title {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
  font: 600 21px/1 "Kanit", sans-serif;
  text-transform: uppercase;
}

.contact-ticker {
  position: absolute;
  bottom: 72px;
  left: 102px;
  color: rgba(255, 255, 255, 0.68);
  font: 500 20px/1 "Kanit", sans-serif;
}

/* === APPENDIX DIVIDER === */
.appendix-start-content {
  position: absolute;
  top: 364px;
  left: 102px;
  width: 1120px;
}

.appendix-start-kicker {
  margin-bottom: 26px;
  color: var(--gold);
  font: 600 22px/1 "Kanit", sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.appendix-start-title {
  margin: 0;
  color: var(--white);
  font: 600 84px/0.96 "Kanit", sans-serif;
}

.appendix-start-body {
  width: 690px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 28px;
  line-height: 1.25;
}

/* === APPENDIX HEADER === */
.appendix-slide {
  background: var(--paper);
}

.appendix-header {
  position: absolute;
  left: 82px;
  right: 82px;
  top: 52px;
  height: 198px;
}

.appendix-title {
  margin-top: 17px;
  color: var(--navy);
  font: 500 40px/1.08 "Kanit", sans-serif;
}

.appendix-headline {
  max-width: 1600px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 24px;
  line-height: 1.2;
}

.appendix-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--line);
}

.appendix-body {
  position: absolute;
  left: 82px;
  right: 82px;
  top: 278px;
  bottom: 98px;
}

.appendix-columns {
  display: grid;
  height: auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}

/* Appendix A1: Vastervik overview with a square tenure map. */
.a1-overview,
.a2-overview {
  display: grid;
  grid-template-columns: 1fr 675px;
  gap: 48px;
}

.a1-detail-grid,
.a2-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 26px 32px;
}

.a1-detail,
.a2-detail {
  padding: 18px 0 0;
  border-top: 6px solid var(--navy);
}

.a1-detail.a1-foundation {
  border-color: var(--green);
}

.a1-detail.a1-geology {
  border-color: var(--gold);
}

.a1-detail.a1-pathways {
  border-color: var(--brand-grey);
}

.a2-detail.a2-zones {
  border-color: var(--green);
}

.a2-detail.a2-structures {
  border-color: var(--gold);
}

.a2-detail.a2-questions {
  border-color: var(--brand-grey);
}

.a1-detail .section-title,
.a2-detail .section-title {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 24px;
}

.a1-detail .body-copy,
.a2-detail .body-copy {
  font-size: 16px;
  line-height: 1.18;
}

.a1-tenure-map {
  width: 675px;
  height: 675px;
  align-self: start;
  border-radius: 0;
  background: var(--white);
}

.a1-tenure-map img {
  object-fit: contain;
}

.a2-magnetics-map {
  width: 675px;
  height: 675px;
  align-self: start;
  border-radius: 0;
  background: var(--white);
}

.a2-magnetics-map img {
  object-fit: contain;
}

.b-project-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 38px;
}

.b-project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.b-project-detail {
  padding: 20px 22px;
  border-left: 7px solid var(--navy);
  background: var(--white);
}

.b-project-detail-1 {
  border-color: var(--green);
}

.b-project-detail-2 {
  border-color: var(--gold);
}

.b-project-detail-3 {
  border-color: var(--brand-grey);
}

.b-project-detail .section-title {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 24px;
}

.b-project-detail .body-copy {
  font-size: 17px;
  line-height: 1.22;
}

.b-project-map {
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: var(--white);
}

.b-project-map img {
  object-fit: contain;
}

.appendix-column {
  padding-top: 30px;
  border-top: 7px solid var(--navy);
}

.appendix-column:nth-child(2) {
  border-color: var(--green);
}

.appendix-column:nth-child(3) {
  border-color: var(--gold);
}

.appendix-column .section-title {
  margin-bottom: 24px;
  font-size: 28px;
}

.appendix-column .body-copy {
  font-size: 20px;
}

.appendix-source {
  position: absolute;
  left: 82px;
  right: 160px;
  bottom: 36px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.15;
}

.appendix-page {
  position: absolute;
  right: 82px;
  bottom: 36px;
  color: var(--green);
  font: 600 17px/1 "Kanit", sans-serif;
}

.appendix-two-plus-visual {
  display: grid;
  height: auto;
  grid-template-columns: 0.78fr 0.78fr 1.2fr;
  gap: 36px;
}

.appendix-two-plus-visual .visual-placeholder {
  height: 100%;
}

.appendix-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 28px;
}

.appendix-stack .appendix-column {
  min-height: 0;
  padding-top: 20px;
}

.appendix-stack .appendix-column .section-title {
  margin-bottom: 14px;
  font-size: 24px;
}

.appendix-stack .appendix-column .body-copy {
  font-size: 18px;
}

.technical-placeholder {
  height: calc(100% - 78px);
}

.technical-reading {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 0 24px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
  font-size: 18px;
  text-align: center;
}

.a3-cross-section-image {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: var(--white);
}

.a3-cross-section-image img {
  object-fit: contain;
}

.a3-zone-label {
  position: absolute;
  z-index: 1;
  color: var(--green);
  font: 600 31px/1 "Kanit", sans-serif;
  white-space: nowrap;
}

.a3-a-lens { left: 54.5%; top: 19%; }
.a3-b-lens { left: 48%; top: 34%; }
.a3-solberg-deeps { left: 37%; top: 62%; }

.quad-grid {
  display: grid;
  height: auto;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 24px 36px;
}

.quad-item {
  padding: 26px 28px;
  border-top: 7px solid var(--navy);
  background: var(--white);
}

.quad-item:nth-child(2),
.quad-item:nth-child(4) {
  border-color: var(--green);
}

.quad-item .section-title {
  margin-bottom: 16px;
  font-size: 26px;
}

.quad-item .body-copy {
  font-size: 19px;
}

.appendix-table {
  height: 100%;
}

.appendix-note-band {
  position: absolute;
  left: 102px;
  right: 102px;
  bottom: 70px;
  min-height: 92px;
  display: flex;
  align-items: center;
  padding: 22px 32px;
  border-radius: 16px;
  background: var(--navy);
  color: var(--white);
  font: 500 25px/1.2 "Kanit", sans-serif;
}

.appendix-body.with-note {
  bottom: 184px;
}

.appendix-body.with-source {
  bottom: 138px;
}

.appendix-table-wrap,
.rights-wrap,
.peer-table-wrap {
  display: block;
}

.appendix-table-wrap .data-table,
.rights-wrap .data-table,
.peer-table-wrap .data-table {
  width: 100%;
  height: 100%;
}

.c1-layout {
  display: grid;
  grid-template-columns: 1.5fr 0.88fr;
  gap: 34px;
}

.c1-left {
  display: grid;
  min-width: 0;
  grid-template-rows: 1fr 112px;
  gap: 18px;
}

.c1-table {
  width: 100%;
  height: 100%;
}

.c1-table .table-cell {
  padding: 10px 12px;
  font-size: 17px;
}

.c1-map,
.c1-map img {
  border-radius: 0;
}

.c1-map img {
  object-fit: contain;
}

.c1-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.c1-metric {
  padding: 18px 24px;
  border-radius: 14px;
  background: var(--soft-blue);
}

.c1-metric .metric-value {
  font-size: 35px;
}

.c1-metric .metric-label {
  margin-top: 5px;
  font-size: 16px;
}

/* === APPENDIX DENSE TABLES === */
.rights-table {
  grid-template-columns: 0.72fr 1.03fr 0.78fr 0.38fr 0.64fr 0.9fr 1.15fr;
  grid-template-rows: 42px repeat(18, 1fr);
}

.rights-table .table-cell {
  padding: 3px 6px;
  font-size: 12.8px;
  line-height: 1.05;
}

.rights-table .table-cell.header {
  font-size: 14px;
}

.peer-table {
  grid-template-columns: 150px 60px minmax(0, 1fr) 140px;
  height: 100% !important;
}

.peer-table .table-cell {
  padding: 1px 5px;
  font-size: 12.5px;
  line-height: 1.04;
}

.peer-table .table-cell.header {
  font-size: 12.5px;
}

.peer-table .table-cell.alt-row {
  background: rgba(11, 44, 72, 0.055);
}

.peer-note {
  position: absolute;
  left: 82px;
  bottom: 36px;
  color: var(--muted);
  font-size: 13px;
}

.peer-table-wrap {
  top: 180px;
  bottom: 58px;
}

.definitions-layout {
  display: grid;
  height: auto;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.definitions-table {
  grid-template-columns: 0.76fr 2fr;
  grid-template-rows: 42px repeat(8, 1fr);
}

.definitions-table .table-cell {
  padding: 8px 11px;
  font-size: 16px;
  line-height: 1.12;
}

.definitions-source {
  position: absolute;
  left: 82px;
  right: 82px;
  bottom: 68px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 16px;
}

/* === APPENDIX F1 === */
.financial-grid {
  display: grid;
  height: auto;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 0.9fr 1.1fr;
  gap: 26px 34px;
}

.financial-block {
  padding: 24px 28px;
  border-top: 7px solid var(--navy);
  background: var(--white);
}

.financial-block:nth-child(2),
.financial-block:nth-child(4) {
  border-color: var(--green);
}

.financial-block .section-title {
  margin-bottom: 18px;
  font-size: 25px;
}

.financial-block .body-copy {
  font-size: 18px;
}

.financial-block .data-table .table-cell {
  padding: 8px 10px;
  font-size: 16px;
}

.financial-block .capital-list > * {
  padding: 7px 0;
  font-size: 16px;
}

/* === ENTRANCE MOTION === */
.slide.active .reveal {
  animation: reveal-up 620ms var(--delay, 100ms) var(--ease) both;
}

.slide.active .reveal-left {
  animation: reveal-left 620ms var(--delay, 100ms) var(--ease) both;
}

.slide.active .reveal-scale {
  animation: reveal-scale 760ms var(--delay, 100ms) var(--ease) both;
}

@keyframes reveal-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes reveal-left {
  from { opacity: 0; transform: translateX(-24px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes reveal-scale {
  from { opacity: 0; transform: scale(1.035); }
  to { opacity: 1; transform: scale(1); }
}
