/* Ranger — Nature × Liquid-Glass × Modern startup
   Single source of truth. */

:root {
  /* Sky & paper */
  --sky-top: #CFE4EE;
  --sky-mid: #E8EFEC;
  --paper:   #F4F1EA;
  --paper-warm: #EFE8D8;
  --paper-cool: #E8EEEE;
  --ivory:   #FAF8F4;

  /* Ink */
  --ink:    #0F1A18;
  --ink-2:  #1F2B28;
  --ink-3:  #4A5450;
  --ink-4:  #7C847F;
  --hair:   rgba(15, 26, 24, 0.10);
  --hair-2: rgba(15, 26, 24, 0.18);

  /* Accents — nature moderne */
  --leaf:    #3DA35D;
  --leaf-2:  #69C386;
  --coral:   #E27D4A;
  --lagoon:  #3AA3B5;

  /* Soleil — default accent (gold gradient) */
  --sun-1:   #FDC33A;
  --sun-2:   #FEEB91;
  --sun:     #E8A516; /* flat gold, readable on light */

  /* Vert minéral — used for tinted section backgrounds */
  --mineral-1: #2F6F6A;
  --mineral-2: #59C6B8;

  /* active accent */
  --accent:    #E8A516;
  --accent-2:  #FDC33A;
  --accent-grad: linear-gradient(90deg, #FDC33A 0%, #FEEB91 100%);

  /* Type */
  --display-xxl: clamp(52px, 7.5vw, 116px);
  --display-xl:  clamp(48px, 7.5vw, 112px);
  --display-l:   clamp(40px, 5.5vw, 84px);
  --display-m:   clamp(30px, 4vw, 56px);
  --display-s:   clamp(22px, 2.4vw, 32px);
  --body-l: 19px;
  --body: 17px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: var(--paper); }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'DM Sans', -apple-system, system-ui, sans-serif;
  font-size: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Tweak-driven themes */
body[data-bg="warm"]  { --paper: var(--paper-warm); }
body[data-bg="cool"]  { --paper: var(--paper-cool); }
body[data-bg="ivory"] { --paper: var(--ivory); }

body[data-accent="leaf"]   { --accent: #3DA35D; --accent-2: #69C386; --accent-grad: linear-gradient(90deg, #3DA35D 0%, #69C386 100%); }
body[data-accent="coral"]  { --accent: #E27D4A; --accent-2: #F0A280; --accent-grad: linear-gradient(90deg, #E27D4A 0%, #F0A280 100%); }
body[data-accent="lagoon"] { --accent: #3AA3B5; --accent-2: #6BC3D1; --accent-grad: linear-gradient(90deg, #3AA3B5 0%, #6BC3D1 100%); }
body[data-accent="sun"]    { --accent: #E8A516; --accent-2: #FDC33A; --accent-grad: linear-gradient(90deg, #FDC33A 0%, #FEEB91 100%); }

a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: #fff; }

/* ------- Layout ------- */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 900px) { .container { padding: 0 48px; } }

.section-pad   { padding: clamp(80px, 11vw, 160px) 0; }
.section-pad-s { padding: clamp(56px, 8vw, 110px) 0; }

/* ------- Type ------- */
.display {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 550;
  font-variation-settings: "opsz" 144, "SOFT" 20;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
}
.display-xxl { font-size: var(--display-xxl); letter-spacing: -0.02em; line-height: 1.0; }
.display-xl  { font-size: var(--display-xl);  letter-spacing: -0.035em; line-height: 0.92; }
.display-l   { font-size: var(--display-l);   letter-spacing: -0.03em;  line-height: 0.95; }
.display-m   { font-size: var(--display-m);   letter-spacing: -0.025em; line-height: 1.02; }
.display-s   { font-size: var(--display-s);   letter-spacing: -0.02em;  line-height: 1.1; }

.italic { font-style: italic; }

/* Any .display .accent (section titles) gets the Soleil gradient too */
.display .accent {
  font-style: italic;
  background: var(--accent-grad, linear-gradient(90deg, #FDC33A 0%, #FEEB91 100%));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content:'';
  width: 24px; height: 2px; background: var(--accent-grad, var(--accent));
  border-radius: 2px;
}

.mono { font-family: 'JetBrains Mono', monospace; }

.lede {
  font-size: var(--body-l);
  color: var(--ink-3);
  line-height: 1.55;
  max-width: 58ch;
  text-wrap: pretty;
}

/* ------- Buttons ------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14.5px;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), background .3s, color .3s, border-color .3s, box-shadow .3s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent-grad, linear-gradient(90deg, #FDC33A 0%, #FEEB91 100%));
  color: var(--ink);
  border-color: rgba(15,26,24,0.08);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.6),
    0 10px 30px -10px rgba(232,165,22,0.55),
    0 2px 6px -2px rgba(15,26,24,0.2);
  position: relative;
  font-weight: 600;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.7),
    0 16px 36px -10px rgba(232,165,22,0.65),
    0 2px 6px -2px rgba(15,26,24,0.22);
  filter: brightness(1.04);
}
.btn-primary .arrow { transition: transform .35s cubic-bezier(.2,.8,.2,1); display: inline-block; }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-ghost {
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: var(--hair-2);
  color: var(--ink);
}
.btn-ghost:hover { background: #fff; }

/* ------- Liquid glass ------- */
.glass {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 22px;
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.8) inset,
    0 30px 60px -24px rgba(15,26,24,0.18);
}
.glass-dark {
  background: rgba(15,26,24,0.45);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 22px;
  color: #fff;
}

/* ------- Nav ------- */
.nav {
  position: fixed; top: 14px; left: 0; right: 0; z-index: 100;
  padding: 0 20px;
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 18px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.18) 100%);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.9),
    inset 0 -1px 0 0 rgba(255,255,255,0.3),
    0 1px 0 0 rgba(255,255,255,0.4),
    0 14px 40px -18px rgba(15,26,24,0.28),
    0 4px 12px -4px rgba(15,26,24,0.08);
  position: relative;
  overflow: hidden;
}
.nav-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(110deg,
    rgba(255,255,255,0.55) 0%,
    rgba(255,255,255,0) 22%,
    rgba(255,255,255,0) 78%,
    rgba(255,255,255,0.35) 100%);
  pointer-events: none;
  mix-blend-mode: overlay;
}
.nav-inner > * { position: relative; z-index: 1; }
.wordmark { display: flex; flex-direction: column; line-height: 1; gap: 3px; }
.wordmark-main {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.wordmark-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px; letter-spacing: 0.2em;
  color: var(--ink-4);
  margin-top: 3px; text-transform: uppercase;
}
.nav-links { display: none; gap: 26px; }
@media (min-width: 980px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: 13.5px; color: var(--ink-2); transition: color .25s;
}
.nav-links a:hover { color: var(--accent); }
.nav .btn { padding: 10px 16px; font-size: 13px; }

/* ------- Language switch ------- */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lang-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  border: 0;
  background: transparent;
  color: var(--ink-2);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 500;
  border-radius: 999px;
  cursor: pointer;
  transition: background .25s, color .25s;
}
.lang-chip:hover:not(.active) { color: var(--accent); }
.lang-chip.active {
  background: var(--ink);
  color: #fff;
}
.lang-flag { font-size: 13px; line-height: 1; }
.lang-label { font-size: 11px; }
@media (max-width: 980px) {
  .lang-switch { display: none; }
}

