/* =========================================================================
   Ardito — premium static site stylesheet
   Brand: deep-space navy (#060B1E/#0A1633/#0E2350/#14315F) + electric blue / cyan (#2E6BFF/#38BDF8/#BAE6FD)
   Self-contained. No build step. Fonts loaded via <link> in HTML (Space Grotesk + Plus Jakarta Sans).
   ========================================================================= */

:root {
  /* deep-space navy scale (variable names kept for diff-stability) */
  --plum-0: #050A18;
  --plum-1: #060B1E;
  --plum-2: #0A1633;
  --plum-3: #0E2350;
  --plum-4: #14315F;
  --plum-5: #1B3A6B;

  /* electric-blue / cyan accent scale */
  --gold-hi: #BAE6FD;
  --gold: #38BDF8;
  --gold-2: #2E6BFF;
  --gold-lo: #1E40AF;

  /* ink / text (cool) */
  --ink: #EAF1FB;
  --ink-soft: #BBC9E6;
  --ink-mute: #8794AB;
  --ink-faint: #5A6B82;

  /* surfaces */
  --line: rgba(56, 189, 248, 0.16);
  --line-soft: rgba(255, 255, 255, 0.07);
  --glass: rgba(14, 35, 80, 0.55);
  --glass-2: rgba(10, 22, 51, 0.62);

  --radius: 22px;
  --radius-lg: 30px;
  --radius-sm: 14px;

  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);

  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 72px);

  --shadow-soft: 0 30px 80px -40px rgba(0, 0, 0, 0.8), 0 8px 30px -16px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 24px 70px -34px rgba(46, 107, 255, 0.45);

  --font-display: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

/* ---------------- reset ---------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--plum-1);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.05; letter-spacing: -0.02em; margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------------- page background field ---------------- */
.bg-field {
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(1100px 700px at 82% -8%, rgba(56, 189, 248, 0.16), transparent 60%),
    radial-gradient(900px 700px at 6% 22%, rgba(46, 107, 255, 0.20), transparent 60%),
    radial-gradient(1200px 900px at 50% 120%, rgba(46, 107, 255, 0.14), transparent 60%),
    linear-gradient(180deg, var(--plum-1) 0%, var(--plum-0) 45%, #04070F 100%);
}
.grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------------- layout helpers ---------------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.section { padding: clamp(72px, 11vw, 140px) 0; position: relative; }
.section--tight { padding: clamp(56px, 8vw, 100px) 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.22em; color: var(--gold);
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(56, 189, 248, 0.06);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold); }

.section-head { max-width: 720px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.3rem); margin-top: 22px; }
.section-head .lead { color: var(--ink-soft); font-size: clamp(1.02rem, 1.6vw, 1.18rem); margin-top: 18px; }

.grad-text {
  background: linear-gradient(100deg, var(--gold-hi) 0%, var(--gold) 45%, var(--gold-lo) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 0.96rem; padding: 14px 18px 14px 24px;
  border-radius: 999px; border: 1px solid transparent;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), background 0.4s var(--ease);
}
.btn:active { transform: scale(0.97); }
.btn .ic {
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  transition: transform 0.5s var(--ease);
}
.btn:hover .ic { transform: translate(2px, -1px) scale(1.06); }
.btn-primary {
  background: linear-gradient(100deg, var(--gold-hi), var(--gold) 55%, var(--gold-lo));
  color: #FFFFFF; box-shadow: var(--shadow-gold);
}
.btn-primary .ic { background: rgba(255, 255, 255, 0.16); }
.btn-primary:hover { box-shadow: 0 30px 80px -30px rgba(56, 189, 248, 0.6); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.04); color: var(--ink);
  border: 1px solid var(--line-soft); backdrop-filter: blur(8px);
}
.btn-ghost .ic { background: rgba(255, 255, 255, 0.08); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--line); }
.btn svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.7; }

