:root {
  /* Brand greens (from design system) */
  --brand-900: #1E3324;
  --brand-700: #2E5038;
  --brand-500: #4D6652;
  --brand-300: #7FA08A;
  --brand-100: #C4D9CD;
  --brand-50:  #EAF2EE;

  /* Gold accent */
  --gold-700: #9C7A2A;
  --gold-500: #C9A055;
  --gold-300: #E5CB8F;
  --gold-100: #F5EAC8;

  /* Paper / parchment */
  --paper:       #FAF7F2;
  --paper-warm:  #F2EDE3;
  --paper-deep:  #E8DFC9;
  --line:        #D3C4A8;
  --line-soft:   #E5DAC4;

  /* Ink */
  --ink:         #2B1C0E;
  --ink-soft:    #3B2C1E;
  --ink-muted:   #7C6349;
  --ink-faint:   #A89576;

  /* Type */
  --serif: 'bogart', 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', system-ui, -apple-system, sans-serif;
  --mono:  'JetBrains Mono', 'Courier New', monospace;
}

* { margin:0; padding:0; box-sizing:border-box; }
*::selection { background: var(--brand-500); color: var(--paper); }

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
}

/* Paper grain */
body::before {
  content:'';
  position:fixed; inset:0;
  pointer-events:none;
  opacity:.35;
  z-index:1;
  background-image:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='7'/%3E%3CfeColorMatrix values='0 0 0 0 0.16 0 0 0 0 0.11 0 0 0 0 0.05 0 0 0 0.09 0'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}
@media (max-width: 640px) { .container { padding: 0 20px; } }

/* ============================================================
   Eyebrow / section labels
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--brand-700);
  line-height: 1.4;
  white-space: nowrap;
}
.eyebrow .eyebrow-icon { display: none; }
.eyebrow .eyebrow-lbl {
  letter-spacing: 0.2em;
}
.eyebrow.center { justify-content: center; }
.eyebrow.cream {
  color: var(--gold-300);
}
@media (max-width: 480px) {
  .eyebrow { font-size: 11px; gap: 10px; letter-spacing: .18em; white-space: normal; }
  .eyebrow .eyebrow-lbl { letter-spacing: .18em; }
}

/* ============================================================
   TOP STRIP — coordinates-style utility bar
   ============================================================ */
.topstrip {
  background: var(--brand-900);
  color: var(--gold-300);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  z-index: 60;
}
.topstrip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 9px;
  padding-bottom: 9px;
  gap: 16px;
}
.topstrip-left, .topstrip-right { display:flex; gap:22px; align-items:center; }
.topstrip span.dot {
  width:6px; height:6px; border-radius:50%;
  background: var(--gold-500);
  display:inline-block;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; }
  50% { opacity:.35; }
}
.topstrip a { color: var(--gold-300); text-decoration: none; transition: color .2s; }
.topstrip a:hover { color: var(--paper); }
@media (max-width:1000px){
  .topstrip-inner {
    font-size: 10px;
    padding: 10px 0;
    justify-content: center;
  }
  .topstrip-left { display: none; }
  .topstrip-right { gap: 8px; }
  .topstrip-right a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: .14em;
    white-space: nowrap;
  }
  .topstrip-right a::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold-500);
    animation: pulse 2.4s ease-in-out infinite;
  }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
nav.primary {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--brand-900);
}
.brand-mark {
  height: 32px;
  width: auto;
}
.brand-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.005em;
  color: var(--brand-500);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
}
.nav-link {
  text-decoration: none;
  color: var(--ink-soft);
  padding: 8px 14px;
  border-radius: 4px;
  transition: color .2s, background .2s;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-link:hover { color: var(--brand-700); background: rgba(77, 102, 82, 0.06); }

/* Use Cases dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 48px -16px rgba(43, 28, 14, 0.18), 0 4px 8px rgba(43,28,14,.06);
  padding: 8px;
  min-width: 320px;
  opacity: 0;
  visibility: hidden;
  transition: all .2s ease;
  z-index: 60;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
}
.nav-dropdown-menu::before {
  content:'';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  text-decoration: none;
  color: var(--ink);
  border-radius: 6px;
  transition: background .15s;
}
.dropdown-item:hover { background: var(--paper-warm); }
.dropdown-glyph {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  color: var(--brand-700);
  background: var(--paper-warm);
}
.dropdown-title {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: 4px;
}
.dropdown-sub {
  display: block;
  font-size: 12px;
  color: var(--ink-muted);
  line-height: 1.4;
}

.btn {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 4px;
  padding: 11px 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
}
.btn-primary {
  background: var(--brand-500);
  color: var(--paper);
}
.btn-primary:hover {
  background: var(--brand-700);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -8px rgba(46, 80, 56, .35);
}
.btn-ghost {
  color: var(--ink-soft);
  background: transparent;
}
.btn-ghost:hover { color: var(--brand-700); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 8px 10px;
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle svg { display: block; }

@media (max-width: 1000px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 16px;
    gap: 4px;
  }
  .nav-link { padding: 12px 16px; }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    margin-top: 4px;
    background: var(--paper-warm);
  }
  .nav-dropdown-menu::before { display:none; }
  .nav-links.open .btn-primary { margin-top: 8px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 96px 0 120px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-tag .pill {
  background: var(--gold-100);
  color: var(--gold-700);
  border: 1px solid var(--gold-300);
  border-radius: 999px;
  padding: 4px 10px;
  font-weight: 500;
}

h1.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.022em;
  color: var(--brand-900);
  margin-bottom: 32px;
  max-width: 22ch;
  text-wrap: balance;
  display: block;
}
h1.hero-title .ht-line-1 {
  display: block;
  font-weight: 400;
  font-size: 0.9em;
  letter-spacing: -0.022em;
}
h1.hero-title .ht-line-2 {
  display: block;
  font-weight: 300;
  font-size: 0.9em;
  font-style: italic;
  letter-spacing: -0.024em;
  margin-top: 6px;
  color: var(--gold-700);
}

.hero-sub {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 400;
  max-width: 52ch;
  margin-bottom: 40px;
  text-wrap: pretty;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.btn-lg {
  padding: 16px 30px;
  font-size: 15px;
}
.btn-link {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  color: var(--brand-700);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  border-bottom: 1px solid currentColor;
  transition: color .2s, gap .2s;
}
.btn-link:hover { color: var(--gold-700); gap: 12px; }

.hero-foot {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.hero-foot-label {
  color: var(--brand-700);
}
.hero-foot ul {
  list-style: none;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-foot li {
  position: relative;
  padding-left: 16px;
}
.hero-foot li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 8px; height: 1px;
  background: var(--gold-500);
  transform: translateY(-50%);
}

/* Hero illustration — layered field-card tableau */
.hero-art {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  min-height: 540px;
}
.hero-art .topo-bg {
  position: absolute;
  inset: -40px -20px -20px -20px;
  z-index: 0;
  opacity: 0.55;
  pointer-events: none;
}
.hero-card {
  position: relative;
  z-index: 2;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 14px;
  border-radius: 3px;
  box-shadow: 0 40px 80px -28px rgba(43,28,14,.32), 0 8px 18px rgba(43,28,14,.10);
  transform: rotate(-2deg);
  max-width: 380px;
  margin: 30px auto 0;
}
.hero-card-h {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 2px 4px 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
}
.hero-card-h .brand-line { color: var(--brand-700); font-weight: 600; }
.hero-card-vignette {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 2px;
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg, transparent 0 9px, rgba(43,28,14,0.06) 9px 10px),
    linear-gradient(180deg, var(--paper-warm) 0%, var(--paper-deep) 100%);
  border: 1px solid var(--line-soft);
}
.hero-card-vignette .vignette-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.02);
}
.hero-card-vignette.photo::after { display: none; }
.hero-card-vignette::before {
  content:'';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 110%, rgba(30, 51, 36, 0.45), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.18) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-card-vignette::after {
  content: 'EXPEDITION PHOTOGRAPHY';
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .2em;
  color: var(--ink-faint);
}
.hero-card-stamp {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 76px;
  height: 76px;
  border: 2px solid var(--gold-300);
  color: var(--gold-100);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1.3;
  transform: rotate(-9deg);
  opacity: 0.95;
  background: rgba(30, 51, 36, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2;
  text-shadow: 0 1px 2px rgba(0,0,0,.4);
}
.hero-card-stamp strong {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1;
  margin: 2px 0;
  text-transform: none;
  color: var(--gold-100);
}
.hero-card-body {
  padding: 14px 6px 4px;
}
.hero-card-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--brand-900);
  margin-bottom: 4px;
}
.hero-card-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-700);
}
.hero-card-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 14px;
}
.hero-card-log {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  display: grid;
  gap: 8px;
}
.hero-card-log-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 10px;
  align-items: baseline;
  font-size: 12px;
}
.hero-card-log-row .t {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .12em;
  color: var(--ink-faint);
}
.hero-card-log-row .n {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--brand-900);
}
.hero-card-log-row .n em { font-style: italic; font-weight: 400; font-size: 10px; color: var(--ink-muted); margin-left: 4px; }
.hero-card-log-row .x {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero-card-log-row .x.rare { color: var(--gold-700); }
.hero-card-log-row .x.cr { color: #6e2828; }
.hero-card-log-row .x.ok { color: var(--brand-700); }
.hero-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}
.hero-card-foot .filed { color: var(--brand-700); font-weight: 600; }

/* Floating chips */
.hero-chip {
  position: absolute;
  z-index: 3;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 8px 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  box-shadow: 0 12px 24px -10px rgba(43,28,14,.22);
  border-radius: 2px;
  white-space: nowrap;
}
.hero-chip .lbl { display:block; color: var(--brand-700); font-weight: 600; font-size: 9px; letter-spacing: .18em; margin-bottom: 3px; }
.hero-chip .val { font-family: var(--serif); font-style: italic; font-size: 13px; color: var(--brand-900); letter-spacing: 0; text-transform: none; font-weight: 500; }
.hero-chip.c1 { top: 2%; left: -2%; transform: rotate(-6deg); }
.hero-chip.c2 { top: 32%; right: -8%; transform: rotate(5deg); }
.hero-chip.c3 { bottom: 4%; left: -4%; transform: rotate(3deg); }
.hero-chip.c-stamp {
  background: var(--gold-100);
  border: 1px dashed var(--gold-500);
  color: var(--gold-700);
}

@media (max-width: 980px) {
  .hero { padding: 56px 0 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-art { max-width: 420px; margin: 0 auto; min-height: 520px; }
}
@media (max-width: 560px) {
  .hero-art { min-height: 480px; max-width: 100%; }
  .hero-card { max-width: 320px; }
  .hero-chip { font-size: 9px; padding: 6px 10px; }
  .hero-chip .val { font-size: 12px; }
}

/* ============================================================
   USE CASES BAND
   ============================================================ */
.usecases {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-warm);
  padding: 96px 0 100px;
  position: relative;
}
.usecases-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  margin-bottom: 56px;
  align-items: end;
}
.usecases-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--brand-900);
  margin-top: 18px;
}
.usecases-head h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-700);
}
.usecases-head p {
  font-size: 17px;
  color: var(--ink-muted);
  line-height: 1.6;
  max-width: 52ch;
}
@media (max-width:900px){
  .usecases-head { grid-template-columns: 1fr; gap: 24px; }
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--paper);
}
.usecase {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 32px 24px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  background: var(--paper);
  transition: background .25s ease, transform .25s ease;
  min-height: 280px;
}
.usecase:hover { background: var(--brand-50); }
.usecase:hover .uc-arrow { transform: translate(4px, -4px); color: var(--brand-700); }

