/* ============================================================
   DOCKESTRA.COM — cinematic site
   Brand system (locked): ink navy #0E2436 (deep #081722),
   brass #C49A47, warm off-white #F7F4EE.
   Display: Fraunces · UI: Hanken Grotesk · Mono: IBM Plex Mono
   ============================================================ */

:root {
  --navy: #0E2436;
  --navy-deep: #081722;
  --brass: #C49A47;
  --cream: #F7F4EE;
  --cream-dim: rgba(247, 244, 238, 0.72);
  --cream-faint: rgba(247, 244, 238, 0.45);
  --ink-on-light: #14293B;
  --ink-dim-on-light: rgba(20, 41, 59, 0.68);
  --panel-glass: rgba(8, 23, 34, 0.62);
  --panel-border: rgba(196, 154, 71, 0.45);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Hanken Grotesk", -apple-system, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", "SF Mono", Menlo, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--sans);
  background: var(--navy);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

::selection { background: var(--brass); color: var(--navy-deep); }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 2.2rem;
  pointer-events: none;
}
.site-header .logo {
  pointer-events: auto;
  display: block;
}
.site-header .logo img {
  height: 96px;
  width: auto;
  opacity: 0.96;
  margin: 0.3rem 0 0 0.4rem;
}
.site-header .header-cta {
  pointer-events: auto;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  text-decoration: none;
  border: 1px solid rgba(196, 154, 71, 0.55);
  padding: 0.55rem 1.1rem;
  border-radius: 2px;
  background: rgba(8, 23, 34, 0.35);
  backdrop-filter: blur(6px);
  transition: background 0.3s, color 0.3s;
}
.site-header .header-cta:hover { background: var(--brass); color: var(--navy-deep); }
/* over the light proof-half the white lockup needs a navy surface behind it */
.site-header.on-light {
  background: rgba(8, 23, 34, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  transition: background 0.4s ease, padding 0.4s ease;
}
.site-header.on-light .logo img { height: 64px; margin: 0; }
.site-header { transition: background 0.4s ease, padding 0.4s ease; }

/* ---------- charter HUD ---------- */
.hud {
  position: fixed;
  top: 5.6rem;
  right: 2.2rem;
  z-index: 55;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-align: right;
  color: rgba(247, 244, 238, 0.6);
  background: rgba(8, 23, 34, 0.66);
  border: 1px solid rgba(196, 154, 71, 0.28);
  border-radius: 4px;
  padding: 0.75rem 0.9rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
}
.hud.visible { opacity: 1; transform: translateY(0); }
.hud .hud-stages { display: flex; flex-direction: column; gap: 0.34rem; align-items: flex-end; }
.hud .hud-stage {
  position: relative;
  padding-right: 0.9rem;
  transition: color 0.5s ease;
  white-space: nowrap;
}
.hud .hud-stage::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  width: 5px; height: 5px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(247, 244, 238, 0.35);
  transition: background 0.5s ease, box-shadow 0.5s ease;
}
.hud .hud-stage.lit { color: var(--brass); }
.hud .hud-stage.lit::after { background: var(--brass); box-shadow: 0 0 8px rgba(196, 154, 71, 0.8); }
.hud .hud-sub {
  margin-top: 0.6rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(196, 154, 71, 0.35);
  color: var(--brass);
  font-size: 0.7rem;
  min-height: 1em;
}

