/* ==========================================================================
   Gomry — business.gomry.com
   Design system
   --------------------------------------------------------------------------
   Type:   Inter Tight (display) + Inter (body)  — SF Pro Display/Text alt
   Color:  white + warm off-white + terracotta accent + sun-gold secondary
   Mood:   golden hour, premium outdoor lifestyle, Apple-clean frame
   ========================================================================== */

:root {
  /* surfaces */
  --bg:        #FFFFFF;
  --bg-warm:   #FAF7F2;     /* alt section */
  --bg-ui:     #F5F5F7;     /* product UI backdrop */
  --bg-ink:   #0A0A0A;
  --line:      #E8E4DC;
  --line-strong: #D8D3C8;

  /* type */
  --ink:        #0A0A0A;
  --body:       #3A3A3A;
  --muted:      #6A6A6A;
  --on-dark:    #FFFFFF;
  --on-dark-2:  rgba(255,255,255,0.72);

  /* accents (used sparingly) */
  --primary:    oklch(0.55 0.10 225);    /* gomry blue-teal — main */
  --primary-ink: oklch(0.42 0.10 230);
  --secondary:  oklch(0.68 0.17 48);     /* orange — accents/details */
  --secondary-ink: oklch(0.50 0.16 42);
  --accent: var(--secondary);
  --positive:   oklch(0.62 0.12 165);    /* sea-foam success */

  /* layout */
  --maxw: 1280px;
  --gutter: clamp(20px, 4vw, 48px);

  /* type scale */
  --display: "Inter Tight", "SF Pro Display", "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  --text:    "Inter", "SF Pro Text", system-ui, -apple-system, Segoe UI, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--text);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 17px;
  line-height: 1.5;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- Type ---------- */
.h-display, .h1, .h2, .h3, .eyebrow {
  font-family: var(--display);
  letter-spacing: -0.02em;
  color: var(--ink);
}
.h1 {
  font-size: clamp(56px, 7.6vw, 108px);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.035em;
}
.h2 {
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.h3 {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.h4 {
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.eyebrow {
  font-family: var(--text);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--primary-ink);
}
.lede {
  font-size: clamp(19px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--body);
  max-width: 60ch;
}
.body { color: var(--body); font-size: 19px; line-height: 1.55; }
.muted { color: var(--muted); }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.section { padding: clamp(80px, 12vw, 160px) 0; }
.section-tight { padding: clamp(56px, 7vw, 100px) 0; }
.warm { background: var(--bg-warm); }
.ink-bg { background: var(--bg-ink); color: var(--on-dark); }
.ink-bg .h1, .ink-bg .h2, .ink-bg .h3, .ink-bg .h4 { color: var(--on-dark); }
.ink-bg .body, .ink-bg .lede { color: var(--on-dark-2); }
.ink-bg .muted { color: rgba(255,255,255,0.55); }

/* ---------- Pills, badges ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--bg-warm);
  color: var(--primary-ink);
  border: 1px solid var(--line);
}
.pill.dark {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
}
.pill.live::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--positive);
  box-shadow: 0 0 0 0 var(--positive);
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 oklch(0.62 0.13 152 / 0.6); }
  70% { box-shadow: 0 0 0 8px oklch(0.62 0.13 152 / 0); }
  100% { box-shadow: 0 0 0 0 oklch(0.62 0.13 152 / 0); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  font-family: var(--text);
  letter-spacing: -0.01em;
  transition: transform .18s ease, background .2s ease, color .2s ease, opacity .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover { background: var(--primary-ink); }
.btn-primary:active { transform: scale(0.98); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 14px 6px;
}
.btn-ghost:hover { color: var(--primary-ink); }
.btn-ghost .chev { transition: transform .2s ease; }
.btn-ghost:hover .chev { transform: translateX(4px); }
.btn-on-dark { background: #fff; color: var(--bg-ink); }
.btn-on-dark:hover { background: #f0eee9; }
.btn-ghost-on-dark { color: #fff; }
.btn-ghost-on-dark:hover { color: rgba(255,255,255,0.78); }

.cta-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
  padding-top: 10px;
}
.nav .nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px var(--gutter);
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.18);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.28), rgba(255,255,255,0.1) 48%, rgba(255,255,255,0.2)),
    linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0.08));
  backdrop-filter: saturate(165%) blur(18px);
  -webkit-backdrop-filter: saturate(165%) blur(18px);
  box-shadow:
    0 18px 40px -22px rgba(8, 8, 8, 0.65),
    inset 0 1px 0 rgba(255,255,255,0.42),
    inset 0 -1px 0 rgba(255,255,255,0.12);
  overflow: visible;
}
.nav .nav-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 12% -65%, rgba(255,255,255,0.7), rgba(255,255,255,0) 54%),
    radial-gradient(circle at 92% 180%, rgba(255,255,255,0.24), rgba(255,255,255,0) 58%);
  pointer-events: none;
}
.nav .nav-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.14);
  pointer-events: none;
}
.nav .nav-inner > * {
  position: relative;
  z-index: 1;
}
.nav.over-dark { color: #fff; }
.nav.over-dark .nav-inner {
  background:
    linear-gradient(135deg, rgba(34,34,34,0.34), rgba(34,34,34,0.18) 48%, rgba(34,34,34,0.26)),
    linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.08));
  border-color: rgba(255,255,255,0.2);
}
.nav.solid {
  background: transparent;
  border-bottom-color: transparent;
  color: var(--ink);
}
.nav.solid .nav-inner {
  border-color: rgba(255,255,255,0.56);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.76), rgba(255,255,255,0.56) 48%, rgba(255,255,255,0.7)),
    linear-gradient(180deg, rgba(255,255,255,0.54), rgba(255,255,255,0.4));
  box-shadow:
    0 20px 42px -24px rgba(10,10,10,0.36),
    inset 0 1px 0 rgba(255,255,255,0.72),
    inset 0 -1px 0 rgba(255,255,255,0.34);
}
.nav .logo {
  display: inline-flex;
  align-items: center;
  align-self: center;
  line-height: 0;
}
.nav .logo .logo-img {
  height: 23px;
  width: auto;
  display: block;
  transform: translateY(2px);
}
.nav .logo .logo-light { display: none; }
.nav.over-dark .logo .logo-dark { display: none; }
.nav.over-dark .logo .logo-light { display: block; }
.nav .links { display: flex; gap: 28px; align-items: center; flex: 1; }
.nav .links a {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.86;
  transition: opacity .15s ease, background .2s ease, color .2s ease;
  display: inline-flex; align-items: center; gap: 4px;
  position: relative;
  border-radius: 999px;
  padding: 8px 10px;
}
.nav .links a:hover {
  opacity: 1;
  background: rgba(255,255,255,0.24);
}
.nav .links a.active::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: -2px;
  height: 2px; background: var(--primary);
}
.nav .right { display: flex; gap: 18px; align-items: center; }
.nav .right .btn {
  padding: 10px 16px; font-size: 14px;
}
.nav .signin { font-size: 14px; font-weight: 500; opacity: 0.86; }
.nav .right .btn-primary {
  box-shadow: 0 10px 18px -12px rgba(10,10,10,0.6);
}

/* Mobile burger + drawer */
.nav-burger {
  display: none;
  background: none; border: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 0;
  margin-left: auto;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: currentColor; border-radius: 2px;
  transition: opacity .2s;
}
body.nav-locked { overflow: hidden; }

.mobile-drawer {
  position: fixed; inset: 0; z-index: 200;
  pointer-events: none;
  visibility: hidden;
}
.mobile-drawer.open { visibility: visible; pointer-events: auto; }
.mobile-drawer .md-scrim {
  position: absolute; inset: 0;
  background: rgba(15, 14, 12, 0.42);
  opacity: 0; transition: opacity .25s ease;
}
.mobile-drawer.open .md-scrim { opacity: 1; }
.mobile-drawer .md-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(360px, 88vw);
  background: #fff;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .28s cubic-bezier(.32,.72,.34,1);
  box-shadow: -20px 0 60px -20px rgba(0,0,0,0.25);
}
.mobile-drawer.open .md-panel { transform: translateX(0); }
.md-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; border-bottom: 1px solid var(--line);
}
.md-close {
  width: 40px; height: 40px;
  border: 1px solid var(--line); border-radius: 50%;
  background: #fff; display: grid; place-items: center;
  color: var(--ink); cursor: pointer;
}
.md-nav {
  flex: 1; overflow-y: auto;
  padding: 18px 14px;
  display: flex; flex-direction: column; gap: 2px;
}
.md-section-title {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
  padding: 8px 12px 6px;
}
.md-prod {
  display: flex; align-items: center; gap: 12px;
  padding: 12px; border-radius: 12px;
  color: var(--ink); text-decoration: none;
  font-size: 15px; font-weight: 500;
}
.md-prod:hover { background: var(--bg-warm); }
.md-prod .ic {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--bg-warm); display: grid; place-items: center;
  color: var(--primary-ink);
}
.md-pill {
  display: inline-block; margin-left: 6px;
  padding: 2px 7px; border-radius: 999px;
  background: var(--bg-warm); border: 1px solid var(--line);
  font-size: 10px; font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.md-divider { height: 1px; background: var(--line); margin: 12px 8px; }
.md-link {
  padding: 14px 12px; border-radius: 10px;
  font-size: 16px; font-weight: 500; color: var(--ink);
  text-decoration: none;
}
.md-link:hover { background: var(--bg-warm); }
.md-foot {
  padding: 18px 22px;
  border-top: 1px solid var(--line);
  display: grid; gap: 12px; justify-items: center;
}
.md-signin { font-size: 14px; color: var(--body); text-decoration: none; }

@media (max-width: 960px) {
  .nav .links, .nav .right { display: none; }
  .nav-burger { display: flex; }
  .nav { padding-top: 8px; padding-left: 12px; padding-right: 12px; }
  .nav .nav-inner { padding: 10px 16px; }
  .nav .logo .logo-img { height: 20px; transform: translateY(2px); }
}

/* products dropdown */
.dropdown { position: relative; }
.dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 16px;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -18px;
  min-width: 760px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(150%) blur(20px);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 24px 60px -20px rgba(15,15,15,0.18);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  color: var(--ink);
}
.dropdown:hover .dropdown-menu,
.dropdown-menu:hover,
.dropdown:focus-within .dropdown-menu {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}
.dropdown-item {
  display: grid; grid-template-columns: 36px 1fr; gap: 14px;
  padding: 12px;
  border-radius: 12px;
  align-items: start;
}
.dropdown-item:hover { background: var(--bg-warm); }
.dropdown-item .ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--bg-warm);
  display: grid; place-items: center;
  color: var(--primary-ink);
}
.dropdown-item .t { font-weight: 600; font-size: 14px; }
.dropdown-item .d { font-size: 12.5px; color: var(--muted); margin-top: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 clamp(56px, 9vw, 120px);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}
.hero .bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover;
  background-position: center;
}
.hero .scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.05) 38%, rgba(0,0,0,0.55) 100%);
}
.hero .wrap { width: 100%; min-width: 0; }
.hero h1 {
  color: #fff;
  max-width: 20ch;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
  margin: 0;
}
.hero h1.hero-title-heavy {
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.042em;
}
.hero .sub {
  color: rgba(255,255,255,0.92);
  font-size: clamp(19px, 1.8vw, 24px);
  margin-top: 18px;
  max-width: 58ch;
  line-height: 1.45;
  font-weight: 400;
}
.hero .cta-row { margin-top: 36px; }
.hero .pill { margin-bottom: 22px; }
.hero .pill.dark { color: #fff; }

/* shorter feature-page hero */
.hero.medium { min-height: 78vh; }
.hero.short  { min-height: 64vh; }

/* product-UI hero (no photo) */
.hero.ui {
  background: var(--bg-warm);
  color: var(--ink);
  min-height: auto;
  padding: 160px 0 80px;
  align-items: stretch;
}
.hero.ui h1 { color: var(--ink); }
.hero.ui .sub { color: var(--body); }

/* ---------- Sections, content ---------- */
.section-head {
  max-width: 64ch;
  display: grid; gap: 14px;
  margin-bottom: clamp(40px, 6vw, 80px);
}
.section-head .eyebrow + .h2 { margin-top: 4px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---------- Tile / card ---------- */
.tile {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.warm .tile { background: #fff; }
.tile.dark { background: #141312; border-color: rgba(255,255,255,0.08); color: var(--on-dark); }
.tile.dark .h4 { color: #fff; }
.tile.dark .body, .tile.dark .muted { color: rgba(255,255,255,0.65); }
.tile .ic-tile {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bg-warm);
  display: grid; place-items: center;
  color: var(--primary-ink);
}
.tile.dark .ic-tile { background: rgba(255,255,255,0.06); color: var(--secondary); }

/* ---------- Big-number stat ---------- */
.stat {
  display: grid; gap: 14px; align-items: end;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 800px) { .stat { grid-template-columns: 1fr; } }
.stat .num {
  font-family: var(--display);
  font-size: clamp(96px, 16vw, 220px);
  line-height: 0.86;
  font-weight: 600;
  letter-spacing: -0.045em;
  color: var(--ink);
}
.stat .num em { font-style: normal; color: var(--primary); }
.stat .cap {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--body);
  max-width: 24ch;
  line-height: 1.25;
  align-self: end;
  padding-bottom: 18px;
}

/* ---------- Product UI surface ---------- */
.ui-surface {
  background: var(--bg-ui);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 56px);
  position: relative;
  overflow: hidden;
}
.ui-surface .frame {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 36px 80px -30px rgba(15,15,15,0.22), 0 1px 0 rgba(15,15,15,0.04);
  border: 1px solid var(--line);
  overflow: hidden;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-warm);
  border-top: 1px solid var(--line);
  padding: 80px 0 40px;
  font-size: 14px;
  color: var(--muted);
}
.footer .cols {
  display: grid; gap: 40px;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
}
@media (max-width: 900px) { .footer .cols { grid-template-columns: 1fr 1fr; } }
.footer h5 {
  font-family: var(--text);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a { color: var(--body); }
.footer ul a:hover { color: var(--primary-ink); }
.footer .brand { display: grid; gap: 18px; max-width: 32ch; }
.footer .brand p { color: var(--muted); margin: 0; }
.footer .legal {
  margin-top: 56px; padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 18px;
  align-items: center; justify-content: space-between;
}
.footer .socials { display: flex; gap: 12px; }
.footer .socials a {
  width: 32px; height: 32px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--body);
}
.footer .socials a:hover { color: var(--primary-ink); border-color: var(--primary); }

/* ---------- FAQ accordion ---------- */
.faq { display: grid; gap: 4px; }
.faq details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus {
  width: 28px; height: 28px;
  position: relative; flex: 0 0 28px;
  transition: transform .25s ease;
}
.faq summary .plus::before, .faq summary .plus::after {
  content: ""; position: absolute; background: var(--ink);
  border-radius: 2px;
}
.faq summary .plus::before { left: 0; right: 0; top: 13px; height: 2px; }
.faq summary .plus::after  { top: 0; bottom: 0; left: 13px; width: 2px; transition: transform .25s ease; }
.faq details[open] summary .plus::after { transform: scaleY(0); }
.faq details > .ans {
  margin-top: 14px; max-width: 70ch;
  color: var(--body); font-size: 17px; line-height: 1.55;
}

/* ---------- Logo wall ---------- */
.logowall {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 18px; overflow: hidden;
}
.logowall .cell {
  background: #fff;
  height: 96px;
  display: grid; place-items: center;
  color: var(--muted);
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
}
@media (max-width: 800px) { .logowall { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Case study card ---------- */
.case {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.case .photo {
  aspect-ratio: 4/3;
  background-size: cover; background-position: center;
  position: relative;
}
.case .photo .tag {
  position: absolute; top: 14px; left: 14px;
}
.case .body {
  padding: 24px;
  display: grid; gap: 12px;
}
.case .quote {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.25;
  color: var(--ink);
}
.case .meta { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); }

/* ---------- CTA banner full bleed ---------- */
.cta-banner {
  position: relative;
  min-height: 70vh;
  display: grid; place-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.cta-banner .bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; }
.cta-banner .scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0,0,0,0.32), rgba(0,0,0,0.55)); }
.cta-banner h2 { color: #fff; max-width: 18ch; margin: 0 auto; }
.cta-banner .cta-row { justify-content: center; margin-top: 36px; }

/* ---------- Pricing card ---------- */
.price-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .price-row { grid-template-columns: 1fr; } }
.price-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 22px; padding: 32px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.price-card.featured { border-color: var(--ink); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.18); }
.price-card .tier { font-family: var(--display); font-weight: 600; font-size: 22px; letter-spacing: -0.012em; }
.price-card .price {
  font-family: var(--display);
  font-size: 64px; font-weight: 600; letter-spacing: -0.03em; line-height: 1;
}
.price-card .price small { font-size: 18px; color: var(--muted); font-weight: 500; letter-spacing: 0; }
.price-card .fee { color: var(--body); font-size: 15px; }
.price-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 15px; color: var(--body); }
.price-card ul li { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; }
.price-card ul li::before {
  content: "";
  width: 16px; height: 16px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3.5 8.4l3 3 6-6.5' fill='none' stroke='%230A0A0A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / 14px no-repeat,
    var(--bg-warm);
  margin-top: 3px;
}
.price-card.featured ul li::before {
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3.5 8.4l3 3 6-6.5' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / 14px no-repeat,
    var(--primary);
}

