/* ═══════════════════════════════════════════════
   SaaSgate — saasgate.xyz
   ═══════════════════════════════════════════════ */

:root {
  --bg:            #08080a;
  --bg-2:          #0b0b0e;
  --panel:         #101014;
  --panel-2:       #141419;
  --line:          rgba(255,255,255,.07);
  --line-2:        rgba(255,255,255,.12);

  --text:          #f2f2f4;
  --text-2:        #a4a4ae;
  --text-3:        #6e6e78;

  --accent:        #f0263f;
  --accent-2:      #ff4d63;
  --accent-soft:   rgba(240,38,63,.12);
  --accent-line:   rgba(240,38,63,.32);

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

  --container:     1200px;
  --gutter:        24px;

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -.03em; line-height: 1.08; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: fixed; top: -100px; left: 16px; z-index: 200;
  background: var(--accent); color: #fff; padding: 10px 16px; border-radius: 10px;
  font-size: 14px; font-weight: 600;
}
.skip-link:focus { top: 16px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container.narrow { max-width: 880px; }

/* ── background grid lines ─────────────────── */
.grid-lines {
  position: fixed; inset: 0;
  z-index: 0; pointer-events: none;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex; justify-content: space-between;
}
.grid-lines span {
  width: 1px; height: 100%;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.055) 12%, rgba(255,255,255,.055) 88%, transparent);
}
.grid-lines span:first-child, .grid-lines span:last-child { opacity: .8; }
@media (max-width: 820px) { .grid-lines span:nth-child(2), .grid-lines span:nth-child(3) { display: none; } }

main, .footer, .nav { position: relative; z-index: 1; }