/* ---------------- preview ribbon ---------------- */
.ribbon {
  position: fixed; top: 22px; right: -54px; z-index: 120;
  transform: rotate(45deg);
  background: linear-gradient(100deg, var(--gold-2), var(--gold-lo));
  color: #FFFFFF; font-size: 10px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 7px 64px; box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.7);
  pointer-events: none;
}

/* ---------------- nav (fluid island) ---------------- */
.nav-shell { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; justify-content: center; padding: 18px var(--pad) 0; pointer-events: none; }
.nav {
  pointer-events: auto;
  width: 100%; max-width: 1120px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 10px 12px 10px 18px; border-radius: 999px;
  background: rgba(10, 22, 51, 0.55); border: 1px solid var(--line-soft);
  backdrop-filter: blur(20px) saturate(140%); -webkit-backdrop-filter: blur(20px) saturate(140%);
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.nav.scrolled { background: rgba(6, 11, 30, 0.82); box-shadow: var(--shadow-soft); border-color: var(--line); }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-size: 1.18rem; font-weight: 600; }
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.brand .grad-text { letter-spacing: -0.03em; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--ink-soft); padding: 9px 14px; border-radius: 999px;
  transition: color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav-links a:hover { color: var(--ink); background: rgba(255, 255, 255, 0.05); }
.nav-cta { display: flex; align-items: center; gap: 8px; }
.nav .btn { padding: 11px 16px 11px 20px; font-size: 0.88rem; }
.burger { display: none; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-soft); background: rgba(255,255,255,0.04); position: relative; }
.burger span { position: absolute; left: 12px; right: 12px; height: 1.6px; background: var(--ink); border-radius: 2px; transition: transform 0.5s var(--ease), opacity 0.3s var(--ease); }
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { bottom: 17px; }
body.menu-open .burger span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 95; display: flex; flex-direction: column; justify-content: center; gap: 6px;
  padding: 0 var(--pad); background: rgba(11, 8, 23, 0.92); backdrop-filter: blur(24px);
  opacity: 0; visibility: hidden; transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--font-display); font-size: clamp(1.8rem, 8vw, 2.6rem); color: var(--ink);
  padding: 10px 0; border-bottom: 1px solid var(--line-soft);
  opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
body.menu-open .mobile-menu a { opacity: 1; transform: translateY(0); }
body.menu-open .mobile-menu a:nth-child(1) { transition-delay: 0.08s; }
body.menu-open .mobile-menu a:nth-child(2) { transition-delay: 0.13s; }
body.menu-open .mobile-menu a:nth-child(3) { transition-delay: 0.18s; }
body.menu-open .mobile-menu a:nth-child(4) { transition-delay: 0.23s; }
body.menu-open .mobile-menu a:nth-child(5) { transition-delay: 0.28s; }
body.menu-open .mobile-menu a:nth-child(6) { transition-delay: 0.33s; }
.mobile-menu .btn { margin-top: 30px; align-self: flex-start; }

/* ---------------- HERO ---------------- */
.hero { position: relative; padding-top: clamp(140px, 20vh, 200px); padding-bottom: clamp(60px, 9vw, 110px); overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background-image: url("../assets/hero_gym.png");
  background-size: cover; background-position: right center;
}
.hero-bg::after { content: ""; position: absolute; inset: 0; background:
  linear-gradient(90deg, rgba(4,8,22,0.92) 0%, rgba(4,8,22,0.72) 42%, rgba(4,8,22,0.35) 100%),
  linear-gradient(180deg, rgba(4,8,22,0.55) 0%, rgba(4,8,22,0.25) 35%, rgba(4,8,22,0.9) 100%); }
