/* ============ SEIKO DIGITAL — DESIGN SYSTEM v3 ============ */
/* Light, friendly enterprise aesthetic in the spirit of modern SaaS
   leaders: white + soft lavender-gray surfaces, navy ink, vibrant
   violet->blue->cyan gradients, rounded cards, pill buttons. */

:root {
  --bg: #ffffff;
  --bg-soft: #f6f7fb;
  --bg-tint: #eef1f9;
  --ink: #0c1633;
  --ink-2: #1b2547;
  --muted: #4b587c;
  --muted-2: #5d688a;
  --line: #e7eaf3;
  --violet: #7c3aed;
  --blue: #2563eb;
  --cyan: #06b6d4;
  --coral: #ff6b6b;
  --lime: #a3e635;
  --amber: #fbbf24;
  --grad: linear-gradient(135deg, #7c3aed 0%, #2563eb 55%, #06b6d4 100%);
  --grad-soft: linear-gradient(135deg, rgba(124,58,237,.12), rgba(37,99,235,.12), rgba(6,182,212,.12));
  --font-display: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --radius: 24px;
  --radius-sm: 16px;
  --shadow: 0 24px 60px -28px rgba(12, 22, 51, 0.22);
  --shadow-sm: 0 12px 32px -16px rgba(12, 22, 51, 0.16);
  --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; letter-spacing: -0.02em; color: var(--ink); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section-soft { background: var(--bg-soft); }
.center { text-align: center; }

.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--violet);
  margin-bottom: 14px;
}
.h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); font-weight: 800; margin-bottom: 16px; }
.sub { color: var(--muted); font-size: 1.12rem; max-width: 680px; }
.center .sub { margin: 0 auto; }
.grad-text {
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--violet);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 8px 30px -18px rgba(12,22,51,.25); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 40px; height: 40px; }
.brand span { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; letter-spacing: -0.01em; }
.brand span em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-links a { text-decoration: none; font-weight: 600; font-size: 0.98rem; color: var(--ink-2); transition: color .2s; }
.nav-links a:hover { color: var(--violet); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.burger { display: none; background: none; border: 0; cursor: pointer; padding: 10px; }
.burger span { display: block; width: 26px; height: 3px; border-radius: 3px; background: var(--ink); margin: 5px 0; transition: .25s; }
.mobile-panel { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  padding: 15px 30px; border-radius: 999px; text-decoration: none;
  border: 0; cursor: pointer; transition: transform .2s, box-shadow .2s, filter .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 14px 30px -12px rgba(124, 58, 237, 0.55); }
.btn-primary:hover { filter: brightness(1.06); box-shadow: 0 18px 36px -12px rgba(37, 99, 235, 0.6); }
.btn-outline { background: #fff; color: var(--ink); border: 2px solid var(--line); }
.btn-outline:hover { border-color: var(--violet); color: var(--violet); }
.btn-white { background: #fff; color: var(--ink); box-shadow: 0 14px 30px -14px rgba(0,0,0,.35); }
.btn-lg { padding: 18px 38px; font-size: 1.08rem; }
.btn-sm { padding: 11px 22px; font-size: 0.92rem; }

/* ---------- Badges ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.02em;
  padding: 9px 18px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); color: var(--ink-2);
}
.badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--grad); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.35); opacity: .6; } }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 84px 0 96px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.hero h1 { font-size: clamp(2.6rem, 5.2vw, 4.1rem); font-weight: 800; margin: 22px 0 20px; }
.lead { color: var(--muted); font-size: 1.18rem; max-width: 520px; margin-bottom: 34px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-note { display: flex; gap: 22px; flex-wrap: wrap; color: var(--muted-2); font-size: 0.92rem; font-weight: 600; }
.hero-note span { display: inline-flex; align-items: center; gap: 8px; }
.hero-note .tick { width: 20px; height: 20px; border-radius: 50%; background: var(--grad-soft); display: inline-flex; align-items: center; justify-content: center; color: var(--violet); font-size: 12px; font-weight: 800; }

/* Floating blobs */
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.5; pointer-events: none; z-index: 0; }
.blob.b1 { width: 480px; height: 480px; background: #ddd0ff; top: -140px; right: -120px; }
.blob.b2 { width: 380px; height: 380px; background: #cdeffd; bottom: -160px; left: -120px; }
.blob.b3 { width: 260px; height: 260px; background: #ffe3ec; top: 40%; left: 38%; opacity: .45; }

/* Hero brand scene (mascot) */
.hero-art { position: relative; z-index: 2; }
/* (mascot scene uses .scene-frame above; floating status chips below) */
.flow-float {
  position: absolute; background: #fff; border: 1px solid var(--line); border-radius: 18px;
  box-shadow: var(--shadow-sm); padding: 12px 18px; font-size: 0.85rem; font-weight: 700;
  display: flex; align-items: center; gap: 10px; z-index: 3;
  animation: floaty 5s ease-in-out infinite;
}
.flow-float .fdot { width: 12px; height: 12px; border-radius: 50%; }
.ff-1 { top: -24px; right: 8%; }
.ff-2 { bottom: -22px; left: 6%; animation-delay: 2.2s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Stat band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 8px; }
.stat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 26px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.stat:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.stat-num {
  font-family: var(--font-display); font-weight: 800; font-size: 2.7rem; letter-spacing: -0.02em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--violet); line-height: 1.1;
}
.stat p { color: var(--muted); font-weight: 600; margin-top: 8px; font-size: 0.98rem; }

/* ---------- Capability marquee ---------- */
.marquee { overflow: hidden; padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.marquee-track { display: flex; gap: 18px; width: max-content; animation: marquee 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-display); font-weight: 700; font-size: 1rem; white-space: nowrap;
  padding: 12px 24px; border-radius: 999px; background: var(--bg-soft); border: 1px solid var(--line); color: var(--ink-2);
}
.marquee-track span i { font-style: normal; margin-right: 8px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Feature cards ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 52px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 38px 32px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column;
}
.card::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 6px;
  background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.card:hover::after { transform: scaleX(1); }
.card-icon {
  width: 68px; height: 68px; border-radius: 20px; background: var(--grad);
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
  box-shadow: 0 12px 26px -10px rgba(124,58,237,.5);
}
.card-icon svg { width: 34px; height: 34px; }
.card h3 { font-size: 1.35rem; font-weight: 800; margin-bottom: 12px; }
.card p { color: var(--muted); margin-bottom: 22px; flex: 1; }
.card-link { font-weight: 700; color: var(--violet); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.card-link:hover { gap: 12px; }
.card-link { transition: gap .2s; }
.card .tag {
  position: absolute; top: 22px; right: 22px; font-size: 0.72rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; color: #fff; background: var(--grad);
  padding: 6px 14px; border-radius: 999px;
}

/* ---------- Outcome / quote cards ---------- */
.outcome-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 52px; }
.outcome-card {
  border-radius: var(--radius); padding: 36px 30px; color: var(--ink);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 18px; position: relative; overflow: hidden;
}
.outcome-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 100px; opacity: .14; }
.outcome-card.oc-1::before { background: linear-gradient(135deg, var(--violet), transparent); }
.outcome-card.oc-2::before { background: linear-gradient(135deg, var(--blue), transparent); }
.outcome-card.oc-3::before { background: linear-gradient(135deg, var(--cyan), transparent); }
.outcome-metric {
  font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; letter-spacing: -0.02em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; position: relative;
}
.outcome-card p { color: var(--muted); position: relative; flex: 1; }
.outcome-who { display: flex; align-items: center; gap: 12px; position: relative; }
.outcome-who .avatar {
  width: 46px; height: 46px; border-radius: 50%; background: var(--grad-soft);
  border: 2px solid #fff; box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; color: var(--violet);
}
.outcome-who strong { display: block; font-size: 0.95rem; }
.outcome-who small { color: var(--muted-2); font-size: 0.82rem; }
.fineprint { margin-top: 26px; color: var(--muted-2); font-size: 0.85rem; text-align: center; }

/* ---------- Delivery model ---------- */
.model-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 20px; }
.model-points { display: grid; gap: 22px; margin-top: 30px; }
.model-point { display: flex; gap: 16px; align-items: flex-start; }
.model-point .mp-icon {
  flex: 0 0 52px; width: 52px; height: 52px; border-radius: 16px; background: var(--grad-soft);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.model-point strong { display: block; font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 4px; }
.model-point p { color: var(--muted); font-size: 0.98rem; }
.tz-card {
  background: #fff; border: 1px solid var(--line); border-radius: 28px;
  box-shadow: var(--shadow); padding: 36px 32px; position: relative; overflow: hidden;
}
.tz-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; font-weight: 700; font-size: 0.95rem; }
.tz-row small { color: var(--muted-2); font-weight: 600; }
.tz-track { height: 46px; border-radius: 999px; background: var(--bg-soft); border: 1px solid var(--line); position: relative; margin: 14px 0 26px; overflow: hidden; }
.tz-work { position: absolute; top: 0; bottom: 0; left: 8%; right: 8%; background: var(--grad); border-radius: 999px; opacity: .9; }
.tz-labels { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 0.85rem; z-index: 2; }
.tz-note { color: var(--muted); font-size: 0.92rem; text-align: center; }
.route { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 26px 0 8px; font-family: var(--font-display); font-weight: 800; }
.route .pin { width: 52px; height: 52px; border-radius: 50%; background: var(--grad); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; box-shadow: 0 10px 24px -8px rgba(124,58,237,.5); }
.route .dashes { flex: 1; border-top: 3px dashed #c9b8f5; max-width: 120px; }

/* ---------- Engagement tiers ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 52px; align-items: stretch; }
.tier {
  background: #fff; border: 2px solid var(--line); border-radius: 28px; padding: 40px 34px;
  display: flex; flex-direction: column; position: relative; transition: transform .25s, box-shadow .25s;
}
.tier:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.tier.featured { border: 0; background: var(--ink); color: #fff; box-shadow: var(--shadow); }
.tier.featured h3, .tier.featured .tier-price { color: #fff; }
.tier.featured p, .tier.featured li { color: #c3cbE6; }
.tier .tier-flag {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff; font-size: 0.75rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; padding: 8px 20px; border-radius: 999px; white-space: nowrap;
}
.tier h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 6px; }
.tier .tier-for { color: var(--muted); font-size: 0.95rem; margin-bottom: 20px; }
.tier.featured .tier-for { color: #aab4d4; }
.tier-price { font-family: var(--font-display); font-weight: 800; font-size: 2rem; margin-bottom: 24px; }
.tier-price small { font-size: 1rem; font-weight: 600; color: var(--muted-2); }
.tier.featured .tier-price small { color: #aab4d4; }
.tier ul { list-style: none; display: grid; gap: 12px; margin-bottom: 32px; flex: 1; }
.tier li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.97rem; }
.tier li::before { content: "✓"; font-weight: 800; color: var(--cyan); flex: 0 0 auto; }
.tier.featured li::before { color: var(--lime); }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 780px; margin: 48px auto 0; display: grid; gap: 16px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; transition: box-shadow .25s; }
.faq-item.open { box-shadow: var(--shadow-sm); border-color: #d9c8ff; }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; color: var(--ink);
  padding: 24px 28px; display: flex; justify-content: space-between; align-items: center; gap: 18px;
}
.faq-q .fx {
  flex: 0 0 36px; width: 36px; height: 36px; border-radius: 50%; background: var(--grad-soft);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--violet);
  transition: transform .3s, background .3s, color .3s;
}
.faq-item.open .fx { transform: rotate(45deg); background: var(--grad); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 28px 26px; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; border-radius: 36px; overflow: hidden;
  background: linear-gradient(120deg, #2a1a5e 0%, #1e2a7a 45%, #0e4a6e 100%);
  color: #fff; padding: 84px 48px; text-align: center; margin: 40px 0 0;
}
.cta-band::before, .cta-band::after { content: ""; position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55; }
.cta-band::before { width: 420px; height: 420px; background: #7c3aed; top: -160px; left: -120px; }
.cta-band::after { width: 380px; height: 380px; background: #06b6d4; bottom: -160px; right: -100px; }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 16px; position: relative; z-index: 2; }
.cta-band p { color: #d7ddf5; max-width: 620px; margin: 0 auto 34px; font-size: 1.12rem; position: relative; z-index: 2; }
.cta-band .row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #c3cbe6; margin-top: 110px; border-radius: 36px 36px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 44px; padding: 72px 0 48px; }
.footer-brand p { font-size: 0.95rem; margin: 18px 0 24px; max-width: 300px; }
.footer-brand .brand span { color: #fff; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col a { text-decoration: none; font-size: 0.95rem; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 26px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.88rem; color: #8b95b8; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; padding: 84px 0 70px; overflow: hidden; text-align: center; }
.page-hero h1 { font-size: clamp(2.4rem, 4.6vw, 3.6rem); font-weight: 800; margin: 20px auto 18px; max-width: 820px; }
.page-hero .lead { margin: 0 auto 30px; text-align: center; }
.page-hero .hero-ctas { justify-content: center; }
.crumbs { font-size: 0.88rem; font-weight: 600; color: var(--muted-2); margin-bottom: 6px; }
.crumbs a { color: var(--violet); text-decoration: none; }

/* ---------- Offering cards / split sections ---------- */
.offer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin-top: 52px; }
.offer-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 32px; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s;
}
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.offer-card .card-icon { width: 58px; height: 58px; border-radius: 16px; margin-bottom: 18px; }
.offer-card .card-icon svg { width: 28px; height: 28px; }
.offer-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.offer-card p { color: var(--muted); font-size: 0.99rem; }
.offer-card ul { list-style: none; margin-top: 16px; display: grid; gap: 9px; }
.offer-card li { display: flex; gap: 10px; color: var(--muted); font-size: 0.95rem; }
.offer-card li::before { content: "✓"; color: var(--cyan); font-weight: 800; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split .art-card {
  background: #fff; border: 1px solid var(--line); border-radius: 28px;
  box-shadow: var(--shadow); padding: 40px 34px; position: relative; overflow: hidden;
}
.checklist { list-style: none; display: grid; gap: 14px; margin-top: 26px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 20px; font-size: 0.99rem; }
.checklist li b { color: var(--ink); }
.checklist .ck { flex: 0 0 30px; width: 30px; height: 30px; border-radius: 50%; background: var(--grad); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; }
.mini-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 26px; }
.mini-stat { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px; text-align: center; }
.mini-stat strong { display: block; font-family: var(--font-display); font-size: 1.6rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.mini-stat small { color: var(--muted); font-weight: 600; font-size: 0.85rem; }

/* ---------- About ---------- */
.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin-top: 52px; }
.value-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 32px; box-shadow: var(--shadow-sm); }
.value-card .num {
  font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: #fff;
  background: var(--grad); width: 44px; height: 44px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.value-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.value-card p { color: var(--muted); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; margin-top: 54px; align-items: start; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow); padding: 44px 40px; }