/* ═══════════ NAV ═══════════ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,8,10,.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(8,8,10,.88); }

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex; align-items: center; gap: 24px;
}

.brand { display: inline-flex; align-items: center; gap: 9px; flex: none; }
.brand-mark {
  width: 26px; height: 26px; display: grid; place-items: center;
  border-radius: 8px;
  background: linear-gradient(140deg, var(--accent), #b3122a);
  color: #fff;
  box-shadow: 0 4px 16px rgba(240,38,63,.32);
}
.brand-mark svg { width: 17px; height: 17px; }
.brand-name { font-weight: 600; font-size: 16.5px; letter-spacing: -.02em; }

.nav-links {
  display: flex; align-items: center; gap: 4px;
  margin: 0 auto;
}
.nav-links a {
  padding: 7px 13px; border-radius: 999px;
  font-size: 14px; color: var(--text-2);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,.05); }

.nav-actions { display: flex; align-items: center; gap: 10px; flex: none; }

/* ── buttons ─────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
  letter-spacing: -.01em;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .18s var(--ease), background .2s, border-color .2s, box-shadow .25s, color .2s;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: #fff;
  box-shadow: 0 6px 20px -6px rgba(240,38,63,.55), inset 0 1px 0 rgba(255,255,255,.2);
}
.btn-primary:hover { box-shadow: 0 10px 30px -6px rgba(240,38,63,.7), inset 0 1px 0 rgba(255,255,255,.28); }

.btn-outline {
  background: rgba(255,255,255,.035);
  border-color: var(--line-2);
  color: var(--text);
}
.btn-outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.22); }

.btn-ghost { color: var(--text-2); }
.btn-ghost:hover { color: var(--text); background: rgba(255,255,255,.05); }

.btn-lg { padding: 13px 24px; font-size: 15px; }
.btn-block { display: flex; width: 100%; }

/* ── mobile menu ─────────────────── */
.nav-toggle {
  display: none;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  cursor: pointer;
  padding: 0;
  place-items: center; align-content: center; justify-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block; width: 15px; height: 1.5px; background: var(--text); border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child  { transform: translateY(-3.25px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 8px var(--gutter) 20px;
  border-top: 1px solid var(--line);
  background: rgba(8,8,10,.96);
}
.mobile-menu a {
  padding: 13px 4px; font-size: 15px; color: var(--text-2);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-child { border: 0; }
.mobile-menu .mm-cta {
  margin-top: 14px; text-align: center; color: #fff; font-weight: 500;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  border-radius: 999px; padding: 12px;
}

/* ═══════════ SECTION PRIMITIVES ═══════════ */
.section { padding: 110px 0; position: relative; }
.section + .section { border-top: 1px solid var(--line); }

.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 18px;
}
.h2 { font-size: clamp(32px, 4.6vw, 54px); letter-spacing: -.038em; }
.lede { margin-top: 20px; font-size: 17px; color: var(--text-2); max-width: 660px; line-height: 1.65; }

.section-head { margin-bottom: 60px; max-width: 780px; }

/* ═══════════ HERO ═══════════ */
.hero {
  padding: 96px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute; top: -260px; left: 50%; transform: translateX(-50%);
  width: 1100px; height: 700px;
  background: radial-gradient(closest-side, rgba(240,38,63,.16), transparent 72%);
  filter: blur(30px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 48px;
  align-items: end;
}

.hero-title {
  font-size: clamp(42px, 6.4vw, 82px);
  letter-spacing: -.045em;
  line-height: 1.02;
}
.hero-sub {
  margin-top: 24px;
  font-size: 17px; color: var(--text-2);
  max-width: 520px; line-height: 1.65;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-cta.center { justify-content: center; }

.hero-aside { padding-bottom: 6px; }
.hero-note {
  font-size: 15px; color: var(--text);
  padding-left: 16px;
  border-left: 2px solid var(--accent);
  line-height: 1.55;
}
.hero-proof { margin-top: 32px; }
.proof-label {
  display: block;
  font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 14px;
}
.proof-logos { display: flex; flex-wrap: wrap; gap: 8px 10px; }
.proof-logos span {
  font-size: 13px; color: var(--text-2);
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.02);
}

/* ── hero mock ─────────────────── */
.hero-stage { position: relative; margin-top: 72px; }
.stage-glow {
  position: absolute; inset: -6% -4% -22%;
  background: radial-gradient(60% 55% at 50% 45%, rgba(240,38,63,.2), transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.mock {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-2);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.9), inset 0 1px 0 rgba(255,255,255,.07);
  backdrop-filter: blur(8px);
}

.mock-pane {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 0;
}

.mock-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.mock-bar .dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.16); }
.mock-title { font-size: 11.5px; color: var(--text-3); margin-left: 6px; font-family: var(--mono); }
.mock-tag {
  margin-left: auto; font-size: 10px; text-transform: uppercase; letter-spacing: .1em;
  color: #52d18a; background: rgba(82,209,138,.12); padding: 3px 8px; border-radius: 999px;
}

.mock-body { padding: 14px 14px 18px; }
.mock-section {
  font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-3); margin: 14px 0 8px;
}
.mock-section:first-child { margin-top: 0; }
.mock-row {
  display: flex; align-items: center; gap: 9px;
  font-size: 12.5px; color: var(--text-3);
  padding: 5px 0;
}
.mock-row i {
  width: 13px; height: 13px; border-radius: 4px; flex: none;
  border: 1px solid rgba(255,255,255,.14);
}
.mock-row.done { color: var(--text-2); }
.mock-row.done i {
  background: rgba(82,209,138,.16); border-color: rgba(82,209,138,.4);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6.2 5 8.6l4.5-5' fill='none' stroke='%2352d18a' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 11px;
}
.mock-row.active { color: var(--text); }
.mock-row.active i { border-color: var(--accent); background: var(--accent-soft); animation: blink 1.6s ease-in-out infinite; }
@keyframes blink { 50% { box-shadow: 0 0 0 3px rgba(240,38,63,.12); } }

