/* Presence landing — dark stage / electric violet / spotlights.
   Fraunces (SOFT+WONK) display · Instrument Sans body · Gulzar Urdu accent. */

:root {
  --bg: #0b0812;
  --bg-raise: #141021;
  --bg-deep: #070510;
  --paper: #f4f1fb;
  --text-soft: rgba(244, 241, 251, 0.72);
  --text-faint: rgba(244, 241, 251, 0.45);
  --violet: #7240fe;
  --violet-hot: #8b5cff;
  --violet-soft: #a78bfa;
  --violet-ghost: rgba(114, 64, 254, 0.14);
  --hairline: rgba(244, 241, 251, 0.12);
  --display: "Fraunces", Georgia, serif;
  --body: "Instrument Sans", -apple-system, "Segoe UI", sans-serif;
  --urdu: "Gulzar", serif;
  --radius: 20px;
  --container: 1220px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
[hidden] { display: none !important; }
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--violet); color: #fff; }
:focus-visible { outline: 2px solid var(--violet-hot); outline-offset: 3px; border-radius: 4px; }

/* padding-inline only — the shorthand `padding: 0 x` would zero the
   vertical rhythm of sections that carry .container themselves. */
.container { max-width: var(--container); margin: 0 auto; padding-inline: clamp(20px, 4vw, 48px); }

/* ---------- type: LOUD ---------- */
h1, h2, h3 { font-family: var(--display); font-weight: 500; letter-spacing: -0.018em; text-wrap: balance; }
h1 {
  font-size: clamp(3.4rem, 9vw, 7.4rem);
  line-height: 0.98;
  font-variation-settings: "opsz" 144, "SOFT" 44, "WONK" 1;
  text-shadow: 0 0 80px rgba(114, 64, 254, 0.35);
}
h1 em, h2 em {
  font-style: italic; color: var(--violet-hot);
  font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 1;
  text-shadow: 0 0 60px rgba(139, 92, 255, 0.55);
}
h2 {
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  line-height: 1.04;
  font-variation-settings: "opsz" 100, "SOFT" 44, "WONK" 1;
  max-width: 20ch;
}
h3 { font-size: 1.4rem; line-height: 1.25; font-variation-settings: "opsz" 40, "SOFT" 30; }
.kicker {
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--violet-soft); margin-bottom: 16px;
}
.section-sub { color: var(--text-soft); max-width: 56ch; margin-top: 20px; font-size: 1.12rem; }

section { padding: clamp(84px, 11vw, 150px) 0; position: relative; }

/* ---------- spotlight beams ---------- */
/* Spotlight beams: ONE full-bleed layer per section carrying both conic
   gradients — no filter:blur (compositor cost) and no narrow pseudo boxes
   (their edges chop the gradient into a visible seam). The gradients fade
   to transparent angularly, and a mask fades the layer's own bottom edge
   so tall sections never show a hard cut. */
