:root {
  --bg: #0b1210;
  --ink: #f0fffa;
  --muted: rgba(240, 255, 250, 0.62);
  --card: rgba(255, 255, 255, 0.07);
  --card-solid: #131f1a;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.16);
  --accent: #00c49a;
  --accent-hot: #2ee4b8;
  --accent-ink: #04241c;
  --creative: #a78bfa;
  --creative-hot: #c4b5fd;
  --warn: #fbbf24;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.25), 0 22px 48px rgba(0, 0, 0, 0.35);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2), 0 10px 24px rgba(0, 0, 0, 0.22);
  --radius: 20px;
  --radius-sm: 12px;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --sans: "Outfit", "Segoe UI", system-ui, sans-serif;
  --brand: "Fraunces", Georgia, serif;
  --nav-bg: rgba(7, 17, 14, 0.92);
  --nav-ink: #f0fffa;
  --hero-dark: #0b1210;
  --table-head-bg: #0a1f19;
  --table-row-alt: rgba(255, 255, 255, 0.04);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  background:
    radial-gradient(900px 480px at 80% -10%, rgba(0, 196, 154, 0.1) 0%, transparent 55%),
    radial-gradient(700px 400px at 0% 0%, rgba(0, 196, 154, 0.05) 0%, transparent 50%),
    var(--bg);
  min-height: 100vh;
}
a { color: var(--accent-hot); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: #7af0d4; }

.site-wrap { max-width: 1080px; margin: 0 auto; padding: 0 1.4rem 4rem; }
.hero-stage + .site-wrap { padding-top: 2.5rem; }

/* —— Nav —— */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: sticky;
  top: 0.65rem;
  z-index: 50;
  margin: 1rem 0 0;
  padding: 0.65rem 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px) saturate(1.2);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.site-nav.dark {
  background: var(--nav-bg);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 12px 40px rgba(7, 17, 14, 0.28);
}
.site-nav.dark .brand { color: var(--nav-ink); }
.site-nav.dark .nav-links a { color: rgba(240, 255, 250, 0.75); }
.site-nav.dark .nav-links a:hover,
.site-nav.dark .nav-links a.active { color: #fff; background: rgba(255,255,255,0.08); }
.brand {
  font-family: var(--brand);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  padding: 0.15rem 0.45rem;
}
.brand span { font-weight: 500; opacity: 0.72; font-size: 0.85em; }
.nav-links { display: flex; gap: 0.15rem; flex-wrap: wrap; align-items: center; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover { color: var(--ink); background: rgba(255, 255, 255, 0.08); }
.nav-links a.active { color: var(--accent-hot); font-weight: 600; }
.nav-toggle {
  display: none;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.65rem;
  font: inherit;
  cursor: pointer;
}
@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--card-solid);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0.75rem;
    box-shadow: var(--shadow);
  }
  .site-nav.open .nav-links { display: flex; }
  .site-nav { position: relative; border-radius: var(--radius); flex-wrap: wrap; }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border: none;
  border-radius: 999px;
  padding: 0.72rem 1.35rem;
  background: var(--accent-hot);
  color: #04241c;
  font: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0, 196, 154, 0.35);
  transition: transform 0.15s, background 0.15s;
}
.btn:hover { background: #1ad4a8; transform: translateY(-1px); color: #04241c; }
.btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  box-shadow: none;
  font-weight: 600;
}
.btn.secondary:hover { border-color: var(--accent-hot); color: var(--accent-hot); }
.btn.creative {
  background: var(--creative-hot);
  color: #fff;
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.35);
}
.btn.creative:hover { background: #8b5cf6; color: #fff; }
.btn.ghost-on-hero {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: none;
}
.btn.ghost-on-hero:hover { background: rgba(255,255,255,0.22); color: #fff; }

/* Primary/secondary buttons must win over nav & inline link colours */
a.btn,
button.btn {
  color: #04241c;
  text-decoration: none;
}
a.btn:hover,
button.btn:hover {
  color: #04241c;
}
a.btn.secondary,
button.btn.secondary {
  color: var(--ink);
}
a.btn.secondary:hover,
button.btn.secondary:hover {
  color: var(--accent-hot);
}
a.btn.creative,
button.btn.creative,
a.btn.creative:hover,
button.btn.creative:hover {
  color: #fff;
}
a.btn.ghost-on-hero,
button.btn.ghost-on-hero,
a.btn.ghost-on-hero:hover,
button.btn.ghost-on-hero:hover {
  color: #fff;
}
.hero-stage .site-nav-hero .nav-links a.btn,
.hero-stage .site-nav-hero .nav-links a.btn:hover,
.hero-stage .site-nav-hero .nav-links a.btn:focus-visible {
  color: #04241c;
  background: var(--accent-hot);
  text-decoration: none;
}
.hero-stage .site-nav-hero .nav-links a.btn:hover {
  background: #1ad4a8;
}

/* —— Hero shell (home + inner pages) —— */
.hero-stage {
  position: relative;
  min-height: 88vh;
  min-height: 88dvh;
  display: flex;
  flex-direction: column;
  margin: 0;
  width: 100%;
  overflow: hidden;
}
.hero-stage--page {
  min-height: min(48vh, 480px);
  min-height: min(48dvh, 480px);
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  filter: grayscale(0.28) brightness(0.82) contrast(1.06) saturate(0.9);
  animation: hero-drift 24s ease-in-out infinite alternate;
}
.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(11, 18, 16, 0.28) 0%, rgba(11, 18, 16, 0.1) 45%, rgba(11, 18, 16, 0.42) 100%),
    radial-gradient(ellipse 75% 60% at 50% 48%, rgba(6, 122, 98, 0.1) 0%, transparent 68%);
  pointer-events: none;
}
@keyframes hero-drift {
  from { transform: scale(1) translateY(0); }
  to { transform: scale(1.04) translateY(-1%); }
}
.hero-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.5rem 0.5rem;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
}
.hero-top .brand { color: #f2fffb; font-size: clamp(1.5rem, 3vw, 2rem); }
.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 1rem 1.5rem 3rem;
}
.kicker {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-inner .kicker {
  color: rgba(242, 255, 251, 0.55);
}
.hero-inner h1 {
  margin: 0 0 0.75rem;
  color: #fff;
  font-family: var(--brand);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
  max-width: 16ch;
}
.hero-lede {
  margin: 0 0 1.25rem;
  color: rgba(242, 255, 251, 0.78);
  font-size: 1.1rem;
  max-width: 36rem;
}
.hero-inner a:not(.btn) {
  color: rgba(153, 246, 228, 0.92);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.hero-inner a:not(.btn):hover { color: #fff; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-bottom: 2rem; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-width: 32rem;
}
.hero-stat {
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
}
.hero-stat strong {
  display: block;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}
.hero-stat span { font-size: 0.78rem; color: rgba(242,255,251,0.6); }
.hero-inner--compact {
  padding: 0.5rem 1.5rem 2.5rem;
}
.hero-inner--compact h1 {
  max-width: none;
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
}
.hero-inner--compact .hero-lede {
  margin-bottom: 0;
  max-width: 40rem;
}
@media (max-width: 600px) {
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stage:not(.hero-stage--page) { min-height: auto; padding-bottom: 2rem; }
  .hero-stage--page { min-height: auto; padding-bottom: 1.5rem; }
}

/* —— Scene cards —— */
.scene-grid {
  display: grid;
  gap: 0.95rem;
  margin: 2rem 0;
}
@media (min-width: 800px) {
  .scene-grid.three { grid-template-columns: repeat(3, 1fr); }
  .scene-grid.two { grid-template-columns: repeat(2, 1fr); }
}
.scene-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  cursor: pointer;
  text-align: left;
  font: inherit;
  width: 100%;
}
button.scene-card { border: 1px solid var(--line); }
.scene-card:hover {
  transform: translateY(-4px);
  border-color: rgba(13, 107, 88, 0.28);
  box-shadow: var(--shadow);
}
.scene-visual {
  height: 7rem;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s;
  position: relative;
}
.scene-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 20, 16, 0.15), rgba(4, 20, 16, 0.45));
}
.scene-card:hover .scene-visual { transform: scale(1.03); }
.scene-visual.build { background-image: linear-gradient(135deg, rgba(4, 111, 90, 0.35), rgba(4, 111, 90, 0.35)), url("heroes/hero-work.jpg"); }
.scene-visual.ship { background-image: linear-gradient(135deg, rgba(30, 58, 95, 0.35), rgba(30, 58, 95, 0.35)), url("heroes/hero-home.jpg"); }
.scene-visual.create { background-image: linear-gradient(135deg, rgba(91, 33, 182, 0.35), rgba(91, 33, 182, 0.35)), url("heroes/hero-create.jpg"); }
.scene-visual.launch { background-image: linear-gradient(135deg, rgba(15, 118, 110, 0.35), rgba(15, 118, 110, 0.35)), url("heroes/hero-home.jpg"); }
.scene-visual.grow { background-image: linear-gradient(135deg, rgba(29, 78, 216, 0.3), rgba(29, 78, 216, 0.3)), url("heroes/hero-work.jpg"); }
.scene-visual.vertical { background-image: linear-gradient(135deg, rgba(109, 40, 217, 0.35), rgba(109, 40, 217, 0.35)), url("heroes/hero-create.jpg"); }
.scene-visual.monitor { background-image: linear-gradient(135deg, rgba(13, 107, 88, 0.4), rgba(13, 107, 88, 0.4)), url("heroes/hero-monitor.jpg"); }
.scene-body { padding: 1rem 1.15rem 1.2rem; }
.scene-fromto {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.scene-fromto em { font-style: normal; opacity: 0.8; }
.scene-body h2, .scene-body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.scene-body p { margin: 0; font-size: 0.92rem; color: var(--muted); }
.scene-cta {
  margin-top: 0.65rem;
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-hot);
}
.scene-price {
  margin-top: 0.5rem;
  font-weight: 700;
  color: var(--accent);
  font-size: 1.05rem;
}

