/* Renomatics — light modern redesign (Stripe-inspired) */
:root {
  --bg: #ffffff;
  --bg-soft: #f6f9fc;
  --bg-card: #ffffff;
  --ink: #061b31;
  --ink-2: #273951;
  --body: #64748d;
  --muted: #8b9bb0;
  --border: #e5edf5;
  --border-purple: #c8c9fc;
  --purple: #533afd;
  --purple-hover: #4434d4;
  --purple-soft: #eef0ff;
  --magenta: #f96bee;
  --ruby: #ea2261;
  --green: #108c3d;
  --green-bg: rgba(21, 190, 83, 0.14);
  --amber: #9b6829;
  --amber-bg: rgba(155, 104, 41, 0.12);
  --rose: #be123c;
  --rose-bg: rgba(244, 63, 94, 0.1);
  --sky: #0369a1;
  --sky-bg: rgba(14, 165, 233, 0.12);
  --shadow-sm: rgba(23, 23, 23, 0.06) 0 3px 8px;
  --shadow: rgba(50, 50, 93, 0.12) 0 15px 35px, rgba(0, 0, 0, 0.06) 0 5px 15px;
  --shadow-lg: rgba(50, 50, 93, 0.22) 0 30px 45px -20px, rgba(0, 0, 0, 0.08) 0 18px 36px -18px;
  --radius: 10px;
  --radius-lg: 16px;
  --max: 1120px;
  --font: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: "Source Code Pro", ui-monospace, SFMono-Regular, Menlo, monospace;
  --nav-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
strong { color: var(--ink); font-weight: 600; }
button { font: inherit; border: 0; background: none; cursor: pointer; }

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* Ambient background */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(83, 58, 253, 0.09), transparent 55%),
    radial-gradient(900px 500px at 90% 5%, rgba(249, 107, 238, 0.08), transparent 50%),
    #fff;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: floaty 18s ease-in-out infinite;
}
.orb-a {
  width: 420px; height: 420px;
  left: -80px; top: 120px;
  background: radial-gradient(circle, rgba(83,58,253,.35), transparent 70%);
}
.orb-b {
  width: 360px; height: 360px;
  right: -60px; top: 40px;
  background: radial-gradient(circle, rgba(249,107,238,.28), transparent 70%);
  animation-delay: -6s;
}
.orb-c {
  width: 300px; height: 300px;
  left: 40%; bottom: 10%;
  background: radial-gradient(circle, rgba(83,58,253,.12), transparent 70%);
  animation-delay: -11s;
}
.grid-fade {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 27, 49, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 27, 49, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 0%, #000 20%, transparent 75%);
  opacity: 0.7;
}
@keyframes floaty {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(20px, -24px, 0) scale(1.05); }
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  backdrop-filter: blur(14px) saturate(1.2);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.nav.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 8px 30px rgba(50, 50, 93, 0.06);
  background: rgba(255, 255, 255, 0.92);
}
.nav-inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  z-index: 2;
}
.brand-mark { display: grid; place-items: center; }
.brand-name { font-size: 1.05rem; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav-links a {
  padding: 0.45rem 0.75rem;
  font-size: 0.92rem;
  color: var(--ink-2);
  border-radius: 8px;
  transition: background .15s, color .15s;
}
.nav-links a:hover { background: var(--purple-soft); color: var(--purple); }
.nav-actions { display: flex; align-items: center; gap: 0.5rem; }
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  place-items: center;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.nav-toggle span {
  display: block;
  width: 16px; height: 1.5px;
  background: var(--ink);
  margin: 3px auto;
  transition: transform .2s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 8px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: transform .15s, background .15s, box-shadow .15s, border-color .15s, color .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: 0.5rem 0.9rem; font-size: 0.9rem; }
.btn-lg { padding: 0.85rem 1.25rem; font-size: 1rem; }
.btn-primary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 8px 20px rgba(83, 58, 253, 0.28);
}
.btn-primary:hover { background: var(--purple-hover); box-shadow: 0 12px 28px rgba(83, 58, 253, 0.35); }
.btn-secondary {
  background: #fff;
  color: var(--purple);
  border: 1px solid var(--border-purple);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { background: var(--purple-soft); }
.btn-ghost {
  color: var(--ink-2);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.6);
}
.btn-ghost:hover { border-color: var(--border-purple); color: var(--purple); }
.btn-white {
  background: #fff;
  color: var(--purple);
  box-shadow: var(--shadow);
}
.btn-white:hover { box-shadow: var(--shadow-lg); }
.btn-ghost-light {
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.1); }
.btn-block { width: 100%; }

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0 2.5rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem 0.35rem 0.5rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  color: var(--ink-2);
  font-size: 0.84rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.pill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(16, 140, 61, 0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 140, 61, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(16, 140, 61, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 140, 61, 0); }
}
.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 4.6vw, 3.55rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--ink);
}
.grad-text {
  background: linear-gradient(105deg, var(--purple) 0%, #7c6cff 45%, var(--magenta) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  margin: 0 0 1.5rem;
  max-width: 34rem;
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--body);
  line-height: 1.55;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.hero-trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--ink-2);
}
.hero-trust svg { color: var(--purple); flex-shrink: 0; }