/* ---------- voyage canvas ---------- */
.voyage {
  position: relative;
  /* runway height set inline by JS; fallback: */
  height: 700vh;
  background: var(--navy);
}
.voyage-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.voyage-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
/* dark gradient + vignette over footage (masks 720p softness) */
.voyage-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,23,34,0.5) 0%, rgba(8,23,34,0.08) 30%, rgba(8,23,34,0.14) 70%, rgba(8,23,34,0.55) 100%);
  pointer-events: none;
}
/* film grain */
.grain {
  position: absolute; inset: -100px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.09;
  pointer-events: none;
  animation: grain-shift 0.9s steps(4) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-34px, 22px); }
  50% { transform: translate(18px, -30px); }
  75% { transform: translate(-26px, -14px); }
  100% { transform: translate(0, 0); }
}
/* cream wash for the fade-to-light at voyage end */
.voyage-fadeout {
  position: absolute; inset: 0;
  background: var(--cream);
  opacity: 0;
  pointer-events: none;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;   /* contain the oversized grain layer */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 5;
}
.hero-panel-wrap {
  width: 100%;
  max-width: 620px;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hero-display {
  margin-top: 2.6rem;
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
}
.hero-display.in {
  animation: track-in 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes track-in {
  from { opacity: 0; transform: translateY(24px); letter-spacing: 0.06em; }
  to { opacity: 1; transform: translateY(0); letter-spacing: 0; }
}
.hero-display h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 6.2vw, 4.8rem);
  line-height: 1.05;
  color: var(--cream);
  text-shadow: 0 2px 40px rgba(8, 23, 34, 0.6);
}
.hero-sub {
  margin: 1.4rem auto 0;
  max-width: 560px;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--cream-dim);
  opacity: 0;
  transition: opacity 1s ease 0.5s;
}
.hero-display.in .hero-sub { opacity: 1; }
.hero-cta-row {
  margin-top: 1.9rem;
  opacity: 0;
  transition: opacity 1s ease 0.9s;
}
.hero-display.in .hero-cta-row { opacity: 1; }
.btn-brass {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  text-decoration: none;
  border: 1px solid var(--brass);
  padding: 0.85rem 2rem;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s;
}
.btn-brass:hover { background: var(--brass); color: var(--navy-deep); }
.btn-brass.solid { background: var(--brass); color: var(--navy-deep); }
.btn-brass.solid:hover { background: #d4ad5e; }
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-faint);
  opacity: 0;
  transition: opacity 1s ease 1.4s;
}
.hero-display.in ~ .hero-scroll-hint, .hero .hero-scroll-hint.in { opacity: 1; }
.hero-scroll-hint::after {
  content: "";
  display: block;
  width: 1px; height: 34px;
  margin: 0.7rem auto 0;
  background: linear-gradient(180deg, var(--brass), transparent);
  animation: hint-drop 2.2s ease infinite;
}
@keyframes hint-drop {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- assistant panel ---------- */
.assistant {
  background: rgba(10, 26, 39, 0.94);
  border: 1px solid rgba(196, 154, 71, 0.6);
  border-radius: 6px;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 30px 90px rgba(8, 23, 34, 0.7), 0 2px 12px rgba(8, 23, 34, 0.5);
  overflow: hidden;
}
.assistant-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.1rem;
  border-bottom: 1px solid rgba(196, 154, 71, 0.18);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.assistant-head::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 8px rgba(196, 154, 71, 0.9);
}
.assistant-body { padding: 1.15rem 1.3rem 1.3rem; }
.assistant-q {
  font-family: var(--mono);
  font-size: clamp(0.95rem, 1.7vw, 1.1rem);
  color: var(--cream);
  min-height: 1.5em;
  line-height: 1.55;
}
.assistant-q .cursor {
  display: inline-block;
  width: 0.55em; height: 1.1em;
  margin-left: 2px;
  background: var(--brass);
  vertical-align: text-bottom;
  animation: blink 0.85s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.assistant-route {
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  color: var(--brass);
  margin-top: 0.7rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.assistant-route.in { opacity: 0.85; }
.answer-card {
  margin-top: 0.9rem;
  border: 1px solid rgba(247, 244, 238, 0.14);
  border-radius: 4px;
  background: rgba(8, 23, 34, 0.55);
  padding: 1rem 1.1rem;
  font-family: var(--mono);
  font-size: clamp(0.82rem, 1.45vw, 0.95rem);
  line-height: 1.8;
}
.answer-card .ln {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  white-space: nowrap;
}
.answer-card .ln.in { opacity: 1; transform: translateY(0); }
.answer-card .ln.head { color: var(--cream-dim); letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.9em; }
.answer-card .ln.rule { border-top: 1px solid rgba(247, 244, 238, 0.12); height: 0; margin: 0.4rem 0; }
.answer-card .ln .k { color: var(--cream-dim); overflow: hidden; text-overflow: ellipsis; }
.answer-card .ln .v { color: var(--cream); }
.answer-card .ln .v.brass { color: var(--brass); font-size: 1.06em; font-weight: 500; }
.answer-card .ln .v.flag { color: var(--brass); letter-spacing: 0.1em; }
.answer-card .ln.total .k, .answer-card .ln.total .v { color: var(--cream); font-weight: 500; font-size: 1.1em; }
.answer-card .ln.total .v.brass { color: var(--brass); font-size: 1.18em; }
.answer-card .tag {
  margin-top: 0.7rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-faint);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.answer-card .tag.in { opacity: 1; }

/* margin ranking bars (hero + availability answers — no euro amounts) */
.answer-card .rank-bar {
  display: inline-block;
  width: clamp(96px, 13vw, 180px);
  height: 0.62em;
  background: rgba(196, 154, 71, 0.16);
  border-radius: 2px;
  overflow: hidden;
  vertical-align: middle;
}
.answer-card .rank-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, rgba(196, 154, 71, 0.75), var(--brass));
  border-radius: 2px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}
.answer-card .ln.in .rank-bar i { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) {
  .answer-card .rank-bar i { transform: scaleX(1) !important; transition: none; }
}

/* footnote chip / source view */
.src-chip {
  display: inline-block;
  font-size: 0.85em;
  color: var(--brass);
  border: 1px solid rgba(196, 154, 71, 0.4);
  border-radius: 3px;
  padding: 0 0.35em;
  margin-left: 0.5em;
  cursor: pointer;
  user-select: none;
}
.src-detail {
  display: none;
  margin-top: 0.55rem;
  padding: 0.55rem 0.7rem;
  border-left: 2px solid var(--brass);
  background: rgba(196, 154, 71, 0.07);
  font-size: 0.66rem;
  line-height: 1.6;
  color: var(--cream-dim);
  white-space: normal;
}
.src-detail.open { display: block; }
.src-detail b { color: var(--brass); font-weight: 500; }