.hero { display: flex; align-items: center; min-height: min(90vh, 880px); }
.hero-grid { display: grid; grid-template-columns: 1fr; }
.hero-copy { max-width: 720px; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); margin-top: 26px; letter-spacing: -0.035em; }
.hero h1 .grad-text { display: inline; }
.hero .sub { color: var(--ink-soft); font-size: clamp(1.05rem, 1.8vw, 1.28rem); margin-top: 24px; max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero-trust { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 26px 34px; align-items: center; color: var(--ink-mute); font-size: 0.82rem; }
.hero-trust .t { display: flex; align-items: center; gap: 9px; }
.hero-trust .t b { color: var(--gold); font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; }
.hero-trust .tdiv { width: 1px; height: 30px; background: var(--line-soft); }

/* hero visual: self-renewing feed card */
.hero-visual { position: relative; display: grid; place-items: center; }
.feed-card {
  position: relative; width: min(420px, 100%);
  padding: 14px; border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line);
  box-shadow: var(--shadow-soft); backdrop-filter: blur(10px);
}
.feed-card .inner { border-radius: calc(var(--radius-lg) - 10px); overflow: hidden; border: 1px solid var(--line-soft); position: relative; }
.feed-card img { width: 100%; }
.feed-card .spin { position: absolute; inset: 14px; border-radius: 50%; border: 1px dashed rgba(56,189,248,0.22); animation: spin 26s linear infinite; pointer-events: none; }
@keyframes spin { to { transform: rotate(360deg); } }
.feed-badge {
  position: absolute; left: -16px; bottom: 28px; display: flex; align-items: center; gap: 12px;
  padding: 13px 18px 13px 14px; border-radius: 16px;
  background: rgba(6, 11, 30, 0.86); border: 1px solid var(--line); box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}
.feed-badge .pulse { width: 10px; height: 10px; border-radius: 50%; background: #6BE3A0; box-shadow: 0 0 0 0 rgba(107,227,160,0.5); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(107,227,160,0.5); } 70% { box-shadow: 0 0 0 12px rgba(107,227,160,0); } 100% { box-shadow: 0 0 0 0 rgba(107,227,160,0); } }
.feed-badge .tt { font-size: 0.72rem; color: var(--ink-mute); }
.feed-badge .tt b { display: block; color: var(--ink); font-size: 0.86rem; font-weight: 700; font-family: var(--font-body); }

/* logos strip */
.logos { padding: 30px 0 8px; }
.logos .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 40px; }
.logos .label { width: 100%; text-align: center; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 6px; }
.logos .chip {
  display: inline-flex; align-items: center; gap: 9px; color: var(--ink-mute); font-weight: 600; font-size: 0.92rem;
  padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line-soft); background: rgba(255,255,255,0.03);
}
.logos .chip svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.6; }

/* ---------------- pain / problem strip ---------------- */
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
.pain-card {
  padding: 28px; border-radius: var(--radius);
  background: var(--glass-2); border: 1px solid var(--line-soft);
}
.pain-card .n { font-family: var(--font-display); font-size: 2.4rem; color: var(--gold); }
.pain-card p { color: var(--ink-soft); margin-top: 8px; font-size: 0.96rem; }
.pain-card .src { color: var(--ink-faint); font-size: 0.74rem; margin-top: 12px; }

/* ---------------- bento (features overview) ---------------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; margin-top: 56px; }
.card {
  position: relative; border-radius: var(--radius-lg); padding: 6px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  border: 1px solid var(--line-soft);
  transition: transform 0.6s var(--ease), border-color 0.5s var(--ease), box-shadow 0.6s var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: var(--line); box-shadow: var(--shadow-soft); }
.card .core {
  height: 100%; border-radius: calc(var(--radius-lg) - 6px); padding: 26px 28px;
  background: var(--glass-2); box-shadow: inset 0 1px 1px rgba(255,255,255,0.06);
  display: flex; flex-direction: column; gap: 12px;
}
.card .icon {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: rgba(56,189,248,0.10); border: 1px solid var(--line); color: var(--gold);
}
.card .icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.card h3 { font-size: 1.22rem; }
.card p { color: var(--ink-soft); font-size: 0.95rem; }
.card .tag { margin-top: auto; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-2); font-weight: 700; }

.card.col-3 { grid-column: span 3; }
.card.col-2 { grid-column: span 2; }
.card.col-4 { grid-column: span 4; }
.card.col-6 { grid-column: span 6; }

/* feature card hero (feed) */
.card.feature-hero .core { flex-direction: row; align-items: center; gap: 30px; padding: 32px; }
.card.feature-hero .ftext { flex: 1; }
.card.feature-hero h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.card.feature-hero .fimg { width: clamp(140px, 26vw, 230px); border-radius: 18px; border: 1px solid var(--line); }

