/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #0D0C0A;
  --surface:     #161411;
  --border:      #2A2520;
  --gold:        #C9A96E;
  --gold-dim:    rgba(201, 169, 110, 0.12);
  --gold-line:   rgba(201, 169, 110, 0.3);
  --sage:        #8BA888;
  --frost:       #A8BFC4;
  --text-1:      #EDE8DF;
  --text-2:      #A09888;
  --text-3:      #7B7268;
  --radius:      4px;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

html { font-size: 17px; scroll-behavior: auto; }

body {
  background: var(--bg);
  color: var(--text-1);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── ScrollSmoother wrapper ─── */
#smooth-wrapper { overflow: hidden; }
#smooth-content  { will-change: transform; }

/* ─── Navigation ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4rem;
  background: transparent;
  transition: background 0.5s ease, backdrop-filter 0.5s ease;
}
nav.scrolled {
  background: rgba(13, 12, 10, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  color: var(--text-1);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-logo-name {
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.05em;
}
.nav-logo-name span { color: var(--gold); }
.nav-logo-by {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  font-family: var(--font-body);
  font-weight: 400;
  display: flex;
  align-items: baseline;
  gap: 0.3em;
}
.dexp-logo-sm .dexp-letter {
  font-size: 13px;
  color: var(--text-3);
}
.dexp-logo-sm .dexp-dot {
  width: 5px;
  height: 5px;
  margin-bottom: 2px;
  margin-left: 1px;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-lang {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 0.3rem 0.7rem;
  transition: color 0.2s, border-color 0.2s;
  margin-left: 1rem;
}
.nav-lang:hover { color: var(--gold); border-color: var(--gold-line); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Hamburger button — hidden on desktop */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2rem;
  height: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 102;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #0d0c0a;
  border: none;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateY(8px);
}
.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top-btn:hover {
  background: #dfc08a;
}

.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 101;
  background: rgba(13, 12, 10, 0.97);
  backdrop-filter: blur(16px);
  padding: 6rem 2.5rem 3rem;
  flex-direction: column;
  overflow-y: auto;
}
.nav-drawer.open { display: flex; }
.nav-drawer-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-1);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.nav-drawer-close:hover { opacity: 1; }

.nav-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-drawer-links li {
  border-bottom: 1px solid var(--border);
}
.nav-drawer-links a {
  display: block;
  padding: 1.2rem 0;
  font-size: 1.15rem;
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--fg);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-drawer-links a:hover { color: var(--gold); }
.nav-lang-drawer {
  font-size: 0.8rem !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase;
  color: var(--text-3) !important;
}

/* ─── Section base ─── */
section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 10vw;
  overflow: hidden;
}
section + section::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-line), transparent);
}

/* ─── Section labels ─── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

/* ─── Typography ─── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 8rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-1);
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text-1);
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-1);
}
.display-xl em, .display-lg em, .display-md em {
  font-style: italic;
  color: var(--gold);
}
.body-lg {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 400;
  color: var(--text-2);
  line-height: 1.8;
  max-width: 52ch;
}
.body-md {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-2);
  line-height: 1.8;
}
.gold-text { color: var(--gold); }
.text-1 { color: var(--text-1); }

/* ─── Utility ─── */
.spacer-sm { height: 1.5rem; }
.spacer-md { height: 3rem; }
.spacer-lg { height: 5rem; }
.fade-init { opacity: 0; transform: translateY(32px); }
.split-word { overflow: hidden; display: inline-block; }

/* ─── 1. HERO ─── */
.hero {
  min-height: 100vh;
  justify-content: flex-end;
  padding-bottom: 10vh;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201,169,110,0.06) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 80% 70%, rgba(138,184,136,0.04) 0%, transparent 60%);
}
.hero-eyebrow {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 7.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 14ch;
  overflow: hidden;
}
.hero-sub {
  margin-top: 3rem;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  color: var(--text-2);
  max-width: 50ch;
  line-height: 1.8;
}
.scroll-hint {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-3);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ─── 2. THE GAP ─── */
.gap-section {
  background: var(--surface);
}
.gap-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  margin-top: 5rem;
}
.gap-stat {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}
.stat-number-row {
  display: flex;
  align-items: baseline;
  gap: 0;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-top: 0.75rem;
  display: block;
}
.stat-desc {
  font-size: 1rem;
  color: var(--text-3);
  margin-top: 0.5rem;
  line-height: 1.6;
}