/* ---------- voyage stage overlays ---------- */
.stage-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 6rem clamp(1.4rem, 6vw, 7rem) 2rem;  /* top clearance keeps panels off the HUD */
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
}
.stage-overlay.active { pointer-events: auto; }
.stage-inner { max-width: 620px; }
.stage-inner.center { margin: 0 auto; text-align: center; max-width: 860px; }
.stage-inner.right { margin-left: auto; }
.stage-kicker {
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  text-shadow: 0 1px 12px rgba(8, 23, 34, 0.8);
  margin-bottom: 1.1rem;
}
.stage-opener {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.12;
  color: var(--cream);
  text-shadow: 0 2px 30px rgba(8, 23, 34, 0.65);
}
.stage-copy {
  margin-top: 1.2rem;
  font-size: 1.06rem;
  line-height: 1.68;
  color: var(--cream-dim);
  max-width: 520px;
}
.stage-copy em { font-style: italic; color: var(--cream); }
.stage-note {
  margin-top: 1rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--cream-faint);
}
.stage-overlay .assistant { margin-top: 1.6rem; max-width: 560px; }
.transition-line {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.18;
  color: var(--cream);
  text-shadow: 0 2px 30px rgba(8, 23, 34, 0.7);
}
/* the transition sits low and offset left, off the boat */
.stage-overlay.transition {
  align-items: flex-end;
  padding-bottom: 12vh;
}
.stage-overlay.transition .stage-inner {
  margin: 0;
  text-align: left;
  max-width: 640px;
}

/* feathered local scrims behind text pinned over footage — never a hard box */
.stage-cols > div:first-child,
.stage-inner.center,
.hero-display {
  position: relative;
}
.stage-cols > div:first-child::before,
.stage-inner.center::before,
.hero-display::before {
  content: "";
  position: absolute;
  inset: -3.2rem -3.6rem;
  background: radial-gradient(105% 100% at 50% 50%,
    rgba(14, 36, 54, 0.55) 0%,
    rgba(14, 36, 54, 0.38) 55%,
    rgba(14, 36, 54, 0) 80%);
  z-index: -1;
  pointer-events: none;
  border-radius: 24px;
  filter: blur(2px);
}
/* the centered block floats over open bright sky: feather it much further out */
.stage-inner.center::before {
  inset: -5rem -7rem;
  background: radial-gradient(100% 100% at 50% 50%,
    rgba(14, 36, 54, 0.52) 0%,
    rgba(14, 36, 54, 0.3) 50%,
    rgba(14, 36, 54, 0) 74%);
  filter: blur(14px);
}

/* on wide screens reserve the HUD's column so tall panels never slide under it */
@media (min-width: 1024px) {
  .stage-overlay { padding-right: max(6vw, 240px); }
}

/* two-column stage layout (text + panel side by side on wide) */
.stage-cols {
  display: flex;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}
.stage-cols > * { flex: 1 1 0; min-width: 0; }
.stage-cols .assistant { margin-top: 0; }

/* compact secondary card (reverse pricing) */
.mini-card {
  margin-top: 1rem;
  border: 1px solid rgba(196, 154, 71, 0.55);
  border-radius: 4px;
  background: rgba(10, 26, 39, 0.94);
  padding: 0.9rem 1.1rem;
  font-family: var(--mono);
  font-size: 0.85rem;
  line-height: 1.8;
  backdrop-filter: blur(22px);
  box-shadow: 0 20px 60px rgba(8, 23, 34, 0.6);
}
.mini-card .mc-title {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.4rem;
}

/* one deal, two beats: the connective line + closing caption around the counter card */
.counter-line {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.08rem;
  color: var(--cream);
  text-shadow: 0 1px 14px rgba(8, 23, 34, 0.85);
  margin: 1.1rem 0 0.55rem 0.2rem;
}
.mini-caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--cream-dim);
  text-shadow: 0 1px 12px rgba(8, 23, 34, 0.85);
  margin: 0.7rem 0.2rem 0;
}
/* settlement caption lives inside the panel: reveal after the report resolves */
.settle-caption {
  text-shadow: none;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.settle-caption.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .settle-caption { opacity: 1 !important; transform: none !important; transition: none; }
}