/* ---------- Comparison table ---------- */
.compare {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: #fff; border: 1px solid var(--line); border-radius: 22px; overflow: hidden;
  font-size: 15px;
}
.compare th, .compare td { padding: 18px 20px; text-align: left; border-bottom: 1px solid var(--line); }
.compare tr:last-child td { border-bottom: none; }
.compare th { font-weight: 600; color: var(--ink); font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; background: var(--bg-warm); }
.compare td.num { font-family: var(--display); font-weight: 600; }
.compare .you { background: rgba(0,0,0,0.02); }
.compare .you td:first-child { color: var(--primary-ink); font-weight: 600; }

/* ---------- Floating product UI bits used across pages ---------- */
.tag-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
  background: rgba(255,255,255,0.92); color: var(--ink);
  backdrop-filter: blur(8px);
}

/* ---------- Sticky scroll-tell ---------- */
.scrolltell { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
@media (max-width: 1000px) { .scrolltell { grid-template-columns: 1fr; } }
.scrolltell .left { position: sticky; top: 120px; align-self: start; }
.scrolltell .left h2 { margin: 0; }
.scrolltell .right { display: grid; gap: 24px; }
.scrolltell .step {
  background: #fff; border: 1px solid var(--line);
  border-radius: 22px; padding: 28px;
  display: grid; gap: 16px;
}
.scrolltell .step .num {
  font-family: var(--display); font-size: 14px; font-weight: 600; color: var(--primary-ink);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.scrolltell .step h4 { margin: 0; }
.scrolltell .step p { margin: 0; color: var(--body); }

/* ---------- Image placeholders ---------- */
.placeholder-img {
  background:
    repeating-linear-gradient(135deg, rgba(0,0,0,0.04) 0 1px, transparent 1px 14px),
    var(--bg-ui);
  display: grid; place-items: center;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  border-radius: 12px;
}

/* ---------- Helpers ---------- */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mt-6 { margin-top: 72px; }
.row { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.center { text-align: center; }
.divider { height: 1px; background: var(--line); border: none; margin: 0; }

/* small chev */
.chev { display: inline-block; transition: transform .2s ease; }
.chev::after { content: "›"; font-weight: 600; padding-left: 4px; font-size: 1.2em; line-height: 0; vertical-align: middle; }

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