/* —— Sections —— */
section.block { margin: 3.5rem 0; }
.section-head { margin-bottom: 1.5rem; }
.section-head h2 {
  margin: 0 0 0.45rem;
  font-family: var(--brand);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  letter-spacing: -0.03em;
}
.section-head p { margin: 0; color: var(--muted); max-width: 40rem; }
.panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}
.panel.highlight { border-left: 4px solid var(--accent-hot); }
.panel.creative { border-left: 4px solid var(--creative-hot); }

/* —— Page hero (inner pages) —— */
.page-hero {
  margin: 1.5rem 0 2rem;
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(4, 36, 28, 0.95), rgba(13, 107, 88, 0.88));
  color: #f0fffa;
  box-shadow: var(--shadow);
}
.page-hero-split {
  display: grid;
  gap: 1.25rem;
  padding: 0;
  overflow: hidden;
  background: var(--card);
  color: var(--ink);
  border: 1px solid var(--line);
}
@media (min-width: 768px) {
  .page-hero-split {
    grid-template-columns: minmax(9rem, 38%) 1fr;
    align-items: stretch;
  }
}
.page-hero-visual {
  min-height: 9rem;
  background-size: cover;
  background-position: center;
}
.page-hero-copy {
  padding: 1.5rem 1.75rem 1.75rem;
}
.page-hero-copy .kicker { color: var(--muted); }
.page-hero-copy h1 {
  margin: 0 0 0.5rem;
  font-family: var(--brand);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  letter-spacing: -0.03em;
  color: var(--ink);
}
.page-hero-copy p { margin: 0; color: var(--muted); max-width: 42rem; }
.page-hero h1 {
  margin: 0 0 0.5rem;
  font-family: var(--brand);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  letter-spacing: -0.03em;
}
.page-hero p { margin: 0; opacity: 0.85; max-width: 42rem; }