.uc-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ink-faint);
  margin-bottom: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.uc-arrow {
  color: var(--ink-faint);
  transition: transform .25s ease, color .25s ease;
}
.uc-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  color: var(--brand-700);
  margin-bottom: 24px;
}
.uc-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--brand-900);
  margin-bottom: 10px;
  text-wrap: balance;
}
.uc-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-muted);
}

@media (max-width: 1100px) {
  .usecase-grid { grid-template-columns: repeat(2, 1fr); }
  .usecase { min-height: 240px; }
}
@media (max-width: 560px) {
  .usecase-grid { grid-template-columns: 1fr; }
  .usecase { min-height: auto; padding: 24px 20px; }
}

/* ============================================================
   FIELD GAP (problem)
   ============================================================ */
.gap {
  padding: 130px 0;
  position: relative;
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.gap-head {
  max-width: 880px;
  margin-bottom: 40px;
}
.gap-body {
  max-width: 880px;
  margin-bottom: 72px;
}
@media (max-width:900px){
  .gap { padding: 90px 0; }
  .gap-body { margin-bottom: 48px; }
}

.gap h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--brand-900);
  margin-top: 22px;
  text-wrap: balance;
}
.gap h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-700);
}

.gap-body { font-size: 18px; line-height: 1.65; color: var(--ink-soft); }
.gap-body p { margin-bottom: 22px; }
.gap-body p:last-child { margin-bottom: 0; }
.gap-body strong { color: var(--brand-900); font-weight: 600; }

.field-card {
  background: var(--brand-900);
  color: var(--paper);
  padding: 30px 32px;
  border-radius: 4px;
  margin-top: 28px;
  position: relative;
  box-shadow: 0 18px 40px -16px rgba(30, 51, 36, .35);
}
.field-card::before {
  content:'';
  position: absolute;
  top: -10px; left: 32px;
  background: var(--gold-500);
  color: var(--brand-900);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  padding: 4px 8px;
  text-transform: uppercase;
  font-weight: 600;
  content: 'A note from the field';
}
.field-card p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  color: var(--gold-100);
}
.field-card cite {
  display: block;
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-300);
}

/* ============================================================
   CHAPTERS — editorial stacked sections
   ============================================================ */
.chapters {
  padding: 130px 0;
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.chapters-head {
  max-width: 760px;
  margin: 0 auto 72px;
  text-align: center;
}
.chapters-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--brand-900);
  margin-bottom: 18px;
  text-wrap: balance;
}
.chapters-head h2 em { font-style: italic; font-weight: 300; color: var(--gold-700); }
.chapters-head p { color: var(--ink-muted); font-size: 17px; line-height: 1.6; }

.chapter {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  padding: 72px 0;
  border-top: 1px solid var(--line);
  align-items: start;
  position: relative;
}
.chapter:last-of-type { border-bottom: 1px solid var(--line); }

.chapter-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 120px;
}
.chapter-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 110px;
  line-height: 0.85;
  color: var(--gold-500);
  letter-spacing: -0.04em;
}
.chapter-for {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--ink-muted);
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.chapter h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--brand-900);
  margin-bottom: 24px;
  text-wrap: balance;
  max-width: 22ch;
}
.chapter h3 em { font-style: italic; font-weight: 300; color: var(--gold-700); }
.chapter-lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 60ch;
  margin-bottom: 32px;
  text-wrap: pretty;
}
.chapter-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.chapter-list li {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  position: relative;
  padding-left: 18px;
}
.chapter-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.6em;
  width: 8px; height: 1px;
  background: var(--brand-500);
}

@media (max-width: 860px) {
  .chapters { padding: 90px 0; }
  .chapter { grid-template-columns: 1fr; gap: 24px; padding: 56px 0; }
  .chapter-side { flex-direction: row; align-items: baseline; gap: 20px; position: static; }
  .chapter-num { font-size: 80px; }
  .chapter-for { padding-top: 0; border-top: none; }
  .chapter-list { grid-template-columns: 1fr; gap: 10px; }
}

/* Across-all strip */
.across {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 80px;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
}
.across-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.across-lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-700);
}
.across-val {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17px;
  color: var(--brand-900);
}
@media (max-width: 760px) {
  .across { grid-template-columns: 1fr; gap: 16px; margin-top: 56px; }
}

/* ============================================================
   SHOWCASE
   ============================================================ */
