/* ============================================================
   NEXUS AI — styles.css
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #07090d;
  --s1:        #0c1018;
  --s2:        #111720;
  --border:    rgba(255,255,255,0.06);
  --border2:   rgba(255,255,255,0.1);
  --blue:      #3b82f6;
  --blue2:     #60a5fa;
  --blue-glow: rgba(59,130,246,0.14);
  --cyan:      #22d3ee;
  --gold:      #f59e0b;
  --gold-dim:  rgba(245,158,11,0.11);
  --red:       #ef4444;
  --green:     #22c55e;
  --text:      #eef2f7;
  --text2:     #c4cdd8;
  --muted:     #5a6a7e;
  --muted2:    #3d4f63;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Mono', monospace;
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: .7;
}

/* ── CURSOR ── */
#cur, #cur-ring { position: fixed; pointer-events: none; z-index: 9999; border-radius: 50%; }
#cur            { width: 8px; height: 8px; background: var(--blue); mix-blend-mode: screen; transition: transform .12s, background .2s; }
#cur-ring       { width: 32px; height: 32px; border: 1.5px solid rgba(59,130,246,.35); transition: transform .08s; }
body.hovering #cur      { transform: scale(3); background: rgba(59,130,246,.6); }
body.hovering #cur-ring { transform: scale(.5); border-color: rgba(59,130,246,.7); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 200;
  padding: 18px 52px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: rgba(7,9,13,.88);
  backdrop-filter: blur(24px);
}
.nav-logo {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 17px;
  color: var(--text); text-decoration: none;
  display: flex; align-items: center; gap: 10px; letter-spacing: -.3px;
}
.live-dot {
  width: 7px; height: 7px; background: var(--cyan);
  border-radius: 50%; box-shadow: 0 0 8px var(--cyan);
  animation: blink 2s infinite; flex-shrink: 0;
}
@keyframes blink {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: .4; transform: scale(.7); }
}
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--blue) !important; color: #fff !important;
  padding: 9px 20px; border-radius: 3px; font-weight: 600;
  transition: all .2s !important;
}
.nav-cta:hover { background: #2563eb !important; box-shadow: 0 8px 24px rgba(59,130,246,.3) !important; }

/* ── LAYOUT ── */
section { position: relative; z-index: 1; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 52px; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 130px 52px 90px;
  position: relative; overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 55% at 50% 35%, black 20%, transparent 100%);
}
.hero-orb {
  position: absolute; top: -10%; left: 50%; transform: translateX(-50%);
  width: 1000px; height: 700px;
  background: radial-gradient(ellipse, rgba(59,130,246,.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 860px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(34,211,238,.25); background: rgba(34,211,238,.06);
  color: var(--cyan); padding: 5px 14px; border-radius: 100px;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 30px;
  opacity: 0; animation: up .7s .1s forwards;
}
h1.hero-h1 {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(48px, 7.5vw, 100px);
  line-height: .92; letter-spacing: -3.5px; margin-bottom: 26px;
  opacity: 0; animation: up .7s .3s forwards;
}
.hero-h1 .outline  { display: block; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.18); }
.hero-h1 .blue     { color: var(--blue); }
.hero-sub {
  font-family: 'Instrument Serif', serif; font-style: italic;
  font-size: 19px; color: var(--text2); max-width: 540px;
  line-height: 1.75; margin-bottom: 44px;
  opacity: 0; animation: up .7s .5s forwards;
}
.hero-actions {
  display: flex; align-items: center; gap: 18px;
  opacity: 0; animation: up .7s .7s forwards;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 3px;
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 14px; letter-spacing: .03em;
  text-decoration: none; border: none; cursor: none;
  transition: all .2s;
}
.btn-blue  { background: var(--blue); color: #fff; }
.btn-blue:hover { background: #2563eb; transform: translateY(-2px); box-shadow: 0 16px 40px rgba(59,130,246,.3); }
.btn-ghost { border: 1px solid var(--border2); color: var(--muted); background: transparent; }
.btn-ghost:hover { border-color: rgba(255,255,255,.2); color: var(--text); }
.btn-cyan  { background: var(--cyan); color: #07090d; font-weight: 700; }
.btn-cyan:hover { background: #06b6d4; transform: translateY(-2px); box-shadow: 0 16px 40px rgba(34,211,238,.25); }

.hero-proof {
  display: flex; gap: 52px;
  margin-top: 72px; padding-top: 44px;
  border-top: 1px solid var(--border);
  opacity: 0; animation: up .7s .9s forwards;
}
.proof-item .num { font-family: 'Syne', sans-serif; font-size: 38px; font-weight: 800; letter-spacing: -1.5px; color: var(--text); }
.proof-item .num em { color: var(--blue); font-style: normal; }
.proof-item .lbl { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; margin-top: 2px; }

@keyframes up { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

/* ── MARQUEE ── */
.marquee-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 15px 0; overflow: hidden; background: var(--s1); }
.marquee-track { display: flex; gap: 56px; animation: scroll 22s linear infinite; width: max-content; }
.marquee-track:hover { animation-play-state: paused; }
.m-item { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; white-space: nowrap; }
.m-item::before { content: ''; width: 4px; height: 4px; background: var(--blue); border-radius: 50%; flex-shrink: 0; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.on { opacity: 1; transform: translateY(0); }

/* ── SECTION HEADERS ── */
.sec-label {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; text-transform: uppercase; letter-spacing: .18em;
  color: var(--blue); margin-bottom: 14px;
}
.sec-label::before { content: ''; width: 20px; height: 1px; background: var(--blue); }
.sec-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 800; letter-spacing: -2px; line-height: .96; margin-bottom: 60px;
}

/* ── HOW IT WORKS ── */
.how { padding: 112px 0; background: var(--s1); }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); }
.step { background: var(--bg); padding: 40px 36px; position: relative; overflow: hidden; transition: background .25s; }
.step:hover { background: var(--s2); }
.step::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg,transparent,var(--blue),transparent); opacity: 0; transition: opacity .3s; }
.step:hover::after { opacity: 1; }
.step-n { font-family: 'Syne', sans-serif; font-size: 80px; font-weight: 800; color: rgba(59,130,246,.07); line-height: 1; margin-bottom: 20px; letter-spacing: -5px; }
.step-t { font-family: 'Syne', sans-serif; font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.step-d { color: var(--muted); font-size: 13px; line-height: 1.85; }
.step-chip { display: inline-block; margin-top: 18px; padding: 3px 10px; background: var(--blue-glow); color: var(--blue2); font-size: 11px; border-radius: 3px; letter-spacing: .04em; }

/* ── TERMINAL ── */
.demo { padding: 112px 0; background: var(--bg); }
.terminal { background: #060810; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; margin-top: 60px; font-family: 'DM Mono', monospace; }
.t-bar { background: var(--s2); padding: 12px 18px; display: flex; align-items: center; gap: 7px; border-bottom: 1px solid var(--border); }
.td { width: 12px; height: 12px; border-radius: 50%; }
.td.r { background: #ff5f57; } .td.y { background: #febc2e; } .td.g { background: #28c840; }
.t-label { margin-left: 8px; color: var(--muted); font-size: 12px; letter-spacing: .04em; }
.t-body { padding: 28px 32px; font-size: 13.5px; line-height: 2.1; }
.tp    { color: var(--blue); }
.tco   { color: var(--muted); }
.tg    { color: var(--green); }
.ty    { color: #fbbf24; }
.tcyan { color: var(--cyan); }
.t-line { display: block; opacity: 0; }
.t-line.show { opacity: 1; transition: opacity .2s; }

/* ── PRICING ── */
.pricing { padding: 112px 0; background: var(--s1); }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); margin-top: 60px; }
.p-card { background: var(--bg); padding: 44px 36px; position: relative; overflow: hidden; transition: transform .25s; }
.p-card:hover { transform: translateY(-3px); }
.p-card.featured { background: var(--s2); }
.p-card.featured::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 0%, rgba(59,130,246,.07), transparent 60%); pointer-events: none; }
.p-top-line { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg,transparent,var(--blue),transparent); }
.p-badge { display: inline-flex; align-items: center; gap: 7px; padding: 4px 12px; background: var(--gold-dim); color: var(--gold); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; border-radius: 3px; border: 1px solid rgba(245,158,11,.2); margin-bottom: 28px; }
.spot-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: blink 1.5s infinite; }
.p-name  { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 10px; }
.p-price { font-family: 'Syne', sans-serif; font-size: 60px; font-weight: 800; letter-spacing: -3px; line-height: 1; margin-bottom: 6px; }
.p-price sup { font-size: 24px; letter-spacing: 0; color: var(--muted); vertical-align: super; }
.p-once  { color: var(--muted); font-size: 13px; margin-bottom: 32px; }
.p-div   { height: 1px; background: var(--border); margin-bottom: 30px; }
.p-features { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 38px; }
.p-features li { display: flex; align-items: flex-start; gap: 11px; font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.p-features li .ck { color: var(--blue); flex-shrink: 0; margin-top: 1px; }
.p-features li strong { color: var(--text); font-weight: 400; }
.p-note { margin-top: 16px; padding: 12px 16px; background: rgba(59,130,246,.06); border-left: 2px solid var(--blue); color: var(--muted); font-size: 12px; line-height: 1.7; }

/* ── ROI STRIP ── */
.roi-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); margin-top: 2px; }
.roi-cell  { background: var(--bg); padding: 24px 28px; }
.roi-title { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.roi-text  { color: var(--muted); font-size: 12.5px; line-height: 1.8; }
.roi-text strong { color: var(--text); font-weight: 400; }

/* ── CONTACT ── */
.contact { padding: 112px 0; background: var(--bg); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 60px; align-items: start; }
.form-left h3 { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 14px; letter-spacing: -.5px; }
.form-left p  { color: var(--muted); font-size: 13px; line-height: 1.9; margin-bottom: 24px; }
.form-detail  { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 13px; margin-bottom: 14px; }
.form-detail .icon { width: 32px; height: 32px; background: var(--blue-glow); border: 1px solid rgba(59,130,246,.2); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: var(--blue); flex-shrink: 0; }
.form-right { background: var(--s1); padding: 40px; border: 1px solid var(--border); }
.f-group { margin-bottom: 20px; }
.f-label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 8px; }
.f-input, .f-select, .f-textarea { width: 100%; background: var(--s2); border: 1px solid var(--border); color: var(--text); font-family: 'DM Mono', monospace; font-size: 14px; padding: 12px 16px; border-radius: 3px; transition: border-color .2s, box-shadow .2s; outline: none; resize: none; }
.f-input:focus, .f-select:focus, .f-textarea:focus { border-color: rgba(59,130,246,.5); box-shadow: 0 0 0 3px rgba(59,130,246,.07); }
.f-input::placeholder, .f-textarea::placeholder { color: var(--muted2); }
.f-select { appearance: none; cursor: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6a7e' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.f-select option { background: var(--s2); }
.f-textarea { min-height: 100px; line-height: 1.6; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit { width: 100%; padding: 16px; background: var(--blue); color: #fff; border: none; border-radius: 3px; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: .05em; text-transform: uppercase; cursor: none; transition: all .2s; display: flex; align-items: center; justify-content: center; gap: 10px; }
.btn-submit:hover:not(:disabled) { background: #2563eb; box-shadow: 0 12px 32px rgba(59,130,246,.3); }
.btn-submit:disabled { opacity: .5; }
.f-status { margin-top: 16px; padding: 12px 16px; border-radius: 3px; font-size: 13px; display: none; }
.f-status.success { background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.2); color: var(--green); display: block; }
.f-status.error   { background: rgba(239,68,68,.1);  border: 1px solid rgba(239,68,68,.2);  color: var(--red);   display: block; }

/* ── FAQ ── */
.faq { padding: 112px 0; background: var(--s1); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); margin-top: 60px; }
.faq-item { background: var(--bg); padding: 38px 34px; transition: background .25s; }
.faq-item:hover { background: var(--s2); }
.faq-q { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 13px; }
.faq-a { color: var(--muted); font-size: 13.5px; line-height: 1.9; }
.faq-a strong { color: var(--text); font-weight: 400; }

/* ── DOMAIN ── */
.domain-section { padding: 80px 0; background: var(--bg); border-top: 1px solid var(--border); }
.domain-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); margin-top: 44px; }
.domain-card { background: var(--s1); padding: 28px 24px; }
.domain-card.best { background: var(--s2); border-top: 2px solid var(--blue); }
.domain-name  { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 6px; letter-spacing: -.5px; }
.domain-price { color: var(--muted); font-size: 12px; margin-bottom: 10px; }
.domain-why   { color: var(--muted); font-size: 12.5px; line-height: 1.7; }
.domain-badge { display: inline-block; padding: 2px 8px; background: var(--blue-glow); color: var(--blue); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; border-radius: 2px; margin-bottom: 12px; }