/* ------- Hero ------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 80px 24px 0;
  overflow: hidden;
  background: var(--paper);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.hero-earth-bg {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100vw;
  aspect-ratio: 2586 / 1632;
  background-image: url('../assets/hero-earth.png?v=2');
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
}
.hero-earth-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0) 85%,
    rgba(247,245,239,0.4) 94%,
    var(--paper) 100%);
  pointer-events: none;
}
.hero-line { display: block; }
.hero-sky-accents {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-sky-accents .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}
.hero-sky-accents .b1 { width: 520px; height: 520px; background: var(--mineral-2); top: -180px; left: -120px; opacity: 0.22; }
.hero-sky-accents .b2 { width: 400px; height: 400px; background: var(--sun-1); top: 30%; right: -80px; opacity: 0.20; }

.hero-inner {
  position: relative; z-index: 3;
  max-width: 1100px; margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.7);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 28px;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: #FDC33A; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1);} 50% { opacity:0.5; transform:scale(0.85);} }

.hero-title { font-size: var(--display-xxl); margin: 0 auto; max-width: 22ch; line-height: 1.05; }
.hero-line { display: block; white-space: nowrap; padding: 0.04em 0; }
.hero-title .accent { margin-right: 0.12em; padding-right: 0.02em; }
.hero-title .accent {
  font-style: italic;
  background: var(--accent-grad, linear-gradient(90deg, #FDC33A 0%, #FEEB91 100%));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-lede {
  margin: 28px auto 36px;
  font-size: clamp(18px, 1.7vw, 22px);
  color: var(--ink-2);
  max-width: 52ch;
  line-height: 1.5;
}
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.hero-earth {
  position: relative;
  margin-top: clamp(28px, 4vw, 56px);
  height: clamp(360px, 52vw, 760px);
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  overflow: hidden;
}
.hero-earth-img {
  position: absolute; inset: 0;
  background-image: url('../assets/hero-earth.png?v=2');
  background-size: cover;
  background-position: center 30%;
  mask-image: linear-gradient(180deg, #000 0%, #000 78%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 78%, transparent 100%);
}
.hero-earth-glow { display: none; }

.hero-floating-stats {
  position: relative;
  margin: 34px auto 0;
  display: flex; gap: 12px;
  z-index: 3;
  justify-content: center;
  flex-wrap: wrap;
  pointer-events: auto;
}
.hero-stat {
  padding: 10px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.62);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.7);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: flex; align-items: center; gap: 8px;
}
.hero-stat strong { color: var(--accent); font-weight: 600; letter-spacing: 0; text-transform: none; font-size: 14px; font-family: 'Fraunces', serif; font-style: italic; }

@media (max-width: 780px) {
  .hero-floating-stats { display: none; }
}

/* ------- Hero stores ------- */
.hero-stores {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(24px, 4vw, 56px);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  pointer-events: none;
}
.hero-stores > a { pointer-events: auto; }
.hero-store-badge {
  height: 160px;
  width: auto;
  display: block;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), opacity .25s;
}
.hero-store-badge:hover { transform: translateY(-2px); opacity: 0.9; }
@media (max-width: 760px) {
  .hero-store-badge { height: 96px; }
  .hero-stores { gap: 14px; }
}

/* ------- Problem ------- */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 900px) {
  .problem-grid { grid-template-columns: 220px 1fr; gap: 60px; }
}

