/* ============================================================
   Orbi Landing — design tokens & base
   ============================================================ */
:root {
  --brand: #4B4EE8;
  --brand-hover: #3A3DD4;
  --brand-soft: #EEEEFD;
  --brand-soft-2: #F4F4FE;
  --ink: #1B1F6E;          /* dark navy text */
  --ink-2: #2A2F7A;
  --ink-muted: #5B5F8A;
  --text: #1B1F6E;
  --text-soft: #4D5375;
  --muted: #6B7280;
  --muted-2: #9CA3AF;
  --line: #ECECF3;
  --line-strong: #DCDCE7;
  --bg: #ffffff;
  --bg-soft: #F9FAFB;
  --bg-soft-2: #F5F6FB;
  --success: #0E9F6E;
  --danger: #DC2626;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  --shadow-sm: 0 1px 2px rgba(27,31,110,.04), 0 1px 1px rgba(27,31,110,.03);
  --shadow-md: 0 4px 14px rgba(27,31,110,.06), 0 1px 3px rgba(27,31,110,.04);
  --shadow-lg: 0 24px 60px -20px rgba(27,31,110,.18), 0 8px 24px -12px rgba(27,31,110,.10);

  --container: 1180px;
  --pad-x: clamp(20px, 4vw, 40px);

  --font-sans: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-slab: 'Roboto Slab', Georgia, serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Section padding — driven by density */
  --section-pad-y: clamp(40px, 6vw, 80px);
  --section-gap: clamp(28px, 3.5vw, 44px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv11','ss01','ss03';
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea, button { font-family: inherit; font-size: inherit; color: inherit; }

/* ============================================================ Initial skeleton */
.page-skeleton {
  min-height: 100vh;
  background: #fff;
  color: transparent;
  overflow: hidden;
}
.sk-nav,
.sk-hero,
.sk-cards {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.sk-nav {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.sk-logo {
  width: 150px;
  height: 48px;
  object-fit: contain;
  object-position: center;
}
.sk-links {
  display: none;
  gap: 28px;
}
.sk-links span,
.sk-button,
.sk-pill,
.sk-line,
.sk-form span,
.sk-panel,
.sk-panel span,
.sk-cards span {
  background: linear-gradient(90deg, #F0F1F8 0%, #FAFAFD 42%, #ECEEFA 78%);
  background-size: 220% 100%;
  animation: skeleton-sheen 1.35s ease-in-out infinite;
}
.sk-links span {
  width: 76px;
  height: 12px;
  border-radius: 999px;
}
.sk-button {
  width: 158px;
  height: 44px;
  border-radius: 999px;
}
.sk-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  padding-top: clamp(36px, 5vw, 64px);
  padding-bottom: 34px;
}
.sk-copy {
  display: flex;
  flex-direction: column;
  max-width: 560px;
}
.sk-pill {
  width: 260px;
  height: 34px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.sk-line {
  height: 18px;
  border-radius: 999px;
  margin-top: 14px;
}
.sk-title {
  width: min(100%, 520px);
  height: 56px;
  margin-top: 0;
}
.sk-title-short { width: min(78%, 410px); }
.sk-line-short { width: 72%; }
.sk-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 28px;
}
.sk-form span {
  height: 52px;
  border-radius: 999px;
}
.sk-panel {
  min-height: 440px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: 24px;
  display: grid;
  gap: 16px;
}
.sk-panel span {
  border-radius: 12px;
}
.sk-panel span:nth-child(1) { height: 58px; }
.sk-panel span:nth-child(2) { height: 120px; }
.sk-panel span:nth-child(3) { height: 92px; }
.sk-panel span:nth-child(4) { height: 126px; }
.sk-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding-bottom: 40px;
}
.sk-cards span {
  height: 180px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
@media (min-width: 760px) {
  .sk-links { display: flex; }
  .sk-form { grid-template-columns: minmax(0, 1fr) 220px; }
  .sk-cards { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 980px) {
  .sk-hero { grid-template-columns: minmax(0, 1fr) minmax(420px, .95fr); }
}
@keyframes skeleton-sheen {
  0% { background-position: 120% 0; }
  100% { background-position: -120% 0; }
}

/* ============================================================ Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.section {
  padding: var(--section-pad-y) 0;
}
.section--tight { padding: calc(var(--section-pad-y) * 0.75) 0; }
.section--soft { background: var(--bg-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 700;
}
.eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--brand);
  border-radius: 50%;
  display: inline-block;
}
.section-title {
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: var(--headline-weight, 700);
  color: var(--ink);
  margin: 10px 0 10px;
  text-wrap: balance;
}
.section-sub {
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--text-soft);
  max-width: 600px;
  margin: 0 0 6px;
  line-height: 1.5;
  text-wrap: pretty;
}
.section-head {
  margin-bottom: var(--section-gap);
}
.section-head--center {
  text-align: center;
  margin-left: auto; margin-right: auto;
}
.section-head--center .section-sub { margin-left: auto; margin-right: auto; }
.section-head--center .eyebrow { justify-content: center; }

/* ============================================================ Buttons */
.btn {
  --bh: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: var(--bh);
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  border: 1px solid transparent;
  transition: background-color .15s ease, transform .15s ease, box-shadow .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: -0.005em;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover { background: #0E125A; }
.btn-primary:active { transform: translateY(1px); }
.btn-brand {
  background: var(--brand);
  color: #fff;
}
.btn-brand:hover { background: var(--brand-hover); }
.btn-brand:active { transform: translateY(1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: var(--bg-soft); }
.btn-lg { --bh: 52px; padding: 0 22px; font-size: 16px; }

.btn .arrow {
  transition: transform .2s ease;
}
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================================ Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.brand-icon {
  display: block;
  border-radius: 10px;
  box-shadow: 0 10px 24px -14px rgba(27,31,110,0.65);
  transition: transform .2s ease, box-shadow .2s ease;
}
.brand-logo {
  width: 150px;
  height: 48px;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
}
.footer .brand-logo {
  width: 132px;
  height: 42px;
}
.brand:hover .brand-icon {
  transform: translateY(-1px) rotate(-2deg);
  box-shadow: 0 14px 28px -14px rgba(27,31,110,0.75);
}
.brand:hover .brand-logo {
  transform: translateY(-1px);
  box-shadow: none;
}
.brand-name {
  font-family: var(--font-slab);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1;
}
.nav-links {
  display: none;
  gap: 28px;
  font-size: 14px;
  color: var(--text-soft);
}
.nav-links a:hover { color: var(--ink); }
@media (min-width: 800px) {
  .nav-links { display: flex; }
}

/* ============================================================ Hero */
.hero {
  position: relative;
  padding-top: clamp(36px, 5vw, 64px);
  padding-bottom: clamp(40px, 5vw, 72px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 400px at 50% -200px, rgba(75,78,232,0.07), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
}
@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    align-items: start;
    gap: clamp(40px, 5vw, 64px);
  }
}

/* Hero stat callouts — fill bottom whitespace with useful info */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  max-width: 520px;
}
.hstat-num {
  font-family: var(--font-slab);
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
}
.hstat-num span {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0;
}
.hstat-lbl {
  margin-top: 6px;
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.35;
}
@media (max-width: 520px) {
  .hero-stats { grid-template-columns: 1fr; gap: 10px; padding-top: 18px; margin-top: 20px; }
  .hero-stats .hstat { display: flex; align-items: baseline; gap: 10px; }
  .hstat-num { font-size: 22px; }
  .hstat-lbl { margin-top: 0; }
}

/* Audience chips — small row showing who Orbi is for */
.audience-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.chip i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
  display: inline-block;
}
.chip:nth-child(2) i { background: #7B7EF5; }
.chip:nth-child(3) i { background: #1B1F6E; }

/* Founder benefit pill */
.founder-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  background: linear-gradient(180deg, #FFF7E6 0%, #FFEFC6 100%);
  border: 1px solid #F3D788;
  color: #6B4A00;
  padding: 10px 14px 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.35;
  max-width: 520px;
}
.founder-pill .star {
  flex: 0 0 auto;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #E6A700;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 1;
}
.founder-pill strong { color: #4A3300; font-weight: 600; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-soft);
  color: var(--brand);
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid #DDDDFB;
}
.badge .dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: var(--headline-weight, 700);
  color: var(--ink);
  margin: 16px 0 12px;
  text-wrap: balance;
}
.hero h1 em {
  font-style: normal;
  color: var(--brand);
  background: linear-gradient(180deg, transparent 62%, rgba(75,78,232,0.18) 62%);
  padding: 0 2px;
}
.hero p.lede {
  font-size: clamp(16px, 1.25vw, 18px);
  color: var(--text-soft);
  line-height: 1.5;
  margin: 0 0 20px;
  max-width: 520px;
  text-wrap: pretty;
}

/* Inline form */
.inline-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 520px;
}
@media (min-width: 520px) {
  .inline-form { flex-direction: row; }
}
.inline-form .input-wrap {
  position: relative;
  flex: 1;
}
.input {
  width: 100%;
  height: 52px;
  padding: 0 16px 0 44px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: #fff;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.input:focus { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(75,78,232,0.12); }
.input::placeholder { color: var(--muted); }
.input.error { border-color: var(--danger); box-shadow: 0 0 0 4px rgba(220,38,38,0.10); }
.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}
.inline-form .btn { height: 52px; }

.form-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--text-soft);
}
.avatars {
  display: inline-flex;
}
.avatars span {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  background: linear-gradient(135deg, var(--brand) 0%, #7B7EF5 100%);
  display: inline-block;
}
.avatars span:first-child { margin-left: 0; }
.avatars span:nth-child(2) { background: linear-gradient(135deg, #1B1F6E 0%, #4B4EE8 100%); }
.avatars span:nth-child(3) { background: linear-gradient(135deg, #7B7EF5 0%, #B3B5F8 100%); }
.avatars span:nth-child(4) { background: linear-gradient(135deg, #2A2F7A 0%, #4B4EE8 100%); }

.form-error {
  margin-top: 12px;
  color: var(--danger);
  font-size: 13px;
  display: flex; align-items: center; gap: 6px;
}
.form-success {
  margin-top: 14px;
  background: #E8F8F0;
  color: #065F46;
  border: 1px solid #B6E6CB;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Hero mockup */
.hero-mockup {
  position: relative;
}
.hero-mockup::after {
  content: "";
  position: absolute;
  left: -10%; right: -10%;
  bottom: -10%;
  height: 60%;
  background: radial-gradient(closest-side, rgba(75,78,232,0.12), transparent 70%);
  z-index: -1;
  filter: blur(20px);
}

/* ============================================================ Trust strip */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  background: #fff;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px 48px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.02em;
}
.trust-inner .item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ============================================================ Problem cards */
.cards-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) {
  .cards-3 { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
.problem-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 22px 24px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}
.problem-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 3px;
  background: var(--brand);
  border-radius: 999px 999px 0 0;
  opacity: 0;
  transform: translateY(3px);
  transition: opacity .22s ease, transform .22s ease;
}
.problem-card:hover {
  border-color: rgba(75,78,232,0.32);
  transform: translateY(-5px);
  box-shadow: 0 18px 44px -24px rgba(27,31,110,0.34);
}
.problem-card:hover::after { opacity: 1; transform: translateY(0); }
.problem-card .icon-tile {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: transform .22s ease, background-color .22s ease, color .22s ease;
}
.problem-card:hover .icon-tile {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px) rotate(-3deg);
}
.problem-card .quote {
  font-size: 17px;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.bridge {
  margin-top: 28px;
  text-align: center;
  font-size: clamp(18px, 1.9vw, 22px);
  color: var(--ink);
  letter-spacing: -0.015em;
  font-weight: 500;
  text-wrap: balance;
}
.bridge strong { color: var(--brand); font-weight: 600; }

/* ============================================================ Products */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: stretch;
}
@media (min-width: 720px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (min-width: 1080px) {
  .products-grid { grid-template-columns: repeat(4, 1fr); }
}
.product-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: var(--shadow-sm);
  transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
}
.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(75,78,232,0.08), transparent 38%),
    radial-gradient(320px 160px at 85% 0%, rgba(27,31,110,0.08), transparent 62%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.product-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--card-accent, var(--brand));
  opacity: 0.85;
  transition: height .22s ease, opacity .22s ease;
}
.product-card:hover {
  border-color: rgba(75,78,232,0.38);
  transform: translateY(-7px);
  box-shadow: 0 24px 58px -28px rgba(27,31,110,0.38), 0 8px 18px -14px rgba(75,78,232,0.35);
}
.product-card:hover::before { height: 5px; opacity: 1; }
.product-card:hover::after { opacity: 1; }
.product-card.featured {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand), var(--shadow-md);
}
.product-card.featured::before { height: 4px; }
.product-card > * {
  position: relative;
  z-index: 1;
}

/* Card style variants */
[data-card="minimal"] .product-card::before { display: none; }
[data-card="minimal"] .product-card { padding-top: 22px; }
[data-card="flat"] .product-card::before { display: none; }
[data-card="flat"] .product-card { padding-top: 22px; }
[data-card="flat"] .product-card:hover { transform: none; box-shadow: none; border-color: var(--card-accent, var(--brand)); }
[data-card="flat"] .product-card.featured { box-shadow: 0 0 0 1px var(--brand); }
[data-card="flat"] .problem-card:hover { transform: none; }
[data-card="flat"] .product-card:hover::after,
[data-card="flat"] .product-card:hover::before { opacity: 0.85; }
.product-card .ribbon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.92);
  color: var(--brand);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 999px;
  line-height: 1.2;
  white-space: nowrap;
}
.product-card .p-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.product-card .swatch {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-slab);
  font-weight: 700;
  font-size: 17px;
  flex: 0 0 auto;
  box-shadow: 0 4px 10px -4px rgba(27,31,110,0.25);
  transition: transform .22s ease, box-shadow .22s ease;
}
.product-card:hover .swatch {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 12px 22px -12px rgba(27,31,110,0.55);
}
.product-card .pname {
  font-family: var(--font-slab);
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.product-card .ptag {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-top: 3px;
}
.product-card .price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
  color: var(--ink);
  padding: 0 0 14px;
  margin-bottom: 14px;
  border-bottom: 1px dashed var(--line);
}
.product-card .price .amt {
  font-family: var(--font-slab);
  font-weight: 700;
  font-size: 34px;
  letter-spacing: -0.025em;
  line-height: 1;
}
.product-card .price .cur {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  margin-left: 1px;
}
.product-card .price .once {
  color: var(--muted);
  font-size: 12px;
  margin-left: auto;
  font-weight: 500;
  white-space: nowrap;
}
.product-card .pdesc {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 14px;
  text-wrap: pretty;
}
.product-card .pfeatures {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-card .pfeatures li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.4;
}
.product-card .pfeatures li svg {
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--card-accent, var(--brand));
}
.product-card .coming {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  padding: 10px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 500;
  width: 100%;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.product-card:hover .coming {
  border-color: rgba(75,78,232,0.28);
  box-shadow: inset 0 0 0 1px rgba(75,78,232,0.06);
  transform: translateY(-1px);
}
.product-card.featured .coming {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.product-card .coming::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
  animation: pulse 2s ease-in-out infinite;
}
.product-card.featured .coming::before { background: #fff; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* ============================================================ Features */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
.feature {
  position: relative;
  display: flex;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(75,78,232,0.08), transparent 42%);
  opacity: 0;
  transition: opacity .22s ease;
  pointer-events: none;
}
.feature:hover {
  transform: translateY(-5px);
  border-color: rgba(75,78,232,0.28);
  box-shadow: 0 18px 44px -26px rgba(27,31,110,0.32);
}
.feature:hover::before { opacity: 1; }
.feature > * {
  position: relative;
  z-index: 1;
}
.feature .ftile {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .22s ease, background-color .22s ease, color .22s ease;
}
.feature:hover .ftile {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
.feature .ftitle {
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  margin: 4px 0 6px;
  letter-spacing: -0.01em;
}
.feature .fdesc {
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================ Waitlist big */
.waitlist-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: clamp(28px, 4vw, 48px);
  max-width: 680px;
  margin: 0 auto;
}
.field-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 600px) {
  .field-group.two { grid-template-columns: 1fr 1fr; }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: 0.01em;
}
.field .input,
.field select {
  height: 48px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: #fff;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B7280' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.field .input:focus, .field select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(75,78,232,0.12);
}
.field .input.error { border-color: var(--danger); }
.field .hint { font-size: 12px; color: var(--muted); }
.terms { font-size: 12px; color: var(--muted); margin-top: 14px; text-align: center; }
.waitlist-card .btn-brand { width: 100%; margin-top: 8px; }

.discount-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFF7E6;
  border: 1px solid #F6DDA1;
  color: #8A5A00;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
}

/* ============================================================ FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 16.5px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.faq-q:hover { color: var(--brand); }
.faq-q .chev {
  flex: 0 0 auto;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: transform .2s ease, background-color .2s ease;
}
.faq-item.open .faq-q .chev {
  transform: rotate(45deg);
  background: var(--brand);
  color: #fff;
}
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease, padding .3s ease;
  color: var(--text-soft);
  font-size: 15.5px;
  line-height: 1.6;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 0 18px;
}

/* ============================================================ Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 32px 0 28px;
  background: #fff;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
@media (min-width: 720px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--text-soft);
}
.footer-links a:hover { color: var(--ink); }
.footer-meta {
  font-size: 13px;
  color: var(--muted);
}
.flag {
  display: inline-block;
  vertical-align: middle;
  width: 18px; height: 12px;
  border-radius: 2px;
  background:
    linear-gradient(180deg, #0F47AF 0 33%, #fff 33% 67%, #0F47AF 67% 100%);
  margin: 0 4px;
}

/* ============================================================ Mockup */
.mock-frame {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-3deg) rotateX(2deg);
  transform-origin: center;
}
@media (max-width: 980px) {
  .mock-frame { transform: none; }
}
.mock-topbar {
  height: 36px;
  background: #FAFAFD;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
}
.mock-topbar .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #E1E1EC;
}
.mock-topbar .url {
  margin-left: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 11px;
  color: var(--muted);
  padding: 3px 10px;
  font-family: var(--font-mono);
  flex: 1;
  max-width: 280px;
  text-align: center;
}

