/* ============ DEEPROCK — editorial premium ============ */
:root {
  --bg-0: #070a13;
  --bg-1: #0a0e1a;
  --bg-2: #0f1524;
  --bg-3: #161d30;
  --panel: rgba(22, 29, 48, 0.55);
  --panel-2: rgba(15, 21, 36, 0.72);
  --hair: rgba(201, 169, 97, 0.18);
  --hair-soft: rgba(232, 228, 216, 0.08);
  --ink: #e8e4d8;
  --ink-dim: #b8b2a0;
  --ink-mute: #6e6a5e;
  --gold: #c9a961;
  --gold-hi: #e5c88f;
  --gold-lo: #8a7340;
  --navy-line: rgba(255, 255, 255, 0.05);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  /* Suppress the default blue flash on tap — we have our own :active feedback */
  -webkit-tap-highlight-color: transparent;
}
html,
body {
  background: var(--bg-0);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  background:
    radial-gradient(
      ellipse 80% 40% at 50% -20%,
      rgba(201, 169, 97, 0.035),
      transparent 60%
    ),
    var(--bg-0);
}

.serif {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 300;
  letter-spacing: -0.01em;
}
.mono {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 900px) {
  .container {
    padding: 0 24px;
  }
}

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  background: linear-gradient(
    to bottom,
    rgba(7, 10, 19, 0.75),
    rgba(7, 10, 19, 0.35)
  );
  border-bottom: 1px solid var(--hair-soft);
  transition: padding 0.4s ease;
}
.nav.scrolled {
  padding: 14px 48px;
  background: linear-gradient(
    to bottom,
    rgba(7, 10, 19, 0.92),
    rgba(7, 10, 19, 0.78)
  );
}
@media (max-width: 900px) {
  .nav,
  .nav.scrolled {
    padding: 14px 20px;
  }
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 26px;
  height: 26px;
  position: relative;
}
.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  letter-spacing: 0.14em;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--ink);
}
.brand-name em {
  font-style: normal;
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-cta {
  padding: 11px 24px;
  border: 1px solid var(--gold-hi);
  color: var(--bg-0);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: linear-gradient(180deg, var(--gold-hi) 0%, var(--gold) 100%);
  cursor: pointer;
  transition:
    border-color 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    background 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    color 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.2s ease-out;
  font-family: inherit;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  box-shadow:
    0 6px 22px rgba(201, 169, 97, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.nav-cta .nav-cta-label {
  position: relative;
  z-index: 2;
  display: inline-block;
}
.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 48%,
    transparent 96%
  );
  transform: translateX(-120%);
  transition: transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}
.nav-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(229, 200, 143, 0);
  transition: box-shadow 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
  z-index: 0;
}
.nav-cta:hover {
  border-color: #f5e0a8;
  background: linear-gradient(180deg, #f5e0a8 0%, var(--gold-hi) 100%);
  color: var(--bg-0);
  box-shadow:
    0 10px 32px rgba(201, 169, 97, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.nav-cta:hover::before {
  transform: translateX(120%);
}
.nav-cta:focus-visible {
  outline: none;
  border-color: var(--gold-hi);
  box-shadow:
    0 10px 32px rgba(201, 169, 97, 0.4),
    0 0 0 2px rgba(229, 200, 143, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
}

/* ========== SECTION SCAFFOLD ========== */
section {
  position: relative;
  padding: 72px 0;
}
@media (max-width: 1280px) {
  section {
    padding: 64px 0;
  }
}
@media (max-width: 900px) {
  section {
    padding: 56px 0;
  }
}

.eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--ink-dim);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 400;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

h1.display {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  font-weight: 300;
  color: var(--ink);
}
h1.display em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

h2.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.018em;
  font-weight: 300;
  color: var(--ink);
  max-width: 24ch;
}
h2.section-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.18;
  letter-spacing: -0.012em;
  font-weight: 400;
  color: var(--ink);
}

.lede {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-dim);
  max-width: 58ch;
  font-weight: 300;
}
.body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-dim);
  font-weight: 300;
}
.caption {
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}

/* ========== SECTION HEADER ========== */
.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  margin-bottom: 56px;
}
.section-head > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-head h2.section-title {
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
}
.section-head .right {
  padding-bottom: 0;
  max-width: 720px;
}
.section-head .right .body {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .section-head {
    gap: 20px;
    margin-bottom: 40px;
  }
}