/* manifest vignette */
.manifest-card {
  position: relative;
  margin-top: 1.6rem;
  max-width: 520px;
  background: rgba(247, 244, 238, 0.96);
  color: var(--ink-on-light);
  border-radius: 4px;
  padding: 1.3rem 1.5rem;
  font-family: var(--mono);
  font-size: 0.8rem;
  line-height: 1.8;
  box-shadow: 0 24px 70px rgba(8, 23, 34, 0.6);
}
.manifest-card .mf-title {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  border-bottom: 1px solid rgba(20, 41, 59, 0.25);
  padding-bottom: 0.5rem;
  margin-bottom: 0.7rem;
  color: var(--ink-on-light);
}
.manifest-card .mf-field {
  display: flex;
  gap: 0.6rem;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.manifest-card .mf-field.in { opacity: 1; transform: translateY(0); }
.manifest-card .mf-field .fk { color: rgba(20, 41, 59, 0.6); min-width: 100px; }
.manifest-card .mf-rows { margin-top: 0.5rem; }
.manifest-card .skel {
  display: inline-block;
  height: 0.62em;
  border-radius: 2px;
  background: rgba(20, 41, 59, 0.18);
  vertical-align: middle;
}
.manifest-card .mf-stamp {
  position: absolute;
  right: 0.9rem; top: 0.85rem;   /* top-right corner, clear of the vouchers row */
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  white-space: nowrap;
  color: var(--brass);
  border: 1.5px solid var(--brass);
  border-radius: 3px;
  padding: 0.3rem 0.6rem;
  transform: rotate(4deg) scale(1.6);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.2, 2.2, 0.4, 1);
}
.manifest-card .mf-stamp.in { opacity: 1; transform: rotate(4deg) scale(1); }
/* the bilingual title reserves the stamp's corner so they never collide */
.manifest-card .mf-title { padding-right: 10.5rem; }
.manifest-tag { margin-top: 0.8rem; letter-spacing: 0.14em; }

/* phone vignette */
.phone-frame {
  margin-top: 1.6rem;
  width: min(352px, 86vw);
  border-radius: 26px;
  border: 1px solid rgba(247, 244, 238, 0.2);
  background: var(--navy-deep);
  padding: 0.85rem 0.8rem 1rem;
  box-shadow: 0 30px 80px rgba(8, 23, 34, 0.6);
}
.phone-frame .ph-top {
  width: 60px; height: 4px;
  border-radius: 2px;
  background: rgba(247, 244, 238, 0.18);
  margin: 0 auto 0.8rem;
}
.phone-frame .ph-thread-name {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-faint);
  text-align: center;
  margin-bottom: 0.7rem;
}
.briefing-card {
  border: 1px solid rgba(196, 154, 71, 0.35);
  border-radius: 8px;
  background: rgba(10, 26, 39, 0.96);
  padding: 0.85rem 0.95rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  line-height: 1.75;
  margin-bottom: 0.7rem;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.briefing-card.in { opacity: 1; transform: translateY(0); }
.briefing-card .bc-title { color: var(--brass); letter-spacing: 0.12em; margin-bottom: 0.25rem; }
.briefing-card .bc-line { color: var(--cream-dim); display: flex; justify-content: space-between; gap: 0.5rem; }
.briefing-card .bc-line span:first-child { white-space: nowrap; }
.briefing-card .bc-line .v { overflow-wrap: anywhere; }
.briefing-card .bc-line .v { color: var(--cream); text-align: right; }
.briefing-card .bc-line .v.add { color: var(--brass); }
.briefing-card .bc-ids {
  margin-top: 0.45rem;
  padding-top: 0.4rem;
  border-top: 1px solid rgba(247, 244, 238, 0.1);
  font-size: 0.56rem;
  letter-spacing: 0.03em;
  color: var(--cream-faint);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.briefing-card .bc-ids + .bc-ids { margin-top: 0.15rem; padding-top: 0; border-top: none; }
/* the 06:40 update resolves line by line, like a diff */
.briefing-card .bc-diff-line {
  opacity: 0;
  transform: translateX(-7px);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.briefing-card .bc-diff-line.in { opacity: 1; transform: translateX(0); }
@media (prefers-reduced-motion: reduce) {
  .briefing-card .bc-diff-line { opacity: 1 !important; transform: none !important; transition: none; }
}
.briefing-card .late-banner {
  margin: -0.85rem -0.95rem 0.5rem;
  padding: 0.35rem 0.95rem;
  border-radius: 7px 7px 0 0;
  background: rgba(178, 60, 44, 0.25);
  border-bottom: 1px solid rgba(178, 60, 44, 0.5);
  color: #E2A196;
  letter-spacing: 0.14em;
}

/* ---------- proof half (light) ---------- */
.proof-half {
  position: relative;
  background: var(--cream);
  color: var(--ink-on-light);
  z-index: 6;
}
.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(4rem, 9vh, 7.5rem) clamp(1.4rem, 5vw, 3rem);
}
.section-kicker {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.1;
  color: var(--ink-on-light);
  max-width: 780px;
}
.section-lede {
  margin-top: 1.2rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-dim-on-light);
  max-width: 640px;
}

/* waterline divider */
.waterline {
  display: block;
  width: 100%;
  height: 42px;
  overflow: visible;
}
.waterline path {
  fill: none;
  stroke: var(--brass);
  stroke-width: 1.1;
  opacity: 0.55;
}
.waterline .w2 { opacity: 0.22; }
.waterline path { stroke-dasharray: 1400; stroke-dashoffset: 1400; }
.waterline.in path { animation: waterline-draw 2.4s ease forwards; }
.waterline.in .w2 { animation-delay: 0.3s; }
@keyframes waterline-draw { to { stroke-dashoffset: 0; } }

/* reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* flagship: two-column */
.flagship-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  margin-top: 3rem;
  align-items: start;
}
.proof-half .assistant, .final-cta .assistant {
  background: var(--navy);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.proof-half .assistant .answer-card { background: rgba(8, 23, 34, 0.65); }
.flagship-demo .assistant { box-shadow: 0 30px 90px rgba(14, 36, 54, 0.35); }
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
}
.chip {
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  color: var(--ink-on-light);
  background: transparent;
  border: 1px solid rgba(20, 41, 59, 0.3);
  border-radius: 100px;
  padding: 0.5rem 0.95rem;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
  text-align: left;
}
.chip:hover { border-color: var(--brass); color: var(--brass); }
.chip.active { background: var(--navy); border-color: var(--navy); color: var(--brass); }
.demo-note {
  margin-top: 0.7rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(20, 41, 59, 0.45);
}
.trust-block { padding: 1.6rem 0; border-top: 1px solid rgba(20, 41, 59, 0.14); }
.trust-block:first-child { border-top: none; padding-top: 0.4rem; }
.trust-block h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  color: var(--ink-on-light);
}
.trust-block p { font-size: 0.95rem; line-height: 1.68; color: var(--ink-dim-on-light); }
.trust-block p b { color: var(--ink-on-light); font-weight: 600; }
.trust-block p em { color: var(--ink-on-light); }