.showcase {
  background: var(--brand-900);
  color: var(--paper);
  padding: 140px 0 130px;
  position: relative;
  overflow: hidden;
}
.showcase::before {
  content:'';
  position:absolute; inset:0;
  background-image:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n2'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='3'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n2)'/%3E%3C/svg%3E");
  pointer-events:none;
  mix-blend-mode: screen;
}
.showcase-head {
  max-width: 720px;
  margin-bottom: 64px;
}
.showcase-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-top: 22px;
  color: var(--gold-100);
  text-wrap: balance;
}
.showcase-head h2 em { font-style: italic; font-weight: 300; color: var(--gold-500); }

.showcase-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.95fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 980px) {
  .showcase { padding: 90px 0; }
  .showcase-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Dashboard mock */
.dash {
  background: var(--paper);
  color: var(--ink);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 40px 80px -28px rgba(0,0,0,.55), 0 8px 20px rgba(0,0,0,.25);
  font-family: var(--sans);
  font-size: 12px;
  position: relative;
  border: 1px solid rgba(255,255,255,.05);
}
.dash-bar {
  background: var(--paper-warm);
  border-bottom: 1px solid var(--line);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.dash-bar-left {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 14px;
  color: var(--brand-900);
}
.dash-bar-left .traffic {
  display: flex; gap: 6px;
}
.dash-bar-left .traffic span {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--line);
}
.dash-bar-search {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
  color: var(--ink-faint);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 5px 10px;
  display: none;
}
.dash-bar-tabs {
  display: flex; gap: 14px;
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--ink-muted);
  font-weight: 500;
}
.dash-bar-tabs .active { color: var(--brand-700); font-weight: 600; position: relative; }
.dash-bar-tabs .active::after {
  content:'';
  position:absolute;
  bottom: -13px; left: 0; right: 0;
  height: 2px;
  background: var(--brand-500);
}

.dash-body {
  display: grid;
  grid-template-columns: 200px 1fr;
}
.dash-side {
  background: var(--paper-warm);
  border-right: 1px solid var(--line);
  padding: 16px 14px;
}
.side-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 8px 4px 10px;
}
.side-item {
  padding: 10px 12px;
  border-radius: 4px;
  margin-bottom: 4px;
  background: var(--paper);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: background .2s;
}
.side-item.active {
  background: var(--brand-900);
  color: var(--paper);
  border-color: var(--brand-900);
}
.side-item .title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 12px;
  margin-bottom: 4px;
}
.side-item .meta {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .04em;
  color: var(--ink-faint);
}
.side-item.active .meta { color: var(--gold-300); }
.side-status {
  display: inline-block;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 2px;
  margin-top: 6px;
}
.status-live { background: var(--brand-500); color: var(--paper); }
.status-up { background: var(--gold-500); color: var(--brand-900); }

.dash-main { padding: 20px 22px; }
.dash-h {
  display: flex; justify-content: space-between; align-items: start;
  margin-bottom: 4px;
  gap: 12px;
}
.dash-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -.01em;
  color: var(--brand-900);
}
.dash-sub {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--ink-muted);
  margin-bottom: 18px;
}
.dash-sub em { color: var(--gold-700); font-style: italic; font-weight: 500; }

.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}
.stat {
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 10px 12px;
}
.stat-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
}
.stat-val {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--brand-900);
}
.stat-val em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-700);
  font-size: 14px;
  margin-left: 2px;
}

.feed-h {
  display: flex; justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.feed-h .live {
  color: var(--brand-700);
  display: inline-flex; align-items: center; gap: 6px;
}
.feed-h .live::before {
  content:''; width:6px; height:6px; border-radius:50%;
  background: var(--brand-500);
  animation: pulse 2s infinite;
}
.feed-item {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--line-soft);
}
.feed-item:last-child { border-bottom: none; }
.feed-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--brand-700);
}
.feed-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 12.5px;
  color: var(--brand-900);
}
.feed-rare {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-700);
  font-weight: 600;
  margin-left: 6px;
}
.feed-meta {
  font-size: 10.5px;
  color: var(--ink-muted);
  font-style: italic;
}
.feed-status {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .12em;
  font-weight: 600;
  padding: 3px 7px;
  border-radius: 2px;
}
.feed-status.verified { background: var(--brand-500); color: var(--paper); }
.feed-status.pending {
  background: var(--gold-100);
  color: var(--gold-700);
  border: 1px solid var(--gold-300);
}

/* Phone mock */
.phone {
  margin: 0 auto;
  width: 280px;
  background: var(--brand-900);
  border-radius: 32px;
  padding: 10px;
  box-shadow: 0 40px 80px -28px rgba(0,0,0,.55), inset 0 0 0 1px rgba(255,255,255,.06);
  position: relative;
}
.phone-screen {
  background: var(--paper);
  border-radius: 24px;
  padding: 22px 18px 24px;
  height: 540px;
  position: relative;
  overflow: hidden;
}
.phone-screen::before {
  content:'';
  position:absolute; inset:0;
  background-image:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n3'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='1'/%3E%3CfeColorMatrix values='0 0 0 0 0.16 0 0 0 0 0.11 0 0 0 0 0.05 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n3)'/%3E%3C/svg%3E");
  pointer-events:none;
  mix-blend-mode: multiply;
}
.phone-notch {
  width: 90px; height: 6px;
  background: var(--brand-900);
  border-radius: 4px;
  margin: -2px auto 18px;
}
.phone-top {
  display: flex; justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}
.phone-top .on { color: var(--brand-500); display:inline-flex; align-items:center; gap:5px; }
.phone-top .on::before {
  content:''; width:6px; height:6px; border-radius:50%; background: var(--brand-500);
}
.phone-h1 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--brand-900);
  letter-spacing: -.01em;
}
.phone-h2 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 11px;
  color: var(--ink-muted);
  margin: 2px 0 16px;
}
.phone-card {
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 8px;
}
.species {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 14px;
  color: var(--brand-900);
}
.latin {
  font-family: var(--serif);
  font-style: italic;
  font-size: 10.5px;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.tags { display: flex; gap: 4px; flex-wrap: wrap; }
.tag {
  font-family: var(--mono);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 2px;
  background: var(--paper);
  color: var(--ink-muted);
  border: 1px solid var(--line);
}
.tag.vu { background: var(--gold-100); color: var(--gold-700); border-color: var(--gold-300); }
.tag.cr { background: #6e2828; color: var(--paper); border-color: #6e2828; }
.tag.seen { background: var(--brand-500); color: var(--paper); border-color: var(--brand-500); }
.tag.rare { background: var(--gold-500); color: var(--brand-900); border-color: var(--gold-500); }

.phone-foot {
  font-family: var(--mono);
  font-style: normal;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  text-align: center;
  margin-top: 14px;
}

/* ============================================================
   BEFORE / AFTER
   ============================================================ */
.compare {
  padding: 130px 0;
}
.compare-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.compare-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-top: 18px;
  color: var(--brand-900);
  text-wrap: balance;
}
.compare-head h2 em { font-style: italic; font-weight: 300; color: var(--gold-700); }

.compare-table {
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
}
.cmp-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.cmp-row:last-child { border-bottom: none; }
.cmp-row.head { background: var(--paper-warm); }
.cmp-cell { padding: 20px 24px; font-size: 15px; line-height: 1.5; }
.cmp-cell.label {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--brand-900);
}
.cmp-cell.legacy {
  color: var(--ink-faint);
  font-style: italic;
  border-left: 1px solid var(--line);
}
.cmp-cell.fm {
  color: var(--ink);
  background: var(--brand-50);
  border-left: 1px solid var(--line);
}
.cmp-cell.h {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
}
.cmp-cell.h.fm { color: var(--brand-700); }
.cmp-row.head .cmp-cell.fm { background: var(--brand-100); }

@media (max-width: 760px) {
  .compare { padding: 90px 0; }
  .cmp-row { grid-template-columns: 1fr; }
  .cmp-cell.legacy, .cmp-cell.fm { border-left: none; border-top: 1px solid var(--line); }
  .cmp-row.head { display: none; }
  .cmp-cell::before {
    display: block;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 6px;
  }
  .cmp-cell.legacy::before { content: 'Spreadsheets & group chats'; }
  .cmp-cell.fm::before { content: 'With Fieldmarks'; color: var(--brand-700); }
}