/* Product mock */
.hero-visual { position: relative; }
.mock-shell { position: relative; perspective: 1200px; }
.mock-glow {
  position: absolute;
  inset: 10% -5% -10%;
  background: radial-gradient(circle at 50% 40%, rgba(83,58,253,.25), rgba(249,107,238,.12), transparent 70%);
  filter: blur(20px);
  z-index: 0;
}
.mock-window {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotateY(-6deg) rotateX(4deg);
  transition: transform .5s ease;
}
.mock-shell:hover .mock-window { transform: rotateY(-2deg) rotateX(1deg); }
.mock-chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.9rem;
  background: linear-gradient(180deg, #fbfcfe, #f3f6fa);
  border-bottom: 1px solid var(--border);
}
.mock-chrome .dot {
  width: 9px; height: 9px; border-radius: 50%;
}
.dot.r { background: #ff5f57; }
.dot.y { background: #febc2e; }
.dot.g { background: #28c840; }
.mock-title {
  margin-left: 0.5rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted);
}
.mock-body {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.6rem;
  padding: 1rem;
  align-items: stretch;
  min-height: 260px;
}
.mock-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.mock-bubble {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px 12px 12px 4px;
  padding: 0.75rem 0.85rem;
  font-size: 0.82rem;
  color: var(--ink-2);
  line-height: 1.45;
  min-height: 7.5rem;
}
.mock-meta {
  margin-top: 0.55rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--green);
  font-weight: 600;
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  animation: pulse 1.8s infinite;
}
.mock-arrow {
  display: grid;
  place-items: center;
  opacity: 0.9;
  animation: nudge 2.2s ease-in-out infinite;
}
@keyframes nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}
.mock-card {
  background: linear-gradient(180deg, #fff, #fafbff);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
  box-shadow: var(--shadow-sm);
}
.mock-row {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.35rem 0;
  border-bottom: 1px dashed #edf2f7;
  font-size: 0.78rem;
}
.mock-row:last-of-type { border-bottom: 0; }
.mock-row span { color: var(--muted); }
.mock-row b { color: var(--ink); font-weight: 600; text-align: right; }
.mock-row.warn b { color: var(--amber); }
.mock-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.55rem;
}
.mock-tags span {
  font-size: 0.68rem;
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
  background: var(--purple-soft);
  color: var(--purple);
  font-weight: 600;
}
.mock-tags .ok {
  background: var(--green-bg);
  color: var(--green);
}
.mock-gate {
  margin-top: 0.55rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  color: var(--ink-2);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.3rem 0.55rem;
}
.float-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow);
  animation: bob 4s ease-in-out infinite;
}
.fb-1 { left: -12px; bottom: 18%; }
.fb-2 { right: -8px; top: 18%; animation-delay: -1.5s; }
.fb-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--purple-soft);
  font-size: 0.75rem;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Strip */