.spotlit::before {
  content: ""; position: absolute; inset: -10% 0;
  pointer-events: none; opacity: 0.85;
  background:
    conic-gradient(from 118deg at 6% 0%, transparent 0deg, rgba(114, 64, 254, 0.04) 8deg, rgba(114, 64, 254, 0.16) 16deg, rgba(139, 92, 255, 0.05) 28deg, transparent 42deg),
    conic-gradient(from 220deg at 94% 0%, transparent 0deg, rgba(139, 92, 255, 0.04) 6deg, rgba(114, 64, 254, 0.15) 20deg, rgba(114, 64, 254, 0.05) 32deg, transparent 40deg);
  -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent 92%);
  mask-image: linear-gradient(180deg, #000 55%, transparent 92%);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: 999px; font-weight: 700; font-family: var(--body);
  border: 1px solid transparent; cursor: pointer;
  transition: transform 0.18s cubic-bezier(0.22, 1, 0.36, 1), background 0.18s, box-shadow 0.18s, color 0.18s, border-color 0.18s;
  will-change: transform;
}
.btn-solid {
  background: linear-gradient(135deg, var(--violet-hot), var(--violet));
  color: #fff;
  box-shadow: 0 0 0 1px rgba(139, 92, 255, 0.4), 0 14px 44px -10px rgba(114, 64, 254, 0.75);
}
.btn-solid:hover { box-shadow: 0 0 0 1px rgba(139, 92, 255, 0.7), 0 18px 54px -10px rgba(139, 92, 255, 0.9); }
.btn-ghost { border-color: var(--hairline); color: var(--paper); background: rgba(244, 241, 251, 0.03); }
.btn-ghost:hover { border-color: var(--violet-soft); background: var(--violet-ghost); }
.btn-paper { background: var(--paper); color: #14092e; }
.btn-paper:hover { background: #fff; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.text-link {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 20px;
  font-weight: 700; color: var(--violet-soft); font-size: 1rem;
}
.text-link:hover { color: var(--violet-hot); text-decoration: underline; text-underline-offset: 4px; }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 14px clamp(20px, 4vw, 48px);
  background: rgba(11, 8, 18, 0.68);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.nav.scrolled { border-bottom-color: var(--hairline); }
.nav-mark { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-size: 1.28rem; font-weight: 600; font-variation-settings: "SOFT" 44; }
.nav-links { display: flex; gap: 28px; font-size: 0.94rem; font-weight: 600; color: var(--text-soft); }
.nav-links a:hover { color: var(--paper); }
.nav-cta { display: flex; gap: 10px; }
@media (max-width: 860px) { .nav-links { display: none; } }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: 150px 0 90px;
  /* clip, not hidden: the oversized beam layer overflows this box, and
     overflow:hidden would turn the hero into a scroll-latching container
     that swallows wheel input. clip never creates a scroller. */
  overflow: clip;
  background: radial-gradient(1200px 700px at 50% -10%, rgba(114, 64, 254, 0.22), transparent 60%), var(--bg);
}
/* Both spotlight beams live on ONE full-bleed layer (two conic gradients)
   so there is no seam where separate pseudo-elements would meet. */
.hero::before {
  content: ""; position: absolute; inset: -16% -6%;
  pointer-events: none; z-index: 0; will-change: transform;
  background:
    conic-gradient(from 116deg at 8% 0%, transparent 0deg, rgba(139, 92, 255, 0.07) 6deg, rgba(139, 92, 255, 0.26) 14deg, rgba(114, 64, 254, 0.09) 28deg, transparent 44deg),
    conic-gradient(from 220deg at 92% 0%, transparent 0deg, rgba(114, 64, 254, 0.07) 8deg, rgba(139, 92, 255, 0.24) 22deg, rgba(139, 92, 255, 0.06) 34deg, transparent 42deg);
  animation: beam-sway 10s ease-in-out infinite alternate;
}
@keyframes beam-sway { to { transform: rotate(1.6deg) scale(1.04); } }
#net { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: 0.9; }
.cursor-spot {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(640px circle at var(--sx, 50%) var(--sy, 35%), rgba(139, 92, 255, 0.16), transparent 62%);
}
.hero-inner { position: relative; z-index: 1; max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); width: 100%; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px; flex-wrap: wrap;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-soft); margin-bottom: 30px;
}
.eyebrow-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--violet-hot); box-shadow: 0 0 18px 4px rgba(139, 92, 255, 0.65); }
.eyebrow-urdu {
  font-family: var(--urdu); font-size: 1.25rem; letter-spacing: 0; text-transform: none;
  color: var(--violet-soft); padding-inline-start: 14px; border-inline-start: 1px solid var(--hairline);
}
.hero-sub { max-width: 52ch; color: var(--text-soft); font-size: clamp(1.1rem, 1.7vw, 1.3rem); margin-top: 30px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 42px; }
.hero-stats {
  display: flex; gap: clamp(30px, 5vw, 70px); flex-wrap: wrap; margin-top: clamp(52px, 8vh, 92px);
}
.hero-stats div { min-width: 90px; }
/* No text-shadow here: these numbers repaint every animation frame during
   the count-up, and a blurred shadow per frame starves rAF on weak GPUs. */