/* ------- Approach cards ------- */
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 760px) {
  .pillars { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}
.pillar {
  position: relative;
  padding: 32px;
  border-radius: 22px;
  background: rgba(255,255,255,0.68);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.75);
  box-shadow: 0 18px 40px -28px rgba(15,26,24,0.25);
  transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s;
  overflow: hidden;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px rgba(15,26,24,0.3);
}
.pillar::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 0%, color-mix(in oklch, #2F6F6A 22%, transparent), color-mix(in oklch, #59C6B8 8%, transparent) 50%, transparent 70%);
  opacity: 0.7;
  pointer-events: none;
}
.pillar-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  margin-bottom: 22px;
  position: relative; z-index: 1;
}
.pillar h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500; font-size: 26px;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  line-height: 1.1;
  position: relative; z-index: 1;
}
.pillar p {
  color: var(--ink-3); margin: 0; line-height: 1.55;
  position: relative; z-index: 1;
}

/* ------- Wildlands (fixed carousel-style scroll) ------- */
.wildlands-section {
  position: relative;
  background: transparent;
  padding: clamp(80px, 10vw, 140px) 0;
  overflow: visible;
}
.wildlands-header {
  max-width: 760px;
  margin: 0 auto clamp(48px, 6vw, 88px);
  text-align: center;
}
.wild-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 980px) {
  .wild-stage { grid-template-columns: 1fr 1fr; gap: 72px; }
}
.wild-globe-col {
  position: relative;
}
.wild-card-col {
  position: relative;
  padding-top: clamp(64px, 8vw, 96px);
}
.wild-globe-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 560px;
  margin: 0 auto;
}
.wild-globe-wrap canvas {
  display: block; width: 100% !important; height: 100% !important;
  border-radius: 50%;
}
.wild-globe-glow {
  position: absolute; inset: -10%;
  background: radial-gradient(closest-side, color-mix(in oklch, #2F6F6A 35%, transparent), transparent 70%);
  filter: blur(40px);
  z-index: -1;
}
.wild-pill-row {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.7);
  z-index: 5;
}
.wild-pill {
  padding: 8px 14px;
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: background .3s, color .3s;
  white-space: nowrap;
}
.wild-pill.active {
  background: var(--ink);
  color: #fff;
}
.wild-pill:hover:not(.active) { color: var(--accent); }

.wild-card {
  position: relative;
  padding: 0;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 30px 60px -30px rgba(15,26,24,0.22);
}
.wild-card-ph {
  position: relative;
  height: 280px;
  overflow: hidden;
  background-color: var(--wild-tone, #3DA35D);
  background-size: cover;
  background-position: center;
}
.wild-card-ph::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,26,24,0) 40%, rgba(15,26,24,0.35) 100%);
  pointer-events: none;
}
.wild-card-label {
  position: absolute; top: 14px; left: 14px;
  z-index: 2;
  padding: 6px 10px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.wild-card-body { padding: 28px 32px 32px; }
.wild-card-body h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0 0 10px;
}
.wild-card-body .type {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 14px;
  display: flex; gap: 10px; flex-wrap: wrap;
}
.wild-card-body .type .coord { color: var(--accent); }

/* ------- Benefits ------- */
.benefits-list { border-top: 1px solid var(--hair); }
.benefit-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 32px 0;
  border-bottom: 1px solid var(--hair);
  position: relative;
  transition: padding .35s;
}
.benefit-row::after {
  content:'';
  position: absolute; left: 0; right: 100%; top: 0; height: 2px;
  background: var(--accent-grad, var(--accent));
  transition: right .5s cubic-bezier(.2,.8,.2,1);
}
.benefit-row:hover::after { right: 0; }
@media (min-width: 900px) {
  .benefit-row { grid-template-columns: 180px 1.4fr 1.6fr; gap: 48px; align-items: baseline; }
}
.benefit-k {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-4);
}
.benefit-k strong { color: var(--ink); margin-right: 10px; }
.benefit-t {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500; font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.02em; margin: 0; line-height: 1.15;
}
.benefit-d { color: var(--ink-3); margin: 0; max-width: 52ch; line-height: 1.55; }

/* ------- Why now ------- */
.why-section {
  background:
    radial-gradient(1200px 500px at 50% 0%, color-mix(in oklch, #2F6F6A 22%, transparent), color-mix(in oklch, #59C6B8 10%, transparent) 50%, transparent 75%),
    var(--paper);
}

/* ------- FAQ ------- */
.faq-item { border-top: 1px solid var(--hair); padding: 20px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--hair); }
.faq-q {
  width: 100%; background: none; border: 0; text-align: left;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; padding: 6px 0; cursor: pointer;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(19px, 2vw, 24px);
  letter-spacing: -0.015em;
  color: var(--ink);
}
.faq-plus {
  width: 30px; height: 30px; flex-shrink: 0;
  border-radius: 50%; border: 1px solid var(--hair-2);
  position: relative;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), background .3s, border-color .3s;
}
.faq-plus::before, .faq-plus::after {
  content:''; position: absolute; background: var(--ink); transition: transform .3s, background .3s, opacity .3s;
}
.faq-plus::before { top: 50%; left: 8px; right: 8px; height: 1.5px; transform: translateY(-50%); }
.faq-plus::after  { left: 50%; top: 8px; bottom: 8px; width: 1.5px; transform: translateX(-50%); }
.faq-item[data-open="true"] .faq-plus {
  background: linear-gradient(135deg, #FDC33A 0%, #FEEB91 100%);
  border-color: #FDC33A;
  box-shadow: 0 6px 18px -6px rgba(253,195,58,0.55);
}
.faq-item[data-open="true"] .faq-plus::before,
.faq-item[data-open="true"] .faq-plus::after { background: var(--ink); }
.faq-item[data-open="true"] .faq-plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .5s cubic-bezier(.2,.8,.2,1); color: var(--ink-3); }
.faq-a-inner { padding: 10px 0 6px; max-width: 70ch; line-height: 1.6; }