/* ============================================================
   FEATURE CALLOUTS (library + offline)
   ============================================================ */
.features {
  padding: 130px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.alt { grid-template-columns: 1fr 1fr; }
.feature-row.alt .feature-art { order: -1; }

@media (max-width:900px){
  .features { padding: 90px 0; }
  .feature-row { grid-template-columns: 1fr; gap: 40px; margin-bottom: 80px; }
  .feature-row.alt .feature-art { order: 0; }
}

.feature-text h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--brand-900);
  margin: 18px 0 18px;
  text-wrap: balance;
}
.feature-text h3 em { font-style: italic; font-weight: 300; color: var(--gold-700); }
.feature-text p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 18px;
  max-width: 50ch;
}
.feature-pts {
  list-style: none;
  margin-top: 24px;
}
.feature-pts li {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 14.5px;
  color: var(--ink-soft);
}
.feature-pts li:last-child { border-bottom: 1px solid var(--line-soft); }
.feature-pts li strong {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--brand-900);
  display: block;
  margin-bottom: 2px;
}
.feature-pts li svg {
  flex-shrink: 0;
  color: var(--brand-500);
  margin-top: 2px;
}

/* Wildlife card stack */
.species-stack {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin: 0 auto;
}
.species-card {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  box-shadow: 0 24px 48px -22px rgba(43, 28, 14, .22);
  width: 70%;
}
.species-card.s1 { top: 0; left: 0; transform: rotate(-3.5deg); width: 64%; }
.species-card.s2 { top: 18%; right: 0; transform: rotate(2deg); width: 64%; }
.species-card.s3 { bottom: 0; left: 18%; transform: rotate(-1deg); width: 70%; background: var(--brand-900); color: var(--gold-100); border-color: var(--brand-900); }
.species-card.s3 .species, .species-card.s3 .latin { color: var(--gold-100); }
.species-card.s3 .latin { color: var(--gold-300); }
.sp-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 8px;
  display: flex; justify-content: space-between;
}
.species-card.s3 .sp-meta { color: var(--gold-300); }
.species-card .species { font-size: 17px; }
.species-card .latin { margin-bottom: 12px; font-size: 12px; }

/* Field report card */
.report-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 32px 60px -22px rgba(43, 28, 14, .28), 0 4px 8px rgba(43,28,14,.06);
  max-width: 440px;
  margin: 0 auto;
  overflow: hidden;
  font-family: var(--sans);
  transform: rotate(-1.5deg);
  transition: transform .4s ease;
}
.report-card:hover { transform: rotate(0deg) translateY(-4px); }

.report-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-warm);
}
.report-brand {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 15px;
  color: var(--brand-900);
}
.report-by {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.report-hero {
  position: relative;
  height: 160px;
  overflow: hidden;
}
.report-hero svg {
  width: 100%; height: 100%;
  display: block;
}
.report-hero .report-day {
  position: absolute;
  bottom: 12px;
  left: 16px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 15px;
  color: var(--paper);
  text-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.report-body {
  padding: 22px;
}
.report-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -.01em;
  color: var(--brand-900);
  margin-bottom: 18px;
  line-height: 1.2;
}
.report-title span {
  color: var(--gold-500);
  margin: 0 4px;
}
.report-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.report-stats > div {
  padding: 12px 4px;
  border-right: 1px solid var(--line);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.report-stats > div:last-child { border-right: none; }
.report-stats .n {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  line-height: 1;
  color: var(--brand-900);
  letter-spacing: -.02em;
}
.report-stats .l {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 4px;
}
.report-highlights .hl-label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.hl-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 7px 0;
  border-bottom: 1px dotted var(--line);
  font-size: 13px;
  gap: 12px;
}
.hl-row:last-child { border-bottom: none; }
.hl-name {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--brand-900);
}
.hl-name em {
  font-style: italic;
  font-weight: 400;
  color: var(--ink-muted);
  font-size: 11px;
  margin-left: 4px;
}
.hl-meta {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--ink-muted);
  font-style: italic;
  text-align: right;
}
.report-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.report-foot .by { color: var(--brand-700); font-weight: 600; }

/* Offline sync illustration */
.sync-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  max-width: 460px;
  margin: 0 auto;
  box-shadow: 0 24px 48px -22px rgba(43, 28, 14, .18);
  font-family: var(--mono);
}
.sync-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 12px;
  letter-spacing: .04em;
}
.sync-row:last-child { border-bottom: none; }
.sync-row .lbl { color: var(--ink-muted); text-transform: uppercase; letter-spacing: .14em; font-size: 10.5px; }
.sync-row .val { color: var(--brand-900); }
.sync-row.k {
  background: var(--brand-50);
  margin: 14px -28px;
  padding: 16px 28px;
  border-top: 1px solid var(--brand-100);
  border-bottom: 1px solid var(--brand-100);
}
.sync-row.k .val { color: var(--brand-700); font-weight: 700; font-family: var(--serif); font-size: 16px; }
.sync-progress {
  height: 4px;
  background: var(--paper-warm);
  border-radius: 2px;
  overflow: hidden;
  margin: 14px 0 0;
}
.sync-progress span {
  display: block;
  height: 100%;
  width: 76%;
  background: linear-gradient(90deg, var(--brand-500), var(--gold-500));
  animation: progress 2.4s ease-in-out infinite alternate;
}
@keyframes progress {
  from { width: 18%; }
  to { width: 96%; }
}
.sync-icon {
  width: 56px; height: 56px;
  margin-bottom: 22px;
  border: 1px solid var(--brand-100);
  background: var(--brand-50);
  color: var(--brand-700);
  border-radius: 50%;
  display: grid; place-items: center;
}

/* ============================================================
   CTA / PRICING TEASER
   ============================================================ */
.cta {
  padding: 130px 0 140px;
  text-align: center;
  position: relative;
}
.cta-inner { max-width: 720px; margin: 0 auto; }
.cta h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -.022em;
  color: var(--brand-900);
  margin: 24px 0 22px;
  text-wrap: balance;
}
.cta h2 em { font-style: italic; font-weight: 300; color: var(--gold-700); }
.cta p {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 54ch;
  margin: 0 auto 36px;
  text-wrap: pretty;
}
.cta-ctas { display:flex; justify-content:center; gap:16px; flex-wrap:wrap; margin-bottom: 32px; }

.cta-pilot {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 16px 28px;
  border: 1px dashed var(--gold-500);
  border-radius: 999px;
  background: var(--gold-100);
  color: var(--gold-700);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-pilot strong {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: var(--brand-900);
  letter-spacing: 0;
  text-transform: none;
}
.cta-pilot .sep { color: var(--gold-500); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--brand-900);
  color: var(--gold-100);
  padding: 80px 0 36px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content:'';
  position:absolute; inset:0;
  background-image:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n4'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='9'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n4)'/%3E%3C/svg%3E");
  pointer-events:none;
  mix-blend-mode: screen;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
  position: relative;
}
@media (max-width:900px){
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  footer { padding: 64px 0 32px; }
}
@media (max-width:520px){
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
}
.foot-brand {
  font-family: var(--serif);
}
.foot-brand .name {
  font-size: 26px;
  font-weight: 600;
  color: var(--gold-100);
  display: inline-block;
  margin-bottom: 14px;
}
.foot-brand p {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-300);
  font-size: 15px;
  line-height: 1.55;
  max-width: 34ch;
  font-family: var(--serif);
  margin-bottom: 22px;
}
.foot-newsletter {
  display: flex; align-items: center;
  gap: 0;
  max-width: 320px;
  border: 1px solid rgba(229, 203, 143, .35);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(0,0,0,.2);
}
.foot-newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 11px 18px;
  color: var(--gold-100);
  font-family: var(--sans);
  font-size: 14px;
}
.foot-newsletter input::placeholder { color: rgba(229, 203, 143, .55); }
.foot-newsletter button {
  background: var(--gold-500);
  color: var(--brand-900);
  border: none;
  padding: 11px 20px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: background .2s;
}
.foot-newsletter button:hover { background: var(--gold-300); }