/* ---------------- how it works (overlay) ---------------- */
.how-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(34px, 5vw, 64px); align-items: center; margin-top: 56px; }
.how-visual { padding: 18px; border-radius: var(--radius-lg); background: rgba(255,255,255,0.03); border: 1px solid var(--line-soft); box-shadow: var(--shadow-soft); }
.how-visual img { width: 100%; border-radius: calc(var(--radius-lg) - 12px); }
.how-steps { display: flex; flex-direction: column; gap: 6px; }
.step { display: grid; grid-template-columns: 46px 1fr; gap: 20px; padding: 22px 4px; border-bottom: 1px solid var(--line-soft); }
.step:last-child { border-bottom: none; }
.step .num {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.1rem; color: var(--gold);
  border: 1px solid var(--line); background: rgba(56,189,248,0.07);
}
.step h4 { font-size: 1.16rem; margin-bottom: 6px; }
.step p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------------- results / metrics ---------------- */
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 56px; }
.metric {
  padding: 30px 26px; border-radius: var(--radius); text-align: left;
  background: var(--glass-2); border: 1px solid var(--line-soft);
}
.metric .big { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 2.9rem); color: var(--gold); line-height: 1; }
.metric .lbl { color: var(--ink-soft); margin-top: 12px; font-size: 0.92rem; }
.metric .src { color: var(--ink-faint); font-size: 0.72rem; margin-top: 10px; }

.illus-note {
  margin-top: 26px; display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.8rem; color: var(--ink-mute); padding: 8px 16px; border-radius: 999px;
  border: 1px dashed var(--line); background: rgba(56,189,248,0.04);
}
.illus-note svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 1.6; }

/* savings table */
.savings { margin-top: 40px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-soft); }
.savings table { width: 100%; border-collapse: collapse; }
.savings caption { caption-side: top; text-align: left; padding: 22px 26px 0; color: var(--ink-mute); font-size: 0.86rem; }
.savings th, .savings td { padding: 16px 26px; text-align: left; font-size: 0.95rem; border-bottom: 1px solid var(--line-soft); }
.savings thead th { background: rgba(56,189,248,0.06); color: var(--gold); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; }
.savings td:last-child, .savings th:last-child { text-align: right; color: var(--ink); font-weight: 600; white-space: nowrap; }
.savings tbody tr:hover { background: rgba(255,255,255,0.02); }
.savings tr.total td { background: rgba(56,189,248,0.08); color: var(--gold); font-weight: 700; border-bottom: none; }

/* ---------------- pricing ---------------- */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 56px; }
.price {
  position: relative; display: flex; flex-direction: column; padding: 6px; border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01)); border: 1px solid var(--line-soft);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.price:hover { transform: translateY(-5px); }