/* ------- Final CTA — solid Austral gradient, floating */
.final-cta {
  position: relative;
  padding: clamp(56px, 7vw, 110px) clamp(28px, 5vw, 72px);
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, #6AAECA, transparent 60%),
    radial-gradient(circle at 90% 100%, #59C6B8, transparent 60%),
    linear-gradient(135deg, #255071 0%, #2F6F6A 100%);
  color: #FFFFFF;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.35),
    0 50px 100px -28px rgba(37,80,113,0.55),
    0 22px 50px -14px rgba(47,111,106,0.4);
}
.final-cta .display { color: #FFFFFF; }
.final-cta .lede { color: rgba(255,255,255,0.88); margin: 0 auto 36px; }
.final-cta .btn-primary {
  background: var(--accent-grad, linear-gradient(90deg, #FDC33A 0%, #FEEB91 100%));
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.7),
    0 14px 36px -8px rgba(253,195,58,0.55);
}
.final-cta .btn-primary:hover { color: var(--ink); filter: brightness(1.05); }
.final-cta .meta {
  margin-top: 22px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
}

/* ------- Footer ------- */
.footer {
  padding: 72px 0 48px;
  border-top: 1px solid var(--hair);
  color: var(--ink-3);
  font-size: 13.5px;
}
.footer-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 24px;
}
.footer-links { display: flex; gap: 22px; }
.footer-links a:hover { color: var(--accent); }

/* ------- Reveal (elements are visible by default; motion is an entrance only) ------- */
.reveal, .reveal-word { opacity: 1; transform: none; }
.reveal-word { display: inline-block; }

/* ------- Tweaks panel ------- */
.tweaks {
  position: fixed; right: 18px; bottom: 18px; z-index: 500;
  background: rgba(15,26,24,0.92);
  color: #EFEAE1;
  border-radius: 16px;
  padding: 14px 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.06em;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.5);
  min-width: 240px;
}
.tweaks-title {
  font-size: 10px; text-transform: uppercase; opacity: 0.5; letter-spacing: 0.18em;
  margin-bottom: 12px;
  display: flex; justify-content: space-between; align-items: center;
}
.tweak-row { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.tweak-row label { opacity: 0.55; flex: 1; text-transform: uppercase; font-size: 9.5px; letter-spacing: 0.14em; }
.tweak-group { display: flex; gap: 4px; flex-wrap: wrap; }
.tweak-chip {
  padding: 5px 9px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: inherit;
  font: inherit;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 10px;
}
.tweak-chip.active { background: #EFEAE1; color: #141414; border-color: #EFEAE1; }
.tweak-swatch {
  width: 10px; height: 10px; border-radius: 50%;
  display: inline-block; margin-right: 5px;
  vertical-align: middle;
  border: 1px solid rgba(255,255,255,0.2);
}

.helpers { display: none; }

/* =====================================================
   BIOMES — section-level gradient atmospheres
   ===================================================== */

/* =====================================================
   ATMOSPHERIC CONTINUITY SYSTEM
   - Sections share the same --paper base
   - Color "taches" placed near edges create chromatic continuity:
     bottom of A and top of B share the same color, so the seam dissolves
   - Each tache has two states: muted (default) and saturated (hover)
   - Smooth, organic transition reveals the true color underneath the veil
   ===================================================== */

.section-problem,
.section-how,
.section-wildlands,
.section-engagement,
.section-austral,
.section-faq {
  position: relative;
  background: transparent;
  color: var(--ink);
  overflow: visible;
}

/* Tache: a soft color stain that appears muted by default and reveals
   its full saturation on hover (a slow, organic unveiling) */
.tache {
  position: absolute;
  border-radius: 50%;
  pointer-events: auto;
  z-index: 0;
  filter: blur(20px);
  opacity: 0.55;
  transform: scale(1);
  transition:
    opacity 1.6s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 1.6s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 1.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, filter, transform;
}
.tache:hover {
  opacity: 1;
  filter: blur(8px);
  transform: scale(1.05);
}
@media (prefers-reduced-motion: reduce) {
  .tache { transition: opacity 0.2s linear; }
  .tache:hover { transform: scale(1); }
}

/* Color palette for taches — full-saturation truth painted as radial fill */
.tache-blue        { background: radial-gradient(circle, #6AAECA 0%, rgba(106,174,202,0) 70%); }
.tache-blue-deep   { background: radial-gradient(circle, #255071 0%, rgba(37,80,113,0) 70%); }
.tache-mineral     { background: radial-gradient(circle, #59C6B8 0%, rgba(89,198,184,0) 70%); }
.tache-mineral-deep{ background: radial-gradient(circle, #2F6F6A 0%, rgba(47,111,106,0) 70%); }
.tache-sun         { background: radial-gradient(circle, #FDC33A 0%, rgba(253,195,58,0) 70%); }
.tache-sun-pale    { background: radial-gradient(circle, #FEEB91 0%, rgba(254,235,145,0) 70%); }

/* Section content always sits above the taches */
.section-problem > .container,
.section-how > .container,
.section-wildlands > .container,
.section-engagement > .container,
.section-austral > .container,
.section-faq > .container {
  position: relative;
  z-index: 1;
}

/* Section 01 — Problem: subtle dotted texture (kept) */
.section-problem::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(15,26,24,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  z-index: 0;
}

/* =====================================================
   PROBLEM (01) — narrative + 3 pain pillars
   ===================================================== */
.problem-narrative {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.problem-narrative .display {
  margin: 18px auto 28px;
}
.problem-bridge {
  display: block;
  margin: 36px auto 0;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 24px);
  color: var(--ink-2);
  max-width: 36ch;
  line-height: 1.4;
}
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 56px;
}
@media (min-width: 820px) {
  .pain-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.pain-card {
  position: relative;
  padding: 30px 28px 32px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.62) 0%, rgba(255,255,255,0.42) 100%);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.85),
    0 40px 80px -28px rgba(15,26,24,0.32),
    0 16px 36px -14px rgba(15,26,24,0.18);
  overflow: hidden;
  color: var(--ink);
}
.pain-card.tone-blue {
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(106,174,202,0.65), transparent 60%),
    radial-gradient(110% 80% at 0% 100%, rgba(37,80,113,0.55), transparent 60%),
    linear-gradient(160deg, rgba(106,174,202,0.4), rgba(37,80,113,0.45));
  color: #FAFAF6;
  border-color: rgba(255,255,255,0.4);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.4),
    0 40px 80px -28px rgba(37,80,113,0.5),
    0 16px 36px -14px rgba(37,80,113,0.3);
}
.pain-card.tone-mineral {
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(89,198,184,0.7), transparent 60%),
    radial-gradient(110% 80% at 100% 100%, rgba(47,111,106,0.6), transparent 60%),
    linear-gradient(160deg, rgba(89,198,184,0.45), rgba(47,111,106,0.5));
  color: #FAFAF6;
  border-color: rgba(255,255,255,0.4);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.4),
    0 40px 80px -28px rgba(47,111,106,0.5),
    0 16px 36px -14px rgba(47,111,106,0.3);
}
.pain-card.tone-sun {
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(254,235,145,0.85), transparent 60%),
    radial-gradient(110% 80% at 0% 100%, rgba(253,195,58,0.65), transparent 60%),
    linear-gradient(160deg, rgba(254,235,145,0.55), rgba(253,195,58,0.45));
  color: var(--ink);
  border-color: rgba(255,255,255,0.5);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.6),
    0 40px 80px -28px rgba(232,165,22,0.45),
    0 16px 36px -14px rgba(232,165,22,0.28);
}
.pain-card.tone-blue .pain-word,
.pain-card.tone-mineral .pain-word { color: #FFFFFF; }
.pain-card.tone-blue .pain-desc,
.pain-card.tone-mineral .pain-desc { color: #FFFFFF; }
.pain-card.tone-blue .pain-desc,
.pain-card.tone-mineral .pain-desc,
.pain-card.tone-sun .pain-desc { font-weight: 600; }
.pain-card.tone-sun .pain-arrow { color: var(--ink); }
.pain-card.tone-blue .pain-arrow,
.pain-card.tone-mineral .pain-arrow { color: #FEEB91; }
.pain-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg,
    rgba(255,255,255,0.45) 0%,
    rgba(255,255,255,0) 28%,
    rgba(255,255,255,0) 72%,
    rgba(255,255,255,0.3) 100%);
  pointer-events: none;
  mix-blend-mode: overlay;
}
.pain-arrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 18px;
  display: block;
  line-height: 1;
}
.pain-word {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--ink);
}
.pain-desc {
  color: var(--ink-3);
  margin: 0;
  line-height: 1.55;
  font-size: 15.5px;
}
.problem-closing {
  margin: 72px auto 0;
  text-align: center;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 36px);
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 28ch;
  line-height: 1.25;
}

/* =====================================================
   HOW IT WORKS (02) — 4 pillars + phone mockup
   ===================================================== */
.how-header {
  max-width: 820px;
  margin: 0 auto clamp(48px, 6vw, 80px);
  text-align: center;
}
.how-header .lede { margin: 22px auto 0; max-width: 64ch; }

.how-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 980px) {
  .how-stage { grid-template-columns: 1.1fr 0.9fr; gap: 80px; }
}

.how-pillars {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.how-pillar {
  position: relative;
  padding: 26px 28px;
  border-radius: 20px;
  background: rgba(255,255,255,0.58);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.85),
    0 20px 40px -28px rgba(15,26,24,0.18);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  align-items: flex-start;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s;
}
.how-pillar:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.9),
    0 30px 50px -28px rgba(15,26,24,0.24);
}
.how-pillar-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(15,26,24,0.95), rgba(15,26,24,0.85));
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: inset 0 1px 0 0 rgba(255,255,255,0.18);
}
.how-pillar-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: -0.02em;
  margin: 0 0 4px;
  line-height: 1.15;
  color: var(--ink);
}
.how-pillar-tag {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 16px;
  color: var(--accent);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.how-pillar-desc {
  margin: 0;
  color: var(--ink-3);
  line-height: 1.55;
  font-size: 15.5px;
}

/* Phone mockup — launch screen */
.how-phone-col {
  position: sticky;
  top: 100px;
  display: flex;
  justify-content: center;
}
.phone {
  position: relative;
  width: min(320px, 90%);
  aspect-ratio: 9 / 19;
  border-radius: 44px;
  background: linear-gradient(180deg, #1A1F1D 0%, #0C1110 100%);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 12px;
  box-shadow:
    0 60px 120px -30px rgba(15,26,24,0.45),
    0 30px 60px -20px rgba(15,26,24,0.3),
    inset 0 1px 0 0 rgba(255,255,255,0.1);
  transform: rotate(-3deg);
}
.phone::before {
  content: '';
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 28px;
  border-radius: 999px;
  background: #050708;
  z-index: 3;
}
.phone-screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% 0%, #2A4D5E 0%, #122636 55%, #050B12 100%);
  display: flex;
  flex-direction: column;
}
.phone-status {
  display: flex; justify-content: space-between;
  padding: 18px 26px 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
  z-index: 2;
}
.phone-launch {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
}
.phone-launch::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253,195,58,0.32) 0%, rgba(89,198,184,0.18) 40%, transparent 70%);
  transform: translate(-50%, -55%);
  filter: blur(6px);
}
.phone-launch-mark {
  position: relative;
  width: 78px; height: 78px;
  border-radius: 50%;
  background: url('../assets/austral-logo.png') center/cover no-repeat, #FAF8F4;
  box-shadow:
    0 18px 40px -10px rgba(15,26,24,0.55),
    0 0 0 1px rgba(255,255,255,0.18);
}
.phone-launch-name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-style: italic;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: #fff;
  position: relative;
}
.phone-launch-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  position: relative;
}
.phone-foot {
  text-align: center;
  padding: 0 0 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  position: relative;
  z-index: 2;
}