/* €134k band */
.band-134 {
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.band-134 .section {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-top: clamp(5rem, 12vh, 8.5rem);
  padding-bottom: clamp(5rem, 12vh, 8.5rem);
}
.band-134 blockquote {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.32;
}
.band-134 blockquote .fig { color: var(--brass); font-weight: 600; }
.band-134 .band-sub {
  margin-top: 1.4rem;
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--cream-dim);
  max-width: 560px;
}
.band-134 .answer-card { background: rgba(8, 23, 34, 0.55); border-color: rgba(196, 154, 71, 0.3); }

/* proof strip */
.proof-strip { text-align: center; }
.counter-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.6rem, 4vw, 3.6rem);
  margin-top: 3rem;
}
.counter { min-width: 120px; }
.counter .num {
  font-family: var(--mono);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  color: var(--brass);
  letter-spacing: -0.01em;
}
.counter .lbl {
  margin-top: 0.45rem;
  font-size: 0.78rem;
  color: var(--ink-dim-on-light);
  line-height: 1.4;
}
.proof-foot {
  margin-top: 2.8rem;
  font-style: italic;
  font-family: var(--serif);
  font-size: 1.02rem;
  color: var(--ink-dim-on-light);
}

/* workspace */
.browser-mock {
  margin-top: 2.6rem;
  max-width: 720px;
  border-radius: 8px;
  border: 1px solid rgba(20, 41, 59, 0.16);
  background: #fff;
  box-shadow: 0 30px 80px rgba(14, 36, 54, 0.16);
  overflow: hidden;
}
.browser-mock .bm-bar {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1rem;
  background: #ECE8E0;
  border-bottom: 1px solid rgba(20, 41, 59, 0.1);
}
.browser-mock .bm-dots { display: flex; gap: 5px; }
.browser-mock .bm-dots i { width: 9px; height: 9px; border-radius: 50%; background: rgba(20, 41, 59, 0.18); }
.browser-mock .bm-url {
  flex: 1;
  font-family: var(--mono);
  font-size: 0.76rem;
  color: var(--ink-on-light);
  background: #fff;
  border-radius: 4px;
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(20, 41, 59, 0.1);
}
.browser-mock .bm-url .sub { color: var(--brass); font-weight: 500; }
.browser-mock .bm-body {
  padding: 1.6rem;
  display: flex;
  gap: 1rem;
  background: linear-gradient(180deg, #FBFAF7, #F2EEE6);
  min-height: 150px;
}
.browser-mock .bm-side { width: 90px; }
.browser-mock .bm-side i, .browser-mock .bm-main i {
  display: block;
  height: 9px;
  border-radius: 3px;
  background: rgba(20, 41, 59, 0.1);
  margin-bottom: 8px;
}
.browser-mock .bm-side i.logo-slot { height: 26px; background: rgba(196, 154, 71, 0.3); margin-bottom: 14px; }
.browser-mock .bm-main { flex: 1; }
.browser-mock .bm-main i.wide { width: 100%; } .browser-mock .bm-main i.mid { width: 70%; } .browser-mock .bm-main i.short { width: 45%; }

/* built right */
.built-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 3rem;
  margin-top: 2.2rem;
  max-width: 860px;
}
.built-grid li {
  list-style: none;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ink-dim-on-light);
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(20, 41, 59, 0.1);
}
.built-grid li b { color: var(--ink-on-light); font-weight: 600; }