.price.featured { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.price .pcore { background: var(--glass-2); border-radius: calc(var(--radius-lg) - 6px); padding: 30px 26px; display: flex; flex-direction: column; flex: 1; box-shadow: inset 0 1px 1px rgba(255,255,255,0.06); }
.price .plan { font-family: var(--font-display); font-size: 1.4rem; }
.price .who { color: var(--ink-mute); font-size: 0.86rem; margin-top: 4px; }
.price .amt { margin-top: 22px; display: flex; align-items: baseline; gap: 6px; }
.price .amt .cur { color: var(--gold); font-size: 1.1rem; font-weight: 700; }
.price .amt .val { font-family: var(--font-display); font-size: 2.7rem; color: var(--ink); line-height: 1; }
.price .amt .per { color: var(--ink-mute); font-size: 0.86rem; }
.price ul { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.price li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.92rem; color: var(--ink-soft); }
.price li svg { width: 17px; height: 17px; stroke: var(--gold); fill: none; stroke-width: 2; margin-top: 3px; flex-shrink: 0; }
.price .btn { margin-top: 26px; justify-content: center; width: 100%; padding: 13px 20px; }
.price .badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(100deg, var(--gold-2), var(--gold-lo)); color: #FFFFFF; font-size: 0.66rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; white-space: nowrap; }
.price-foot { margin-top: 30px; color: var(--ink-mute); font-size: 0.9rem; text-align: center; }
.price-foot b { color: var(--gold); font-weight: 700; }

/* ---------------- testimonial / quote ---------------- */
.quote-card {
  margin-top: 56px; padding: clamp(34px, 6vw, 64px); border-radius: var(--radius-lg);
  background:
    radial-gradient(600px 300px at 90% 0%, rgba(56,189,248,0.12), transparent 60%),
    var(--glass-2);
  border: 1px solid var(--line); box-shadow: var(--shadow-soft); position: relative; overflow: hidden;
}
.quote-card .mark { font-family: var(--font-display); font-size: 6rem; line-height: 0.6; color: var(--gold); opacity: 0.4; }
.quote-card blockquote { font-family: var(--font-display); font-size: clamp(1.3rem, 2.8vw, 2rem); line-height: 1.3; margin: 14px 0 0; max-width: 880px; letter-spacing: -0.01em; }
.quote-card .by { margin-top: 26px; display: flex; align-items: center; gap: 14px; color: var(--ink-soft); }
.quote-card .by .av { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--plum-4), var(--plum-2)); border: 1px solid var(--line); display: grid; place-items: center; font-family: var(--font-display); color: var(--gold); }
.quote-card .by b { color: var(--ink); display: block; }
.quote-card .by span { font-size: 0.84rem; }

/* ---------------- security ---------------- */
.sec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
.sec {
  padding: 30px; border-radius: var(--radius); background: var(--glass-2); border: 1px solid var(--line-soft);
}
.sec .icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(56,189,248,0.1); border: 1px solid var(--line); color: var(--gold); margin-bottom: 18px; }
.sec .icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.sec h4 { font-size: 1.16rem; margin-bottom: 10px; }
.sec p { color: var(--ink-soft); font-size: 0.93rem; }

/* ---------------- CTA band ---------------- */
.cta-band { position: relative; margin: 0 var(--pad); border-radius: clamp(24px, 4vw, 40px); overflow: hidden; }
.cta-inner {
  position: relative; padding: clamp(50px, 8vw, 96px) var(--pad); text-align: center;
  background-image: url("../assets/cta_band.png"); background-size: cover; background-position: center;
}
.cta-inner::before { content: ""; position: absolute; inset: 0; background: rgba(11,8,23,0.35); }
.cta-inner > * { position: relative; }
.cta-inner h2 { font-size: clamp(2rem, 4.6vw, 3.2rem); max-width: 720px; margin: 0 auto; }
.cta-inner p { color: var(--ink-soft); max-width: 560px; margin: 20px auto 0; font-size: 1.06rem; }
.cta-inner .hero-cta { justify-content: center; margin-top: 36px; }

/* ---------------- contact / demo form ---------------- */
.demo-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(34px, 5vw, 64px); align-items: start; margin-top: 56px; }
.demo-info h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.demo-info p { color: var(--ink-soft); margin-top: 16px; }
.demo-info ul { margin-top: 26px; display: flex; flex-direction: column; gap: 16px; }
.demo-info li { display: flex; gap: 13px; align-items: flex-start; color: var(--ink-soft); font-size: 0.96rem; }
.demo-info li svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.7; margin-top: 2px; flex-shrink: 0; }
.demo-info .contact-line { margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line-soft); color: var(--ink-mute); font-size: 0.9rem; }
.demo-info .contact-line a { color: var(--gold); }

