:root {
  --bg: #0b0f1a;
  --bg-elevated: #111827;
  --navy: #0d1526;
  --charcoal: #151c2c;
  --surface: rgba(22, 30, 48, 0.72);
  --surface-solid: #161e30;
  --border: rgba(120, 140, 200, 0.16);
  --border-bright: rgba(120, 150, 255, 0.28);
  --text: #f1f4fb;
  --muted: #9aa3b8;
  --muted-dim: #6b7389;
  --blue: #5B5FFF;
  --blue-bright: #6B7AFF;
  --blue-glow: rgba(91, 95, 255, 0.45);
  --blue-soft: rgba(91, 95, 255, 0.14);
  --purple: #8B7CFF;
  --danger: #f87171;
  --success: #4ade80;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 18px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  letter-spacing: -0.015em;
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.bg-glow {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% -5%, rgba(91, 95, 255, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 40% at 88% 8%, rgba(139, 124, 255, 0.14), transparent 50%),
    radial-gradient(ellipse 45% 35% at 70% 55%, rgba(91, 95, 255, 0.06), transparent 55%),
    radial-gradient(ellipse 60% 40% at 20% 85%, rgba(80, 100, 220, 0.08), transparent 50%);
}
.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 24px;
  gap: 16px;
  position: relative;
  min-height: 230px;
}
.logo { display: flex; align-items: center; line-height: 0; flex-shrink: 0; }
.logo-img {
  display: block;
  height: 200px !important;
  width: auto !important;
  max-width: min(88vw, 240px);
  border-radius: 50%;
  box-shadow: 0 0 36px rgba(56, 189, 248, 0.35);
}
.nav-links {
  display: flex; align-items: center; gap: 28px;
  font-size: 0.9rem; color: var(--muted); z-index: 1;
}
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; z-index: 1; margin-left: auto; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 18px; border-radius: 11px;
  font-weight: 650; font-size: 0.88rem;
  border: none; cursor: pointer;
  transition: filter 0.15s, transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}
.btn:hover { filter: brightness(1.08); }
.btn:disabled { opacity: 0.55; cursor: not-allowed; filter: none; }
.btn-primary {
  background: linear-gradient(180deg, #6B70FF, var(--blue));
  color: #fff;
  box-shadow: 0 4px 24px var(--blue-glow), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-secondary {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid var(--border-bright);
}
.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}
.btn-lg { padding: 14px 22px; font-size: 0.95rem; border-radius: 12px; }
.btn-block { width: 100%; }
.btn-sm { padding: 8px 14px; font-size: 0.8rem; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 11px;
  border: 1px solid var(--border-bright);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  cursor: pointer;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  padding: 0;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: absolute;
  top: calc(100% - 4px);
  left: 0; right: 0;
  background: linear-gradient(160deg, rgba(22, 30, 48, 0.98), rgba(12, 18, 32, 0.98));
  border: 1px solid var(--border-bright);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45), 0 0 40px rgba(91,95,255,0.12);
  backdrop-filter: blur(20px);
  z-index: 50;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1rem; font-weight: 600;
  color: var(--muted);
}
.mobile-menu a:hover { color: var(--text); background: rgba(91,95,255,0.1); }

@media (min-width: 961px) {
  .nav {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 12px 0 24px;
    min-height: 230px;
  }
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 12px;
    z-index: 2;
  }
  .logo-img { height: 200px !important; }
}