/* final CTA */
.final-cta {
  position: relative;
  background: var(--navy-deep) url("../img/dusk-still.jpg") center / cover no-repeat;
  color: var(--cream);
}
.final-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8, 23, 34, 0.82), rgba(8, 23, 34, 0.55) 45%, rgba(8, 23, 34, 0.88));
}
.final-cta .section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: clamp(5rem, 14vh, 9rem);
  padding-bottom: clamp(4rem, 10vh, 7rem);
}
.final-cta .assistant { width: 100%; max-width: 560px; text-align: left; }
.final-cta .cta-secondary {
  margin-top: 1.6rem;
  font-size: 0.92rem;
  color: var(--cream-dim);
  max-width: 520px;
  line-height: 1.6;
}
.final-cta .answer-card .cta-btn-row { margin-top: 0.4rem; }

/* footer */
.site-footer {
  position: relative;
  border-top: 1px solid rgba(196, 154, 71, 0.25);
  padding: 2.2rem clamp(1.4rem, 5vw, 3rem) 2.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem 2.4rem;
  font-size: 0.8rem;
  color: var(--cream-faint);
  background: var(--navy-deep);
}
.site-footer img { height: 40px; width: auto; opacity: 0.85; }
.site-footer nav { display: flex; gap: 1.6rem; }
.site-footer a { color: var(--cream-dim); text-decoration: none; }
.site-footer a:hover { color: var(--brass); }
.site-footer .foot-tag { flex-basis: 100%; font-family: var(--serif); font-style: italic; color: var(--cream-faint); }

/* ---------- legal pages ---------- */
.legal-page {
  background: var(--cream);
  color: var(--ink-on-light);
  min-height: 100vh;
}
.legal-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.6rem 5rem;
}
.legal-wrap .waterline { margin-bottom: 2rem; }
.legal-wrap .waterline path { stroke-dasharray: none; stroke-dashoffset: 0; }
.legal-home {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  text-decoration: none;
}
.legal-wrap h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 2.9rem);
  margin: 1.6rem 0 0.4rem;
}
.legal-meta {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(20, 41, 59, 0.5);
  margin-bottom: 2.4rem;
}
.legal-wrap h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.35rem;
  margin: 2.4rem 0 0.7rem;
}
.legal-wrap h3 { font-size: 1.02rem; font-weight: 600; margin: 1.6rem 0 0.5rem; }
.legal-wrap p, .legal-wrap li {
  font-size: 0.97rem;
  line-height: 1.75;
  color: rgba(20, 41, 59, 0.82);
  margin-bottom: 0.9rem;
}
.legal-wrap ul { padding-left: 1.3rem; margin-bottom: 1rem; }
.legal-wrap li { margin-bottom: 0.45rem; }
.legal-wrap a { color: var(--brass); }
.legal-wrap .draft-note {
  border: 1px dashed rgba(196, 154, 71, 0.6);
  border-radius: 4px;
  background: rgba(196, 154, 71, 0.07);
  padding: 0.9rem 1.1rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(20, 41, 59, 0.75);
  margin-bottom: 2rem;
}
.legal-footer {
  margin-top: 4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(20, 41, 59, 0.14);
  font-size: 0.8rem;
  color: rgba(20, 41, 59, 0.5);
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}
.legal-footer a { color: rgba(20, 41, 59, 0.65); text-decoration: none; }
.legal-footer a:hover { color: var(--brass); }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .grain { animation: none; }
  .hero-scroll-hint::after { animation: none; }
  .assistant-q .cursor { animation: none; opacity: 0; }
  .reveal, .answer-card .ln, .manifest-card .mf-field, .briefing-card {
    transition: none;
    opacity: 1 !important;
    transform: none !important;
  }
  .waterline path { animation: none !important; stroke-dashoffset: 0 !important; }
  .hero-display.in { animation-duration: 0.01s; }
}
/* JS adds .static-mode when reduced motion: voyage collapses to poster sections */
.static-mode .voyage { height: auto !important; }
.static-mode .voyage-sticky { position: relative; height: auto; overflow: visible; }
.static-mode .voyage-canvas, .static-mode .voyage-fadeout { display: none; }
.static-mode .stage-overlay {
  position: relative;
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto;
  min-height: 88vh;
  background-size: cover;
  background-position: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.static-mode .stage-overlay::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(8, 23, 34, 0.55);
}
.static-mode .stage-inner, .static-mode .stage-cols { position: relative; }
.static-mode .voyage-shade { display: none; }