/* ─── 3. ADJACENT WORLDS ─── */
.adjacent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  margin-top: 5rem;
}
.adjacent-card {
  background: var(--surface);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.adjacent-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--border);
  transition: background 0.4s;
}
.adjacent-card:hover::before {
  background: var(--gold);
}
.adjacent-icon {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.adjacent-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 1rem;
}
.adjacent-metric {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--gold);
  display: block;
  margin: 1.5rem 0 0.5rem;
}

/* ─── 4. WHAT'S MOVING ─── */
.moving-timeline {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.moving-item {
  display: grid;
  grid-template-columns: 8rem 1px 1fr;
  gap: 0 3rem;
  padding: 2.5rem 0;
  align-items: start;
}
.moving-item + .moving-item {
  border-top: 1px solid var(--border);
}
.moving-year {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold);
  padding-top: 0.1rem;
}
.moving-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}
.moving-content { }
.moving-headline {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}
.moving-body {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* ─── 5. WHAT AI MAKES POSSIBLE ─── */
.ai-section { background: var(--surface); }
.ai-moment {
  margin-top: 5rem;
  padding: 4rem;
  border: 1px solid var(--border);
  background: rgba(201,169,110,0.03);
  position: relative;
  max-width: 70ch;
}
.ai-moment::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: -1rem;
  left: 2rem;
  line-height: 1;
}
.ai-moment-text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-1);
}
.ai-moment-attr {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
}
.ai-capabilities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 4rem;
}
.ai-cap {
  background: var(--bg);
  padding: 2.5rem;
  border-left: 2px solid var(--border);
  transition: border-color 0.3s;
}
.ai-cap:hover { border-left-color: var(--gold); }
.ai-cap-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.ai-cap-unit {
  font-size: 1rem;
  color: var(--gold);
  opacity: 0.6;
}
.ai-cap-label {
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-top: 0.75rem;
}
.ai-cap-desc {
  font-size: 1rem;
  color: var(--text-3);
  margin-top: 0.5rem;
  line-height: 1.6;
}
/* Detection timeline */
.detection-timeline {
  margin-top: 5rem;
  position: relative;
}
.detection-track {
  height: 2px;
  background: var(--border);
  position: relative;
  margin: 4rem 0;
}
.detection-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, var(--gold-dim), var(--gold));
  transition: width 0s;
}
.detection-points {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  transform: translateY(-50%);
}
.detection-point {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
  position: relative;
  cursor: default;
}
.detection-point.active { background: var(--gold); box-shadow: 0 0 12px rgba(201,169,110,0.6); }
.detection-point.crisis { background: #C0392B; box-shadow: 0 0 12px rgba(192,57,43,0.6); }
.detection-labels {
  display: flex;
  justify-content: space-between;
}
.detection-label {
  font-size: 0.82rem;
  color: var(--text-3);
  text-align: center;
  max-width: 8rem;
}
.detection-label.active { color: var(--gold); }
.detection-label.crisis { color: #C0392B; }

/* ─── 6. DIGITAL TWIN ─── */
/* ─── Digital Twin interactive card ─── */
.twin-intro { margin-top: 1rem; max-width: 640px; }
.twin-card {
  margin-top: 3.5rem;
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 8px;
  background: rgba(201,169,110,0.03);
  overflow: hidden;
}
.twin-card-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(201,169,110,0.12);
}
.twin-horse-icon {
  width: 56px; height: 56px;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: rgba(201,169,110,0.06);
}
.twin-horse-icon svg { width: 36px; height: 36px; }
.twin-card-id { flex: 1; }
.twin-horse-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-1);
  margin-bottom: 0.2rem;
}
.twin-chip {
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: var(--text-3);
  text-transform: uppercase;
}
.twin-badge-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}
.twin-live-badge {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sage); padding: 0.25rem 0.65rem;
  border: 1px solid rgba(138,184,136,0.25); border-radius: 20px;
}
.twin-pulse-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sage);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.6); }
}
.twin-age {
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-3);
}
.twin-age span { color: var(--gold); }
/* Tabs */
.twin-tabs-nav {
  display: flex;
  border-bottom: 1px solid rgba(201,169,110,0.1);
}
.twin-tab-btn {
  flex: 1;
  padding: 1.1rem 1rem;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  margin-bottom: -1px;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.twin-tab-btn:hover { color: var(--text-1); background: rgba(201,169,110,0.05); }
.twin-tab-btn:focus-visible { box-shadow: inset 0 0 0 1px rgba(201,169,110,0.4); }
.twin-tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); background: rgba(201,169,110,0.04); }
/* Tab hint */
.twin-tab-hint {
  font-size: 0.72rem;
  color: var(--text-3);
  padding: 0.5rem 2rem 0;
  letter-spacing: 0.1em;
  pointer-events: none;
  user-select: none;
}
.twin-card.tabs-used .twin-tab-hint { display: none; }
/* Panels */
.twin-panels { padding: 2rem; min-height: 220px; }
.twin-panel { display: none; }
.twin-panel.active { display: block; }
.twin-panel-label {
  font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 0.5rem;
}
.twin-panel-value {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 300; color: var(--gold);
  margin-bottom: 1rem; line-height: 1;
}
.twin-panel-value small {
  font-size: 1rem; color: var(--text-3); font-family: var(--font-body);
}
/* SVG charts */
.twin-chart { width: 100%; height: auto; aspect-ratio: 5 / 1; min-height: 100px; max-height: 200px; overflow: visible; }
/* Movement chart path animation */
.chart-line {
  stroke-dasharray: 4000;
  stroke-dashoffset: 4000;
  transition: stroke-dashoffset 1.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.twin-panel.active .chart-line { stroke-dashoffset: 0; }
/* Heartbeat waveform — each segment animates in */
.ecg-line {
  stroke-dasharray: 4000;
  stroke-dashoffset: 4000;
  transition: stroke-dashoffset 1.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.twin-panel.active .ecg-line { stroke-dashoffset: 0; }
.twin-panel.active .ecg-anomaly { transition-delay: 0.3s; }
.twin-panel.active .ecg-post    { transition-delay: 0.5s; }
/* Feeding bars */
.feed-bar {
  transform-box: fill-box;
  transform-origin: bottom center;
  transform: scaleY(0);
  transition: transform 0.55s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.twin-panel.active .feed-bar { transform: scaleY(1); }
.feed-bar:nth-child(2) { transition-delay: 0.07s; }
.feed-bar:nth-child(3) { transition-delay: 0.14s; }
.feed-bar:nth-child(4) { transition-delay: 0.21s; }
.feed-bar:nth-child(5) { transition-delay: 0.28s; }
.feed-bar:nth-child(6) { transition-delay: 0.35s; }
.feed-bar:nth-child(7) { transition-delay: 0.42s; }

/* ─── Feeding KPI tiles ─── */
.feed-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 1.2rem 0 1.4rem;
  background: rgba(201,169,110,0.1);
  border-radius: 4px;
  overflow: hidden;
}
.feed-kpi {
  padding: 0.9rem 1.1rem;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.feed-kpi-alert { background: rgba(224,122,95,0.05); }
.feed-kpi-val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.feed-kpi-alert .feed-kpi-val { color: #E07A5F; font-size: 1rem; font-family: var(--font-body); font-weight: 500; }
.feed-kpi-unit { font-family: var(--font-body); font-size: 0.78rem; color: var(--text-3); }
.feed-kpi-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); margin-top: 0.1rem; }
/* Care timeline */
.twin-timeline { display: flex; flex-direction: column; gap: 0.8rem; }
.twin-tl-item {
  display: grid; grid-template-columns: 7rem auto 1fr;
  align-items: start; gap: 1rem; font-size: 0.92rem;
}
.twin-tl-date { color: var(--text-2); letter-spacing: 0.06em; }
.twin-tl-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(201,169,110,0.3); margin-top: 0.2rem; flex-shrink: 0;
}
.twin-tl-dot.alert { background: #E07A5F; box-shadow: 0 0 8px rgba(224,122,95,0.4); }
.twin-tl-dot.vet { background: var(--sage); }
.twin-tl-text { color: var(--text-2); line-height: 1.4; }
.twin-tl-text strong { color: var(--text-1); font-weight: 500; }
/* Key points grid below the card */
.twin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 2px;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}
.twin-grid-item {
  padding: 1.8rem 2rem;
  background: rgba(201,169,110,0.03);
  border: 1px solid rgba(201,169,110,0.1);
}
.twin-grid-num {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 300;
  color: var(--gold); opacity: 0.35; line-height: 1;
  margin-bottom: 0.8rem;
}
.twin-grid-title {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 600;
  margin-bottom: 0.35rem;
}
.twin-grid-desc { font-size: 0.92rem; color: var(--text-2); line-height: 1.55; }

/* ─── 7. THE ECOSYSTEM ─── */
/* ─── AI Companion section ─── */
.companion-section { background: var(--bg); }

.companion-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 4rem;
  align-items: start;
}