.mock-center { display: flex; flex-direction: column; }
.mock-app-top {
  display: flex; align-items: center; gap: 9px;
  padding: 12px 16px; border-bottom: 1px solid var(--line);
}
.app-dot { width: 18px; height: 18px; border-radius: 6px; background: linear-gradient(140deg, var(--accent), #8f0e21); }
.app-name { font-size: 13px; font-weight: 500; }
.app-badge {
  margin-left: auto; font-size: 10.5px; color: var(--text-3);
  border: 1px solid var(--line); padding: 2px 8px; border-radius: 999px;
}
.mock-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 16px 16px 10px; }
.metric {
  background: rgba(255,255,255,.025); border: 1px solid var(--line);
  border-radius: 10px; padding: 12px;
}
.metric-label { display: block; font-size: 10.5px; color: var(--text-3); text-transform: uppercase; letter-spacing: .09em; }
.metric-value { display: block; font-size: 20px; font-weight: 600; letter-spacing: -.03em; margin-top: 4px; }
.metric-delta { font-size: 11px; color: #52d18a; }
.mock-chart { margin-top: auto; height: 132px; padding: 4px 8px 12px; }
.mock-chart svg { width: 100%; height: 100%; }
.mock-launch {
  display: flex; align-items: center; gap: 9px;
  padding: 12px 16px; border-top: 1px solid var(--line);
  font-size: 12.5px; color: var(--text-2);
}

.pulse {
  width: 7px; height: 7px; border-radius: 50%; flex: none;
  background: #52d18a;
  box-shadow: 0 0 0 0 rgba(82,209,138,.5);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 7px rgba(82,209,138,0); }
  100% { box-shadow: 0 0 0 0 rgba(82,209,138,0); }
}

.mock-code {
  margin: 0; padding: 14px 16px 18px;
  font-family: var(--mono); font-size: 11px; line-height: 1.85;
  color: var(--text-2);
  white-space: pre-wrap; word-break: break-word;
}
.c-dim { color: var(--text-3); }
.c-ok { color: #52d18a; }
.c-key { color: var(--text); }
.c-accent { color: var(--accent-2); font-weight: 600; }

.stage-pills {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 8px;
  margin-top: 44px;
}
.pill {
  font-size: 12.5px; color: var(--text-2);
  padding: 7px 16px; border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.025);
}
.pill:first-child { color: var(--text); border-color: var(--accent-line); background: var(--accent-soft); }

/* ═══════════ INTRO ═══════════ */
.intro-body { margin-top: 28px; display: grid; gap: 18px; }
.intro-body p { font-size: 17px; color: var(--text-2); line-height: 1.7; }
.intro-body strong { color: var(--text); font-weight: 600; }

.intro-split {
  margin-top: 48px;
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  padding: 26px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, rgba(240,38,63,.06), rgba(255,255,255,.015));
}
.split-num { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-2); font-weight: 600; }
.intro-split p { font-size: 20px; letter-spacing: -.02em; margin-top: 4px; }
.split-arrow { color: var(--text-3); width: 40px; flex: none; }

/* ═══════════ PROCESS ═══════════ */
.steps { display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 56px var(--gutter);
  width: 100%;
}
.step + .step { border-top: 1px solid var(--line); }
.step-alt .step-visual { order: 2; }

.step-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: .06em; text-transform: uppercase; font-weight: 600;
  color: var(--accent-2);
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 22px;
}
.step-pill b { color: rgba(255,255,255,.55); font-weight: 600; }
.step-copy h3 { font-size: clamp(24px, 2.6vw, 32px); letter-spacing: -.035em; line-height: 1.15; }
.step-copy > p { margin-top: 16px; color: var(--text-2); font-size: 16px; line-height: 1.65; }

.tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 24px; }
.tags li {
  font-size: 12.5px; color: var(--text-2);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.025);
  padding: 5px 12px; border-radius: 8px;
}