/* ========== PANELS (restrained smoked glass) ========== */
.panel {
  background: linear-gradient(
    180deg,
    rgba(18, 24, 40, 0.55),
    rgba(10, 14, 26, 0.5)
  );
  border: 1px solid var(--hair-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.6s ease,
    background 0.6s ease;
}
.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(232, 228, 216, 0.03),
    transparent 30%
  );
}
.panel.gold {
  border-color: var(--hair);
}
.panel.interactive:hover {
  border-color: rgba(201, 169, 97, 0.32);
  background: linear-gradient(
    180deg,
    rgba(22, 29, 48, 0.6),
    rgba(12, 16, 28, 0.55)
  );
}
.panel-corner {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1px solid var(--gold);
  opacity: 0.4;
  transition: opacity 0.6s;
}
.panel.interactive:hover .panel-corner {
  opacity: 0.8;
}
.panel-corner.tl {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
}
.panel-corner.tr {
  top: 10px;
  right: 10px;
  border-left: none;
  border-bottom: none;
}
.panel-corner.bl {
  bottom: 10px;
  left: 10px;
  border-right: none;
  border-top: none;
}
.panel-corner.br {
  bottom: 10px;
  right: 10px;
  border-left: none;
  border-top: none;
}
.panel-corner.tl {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
}
.panel-corner.tr {
  top: 10px;
  right: 10px;
  border-left: none;
  border-bottom: none;
}
.panel-corner.bl {
  bottom: 10px;
  left: 10px;
  border-right: none;
  border-top: none;
}
.panel-corner.br {
  bottom: 10px;
  right: 10px;
  border-left: none;
  border-top: none;
}

/* ========== BUTTON ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.btn.primary {
  background: linear-gradient(180deg, var(--gold-hi) 0%, var(--gold) 100%);
  color: var(--bg-0);
  border: 1px solid var(--gold-hi);
  box-shadow:
    0 8px 26px rgba(201, 169, 97, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn.primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 48%,
    transparent 96%
  );
  transform: translateX(-120%);
  transition: transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
  z-index: 0;
}
.btn.primary > * {
  position: relative;
  z-index: 1;
}
.btn.primary:hover {
  background: linear-gradient(180deg, #f5e0a8 0%, var(--gold-hi) 100%);
  border-color: #f5e0a8;
  color: var(--bg-0);
  transform: translateY(-1px);
  box-shadow:
    0 14px 34px rgba(201, 169, 97, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn.primary:hover::before {
  transform: translateX(120%);
}
.btn.primary:active {
  transform: translateY(0);
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-lo) 100%);
}
.btn.primary:focus-visible {
  outline: none;
  border-color: var(--gold-hi);
  box-shadow:
    0 14px 34px rgba(201, 169, 97, 0.4),
    0 0 0 2px rgba(229, 200, 143, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.btn.ghost {
  background: transparent;
  border: 1px solid var(--hair);
  color: var(--ink);
}
.btn.ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn .arrow {
  width: 20px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.4s;
}
.btn .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .arrow {
  width: 28px;
}

/* ========== BLUEPRINT GRID OVERLAY ========== */
.grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--navy-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--navy-line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    black 30%,
    transparent 80%
  );
}

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 1.1s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 1.1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.12s;
}
.reveal-delay-2 {
  transition-delay: 0.24s;
}
.reveal-delay-3 {
  transition-delay: 0.36s;
}
.reveal-delay-4 {
  transition-delay: 0.48s;
}

/* ========== SECTION CONTINUITY (vertical seam) ========== */
.seam {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(201, 169, 97, 0.12) 12%,
    rgba(201, 169, 97, 0.12) 88%,
    transparent
  );
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}
.seam-node {
  position: absolute;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  box-shadow:
    0 0 0 4px rgba(201, 169, 97, 0.1),
    0 0 0 10px rgba(201, 169, 97, 0.04);
  opacity: 0;
  transition: opacity 1.2s;
}
.seam-node.in {
  opacity: 0.7;
}

/* ========== HERO ========== */
/* ========== HERO ENTRY ANIMATIONS ========== */
.hero .anim {
  opacity: 0;
  transform: translateY(24px);
  will-change: opacity, transform;
}
.hero .anim.go {
  opacity: 1;
  transform: translateY(0);
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  padding: 0;
  display: flex;
  align-items: center;
  isolation: isolate;
}

/* Layer 1 — farthest: subtle blueprint grid */
.hero-grid-bg {
  position: absolute;
  inset: -8% -4%;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(201, 169, 97, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(201, 169, 97, 0.04) 1px, transparent 1px);
  background-size:
    88px 88px,
    88px 88px;
  mask-image: radial-gradient(
    ellipse 70% 60% at 50% 55%,
    #000 40%,
    transparent 100%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 70% 60% at 50% 55%,
    #000 40%,
    transparent 100%
  );
  transform: translateY(var(--py-slow, 0px));
  z-index: 0;
}

/* Layer 2 — architectural bridge horizon */
.hero-bridge-layer {
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 4%;
  height: 68%;
  pointer-events: none;
  transform: translateY(var(--py, 0px));
  z-index: 1;
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 22%,
    #000 88%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 22%,
    #000 88%,
    transparent 100%
  );
}