/* Chat mock */
.companion-chat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.chat-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.chat-horse-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-line);
  flex-shrink: 0;
}
.chat-horse-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
}
.chat-horse-meta {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 0.3rem;
}
.chat-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8BA888;
  margin-left: auto;
  box-shadow: 0 0 6px rgba(138,184,136,0.5);
}
.chat-messages {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}
.chat-msg {
  max-width: 88%;
  font-size: 0.88rem;
  line-height: 1.6;
  padding: 0.9rem 1.1rem;
  border-radius: 6px;
}
.chat-msg-user {
  align-self: flex-end;
  background: var(--gold-dim);
  border: 1px solid var(--gold-line);
  color: var(--text);
}
.chat-msg-ai {
  align-self: flex-start;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  color: var(--text-2);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.chat-ai-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.chat-input-mock {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.chat-input-placeholder {
  flex: 1;
  font-size: 0.85rem;
  color: var(--text-3);
  font-style: italic;
}
.chat-send-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--gold);
  flex-shrink: 0;
}

/* Notification cards */
.companion-notifs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.companion-notifs-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.5rem;
}
.notif-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.1rem 1.3rem;
  border-left-width: 3px;
}
.notif-card--info { border-left-color: var(--gold); }
.notif-card--warn { border-left-color: #E07A5F; }
.notif-card--ok   { border-left-color: #8BA888; }

.notif-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}
.notif-app {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.notif-time {
  font-size: 0.72rem;
  color: var(--text-3);
}
.notif-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}
.notif-body {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.55;
  margin-bottom: 0.8rem;
}
.notif-actions {
  display: flex;
  gap: 0.5rem;
}
.notif-action {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 3px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-3);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  font-family: var(--font-body);
}
.notif-action:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }
.notif-action--primary {
  border-color: var(--gold-line);
  color: var(--gold);
}
.notif-action--primary:hover { background: var(--gold-dim); border-color: var(--gold); }


