/* ============================================================
   Standby — design system v2
   Palette drawn from the Standby logo: deep ink navy + electric blue
   ============================================================ */
:root {
  --ink: #0a1329;          /* logo navy — heroes, footer */
  --ink-2: #101d3d;        /* raised panels on dark */
  --ink-3: #16264e;        /* borders on dark */
  --paper: #f7f9fd;        /* page background */
  --white: #ffffff;
  --blue: #2b3aef;         /* primary — from logo power bar */
  --blue-dark: #1e2bd6;
  --blue-soft: #e8ebfe;    /* tints, chips */
  --cyan: #38c6f4;         /* gradient partner */
  --violet: #6d4df6;       /* gradient partner */
  --text: #1b2540;
  --muted: #5c6680;
  --line: #e3e8f5;
  --ok: #22c58b;           /* live/status green */
  --radius: 16px;
  --shadow-sm: 0 2px 10px rgba(10, 19, 41, 0.06);
  --shadow: 0 14px 40px rgba(10, 19, 41, 0.10);
  --shadow-blue: 0 10px 30px rgba(43, 58, 239, 0.28);
  --grad: linear-gradient(120deg, var(--blue) 0%, var(--violet) 100%);
  --grad-wide: linear-gradient(120deg, var(--cyan) 0%, var(--blue) 45%, var(--violet) 100%);
  --maxw: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .logo {
  font-family: "Sora", "Inter", -apple-system, sans-serif;
  letter-spacing: -0.02em;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Gradient text helper */
.grad-text {
  background: var(--grad-wide);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Header / nav ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--maxw); margin: 0 auto;
}

.logo { font-weight: 700; font-size: 1.35rem; color: var(--ink); text-decoration: none; display: inline-flex; align-items: center; }
.logo .dot { color: var(--blue); }
.logo img { height: 32px; width: auto; display: block; }
footer.site-footer .logo img { height: 28px; }

nav.primary-nav { display: flex; align-items: center; gap: 26px; }
nav.primary-nav a {
  text-decoration: none; color: var(--muted);
  font-size: 0.95rem; font-weight: 500;
  transition: color 0.15s ease;
}
nav.primary-nav a.active, nav.primary-nav a:hover { color: var(--ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 13px 26px; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  border: 2px solid transparent; cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}
.btn-primary {
  background: var(--grad); color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(43,58,239,0.38); }
.btn-ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--white); transform: translateY(-2px); }
.btn-light { background: var(--white); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-sm { padding: 9px 18px; font-size: 0.87rem; }
header.site-header .btn-primary { box-shadow: 0 4px 12px rgba(43,58,239,0.22); }

/* On-dark ghost */
.on-dark .btn-ghost { border-color: rgba(255,255,255,0.5); color: var(--white); }
.on-dark .btn-ghost:hover { background: var(--white); color: var(--ink); }

/* ---------- Hero (dark) ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(900px 480px at 15% -10%, rgba(43,58,239,0.35), transparent 60%),
    radial-gradient(700px 420px at 95% 10%, rgba(109,77,246,0.28), transparent 55%),
    radial-gradient(520px 320px at 65% 100%, rgba(56,198,244,0.14), transparent 60%),
    var(--ink);
  color: var(--white);
  padding: 96px 0 88px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 30%, transparent 75%);
  pointer-events: none;
}
.hero .wrap { position: relative; }

.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: #c9d4ff;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px; margin-bottom: 24px;
}
.pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 0 rgba(34,197,139,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,139,0.55); }
  70% { box-shadow: 0 0 0 9px rgba(34,197,139,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,139,0); }
}

h1 {
  font-size: clamp(2.4rem, 5.2vw, 3.7rem);
  margin: 0 0 20px; line-height: 1.08; font-weight: 800;
}
.hero h1 { color: var(--white); }
.subhead { font-size: 1.18rem; color: #b9c3e2; max-width: 620px; margin: 0 0 34px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Light-page headers (interior pages) */
.page-header { padding: 72px 0 40px; text-align: center; }
.page-header h1 { color: var(--ink); font-size: clamp(2rem, 4vw, 2.8rem); }
.page-header p { color: var(--muted); font-size: 1.1rem; max-width: 640px; margin: 0 auto; }

/* Breadcrumb */
.breadcrumb { padding: 18px 0 0; font-size: 0.85rem; color: var(--muted); }
.breadcrumb a { text-decoration: none; color: var(--blue); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { margin: 0 6px; color: var(--line); }

/* ---------- Bridge panel (hero visual) ---------- */
.bridge-panel {
  background: rgba(16, 29, 61, 0.75);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 22px;
  backdrop-filter: blur(8px);
  box-shadow: 0 30px 80px rgba(4, 8, 20, 0.55);
}
.bp-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 2px 6px 14px; border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 8px;
}
.bp-title { font-weight: 700; font-size: 0.95rem; color: #dfe6ff; letter-spacing: 0.02em; }
.bp-live {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.75rem; font-weight: 700; color: var(--ok);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.bp-row {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 6px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.bp-row:last-child { border-bottom: none; }
.bp-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.bp-dot.ok { background: var(--ok); box-shadow: 0 0 10px rgba(34,197,139,0.7); }
.bp-dot.blue { background: var(--cyan); box-shadow: 0 0 10px rgba(56,198,244,0.7); }
.bp-dot.violet { background: #9b7bff; box-shadow: 0 0 10px rgba(155,123,255,0.7); }
.bp-row > div { flex: 1; min-width: 0; }
.bp-row strong { display: block; color: #eef1ff; font-size: 0.92rem; font-weight: 600; }
.bp-row span.bp-sub { display: block; color: #8d99c4; font-size: 0.82rem; }
.bp-time { color: #6d7aa8; font-size: 0.78rem; flex-shrink: 0; }

/* ---------- Sections ---------- */
section { padding: 76px 0; }
section.alt { background: var(--white); }
section.dark {
  background:
    radial-gradient(800px 400px at 80% 0%, rgba(43,58,239,0.25), transparent 60%),
    var(--ink);
  color: var(--white);
}
section.dark h2 { color: var(--white); }
section.dark p { color: #b9c3e2; }

.section-label {
  display: inline-block;
  color: var(--blue); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 10px;
}
section.dark .section-label { color: var(--cyan); }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); color: var(--ink); margin: 0 0 14px; font-weight: 700; }
.section-head p { color: var(--muted); margin: 0; font-size: 1.05rem; }

/* ---------- Cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }

.card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}
.card::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-wide); opacity: 0; transition: opacity 0.2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #d5ddf3; }
.card:hover::after { opacity: 1; }

.card h3 { color: var(--ink); margin: 0 0 8px; font-size: 1.18rem; }
.card .price { color: var(--blue); font-weight: 700; font-size: 0.95rem; margin-bottom: 12px; }
.card p { color: var(--muted); margin: 0; font-size: 0.96rem; }
.card ul { margin: 14px 0 0; padding-left: 18px; color: var(--muted); font-size: 0.94rem; }
.card ul li { margin-bottom: 7px; }
.card .card-link { display: inline-block; margin-top: 16px; font-size: 0.92rem; font-weight: 600; color: var(--blue); text-decoration: none; }
.card .card-link:hover { text-decoration: underline; }

.card.featured { border: 2px solid transparent; background:
  linear-gradient(var(--white), var(--white)) padding-box,
  var(--grad-wide) border-box; }
.card.featured::after { opacity: 1; }
.card.featured .badge {
  position: absolute; top: -1px; right: 24px;
  background: var(--grad); color: var(--white);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 0 0 8px 8px;
}

/* Icon tiles */
.icon-tile {
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 6px 16px rgba(43,58,239,0.3);
}
.icon-tile svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon-tile.t2 { background: linear-gradient(120deg, var(--cyan), var(--blue)); }
.icon-tile.t3 { background: linear-gradient(120deg, var(--violet), #9b7bff); }

/* ---------- Two column ---------- */
.two-col { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 52px; align-items: center; }
@media (max-width: 820px) { .two-col { grid-template-columns: 1fr; } }
.two-col h2 { color: var(--ink); font-size: clamp(1.6rem, 3vw, 2.2rem); margin-top: 0; font-weight: 700; }
.two-col p { color: var(--muted); }
section.dark .two-col h2 { color: var(--white); }

/* Stat / venture box */
.stat-box {
  background: var(--ink);
  color: #dfe6ff;
  border-radius: 20px;
  padding: 34px 30px;
  border: 1px solid var(--ink-3);
  box-shadow: var(--shadow);
}
.stat-box .venture {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.09);
  font-size: 0.95rem;
}
.stat-box .venture:last-child { border-bottom: none; }
.stat-box .venture .tag {
  color: var(--cyan); font-weight: 600; font-size: 0.85rem;
  display: inline-flex; align-items: center; gap: 7px;
}

/* ---------- Steps / timeline ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 22px; counter-reset: step; }
.step {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow-sm); position: relative;
}
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--grad); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; margin-bottom: 16px;
  box-shadow: 0 6px 14px rgba(43,58,239,0.3);
  font-family: "Sora", sans-serif;
}
.step h3 { color: var(--ink); margin: 0 0 8px; font-size: 1.05rem; }
.step p { color: var(--muted); margin: 0; font-size: 0.92rem; }

/* ---------- Theme chips (bridge themes) ---------- */
.theme-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.theme-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px; padding: 22px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.theme-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.3); }
.theme-swatch { height: 8px; border-radius: 999px; margin-bottom: 16px; }
.theme-card h3 { color: #eef1ff; margin: 0 0 6px; font-size: 1rem; }
.theme-card p { color: #8d99c4 !important; margin: 0; font-size: 0.88rem; }

/* ---------- Checklist ---------- */
.list-check { list-style: none; padding: 0; margin: 20px 0; }
.list-check li { position: relative; padding-left: 32px; margin-bottom: 13px; color: var(--text); }
.list-check li::before {
  content: "✓";
  position: absolute; left: 0; top: -1px;
  width: 21px; height: 21px; border-radius: 50%;
  background: var(--blue-soft); color: var(--blue);
  font-size: 0.75rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Service hero ---------- */
.service-hero { padding: 60px 0 8px; }
.service-hero .eyebrow { background: var(--blue-soft); border-color: transparent; color: var(--blue); }
.service-hero h1 { color: var(--ink); }
.service-hero .price-line { display: inline-block; color: var(--blue); font-weight: 700; font-size: 1.05rem; margin-bottom: 8px; }
.service-hero .subhead { color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { color: var(--ink); margin: 0 0 8px; font-size: 1.05rem; }
.faq-item p { color: var(--muted); margin: 0; }

/* ---------- Article ---------- */
.article-body { max-width: 720px; margin: 0 auto; }
.article-body h2 { color: var(--ink); margin: 40px 0 12px; font-size: 1.4rem; }
.article-body p { color: var(--text); margin: 0 0 16px; }
.article-body ul { color: var(--text); padding-left: 22px; }
.article-body ul li { margin-bottom: 8px; }
.article-meta { color: var(--muted); font-size: 0.9rem; text-align: center; margin-bottom: 8px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background:
    radial-gradient(600px 300px at 20% 0%, rgba(56,198,244,0.25), transparent 60%),
    radial-gradient(600px 300px at 85% 100%, rgba(109,77,246,0.35), transparent 60%),
    var(--ink);
  color: var(--white);
  border-radius: 24px;
  padding: 64px 44px;
  text-align: center;
  margin: 0 24px;
  overflow: hidden;
  border: 1px solid var(--ink-3);
}
.cta-band h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); margin: 0 0 12px; color: var(--white); }
.cta-band p { color: #b9c3e2; max-width: 540px; margin: 0 auto 30px; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--ink);
  color: #8d99c4;
  padding: 56px 0 30px;
  margin-top: 72px;
  border-top: 1px solid var(--ink-3);
}
footer.site-footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 28px; }
footer.site-footer .logo { color: var(--white); }
footer.site-footer a { color: #8d99c4; text-decoration: none; font-size: 0.92rem; transition: color 0.15s ease; }
footer.site-footer a:hover { color: var(--white); }
footer.site-footer nav { display: flex; gap: 20px; flex-wrap: wrap; }
footer.site-footer .fine { text-align: center; font-size: 0.82rem; color: #55608a; margin-top: 36px; }
footer.site-footer .footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
footer.site-footer .footer-cols nav { flex-direction: column; gap: 10px; }
footer.site-footer .footer-col-title {
  color: var(--white); font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px;
}

/* ---------- Form ---------- */
form.contact-form {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 38px;
  max-width: 560px; margin: 0 auto;
  border: 1px solid var(--line);
}
form.contact-form label {
  display: block; font-size: 0.88rem; font-weight: 600;
  color: var(--ink); margin: 18px 0 7px;
}
form.contact-form label:first-child { margin-top: 0; }
form.contact-form input,
form.contact-form select,
form.contact-form textarea {
  width: 100%; padding: 12px 15px; border-radius: 10px;
  border: 1px solid var(--line);
  font-family: inherit; font-size: 0.96rem;
  background: var(--paper);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
form.contact-form input:focus,
form.contact-form select:focus,
form.contact-form textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(43,58,239,0.12);
}
form.contact-form textarea { min-height: 110px; resize: vertical; }
form.contact-form .btn { width: 100%; margin-top: 24px; text-align: center; }
.form-note { font-size: 0.85rem; color: var(--muted); text-align: center; margin-top: 16px; }

/* ---------- Founder ---------- */
.founder-card {
  display: flex; gap: 26px; align-items: flex-start;
  background: var(--white); border-radius: 20px;
  box-shadow: var(--shadow); padding: 36px;
  border: 1px solid var(--line);
}
.founder-avatar {
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--grad);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.5rem; flex-shrink: 0;
  font-family: "Sora", sans-serif;
  box-shadow: var(--shadow-blue);
}

.contact-info-list { list-style: none; padding: 0; margin: 24px 0 0; }
.contact-info-list li { margin-bottom: 10px; color: var(--muted); font-size: 0.96rem; }
.contact-info-list strong { color: var(--ink); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .pulse { animation: none; }
  * { scroll-behavior: auto !important; }
}

/* ============ v2.1 — sweep additions ============ */

/* Mobile nav */
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  nav.primary-nav { position: fixed; top: 60px; left: 0; right: 0; background: #fff; flex-direction: column; align-items: flex-start; padding: 20px 24px 26px; gap: 18px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); display: none; z-index: 49; }
  body.nav-open nav.primary-nav { display: flex; }
}

/* Focus visibility (a11y) */
a:focus-visible, button:focus-visible, summary:focus-visible, [tabindex]:focus-visible, input:focus-visible, select:focus-visible {
  outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 4px;
}

/* Card stagger */
.grid-3 .reveal:nth-child(2), .steps .reveal:nth-child(2) { transition-delay: 0.08s; }
.grid-3 .reveal:nth-child(3), .steps .reveal:nth-child(3) { transition-delay: 0.16s; }
.steps .reveal:nth-child(4) { transition-delay: 0.24s; }

/* FAQ accordion */
details.faq-item { border-bottom: 1px solid var(--line); padding: 6px 0; }
details.faq-item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 16px 0; font-family: "Sora", sans-serif; font-weight: 600; color: var(--ink); font-size: 1.02rem; }
details.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--blue-soft); color: var(--blue); display: flex; align-items: center; justify-content: center; font-weight: 800; transition: transform 0.2s ease; }
details[open] .faq-icon { transform: rotate(45deg); }
details.faq-item p { color: var(--muted); margin: 0 0 16px; }

/* Footer tagline */
.footer-tag { font-size: 0.85rem; color: #8d99c4; max-width: 250px; margin: 12px 0 0; line-height: 1.5; }

/* Theme cards clickable */
.theme-card { cursor: pointer; }
.theme-card.selected { border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.09); transform: translateY(-4px); }
.theme-hint { text-align: center; color: #8d99c4; font-size: 0.85rem; margin-top: 18px; }

/* ============ Team builder ============ */
.builder { max-width: 860px; margin: 0 auto; }
.builder-step { background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 32px; box-shadow: var(--shadow-sm); margin-bottom: 22px; }
.builder-step h3 { margin: 0 0 4px; color: var(--ink); font-size: 1.15rem; }
.builder-step .hint { color: var(--muted); font-size: 0.9rem; margin: 0 0 18px; }
.step-tag { display: inline-block; background: var(--blue-soft); color: var(--blue); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; margin-bottom: 12px; }
.chip-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { background: var(--paper); border: 2px solid var(--line); border-radius: 999px; padding: 10px 18px; font-size: 0.93rem; font-weight: 600; color: var(--text); cursor: pointer; transition: all 0.15s ease; font-family: inherit; }
.chip:hover { border-color: var(--blue); }
.chip.selected { background: var(--blue); border-color: var(--blue); color: #fff; box-shadow: 0 4px 14px rgba(43,58,239,0.3); }
.choice-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 640px) { .choice-cards { grid-template-columns: 1fr; } }
.choice-card { border: 2px solid var(--line); border-radius: 14px; padding: 20px; cursor: pointer; transition: all 0.15s ease; background: var(--paper); }
.choice-card:hover { border-color: var(--blue); }
.choice-card.selected { border-color: var(--blue); background: var(--blue-soft); }
.choice-card h4 { margin: 0 0 6px; color: var(--ink); font-size: 1rem; }
.choice-card p { margin: 0; color: var(--muted); font-size: 0.88rem; }
.builder-cta { text-align: center; margin: 6px 0 0; }
#teamResult { display: none; }
#teamResult.show { display: block; animation: fadeUp 0.5s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.result-tier { border: 2px solid transparent; background: linear-gradient(var(--white), var(--white)) padding-box, var(--grad-wide) border-box; border-radius: 20px; padding: 30px; margin-bottom: 22px; }
.result-tier .price { color: var(--blue); font-weight: 700; }
.addon-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.addon-chips span { background: var(--blue-soft); color: var(--blue); border-radius: 999px; padding: 6px 14px; font-size: 0.85rem; font-weight: 600; }

/* Calculator */
.calc { background: var(--ink); color: #dfe6ff; border-radius: 20px; padding: 34px; border: 1px solid var(--ink-3); }
.calc h3 { color: #fff; margin: 0 0 6px; }
.calc .hint { color: #8d99c4; font-size: 0.9rem; margin: 0 0 20px; }
.calc-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.calc-field { flex: 1; min-width: 180px; }
.calc-field label { display: block; font-size: 0.85rem; font-weight: 600; color: #c9d4ff; margin-bottom: 6px; }
.calc-field input { width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid var(--ink-3); background: var(--ink-2); color: #fff; font-size: 1rem; font-family: inherit; }
.calc-out { font-family: "Sora", sans-serif; font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; color: #fff; }
.calc-out small { display: block; font-family: "Inter", sans-serif; font-size: 0.85rem; font-weight: 500; color: #8d99c4; margin-top: 4px; }