/* Layer 3 — vignette to lift content off the linework */
.hero-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 65% 50% at 50% 50%,
      rgba(7, 10, 19, 0.82) 0%,
      rgba(7, 10, 19, 0.4) 55%,
      transparent 85%
    ),
    linear-gradient(
      to bottom,
      rgba(7, 10, 19, 0.65) 0%,
      transparent 25%,
      transparent 70%,
      rgba(7, 10, 19, 0.9) 100%
    );
  z-index: 2;
}

/* Layer 4 — content */
.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1320px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
}
.he-rule {
  width: 56px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.he-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.hero-display {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(40px, 5.6vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  color: var(--ink);
  max-width: 18ch;
  margin: 0 auto 32px;
  text-wrap: balance;
}
.hero-display em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  background: linear-gradient(180deg, #f0d79e 0%, #c9a961 55%, #a88947 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lede {
  font-family: "Manrope", sans-serif;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.65;
  color: var(--ink-dim);
  font-weight: 300;
  max-width: 56ch;
  margin: 0 auto 40px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-cta {
  padding: 18px 34px !important;
  font-size: 12px !important;
  letter-spacing: 0.22em !important;
  white-space: nowrap;
}
.hero-secondary {
  color: var(--ink-dim);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 6px 0;
  position: relative;
  transition: color 0.35s ease;
}
.hero-secondary span {
  position: relative;
  display: inline-block;
}
.hero-secondary span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--gold);
  transition: right 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-secondary:hover {
  color: var(--gold);
}
.hero-secondary:hover span::after {
  right: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
}
.hero-scroll .hs-line {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--gold) 60%,
    transparent
  );
  opacity: 0.7;
  animation: heroScrollDrop 3.2s ease-in-out infinite;
}
@keyframes heroScrollDrop {
  0% {
    transform: translateY(-20px) scaleY(0.4);
    opacity: 0;
  }
  40% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(20px) scaleY(1);
    opacity: 0;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    padding-top: 100px;
    padding-bottom: 120px;
    align-items: center;
    text-align: center;
  }
  .hero-display {
    margin: 0 auto 28px;
  }
  .hero-lede {
    margin: 0 auto 36px;
  }
  .hero-cta-row {
    gap: 24px;
    justify-content: center;
  }
  .hero-bridge-layer {
    height: 58%;
    bottom: 8%;
  }
}

/* ========== HIGHLIGHTS ========== */
.highlights-sec {
  position: relative;
}
.hl-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  margin-bottom: 64px;
}
.hl-head > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hl-head .hl-head-right {
  padding-bottom: 0;
  max-width: 640px;
  justify-self: center;
}
.hl-head .hl-head-right .body {
  margin-left: auto;
  margin-right: auto;
}
.hl-title {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.06;
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .hl-head {
    gap: 20px;
    margin-bottom: 48px;
  }
}

/* Asymmetric rail — three columns separated by hairlines, no boxes */
.hl-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  border-top: 1px solid var(--hair-soft);
}
.hl-col {
  position: relative;
}
.hl-col + .hl-col::before {
  content: "";
  position: absolute;
  left: 0;
  top: 56px;
  bottom: 56px;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    var(--hair-soft) 20%,
    var(--hair-soft) 80%,
    transparent
  );
}
@media (max-width: 900px) {
  .hl-rail {
    grid-template-columns: 1fr;
  }
  .hl-col + .hl-col::before {
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
    width: auto;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      var(--hair-soft) 20%,
      var(--hair-soft) 80%,
      transparent
    );
  }
}

.hl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 64px 40px 72px;
  position: relative;
  cursor: default;
  transition: background 0.6s ease;
}
.hl-item:hover {
  background: linear-gradient(
    180deg,
    rgba(201, 169, 97, 0.02),
    transparent 60%
  );
}
@media (max-width: 900px) {
  .hl-item {
    padding: 48px 0 56px;
  }
}

/* Mark + Roman numeral overlay */
.hl-mark {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 40px;
}
.hl-mark svg {
  position: absolute;
  inset: 0;
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-origin: center;
  filter: drop-shadow(0 0 calc(12px * var(--glow, 0)) rgba(229, 200, 143, 0.5));
}
@media (hover: hover) {
  .hl-item:hover .hl-mark svg {
    transform: rotate(calc(var(--rot, 0deg) + 12deg));
  }
}
.hl-roman {
  position: absolute;
  top: -18px;
  right: -6px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-style: italic;
  font-size: 32px;
  color: var(--gold);
  letter-spacing: 0.04em;
  opacity: 0.78;
}

/* Gold vertical rule that grows on hover */
.hl-rule {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), rgba(201, 169, 97, 0.1));
  margin: 0 auto 28px;
  transform-origin: top;
  transform: scaleY(0.55);
  transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hl-item:hover .hl-rule {
  transform: scaleY(1);
}