.ecosystem-section { background: var(--surface); }

/* ─── Ecosystem HTML grid ─── */
.eco-grid-wrap {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Hub card */
.eco-hub {
  background: var(--bg);
  border: 1px solid rgba(201,169,110,0.35);
  border-top: 3px solid var(--gold);
  padding: 2.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto;
  column-gap: 3rem;
  row-gap: 0.6rem;
  align-items: start;
}
.eco-hub-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  grid-column: 1;
  margin: 0;
}
.eco-hub-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--text);
  margin: 0;
  grid-column: 1;
  line-height: 1.1;
}
.eco-hub-desc {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 52ch;
  margin: 0.4rem 0 0;
  grid-column: 1;
}
.eco-hub-tags {
  grid-column: 2;
  grid-row: 1 / 4;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
}
.eco-hub-tags span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem;
  white-space: nowrap;
}

/* Group label — spans full row width */
.eco-group-label {
  grid-column: 1 / -1;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 1.1rem 0 0.4rem;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
}
.eco-group-label:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

/* 6-node grid */
.eco-nodes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.eco-node-card {
  background: var(--bg);
  padding: 2rem 2.2rem;
  border-top: 2px solid rgba(201,169,110,0.25);
  transition: border-color 0.25s;
  cursor: default;
}
.eco-node-card:hover {
  border-top-color: var(--gold);
}
.eco-node-type {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 0 0 0.6rem;
}
.eco-node-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 300;
  color: var(--text);
  margin: 0 0 0.3rem;
  line-height: 1.15;
}
.eco-node-spec {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.9rem;
}
.eco-node-desc {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0;
}

/* ─── 8. THE OPPORTUNITY ─── */
.opportunity-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  margin-top: 5rem;
  align-items: center;
}
.market-bars {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
.market-bar-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.market-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  color: var(--text-2);
}
.market-bar-track {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.market-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 2px;
  background: var(--gold);
  transition: width 0s;
}
.opportunity-kpis {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.opp-kpi {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}
.opp-kpi-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
}
.opp-kpi-label {
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-top: 0.3rem;
}