.form-card { padding: 8px; border-radius: var(--radius-lg); background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01)); border: 1px solid var(--line-soft); }
.form-core { padding: clamp(24px, 4vw, 38px); border-radius: calc(var(--radius-lg) - 8px); background: var(--glass-2); box-shadow: inset 0 1px 1px rgba(255,255,255,0.06); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 8px; letter-spacing: 0.02em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border-radius: 12px; font-family: inherit; font-size: 0.95rem;
  color: var(--ink); background: rgba(11,8,23,0.5); border: 1px solid var(--line-soft);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(56,189,248,0.15); }
.field textarea { resize: vertical; min-height: 96px; }
.field.row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 6px; padding: 15px 24px; }
.form-note { margin-top: 16px; font-size: 0.78rem; color: var(--ink-faint); text-align: center; }
.form-success {
  display: none; margin-top: 18px; padding: 16px 18px; border-radius: 12px;
  background: rgba(107,227,160,0.1); border: 1px solid rgba(107,227,160,0.3); color: #BFF0D4; font-size: 0.9rem;
}
.form-success.show { display: block; }

/* ---------------- footer ---------------- */
.footer { padding: clamp(60px, 8vw, 90px) 0 36px; border-top: 1px solid var(--line-soft); margin-top: clamp(40px, 8vw, 90px); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.foot-brand .brand { font-size: 1.3rem; margin-bottom: 16px; }
.foot-brand p { color: var(--ink-mute); font-size: 0.92rem; max-width: 320px; }
.foot-col h5 { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 16px; font-family: var(--font-body); font-weight: 700; }
.foot-col a, .foot-col span { display: block; color: var(--ink-mute); font-size: 0.92rem; padding: 6px 0; transition: color 0.3s var(--ease); }
.foot-col a:hover { color: var(--ink); }
.foot-bottom { margin-top: 50px; padding-top: 26px; border-top: 1px solid var(--line-soft); display: flex; flex-wrap: wrap; gap: 14px 30px; justify-content: space-between; align-items: center; }
.foot-ip { color: var(--gold-2); font-size: 0.82rem; font-weight: 600; }
.foot-bottom .meta { color: var(--ink-faint); font-size: 0.8rem; max-width: 640px; }

/* ---------------- reveal animation ---------------- */
.reveal { opacity: 0; transform: translateY(28px); filter: blur(6px); transition: opacity 0.9s var(--ease-soft), transform 0.9s var(--ease-soft), filter 0.9s var(--ease-soft); }
.reveal.in { opacity: 1; transform: none; filter: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* ---------------- sub-page hero ---------------- */
.subhero { padding-top: clamp(150px, 22vh, 210px); padding-bottom: clamp(20px, 4vw, 50px); }
.subhero h1 { font-size: clamp(2.4rem, 6vw, 4rem); margin-top: 22px; }
.subhero .lead { color: var(--ink-soft); font-size: clamp(1.05rem, 1.8vw, 1.25rem); margin-top: 22px; max-width: 640px; }

/* feature detail list */
.feat-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 56px; }
.feat {
  display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 28px;
  border-radius: var(--radius); background: var(--glass-2); border: 1px solid var(--line-soft);
  transition: border-color 0.4s var(--ease), transform 0.5s var(--ease);
}
.feat:hover { border-color: var(--line); transform: translateY(-3px); }
.feat .icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: rgba(56,189,248,0.1); border: 1px solid var(--line); color: var(--gold); }
.feat .icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.feat h3 { font-size: 1.18rem; margin-bottom: 8px; }
.feat p { color: var(--ink-soft); font-size: 0.94rem; }
.feat .status { display: inline-block; margin-top: 12px; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.status.live { color: #6BE3A0; background: rgba(107,227,160,0.1); border: 1px solid rgba(107,227,160,0.25); }
.status.gated { color: var(--gold); background: rgba(56,189,248,0.1); border: 1px solid var(--line); }

/* FAQ */
.faq { margin-top: 48px; max-width: 820px; }
.faq details { border-bottom: 1px solid var(--line-soft); padding: 8px 0; }
.faq summary { list-style: none; cursor: pointer; padding: 20px 0; font-family: var(--font-display); font-size: 1.15rem; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--gold); flex-shrink: 0; transition: transform 0.4s var(--ease); font-size: 1.2rem; }
.faq details[open] summary .pm { transform: rotate(45deg); }
.faq details p { color: var(--ink-soft); padding: 0 0 22px; font-size: 0.97rem; max-width: 720px; }

/* ---------------- responsive ---------------- */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: 2; max-width: 320px; margin: 8px auto 0; }
  .how-grid, .demo-grid { grid-template-columns: 1fr; }
  .metrics, .price-grid { grid-template-columns: repeat(2, 1fr); }
  .pain-grid, .sec-grid { grid-template-columns: 1fr; }
  .bento .card.col-3, .bento .card.col-2, .bento .card.col-4 { grid-column: span 6; }
  .card.feature-hero .core { flex-direction: column; text-align: left; align-items: flex-start; }
  .feat-list { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta .btn { display: none; }
  .burger { display: grid; place-items: center; }
  .metrics, .price-grid { grid-template-columns: 1fr; }
  .hero-trust .tdiv { display: none; }
  .savings { overflow-x: auto; }
  .savings table { min-width: 520px; }
  .foot-grid { grid-template-columns: 1fr; }
  /* shrink ribbon and lift it so it never sits over the burger menu */
  .ribbon { top: 10px; right: -66px; padding: 5px 64px; font-size: 8px; letter-spacing: 0.1em; }
  /* keep the burger clear of the corner ribbon */
  .nav { padding-right: 8px; }
  .burger { margin-right: 2px; }
  .nav-shell { padding-top: 14px; }
}
@media (max-width: 400px) {
  /* on very narrow screens, hide the corner ribbon and show an inline preview pill instead */
  .ribbon { display: none; }
  .nav::after {
    content: "PREVIEW"; position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
    font-size: 8px; font-weight: 800; letter-spacing: 0.18em; color: #FFFFFF;
    background: linear-gradient(100deg, var(--gold-2), var(--gold-lo)); padding: 3px 12px; border-radius: 999px;
  }
  .nav { position: relative; }
}

/* ---- human band: built by an operator ---- */
.human-band { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.human-photo img { width: 100%; border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.human-copy h2 { margin-top: 14px; }
.human-copy .lead { margin-top: 16px; }
.human-copy p { color: var(--ink-soft); }
@media (max-width: 900px) { .human-band { grid-template-columns: 1fr; } }

/* ---- collapsible FAQ ---- */
.faq { max-width: 760px; margin: 28px auto 0; display: grid; gap: 12px; }
.faq details { border: 1px solid var(--line-soft); border-radius: 16px; background: rgba(255,255,255,0.03); overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 18px 22px; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: #fff; }
.faq .fq-ic { width: 18px; height: 18px; flex: none; position: relative; }
.faq .fq-ic::before, .faq .fq-ic::after { content: ""; position: absolute; background: var(--gold); border-radius: 2px; }
.faq .fq-ic::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq .fq-ic::after { left: 8px; top: 0; width: 2px; height: 18px; transition: transform .2s, opacity .2s; }
.faq details[open] .fq-ic::after { transform: rotate(90deg); opacity: 0; }
.faq details p { padding: 0 22px 20px; margin: 0; color: var(--ink-soft); line-height: 1.6; }
.faq details a { color: var(--gold); }