.hl-body {
  max-width: 360px;
  margin: 0 auto;
}
.hl-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dimmer);
  margin-bottom: 20px;
}
.hl-heading {
  margin-bottom: 24px;
  line-height: 1.04;
}
.hl-lead {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(13px, 1.4vw, 16px);
  color: var(--ink-dim);
  letter-spacing: 0.005em;
  margin-bottom: 2px;
}
.hl-title-word {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(22px, 2.8vw, 30px);
  color: var(--gold);
  background: linear-gradient(180deg, #f0d79e 0%, #c9a961 55%, #a88947 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.012em;
  font-style: italic;
}
.hl-copy {
  font-size: 13.5px;
  color: var(--ink-dim);
  line-height: 1.7;
}

/* ========== GLANCE (map-behind + stats row) ========== */
.glance-sec {
  position: relative;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(15, 21, 36, 0.35),
    transparent
  );
  overflow: hidden;
}
.gl-container {
  position: relative;
  z-index: 2;
}

/* World map as a full-viewport backdrop */
.gl-map-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 56px;
  z-index: 1;
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    black 14%,
    black 86%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    black 14%,
    black 86%,
    transparent 100%
  );
}
.gl-map-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 55% 45% at 50% 55%,
    rgba(10, 14, 26, 0) 0%,
    rgba(10, 14, 26, 0.82) 70%,
    rgba(10, 14, 26, 0.95) 100%
  );
  pointer-events: none;
  z-index: 3;
}
.gl-map-canvas {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  opacity: 0.55;
  filter: saturate(0.8);
}
.gl-map-corners {
  position: absolute;
  inset: 28px;
  pointer-events: none;
  z-index: 2;
}
.gl-map-corners span {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 1px solid var(--gold);
  opacity: 0.45;
}
.gl-map-corners span:nth-child(1) {
  top: 0;
  left: 0;
  border-right: 0;
  border-bottom: 0;
}
.gl-map-corners span:nth-child(2) {
  top: 0;
  right: 0;
  border-left: 0;
  border-bottom: 0;
}
.gl-map-corners span:nth-child(3) {
  bottom: 0;
  left: 0;
  border-right: 0;
  border-top: 0;
}
.gl-map-corners span:nth-child(4) {
  bottom: 0;
  right: 0;
  border-left: 0;
  border-top: 0;
}
.gl-map-legend {
  position: absolute;
  top: 46px;
  left: 64px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  opacity: 0.6;
}
.gl-legend-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e5c88f;
  box-shadow: 0 0 0 3px rgba(229, 200, 143, 0.15);
}
.gl-legend-arc {
  display: inline-block;
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e5c88f, transparent);
}
.gl-legend-sep {
  opacity: 0.4;
  margin: 0 4px;
}
.gl-map-footer {
  position: absolute;
  bottom: 40px;
  left: 64px;
  right: 64px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  color: var(--ink-dimmer);
  opacity: 0.5;
}
@media (max-width: 720px) {
  .gl-map-legend {
    left: 32px;
    top: 32px;
  }
  .gl-map-footer {
    left: 32px;
    right: 32px;
    bottom: 24px;
    flex-direction: column;
    gap: 6px;
  }
}

/* 3-column stat row */
.gl-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--hair-soft);
  border-bottom: 1px solid var(--hair-soft);
  background: linear-gradient(
    180deg,
    rgba(10, 14, 26, 0.55),
    rgba(10, 14, 26, 0.75)
  );
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.gl-stat {
  position: relative;
  padding: 44px 40px 40px;
  border-right: 1px solid var(--hair-soft);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gl-stat:last-child {
  border-right: 0;
}
.gl-stat-idx {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--gold);
  opacity: 0.75;
  margin-bottom: 18px;
}
.gl-stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
  background: linear-gradient(180deg, #f0d79e 0%, #c9a961 55%, #a88947 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.gl-stat-unit {
  font-size: 0.4em;
  color: var(--gold);
  margin-left: 6px;
  font-style: italic;
  font-weight: 300;
  -webkit-text-fill-color: var(--gold);
}
.gl-stat-label {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 16px;
  color: var(--ink-dim);
  margin-bottom: 20px;
  letter-spacing: 0.005em;
}
.gl-stat-rule {
  height: 1px;
  width: 80px;
  background: linear-gradient(
    90deg,
    rgba(201, 169, 97, 0.1),
    var(--gold),
    rgba(201, 169, 97, 0.1)
  );
  transform-origin: center;
  transform: scaleX(0);
  transition: transform 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s;
  margin-bottom: 18px;
}
.gl-stat.is-in .gl-stat-rule {
  transform: scaleX(1);
}
.gl-stat-detail {
  font-size: 13px;
  color: var(--ink-dimmer);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .gl-stats {
    grid-template-columns: 1fr;
  }
  .gl-stat {
    border-right: 0;
    border-bottom: 1px solid var(--hair-soft);
    padding: 36px 28px;
  }
  .gl-stat:last-child {
    border-bottom: 0;
  }
}

