/* ════════════════════════════════════════════════
   VERTEX WEB — style.css
   Theme: Deep Purple / Amethyst / Electric Indigo
   ════════════════════════════════════════════════ */

/* ── ROOT TOKENS ── */
:root {
  --bg:          #0a0a0a;
  --surface:     rgba(255,255,255,0.04);
  --surface-h:   rgba(255,255,255,0.07);
  --border:      rgba(153,23,255,0.18);
  --border-h:    rgba(153,23,255,0.45);

  --purple:      #9917FF;
  --indigo:      #5B2BFF;
  --violet:      #C084FC;
  --amethyst:    #7B2FBE;
  --electric:    #A855F7;

  --text:        #F0EBF8;
  --text-muted:  #8B7AA0;
  --text-dim:    #4A3D5C;

  --glow:        0 0 40px rgba(153,23,255,0.35);
  --glow-sm:     0 0 16px rgba(153,23,255,0.25);
  --glow-lg:     0 0 80px rgba(153,23,255,0.45);

  --radius:      18px;
  --radius-sm:   10px;
  --radius-lg:   28px;

  --font-head:   'Syne', sans-serif;
  --font-body:   'DM Sans', sans-serif;
  --nav-h:       72px;

  --transition:  0.3s cubic-bezier(0.23,1,0.32,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: auto;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ── CUSTOM CURSOR ── */
.cursor, .cursor-trail {
  position: fixed; top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.1s;
}
.cursor {
  width: 12px; height: 12px;
  background: var(--purple);
  box-shadow: 0 0 10px var(--purple), 0 0 20px var(--purple);
}
.cursor-trail {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(153,23,255,0.5);
  transition: transform 0.15s, width 0.2s, height 0.2s, opacity 0.2s;
  display: none;
}
@media (hover: none) {
  .cursor, .cursor-trail { display: none; }
  body { cursor: auto; }
}

/* ── BACKGROUND BLOBS ── */
.blob-canvas {
  position: fixed; inset: 0;
  z-index: 0; pointer-events: none;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.1;
}
.blob-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, #9917FF, #5B2BFF);
  top: -200px; left: -150px;
  transform: translate(0, 0);
}
.blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #7B2FBE, #C084FC);
  bottom: -100px; right: -100px;
  transform: translate(0, 0);
}
.blob-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #4C1D95, #9917FF);
  top: 40%; left: 50%;
  transform: translate(0, 0);
}
.blob-4 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #A855F7, #5B2BFF);
  top: 20%; right: 15%;
  transform: translate(0, 0);
}

/* Grain noise */
.noise-overlay {
  position: absolute; inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px;
}

/* ── GLASS CARD ── */
.glass-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glow);
  border-color: var(--border-h);
}

/* ── TYPOGRAPHY ── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet);
  border: 1px solid rgba(192,132,252,0.25);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 1.2rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 3rem;
  text-align: center;
}

/* ── SHIMMER TEXT ── */
.shimmer-text {
  background: linear-gradient(
    90deg,
    var(--purple) 0%,
    var(--violet) 30%,
    #fff 50%,
    var(--violet) 70%,
    var(--purple) 100%
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: none;
}

/* ── GENERATE BUTTON ── */
.btn-generate {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  outline: none;
  text-decoration: none;
  background: linear-gradient(135deg, var(--purple), var(--indigo));
  color: #fff;
  box-shadow: 0 0 0 0 rgba(153,23,255,0);
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
  isolation: isolate;
}
.btn-generate::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #B040FF, #7B50FF);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: inherit;
}
.btn-generate::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--purple), var(--indigo), var(--violet));
  z-index: -1;
  filter: none;
  opacity: 0.25;
  transition: opacity var(--transition);
}
.btn-generate span { position: relative; z-index: 1; }
.btn-generate:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 40px rgba(153,23,255,0.55), 0 0 0 1px rgba(153,23,255,0.4);
}
.btn-generate:hover::before { opacity: 1; }
.btn-generate:hover::after { opacity: 0.5; }
.btn-generate:active { transform: scale(0.98); }