/* =====================================================
   WILDLANDS (03) — dark biome
   ===================================================== */
.section-wildlands .wildlands-header { color: var(--ink); }
.section-wildlands .wildlands-header .eyebrow { color: var(--ink-3); }
.section-wildlands .wildlands-header .lede { color: var(--ink-3); }
.section-wildlands .wildlands-header .display .accent {
  background: linear-gradient(90deg, #FDC33A 0%, #FEEB91 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-wildlands .wild-pill-row {
  background: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.7);
}
.section-wildlands .wild-pill {
  color: var(--ink-2);
}
.section-wildlands .wild-pill.active {
  background: var(--accent-grad);
  color: var(--ink);
}
.section-wildlands .wild-card {
  background: rgba(255,255,255,0.55);
  border-color: rgba(255,255,255,0.7);
  color: var(--ink);
}
.section-wildlands .wild-card-body h3 { color: var(--ink); }
.section-wildlands .wild-card-body .type { color: var(--ink-3); }
.section-wildlands .wild-card-body p { color: var(--ink-3) !important; }
.section-wildlands .wild-card-label {
  background: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.8);
  color: var(--ink-2);
}

/* =====================================================
   ENGAGEMENT (04) — three contrasts
   ===================================================== */
.engagement-header {
  max-width: 760px;
  margin: 0 auto clamp(48px, 6vw, 80px);
  text-align: center;
}
.engagement-header .lede { margin: 22px auto 0; }