.gl-footnote {
  margin: 36px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--hair-soft);
  max-width: 720px;
  font-size: 12.5px;
  color: var(--ink-dimmer);
  line-height: 1.7;
  font-style: italic;
  position: relative;
  z-index: 2;
  text-align: center;
}

/* ========== PILLARS ========== */
.pillars-wrap {
  margin-top: 24px;
}
.pillar-row {
  display: grid;
  grid-template-columns: 140px 1fr 1fr 180px;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid var(--hair-soft);
  align-items: start;
  cursor: pointer;
  transition: background 0.6s;
  position: relative;
}
.pillar-row:last-child {
  border-bottom: 1px solid var(--hair-soft);
}
.pillar-row:hover {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 169, 97, 0.04),
    transparent
  );
}
.pillar-row .roman {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 4vw, 40px);
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  font-weight: 300;
}
.pillar-row h3 {
  font-size: clamp(18px, 2.4vw, 24px);
}
.pillar-row .summary {
  color: var(--ink-dim);
  font-size: 13.5px;
  line-height: 1.7;
}
.pillar-row .expand {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: "JetBrains Mono", monospace;
}
.pillar-row .expand .plus {
  width: 24px;
  height: 24px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: relative;
  transition: transform 0.5s;
}
.pillar-row .expand .plus::before,
.pillar-row .expand .plus::after {
  content: "";
  position: absolute;
  background: var(--gold);
}
.pillar-row .expand .plus::before {
  left: 50%;
  top: 20%;
  bottom: 20%;
  width: 1px;
  transform: translateX(-50%);
  transition: opacity 0.4s;
}
.pillar-row .expand .plus::after {
  top: 50%;
  left: 20%;
  right: 20%;
  height: 1px;
  transform: translateY(-50%);
}
.pillar-row.open .expand .plus {
  transform: rotate(135deg);
}
.pillar-row.open .expand .plus::before {
  opacity: 0;
}
.pillar-detail {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 40px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.5s;
  opacity: 0;
}
.pillar-row.open .pillar-detail {
  max-height: 900px;
  opacity: 1;
  margin-top: 32px;
}
.pillar-sub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--hair-soft);
}
.pillar-sub {
  padding: 24px 28px;
  background: var(--bg-1);
  min-height: 130px;
}
.pillar-sub h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.pillar-sub p {
  font-size: 12.5px;
  color: var(--ink-dim);
  line-height: 1.6;
}
.pillar-sub .icn {
  color: var(--gold);
  margin-bottom: 14px;
  opacity: 0.85;
}
@media (max-width: 900px) {
  .pillar-row {
    grid-template-columns: 60px 1fr;
    gap: 20px;
  }
  .pillar-row .summary,
  .pillar-row .expand {
    grid-column: 2;
  }
  .pillar-row .expand {
    justify-self: start;
    margin-top: -12px;
  }
  .pillar-detail {
    grid-template-columns: 1fr;
  }
  .pillar-sub-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== NETWORK MODEL ========== */
.network-stage {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px;
}
.network-mobile {
  display: none;
}
.network-desktop {
  display: block;
}
@media (max-width: 720px) {
  /* Drop the forced aspect-ratio — let the vertical SVG size itself.
     Also tighten panel padding on small screens. */
  .network-stage {
    aspect-ratio: auto;
    padding: 16px;
  }
  .network-desktop {
    display: none;
  }
  .network-mobile {
    display: block;
  }
}

/* ========== PRINCIPLES ========== */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hair-soft);
  border: 1px solid var(--hair-soft);
}
@media (max-width: 900px) {
  .principles-grid {
    grid-template-columns: 1fr;
  }
}
.principle {
  padding: 56px 36px 48px;
  background: linear-gradient(
    180deg,
    rgba(22, 29, 48, 0.4),
    rgba(10, 14, 26, 0.6)
  );
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
  position: relative;
  transition: background 0.7s;
}
.principle-body {
  padding-right: 0;
  max-width: 320px;
}
.principle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(229, 200, 143, 0.3),
    transparent
  );
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.7s;
}
.principle:hover {
  background: linear-gradient(
    180deg,
    rgba(28, 37, 60, 0.55),
    rgba(14, 18, 32, 0.75)
  );
}
.principle:hover::before {
  transform: scaleX(1);
}
.principle h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  margin: 0 0 14px;
}
.principle p {
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.7;
}
.principle .mark {
  position: relative;
  width: 76px;
  height: 76px;
  margin-bottom: 28px;
  color: var(--gold);
  opacity: 0.85;
  transition:
    opacity 0.5s ease,
    transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.principle:hover .mark {
  opacity: 1;
  transform: translateY(-2px);
}

/* ========== ESG ========== */
.esg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--hair-soft);
}
@media (max-width: 900px) {
  .esg-grid {
    grid-template-columns: 1fr;
  }
}
.esg-card {
  background: linear-gradient(
    145deg,
    rgba(26, 34, 56, 0.55),
    rgba(10, 14, 26, 0.7)
  );
  padding: 48px 40px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: background 0.6s;
}
.esg-card:hover {
  background: linear-gradient(
    145deg,
    rgba(32, 42, 68, 0.7),
    rgba(14, 18, 32, 0.8)
  );
}
.esg-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(229, 200, 143, 0.4),
    transparent
  );
}
.esg-card .letter {
  font-family: "Cormorant Garamond", serif;
  font-size: 220px;
  font-weight: 300;
  color: var(--gold);
  line-height: 0.8;
  letter-spacing: -0.05em;
  opacity: 0.14;
  position: absolute;
  right: -10px;
  top: -20px;
  font-style: italic;
  transition:
    opacity 0.6s,
    transform 0.8s;
}
.esg-card:hover .letter {
  opacity: 0.22;
  transform: translateY(-6px);
}
.esg-card .tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.28em;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
}
.esg-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 18px;
  font-size: clamp(18px, 2.4vw, 24px);
}
.esg-card ul {
  list-style: none;
  margin-top: auto;
  position: relative;
  z-index: 2;
}
.esg-card li {
  padding: 12px 0;
  border-top: 1px solid var(--hair-soft);
  font-size: 13px;
  color: var(--ink-dim);
  position: relative;
  z-index: 2;
  transition:
    color 0.4s,
    padding-left 0.4s;
}
.esg-card li:last-child {
  border-bottom: 1px solid var(--hair-soft);
}
.esg-card li:hover {
  color: var(--ink);
  padding-left: 8px;
}