/* ── step visuals ─────────────────── */
.viz {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(240,38,63,.07), transparent 60%),
    linear-gradient(180deg, var(--panel-2), var(--bg-2));
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.viz::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(8,8,10,.85));
}
.viz-frame { position: absolute; inset: 0; padding: 28px; }

/* strategy: node map */
.node-map { position: relative; width: 100%; height: 100%; color: rgba(255,255,255,.14); }
.node-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.node {
  position: absolute;
  font-size: 12px; color: var(--text-2);
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid var(--line-2);
  background: var(--panel);
  box-shadow: 0 8px 22px -12px rgba(0,0,0,.9);
  white-space: nowrap;
}
.node.n1 { left: 4%; top: 12%; }
.node.n2 { left: 44%; top: 42%; color: var(--text); border-color: var(--accent-line); background: linear-gradient(180deg, rgba(240,38,63,.16), rgba(240,38,63,.05)); }
.node.n3 { left: 74%; top: 18%; }
.node.n4 { left: 40%; top: 74%; }
.node.n5 { left: 74%; top: 74%; }

/* design: ui skeleton */
.ui-skeleton {
  display: grid; grid-template-columns: 62px 1fr; gap: 12px;
  height: 78%;
  border: 1px solid var(--line-2); border-radius: 12px;
  background: var(--panel); padding: 12px; overflow: hidden;
}
.uis-side { display: flex; flex-direction: column; gap: 9px; }
.uis-logo { width: 22px; height: 22px; border-radius: 7px; background: linear-gradient(140deg, var(--accent), #8f0e21); }
.uis-line { height: 7px; border-radius: 4px; background: rgba(255,255,255,.07); }
.uis-line.short { width: 60%; }
.uis-main { display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.uis-head { display: flex; align-items: center; gap: 10px; }
.uis-title { height: 10px; width: 40%; border-radius: 5px; background: rgba(255,255,255,.14); }
.uis-btn { height: 18px; width: 54px; border-radius: 999px; background: linear-gradient(180deg, var(--accent-2), var(--accent)); margin-left: auto; }
.uis-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.uis-cards span { height: 40px; border-radius: 8px; background: rgba(255,255,255,.05); border: 1px solid var(--line); }
.uis-block { flex: 1; min-height: 42px; border-radius: 8px; background: linear-gradient(120deg, rgba(240,38,63,.14), rgba(255,255,255,.03)); border: 1px solid var(--line); }
.uis-rows { display: grid; gap: 6px; }
.uis-rows span { height: 7px; border-radius: 4px; background: rgba(255,255,255,.06); }
.uis-rows span:nth-child(2) { width: 80%; }
.uis-rows span:nth-child(3) { width: 55%; }
.swatches { display: flex; gap: 8px; margin-top: 14px; }
.swatches span {
  width: 26px; height: 26px; border-radius: 8px;
  background: var(--s); border: 1px solid var(--line-2);
}

/* build: stack */
.stack { display: grid; gap: 8px; height: 100%; align-content: center; }
.stack-layer {
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px; color: var(--text-2);
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
}
.stack-layer i {
  margin-left: auto; width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.2);
}
.stack-layer:first-child {
  color: var(--text);
  border-color: var(--accent-line);
  background: linear-gradient(90deg, rgba(240,38,63,.18), rgba(240,38,63,.04));
}
.stack-layer:first-child i { background: var(--accent-2); box-shadow: 0 0 8px var(--accent); }
.stack-layer.base { background: rgba(255,255,255,.02); color: var(--text-3); }

/* launch: checklist */
.checklist {
  border: 1px solid var(--line-2); border-radius: 12px;
  background: var(--panel); padding: 14px 16px;
}
.cl-head {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3);
  padding-bottom: 10px; margin-bottom: 8px; border-bottom: 1px solid var(--line);
}
.cl-head span { color: #52d18a; letter-spacing: 0; }
.cl-row { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: var(--text-2); padding: 5px 0; }
.cl-row i {
  width: 14px; height: 14px; border-radius: 5px; flex: none;
  background: rgba(82,209,138,.16); border: 1px solid rgba(82,209,138,.4);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6.2 5 8.6l4.5-5' fill='none' stroke='%2352d18a' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 11px;
}
.launch-live {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 16px; font-size: 12.5px; color: var(--text-2);
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255,255,255,.03);
}

/* ═══════════ PRODUCTS ═══════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.product-card {
  display: flex; flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  transition: transform .3s var(--ease), border-color .3s, background .3s, box-shadow .3s;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-line);
  box-shadow: 0 24px 50px -28px rgba(240,38,63,.5);
}
.pc-top { display: flex; align-items: center; margin-bottom: 22px; }
.pc-logo {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  font-size: 15px; font-weight: 600;
  background: linear-gradient(140deg, rgba(255,255,255,.12), rgba(255,255,255,.03));
  border: 1px solid var(--line-2);
}
.product-card:hover .pc-logo {
  background: linear-gradient(140deg, var(--accent), #8f0e21);
  border-color: transparent; color: #fff;
}
.pc-arrow { margin-left: auto; color: var(--text-3); font-size: 16px; transition: color .25s, transform .25s var(--ease); }
.product-card:hover .pc-arrow { color: var(--accent-2); transform: translate(2px, -2px); }
.product-card h3 { font-size: 21px; }
.pc-tag { margin-top: 8px; font-size: 14.5px; color: var(--text); font-weight: 500; }
.pc-desc { margin-top: 10px; font-size: 14px; color: var(--text-2); line-height: 1.6; flex: 1; }
.pc-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.pc-meta li { font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: .06em; }
.pc-meta li + li::before { content: "· "; }

.proof-strip {
  margin-top: 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  padding: 34px 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, rgba(240,38,63,.09), rgba(255,255,255,.015));
}
.proof-strip h3 { font-size: clamp(21px, 2.4vw, 28px); letter-spacing: -.03em; max-width: 640px; }
.proof-strip h3 em { font-style: normal; color: var(--accent-2); }
.proof-strip p { margin-top: 12px; color: var(--text-2); font-size: 15px; max-width: 640px; }

/* ═══════════ CAPABILITIES ═══════════ */
.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cap {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.02);
  transition: border-color .3s, background .3s, transform .3s var(--ease);
}
.cap:hover { border-color: var(--line-2); background: rgba(255,255,255,.04); transform: translateY(-3px); }
.cap-icon {
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid var(--accent-line);
  background: var(--accent-soft);
  color: var(--accent-2);
  margin-bottom: 20px;
}
.cap-icon svg { width: 21px; height: 21px; }
.cap h3 { font-size: 19px; }
.cap p { margin-top: 10px; font-size: 14.5px; color: var(--text-2); line-height: 1.65; }
.cap-accent {
  background: linear-gradient(150deg, rgba(240,38,63,.12), rgba(255,255,255,.015));
  border-color: var(--accent-line);
}
.cap-link {
  display: inline-block; margin-top: 16px;
  font-size: 14px; color: var(--accent-2); font-weight: 500;
}
.cap-link:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ═══════════ PRICING ═══════════ */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: start; }
.price-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.02);
}
.price-card.featured {
  border-color: var(--accent-line);
  background: linear-gradient(180deg, rgba(240,38,63,.1), rgba(255,255,255,.02) 45%);
  box-shadow: 0 30px 70px -40px rgba(240,38,63,.6);
}
.pcard-flag {
  position: absolute; top: -11px; left: 28px;
  font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: #fff; padding: 4px 12px; border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  box-shadow: 0 6px 18px -6px rgba(240,38,63,.7);
}
.pcard-head h3 { font-size: 22px; }
.price { margin-top: 14px; font-size: 14px; color: var(--text-3); }
.price b { display: block; font-size: 38px; color: var(--text); font-weight: 600; letter-spacing: -.04em; margin-top: 2px; }
.pcard-desc { margin-top: 16px; font-size: 14.5px; color: var(--text-2); line-height: 1.6; }
.best-for {
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line);
  font-size: 13.5px; color: var(--text-2);
}
.best-for span {
  display: block; font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 4px;
}
.list-label { margin-top: 22px; font-size: 13px; color: var(--text-3); }
.feature-list { margin: 20px 0 24px; display: grid; gap: 9px; flex: 1; }
.feature-list li {
  position: relative; padding-left: 24px;
  font-size: 14px; color: var(--text-2); line-height: 1.45;
}
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: 5px;
  width: 14px; height: 14px; border-radius: 5px;
  background: rgba(240,38,63,.14); border: 1px solid var(--accent-line);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6.2 5 8.6l4.5-5' fill='none' stroke='%23ff4d63' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 11px;
}
.pcard-note { font-size: 14.5px; color: var(--text); font-weight: 500; margin-bottom: 20px; line-height: 1.5; }