.contrast-list {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
@media (min-width: 900px) {
  .contrast-row:nth-child(1) { margin-right: 16%; margin-left: 0; }
  .contrast-row:nth-child(2) { margin-right: 8%;  margin-left: 8%; }
  .contrast-row:nth-child(3) { margin-right: 0;   margin-left: 16%; }
}
.contrast-desc { font-weight: 600; }
.contrast-vs   { font-weight: 600; }
.contrast-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.5) 100%);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.85),
    0 44px 80px -28px rgba(15,26,24,0.32),
    0 18px 36px -14px rgba(15,26,24,0.18);
  overflow: hidden;
}
.contrast-row.tone-blue {
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(106,174,202,0.55), transparent 60%),
    radial-gradient(80% 120% at 0% 100%, rgba(37,80,113,0.45), transparent 60%),
    linear-gradient(135deg, rgba(106,174,202,0.32), rgba(37,80,113,0.40));
  border-color: rgba(255,255,255,0.4);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.4),
    0 44px 80px -28px rgba(37,80,113,0.5),
    0 18px 36px -14px rgba(37,80,113,0.3);
}
.contrast-row.tone-mineral {
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(89,198,184,0.6), transparent 60%),
    radial-gradient(80% 120% at 0% 100%, rgba(47,111,106,0.5), transparent 60%),
    linear-gradient(135deg, rgba(89,198,184,0.32), rgba(47,111,106,0.42));
  border-color: rgba(255,255,255,0.4);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.4),
    0 44px 80px -28px rgba(47,111,106,0.5),
    0 18px 36px -14px rgba(47,111,106,0.3);
}
.contrast-row.tone-sun {
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(254,235,145,0.75), transparent 60%),
    radial-gradient(80% 120% at 0% 100%, rgba(253,195,58,0.55), transparent 60%),
    linear-gradient(135deg, rgba(254,235,145,0.4), rgba(253,195,58,0.38));
  border-color: rgba(255,255,255,0.5);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.6),
    0 44px 80px -28px rgba(232,165,22,0.45),
    0 18px 36px -14px rgba(232,165,22,0.28);
}
/* Force readable text colors per tone */
.contrast-row.tone-blue .contrast-num,
.contrast-row.tone-mineral .contrast-num {
  color: #FFFFFF;
  border-right-color: rgba(255,255,255,0.22);
}
.contrast-row.tone-sun .contrast-num {
  color: var(--ink);
  border-right-color: rgba(15,26,24,0.18);
}
.contrast-row.tone-blue .contrast-side,
.contrast-row.tone-mineral .contrast-side {
  border-right-color: rgba(255,255,255,0.22);
}
.contrast-row.tone-sun .contrast-side {
  border-right-color: rgba(15,26,24,0.18);
}
/* Faded (left) sides */
.contrast-row.tone-blue .contrast-side.faded,
.contrast-row.tone-mineral .contrast-side.faded {
  background: linear-gradient(180deg, rgba(15,26,24,0.18), rgba(15,26,24,0.10));
}
.contrast-row.tone-blue .contrast-side.faded .contrast-word,
.contrast-row.tone-mineral .contrast-side.faded .contrast-word { color: #FFFFFF; }
.contrast-row.tone-blue .contrast-side.faded .contrast-desc,
.contrast-row.tone-mineral .contrast-side.faded .contrast-desc { color: #FFFFFF; }
.contrast-row.tone-blue .contrast-side.faded .contrast-vs,
.contrast-row.tone-mineral .contrast-side.faded .contrast-vs { color: #FFFFFF; }
.contrast-row.tone-sun .contrast-side.faded {
  background: linear-gradient(180deg, rgba(15,26,24,0.06), rgba(15,26,24,0.02));
}
.contrast-row.tone-sun .contrast-side.faded .contrast-word { color: var(--ink-3); }
.contrast-row.tone-sun .contrast-side.faded .contrast-desc { color: var(--ink-3); }
.contrast-row.tone-sun .contrast-side.faded .contrast-vs { color: var(--ink-4); }
/* Live (right) sides */
.contrast-row.tone-blue .contrast-side.live,
.contrast-row.tone-mineral .contrast-side.live {
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06));
}
.contrast-row.tone-blue .contrast-side.live .contrast-word,
.contrast-row.tone-mineral .contrast-side.live .contrast-word {
  color: #FFFFFF;
  background: none;
  -webkit-text-fill-color: #FFFFFF;
}
.contrast-row.tone-blue .contrast-side.live .contrast-desc,
.contrast-row.tone-mineral .contrast-side.live .contrast-desc { color: #FFFFFF; }
.contrast-row.tone-blue .contrast-side.live .contrast-vs,
.contrast-row.tone-mineral .contrast-side.live .contrast-vs { color: #FFFFFF; }
.contrast-row.tone-sun .contrast-side.live {
  background: linear-gradient(180deg, rgba(255,255,255,0.5), rgba(255,255,255,0.25));
}
.contrast-row.tone-sun .contrast-side.live .contrast-word {
  color: var(--ink);
  background: none;
  -webkit-text-fill-color: var(--ink);
}
.contrast-row.tone-sun .contrast-side.live .contrast-desc { color: var(--ink-2); }
.contrast-row.tone-sun .contrast-side.live .contrast-vs { color: var(--ink-3); }
@media (min-width: 900px) {
  .contrast-row { grid-template-columns: 110px 1fr 1fr; align-items: stretch; }
}
.contrast-num {
  padding: 28px 28px 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-4);
  display: flex; align-items: center;
  border-right: 1px solid rgba(15,26,24,0.06);
}
@media (min-width: 900px) {
  .contrast-num { padding: 36px 0 36px 32px; }
}
.contrast-side {
  padding: 24px 28px 28px;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid rgba(15,26,24,0.06);
}
.contrast-side:last-child { border-right: 0; }
.contrast-side.faded {
  background: linear-gradient(180deg, rgba(15,26,24,0.04), rgba(15,26,24,0.02));
  color: var(--ink-4);
}
.contrast-side.faded .contrast-word {
  color: var(--ink-4);
  font-style: italic;
}
.contrast-side.faded .contrast-vs {
  color: var(--ink-4);
}
.contrast-side.live {
  background: linear-gradient(180deg, rgba(255,255,255,0.5), rgba(255,255,255,0.25));
}
.contrast-word {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.025em;
  margin: 0 0 6px;
  color: var(--ink);
  line-height: 1.05;
}
.contrast-side.live .contrast-word {
  background: var(--accent-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contrast-vs {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 14px;
}
.contrast-desc {
  margin: 0;
  color: var(--ink-3);
  line-height: 1.55;
  font-size: 15.5px;
  max-width: 50ch;
}
.contrast-side.faded .contrast-desc { color: var(--ink-4); }

/* =====================================================
   AUSTRAL (05) — diagonal split with full-bleed image
   ===================================================== */
.austral-split {
  position: relative;
  overflow: visible;
  min-height: 720px;
}
.austral-split .container.austral-container {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
}

/* Right-zone image — vertical band on the right, clipped along a near-vertical
   diagonal that runs from bottom-center to top-center with a ~10° tilt.
   Diagonal endpoints: (45%, 100%) → (55%, 0%) */
.austral-image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(24px, calc(50% - 640px));
  right: max(24px, calc(50% - 640px));
  z-index: 1;
  pointer-events: none;
  clip-path: polygon(45% 100%, 55% 0%, 100% 0%, 100% 100%);
  -webkit-clip-path: polygon(45% 100%, 55% 0%, 100% 0%, 100% 100%);
  border-radius: 0 24px 24px 0;
  overflow: hidden;
}
.austral-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  display: block;
}
.austral-image-tint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(37,80,113,0.18) 0%, rgba(0,0,0,0) 55%),
    linear-gradient(0deg, rgba(15,26,24,0.18), rgba(15,26,24,0));
}