.foot-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 18px;
  font-weight: 600;
}
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 10px; font-size: 14px; }
.foot-col a {
  text-decoration: none;
  color: var(--gold-100);
  transition: color .2s;
  font-family: var(--sans);
}
.foot-col a:hover { color: var(--paper); }

.foot-bot {
  border-top: 1px solid rgba(229, 203, 143, .2);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-300);
  position: relative;
}

/* ============================================================
   Scroll animations
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
}
.fade-in.in {
  opacity: 1;
  transform: translateY(0);
}
.fade-in.d1 { transition-delay: 80ms; }
.fade-in.d2 { transition-delay: 160ms; }
.fade-in.d3 { transition-delay: 240ms; }
.fade-in.d4 { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-in { opacity: 1; transform: none; }
}

/* ============================================================
   TABBED PRODUCT SHOWCASE (replaces chapters)
   ============================================================ */
.tabsection {
  padding: 130px 0;
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.tabsection-head { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.tabsection-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--brand-900);
  margin-bottom: 16px;
  text-wrap: balance;
}
.tabsection-head h2 em { font-style: italic; font-weight: 300; color: var(--gold-700); }
.tabsection-head p { color: var(--ink-muted); font-size: 17px; line-height: 1.6; max-width: 52ch; margin: 0 auto; }

.tabs-bar {
  display: inline-flex;
  justify-content: center;
  gap: 2px;
  margin: 0 auto 56px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  background: var(--paper);
  width: fit-content;
}
.tabs-bar-wrap { text-align: center; }
.tab-btn {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-muted);
  background: transparent;
  border: none;
  padding: 11px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .3s ease;
}
.tab-btn:hover { color: var(--brand-700); }
.tab-btn.active {
  background: var(--brand-900);
  color: var(--gold-100);
  box-shadow: 0 6px 14px -6px rgba(30,51,36,.4);
}
.tab-btn .tab-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0;
  margin-right: 8px;
  opacity: .7;
  text-transform: none;
}
.tab-btn.active .tab-num { color: var(--gold-500); opacity: 1; }

.tab-panels { position: relative; }
.tab-panel {
  display: none;
  animation: tabFade .35s ease-out;
}
.tab-panel.active { display: block; }
@keyframes tabFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.tab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.tab-h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.07;
  letter-spacing: -.02em;
  color: var(--brand-900);
  margin-bottom: 18px;
  text-wrap: balance;
  max-width: 22ch;
}
.tab-h3 em { font-style: italic; font-weight: 300; color: var(--gold-700); }
.tab-lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 50ch;
  margin-bottom: 28px;
  text-wrap: pretty;
}
.tab-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.tab-list li {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  padding-left: 16px;
  position: relative;
}
.tab-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.65em;
  width: 8px; height: 1px;
  background: var(--brand-500);
}
.tab-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 460px;
}

/* Mini dashboard for Team tab */
.mini-dash {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 60px -24px rgba(43,28,14,.30), 0 6px 14px rgba(43,28,14,.08);
  font-family: var(--sans);
  width: 100%;
  max-width: 460px;
}
.mini-dash-bar {
  background: var(--paper-warm);
  border-bottom: 1px solid var(--line);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mini-dash-brand {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 13px;
  color: var(--brand-900);
}
.mini-dash-live {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-700);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.mini-dash-live::before {
  content:''; width:6px; height:6px; border-radius:50%;
  background: var(--brand-500);
  animation: pulse 2s infinite;
}
.mini-dash-body {
  padding: 16px;
}
.mini-dash-h {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 10px;
}
.mini-exp {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  margin-bottom: 8px;
  background: var(--paper);
}
.mini-exp.live { background: var(--brand-50); border-color: var(--brand-100); }
.mini-exp-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 13px;
  color: var(--brand-900);
  line-height: 1.2;
}
.mini-exp-name .meta {
  display: block;
  font-family: var(--mono);
  font-style: normal;
  font-weight: 400;
  font-size: 9.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 3px;
}
.mini-exp-stat {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--brand-900);
  letter-spacing: -.01em;
}
.mini-exp-stat .l {
  display: block;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
  margin-top: 2px;
}
.mini-exp-status {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 2px;
  background: var(--brand-500);
  color: var(--paper);
}
.mini-exp-status.up { background: var(--gold-500); color: var(--brand-900); }
.mini-dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.mini-dash-stats .ms {
  text-align: center;
}
.mini-dash-stats .ms .n {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--brand-900);
  letter-spacing: -.02em;
  line-height: 1;
}
.mini-dash-stats .ms .l {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 4px;
}

/* Phone variants for guides + guests tabs */
.tab-phone {
  margin: 0 auto;
  width: 260px;
  background: var(--brand-900);
  border-radius: 30px;
  padding: 9px;
  box-shadow: 0 32px 70px -24px rgba(0,0,0,.45), inset 0 0 0 1px rgba(255,255,255,.06);
  position: relative;
}
.tab-phone-screen {
  background: var(--paper);
  border-radius: 22px;
  padding: 22px 16px 20px;
  height: 500px;
  overflow: hidden;
  position: relative;
}
.tab-phone-screen::before {
  content:'';
  position:absolute; inset:0;
  background-image:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='nm'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='5'/%3E%3CfeColorMatrix values='0 0 0 0 0.16 0 0 0 0 0.11 0 0 0 0 0.05 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23nm)'/%3E%3C/svg%3E");
  pointer-events:none;
  mix-blend-mode: multiply;
}
.tab-phone-notch {
  width: 78px; height: 5px;
  background: var(--brand-900);
  border-radius: 4px;
  margin: -2px auto 16px;
}
.tab-phone-top {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.tab-phone-top .on {
  color: var(--brand-500); display:inline-flex; align-items:center; gap:5px;
}
.tab-phone-top .on::before {
  content:''; width:6px; height:6px; border-radius:50%; background: var(--brand-500);
}
.tab-phone-h {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--brand-900);
  letter-spacing: -.01em;
  margin-bottom: 2px;
}
.tab-phone-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 11px;
  color: var(--ink-muted);
  margin-bottom: 14px;
}

/* Guides verify card */
.verify-card {
  border: 1px solid var(--line);
  background: var(--paper-warm);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.verify-card .row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
}
.verify-card .row .by { color: var(--brand-700); font-weight: 600; }
.verify-card .sp {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 14px;
  color: var(--brand-900);
}
.verify-card .sp em {
  font-style: italic;
  font-weight: 400;
  font-size: 11px;
  color: var(--ink-muted);
  margin-left: 4px;
}
.verify-card.corrected { background: #FFF8EC; border-color: var(--gold-300); }
.verify-card.corrected .strike {
  text-decoration: line-through;
  color: var(--ink-faint);
  font-size: 11px;
  margin-bottom: 2px;
  font-style: italic;
}
.verify-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 14px;
}
.verify-actions button {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 10px 8px;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink-soft);
  cursor: pointer;
}
.verify-actions button.primary {
  background: var(--brand-700);
  color: var(--paper);
  border-color: var(--brand-700);
}
.tab-phone-foot {
  position: absolute;
  bottom: 18px;
  left: 16px; right: 16px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  text-align: center;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
}

/* Guests itinerary timeline */
.itinerary { position: relative; padding-left: 18px; }
.itinerary::before {
  content: '';
  position: absolute;
  left: 5px; top: 6px; bottom: 6px;
  width: 1px;
  background: var(--line);
}
.iti-row {
  position: relative;
  padding: 0 0 14px 14px;
}
.iti-row::before {
  content: '';
  position: absolute;
  left: -16px; top: 6px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--brand-500);
}
.iti-row.done::before { background: var(--brand-500); }
.iti-row.next::before { border-color: var(--gold-500); }
.iti-time {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 3px;
}
.iti-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 13px;
  color: var(--brand-900);
  line-height: 1.2;
}
.iti-meta {
  font-size: 11px;
  color: var(--ink-muted);
  font-style: italic;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .tabsection { padding: 90px 0; }
  .tab-grid { grid-template-columns: 1fr; gap: 48px; }
  .tab-list { grid-template-columns: 1fr; }
  .tab-visual { min-height: auto; }
  .tabs-bar { flex-wrap: wrap; padding: 6px; gap: 4px; }
}
@media (max-width: 560px) {
  .tab-btn { padding: 8px 12px; font-size: 10px; letter-spacing: .12em; }
  .tab-btn .tab-num { font-size: 12px; margin-right: 5px; }
  .mini-dash { max-width: 100%; }
}