.price-foot {
  margin-top: 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  padding: 32px 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.02);
}
.price-foot h3 { font-size: 24px; letter-spacing: -.03em; }
.price-foot p { margin-top: 8px; color: var(--text-2); font-size: 15px; max-width: 560px; }

/* ═══════════ AUDIENCE ═══════════ */
.aud-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.aud {
  padding: 28px;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: rgba(255,255,255,.02);
  transition: border-color .3s, background .3s;
}
.aud:hover { border-color: var(--line-2); background: rgba(255,255,255,.04); }
.aud-n {
  display: block; font-family: var(--mono); font-size: 12px;
  color: var(--accent-2); margin-bottom: 18px; letter-spacing: .06em;
}
.aud h3 { font-size: 19px; }
.aud p { margin-top: 10px; font-size: 14.5px; color: var(--text-2); line-height: 1.65; }

/* ═══════════ WHY ═══════════ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.why { padding: 36px; background: var(--bg); }
.why h3 { font-size: 20px; }
.why p { margin-top: 12px; color: var(--text-2); font-size: 15px; line-height: 1.7; }

/* ═══════════ DELIVERABLES ═══════════ */
.deliver-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  padding: 48px;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(240,38,63,.07), rgba(255,255,255,.015));
}
.deliver-copy .h2 { font-size: clamp(28px, 3.4vw, 40px); }
.own {
  display: flex; align-items: center; gap: 10px;
  margin-top: 28px; font-size: 15px; font-weight: 500;
}
.deliver-list { display: grid; gap: 10px; align-content: start; }
.deliver-list li {
  position: relative; padding-left: 26px;
  font-size: 15px; color: var(--text-2);
}
.deliver-list li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 10px rgba(240,38,63,.7);
}