/* ── CTA FINAL ── */
.cta-final { padding: 140px 0; text-align: center; position: relative; overflow: hidden; background: var(--s1); }
.cta-final::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 900px; height: 500px; background: radial-gradient(ellipse, rgba(59,130,246,.06), transparent 65%); pointer-events: none; }
.cta-h   { font-family: 'Syne', sans-serif; font-size: clamp(38px,6vw,76px); font-weight: 800; letter-spacing: -3px; line-height: .93; margin-bottom: 24px; }
.cta-sub { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 18px; color: var(--muted); max-width: 480px; margin: 0 auto 44px; }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--border); padding: 36px 52px; display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 12px; position: relative; z-index: 1; background: var(--bg); }
.f-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 16px; color: var(--text); display: flex; align-items: center; gap: 9px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero, .container { padding-left: 24px; padding-right: 24px; }
  .hero { padding-top: 100px; padding-bottom: 60px; }
  .steps, .pricing-grid, .faq-grid, .domain-grid, .roi-strip { grid-template-columns: 1fr; }
  .p-card { padding: 36px 28px; }
  .form-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-proof { gap: 28px; flex-wrap: wrap; }
  .f-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 14px; text-align: center; padding: 28px 24px; }
}

/* HERO FIX */
.hero-badge, h1.hero-h1, .hero-sub, .hero-actions, .hero-proof {
  opacity: 1 !important; transform: none !important; animation: none !important;
}
.reveal { opacity: 1 !important; transform: none !important; }