.strip {
  position: relative;
  z-index: 1;
  padding: 1.25rem 0 2.5rem;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.strip-item {
  background: rgba(255,255,255,.92);
  padding: 1.1rem 1.2rem;
}
.strip-k {
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.strip-v {
  margin-top: 0.2rem;
  font-size: 0.88rem;
  color: var(--body);
}

/* Sections */
.section {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0;
}
.section-soft { background: linear-gradient(180deg, rgba(246,249,252,.9), rgba(255,255,255,.4)); }
.section-head { max-width: 40rem; margin-bottom: 2.25rem; }
.eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
}
.eyebrow.light { color: rgba(255,255,255,.75); }
h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
}
.lede {
  margin: 0;
  font-size: 1.08rem;
  color: var(--body);
  max-width: 38rem;
}
.lede.light { color: rgba(255,255,255,.78); }

/* Cards */
.cards.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.3rem;
  box-shadow: var(--shadow-sm);
}
.card-lift {
  transition: transform .25s, box-shadow .25s;
}
.card-lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card h3 {
  margin: 0.85rem 0 0.45rem;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.card p {
  margin: 0;
  color: var(--body);
  font-size: 0.98rem;
}
.card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
}
.ci-rose { background: var(--rose-bg); color: var(--rose); }
.ci-amber { background: var(--amber-bg); color: var(--amber); }
.ci-sky { background: var(--sky-bg); color: var(--sky); }

/* Service */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  min-height: 260px;
}
.svc-num {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--purple);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.service-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.service-card p {
  margin: 0 0 1rem;
  color: var(--body);
  flex: 1;
}
.svc-art { margin-top: auto; height: 72px; display: flex; align-items: flex-end; }
.mini-chart { width: 100%; height: 72px; }
.draw-path {
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  animation: draw 2.4s ease forwards 0.3s;
}
@keyframes draw { to { stroke-dashoffset: 0; } }
.bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  width: 100%;
  height: 72px;
}
.bars span {
  flex: 1;
  height: var(--h);
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, #7c6cff, var(--purple));
  animation: grow 1.2s ease both;
}
.bars span:nth-child(2) { animation-delay: .1s; }
.bars span:nth-child(3) { animation-delay: .2s; }
.bars span:nth-child(4) { animation-delay: .3s; }
.bars span:nth-child(5) { animation-delay: .4s; }
@keyframes grow {
  from { transform: scaleY(0.2); opacity: 0.4; transform-origin: bottom; }
  to { transform: scaleY(1); opacity: 1; transform-origin: bottom; }
}
.loop { width: 100%; justify-content: flex-start; }
.spin-arc { transform-origin: 40px 40px; animation: spin 3.5s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.promise {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-purple);
  background: linear-gradient(135deg, #f8f7ff, #fff 55%, #fff7fc);
  box-shadow: var(--shadow-sm);
}
.promise h3 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
  font-weight: 600;
}
.promise ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink-2);
}
.promise li { margin: 0.25rem 0; }
.promise-line {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.4;
}