/* ========== OUTLOOK ========== */
.outlook-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 1024px) {
  .outlook-grid {
    grid-template-columns: 1fr;
  }
}
.trajectory {
  position: relative;
  aspect-ratio: 5/3;
  width: 100%;
}

.traj-wrap {
  position: relative;
}
.traj-detail {
  margin-top: 20px;
  padding: 18px 20px;
  border-top: 1px solid var(--hair-soft);
  min-height: 82px;
  transition: background 0.4s;
}
.traj-detail.is-active {
  background: linear-gradient(90deg, rgba(201, 169, 97, 0.06), transparent);
}
.traj-detail-head {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.traj-detail-head .gold {
  color: var(--gold);
}
.traj-detail-head .sep {
  opacity: 0.4;
}
.traj-detail-l {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.traj-detail-d {
  font-size: 13.5px;
  color: var(--ink-dim);
  line-height: 1.65;
}
.traj-detail-hint {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--ink-dimmer);
  text-transform: uppercase;
  padding-top: 6px;
}

/* ========== FINAL CTA ========== */
.final-cta {
  padding: 88px 0 72px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1280px) {
  .final-cta {
    padding: 76px 0 64px;
  }
}
@media (max-width: 900px) {
  .final-cta {
    padding: 64px 0 56px;
  }
}
.closing-bridge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 260px;
  pointer-events: none;
  opacity: 0.7;
  z-index: 1;
}
.closing-bridge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--bg-0), transparent 40%);
  pointer-events: none;
}
.final-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1024px) {
  .final-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}
.form-panel {
  padding: 48px 44px;
  background: linear-gradient(
    145deg,
    rgba(22, 29, 48, 0.75),
    rgba(10, 14, 26, 0.65)
  );
  border: 1px solid var(--hair);
  position: relative;
}
.form-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 32px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hair-soft);
  letter-spacing: -0.005em;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hair-soft);
  color: var(--ink);
  padding: 10px 0;
  font-family: inherit;
  font-size: 15px;
  font-weight: 300;
  transition: border-color 0.4s;
  outline: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--gold);
}
.field textarea {
  resize: vertical;
  min-height: 80px;
}
.field select {
  appearance: none;
  cursor: pointer;
}
.form-note {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 20px;
  line-height: 1.6;
}
.form-cta {
  margin-top: 32px;
  width: 100%;
  justify-content: center;
}

/* ========== FOOTER ========== */
.footer {
  border-top: 1px solid var(--hair-soft);
  padding: 56px 0 40px;
  margin-top: 40px;
}
.footer-addresses {
  padding-bottom: 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--hair-soft);
}
.footer-addresses h5 {
  margin-bottom: 28px;
}
.footer-addresses-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}
.footer-address {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.footer-address-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  opacity: 0.92;
}
.footer-address-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  color: var(--ink);
  font-style: italic;
  letter-spacing: 0.01em;
  line-height: 1.3;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-addresses-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.footer h5 {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 400;
}
.footer ul {
  list-style: none;
}
.footer li {
  padding: 6px 0;
}
.footer a {
  color: var(--ink-dim);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}