/* ============================================================
   BUILT FOR (compact strip before CTA)
   ============================================================ */
.builtfor {
  padding: 96px 0 88px;
  background: var(--brand-900);
  color: var(--gold-100);
  position: relative;
  overflow: hidden;
}
.builtfor::before {
  content:'';
  position:absolute; inset:0;
  background-image:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='nbf'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='4'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23nbf)'/%3E%3C/svg%3E");
  pointer-events:none;
  mix-blend-mode: screen;
}
.builtfor-head { text-align: center; margin-bottom: 44px; position: relative; }
.builtfor-head h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: -.018em;
  color: var(--gold-100);
  max-width: 30ch;
  margin: 0 auto;
  text-wrap: balance;
}
.builtfor-head h3 em { font-style: italic; font-weight: 300; color: var(--gold-500); }
.builtfor-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
}
.bf-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 24px 12px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(229, 203, 143, 0.22);
  border-radius: 4px;
  text-decoration: none;
  color: var(--gold-100);
  transition: all .2s ease;
  position: relative;
}
.bf-link:hover {
  background: rgba(229, 203, 143, 0.08);
  border-color: var(--gold-500);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -14px rgba(0,0,0,.5);
}
.bf-link:hover .bf-icon { color: var(--gold-300); }
.bf-link:hover .bf-arrow { color: var(--gold-300); transform: translate(3px, -3px); }
.bf-icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  color: var(--gold-500);
  transition: color .2s;
}
.bf-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  color: var(--gold-100);
  text-wrap: balance;
  max-width: 16ch;
}
.bf-arrow {
  position: absolute;
  top: 12px;
  right: 12px;
  color: rgba(229, 203, 143, 0.4);
  transition: transform .25s, color .25s;
}
@media (max-width: 900px) {
  .builtfor-grid { grid-template-columns: repeat(3, 1fr); }
  .builtfor-grid .bf-link:nth-child(4),
  .builtfor-grid .bf-link:nth-child(5) { grid-column: span 1; }
}
@media (max-width: 560px) {
  .builtfor-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   V1 VALUE SECTIONS
   ============================================================ */

/* shared value-section headers */
.v-guest h2, .v-ops-head h2, .v-brand h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.1vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-top: 22px;
  text-wrap: balance;
}
.v-guest h2 em, .v-brand h2 em { font-style: italic; font-weight: 300; color: var(--gold-700); }
.v-ops-head h2 em { font-style: italic; font-weight: 300; color: var(--gold-500); }
@media (min-width: 760px) {
  .v-guest h2 em, .v-ops-head h2 em, .v-brand h2 em, .cta h2 em {
    display: block;
    margin-top: 0.12em;
  }
}
.v-kicker { color: var(--ink); font-style: italic; font-family: var(--serif); font-size: 19px; line-height: 1.5; margin-top: 14px; }
.v-kicker.cream { color: var(--gold-100); }
.v-guest p, .v-brand-copy p { font-size: 17px; line-height: 1.7; color: var(--ink-soft); margin-top: 18px; max-width: 56ch; }
.v-guest .v-guest-copy > p:first-of-type, .v-brand-copy > p:first-of-type { margin-top: 22px; }

/* ====== Guest Experience — paper bg ====== */
.v-guest {
  background: var(--paper);
  padding: 130px 0;
  position: relative;
}
.v-guest-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.v-guest-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 580px;
}
.v-guest-stage .phone {
  width: 250px;
  position: relative;
  z-index: 2;
  transform: rotate(-3deg);
}
.v-guest-stage .phone .phone-screen { height: 480px; padding: 18px 14px 18px; }
.v-guest-stage .phone-card { padding: 9px 12px; margin-bottom: 6px; }
.v-guest-stage .species { font-size: 13px; }
.v-guest-stage .latin { font-size: 10px; margin-bottom: 6px; }
.v-guest-stage .tag { font-size: 8px; padding: 2px 5px; }
.v-guest-stage .phone-foot { margin-top: 8px; font-size: 8.5px; }

.v-guest-stage .report-card {
  position: absolute;
  right: -8%;
  bottom: 6%;
  width: 280px;
  z-index: 1;
  transform: rotate(5deg);
  box-shadow: 0 30px 60px -20px rgba(43,28,14,.35);
}
@media (max-width: 980px) {
  .v-guest { padding: 90px 0; }
  .v-guest-grid { grid-template-columns: 1fr; gap: 48px; }
  .v-guest-stage { min-height: 520px; }
  .v-guest-stage .report-card { right: auto; left: 50%; transform: translateX(-30%) rotate(5deg); }
}

/* ====== Operations & Insight — brand-900 dark ====== */
.v-ops {
  background: var(--brand-900);
  color: var(--paper);
  padding: 140px 0 130px;
  position: relative;
  overflow: hidden;
}
.v-ops::before {
  content:'';
  position:absolute; inset:0;
  background-image:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='nv'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='4'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23nv)'/%3E%3C/svg%3E");
  pointer-events:none;
  mix-blend-mode: screen;
}
.v-ops-head { max-width: 760px; margin-bottom: 56px; }
.v-ops-head h2 { color: var(--gold-100); }
.v-ops-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.v-ops-copy p { font-size: 17px; line-height: 1.65; margin-bottom: 16px; color: var(--paper); opacity: .88; }
.v-ops-copy .v-kicker { opacity: 1; margin-top: 22px; }
.v-ops-meta {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(229, 203, 143, 0.22);
  display: grid;
  gap: 18px;
}
.v-ops-meta > div { display: grid; grid-template-columns: 120px 1fr; gap: 16px; align-items: baseline; }
.v-meta-lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 600;
}
.v-meta-val { font-family: var(--serif); font-size: 16px; color: var(--gold-100); line-height: 1.45; }
.v-ops-art { position: relative; }
.v-ops-art .dash {
  box-shadow: 0 50px 100px -30px rgba(0,0,0,.6), 0 12px 28px rgba(0,0,0,.3);
}
@media (max-width: 980px) {
  .v-ops { padding: 90px 0; }
  .v-ops-grid { grid-template-columns: 1fr; gap: 40px; }
  .v-ops-meta > div { grid-template-columns: 1fr; gap: 4px; }
}

/* ====== Brand & Growth — paper bg, chronicle visual ====== */
.v-brand {
  background: var(--paper);
  padding: 140px 0;
  position: relative;
}
.v-brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.v-brand-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 580px;
}
.chronicle {
  position: relative;
  width: 340px;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px;
  box-shadow: 0 50px 100px -30px rgba(43,28,14,.35), 0 12px 28px rgba(43,28,14,.18);
  transform: rotate(-2deg);
  z-index: 2;
}
.chronicle-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 10px;
  padding-left: 4px;
}
.chronicle-cover {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
}
.chronicle-cover svg { display:block; width:100%; height: auto; }
.chronicle-overlay {
  position: absolute;
  left: 22px;
  bottom: 60px;
  right: 22px;
  color: var(--paper);
}
.chronicle-eyebrow {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-100);
  display: block;
  margin-bottom: 8px;
}
.chronicle-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--paper);
  margin-bottom: 4px;
}
.chronicle-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold-100);
  opacity: .9;
}
.chronicle-rule { width: 32px; height: 1px; background: var(--gold-300); margin: 14px 0; }
.chronicle-meta {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-300);
}
.chronicle-brand {
  position: absolute;
  top: 18px;
  left: 22px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  color: var(--paper);
  text-shadow: 0 1px 2px rgba(0,0,0,.2);
}
.chronicle-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 6px 6px;
}
.chronicle-stats {
  display: flex;
  gap: 18px;
}
.chronicle-stats > div { display: flex; flex-direction: column; align-items: flex-start; }
.chronicle-stats .n {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1;
  color: var(--brand-900);
  letter-spacing: -.02em;
}
.chronicle-stats .l {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 4px;
}
.chronicle-share {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-700);
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 6px 10px;
  border-radius: 4px;
}
.chronicle-shadow {
  position: absolute;
  width: 280px;
  height: 380px;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: 6px;
  transform: rotate(4deg) translate(40px, 30px);
  z-index: 1;
  opacity: .7;
}
@media (max-width: 980px) {
  .v-brand { padding: 90px 0; }
  .v-brand-grid { grid-template-columns: 1fr; gap: 48px; }
  .v-brand-art { min-height: 520px; }
}