.hero-stats dt {
  font-family: var(--display); font-size: clamp(2rem, 3.4vw, 2.9rem); font-weight: 560;
  font-variation-settings: "opsz" 72, "SOFT" 44; font-variant-numeric: tabular-nums;
  color: var(--paper);
}
.hero-stats dd { font-size: 0.82rem; color: var(--text-faint); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; margin-top: 3px; }
.hero-scroll {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); z-index: 1;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--hairline);
  display: flex; align-items: center; justify-content: center; color: var(--text-soft);
  animation: bob 2.6s ease-in-out infinite; background: rgba(11, 8, 18, 0.5);
}
@keyframes bob { 50% { transform: translateX(-50%) translateY(7px); } }

/* ---------- marquee: violet band ---------- */
.marquee {
  background: linear-gradient(90deg, var(--violet), var(--violet-hot), var(--violet));
  color: #fff; padding: 26px 0; overflow: clip;
  box-shadow: 0 0 90px rgba(114, 64, 254, 0.5);
}
.marquee-track { display: flex; gap: 60px; width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.mq-item { display: inline-flex; align-items: baseline; gap: 12px; white-space: nowrap; font-size: 0.92rem; color: rgba(255, 255, 255, 0.65); }
.mq-item b { font-family: var(--display); font-weight: 540; font-size: 1.3rem; color: #fff; font-variation-settings: "SOFT" 44; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- ways ---------- */
.ways-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 24px; margin-top: 52px; }
.way-card {
  background: var(--bg-raise); border: 1px solid var(--hairline); border-radius: var(--radius);
  padding: 42px 36px; position: relative; overflow: clip;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s, border-color 0.25s;
}
.way-card:hover {
  transform: translateY(-5px); border-color: rgba(139, 92, 255, 0.45);
  box-shadow: 0 30px 70px -30px rgba(114, 64, 254, 0.55);
}
.way-icon {
  width: 58px; height: 58px; border-radius: 16px; background: var(--violet-ghost); color: var(--violet-soft);
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
  box-shadow: inset 0 0 0 1px rgba(139, 92, 255, 0.25);
}
.way-card p { color: var(--text-soft); margin-top: 14px; }

/* ---------- versus ---------- */
.versus { background: var(--bg-deep); }
.versus-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 52px; }
.versus-col { border-radius: var(--radius); padding: 40px 36px; }
.versus-col h3 { margin-bottom: 22px; font-size: 1.6rem; }
.versus-col ul { list-style: none; display: grid; gap: 15px; }
.versus-col li { padding-left: 32px; position: relative; }
.versus-old { border: 1px dashed var(--hairline); color: var(--text-faint); }
.versus-old h3 { color: var(--text-soft); }
.versus-old li::before {
  content: ""; position: absolute; left: 2px; top: 7px; width: 14px; height: 14px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 4l8 8M12 4l-8 8' stroke='%23554f66' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}
.versus-new {
  background: linear-gradient(150deg, var(--violet) 0%, #5b2bd6 55%, var(--violet-deep, #45179b) 100%);
  color: #fff;
  box-shadow: 0 40px 90px -34px rgba(114, 64, 254, 0.85);
}
.versus-new h3 { color: #fff; }
.versus-new li { color: rgba(255, 255, 255, 0.92); }
.versus-new li::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 16px; height: 16px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M2.5 8.5l3.5 3.5 7.5-8' stroke='%23ffffff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* ---------- work / showcase ---------- */
/* Full-bleed showcase: the grid escapes the container and runs edge to
   edge (with its own gutter), capped only on very wide screens. */
.work-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 28px;
  margin-top: 56px; padding-inline: clamp(20px, 3vw, 64px);
  max-width: 1880px; margin-inline: auto;
}
.site-shot { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.site-card {
  border: 1px solid var(--hairline); border-radius: var(--radius); background: var(--bg-raise); overflow: clip;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s, border-color 0.25s;
}
.site-card:hover {
  transform: translateY(-6px); border-color: rgba(139, 92, 255, 0.4);
  box-shadow: 0 34px 70px -30px rgba(114, 64, 254, 0.6);
}
.site-chrome {
  display: flex; align-items: center; gap: 12px; padding: 11px 15px;
  border-bottom: 1px solid var(--hairline); background: rgba(244, 241, 251, 0.04);
}
.dots { display: inline-flex; gap: 5px; }
.dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--hairline); }
.site-url { font-size: 0.78rem; color: var(--text-faint); font-weight: 600; letter-spacing: 0.02em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.site-frame {
  position: relative; aspect-ratio: 16 / 10.5; overflow: clip; cursor: pointer;
  background: radial-gradient(420px 260px at 50% 0%, rgba(114, 64, 254, 0.25), transparent 70%), var(--bg-deep);
}
.site-frame iframe {
  position: absolute; top: 0; left: 0; width: 1280px; height: 840px;
  border: 0; transform-origin: 0 0; pointer-events: none; background: #fff;
}
.site-frame::after { content: ""; position: absolute; inset: 0; } /* click shield */
.site-meta { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 17px 19px 19px; }
.site-meta h3 { font-size: 1.18rem; }
.site-meta p { font-size: 0.86rem; color: var(--text-faint); margin-top: 3px; }
.site-visit {
  display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0;
  font-size: 0.84rem; font-weight: 700; color: var(--violet-soft);
  padding: 9px 16px; border: 1px solid rgba(139, 92, 255, 0.35); border-radius: 999px; background: var(--violet-ghost);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.site-visit:hover { background: var(--violet); color: #fff; box-shadow: 0 8px 28px -8px rgba(114, 64, 254, 0.8); }

/* ---------- included ---------- */
.included { background: var(--bg-deep); }
.inc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; margin-top: 56px; }
.inc-item {
  border: 1px solid var(--hairline); border-radius: var(--radius); padding: 30px 26px;
  background: rgba(244, 241, 251, 0.02);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.inc-item:hover { border-color: rgba(139, 92, 255, 0.5); background: var(--violet-ghost); transform: translateY(-3px); }
.inc-item svg { color: var(--violet-soft); margin-bottom: 18px; filter: drop-shadow(0 0 12px rgba(139, 92, 255, 0.5)); }
.inc-item h3 { font-size: 1.12rem; color: var(--paper); }
.inc-item p { font-size: 0.92rem; color: var(--text-soft); margin-top: 9px; }

/* ---------- how ---------- */
.how-steps { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 26px; margin-top: 52px; }
.how-steps li { border-top: 2px solid var(--violet); padding-top: 24px; }
.step-n {
  font-family: var(--display); font-size: 1rem; font-weight: 700; color: var(--violet-hot); letter-spacing: 0.1em;
  text-shadow: 0 0 24px rgba(139, 92, 255, 0.6);
}
.how-steps h3 { margin-top: 12px; }
.how-steps p { color: var(--text-soft); margin-top: 12px; font-size: 1rem; }

/* ---------- pricing ---------- */
.pricing { background: var(--bg-deep); }
.pricing-wrap { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 76px); align-items: center; position: relative; z-index: 1; }
@media (max-width: 900px) { .pricing-wrap { grid-template-columns: 1fr; } }
.pricing-notes { list-style: none; display: grid; gap: 13px; margin-top: 28px; color: var(--text-soft); }
.pricing-notes li { padding-left: 30px; position: relative; }
.pricing-notes li::before {
  content: ""; position: absolute; left: 0; top: 5px; width: 17px; height: 17px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M2.5 8.5l3.5 3.5 7.5-8' stroke='%23a78bfa' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.price-card {
  background: linear-gradient(160deg, #8b5cff 0%, var(--violet) 42%, #45179b 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px; padding: 46px 42px; color: #fff;
  box-shadow: 0 0 0 1px rgba(139, 92, 255, 0.25), 0 60px 130px -40px rgba(114, 64, 254, 0.95);
  position: relative; overflow: clip;
}
.price-card::before {
  content: ""; position: absolute; inset: -45% -45% auto auto; width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 62%);
}
.price-label { font-size: 0.76rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255, 255, 255, 0.75); }
.price-figure {
  font-family: var(--display); font-size: clamp(3.2rem, 5.6vw, 4.4rem); font-weight: 580; margin-top: 12px;
  font-variation-settings: "opsz" 100, "SOFT" 44; font-variant-numeric: tabular-nums;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
}
.price-figure span { font-size: 1.2rem; font-family: var(--body); font-weight: 600; color: rgba(255, 255, 255, 0.75); }
.price-domain { color: rgba(255, 255, 255, 0.7); font-size: 0.96rem; margin-top: 3px; }
.price-list { list-style: none; display: grid; gap: 13px; margin: 30px 0 32px; position: relative; }
.price-list li { padding-left: 30px; position: relative; font-size: 1rem; }
.price-list li::before {
  content: ""; position: absolute; left: 0; top: 5px; width: 17px; height: 17px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M2.5 8.5l3.5 3.5 7.5-8' stroke='%23ffffff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.price-card .btn-solid {
  background: #fff; color: #45179b;
  box-shadow: 0 18px 44px -12px rgba(0, 0, 0, 0.45);
}
.price-card .btn-solid:hover { background: var(--paper); box-shadow: 0 22px 54px -12px rgba(0, 0, 0, 0.55); }
.price-alt { text-align: center; font-size: 0.9rem; color: rgba(255, 255, 255, 0.7); margin-top: 18px; position: relative; }
.price-alt a { color: #fff; font-weight: 700; }
.price-alt a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- faq ---------- */
.faq-list { margin-top: 48px; border-top: 1px solid var(--hairline); max-width: 820px; }
.faq-list details { border-bottom: 1px solid var(--hairline); }
.faq-list summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px; font-family: var(--display); font-size: 1.28rem; font-weight: 520;
  font-variation-settings: "opsz" 40, "SOFT" 30;
  transition: color 0.18s;
}
.faq-list summary:hover { color: var(--violet-soft); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; inset: 50% auto auto 0; width: 18px; height: 2px;
  background: var(--violet-hot); transform: translateY(-50%); transition: transform 0.25s;
  box-shadow: 0 0 10px rgba(139, 92, 255, 0.6);
}
.faq-icon::after { transform: translateY(-50%) rotate(90deg); }
details[open] .faq-icon::after { transform: translateY(-50%) rotate(0deg); }
.faq-list details p { padding: 0 4px 26px; color: var(--text-soft); max-width: 62ch; }

/* ---------- final cta ---------- */
.final { background: var(--bg-deep); position: relative; overflow: clip; }
.final::before {
  content: ""; position: absolute; left: 50%; top: -34%; width: 1000px; height: 1000px; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(114, 64, 254, 0.4), transparent 58%); pointer-events: none;
}
.final-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 84px); align-items: center; position: relative; }
@media (max-width: 900px) { .final-wrap { grid-template-columns: 1fr; } }
.final h2 { color: #fff; }
.final-copy p { color: var(--text-soft); margin: 20px 0 30px; max-width: 44ch; font-size: 1.1rem; }
.lead-form {
  background: rgba(20, 16, 33, 0.75); border: 1px solid rgba(139, 92, 255, 0.28);
  border-radius: 26px; padding: 36px 32px; display: grid; gap: 17px;
  backdrop-filter: blur(10px);
  box-shadow: 0 40px 100px -40px rgba(114, 64, 254, 0.6);
}
.form-title { font-family: var(--display); font-size: 1.4rem; font-weight: 520; color: #fff; font-variation-settings: "SOFT" 44; }
.lead-form label { display: grid; gap: 8px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint); }
.lead-form input, .lead-form textarea {
  width: 100%; background: rgba(7, 5, 16, 0.7); border: 1px solid var(--hairline);
  border-radius: 13px; padding: 13px 15px; color: var(--paper);
  font-family: var(--body); font-size: 1rem; resize: vertical;
}
.lead-form input::placeholder, .lead-form textarea::placeholder { color: rgba(244, 241, 251, 0.28); }
.lead-form input:focus, .lead-form textarea:focus { outline: 2px solid var(--violet-hot); outline-offset: 0; border-color: transparent; }
.form-status { min-height: 1.2em; font-size: 0.92rem; color: var(--violet-soft); }
.form-status.err { color: #ff8a8a; }

/* ---------- footer ---------- */
.footer { background: var(--bg-deep); border-top: 1px solid var(--hairline); padding: 44px 0; }
.footer-wrap { display: flex; align-items: flex-start; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.footer .nav-mark { color: #fff; }
.footer-line { font-size: 0.9rem; color: var(--text-faint); margin-top: 12px; max-width: 42ch; }
.footer-line a { color: var(--violet-soft); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; font-size: 0.92rem; color: var(--text-soft); }
.footer-links a:hover { color: #fff; }

/* ---------- reveals ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; flex-wrap: wrap; }
  .hero-scroll, .hero::before, .hero::after { animation: none; }
  #net, .cursor-spot { display: none; }
  .btn, .way-card, .site-card, .inc-item { transition: none; }
}

/* ---------- subpages ---------- */
.page-hero {
  padding: clamp(150px, 20vh, 210px) 0 clamp(40px, 6vh, 70px);
  background: radial-gradient(1000px 560px at 50% -10%, rgba(114, 64, 254, 0.2), transparent 60%), var(--bg);
  overflow: clip;
}
.ph-title {
  font-family: var(--display);
  font-size: clamp(2.8rem, 7vw, 5.6rem); line-height: 1.0;
  font-variation-settings: "opsz" 144, "SOFT" 44, "WONK" 1;
  letter-spacing: -0.018em; text-wrap: balance;
  text-shadow: 0 0 70px rgba(114, 64, 254, 0.35);
}
.ph-title em { font-style: italic; color: var(--violet-hot); text-shadow: 0 0 60px rgba(139, 92, 255, 0.55); }
.page-cta { padding: clamp(84px, 11vw, 140px) 0; }

.shot-panel {
  border: 1px solid var(--hairline); border-radius: var(--radius); overflow: clip;
  background: var(--bg-raise);
  box-shadow: 0 50px 110px -50px rgba(114, 64, 254, 0.55);
  max-width: 1020px; margin-inline: auto;
}
.shot-panel img { width: 100%; display: block; }

/* ---------- live demo widget ---------- */
.demo {
  border: 1px solid rgba(139, 92, 255, 0.3); border-radius: 22px; overflow: clip;
  background: var(--bg-raise); max-width: 860px; margin-inline: auto;
  box-shadow: 0 40px 100px -44px rgba(114, 64, 254, 0.6);
}
.demo-head {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em;
  color: var(--violet-soft); border-bottom: 1px solid var(--hairline);
  background: rgba(114, 64, 254, 0.08);
}
.live-dot {
  width: 9px; height: 9px; border-radius: 50%; background: #4ade80; flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); animation: livepulse 2s ease-out infinite;
}
@keyframes livepulse { 70% { box-shadow: 0 0 0 9px rgba(74, 222, 128, 0); } 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); } }
.demo-body { display: grid; }
.demo-loading { padding: 26px 20px; color: var(--text-faint); }
.demo-loading a { color: var(--violet-soft); font-weight: 600; }
.demo-row {
  display: flex; align-items: center; gap: 16px; padding: 14px 20px;
  border-bottom: 1px solid var(--hairline);
}
.demo-row:last-child { border-bottom: 0; }
.demo-row img { width: 64px; height: 64px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
.demo-info { flex: 1; min-width: 0; display: grid; gap: 3px; }
.demo-info strong { font-family: var(--display); font-size: 1.08rem; font-weight: 540; }
.demo-info span { font-size: 0.82rem; color: var(--text-faint); display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.demo-addon { color: var(--violet-soft); }
.demo-cat { font-style: normal; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--violet-soft); }
.demo-buy { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.demo-buy > span { font-variant-numeric: tabular-nums; font-weight: 700; }
.demo-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 14px 20px; border-top: 1px solid var(--hairline);
  font-size: 0.86rem; color: var(--text-faint);
}
.demo-foot strong { color: var(--paper); font-variant-numeric: tabular-nums; font-size: 1.05rem; }
.size-chip {
  font-style: normal; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em;
  border: 1px solid var(--hairline); border-radius: 6px; padding: 2px 7px; color: var(--text-soft);
}

/* slots demo */
.demo-slots { padding: 16px 20px 20px; border-top: 1px solid var(--hairline); }
.demo-slots-label { font-size: 0.82rem; color: var(--text-faint); margin-bottom: 12px; }
.slot-row { display: flex; gap: 10px; flex-wrap: wrap; }
.slot {
  font-family: var(--body); font-size: 0.88rem; font-weight: 700; cursor: pointer;
  padding: 9px 16px; border-radius: 10px; border: 1px solid var(--hairline);
  background: rgba(244, 241, 251, 0.03); color: var(--paper);
  transition: border-color 0.15s, background 0.15s;
}
.slot:hover:not(:disabled) { border-color: var(--violet-soft); }
.slot-picked { background: var(--violet); border-color: var(--violet); color: #fff; }
.slot-taken { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; }

/* leads pipeline */
.pipeline {
  display: flex; gap: 12px; flex-wrap: wrap; max-width: 860px; margin-inline: auto;
}
.pipe-stage {
  flex: 1; min-width: 140px; text-align: center;
  padding: 16px 12px; border-radius: 14px; border: 1px dashed var(--hairline);
  font-weight: 700; font-size: 0.95rem; color: var(--text-soft);
}
.pipe-new { border-style: solid; border-color: var(--violet-hot); color: var(--paper); background: var(--violet-ghost); box-shadow: 0 0 30px -6px rgba(114, 64, 254, 0.5); }
.pipe-won { color: #4ade80; }

/* mega footer */
.footer-mega {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px); align-items: start;
}
@media (max-width: 900px) { .footer-mega { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-mega { grid-template-columns: 1fr; } }
.fm-col { display: grid; gap: 11px; font-size: 0.92rem; color: var(--text-soft); justify-items: start; }
.fm-col a:hover { color: #fff; }
.fm-head {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--violet-soft); margin-bottom: 4px;
}

/* ---------- comparison pages ---------- */
.cmp-table {
  border: 1px solid var(--hairline); border-radius: var(--radius); overflow: clip;
  max-width: 980px; margin-inline: auto; background: var(--bg-raise);
}
.cmp-row {
  display: grid; grid-template-columns: 1fr 1.2fr 1.2fr; gap: 16px;
  padding: 16px 22px; border-bottom: 1px solid var(--hairline);
  font-size: 0.95rem; color: var(--text-soft); align-items: start;
}
.cmp-row:last-child { border-bottom: 0; }
.cmp-head {
  font-size: 0.74rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-faint); background: rgba(114, 64, 254, 0.07);
}
.cmp-head .cmp-us { color: var(--violet-soft); }
.cmp-label { font-weight: 700; color: var(--paper); }
.cmp-row .cmp-us:not([role="columnheader"]) {
  color: var(--paper); display: flex; gap: 9px; align-items: baseline;
}
.cmp-check { flex-shrink: 0; transform: translateY(2px); }
.cmp-note { max-width: 980px; margin: 18px auto 0; font-size: 0.8rem; color: var(--text-faint); }
.cmp-verdict {
  max-width: 760px; margin: 44px auto 0; text-align: center;
  font-family: var(--display); font-size: clamp(1.25rem, 2.2vw, 1.6rem); line-height: 1.4;
  font-variation-settings: "opsz" 40, "SOFT" 44; color: var(--paper);
}
@media (max-width: 720px) {
  .cmp-row { grid-template-columns: 1fr; gap: 8px; }
  .cmp-head { display: none; }
  .cmp-row .cmp-us:not([role="columnheader"])::after { content: " — Presence"; color: var(--violet-soft); font-size: 0.78rem; font-weight: 700; }
}