/* Modules */
.modules {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.9rem;
}
.module {
  grid-column: span 2;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.module:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--border-purple);
}
.module.featured {
  background: linear-gradient(180deg, #fbfaff, #fff);
  border-color: #d9dbff;
  box-shadow: var(--shadow);
}
.module:nth-child(4),
.module:nth-child(5) {
  grid-column: span 3;
}
.module-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.module-id {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--purple);
}
.module h3 {
  margin: 0 0 0.4rem;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.module p {
  margin: 0 0 0.85rem;
  color: var(--body);
  font-size: 0.95rem;
}
.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--bg-soft);
  color: var(--ink-2);
  border: 1px solid var(--border);
}
.tag-pilot {
  background: var(--purple-soft);
  color: var(--purple);
  border-color: #d6d8ff;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  max-width: 820px;
}
.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.6rem 1.5rem 1.4rem;
  box-shadow: var(--shadow-sm);
}
.price-featured {
  border-color: transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--purple), var(--magenta)) border-box;
  border: 1.5px solid transparent;
  box-shadow: var(--shadow-lg);
}
.price-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), #7c6cff);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}
.price-label {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-2);
}
.price-amount {
  font-size: 2.6rem;
  font-weight: 300;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
}
.price-amount span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--body);
  letter-spacing: 0;
  margin-left: 0.15rem;
}
.price-period {
  margin: 0.45rem 0 1.1rem;
  color: var(--body);
  font-size: 0.92rem;
}
.price-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}
.price-list li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.4rem;
  color: var(--ink-2);
  font-size: 0.95rem;
  border-top: 1px solid #f0f4f8;
}
.price-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.7rem;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-soft);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
}
.step-rail { display: flex; flex-direction: column; align-items: center; }
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--purple);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 18px rgba(83,58,253,.25);
}
.step-line {
  width: 2px;
  flex: 1;
  min-height: 24px;
  margin-top: 0.4rem;
  background: linear-gradient(180deg, var(--border-purple), transparent);
  display: none;
}
.step h3 {
  margin: 0.15rem 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 600;
}
.step p { margin: 0; color: var(--body); }

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: start;
}
.check-list, .muted-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.7rem;
  color: var(--ink-2);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.7rem;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--green-bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23108c3d' stroke-width='3'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/10px no-repeat;
}
.muted-list li {
  padding: 0.4rem 0;
  color: var(--body);
  border-bottom: 1px dashed var(--border);
}
.muted-list li:last-child { border-bottom: 0; }
.card-tall { padding: 1.4rem; }
.divider {
  height: 1px;
  background: var(--border);
  margin: 1rem 0;
}
.small-label {
  margin: 0 0 0.55rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.flywheel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}
.fly-arr { color: var(--purple); opacity: 0.7; }

/* CTA */
.cta-section { padding-bottom: 5rem; }
.cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 3rem 2.25rem;
  background: linear-gradient(135deg, #1c1e54 0%, #2a2380 45%, #533afd 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.cta-orbs {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(400px 200px at 15% 20%, rgba(249,107,238,.35), transparent 60%),
    radial-gradient(350px 220px at 85% 80%, rgba(255,255,255,.12), transparent 55%);
  pointer-events: none;
}
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 { color: #fff; max-width: 20ch; }
.cta-box .hero-cta { margin-top: 1.4rem; }
.cta-note {
  margin: 1.1rem 0 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,.7);
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  background: #fff;
  padding: 2.25rem 0 2rem;
}
.footer-inner {
  display: grid;
  gap: 1.25rem;
}
.footer-tag {
  margin: 0.55rem 0 0;
  color: var(--body);
  font-size: 0.92rem;
  max-width: 28rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}
.footer-links a {
  color: var(--ink-2);
  font-size: 0.92rem;
}
.footer-links a:hover { color: var(--purple); }
.footer-copy {
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted);
}

/* Reveal — only hide when JS has armed the page */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
html.js [data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .mock-window { transform: none; }
  .mock-shell:hover .mock-window { transform: none; }
  .fb-1, .fb-2 { display: none; }
  .strip-grid { grid-template-columns: 1fr 1fr; }
  .cards.three, .service-grid, .steps, .pricing-grid, .split { grid-template-columns: 1fr; }
  .modules { grid-template-columns: 1fr; }
  .module, .module:nth-child(4), .module:nth-child(5) { grid-column: auto; }
  .promise { grid-template-columns: 1fr; }
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem 1rem;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .nav-links.is-open { display: flex; }
  .nav-toggle { display: grid; }
  .hide-sm { display: none !important; }
}
@media (max-width: 560px) {
  .strip-grid { grid-template-columns: 1fr; }
  .mock-body { grid-template-columns: 1fr; }
  .mock-arrow { transform: rotate(90deg); padding: 0.25rem 0; }
  .hero { padding-top: 2.25rem; }
  .cta-box { padding: 2.1rem 1.25rem; }
  .hero-cta .btn { width: 100%; }
}

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