/* Diagonal line drawn as SVG — covers the same area as the image (container-bound) */
.austral-diagonal {
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(24px, calc(50% - 640px));
  right: max(24px, calc(50% - 640px));
  z-index: 2;
  pointer-events: none;
  overflow: visible;
}
.austral-diagonal line {
  stroke-width: 1.5px; /* enforced by vectorEffect non-scaling-stroke too */
}

/* Quote overlay — on the image (right vertical band) */
.austral-quote {
  position: absolute;
  z-index: 3;
  right: max(48px, calc(50% - 620px));
  top: 50%;
  transform: translateY(-50%);
  max-width: 320px;
  text-align: right;
  color: var(--ink);
}
.austral-quote-text {
  margin: 0 0 12px;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.austral-quote-attr {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--ink);
}

/* Content sits in the LEFT half (left of the diagonal) */
.austral-content {
  position: relative;
  z-index: 4;
  max-width: min(48%, 620px);
  margin-top: 0;
}
@media (min-width: 1100px) {
  .austral-content { max-width: min(46%, 640px); }
}
.austral-split .austral-logo-row { margin-bottom: 28px; }
.austral-split .austral-body { max-width: 56ch; }
.austral-split .austral-body p { margin: 0 0 16px; }
.austral-split .austral-body p:last-child { margin-bottom: 0; }