/* ─── 9. FOR YOUR STABLES ─── */
.timeline-months {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  margin-top: 5rem;
}
.timeline-month {
  background: var(--surface);
  padding: 3rem 2.5rem;
  position: relative;
}
.month-label {
  font-size: 0.82rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.month-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.month-items { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.month-item {
  display: flex;
  gap: 1rem;
  font-size: 0.98rem;
  color: var(--text-2);
  line-height: 1.5;
}
.month-item::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
}

/* ─── 10. WHAT NEXT ─── */
.closing-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: var(--bg);
  text-align: left;
}
.closing-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 30% 50%, rgba(201,169,110,0.05) 0%, transparent 70%);
}
.closing-cta {
  margin-top: 4rem;
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid var(--gold-line);
  padding: 1.2rem 2.5rem;
  transition: background 0.3s, border-color 0.3s;
}
.closing-cta:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}
.closing-cta-arrow { font-size: 1rem; }
/* ─── Pitch footer — dexp logo + Switzerland badge ─── */
.pitch-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  padding: 3rem 2rem 4rem;
  border-top: 1px solid var(--border);
}
.dexp-wordmark-link {
  text-decoration: none;
  display: inline-flex;
}
.dexp-logo {
  display: flex;
  align-items: baseline;
  line-height: 1;
}
.dexp-letter {
  font-family: 'Arial Black', 'Helvetica Neue', Impact, sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: #F5F5F5;
  letter-spacing: -1px;
  opacity: 0;
}
.dexp-d {
  animation:
    dexp-blink      0.9s ease-in-out 0.3s,
    dexp-blink-stay 0.9s ease-in-out 1.2s forwards;
}
.dexp-e { animation: dexp-appear 0s 2.2s forwards; }
.dexp-x { animation: dexp-appear 0s 2.5s forwards; }
.dexp-p { animation: dexp-appear 0s 2.8s forwards; }
.dexp-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #E8332A;
  margin-bottom: 4px;
  margin-left: 2px;
  flex-shrink: 0;
  opacity: 0;
  animation:
    dexp-blink      1.6s ease-in-out 3.2s,
    dexp-blink-loop 1.6s ease-in-out 4.8s infinite;
}
@keyframes dexp-blink      { 0% { opacity: 0 } 50% { opacity: 1 } 100% { opacity: 0 } }
@keyframes dexp-blink-stay { 0% { opacity: 0 } 50% { opacity: 1 } 100% { opacity: 1 } }
@keyframes dexp-blink-loop { 0% { opacity: 1 } 50% { opacity: 0 } 100% { opacity: 1 } }
@keyframes dexp-appear     { to { opacity: 1 } }
@media (prefers-reduced-motion: reduce) {
  .dexp-letter, .dexp-dot { opacity: 1; animation: none; }
}
.dexp-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  animation: dexp-pulse 1.6s ease-in-out infinite;
}
.dexp-click-text {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
}
.dexp-arrow {
  font-size: 0.9rem;
  color: var(--text-3);
  line-height: 1;
}
@keyframes dexp-pulse {
  0%, 100% { opacity: 0.4; transform: translateY(0); }
  50%       { opacity: 1;   transform: translateY(4px); }
}

.dexp-swiss {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--text-3);
  text-transform: uppercase;
}

.closing-footnote {
  margin-top: 6rem;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--text-3);
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  width: 100%;
  text-align: center;
}

/* ─── Market pair ─── */
.market-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 4rem;
}
.market-pair-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 0 0 1.8rem;
}

/* ─── Revenue streams ─── */
.rev-streams {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 2px;
}
.rev-stream {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.rev-stream-head {
  padding: 2rem 2.2rem 1.5rem;
  border-top: 3px solid var(--gold-line);
  transition: border-color 0.25s;
}
.rev-stream:hover .rev-stream-head { border-top-color: var(--gold); }
.rev-stream-from {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.6rem;
}
.rev-stream-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--text);
  margin: 0 0 0.4rem;
  line-height: 1.1;
}
.rev-stream-tagline {
  font-size: 0.78rem;
  color: var(--text-3);
  line-height: 1.5;
  margin: 0;
}
.rev-stream-pricing {
  padding: 1.5rem 2.2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}