/* HERO */
.hero {
  text-align: center;
  padding: 8px 0 56px;
  max-width: 760px;
  margin: 0 auto;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 650;
  color: #b8c0ff;
  background: var(--blue-soft);
  border: 1px solid rgba(91, 95, 255, 0.3);
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 10px var(--blue-glow);
}
.hero h1 {
  font-size: clamp(1.85rem, 3.6vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.hero h1 .hl {
  background: linear-gradient(90deg, #7B85FF, #A78BFA);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 46ch;
  margin: 0 auto 10px;
  line-height: 1.55;
}
.hero-sub {
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center;
  margin-bottom: 22px;
}
.hero-checks {
  display: flex; flex-wrap: wrap; gap: 14px 22px;
  justify-content: center;
  font-size: 0.84rem; color: var(--muted);
}
.hero-checks span { display: inline-flex; align-items: center; gap: 7px; }
.hero-checks i {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--blue-soft);
  border: 1px solid rgba(91,95,255,0.4);
  display: grid; place-items: center;
  color: var(--blue-bright); font-style: normal; font-size: 10px; font-weight: 700;
}

/* SECTIONS */
.section { padding: 64px 0; }
.section-head { text-align: center; margin-bottom: 40px; }
.section-head .tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue-bright);
  background: var(--blue-soft);
  border: 1px solid rgba(91,95,255,0.25);
  padding: 5px 12px; border-radius: 999px;
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  font-weight: 800; letter-spacing: -0.04em;
  line-height: 1.2; margin-bottom: 12px;
}
.section-head p {
  color: var(--muted); font-size: 1.02rem; max-width: 560px; margin: 0 auto;
}
.section-note {
  text-align: center;
  color: var(--muted-dim);
  font-size: 0.88rem;
  max-width: 640px;
  margin: 24px auto 0;
  line-height: 1.5;
}