.austral-split .austral-trust {
  position: relative;
  z-index: 4;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(15,26,24,0.10);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  max-width: min(48%, 620px);
}

/* Mobile: stack image on top, text below — no diagonal */
@media (max-width: 760px) {
  .austral-split { min-height: 0; }
  .austral-image {
    position: relative;
    height: 320px;
    clip-path: none;
    -webkit-clip-path: none;
    margin: 0 -24px 32px;
  }
  .austral-diagonal { display: none; }
  .austral-quote {
    position: relative;
    right: auto; top: auto;
    text-align: left;
    margin: 0 0 36px;
    color: var(--ink);
    text-shadow: none;
  }
  .austral-content { margin-top: 0; }
}
  gap: 48px;
  align-items: flex-start;
}
@media (min-width: 980px) {
  .austral-stage { grid-template-columns: 1.2fr 1fr; gap: 80px; }
}
.section-austral .eyebrow { color: var(--ink-3); }
.section-austral .eyebrow::before { background: var(--accent-grad); }
.section-austral .display { color: var(--ink); }
.austral-logo-row {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 32px;
}
.austral-mark {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: url('../assets/austral-logo.png') center/cover no-repeat, #FAF8F4;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 12px 28px -12px rgba(47,111,106,0.5);
}
.austral-wordmark {
  display: flex; flex-direction: column; gap: 4px; line-height: 1;
}
.austral-wordmark .name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-style: italic;
  font-size: 26px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.austral-wordmark .sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.austral-body {
  color: var(--ink-2);
  font-size: var(--body-l);
  line-height: 1.6;
  max-width: 56ch;
}
.austral-body p { margin: 0 0 18px; }
.austral-body p:last-child { margin-bottom: 0; }

/* Sphere/planet motto card — real glass-sphere image over Austral gradient */
.austral-aside-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  position: relative;
}
.austral-orb {
  position: relative;
  width: min(460px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 14% 16%;
  overflow: hidden;
  background: linear-gradient(135deg, #255071 0%, #2F6F6A 100%);
  /* Side shadows for 3D floating sphere look (no border) */
  box-shadow:
    /* directional drop shadow on right + below */
    40px 60px 90px -20px rgba(15,26,24,0.35),
    -20px 30px 60px -20px rgba(37,80,113,0.45),
    /* inner edge darkening for sphere volume */
    inset -30px -30px 80px 0 rgba(15,26,24,0.45),
    inset 30px 30px 60px 0 rgba(255,255,255,0.10);
  animation: orbBob 9s ease-in-out infinite;
}
/* Rotating planet surface — wide gradient scrolling horizontally */
.austral-orb-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  /* Repeating wide canvas of the exact final-CTA gradient (no opacity, no extra shading) */
  background:
    radial-gradient(circle at 6% 50%, #6AAECA, transparent 30%),
    radial-gradient(circle at 45% 50%, #59C6B8, transparent 30%),
    radial-gradient(circle at 75% 50%, #6AAECA, transparent 30%),
    linear-gradient(135deg, #255071 0%, #2F6F6A 50%, #255071 100%);
  background-size: 300% 100%;
  background-repeat: repeat-x;
  animation: orbSpin 22s linear infinite;
  z-index: 1;
}
/* Static glass highlights overlay */
.austral-orb-glass {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: url('../assets/glass-sphere-clean.png') center/110% 110% no-repeat;
  pointer-events: none;
  z-index: 2;
}
.austral-orb::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
  /* Subtle volumetric highlight on top-left (sun position), no border */
  background:
    radial-gradient(circle at 28% 22%, rgba(255,255,255,0.25), transparent 35%);
}

@keyframes orbSpin {
  from { background-position-x: 0%; }
  to   { background-position-x: -300%; }
}
@keyframes orbBob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) {
  .austral-orb { animation: none; }
  .austral-orb-bg { animation: none; }
}
.austral-orb-inner {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.austral-motto {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #FAFAF6;
  margin: 0;
  text-wrap: balance;
  text-shadow: 0 2px 18px rgba(15,26,24,0.35);
}
.austral-motto-attr {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}
.austral-motto-attr::before {
  content: '— ';
  margin-right: 4px;
}

.austral-trust {
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--hair);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 32px;
  align-items: center;
}
.austral-trust-item {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 700;
}
.austral-trust-item::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(253, 195, 58, 0.5);
}

/* override default .wildlands-section → use new dark biome via .section-wildlands */
.wildlands-section { background: transparent; padding: clamp(80px, 10vw, 140px) 0; }

