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

:root {
    --v:       #5B21B6;
    --v-mid:   #7C3AED;
    --v-soft:  #F5F0FF;
    --v-pale:  #EDE9FE;
    --pink:    #EC4899;
    --pink-d:  #DB2777;
    --ok:      #22C55E;
    --bg:      #FFFFFF;
    --bg-alt:  #F8F6FF;
    --text:    #111827;
    --muted:   #6B7280;
    --border:  #E9E4F7;
    --r:       12px;
    --r-lg:    20px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ─ NAV ──────────────────────────────────────────── */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 40px;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px; font-weight: 800; color: var(--v); letter-spacing: -0.5px;
}
.logo em { color: var(--pink); font-style: normal; }

.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a {
    font-size: 14px; font-weight: 500; color: var(--muted);
    text-decoration: none; transition: color .15s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
    background: var(--v); color: #fff !important;
    padding: 9px 20px; border-radius: 8px;
    font-weight: 600 !important; font-size: 14px;
    transition: background .15s;
}
.nav-cta:hover { background: var(--v-mid) !important; }

/* ─ HERO ─────────────────────────────────────────── */
.hero {
    padding: 130px 40px 80px;
    max-width: 1180px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
}

.hero-bg {
    background: radial-gradient(ellipse 70% 70% at 80% 40%, #EDE9FE 0%, #FFFFFF 65%);
}

.badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--v-soft); color: var(--v);
    font-size: 12px; font-weight: 600;
    padding: 6px 14px; border-radius: 999px;
    border: 1px solid var(--v-pale); margin-bottom: 22px;
}
.badge .dot {
    width: 7px; height: 7px; background: var(--pink);
    border-radius: 50%; animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:.5; transform:scale(1.35); }
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(34px, 4.5vw, 54px);
    font-weight: 800; line-height: 1.08;
    letter-spacing: -2px; margin-bottom: 18px;
}
.hero h1 .accent { color: var(--v); }

.hero-sub {
    font-size: 17px; color: var(--muted); line-height: 1.75;
    margin-bottom: 34px; max-width: 440px;
}

.signup-row {
    display: flex; gap: 10px; max-width: 440px; margin-bottom: 14px;
}
.signup-row input {
    flex: 1; padding: 13px 16px;
    border: 1.5px solid var(--border); border-radius: var(--r);
    font-size: 15px; font-family: 'Inter', sans-serif;
    outline: none; transition: border-color .15s;
    background: white;
}
.signup-row input:focus { border-color: var(--v); }
.signup-row input:disabled { background: #F3F4F6; }

.btn-v {
    background: var(--v); color: white; border: none;
    padding: 13px 22px; border-radius: var(--r);
    font-size: 15px; font-weight: 600;
    font-family: 'Inter', sans-serif; cursor: pointer;
    white-space: nowrap; transition: background .15s, transform .1s;
}
.btn-v:hover { background: var(--v-mid); transform: translateY(-1px); }
.btn-v:disabled { background: var(--ok); cursor: default; transform: none; }

.hero-footnote { font-size: 13px; color: var(--muted); }
.hero-footnote strong { color: var(--ok); }

/* ─ PHONE MOCKUP ─────────────────────────────────── */
.demo-wrap { display: flex; justify-content: center; position: relative; }

.phone {
    width: 270px;
    background: white;
    border-radius: 36px;
    border: 2px solid var(--border);
    box-shadow:
    0 50px 100px rgba(91,33,182,.14),
    0 0 0 1px rgba(91,33,182,.06);
    overflow: hidden;
}

.phone-top {
    background: var(--v);
    padding: 16px 16px 18px;
    color: white;
}
.phone-top-row {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 6px;
}
.seller-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px; font-weight: 700;
}
.live-chip {
    background: var(--pink); color: white;
    font-size: 10px; font-weight: 800;
    padding: 2px 8px; border-radius: 4px; letter-spacing: .8px;
}
.viewers {
    font-size: 11px; opacity: .75;
    display: flex; align-items: center; gap: 5px;
}
.v-dot {
    width: 6px; height: 6px; background: var(--ok);
    border-radius: 50%; animation: pulse 2s infinite;
}

