/* ── Verdio landing — violet / fuchsia / orange on deep purple ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #1A0A2E;
  --bg2: #1C1245;
  --surface: #241640;
  --surface2: #291F4A;
  --border: #3a2a5e;
  --text: #EDE8F7;
  --muted: #a99bc7;
  --violet: #8B5CF6;
  --violet-deep: #6D28D9;
  --fuchsia: #D946EF;
  --orange: #F97316;
  --green: #10B981;
  --gold: #FFD700;
  --glow: rgba(217, 70, 239, 0.18);
  --radius: 14px;
  --font: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 700px; }
.center { text-align: center; }

.accent-text {
  background: linear-gradient(120deg, var(--violet), var(--fuchsia) 55%, var(--orange));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ── Brand ── */
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-logo { width: 34px; height: 34px; border-radius: 9px; }
.brand-logo.small { width: 28px; height: 28px; }
.brand-name { font-weight: 800; font-size: 1.2rem; letter-spacing: -0.3px; color: var(--text); }
.spark { color: var(--fuchsia); font-size: 0.9rem; }

/* ── Nav ── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 14px 24px; background: rgba(26,10,46,0.82); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.btn-ghost { border: 1px solid var(--border); padding: 8px 16px; border-radius: 8px; color: var(--text) !important; transition: border-color 0.2s; }
.btn-ghost:hover { border-color: var(--fuchsia); }

/* ── Buttons ── */
.btn-primary, .btn-secondary { display: inline-block; font-family: var(--font); font-size: 1rem; font-weight: 600; padding: 14px 30px; border-radius: 11px; border: none; cursor: pointer; text-decoration: none; transition: opacity 0.2s, transform 0.15s, border-color 0.2s; }
.btn-primary { background: linear-gradient(120deg, var(--violet-deep), var(--fuchsia) 60%, var(--orange)); color: #fff; }
.btn-primary:hover { opacity: 0.92; transform: translateY(-1px); }
.btn-primary.wide { width: 100%; text-align: center; }
.btn-secondary { background: var(--surface); color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: var(--violet); }

/* ── Hero ── */
.hero { position: relative; overflow: hidden; padding: 150px 0 90px; }
.hero-glow { position: absolute; top: -12%; left: 45%; width: 680px; height: 680px; max-width: 95vw; background: radial-gradient(circle, var(--glow) 0%, transparent 70%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; position: relative; }
.eyebrow { font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--fuchsia); margin-bottom: 18px; }
.hero h1 { font-size: clamp(2.6rem, 5.5vw, 4rem); font-weight: 800; line-height: 1.04; letter-spacing: -1.5px; margin-bottom: 22px; }
.hero-sub { font-size: 1.1rem; color: var(--muted); max-width: 520px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-note { font-size: 0.85rem; color: var(--muted); }

/* ── Phone mockup ── */
.hero-visual { display: flex; justify-content: center; }
.phone { position: relative; width: 260px; aspect-ratio: 9 / 19; background: #120726; border: 2px solid var(--border); border-radius: 34px; padding: 12px; box-shadow: 0 30px 70px rgba(109,40,217,0.35); }
.phone-notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 90px; height: 20px; background: #120726; border-radius: 0 0 12px 12px; z-index: 2; }
.phone-screen { width: 100%; height: 100%; border-radius: 24px; overflow: hidden; background: #120726; }
.phone-screen img { width: 100%; height: 100%; object-fit: cover; display: block; }
.phone-screen.placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; background: repeating-linear-gradient(135deg, var(--surface), var(--surface) 12px, var(--surface2) 12px, var(--surface2) 24px); border: 1px dashed var(--border); color: var(--muted); text-align: center; padding: 16px; }

/* ── Prompt strip ── */
.strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg2); padding: 30px 0; }
.prompt { text-align: center; font-size: clamp(1.3rem, 3vw, 1.9rem); font-weight: 700; font-style: italic; background: linear-gradient(120deg, var(--violet), var(--fuchsia)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ── Sections ── */
.section { padding: 90px 0; }
.section.alt { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--fuchsia); margin-bottom: 14px; }
.section h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -1px; line-height: 1.15; margin-bottom: 18px; }
.section-sub { font-size: 1.05rem; color: var(--muted); max-width: 560px; margin-bottom: 40px; }
.center .section-sub { margin-left: auto; margin-right: auto; }

/* ── Cards ── */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px; }
.cards.modes { grid-template-columns: repeat(2, 1fr); }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: border-color 0.2s, transform 0.2s; }
.card:hover { border-color: var(--fuchsia); transform: translateY(-3px); }
.card-badge { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--violet); background: rgba(139,92,246,0.12); border: 1px solid rgba(139,92,246,0.3); padding: 4px 12px; border-radius: 100px; margin-bottom: 14px; }
.card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.card p { font-size: 0.95rem; color: var(--muted); }
.card-action { display: inline-block; margin-top: 16px; font-size: 0.9rem; font-weight: 600; color: var(--fuchsia); }
.card-action::after { content: " →"; }
.card.mini { padding: 24px; }
.card.mini h3 { font-size: 1.05rem; }
.card.mini p { font-size: 0.9rem; }
.card-icon { font-size: 1.7rem; margin-bottom: 12px; }

/* ── Steps ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.step-num { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 11px; background: linear-gradient(120deg, var(--violet-deep), var(--fuchsia)); color: #fff; font-weight: 800; margin-bottom: 16px; }
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: 0.92rem; color: var(--muted); }

/* ── Benefits ── */
.benefits { display: grid; gap: 16px; max-width: 480px; margin: 44px auto 32px; text-align: left; }
.benefit { display: flex; gap: 16px; align-items: center; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; }
.b-emoji { font-size: 1.6rem; }
.benefit strong { display: block; font-size: 1.05rem; margin-bottom: 2px; }
.benefit p { font-size: 0.9rem; color: var(--muted); }

.disclaimer { font-size: 0.82rem; color: var(--muted); max-width: 620px; margin: 0 auto; }

/* ── Lead form ── */
.lead-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; max-width: 560px; margin: 0 auto; text-align: left; }
.form-group { margin-bottom: 20px; }
label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 8px; }
label .opt { color: var(--muted); font-weight: 400; }
input, textarea { width: 100%; background: var(--bg); border: 1px solid var(--border); border-radius: 9px; color: var(--text); font-family: var(--font); font-size: 0.95rem; padding: 12px 15px; transition: border-color 0.2s; outline: none; resize: vertical; }
input::placeholder, textarea::placeholder { color: #6a5a86; }
input:focus, textarea:focus { border-color: var(--fuchsia); }

.form-message { padding: 14px 18px; border-radius: 9px; font-size: 0.95rem; font-weight: 500; margin: 0 auto 22px; max-width: 560px; }
.form-message.success { background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.35); color: #4ee0ad; }
.form-message.error { background: rgba(244,63,94,0.12); border: 1px solid rgba(244,63,94,0.35); color: #ff8fa3; }

/* ── Footer ── */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 40px 24px; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.footer p { font-size: 0.9rem; color: var(--muted); }
.footer .muted { font-size: 0.82rem; }
.footer a { color: var(--fuchsia); text-decoration: none; }
.footer a:hover { text-decoration: underline; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-cta { justify-content: center; }
  .hero-visual { margin-top: 20px; }
  .cards, .cards.modes { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nav { padding: 12px 18px; }
  .nav-links { gap: 14px; }
  .nav-links a:not(.btn-ghost) { display: none; }
  .hero { padding: 130px 0 70px; }
  .cards, .cards.modes { grid-template-columns: 1fr; }
  .lead-form { padding: 26px 20px; }
}