/* ============================================================
   MOBILE RESPONSIVE POLISH
   ============================================================ */
@media (max-width: 980px) {
  /* Reduce hero pin/chip extents */
  .hero { padding: 48px 0 64px; }
  h1.hero-title { margin-bottom: 24px; }
  .hero-sub { font-size: 17px; margin-bottom: 32px; }
  .hero-ctas { margin-bottom: 32px; }

  /* v-guest: stacked, no overlap on tablet-sized too */
  .v-guest { padding: 80px 0; }
  .v-guest-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    min-height: 0;
    padding: 0;
  }
  .v-guest-stage .phone {
    position: static;
    transform: none;
    width: 250px;
    z-index: 2;
  }
  .v-guest-stage .phone .phone-screen { height: 480px; padding: 18px 14px 18px; }
  .v-guest-stage .v-guest-report {
    position: static;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .v-guest-stage .report-card {
    position: static;
    width: 100%;
    max-width: 360px;
    right: auto;
    left: auto;
    bottom: auto;
    transform: rotate(-1deg);
    margin: 0;
  }

  /* v-ops: stack dashboard, slimmer */
  .v-ops { padding: 80px 0; }

  /* v-brand chronicle scale */
  .v-brand { padding: 80px 0; }
  .chronicle { width: 300px; transform: rotate(-2deg); }
  .chronicle-shadow { width: 240px; height: 340px; }

  /* compare, features */
  .features { padding: 80px 0; }
  .feature-row { margin-bottom: 64px; }

  /* CTA */
  .cta { padding: 96px 0 104px; }
}

@media (max-width: 760px) {
  .container { padding: 0 20px; }

  /* Topstrip: compact */
  .topstrip-inner { padding: 8px 0; }
  .topstrip-right a { font-size: 10px; }

  /* Nav */
  .nav-inner { padding: 14px 0; gap: 12px; }
  .brand-mark { height: 36px; }

  /* Hero */
  .hero { padding: 40px 0 56px; }
  .hero-tag { margin-bottom: 20px; }
  .hero-tag .pill { font-size: 10px; padding: 4px 10px; }
  .hero-ctas { gap: 12px; }
  .btn-lg { padding: 14px 22px; font-size: 14px; }
  .hero-art { min-height: 460px; max-width: 100%; margin: 0 auto; }
  .hero-card { max-width: 300px; }
  .hero-card-title { font-size: 19px; }
  .hero-card-sub { font-size: 12px; }
  .hero-card-log-row { grid-template-columns: 48px 1fr auto; font-size: 11px; }
  .hero-card-stamp { width: 64px; height: 64px; font-size: 7px; top: 12px; right: 12px; }
  .hero-card-stamp strong { font-size: 14px; }
  .hero-chip { font-size: 9px; padding: 6px 9px; }
  .hero-chip .val { font-size: 11px; }
  .hero-chip.c1 { top: 0; left: 0; }
  .hero-chip.c2 { top: 30%; right: 0; }
  .hero-chip.c3 { bottom: 0; left: 0; }

  /* Field gap */
  .gap { padding: 64px 0; }
  .gap-grid { gap: 24px; }
  .field-card { padding: 24px; }
  .field-card p { font-size: 17px; }

  /* v-guest */
  .v-guest { padding: 64px 0; }
  .v-guest-grid { gap: 36px; }
  .v-guest-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    min-height: 0;
    padding: 0;
  }
  .v-guest-stage .phone {
    position: static;
    transform: none;
    width: 240px;
    z-index: 2;
  }
  .v-guest-stage .phone .phone-screen { height: 460px; padding: 16px 12px; }
  .v-guest-stage .v-guest-report {
    position: static;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .v-guest-stage .report-card {
    position: static;
    width: 100%;
    max-width: 320px;
    right: auto;
    left: auto;
    bottom: auto;
    transform: rotate(-1deg);
    margin: 0;
  }
  .v-guest p, .v-brand-copy p { font-size: 16px; }
  .v-kicker { font-size: 17px; }

  /* v-ops */
  .v-ops { padding: 64px 0; }
  .v-ops-grid { gap: 32px; }
  .v-ops-art .dash { font-size: 11px; }
  .dash-body { grid-template-columns: 1fr; }
  .dash-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 12px;
  }
  .dash-side .side-label { grid-column: 1 / -1; margin: 4px 4px 4px; }
  .dash-side .side-item { margin-bottom: 0; }
  .dash-bar-tabs { gap: 10px; font-size: 10px; }
  .dash-bar-tabs .active::after { bottom: -12px; }
  .dash-stats { grid-template-columns: repeat(2, 1fr); }
  .dash-main { padding: 16px; }

  /* v-brand */
  .v-brand { padding: 64px 0; }
  .v-brand-grid { gap: 36px; }
  .v-brand-art { min-height: 480px; }
  .chronicle { width: 280px; }
  .chronicle-shadow { width: 220px; height: 320px; }
  .chronicle-title { font-size: 26px; }

  /* Tabbed showcase */
  .tabsection { padding: 64px 0; }
  .tabsection-head { margin-bottom: 32px; }
  .tabs-bar { width: 100%; max-width: 100%; flex-wrap: wrap; }
  .tab-btn { flex: 1 1 auto; padding: 10px 8px; font-size: 10px; letter-spacing: .1em; min-width: 0; }
  .tab-btn .tab-num { font-size: 12px; margin-right: 4px; }
  .tab-grid { gap: 36px; }
  .tab-h3 { margin-bottom: 14px; }
  .tab-lead { font-size: 16px; margin-bottom: 22px; }
  .tab-phone { width: 240px; }
  .tab-phone-screen { height: 460px; }

  /* Compare */
  .compare { padding: 64px 0; }
  .compare-head { margin-bottom: 36px; }
  .cmp-cell { padding: 16px 18px; font-size: 14px; }

  /* Features */
  .features { padding: 64px 0; }
  .feature-row { gap: 32px; margin-bottom: 48px; }
  .species-stack { max-width: 360px; }

  /* Builtfor */
  .builtfor { padding: 56px 0 48px; }
  .builtfor-head { margin-bottom: 24px; }
  .builtfor-grid { gap: 8px; }
  .bf-link { padding: 18px 10px 14px; gap: 10px; }
  .bf-name { font-size: 13px; }
  .bf-icon { width: 32px; height: 32px; }
  .bf-arrow { top: 8px; right: 8px; }

  /* CTA */
  .cta { padding: 64px 0 80px; }
  .cta p { font-size: 17px; margin-bottom: 28px; }
  .cta-pilot { padding: 14px 20px; gap: 12px; }
  .cta-pilot strong { font-size: 15px; }

  /* Footer */
  footer { padding: 48px 0 24px; }
  .foot-grid { gap: 28px; margin-bottom: 36px; }
  .foot-brand .name { font-size: 22px; }
  .foot-newsletter { max-width: 100%; }
}