.form-card h3 { font-size: 1.5rem; margin-bottom: 8px; }
.form-card > p { color: var(--muted); margin-bottom: 28px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 700; font-size: 0.92rem; margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; border: 2px solid var(--line); border-radius: 14px; padding: 14px 18px;
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: var(--bg-soft);
  transition: border-color .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--violet); background: #fff; }
.field textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.steps { display: grid; gap: 20px; margin-top: 28px; }
.step { display: flex; gap: 18px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 24px; box-shadow: var(--shadow-sm); }
.step .n {
  flex: 0 0 46px; width: 46px; height: 46px; border-radius: 50%; background: var(--grad);
  color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center;
}
.step strong { display: block; font-family: var(--font-display); margin-bottom: 4px; }
.step p { color: var(--muted); font-size: 0.96rem; }
.promise-list { display: grid; gap: 14px; margin-top: 28px; }
.promise { display: flex; gap: 12px; align-items: center; font-weight: 600; }
.promise .tick { width: 26px; height: 26px; border-radius: 50%; background: var(--grad-soft); color: var(--violet); display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; flex: 0 0 26px; }

/* ---------- Media / brand-scene components ---------- */
.scene-frame {
  border-radius: 28px; overflow: hidden; background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.scene-frame img { width: 100%; height: auto; display: block; }
.tier-media {
  border-radius: 18px; overflow: hidden; border: 1px solid var(--line);
  margin-bottom: 22px; background: #fff;
}
.tier-media img { width: 100%; height: auto; display: block; }
.ph-media { max-width: 880px; margin: 44px auto 0; }
.ph-caption { text-align: center; color: var(--muted-2); font-size: 0.88rem; font-weight: 600; margin-top: 14px; }

/* ---------- Keyboard focus (a11y) ---------- */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--violet); outline-offset: 3px;
}
.card-link:focus-visible, .faq-q:focus-visible { border-radius: 8px; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; } .reveal.d2 { transition-delay: .2s; } .reveal.d3 { transition-delay: .3s; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .hero-grid, .model-grid, .split, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-art { max-width: 560px; }
  .cards-3, .outcome-grid, .tiers { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 72px 0; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-links, .nav-right .btn { display: none; }
  .burger { display: block; }
  .mobile-panel {
    display: block; position: fixed; top: 76px; left: 0; right: 0; z-index: 99;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    padding: 12px 24px 24px; transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .25s, transform .25s;
  }
  .mobile-panel.open { transform: none; opacity: 1; pointer-events: auto; }
  .mobile-panel a { display: block; padding: 14px 4px; font-weight: 700; text-decoration: none; border-bottom: 1px solid var(--line); }
  .mobile-panel .btn { margin-top: 16px; width: 100%; }
  .cards-3, .outcome-grid, .tiers, .offer-grid, .value-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .cta-band { padding: 60px 26px; }
  .form-card { padding: 32px 24px; }
  .ff-1 { top: -18px; } .ff-2 { bottom: -18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

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

/* Light ghost button for dark bands */
.btn-ghost-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.45); }
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