/* ═══════════ MODEL ═══════════ */
.model-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.model-card {
  padding: 40px;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  display: flex; flex-direction: column; align-items: flex-start;
}
.model-tag {
  font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  color: var(--accent-2); background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  padding: 5px 13px; border-radius: 999px; margin-bottom: 24px;
}
.model-card h3 { font-size: clamp(21px, 2.4vw, 27px); letter-spacing: -.03em; }
.model-card p { margin-top: 14px; color: var(--text-2); font-size: 15px; flex: 1; }
.model-card .btn { margin-top: 28px; }

/* ═══════════ FAQ ═══════════ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px;
  font-size: 17px; font-weight: 500; letter-spacing: -.02em;
  cursor: pointer; list-style: none;
  transition: color .2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent-2); }
.chev {
  position: relative; width: 16px; height: 16px; flex: none;
  transition: transform .3s var(--ease);
}
.chev::before, .chev::after {
  content: ""; position: absolute; background: var(--text-2); border-radius: 2px;
  transition: background .2s, opacity .25s;
}
.chev::before { top: 7.5px; left: 0; width: 16px; height: 1.5px; }
.chev::after  { left: 7.5px; top: 0; width: 1.5px; height: 16px; }
.faq details[open] .chev { transform: rotate(90deg); }
.faq details[open] .chev::after { opacity: 0; }
.faq-body { padding: 0 4px 26px; max-width: 720px; }
.faq-body p { color: var(--text-2); font-size: 15.5px; line-height: 1.7; }
.faq-body strong { color: var(--text); }

/* ═══════════ CTA ═══════════ */
.section-cta { padding: 130px 0 140px; overflow: hidden; position: relative; }
.cta-glow {
  position: absolute; bottom: -320px; left: 50%; transform: translateX(-50%);
  width: 1200px; height: 720px;
  background: radial-gradient(closest-side, rgba(240,38,63,.2), transparent 70%);
  filter: blur(40px); pointer-events: none;
}
.cta { text-align: center; max-width: 760px; margin: 0 auto; }
.cta-title { font-size: clamp(40px, 6vw, 76px); letter-spacing: -.045em; line-height: 1.03; }
.cta-sub { margin-top: 24px; font-size: 17px; color: var(--text-2); line-height: 1.65; }
.cta-line {
  margin-top: 22px; font-size: 15px; font-weight: 500; color: var(--text);
  display: inline-block; padding: 9px 18px; border-radius: 999px;
  border: 1px solid var(--accent-line); background: var(--accent-soft);
}