.phone-body { padding: 14px; background: var(--bg-alt); min-height: 280px; }

.p-card {
    background: white; border-radius: var(--r);
    padding: 13px; border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.p-card.pop { animation: cardPop .4s cubic-bezier(.22,.68,0,1.2); }
@keyframes cardPop {
    from { opacity:0; transform: scale(.92) translateY(8px); }
    to   { opacity:1; transform: scale(1) translateY(0); }
}

.p-img {
    height: 88px; border-radius: 8px;
    background: linear-gradient(135deg,#DDD6FE,#FBCFE8);
    display: flex; align-items: center; justify-content: center;
    font-size: 36px; margin-bottom: 10px;
}
.p-name { font-family: 'Space Grotesk',sans-serif; font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.p-price { font-family: 'Space Grotesk',sans-serif; font-size: 17px; font-weight: 700; color: var(--v); margin-bottom: 8px; }

.avail-chip {
    display: inline-flex; align-items: center; gap: 4px;
    background: #DCFCE7; color: #16A34A;
    font-size: 10px; font-weight: 700;
    padding: 3px 9px; border-radius: 6px; margin-bottom: 10px;
}
.avail-chip::before { content:'●'; font-size:7px; animation:pulse 1.5s infinite; }

.btn-res {
    width:100%; padding:11px; background: var(--pink); color: white; border:none;
    border-radius: 8px; font-size: 13px; font-weight: 700;
    font-family: 'Inter',sans-serif; cursor: pointer; transition: background .15s;
}
.btn-res:hover { background: var(--pink-d); }

.btn-done {
    width:100%; padding:11px; background: var(--ok); color: white; border:none;
    border-radius: 8px; font-size: 13px; font-weight: 700;
    font-family: 'Inter',sans-serif;
    display: none; align-items:center; justify-content:center; gap:5px;
}

/* Notification */
.notif {
    position: absolute; bottom: 16px; left: -72px;
    background: white; border-radius: 12px;
    padding: 9px 13px; border: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,.11);
    display: flex; align-items: center; gap: 8px;
    font-size: 11px; white-space: nowrap; z-index: 10;
    opacity: 0; transform: translateX(-10px);
    transition: opacity .3s, transform .3s;
}
.notif.show { opacity:1; transform:translateX(0); }
.notif-av {
    width:26px; height:26px; border-radius:50%;
    background: linear-gradient(135deg,var(--v),var(--pink));
    display:flex; align-items:center; justify-content:center;
    font-size:13px; flex-shrink:0;
}
.notif strong { display:block; color:var(--text); font-size:11px; }
.notif span   { color:var(--muted); font-size:10px; }

/* ─ PLATFORMS ────────────────────────────────────── */
.platforms {
    padding: 28px 40px 44px;
    border-top: 1px solid var(--border);
    text-align: center;
}
.platforms p {
    font-size: 12px; color: var(--muted);
    text-transform: uppercase; letter-spacing:.07em;
    font-weight:600; margin-bottom:14px;
}
.plat-row {
    display:flex; justify-content:center; align-items:center;
    gap:32px; flex-wrap:wrap;
}
.plat {
    font-family:'Space Grotesk',sans-serif;
    font-size:14px; font-weight:700; color:#9CA3AF;
    display:flex; align-items:center; gap:6px;
}

/* ─ SECTIONS ─────────────────────────────────────── */
.sec { padding: 80px 40px; }
.sec-alt { background: var(--bg-alt); }
.sec-inner { max-width: 1100px; margin: 0 auto; }

.eyebrow {
    font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing:.09em; color: var(--v); margin-bottom:10px;
}
.sec-h {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 700; letter-spacing:-1px; line-height:1.15; margin-bottom:14px;
}
.sec-sub { font-size:16px; color:var(--muted); max-width:520px; line-height:1.75; }

/* ─ PROBLEM ──────────────────────────────────────── */
.pain-grid {
    display:grid; grid-template-columns:repeat(3,1fr);
    gap:18px; margin-top:44px;
}
.pain-card {
    background:white; border-radius:var(--r-lg);
    padding:26px; border:1px solid var(--border);
}
.pain-icon {
    width:46px; height:46px; border-radius:12px;
    background:#FEE2E2; display:flex; align-items:center;
    justify-content:center; font-size:20px; margin-bottom:14px;
}
.pain-card h3 {
    font-family:'Space Grotesk',sans-serif;
    font-size:15px; font-weight:700; margin-bottom:7px;
}
.pain-card p { font-size:13px; color:var(--muted); line-height:1.65; }

/* ─ STEPS ────────────────────────────────────────── */
.steps-grid {
    display:grid; grid-template-columns:repeat(3,1fr);
    gap:28px; margin-top:52px; position:relative;
}
.steps-grid::before {
    content:''; position:absolute;
    top:27px; left:22%; right:22%; height:1px;
    background:linear-gradient(to right, transparent, var(--v-pale), var(--v), var(--v-pale), transparent);
}
.step { text-align:center; position:relative; z-index:1; }
.step-n {
    width:54px; height:54px; background:var(--v); color:white;
    border-radius:50%; display:flex; align-items:center; justify-content:center;
    font-family:'Space Grotesk',sans-serif; font-size:19px; font-weight:700;
    margin:0 auto 16px; position:relative; z-index:1;
    box-shadow:0 4px 14px rgba(91,33,182,.3);
}
.step-ico { font-size:26px; margin-bottom:10px; }
.step h3 {
    font-family:'Space Grotesk',sans-serif;
    font-size:16px; font-weight:700; margin-bottom:7px;
}
.step p { font-size:13px; color:var(--muted); line-height:1.65; }

/* ─ FEATURES ─────────────────────────────────────── */
.feat-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-top:44px; }
.feat-col {
    background:white; border-radius:var(--r-lg);
    padding:28px; border:1px solid var(--border);
}
.feat-header {
    display:flex; align-items:center; gap:12px;
    padding-bottom:18px; border-bottom:1px solid var(--border); margin-bottom:20px;
}
.feat-ico {
    width:42px; height:42px; border-radius:11px;
    display:flex; align-items:center; justify-content:center; font-size:20px;
}
.feat-ico.s { background:var(--v-soft); }
.feat-ico.b { background:#FCE7F3; }
.feat-col h3 { font-family:'Space Grotesk',sans-serif; font-size:17px; font-weight:700; }
.check-list { list-style:none; display:flex; flex-direction:column; gap:11px; }
.check-list li {
    display:flex; align-items:flex-start; gap:9px;
    font-size:13.5px; line-height:1.5; color:#374151;
}
.check-list li::before {
    content:'✓'; color:var(--v); font-weight:700;
    font-size:13px; flex-shrink:0; margin-top:1px;
}

/* ─ PRICING ──────────────────────────────────────── */
.price-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:44px; }
.price-card {
    background:white; border-radius:var(--r-lg);
    padding:26px; border:1px solid var(--border); position:relative;
}
.price-card.hot { border-color:var(--v); border-width:2px; box-shadow:0 8px 32px rgba(91,33,182,.12); }
.hot-tag {
    position:absolute; top:-12px; left:50%; transform:translateX(-50%);
    background:var(--pink); color:white;
    font-size:10px; font-weight:800; padding:3px 12px; border-radius:999px; white-space:nowrap;
}
.plan-label { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.07em; color:var(--muted); margin-bottom:6px; }
.plan-price {
    font-family:'Space Grotesk',sans-serif;
    font-size:42px; font-weight:800; line-height:1; letter-spacing:-1.5px;
    color:var(--text); margin-bottom:3px;
}
.plan-price sup { font-size:20px; vertical-align:super; font-weight:600; }
.plan-period { font-size:12px; color:var(--muted); margin-bottom:18px; }
.plan-div { height:1px; background:var(--border); margin:16px 0; }
.plan-feats { list-style:none; display:flex; flex-direction:column; gap:9px; margin-bottom:22px; }
.plan-feats li {
    display:flex; align-items:center; gap:7px;
    font-size:12.5px; color:#374151;
}
.plan-feats li::before { content:'✓'; color:var(--ok); font-weight:700; font-size:12px; }
.btn-outline {
    width:100%; padding:11px;
    background:transparent; color:var(--v);
    border:1.5px solid var(--v-pale); border-radius:var(--r);
    font-size:13px; font-weight:600; font-family:'Inter',sans-serif;
    cursor:pointer; transition:all .15s;
}
.btn-outline:hover { background:var(--v-soft); border-color:var(--v); }
.btn-solid {
    width:100%; padding:11px;
    background:var(--v); color:white; border:none;
    border-radius:var(--r); font-size:13px; font-weight:600;
    font-family:'Inter',sans-serif; cursor:pointer; transition:background .15s;
}
.btn-solid:hover { background:var(--v-mid); }

/* ─ CTA BANNER ───────────────────────────────────── */
.cta-sec {
    background:var(--v); color:white;
    padding: 80px 40px; text-align:center;
}
.cta-sec h2 {
    font-family:'Space Grotesk',sans-serif;
    font-size:clamp(26px,4vw,40px); font-weight:700;
    letter-spacing:-1px; line-height:1.2; margin-bottom:14px;
}
.cta-sec p { font-size:16px; opacity:.75; margin-bottom:34px; }
.cta-row {
    display:flex; gap:10px; max-width:420px;
    margin:0 auto 12px;
}
.cta-input {
    flex:1; padding:13px 16px; border:none;
    border-radius:var(--r); font-size:14px;
    font-family:'Inter',sans-serif;
    background:rgba(255,255,255,.15);
    color:white; outline:none; backdrop-filter:blur(6px);
    transition:background .15s;
}
.cta-input::placeholder { color:rgba(255,255,255,.5); }
.cta-input:focus { background:rgba(255,255,255,.2); }
.cta-input:disabled { opacity:.6; }
.btn-white {
    background:white; color:var(--v); border:none;
    padding:13px 22px; border-radius:var(--r);
    font-size:14px; font-weight:700;
    font-family:'Inter',sans-serif; cursor:pointer;
    white-space:nowrap; transition:opacity .15s;
}
.btn-white:hover { opacity:.9; }
.btn-white:disabled { background:var(--ok); color:white; cursor:default; opacity:1; }
.cta-note { font-size:12px; opacity:.55; }

/* ─ FOOTER ───────────────────────────────────────── */
.foot {
    padding:28px 40px; border-top:1px solid var(--border);
    display:flex; align-items:center; justify-content:space-between;
    max-width:1100px; margin:0 auto;
}
.foot-copy { font-size:12px; color:var(--muted); }

/* ─ SCROLL REVEAL ────────────────────────────────── */
.r { opacity:0; transform:translateY(22px); transition:opacity .55s ease, transform .55s ease; }
.r.on { opacity:1; transform:translateY(0); }

/* ─ RESPONSIVE ───────────────────────────────────── */
@media (max-width:768px) {
    nav { padding: 14px 20px; }
    .nav-links { display:none; }
    .hero { grid-template-columns:1fr; padding:110px 20px 60px; text-align:center; gap:40px; }
    .hero-sub { margin:0 auto 28px; }
    .signup-row { justify-content:center; }
    .demo-wrap { display:none; }
    .platforms { padding:20px; }
    .sec { padding:60px 20px; }
    .pain-grid,
    .steps-grid,
    .feat-grid,
    .price-grid { grid-template-columns:1fr; }
    .steps-grid::before { display:none; }
    .cta-sec { padding:60px 20px; }
    .cta-row { flex-direction:column; }
    .foot { flex-direction:column; gap:10px; text-align:center; padding:24px 20px; }
}