/* ---------- mobile (390px pass) ---------- */
@media (max-width: 860px) {
  .flagship-grid, .band-134 .section { grid-template-columns: minmax(0, 1fr); }
  .flagship-grid > *, .band-134 .section > * { min-width: 0; }
  .built-grid { grid-template-columns: 1fr; }
  .stage-cols { flex-direction: column; align-items: stretch; gap: 1.4rem; }
  .stage-overlay { align-items: flex-end; padding-bottom: 3.4rem; }
  .stage-overlay.v-center { align-items: center; padding-bottom: 0; }
}
@media (max-width: 640px) {
  .hide-mobile { display: none; }
  .site-header { padding: 1rem 1.1rem; }
  .site-header .logo img { height: 60px; }
  .hud { top: 4.6rem; right: 1.1rem; padding: 0.45rem 0.65rem; }
  .hud .hud-stages { display: none; }             /* collapse to stage label */
  .hud .hud-sub { border-top: none; padding-top: 0; margin-top: 0; font-size: 0.68rem; }
  .hud .hud-current-label { display: block; color: var(--brass); font-size: 0.72rem; margin-bottom: 0.2rem; }
  .stage-overlay { padding-top: 6.2rem; }         /* clear the header + HUD pill */
  .counter-line { display: none; }                /* on phones the stacked cards carry the beat */
  .mini-caption { font-size: 0.82rem; margin-top: 0.5rem; }
  .stage-opener { font-size: clamp(1.5rem, 5.6vw, 1.9rem); }
  .assistant-body { padding: 0.9rem 1rem 1rem; }
  .answer-card { line-height: 1.62; }
  .hero { padding: 4.6rem 1.1rem 3.4rem; }
  .hero-panel-wrap { max-width: 100%; }
  .stage-overlay { padding-left: 1.1rem; padding-right: 1.1rem; }
  .stage-copy { font-size: 0.92rem; }
  .answer-card { font-size: 0.74rem; overflow-x: auto; }
  .answer-card .ln { gap: 0.6rem; }
  .chip-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .chip-row::-webkit-scrollbar { display: none; }
  .chip { flex: 0 0 auto; white-space: nowrap; }
  .counter { min-width: 40%; }
  .site-footer nav { gap: 1rem; flex-wrap: wrap; }
}
@media (min-width: 641px) {
  .hud .hud-current-label { display: none; }
}

/* ======================= EVERY DECK. EVERY SCREEN. =======================
   Three device frames. The screens are RENDERED, not screenshotted: the site
   depicts the product the same way it depicts the assistant — in HTML, with
   the fictional fleet — so nothing here can leak a real customer's data. */
.devices {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(18px, 3vw, 44px);
  margin-top: 46px;
  flex-wrap: wrap;
}
.dev { margin: 0; }
.dev figcaption {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim-on-light);
  text-align: center;
  margin-top: 14px;
}
.dev-screen {
  background: #0E2436;
  border: 1px solid rgba(196, 154, 71, 0.38);
  box-shadow: 0 26px 60px rgba(4, 12, 20, 0.55);
  overflow: hidden;
}
/* device proportions */
.dev-phone .dev-screen { width: 174px; height: 340px; border-radius: 22px; padding: 10px 9px; }
.dev-pad   .dev-screen { width: 330px; height: 254px; border-radius: 12px; padding: 9px; }
.dev-tv    .dev-screen { width: 432px; height: 252px; border-radius: 7px; padding: 9px 10px; }