/* PORTFOLIO */
.portfolio { padding-top: 24px; }
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.work-card {
  background: linear-gradient(165deg, rgba(28, 36, 58, 0.9), rgba(16, 22, 38, 0.95));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px 14px 16px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  overflow: hidden;
}
.work-card:hover {
  border-color: var(--border-bright);
  box-shadow: 0 0 40px rgba(91,95,255,0.18);
  transform: translateY(-3px);
}
.browser {
  background: #0a0e18;
  border: 1px solid #2a3348;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,0.45);
  margin-bottom: 14px;
}
.browser-bar {
  height: 28px;
  background: #151c2c;
  display: flex; align-items: center; gap: 6px;
  padding: 0 12px;
  border-bottom: 1px solid #1f2740;
}
.browser-bar i {
  width: 8px; height: 8px; border-radius: 50%;
  background: #3a4560;
  font-style: normal;
}
.browser-bar i:nth-child(1) { background: #ff5f57; }
.browser-bar i:nth-child(2) { background: #febc2e; }
.browser-bar i:nth-child(3) { background: #28c840; }
.mini-site {
  position: relative;
  min-height: 280px;
  display: flex; flex-direction: column;
}
.mini-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: -0.01em;
}
.mini-brand { display: flex; align-items: center; gap: 6px; }
.mini-brand .ico {
  width: 18px; height: 18px; border-radius: 5px;
  display: grid; place-items: center; font-size: 10px;
}
.mini-nav .links { display: flex; gap: 10px; opacity: 0.55; font-weight: 500; }
.mini-hero {
  position: relative;
  flex: 1;
  min-height: 168px;
  background-size: cover;
  background-position: center;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 16px 14px 14px;
}
.mini-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,12,22,0.15) 0%, rgba(8,12,22,0.82) 100%);
}
.mini-hero > * { position: relative; z-index: 1; }
.mini-tag {
  display: inline-block;
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 7px; border-radius: 4px;
  margin-bottom: 6px;
  width: fit-content;
}
.mini-hero h4 {
  font-size: 1.15rem; font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.15;
  margin-bottom: 10px;
  max-width: 16ch;
}
.mini-cta {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 12px; border-radius: 8px;
  font-size: 0.68rem; font-weight: 700;
  width: fit-content;
  color: #fff;
}
.mini-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 10px 10px 12px;
  background: rgba(10,14,24,0.95);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mini-feat {
  text-align: center;
  font-size: 0.58rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.25;
}
.mini-feat .fi {
  width: 22px; height: 22px; border-radius: 6px;
  margin: 0 auto 4px;
  display: grid; place-items: center;
  font-size: 11px;
  background: rgba(255,255,255,0.06);
}
.theme-plumb .mini-nav { background: #0c1424; color: #e8eefc; }
.theme-plumb .ico { background: #1d4ed8; color: #fff; }
.theme-plumb .mini-tag { background: rgba(59,130,246,0.25); color: #93c5fd; }
.theme-plumb .mini-cta { background: #2563eb; }
.theme-plumb .mini-feat .fi { color: #60a5fa; }
.theme-land .mini-nav { background: #0d1a12; color: #e8f5ec; }
.theme-land .ico { background: #16a34a; color: #fff; }
.theme-land .mini-tag { background: rgba(34,197,94,0.25); color: #86efac; }
.theme-land .mini-cta { background: #16a34a; }
.theme-land .mini-feat .fi { color: #4ade80; }
.theme-auto .mini-nav { background: #141414; color: #f3f3f3; }
.theme-auto .ico { background: #ea580c; color: #fff; }
.theme-auto .mini-tag { background: rgba(234,88,12,0.28); color: #fdba74; }
.theme-auto .mini-cta { background: #dc2626; }
.theme-auto .mini-feat .fi { color: #f87171; }
.theme-clean .mini-nav { background: #f4f8fc; color: #1e293b; }
.theme-clean .ico { background: #0ea5e9; color: #fff; }
.theme-clean .mini-tag { background: rgba(14,165,233,0.15); color: #0284c7; }
.theme-clean .mini-hero::before {
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(241,245,249,0.92) 100%);
}
.theme-clean .mini-hero h4 { color: #0f172a; }
.theme-clean .mini-cta { background: #0284c7; }
.theme-clean .mini-features { background: #fff; border-top-color: #e2e8f0; }
.theme-clean .mini-feat { color: #64748b; }
.theme-clean .mini-feat .fi { background: #e0f2fe; color: #0284c7; }
.work-meta {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 10px;
  padding: 2px 4px 0; flex-wrap: wrap;
}
.work-meta h3 {
  font-size: 1rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 2px;
}
.work-meta p { font-size: 0.8rem; color: var(--muted-dim); }
.sample-badge {
  display: inline-block;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--purple);
  background: rgba(139,124,255,0.12);
  border: 1px solid rgba(139,124,255,0.28);
  padding: 3px 8px; border-radius: 999px;
  margin-bottom: 6px;
}
.work-actions {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; width: 100%;
}
.work-actions .btn { flex: 1; min-width: 120px; }

/* PRICING — 3 cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.featured {
  border-color: var(--border-bright);
  box-shadow: 0 0 50px rgba(91,95,255,0.18), inset 0 1px 0 rgba(255,255,255,0.05);
  background: linear-gradient(160deg, rgba(28, 36, 58, 0.92), rgba(14, 20, 36, 0.95));
}
.badge {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  margin-bottom: 12px;
}
.badge-popular {
  background: linear-gradient(90deg, var(--blue), var(--purple));
  color: #fff;
  border: none;
  box-shadow: 0 0 16px var(--blue-glow);
}
.price-card h3 {
  font-size: 1.15rem; font-weight: 750; letter-spacing: -0.02em; margin-bottom: 8px;
}
.card-price {
  font-size: 2.2rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1;
  margin-bottom: 8px;
}
.card-price span { font-size: 0.95rem; font-weight: 500; color: var(--muted); }
.card-desc { color: var(--muted); font-size: 0.9rem; margin-bottom: 20px; flex: 1; }
.price-card .btn { margin-top: auto; }
.pricing-shared {
  max-width: 860px;
  margin: 28px auto 0;
  text-align: center;
}
.pricing-shared .shared-line {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 14px;
  line-height: 1.5;
}
.shared-checks {
  display: flex; flex-wrap: wrap; gap: 8px 14px;
  justify-content: center;
  font-size: 0.82rem; color: var(--muted);
  margin-bottom: 18px;
}
.shared-checks span {
  display: inline-flex; align-items: center; gap: 6px;
}
.shared-checks i {
  color: var(--blue-bright); font-style: normal; font-weight: 700; font-size: 0.75rem;
}
.pricing-edits-note {
  background: rgba(91,95,255,0.08);
  border: 1px solid rgba(91,95,255,0.22);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.45;
}

/* INCLUDED */
.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 20px;
}
.incl-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  backdrop-filter: blur(12px);
}
.incl-card h3 {
  font-size: 1.05rem; font-weight: 750; letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.incl-card ul { display: flex; flex-direction: column; gap: 10px; }
.incl-card li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--muted); line-height: 1.4;
}
.ck {
  flex-shrink: 0;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--blue-soft);
  border: 1px solid rgba(91,95,255,0.4);
  display: grid; place-items: center;
  color: var(--blue-bright); font-size: 10px; font-weight: 700;
  margin-top: 1px;
  font-style: normal;
}

/* HOW IT WORKS */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 18px;
  text-align: center;
  backdrop-filter: blur(12px);
}
.step-num {
  width: 42px; height: 42px; border-radius: 50%;
  margin: 0 auto 14px;
  display: grid; place-items: center;
  font-weight: 800; font-size: 1rem;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  box-shadow: 0 0 24px var(--blue-glow);
}
.step h3 {
  font-size: 0.98rem; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.02em;
}
.step p { font-size: 0.84rem; color: var(--muted); line-height: 1.45; }

/* COMPARE */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.compare-col {
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
}
.compare-col.diy { background: rgba(20, 24, 36, 0.7); }
.compare-col.sth {
  background: linear-gradient(160deg, rgba(28, 36, 68, 0.95), rgba(16, 22, 42, 0.98));
  border-color: var(--border-bright);
  box-shadow: 0 0 40px rgba(91,95,255,0.12);
}
.compare-col h3 {
  font-size: 1.05rem; font-weight: 750; margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.compare-col.diy h3 { color: var(--muted); }
.compare-col ul { display: flex; flex-direction: column; gap: 12px; }
.compare-col li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; line-height: 1.4;
}
.compare-col.diy li { color: var(--muted-dim); }
.compare-col.sth li { color: var(--text); }
.compare-col .mark {
  flex-shrink: 0; width: 20px; text-align: center; font-weight: 700;
}
.diy .mark { color: #f87171; }
.sth .mark { color: var(--blue-bright); }

/* UPDATES / DETAILS */
.updates-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 10px;
}
details.update-item, details.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0;
  overflow: hidden;
}
details.update-item[open], details.faq-item[open] { border-color: var(--border-bright); }
details.update-item summary, details.faq-item summary {
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 650; font-size: 0.95rem;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
details.update-item summary::-webkit-details-marker,
details.faq-item summary::-webkit-details-marker { display: none; }
details.update-item summary::after,
details.faq-item summary::after {
  content: "+";
  color: var(--blue-bright);
  font-size: 1.2rem; font-weight: 500;
  flex-shrink: 0;
}
details.update-item[open] summary::after,
details.faq-item[open] summary::after { content: "−"; }
.update-body, .faq-a {
  padding: 0 18px 16px;
  color: var(--muted); font-size: 0.9rem; line-height: 1.55;
}
.update-price {
  color: var(--blue-bright);
  font-weight: 700;
  white-space: nowrap;
  margin-left: auto;
  margin-right: 8px;
  font-size: 0.88rem;
}
.summary-main { display: flex; align-items: center; gap: 10px; flex: 1; flex-wrap: wrap; }
.updates-note {
  max-width: 760px;
  margin: 18px auto 0;
  text-align: center;
  color: var(--muted-dim);
  font-size: 0.88rem;
}

/* GUARANTEE */
.guarantee-panel {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(160deg, rgba(28, 36, 68, 0.95), rgba(14, 20, 38, 0.98));
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 0 50px rgba(91,95,255,0.14);
}
.guarantee-panel h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 800; letter-spacing: -0.035em;
  margin-bottom: 14px;
}
.guarantee-panel p {
  color: var(--muted); font-size: 0.95rem; line-height: 1.55;
  margin-bottom: 12px;
}
.guarantee-panel .fine {
  color: var(--muted-dim); font-size: 0.82rem; margin-bottom: 0;
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 10px;
}
.faq-pending {
  border-style: dashed !important;
  opacity: 0.85;
}
.pending-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fbbf24;
  background: rgba(251,191,36,0.12);
  border: 1px solid rgba(251,191,36,0.3);
  padding: 2px 7px;
  border-radius: 999px;
}

/* AI SOON */
.ai-soon {
  max-width: 640px;
  margin: 0 auto 32px;
  text-align: center;
  background: var(--surface);
  border: 1px dashed rgba(120,150,255,0.35);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.ai-soon .soon-badge {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--purple);
  background: rgba(139,124,255,0.15);
  border: 1px solid rgba(139,124,255,0.3);
  padding: 4px 10px; border-radius: 999px;
  margin-bottom: 10px;
}
.ai-soon h3 { font-size: 1.05rem; font-weight: 750; margin-bottom: 4px; }
.ai-soon p { color: var(--muted); font-size: 0.88rem; }

/* FINAL CTA */
.final-cta { padding: 48px 0 64px; }
.cta-panel {
  text-align: center;
  background: linear-gradient(160deg, rgba(28, 36, 68, 0.95), rgba(14, 20, 38, 0.98));
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  box-shadow: 0 0 60px rgba(91,95,255,0.16);
}
.cta-panel h2 {
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  font-weight: 800; letter-spacing: -0.035em;
  margin-bottom: 10px;
}
.cta-panel > p {
  color: var(--muted); font-size: 1rem; margin-bottom: 10px; max-width: 42ch; margin-left: auto; margin-right: auto;
}
.cta-panel .price-line {
  color: var(--text); font-weight: 650; font-size: 0.95rem; margin-bottom: 22px;
}
.cta-panel .hero-ctas { margin-bottom: 0; }

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 36px 0 48px;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand .logo-img,
footer .logo-img {
  height: 88px !important;
  max-width: 120px;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.25);
}
.footer-brand .domain { color: var(--muted-dim); font-size: 0.88rem; }
.footer-links {
  display: flex; flex-wrap: wrap; gap: 18px;
  font-size: 0.88rem; color: var(--muted);
}
.footer-links a:hover { color: var(--text); }
.footer-copy {
  color: var(--muted-dim); font-size: 0.78rem; text-align: center;
}
.footer-copy a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }

/* START FLOW */
.preview-banner {
  background: rgba(251, 191, 36, 0.12);
  border-bottom: 1px solid rgba(251, 191, 36, 0.35);
  color: #fde68a;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  position: relative;
  z-index: 2;
}
.start-wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 0 64px;
}
.start-nav.nav { min-height: 140px; padding-bottom: 12px; }
.start-nav .logo-img { height: 120px !important; max-width: 140px; }
@media (min-width: 961px) {
  .start-nav.nav { min-height: 140px; }
  .start-nav .logo { top: 8px; }
  .start-nav .logo-img { height: 120px !important; }
}
.progress {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin: 8px 0 32px; flex-wrap: wrap;
}
.progress-step {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--muted-dim); font-weight: 600;
}
.progress-step.active { color: var(--text); }
.progress-step.done { color: var(--blue-bright); }
.progress-dot {
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.75rem; font-weight: 700;
  border: 1px solid var(--border);
  background: var(--surface);
}
.progress-step.active .progress-dot {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  border-color: transparent; color: #fff;
  box-shadow: 0 0 16px var(--blue-glow);
}
.progress-step.done .progress-dot {
  background: var(--blue-soft);
  border-color: rgba(91,95,255,0.4);
  color: var(--blue-bright);
}
.progress-sep {
  width: 28px; height: 2px; background: var(--border);
  border-radius: 2px;
}
.start-head { text-align: center; margin-bottom: 28px; }
.start-head h1 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800; letter-spacing: -0.04em; margin-bottom: 8px;
}
.start-head p { color: var(--muted); font-size: 1rem; max-width: 48ch; margin: 0 auto; }

.plan-pick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.plan-pick {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  cursor: pointer;
  text-align: left;
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
  position: relative;
}
.plan-pick:hover { border-color: var(--border-bright); }
.plan-pick.selected {
  border-color: var(--blue);
  box-shadow: 0 0 30px rgba(91,95,255,0.2);
  background: linear-gradient(160deg, rgba(28, 36, 58, 0.95), rgba(14, 20, 36, 0.98));
}
.plan-pick h3 { font-size: 1.1rem; margin-bottom: 6px; }
.plan-pick .pp-price { font-size: 1.8rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 6px; }
.plan-pick .pp-price span { font-size: 0.9rem; font-weight: 500; color: var(--muted); }
.plan-pick .pp-desc { color: var(--muted); font-size: 0.88rem; }
.plan-pick .pick-check {
  position: absolute; top: 14px; right: 14px;
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid var(--border-bright);
  display: grid; place-items: center;
  font-size: 11px; color: transparent;
}
.plan-pick.selected .pick-check {
  background: var(--blue); border-color: var(--blue); color: #fff;
}

.checkout-panel, .intake-panel, .thanks-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  backdrop-filter: blur(12px);
  margin-bottom: 20px;
}
.checkout-summary h2 { font-size: 1.15rem; margin-bottom: 12px; }
.checkout-row {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.checkout-row:last-child { border-bottom: none; font-weight: 700; font-size: 1.1rem; }
.checkout-includes {
  margin-top: 16px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.checkout-includes span {
  font-size: 0.78rem; color: var(--muted);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 5px 10px; border-radius: 999px;
}
.cancel-placeholder {
  margin-top: 16px;
  padding: 12px 14px;
  border: 1px dashed rgba(251,191,36,0.4);
  border-radius: var(--radius-sm);
  background: rgba(251,191,36,0.06);
  color: #fde68a;
  font-size: 0.88rem;
}
.pay-stub {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(0,0,0,0.2);
}
.pay-stub h3 { font-size: 1rem; margin-bottom: 8px; }
.pay-stub p { color: var(--muted); font-size: 0.88rem; margin-bottom: 14px; }
.stripe-fake {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px;
}
.stripe-fake .fake-field {
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--muted-dim);
  display: flex; align-items: center; padding: 0 14px;
  font-size: 0.88rem;
}

/* FORMS */
.form-section {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.form-section:last-of-type { border-bottom: none; }
.form-section h2 {
  font-size: 1.05rem; font-weight: 750; margin-bottom: 6px; letter-spacing: -0.02em;
}
.form-section .hint { color: var(--muted-dim); font-size: 0.85rem; margin-bottom: 16px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-grid .full { grid-column: 1 / -1; }
label.field {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 0.82rem; font-weight: 600; color: var(--muted);
}
label.field .req { color: var(--blue-bright); }
input[type="text"], input[type="email"], input[type="tel"], input[type="url"],
select, textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.25);
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--border-bright);
  box-shadow: 0 0 0 3px rgba(91,95,255,0.15);
}
textarea { min-height: 90px; resize: vertical; }
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.check-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  font-size: 0.9rem; color: var(--text); font-weight: 500;
  cursor: pointer;
}
.check-item input { width: 18px; height: 18px; accent-color: var(--blue); }
.file-row {
  display: flex; flex-direction: column; gap: 8px;
}
.file-row input[type="file"] {
  padding: 12px;
  border: 1px dashed var(--border-bright);
  border-radius: 10px;
  background: rgba(91,95,255,0.05);
  color: var(--muted);
  font-size: 0.85rem;
}
.form-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: flex-end;
  margin-top: 8px;
}
.thanks-panel { text-align: center; padding: 48px 28px; }
.thanks-panel h1 { font-size: 1.6rem; margin-bottom: 10px; }
.thanks-panel p { color: var(--muted); margin-bottom: 12px; max-width: 42ch; margin-left: auto; margin-right: auto; }

/* RESPONSIVE */
@media (max-width: 960px) {
  .nav {
    display: grid !important;
    grid-template-columns: 44px 1fr 44px;
    grid-template-areas:
      ". logo ."
      "cta cta cta";
    align-items: center;
    justify-items: center;
    column-gap: 8px;
    row-gap: 14px;
    padding: 8px 0 16px;
    min-height: 260px;
  }
  .logo { grid-area: logo; justify-self: center; position: static; transform: none; }
  .logo-img { height: 230px !important; max-width: min(90vw, 250px); }
  .nav-links { display: none !important; }
  .nav-actions { display: contents; }
  .nav-toggle {
    display: inline-flex;
    grid-column: 3; grid-row: 1;
    justify-self: end; align-self: start;
  }
  .nav-actions .btn-primary,
  .nav-actions > a.btn {
    grid-area: cta;
    width: 100%;
    padding: 14px 18px;
    font-size: 0.92rem;
    border-radius: 12px;
    white-space: normal;
    line-height: 1.25;
    text-align: center;
  }
  .mobile-menu { grid-column: 1 / -1; width: 100%; }
  .pricing-grid, .plan-pick-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .start-nav.nav { min-height: 180px; }
  .start-nav .logo-img { height: 140px !important; }
}
@media (max-width: 720px) {
  .portfolio-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .mini-site { min-height: 240px; }
  .mini-hero { min-height: 140px; padding: 12px; }
  .mini-hero h4 { font-size: 0.95rem; }
  .mini-nav .links { display: none; }
  .work-meta h3 { font-size: 0.88rem; }
  .form-grid, .check-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .update-price { margin-left: 0; width: 100%; }
}
@media (max-width: 520px) {
  .wrap { padding: 0 16px; }
  .portfolio-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .work-card {
    flex: 0 0 min(86vw, 320px);
    scroll-snap-align: start;
  }
  .hero h1 { font-size: 1.7rem; }
}