/* ═══════════ FOOTER ═══════════ */
.footer { border-top: 1px solid var(--line); padding: 64px 0 32px; background: var(--bg-2); }
.footer-top { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); gap: 56px; }
.footer-tag { margin-top: 16px; color: var(--text-2); font-size: 14.5px; }
.status { display: flex; align-items: center; gap: 9px; margin-top: 20px; font-size: 13px; color: var(--text-2); }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.footer-cols h4 {
  font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 16px; font-weight: 600;
}
.footer-cols a { display: block; font-size: 14px; color: var(--text-2); padding: 5px 0; transition: color .2s; }
.footer-cols a:hover { color: var(--text); }
.footer-bottom {
  margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 13.5px; color: var(--text-3);
}
.footer-bottom-links { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.footer-bottom-links a:hover { color: var(--text); }

/* ═══════════ REVEAL ═══════════ */
/* Gated on .js so the page is fully visible without JavaScript. */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.js .reveal.in { opacity: 1; transform: none; }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .product-grid, .cap-grid, .aud-grid { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; align-items: start; }
  .hero-aside { padding-bottom: 0; }
}

@media (max-width: 900px) {
  .section { padding: 80px 0; }
  .section-head { margin-bottom: 40px; }
  .mock { grid-template-columns: 1fr; }
  .mock-left { display: none; }
  .step { grid-template-columns: 1fr; gap: 32px; padding: 44px var(--gutter); }
  .step-alt .step-visual { order: 0; }
  .why-grid, .model-grid { grid-template-columns: 1fr; }
  .deliver-wrap { grid-template-columns: 1fr; gap: 36px; padding: 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --gutter: 18px; }
  .nav-toggle { display: grid; }
  .nav-hide-sm { display: none; }
  .mobile-menu { display: flex; }
  .mobile-menu[hidden] { display: none; }
  .hero { padding: 64px 0 70px; }
  .hero-stage { margin-top: 48px; }
  .product-grid, .cap-grid, .aud-grid { grid-template-columns: 1fr; }
  .proof-strip, .price-foot { padding: 26px 24px; }
  .intro-split { padding: 22px; gap: 18px; }
  .split-arrow { transform: rotate(90deg); }
  .model-card, .why { padding: 28px 24px; }
  .product-card, .cap, .aud, .price-card { padding: 24px 22px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .section-cta { padding: 90px 0 100px; }
  .btn { padding: 10px 16px; }
  .mock-right { display: none; }
}

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