/* Ghost button */
.btn-ghost {
  display: inline-flex; align-items: center;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--violet);
  padding: 14px 24px;
  border-radius: 100px;
  border: 1px solid var(--border);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.btn-ghost:hover {
  border-color: var(--border-h);
  color: #fff;
  background: rgba(153,23,255,0.1);
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,10,0.7);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  height: 100%;
  display: flex; align-items: center; gap: 2rem;
  padding: 0 2rem;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.4rem; font-weight: 800;
  letter-spacing: -0.02em;
  margin-right: auto;
}
.logo-v { color: var(--purple); }
.logo-dot { color: var(--violet); }
.nav-links {
  display: flex; gap: 2rem;
}
.nav-links a {
  font-size: 0.9rem; font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-cta { font-size: 0.85rem; padding: 10px 24px; }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text);
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(10,10,10,0.95);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
  gap: 1rem;
}
.mobile-menu a {
  font-size: 1.1rem; font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--text); }
.mobile-menu.open { display: flex; }

/* ── CONTAINER ── */
.container {
  max-width: 1200px; margin: 0 auto;
  padding: 0 2rem;
}

/* ── SECTIONS ── */
.section {
  position: relative;
  padding: 7rem 0;
  z-index: 1;
  text-align: center;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: 1200px; margin: 0 auto;
  padding: 0 2rem;
  padding-top: var(--nav-h);
  position: relative; z-index: 1;
  text-align: left;
}
.hero-content { display: flex; flex-direction: column; align-items: flex-start; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 500;
  color: var(--violet);
  border: 1px solid rgba(192,132,252,0.25);
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 2rem;
  background: rgba(192,132,252,0.06);
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: none;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero-headline .line { display: block; }

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex; align-items: center; gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stat-row {
  display: flex; align-items: center; gap: 2rem;
}
.stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--purple);
}
.stat strong + span {
  font-size: 0.9rem; color: var(--text-muted); font-weight: 400;
}
.stat p { font-size: 0.8rem; color: var(--text-dim); margin-top: 2px; }
.stat-divider {
  width: 1px; height: 40px;
  background: var(--border);
}

/* Hero card */
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-card {
  width: 100%; max-width: 420px;
  padding: 0;
  overflow: hidden;
  box-shadow: var(--glow-lg);
}
.card-topbar {
  display: flex; align-items: center; gap: 6px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.r { background: #FF5F57; }
.dot.y { background: #FFBD2E; }
.dot.g { background: #28C840; }
.card-url {
  margin-left: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: monospace;
  background: rgba(255,255,255,0.04);
  padding: 3px 10px; border-radius: 4px;
}
.card-hero-preview { padding: 1.5rem; }
.preview-bar {
  height: 10px; border-radius: 6px;
  background: rgba(255,255,255,0.07);
  margin-bottom: 10px;
}
.pw-1 { width: 60%; }
.pw-2 { width: 85%; }
.pw-3 { width: 45%; margin-bottom: 20px; }
.pw-4 { width: 70%; margin-top: 20px; }

.preview-img-placeholder {
  width: 100%; height: 120px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(153,23,255,0.2), rgba(91,43,255,0.15));
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.preview-glow-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--purple), transparent);
  opacity: 0.6;
  animation: none;
}
.preview-btn-fake {
  width: 100px; height: 32px; border-radius: 20px;
  background: linear-gradient(135deg, var(--purple), var(--indigo));
  margin-top: 16px;
  box-shadow: var(--glow-sm);
}
.card-badge {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  font-size: 0.78rem;
  color: #4ade80;
  border-top: 1px solid var(--border);
  background: rgba(74,222,128,0.04);
}
.badge-pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: none;
}