/* ---- phone: the frozen briefing, on paper ---- */
.paper { background: #F4F1EA; border-radius: 14px; padding: 11px 10px; color: #14293B; }
.p-title { font-family: var(--sans); font-weight: 700; font-size: 0.62rem; letter-spacing: 0.06em; }
.p-rule { height: 2px; width: 34px; background: #0E8E86; margin: 6px 0 8px; }
.p-rule.short { width: 26px; }
.p-row { display: flex; justify-content: space-between; gap: 8px; font-size: 0.56rem; padding: 3px 0; border-bottom: 1px solid rgba(20,41,59,0.10); }
.p-row:last-child { border-bottom: none; }
.p-row span { color: rgba(20,41,59,0.55); }
.p-row b { font-weight: 600; text-align: right; }
.p-row.t span { color: #0E8E86; font-weight: 700; }
.p-sec { font-family: var(--sans); font-weight: 700; font-size: 0.56rem; margin-top: 11px; }
.p-warn { margin-top: 9px; background: #FDECE8; border-left: 3px solid #E25C43; color: #C0432C;
          font-size: 0.54rem; padding: 5px 7px; border-radius: 4px; }

/* ---- iPad: the cockpit ---- */
.pad-hero { display: flex; align-items: center; gap: 8px; padding: 4px 4px 8px; }
.pad-hero .av { width: 26px; height: 26px; border-radius: 50%; border: 2px solid #13B0A5;
                background: linear-gradient(140deg,#1d5a72,#0d3247); flex: none; }
.pad-hero div { flex: 1; line-height: 1.25; }
.pad-hero b { display: block; color: #E7F0F3; font-size: 0.72rem; letter-spacing: 0.02em; }
.pad-hero span { color: rgba(231,240,243,0.5); font-size: 0.54rem; }
.pad-hero em { font-style: normal; font-family: var(--mono); font-size: 0.5rem; letter-spacing: 0.12em;
               color: #13B0A5; background: rgba(19,176,165,0.14); border-radius: 999px; padding: 2px 7px; }
.pad-money { display: flex; gap: 6px; margin-bottom: 8px; }
.pad-money .t { flex: 1; border: 1px solid rgba(19,176,165,0.30); border-radius: 7px; padding: 5px 7px;
                background: linear-gradient(150deg, rgba(19,176,165,0.10), rgba(19,176,165,0.02)); }
.pad-money span { display: block; font-family: var(--mono); font-size: 0.42rem; letter-spacing: 0.1em; color: rgba(231,240,243,0.55); }
.pad-money b { font-size: 0.78rem; color: #13B0A5; }
.pad-money b.dim { color: rgba(231,240,243,0.4); }
.pad-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 5px; height: 138px; }
.pad-grid .c { background: rgba(231,240,243,0.045); border: 1px solid rgba(231,240,243,0.10);
               border-radius: 8px; padding: 7px 8px; }
.pad-grid u { display: block; text-decoration: none; font-family: var(--mono); font-size: 0.42rem;
              letter-spacing: 0.12em; color: #13B0A5; margin-bottom: 6px; }
.pad-grid i { display: block; height: 4px; border-radius: 2px; background: rgba(231,240,243,0.16); margin-bottom: 5px; }
.pad-grid i.s { width: 55%; }

/* ---- Apple TV: the wall ---- */
.tv-head { display: flex; align-items: center; gap: 14px; padding-bottom: 8px; }
.tv-mark { font-family: var(--sans); font-weight: 700; font-size: 0.6rem; letter-spacing: 0.16em; color: #E7F0F3; }
.tv-mark b { color: #13B0A5; }
.tv-stats { flex: 1; display: flex; justify-content: center; gap: 22px; }
.tv-stats div { text-align: center; }
.tv-stats b { display: block; font-size: 0.86rem; color: #E7F0F3; line-height: 1; }
.tv-stats b.on { color: #13B0A5; }
.tv-stats span { font-family: var(--mono); font-size: 0.38rem; letter-spacing: 0.14em; color: rgba(231,240,243,0.45); }
.tv-clock { font-family: var(--mono); font-size: 0.8rem; color: #E7F0F3; }
.tv-body { display: grid; grid-template-columns: 1fr 1fr 0.85fr; gap: 7px; height: 132px; }
.tv-pane { position: relative; background: #0A1B28; border: 1px solid rgba(231,240,243,0.10); border-radius: 6px; overflow: hidden; }
.tv-pane em { position: absolute; top: 6px; left: 7px; font-style: normal; font-family: var(--mono);
              font-size: 0.4rem; letter-spacing: 0.14em; color: rgba(231,240,243,0.5); }
.tv-pane i { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: #13B0A5;
             box-shadow: 0 0 9px rgba(19,176,165,0.85); }
.tv-board { background: rgba(231,240,243,0.045); border: 1px solid rgba(231,240,243,0.10); border-radius: 6px; padding: 7px 8px; }
.tv-board em { display: block; font-style: normal; font-family: var(--mono); font-size: 0.4rem;
               letter-spacing: 0.12em; color: #C49A47; margin-bottom: 7px; }
.tv-board i { display: block; height: 5px; border-radius: 2px; background: rgba(231,240,243,0.16); margin-bottom: 7px; }
.tv-board i.s { width: 60%; }
.tv-strip { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-top: 8px; }
.tv-strip div { font-family: var(--mono); font-size: 0.4rem; letter-spacing: 0.14em;
                color: rgba(231,240,243,0.55); background: rgba(231,240,243,0.045);
                border: 1px solid rgba(231,240,243,0.10); border-radius: 5px; padding: 6px 8px; }

.dev-native {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-on-light);
  text-align: center;
  margin-top: 38px;
}
.dev-native::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--brass);
  margin: 0 auto 16px;
}

@media (max-width: 980px) {
  .devices { flex-wrap: wrap; gap: 26px; }
  .dev-tv .dev-screen { width: 360px; height: 206px; }
  .dev-pad .dev-screen { width: 300px; height: 226px; }
}
/* the briefing is a message IN a thread, so the phone shows the thread */
.p-msg {
  margin-top: 9px;
  background: rgba(231, 240, 243, 0.07);
  border: 1px solid rgba(231, 240, 243, 0.12);
  border-radius: 10px;
  padding: 7px 9px;
  font-size: 0.55rem;
  line-height: 1.45;
  color: rgba(231, 240, 243, 0.85);
}
.p-msg b { display: block; color: #13B0A5; font-size: 0.5rem; font-weight: 600; margin-bottom: 2px; }
/* the wall's chart panes carry the Bridge's own simplified Aegean coastlines,
   drawn as inline SVG — no map tiles, so no attribution and no network call */
.tv-pane svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.tv-pane .land { fill: rgba(231, 240, 243, 0.14); stroke: rgba(19, 176, 165, 0.62); stroke-width: 3.5; }
.tv-pane .grat line { stroke: rgba(231, 240, 243, 0.085); stroke-width: 2; }
.tv-pane .bt { fill: #13B0A5; }
.tv-pane .wake { stroke: rgba(19, 176, 165, 0.55); stroke-width: 4; stroke-linecap: round; }