@media (max-width: 480px) {
  .topstrip-left span { font-size: 9.5px; }
  .topstrip-left span:nth-child(2),
  .topstrip-left span:nth-child(3) { display: none; }

  /* Hero */
  .hero-tag { gap: 8px; }
  .hero-foot { gap: 14px; font-size: 10px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn-lg { justify-content: center; }
  .hero-ctas .btn-link { padding: 6px 0; }
  .hero-art { min-height: 420px; }
  .hero-card { max-width: 280px; }
  .hero-chip { font-size: 8.5px; padding: 5px 8px; }
  .hero-chip .val { font-size: 10.5px; }

  /* Field gap quote */
  .field-card p { font-size: 16px; }

  /* v-guest stage: stacked, no overlap */
  .v-guest-stage .phone { width: 220px; }
  .v-guest-stage .phone .phone-screen { height: 440px; padding: 14px 11px; }
  .v-guest-stage .report-card { max-width: 280px; }
  .report-stats .n { font-size: 22px; }

  /* v-ops */
  .dash-bar-left { font-size: 12px; }
  .dash-bar-tabs { display: none; }
  .dash-stats { grid-template-columns: 1fr 1fr; }
  .stat-val { font-size: 18px; }

  /* v-brand */
  .v-brand-art { min-height: 420px; }
  .chronicle { width: 240px; padding: 10px; }
  .chronicle-shadow { display: none; }
  .chronicle-title { font-size: 22px; }
  .chronicle-foot { padding: 10px 4px 4px; }
  .chronicle-stats { gap: 12px; }
  .chronicle-stats .n { font-size: 18px; }

  /* Tabs */
  .tab-btn { padding: 9px 6px; font-size: 9.5px; }
  .tab-btn .tab-num { font-size: 11px; margin-right: 3px; }
  .tab-phone { width: 220px; }
  .tab-phone-screen { height: 440px; padding: 18px 12px 16px; }
  .mini-dash { font-size: 11px; }
  .mini-exp { padding: 10px 12px; gap: 8px; }
  .mini-exp-name { font-size: 12px; }
  .mini-exp-stat { font-size: 15px; }

  /* Compare cells */
  .cmp-cell { padding: 14px 16px; font-size: 13.5px; line-height: 1.5; }

  /* CTA */
  .cta-ctas { flex-direction: column; align-items: stretch; }
  .cta-ctas .btn-lg { justify-content: center; }
  .cta-ctas .btn-link { text-align: center; }
  .cta-pilot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 18px 24px;
    border-radius: 16px;
    text-align: center;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  .cta-pilot .sep { display: none; }
  .cta-pilot strong { font-size: 16px; line-height: 1.3; }

  /* Eyebrow tightening */
  .eyebrow { gap: 10px; font-size: 10px; letter-spacing: .18em; }
  .eyebrow .eyebrow-num { font-size: 26px; }
  .eyebrow .eyebrow-lbl { max-width: 16ch; }

  /* Tabsection head */
  .tabsection-head h2 { font-size: 30px; }
  .compare-head h2, .gap h2 { font-size: 30px; }
  .v-guest h2, .v-ops-head h2, .v-brand h2 { font-size: 26px; }
  .cta h2 { font-size: 28px; }
}

@media (max-width: 380px) {
  .container { padding: 0 18px; }
  .topstrip { display: block; }
  .topstrip-inner { padding: 8px 0; }
  .brand-name { display: none; }
  .hero-card { max-width: 260px; }
  .hero-card-vignette { aspect-ratio: 5 / 3; }
  .builtfor-grid { grid-template-columns: 1fr; }
  .bf-link { flex-direction: row; text-align: left; gap: 14px; padding: 14px 16px; }
  .bf-icon { width: 28px; height: 28px; }
  .bf-name { font-size: 14px; max-width: 100%; }
  .bf-arrow { position: static; }
}

/* ============================================================
   JOURNEY — shared stage text styles (used by variations)
   ============================================================ */
.stop-phase {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 8px;
}
.stop-name {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.15;
  color: var(--brand-900);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.stop-sub {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-muted);
}
/* ============================================================
   JOURNEY MAP
   ============================================================ */
.jvF { position: relative; }
.jvF-bubbles {
  list-style: none;
  margin: 0 0 38px;
  padding: 0;
  display: grid;
  grid-template-columns: 28fr 40fr 32fr;
  align-items: end;
}
.jvF-bubble {
  position: relative;
  margin: 0 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
}
.jvF-bubble.is-fm { border-color: var(--brand-500); }
.jvF-bubble-region { display: none; }
/* downward pointer into the region */
.jvF-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px; height: 14px;
  background: var(--paper);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.jvF-bubble.is-fm::after { border-color: var(--brand-500); }
.jvF-rail {
  position: relative;
  display: grid;
  grid-template-columns: 28fr 40fr 32fr;
  padding-top: 20px;
}
.jvF-line {
  position: absolute;
  left: 0; right: 0; top: 20px;
  height: 2px;
  background: var(--line);
}
.jvF-line-fm {
  position: absolute;
  left: 28%; right: 0; top: 19px;
  height: 4px;
  background: var(--brand-500);
  border-radius: 2px;
}
.jvF-marker {
  position: absolute;
  top: 11px;
  width: 2px; height: 20px;
  background: var(--brand-700);
  z-index: 1;
}
.jvF-marker.m-start { left: 28%; }
.jvF-marker.m-end { left: 68%; }
.jvF-marker-label {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-700);
  font-weight: 500;
}
.jvF-region {
  text-align: center;
  padding-top: 34px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.jvF-region.r-during, .jvF-region.r-after { color: var(--brand-700); font-weight: 500; }

/* ----- Fieldmarks "zone" band (shared by F / F2 / F3) ----- */
.jvF-bubbles { position: relative; z-index: 1; }
.jvF-zone {
  position: absolute;
  left: 28%; right: -14px;
  top: -18px; bottom: 38px;
  background: linear-gradient(160deg, rgba(46,80,56,0.13), rgba(46,80,56,0.03));
  border: 1px solid var(--brand-500);
  border-radius: 14px;
  z-index: 0;
}
.jvF-zone-badge {
  position: absolute;
  top: -12px; left: 24px;
  background: var(--brand-700);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 4px;
}
.jvF--anim .jvF-bubble.is-fm {
  box-shadow: 0 12px 28px -18px rgba(46,80,56,0.55);
}

/* ----- F2 animation ----- */
@media (prefers-reduced-motion: no-preference) {
  .jvF--anim .jvF-zone { animation: jvfGlow 3.4s ease-in-out infinite; }
  @keyframes jvfGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(77,102,82,0); }
    50% { box-shadow: 0 0 26px -2px rgba(77,102,82,0.30); }
  }
  .jvF--anim .jvF-line-fm { overflow: hidden; }
  .jvF-pulse {
    position: absolute; top: 0; left: 0; height: 100%; width: 46px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.85), transparent);
    animation: jvfFlow 2.6s linear infinite;
  }
  @keyframes jvfFlow {
    0% { transform: translateX(-46px); }
    100% { transform: translateX(620px); }
  }
  .jvF--anim .jvF-marker::after {
    content: '';
    position: absolute;
    left: 50%; top: -5px;
    width: 12px; height: 12px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: var(--brand-500);
    animation: jvfPing 2.4s ease-out infinite;
  }
  @keyframes jvfPing {
    0% { box-shadow: 0 0 0 0 rgba(77,102,82,0.5); }
    70%, 100% { box-shadow: 0 0 0 10px rgba(77,102,82,0); }
  }
}
.jvF--anim .jvF-bubble.is-fm { transition: transform .3s ease, box-shadow .3s ease; }
.jvF--anim .jvF-bubble.is-fm:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 38px -16px rgba(46,80,56,0.55);
}
.jvF--anim:hover .jvF-zone {
  background: linear-gradient(160deg, rgba(46,80,56,0.2), rgba(46,80,56,0.06));
  box-shadow: 0 0 30px -2px rgba(77,102,82,0.4);
  animation: none;
}


@media (max-width: 760px) {
  .jvF-zone { display: none; }

  /* stack bubbles with region headings as labels */
  .jvF-bubbles { grid-template-columns: 1fr; gap: 18px; margin-bottom: 0; }
  .jvF-bubble { margin: 0; }
  .jvF-bubble::after { display: none; }
  .jvF-bubble-region {
    display: block;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 8px;
  }
  .jvF-bubble.is-fm .jvF-bubble-region { color: var(--brand-700); font-weight: 500; }
  .jvF-rail { display: none; }
}