/* ── MARQUEE ── */
.marquee-wrapper {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(153,23,255,0.04);
  padding: 14px 0;
  position: relative; z-index: 1;
}
.marquee-track { overflow: hidden; }
.marquee-inner {
  display: flex; align-items: center; gap: 3rem;
  width: max-content;
  animation: none;
  white-space: nowrap;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.mx { color: var(--purple); font-size: 0.6rem; }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: left;
}
.service-card { padding: 2rem; }
.service-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
  background: linear-gradient(135deg, var(--purple), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.service-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ── ABOUT ── */
.about { background: rgba(153,23,255,0.03); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  text-align: left;
}
.about-visual-col { display: flex; align-items: center; justify-content: center; }
.about-orb-wrap { position: relative; width: 320px; height: 320px; }
.about-orb {
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--purple), var(--indigo), #1a0040);
  box-shadow: var(--glow-lg);
  animation: none;
  position: absolute; top: 20px; left: 20px;
}
.about-stat-card {
  position: absolute;
  padding: 1rem 1.4rem;
  text-align: center;
}
.about-stat-card:first-of-type { top: 0; right: 0; }
.about-stat-card.card-2 { bottom: 0; left: 0; }
.about-stat-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem; font-weight: 800;
  color: var(--purple);
}
.about-stat-card span { font-size: 0.78rem; color: var(--text-muted); }
.about-copy .section-title { text-align: left; }
.about-copy p { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.95rem; }
.about-copy .btn-generate { margin-top: 1rem; }

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}
.pricing-grid-single {
  grid-template-columns: 1fr;
  max-width: 560px;
}
.pricing-card {
  padding: 2.5rem;
  position: relative;
}
.pricing-standard {
  border-color: rgba(153,23,255,0.35);
  box-shadow: var(--glow-sm);
}
.pricing-badge {
  display: inline-block;
  font-size: 0.78rem; font-weight: 700;
  background: linear-gradient(135deg, var(--purple), var(--indigo));
  color: #fff;
  padding: 4px 14px; border-radius: 100px;
  margin-bottom: 1.2rem;
  box-shadow: var(--glow-sm);
}
.pricing-tier {
  font-family: var(--font-head);
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: 1rem;
}
.pricing-amount {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 0.8rem;
}
.price-main {
  font-family: var(--font-head);
  font-size: 3rem; font-weight: 800;
  background: linear-gradient(135deg, var(--purple), var(--violet));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.price-old {
  font-size: 1.2rem; color: var(--text-dim);
  text-decoration: line-through;
}
.price-per { font-size: 0.9rem; color: var(--text-muted); }
.pricing-amount-stacked {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}
.price-next-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.price-next-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.price-next {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--violet);
}
.pricing-note { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.pricing-features {
  display: flex; flex-direction: column; gap: 0.6rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}
.pricing-features li { display: flex; align-items: center; gap: 10px; }
.chk {
  color: var(--purple);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ── CONTACT ── */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 680px; margin: 0 auto;
}
.contact-card {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1.5rem 2rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-align: left;
}
.contact-card:hover {
  transform: translateX(8px);
  box-shadow: var(--glow);
}
.contact-card.whatsapp { border-color: rgba(37,211,102,0.2); }
.contact-card.whatsapp:hover {
  border-color: rgba(37,211,102,0.5);
  box-shadow: 0 0 30px rgba(37,211,102,0.2);
}
.contact-card.whatsapp .contact-icon { color: #25D366; }
.contact-card.email .contact-icon { color: var(--violet); }
.contact-card.phone .contact-icon { color: var(--electric); }
.contact-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
}
.contact-info { flex: 1; }
.contact-info strong { display: block; font-family: var(--font-head); font-weight: 700; margin-bottom: 2px; }
.contact-info span { font-size: 0.88rem; color: var(--text-muted); }
.contact-arrow {
  font-size: 1.2rem; color: var(--text-dim);
  transition: color var(--transition), transform var(--transition);
}
.contact-card:hover .contact-arrow {
  color: var(--violet);
  transform: translateX(4px);
}
.contact-intake-cta {
  margin: 0 auto 2rem;
}

.dev-test-banner {
  position: fixed;
  bottom: 14px;
  right: 14px;
  z-index: 300;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  background: rgba(10, 10, 10, 0.88);
  border: 1px solid rgba(192, 132, 252, 0.35);
  border-radius: 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.dev-test-banner a {
  color: var(--violet);
  text-decoration: underline;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  position: relative; z-index: 1;
}
.footer-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 1.5rem;
  text-align: center;
}
.footer-brand p {
  font-size: 0.88rem; color: var(--text-muted);
  max-width: 320px; margin: 0.6rem auto 0;
}
.footer-links {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 1.5rem;
}
.footer-links a {
  font-size: 0.85rem; color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--violet); }
.footer-copy { font-size: 0.78rem; color: var(--text-dim); }

/* ── POLICY SECTIONS ── */
.policy-section { display: none; }
.policy-section:target { display: block; }
.policy-card { padding: 2.5rem; text-align: left; }
.policy-card h3 {
  font-family: var(--font-head);
  font-size: 1rem; font-weight: 700;
  color: var(--violet);
  margin: 1.5rem 0 0.5rem;
}
.policy-card h3:first-child { margin-top: 0; }
.policy-card p { font-size: 0.9rem; color: var(--text-muted); }
.policy-card a { color: var(--violet); text-decoration: underline; }