.footer a:hover {
  color: var(--gold);
}
.footer-base {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--hair-soft);
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-base span {
  font-family: inherit;
}

/* ========== UTILITIES ========== */
.divider-gold {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}
.meta-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ============================================================
   MOBILE OPTIMIZATIONS — phones (≤520px)
   Layered on top of existing ≤900px rules. Scoped adjustments only.
   ============================================================ */
@media (max-width: 520px) {
  /* Tighten outer gutters for 320–430px phones */
  .container {
    padding: 0 18px;
  }
  section {
    padding: 48px 0;
  }

  /* Nav: keep it compact, prevent wrap when brand + CTA are tight */
  .nav,
  .nav.scrolled {
    padding: 12px 14px;
  }
  .brand-name {
    font-size: 17px;
    letter-spacing: 0.11em;
  }
  .brand-mark {
    width: 22px;
    height: 22px;
  }
  .nav-cta {
    padding: 8px 14px;
    font-size: 10.5px;
    letter-spacing: 0.12em;
  }

  /* Hero: trim whitespace, full-width primary CTA */
  .hero-inner {
    padding-top: 88px;
    padding-bottom: 100px;
    align-items: center;
    text-align: center;
  }
  .hero-eyebrow {
    margin-bottom: 24px;
  }
  .hero-display {
    margin: 0 auto 24px;
    max-width: none;
  }
  .hero-lede {
    margin: 0 auto 28px;
  }
  .hero-cta-row {
    gap: 14px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .hero-cta {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 16px 22px !important;
  }
  .hero-secondary {
    text-align: center;
    padding-top: 4px;
  }
  .hero-scroll {
    bottom: 20px;
  }

  /* Section heading spacing */
  .section-head {
    margin-bottom: 36px;
    gap: 18px;
  }

  /* Highlights: shrink large mark, tighten per-item padding */
  .hl-head {
    margin-bottom: 48px;
  }
  .hl-item {
    padding: 44px 0 48px;
  }
  .hl-mark {
    width: 96px;
    height: 96px;
    margin-bottom: 36px;
  }
  .hl-roman {
    font-size: 24px;
    top: -12px;
    right: -4px;
  }
  .hl-rule {
    height: 32px;
    margin-bottom: 22px;
  }

  /* Glance / map: keep background map readable on narrow screens */
  .gl-map-bg {
    padding: 60px 20px 40px;
  }
  .gl-map-corners {
    inset: 18px;
  }
  .gl-map-legend {
    left: 20px;
    top: 20px;
    font-size: 9px;
    letter-spacing: 0.14em;
  }
  .gl-map-footer {
    left: 20px;
    right: 20px;
    bottom: 18px;
    font-size: 8.5px;
  }
  .gl-stats {
    margin-top: 48px;
  }
  .gl-stat {
    padding: 28px 20px;
  }
  .gl-stat-num {
    font-size: clamp(32px, 9vw, 44px);
  }
  .gl-stat-label {
    font-size: 14px;
  }
  .gl-footnote {
    margin-top: 36px;
    font-size: 12px;
  }

  /* Pillars: tighten grid + padding, make tap target roomier */
  .pillar-row {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 28px 0;
  }
  .pillar-row .expand {
    margin-top: -8px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }
  .pillar-row .expand .plus {
    width: 22px;
    height: 22px;
  }
  .pillar-sub {
    padding: 20px 20px;
    min-height: auto;
  }
  .pillar-sub h4 {
    font-size: 16px;
  }

  /* Principles: drop enforced min-height, shrink padding */
  .principle {
    padding: 36px 24px 40px;
    min-height: auto;
  }
  .principle h3 {
    margin: 0 0 12px;
  }
  .principle-body {
    padding-right: 0;
  }
  .principle .mark {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  /* ESG: shrink decorative letter, remove min-height */
  .esg-card {
    padding: 36px 26px;
    min-height: auto;
  }
  .esg-card .letter {
    font-size: 150px;
    right: -6px;
    top: -12px;
  }
  .esg-card .tag {
    margin-bottom: 18px;
  }

  /* Outlook + final CTA: tighter stack */
  .outlook-grid {
    gap: 28px;
  }
  .final-cta {
    padding: 56px 0 48px;
  }
  .final-grid {
    gap: 32px;
  }
  .form-panel {
    padding: 32px 22px;
  }
  .form-heading {
    font-size: 18px;
    margin-bottom: 22px;
    padding-bottom: 14px;
  }
  .form-row {
    margin-bottom: 18px;
  }
  .form-cta {
    padding: 16px 22px !important;
  }

  /* Footer: single column on real phones for breathing room */
  .footer {
    padding: 44px 0 32px;
  }
  .footer-addresses {
    padding-bottom: 32px;
    margin-bottom: 32px;
  }
  .footer-addresses h5 {
    margin-bottom: 20px;
  }
  .footer-addresses-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .footer-address-icon {
    width: 34px;
    height: 34px;
  }
  .footer-address-name {
    font-size: 14.5px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 36px;
  }
  .footer-base {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    font-size: 11px;
  }

  /* Generic button tuning */
  .btn {
    padding: 15px 24px;
    font-size: 12px;
    letter-spacing: 0.14em;
  }
}

/* ============================================================
   MOBILE — Glance section: strip decorative meta, lift footnote
   ============================================================ */
@media (max-width: 640px) {
  /* Chart-flavor strings don't earn their space on a phone */
  .gl-map-legend,
  .gl-map-footer {
    display: none;
  }
  /* Footnote had italic Cormorant over dim color at 12.5px — unreadable.
     Lift it to standard body size, drop the italic, increase contrast. */
  .gl-footnote {
    font-family: "Manrope", sans-serif;
    font-style: normal;
    font-size: 14px;
    color: var(--ink-dim);
    line-height: 1.65;
  }
}

/* ============================================================
   MOBILE — Outlook: hide redundant detail pane + tighten chart panel
   The chart's in-SVG milestone labels (Genesis…Horizon) already tell
   the story. The hover-only detail pane below is empty on touch and
   creates a huge black void — drop it on small viewports.
   ============================================================ */
@media (max-width: 720px) {
  .traj-detail {
    display: none;
  }
  /* Override the inline padding on the chart's .panel wrapper */
  #outlook .panel.gold {
    padding: 16px !important;
  }
}

/* ============================================================
   TOUCH + NO-HOVER (phones/tablets without mouse precision)
   Converts hover-only affordances into touch-first ones.
   ============================================================ */
@media (hover: none) and (pointer: coarse) {
  /* Neutralize hero parallax var so any JS-set translate is inert */
  .hero-grid-bg,
  .hero-bridge-layer {
    transform: none !important;
  }

  /* Pillars: skip hover tinting so tap feedback isn't sticky */
  .pillar-row:hover {
    background: transparent;
  }
  .hl-item:hover {
    background: transparent;
  }
  /* Scroll-driven rotation (via --rot) remains active on touch — this is
     the explicit replacement for hover-driven rotation on mobile. */

  /* Trajectory chart: hover-scrub doesn't work on touch —
     hide the hint text and rely on milestone markers for interaction */
  .traj-detail-hint {
    display: none;
  }

  /* Panels: remove hover state so tapping elsewhere doesn't linger */
  .panel.interactive:hover {
    border-color: var(--hair-soft);
    background: inherit;
  }
  .esg-card:hover .letter {
    transform: none;
    opacity: 0.14;
  }
  .principle:hover::before {
    transform: scaleX(0);
  }
}

/* ============================================================
   REDUCED MOTION — respect OS-level setting
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .hl-mark svg {
    transform: none !important;
    filter: none !important;
  }
}

/* ============================================================
   SCROLL PROGRESS — thin gold line at the top of the viewport
   Width driven by --scroll-progress (set in JS on scroll)
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: var(--scroll-progress, 0%);
  background: linear-gradient(
    90deg,
    rgba(201, 169, 97, 0.35) 0%,
    var(--gold) 55%,
    rgba(245, 228, 184, 0.95) 100%
  );
  box-shadow:
    0 0 10px rgba(229, 200, 143, 0.5),
    0 0 24px rgba(201, 169, 97, 0.18);
  z-index: 100;
  pointer-events: none;
  transition: width 0.08s linear;
  will-change: width;
}

/* ============================================================
   TAP FEEDBACK — subtle scale-down on press (mobile + touch)
   Gives every interactive element a haptic-ish confirmation.
   ============================================================ */
@media (hover: none) and (pointer: coarse) {
  .btn:active,
  .nav-cta:active,
  .hero-secondary:active,
  .pillar-row:active,
  .hl-item:active,
  .esg-card li:active,
  .field input:active,
  .footer a:active,
  .nav-links a:active,
  .brand:active {
    transform: scale(0.98);
    transition: transform 0.1s ease-out;
  }
  /* Pulse a subtle gold tint on press for buttons */
  .btn.primary:active {
    background: linear-gradient(180deg, var(--gold) 0%, var(--gold-lo) 100%);
    box-shadow: 0 4px 16px rgba(201, 169, 97, 0.45);
  }
  .nav-cta:active {
    background: linear-gradient(180deg, var(--gold) 0%, var(--gold-lo) 100%);
    border-color: var(--gold-hi);
  }
}