/* placeholder utility */
.placeholder-img {
  width: 100%;
  aspect-ratio: 16/10;
  background:
    repeating-linear-gradient(135deg, #F2F3FA 0 12px, #E8E9F4 12px 24px);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}

/* Mobile responsive tweaks */
@media (max-width: 720px) {
  :root {
    --pad-x: 18px;
    --section-pad-y: 42px;
    --section-gap: 22px;
  }

  .nav {
    background: rgba(255,255,255,0.94);
  }
  .nav-inner {
    height: 58px;
    gap: 12px;
  }
  .brand-logo {
    width: 118px;
    height: 40px;
  }
  .nav .btn {
    --bh: 36px;
    padding: 0 12px;
    font-size: 13px;
    flex: 0 0 auto;
  }
  .nav .btn svg { display: none; }

  .hero {
    padding-top: 24px;
    padding-bottom: 34px;
  }
  .hero-grid {
    gap: 30px;
  }
  .badge {
    max-width: 100%;
    font-size: 12px;
    padding: 5px 10px 5px 6px;
  }
  .badge .dot {
    width: 16px;
    height: 16px;
  }
  .hero h1 {
    margin-top: 14px;
    margin-bottom: 12px;
  }
  .hero p.lede {
    margin-bottom: 16px;
  }
  .audience-chips {
    gap: 7px;
    margin-bottom: 18px;
  }
  .chip {
    padding: 5px 10px;
    font-size: 12.5px;
  }
  .inline-form {
    gap: 10px;
  }
  .inline-form .btn { width: 100%; }
  .form-meta {
    align-items: flex-start;
    gap: 10px;
    line-height: 1.35;
  }
  .founder-pill {
    display: flex;
    width: 100%;
    margin-top: 16px;
    padding: 10px 12px;
  }
  .hero-mockup {
    max-height: 420px;
    overflow: hidden;
    border-radius: var(--radius-lg);
  }
  .hero-mockup::after {
    left: 0;
    right: 0;
    bottom: -18%;
  }
  .mock-frame {
    box-shadow: var(--shadow-md);
  }
  .mock-topbar .url {
    max-width: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .trust {
    padding: 14px 0;
  }
  .trust-inner {
    justify-content: flex-start;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
    font-size: 12.5px;
  }
  .trust-inner .item {
    min-width: 0;
  }

  .section-head {
    margin-bottom: 22px;
  }
  .section-head--center {
    text-align: left;
  }
  .section-head--center .section-sub {
    margin-left: 0;
    margin-right: 0;
  }
  .section-head--center .eyebrow {
    justify-content: flex-start;
  }
  .section-title {
    font-size: clamp(26px, 7vw, 34px);
    margin-top: 8px;
  }
  .section-sub {
    font-size: 15px;
    line-height: 1.48;
  }

  .cards-3,
  .products-grid,
  .features-grid {
    gap: 12px;
  }
  .problem-card,
  .product-card,
  .feature,
  .waitlist-card {
    border-radius: 12px;
  }
  .problem-card {
    padding: 18px;
  }
  .problem-card .quote {
    font-size: 15.5px;
    line-height: 1.45;
  }
  .bridge {
    text-align: left;
    margin-top: 18px;
    font-size: 17px;
  }

  .product-card {
    padding: 20px 18px 18px;
  }
  .product-card .p-head {
    margin-bottom: 12px;
  }
  .product-card .swatch {
    width: 38px;
    height: 38px;
  }
  .product-card .pname {
    font-size: 18px;
  }
  .product-card .price {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
  .product-card .price .amt {
    font-size: 32px;
  }
  .product-card .pdesc {
    margin-bottom: 12px;
  }
  .product-card .pfeatures {
    gap: 7px;
    margin-bottom: 16px;
  }

  .feature {
    padding: 16px;
    gap: 12px;
  }
  .feature .ftile {
    width: 38px;
    height: 38px;
  }
  .feature .ftitle {
    margin-top: 2px;
  }

  .waitlist-card {
    padding: 22px 18px;
    box-shadow: var(--shadow-sm);
  }
  .discount-pill {
    align-items: flex-start;
    border-radius: 10px;
    line-height: 1.35;
  }
  .field-group {
    gap: 12px;
  }
  .field label {
    font-size: 12.5px;
  }
  .field .input,
  .field select {
    height: 46px;
    border-radius: 9px;
  }
  .terms {
    text-align: left;
    line-height: 1.45;
  }

  .faq-q {
    padding: 16px 0;
    font-size: 15.5px;
  }
  .faq-a {
    font-size: 14.5px;
  }
  .footer {
    padding: 26px 0;
  }
  .footer-inner {
    gap: 14px;
  }
  .footer-links {
    gap: 18px;
    flex-wrap: wrap;
  }
  .footer-meta {
    font-size: 12px;
    line-height: 1.45;
  }
}
@media (max-width: 520px) {
  .hero h1 { font-size: clamp(32px, 9vw, 40px); }
  .hero .lede { font-size: 15.5px; }
  .input { height: 48px; }
  .inline-form .btn { height: 48px; }
  .hero-stats {
    border-top-style: solid;
  }
  .hero-stats .hstat {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px 12px;
    justify-content: space-between;
  }
  .hero-stats .hstat .hstat-lbl {
    text-align: right;
    max-width: 140px;
  }
  .trust-inner {
    grid-template-columns: 1fr;
  }
  .nav .btn {
    max-width: 132px;
  }
  .brand-logo {
    width: 110px;
  }
}
@media (max-width: 380px) {
  :root { --pad-x: 14px; }
  .nav .btn {
    max-width: 116px;
    padding: 0 10px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .brand-logo {
    width: 100px;
  }
  .hero h1 {
    font-size: 31px;
  }
}

/* small helpers */
.muted { color: var(--muted); }
.center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