/* ── STANDALONE CONTENT PAGES ── */
.legal-page {
  min-height: calc(100vh - 120px);
  padding-top: calc(var(--nav-h) + 3rem);
  text-align: left;
}
.legal-wrap {
  max-width: 900px;
}
.legal-wrap .section-label,
.legal-wrap .section-title,
.legal-wrap .section-sub {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.legal-sub {
  max-width: 700px;
}
.about-page-wrap .policy-card p {
  max-width: 760px;
}
.about-page-cta {
  margin-top: 1.5rem;
}

/* ── CLIENT INTAKE ── */
.intake-page .legal-wrap {
  max-width: 980px;
}
.intake-progress-card {
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
}
.intake-utility-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.8rem;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.draft-status {
  margin: 0 0 0.8rem;
  color: var(--text-dim);
  font-size: 0.8rem;
}
.intake-progress-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.intake-progress-head strong {
  font-family: var(--font-head);
  font-size: 1rem;
}
.intake-progress-head span {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.intake-progress-bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.intake-progress-bar span {
  display: block;
  height: 100%;
  width: 10%;
  background: linear-gradient(135deg, var(--purple), var(--indigo));
  transition: width var(--transition);
}
.intake-form {
  padding: 2rem;
}
.intake-step {
  display: none;
}
.intake-step.active {
  display: block;
}
.intake-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.intake-grid label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.field-help {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.45;
}
.intake-grid label.full {
  grid-column: 1 / -1;
}
.intake-grid input,
.intake-grid textarea,
.intake-grid select {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
  padding: 0.65rem 0.75rem;
}
.intake-grid textarea {
  min-height: 100px;
  resize: vertical;
}
.intake-grid select option {
  color: #111;
}
.checkbox-line {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 0.55rem !important;
}
.checkbox-line input {
  width: auto;
  margin-top: 0.2rem;
}
.style-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.style-chip {
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  color: var(--text-muted);
}
.style-chip input {
  width: auto;
}
.page-builder {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.guided-page-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 0.35rem;
}
.guided-page-card {
  display: flex !important;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  padding: 0.55rem 0.65rem;
  color: var(--text-muted);
}
.guided-page-card:has(input:checked) {
  border-color: var(--border-h);
  box-shadow: var(--glow-sm);
  color: var(--text);
}
.custom-pages-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.custom-page-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
}
.page-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr)) auto;
  gap: 0.55rem;
}
.page-row input {
  width: 100%;
}
.page-remove-btn,
.page-add-btn {
  padding: 10px 16px;
  font-size: 0.82rem;
}
.conditional-upload {
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
}
.domain-idea-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0.6rem;
}
.intake-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: flex-end;
  margin-top: 1.2rem;
}
.intake-error {
  min-height: 1.4rem;
  color: #fda4af;
  font-size: 0.88rem;
  margin-top: 0.8rem;
}
.intake-success {
  margin-top: 1rem;
}
.intake-next-steps {
  margin: 0.8rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.intake-next-steps li {
  display: flex;
  gap: 10px;
  color: var(--text-muted);
}
.intake-review-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.02);
}
.intake-review-wrap h4 {
  font-family: var(--font-head);
  margin-bottom: 0.5rem;
}
.final-review-summary p {
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.summary-section {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 0.65rem;
  margin-bottom: 0.6rem;
}
.summary-section h5 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s cubic-bezier(0.23,1,0.32,1),
              transform 0.7s cubic-bezier(0.23,1,0.32,1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.40s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(var(--nav-h) + 2rem);
    padding-bottom: 4rem;
    text-align: center;
    gap: 3rem;
  }
  .hero-content { align-items: center; }
  .hero-sub { text-align: center; }
  .hero-stat-row { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-card { max-width: 340px; }
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .about-copy .section-title { text-align: center; }
  .about-orb-wrap { width: 260px; height: 260px; }
  .about-orb { width: 220px; height: 220px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
  .pricing-grid-single { max-width: 440px; }
  .contact-card { padding: 1.2rem 1.5rem; }
  .section { padding: 5rem 0; }
  .legal-page {
    padding-top: calc(var(--nav-h) + 2rem);
  }
  .intake-grid {
    grid-template-columns: 1fr;
  }
  .intake-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
  .domain-idea-row,
  .page-row,
  .guided-page-cards {
    grid-template-columns: 1fr;
    display: grid;
  }
  .custom-page-row {
    grid-template-columns: 1fr;
  }
  .intake-utility-row {
    justify-content: center;
  }
  .dev-test-banner {
    left: 10px;
    right: 10px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-generate, .btn-ghost { width: 100%; justify-content: center; }
  .hero-stat-row { gap: 1.2rem; }
  .about-orb-wrap { width: 220px; height: 220px; }
  .about-orb { width: 180px; height: 180px; }
}