.rev-price-row {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.rev-price-val {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
}
.rev-price-val em {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-3);
  font-family: var(--font-body);
}
.rev-price-desc {
  font-size: 0.8rem;
  color: var(--text-2);
  line-height: 1.55;
}
.rev-price-row--features,
.rev-price-row--note {
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}
.rev-price-row--note .rev-price-desc { color: var(--text-3); font-size: 0.75rem; }
.rev-stream-example {
  padding: 1rem 2.2rem;
  background: rgba(201,169,110,0.04);
  border-top: 1px solid var(--gold-line);
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.5;
}
.rev-stream-example strong { color: var(--text); }
.rev-stream-footer {
  padding: 1rem 2.2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rev-y1 {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--text-3);
  text-transform: uppercase;
}
.rev-y3 {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 500;
}

/* ─── MRR progression table ─── */
.mrr-table {
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-top: 2px;
}
.mrr-table-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  padding: 0.9rem 2rem;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
}
.mrr-table-head span {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}
.mrr-table-head span em {
  display: block;
  font-style: normal;
  color: var(--text-3);
  opacity: 0.6;
  font-size: 0.62rem;
  margin-top: 0.15rem;
}
.mrr-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  padding: 0.85rem 2rem;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.mrr-row:last-of-type { border-bottom: none; }
.mrr-label {
  font-size: 0.8rem;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.mrr-label::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mrr-row--b2b .mrr-label::before { background: var(--gold); }
.mrr-row--b2c .mrr-label::before { background: var(--sage); }
.mrr-row--mkt .mrr-label::before { background: #A8BFC4; }
.mrr-row--total {
  background: rgba(201,169,110,0.04);
  border-top: 1px solid var(--gold-line) !important;
}
.mrr-row--total .mrr-label { color: var(--text); font-weight: 500; }
.mrr-row--total .mrr-label::before { display: none; }
.mrr-row span:not(.mrr-label) {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text);
}
.mrr-row--total span:not(.mrr-label) { color: var(--gold); font-size: 1.3rem; }
.mrr-nil { color: var(--text-3) !important; font-family: var(--font-body) !important; font-size: 0.85rem !important; }
.mrr-note {
  padding: 0.8rem 2rem;
  font-size: 0.72rem;
  color: var(--text-3);
  letter-spacing: 0.06em;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.01);
}

/* ─── Franchise block ─── */
.franchise-block {
  margin-top: 3rem;
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold-line);
  padding: 2rem 2.5rem;
  background: var(--surface);
}
.franchise-block-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 0 0 1.5rem;
}
.franchise-rows { display: flex; flex-direction: column; gap: 1.2rem; }
.franchise-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.franchise-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.2rem 1.4rem;
  background: var(--bg);
}
.franchise-val {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.franchise-unit {
  font-size: 1rem;
  color: var(--text-2);
}
.franchise-desc {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.55;
}
.franchise-example {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.9rem 1.4rem;
  background: rgba(201,169,110,0.04);
  border: 1px solid var(--gold-line);
  flex-wrap: wrap;
}
.franchise-example-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.franchise-example-val {
  font-size: 0.86rem;
  color: var(--text-2);
}

/* ─── Investment block ─── */
.invest-block {
  margin: 2.5rem 0;
  border: 1px solid var(--border);
  border-top: 2px solid rgba(201,169,110,0.5);
  background: rgba(255,255,255,0.02);
}
.invest-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
}
.invest-item {
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.invest-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 0;
}
.invest-val {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin: 0;
}
.invest-desc {
  font-size: 0.86rem;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 42ch;
  margin: 0;
}
.invest-divider {
  width: 1px;
  background: var(--border);
  margin: 1.5rem 0;
}

/* ─── Wearable note ─── */
.wearable-note {
  margin-top: 3rem;
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold-dim);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  overflow: hidden;
}

.wearable-note-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
}

.wearable-note-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dim);
  background: rgba(180,140,60,0.1);
  border: 1px solid rgba(180,140,60,0.25);
  border-radius: 4px;
  padding: 0.3rem 0.7rem;
  white-space: nowrap;
}

.wearable-note-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fg);
}

.wearable-note-body {
  padding: 1.75rem 2rem;
}

.wearable-note-body > p {
  color: var(--fg-dim);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.wearable-strategies {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.wearable-strategy {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  align-items: start;
}

.ws-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold-dim);
  padding-top: 0.2rem;
}

.wearable-strategy > div {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.wearable-strategy strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg);
}