/* —— Curated journey strip —— */
.journey-strip {
  display: grid;
  gap: 0.85rem;
  margin: 2rem 0;
}
@media (min-width: 720px) {
  .journey-strip { grid-template-columns: repeat(3, 1fr); }
}
.journey-step {
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow-sm);
}
.journey-step .step-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}
.journey-step h3 { margin: 0 0 0.35rem; font-size: 1.05rem; }
.journey-step p { margin: 0; font-size: 0.9rem; color: var(--muted); }
.journey-step .step-link { margin-top: 0.75rem; }
.journey-step .step-link a { font-weight: 600; }
.visitor-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  padding: 1.25rem 1.5rem;
}
.visitor-cta strong { font-size: 1.05rem; }

.page-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  margin: 0 0 0.25rem;
  padding: 0.85rem 0 1rem;
  border-bottom: 1px solid var(--line);
}
.page-subnav a:not(.btn) {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.page-subnav a:not(.btn):hover { color: var(--ink); background: rgba(255, 255, 255, 0.06); }
.page-subnav a.btn {
  margin-left: auto;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}
@media (max-width: 560px) {
  .page-subnav a.btn { margin-left: 0; width: 100%; }
  .visitor-cta .btn { width: 100%; text-align: center; }
}

/* —— Package cards (outcomes first, price secondary) —— */
.package-grid {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}
@media (min-width: 800px) {
  .package-grid.three { grid-template-columns: repeat(3, 1fr); }
}
.package-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow-sm);
}
.package-card h3 { margin: 0 0 0.5rem; font-size: 1.15rem; }
.package-card p { margin: 0 0 0.75rem; color: var(--muted); font-size: 0.92rem; }
.package-card .package-meta {
  font-size: 0.82rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 0.75rem;
  margin-top: 0.5rem;
}
.package-card .package-meta a { font-weight: 600; }
.pricing-section { scroll-margin-top: 5rem; }
.pricing-section .note { margin-top: 1rem; }

/* —— Pricing table —— */
table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: var(--card);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin: 1rem 0;
}
table.data th, table.data td {
  border: 1px solid var(--line);
  padding: 0.6rem 0.75rem;
  text-align: left;
  vertical-align: top;
}
table.data th { background: var(--table-head-bg); color: var(--ink); font-weight: 600; }
table.data td.num { text-align: right; white-space: nowrap; }
table.data tr:nth-child(even) td { background: var(--table-row-alt); }
.tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  background: rgba(0, 196, 154, 0.18);
  color: var(--accent-hot);
}
.tag.founding { background: rgba(251, 191, 36, 0.18); color: #fcd34d; }
.tag.soon { background: rgba(167, 139, 250, 0.18); color: #c4b5fd; }

/* —— Timeline —— */
.timeline { position: relative; padding-left: 1.5rem; border-left: 2px solid var(--line-strong); }
.timeline-item { position: relative; margin-bottom: 1.75rem; padding-left: 0.5rem; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.85rem;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-hot);
  border: 2px solid var(--bg);
}
.timeline-item h3 { margin: 0 0 0.25rem; font-size: 1rem; }
.timeline-item p { margin: 0; font-size: 0.92rem; color: var(--muted); }
.timeline-item .year {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 500;
}

/* —— Channel funnel cards —— */
.funnel-grid {
  display: grid;
  gap: 1rem;
  margin: 1.25rem 0;
}
@media (min-width: 700px) {
  .funnel-grid { grid-template-columns: repeat(2, 1fr); }
}
.funnel-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.funnel-card h3 { margin: 0 0 0.35rem; font-size: 1.05rem; }
.funnel-card .channel-url {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--accent);
  word-break: break-all;
}
.funnel-card ul { margin: 0.5rem 0 0; padding-left: 1.15rem; font-size: 0.9rem; color: var(--muted); }
.funnel-card li { margin-bottom: 0.3rem; }
.priority-high { border-left: 4px solid var(--accent-hot); }
.priority-mid { border-left: 4px solid #3b82f6; }
.priority-long { border-left: 4px solid var(--creative-hot); }

/* —— Boost rankings task cards —— */
.boost-task-index { margin: 1.5rem 0; }
.boost-task-index td a { font-weight: 600; }
.boost-task {
  margin-bottom: 1.25rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--card);
  box-shadow: var(--shadow-sm);
}
.boost-task.priority-high { border-left: 4px solid var(--accent-hot); }
.boost-task.priority-mid { border-left: 4px solid #3b82f6; }
.boost-task.priority-low { border-left: 4px solid var(--muted); }
.boost-task.done { opacity: 0.72; }
.boost-task-head { margin-bottom: 1rem; }
.boost-task-head h3 { margin: 0.35rem 0 0.5rem; font-size: 1.15rem; }
.boost-task-id {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
}
.boost-task-meta {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}
.boost-task-body h4 {
  margin: 1rem 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}
.boost-task-body h4:first-child { margin-top: 0; }
.boost-task-body p,
.boost-task-body li {
  margin: 0 0 0.4rem;
  font-size: 0.92rem;
  color: var(--muted);
}
.boost-task-body ol,
.boost-task-body ul {
  margin: 0.25rem 0 0.5rem;
  padding-left: 1.25rem;
}
.boost-task-body .done-when {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(46, 228, 184, 0.08);
  border: 1px solid rgba(46, 228, 184, 0.25);
}
.boost-task-body .done-when p { margin: 0; color: var(--ink); }
.boost-delegate-table td:first-child { white-space: nowrap; }

/* —— Social strip —— */
.social-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1rem 0;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.15s, transform 0.15s;
}
.social-link:hover { border-color: var(--accent); transform: translateY(-1px); color: var(--accent); }