.wearable-strategy span {
  font-size: 0.85rem;
  color: var(--fg-dim);
  line-height: 1.6;
}

/* ─── Further analysis section ─── */
.further-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 3rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.further-group {
  padding: 2rem;
  background: rgba(255,255,255,0.015);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.further-group:nth-child(3n) {
  border-right: none;
}

.further-group:last-child {
  border-right: none;
}

.further-group:nth-last-child(-n+3) {
  border-bottom: none;
}

.further-group-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.further-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.further-list li {
  font-size: 0.85rem;
  color: var(--fg-dim);
  line-height: 1.5;
  padding-left: 1rem;
  position: relative;
}

.further-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--gold-dim);
  font-weight: 700;
}

/* ─── Animations — initial states set by JS, not CSS (progressive enhancement) ─── */
.char        { display: inline-block; }
.word        { overflow: hidden; display: inline-block; }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }

/* ─── Mobile ─── */
@media (max-width: 768px) {
  html { font-size: 15px; }

  section {
    padding: 5rem 1.5rem;
    min-height: auto;
  }

  nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-lang { display: none; }

  .hero { padding-top: 7rem; padding-bottom: 4rem; min-height: 100svh; justify-content: flex-start; }
  .gap-stat-row { grid-template-columns: 1fr; gap: 2.5rem; }

  .adjacent-grid { grid-template-columns: 1fr; gap: 2px; }

  .moving-item { grid-template-columns: 4.5rem 1px 1fr; gap: 0 1.2rem; padding: 2rem 0; }

  .ai-capabilities { grid-template-columns: 1fr; }

  .twin-card-header { flex-wrap: wrap; gap: 1rem; }
  .twin-badge-group { align-items: flex-start; flex-direction: row; flex-wrap: wrap; gap: 0.75rem; width: 100%; }
  .twin-tabs-nav { display: grid !important; grid-template-columns: 1fr 1fr; overflow-x: visible; }
  .feed-kpis { grid-template-columns: 1fr 1fr; }
  .twin-tab-btn { flex: none; white-space: nowrap; padding: 0.85rem 1rem; font-size: 0.72rem; text-align: center; border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); }
  .twin-tab-btn:nth-child(2n) { border-right: none; }
  .twin-panels { padding: 1.5rem; }
  .twin-grid { grid-template-columns: 1fr; }
  .twin-tl-item { grid-template-columns: 5rem auto 1fr; gap: 0.6rem; }

  .opportunity-split { grid-template-columns: 1fr; gap: 3rem; }

  .timeline-months { grid-template-columns: 1fr; gap: 2px; }

  .companion-split { grid-template-columns: 1fr; gap: 2.5rem; }

  .eco-hub { grid-template-columns: 1fr; }
  .eco-hub-tags { grid-column: 1; grid-row: auto; flex-direction: row; flex-wrap: wrap; margin-top: 1rem; }
  .eco-nodes { grid-template-columns: 1fr 1fr; }

  .ai-moment { padding: 2.5rem 2rem; }
  .ai-moment::before { font-size: 5rem; }

  .wearable-note-head { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .wearable-note-body { padding: 1.5rem; }
  .wearable-strategy { grid-template-columns: 2rem 1fr; }

  .further-grid { grid-template-columns: 1fr; }
  .further-group { border-right: none; border-bottom: 1px solid var(--border); }
  .further-group:last-child { border-bottom: none; }

  .market-pair { grid-template-columns: 1fr; gap: 3rem; }
  .rev-streams { grid-template-columns: 1fr; }
  .mrr-table-head,
  .mrr-row { grid-template-columns: 1.6fr 1fr 1fr 1fr; padding: 0.75rem 1.2rem; }
  .franchise-row { grid-template-columns: 1fr; }
  .invest-row { grid-template-columns: 1fr; }
  .invest-divider { width: auto; height: 1px; margin: 0 1.5rem; }
  .closing-cta { width: 100%; justify-content: center; }

  .detection-label { font-size: 0.72rem; max-width: 5rem; }
}

@media (max-width: 480px) {
  section { padding: 4rem 1.25rem; }
  .twin-tl-item { grid-template-columns: 1fr; gap: 0.2rem; }
  .twin-tl-dot { display: none; }
  .detection-labels { gap: 0; }
  .detection-label { font-size: 0.6rem; max-width: 4rem; }
  .eco-nodes { grid-template-columns: 1fr; }
}