/* —— Dialog —— */
.phase-dialog {
  border: none;
  padding: 0;
  max-width: min(52rem, 96vw);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.phase-dialog::backdrop {
  background: rgba(7, 17, 14, 0.72);
  backdrop-filter: blur(6px);
}
.phase-dialog-inner {
  display: grid;
  background: var(--card-solid);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (min-width: 640px) {
  .phase-dialog-inner { grid-template-columns: 0.85fr 1.15fr; min-height: 22rem; }
}
.phase-dialog-visual {
  min-height: 10rem;
  background-size: cover;
  background-position: center;
}
.phase-dialog-body { position: relative; padding: 1.35rem 1.4rem 1.5rem; }
.phase-close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}
.phase-steps { margin: 0.75rem 0; padding-left: 1.25rem; font-size: 0.92rem; }
.phase-steps li { margin-bottom: 0.35rem; }
.meta { font-size: 0.85rem; color: var(--muted); }

/* —— Footer —— */
.site-foot {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--muted);
}
.site-foot-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 700px) {
  .site-foot-grid { grid-template-columns: 2fr 1fr 1fr; }
}
.site-foot h4 { margin: 0 0 0.5rem; color: var(--ink); font-size: 0.85rem; }
.site-foot ul { list-style: none; padding: 0; margin: 0; }
.site-foot li { margin-bottom: 0.35rem; }
.site-foot a { color: var(--muted); }
.site-foot a:hover { color: var(--accent); }
.foot-legal { font-size: 0.78rem; opacity: 0.85; }

/* —— Booking embed —— */
.booking-section { text-align: center; }
.booking-section .lede { margin-left: auto; margin-right: auto; }
.booking-embed-wrap {
  margin: 1.5rem 0 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card-solid);
  box-shadow: var(--shadow-sm);
  min-height: 680px;
}
.booking-embed-wrap iframe,
.booking-embed-wrap .calendly-inline-widget {
  display: block;
  width: 100%;
  min-width: 320px;
  height: 680px;
  border: 0;
}
.booking-fallback {
  padding: 2rem 1.5rem;
}
.booking-fallback.is-hidden { display: none; }
.booking-embed-wrap.is-hidden { display: none; }
.booking-provider-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.75rem;
}
.booking-provider-note a { color: var(--muted); text-decoration: underline; }

.booking-lead { max-width: 28rem; margin: 0 auto; text-align: left; }
.booking-lead-fields {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}
@media (min-width: 520px) {
  .booking-lead-fields {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .booking-lead-fields .btn { grid-column: 1 / -1; }
  .booking-field--wide { grid-column: 1 / -1; }
}
.booking-field input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
}
.booking-field input::placeholder { color: var(--muted); opacity: 0.85; }
.booking-field input:focus {
  outline: 2px solid var(--accent-hot);
  outline-offset: 1px;
  border-color: var(--accent-hot);
}
.booking-lead-alt { text-align: center; margin: 0; }
.booking-hours-note {
  text-align: center;
  line-height: 1.55;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.book-stick {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
  background: rgba(7, 17, 14, 0.96);
  border-top: 1px solid var(--line-strong);
  backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
  transform: translateY(110%);
  transition: transform 0.22s ease;
  pointer-events: none;
}
.book-stick.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}
.book-stick .btn {
  width: 100%;
  justify-content: center;
}
@media (max-width: 760px) {
  .book-stick { display: block; }
  body.has-book-stick { padding-bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px)); }
}

.hero-stat span a {
  color: rgba(153, 246, 228, 0.85);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}
.hero-stat span a:hover { color: #fff; }

/* —— Nav over photo hero (Bridge-style) —— */
.hero-stage .site-nav-hero {
  position: relative;
  z-index: 3;
  margin: 1rem 1.5rem 0;
  max-width: 1120px;
  width: calc(100% - 3rem);
  align-self: center;
  border-radius: 999px;
  background: rgba(7, 17, 14, 0.42);
  backdrop-filter: blur(14px) saturate(1.15);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 40px rgba(7, 17, 14, 0.22);
}
.hero-stage .site-nav-hero .brand { color: var(--nav-ink); }
.hero-stage .site-nav-hero .nav-links a:not(.btn) { color: rgba(240, 255, 250, 0.82); }
.hero-stage .site-nav-hero .nav-links a:not(.btn):hover,
.hero-stage .site-nav-hero .nav-links a:not(.btn).active { color: #fff; background: rgba(255,255,255,0.1); }
.hero-stage .site-nav-hero .nav-toggle {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
@media (max-width: 760px) {
  .hero-stage .site-nav-hero {
    margin: 0.75rem 1rem 0;
    width: calc(100% - 2rem);
    border-radius: var(--radius);
  }
  .hero-stage .site-nav-hero .nav-links {
    background: rgba(7, 17, 14, 0.94);
    border-color: rgba(255, 255, 255, 0.12);
  }
  .hero-stage .site-nav-hero .nav-links a:not(.btn) { color: rgba(240, 255, 250, 0.88); }
}
.hero-top { display: none; }

/* —— FAQ —— */
.faq-list { display: grid; gap: 0.65rem; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.85rem 1rem;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-weight: 700;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-body {
  padding: 0 1rem 0.85rem;
  color: var(--muted);
  font-size: 0.92rem;
  border-top: 1px solid var(--line);
}

/* —— Media / screenshots —— */
.media-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 760px) {
  .media-grid.two { grid-template-columns: 1fr 1fr; }
}
.media-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.media-card figcaption {
  padding: 0.65rem 0.85rem;
  font-size: 0.82rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.media-card img,
.media-card video {
  display: block;
  width: 100%;
  height: auto;
  background: #0f172a;
}
.product-shot-frame {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
  pointer-events: none;
  transform-origin: top left;
}
.study-shot {
  margin: 0.75rem 0 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #060a09;
}
.study-shot img,
.study-shot video {
  display: block;
  width: 100%;
}
.study-shot iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: 0;
  background: #060a09;
}
.study-shot--cinema iframe {
  height: 360px;
}
.study-shot--compact iframe {
  height: 220px;
}

/* —— Utility —— */
.lede { color: var(--muted); max-width: 42rem; }
.row { display: flex; flex-wrap: wrap; gap: 0.65rem; align-items: center; }
.note { font-size: 0.85rem; color: var(--muted); margin-top: 0.5rem; }
.two-col {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 800px) {
  .two-col { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, .hero-backdrop { animation: none !important; transition: none !important; }
}
