/* ═══════════════════════════════════════════════════════════
   CHAEUL WEB — elegant, soft, enterprise-grade
   ═══════════════════════════════════════════════════════════ */
:root {
    --bg: #0a0c12;
    --bg-2: #0e1119;
    --surface: rgba(255, 255, 255, 0.04);
    --surface-2: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.09);
    --border-strong: rgba(255, 255, 255, 0.16);
    --text: #eef1f7;
    --muted: #9aa3b5;
    --faint: #6b7488;
    --brand: #7c9cff;
    --brand-2: #b98cff;
    --accent: #5eead4;
    --green: #34d399;
    --radius: 20px;
    --radius-sm: 13px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.6);
    --font: "Plus Jakarta Sans", system-ui, sans-serif;
    --font-display: "Space Grotesk", var(--font);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
}
.container {
    width: min(1160px, 92%);
    margin: 0 auto;
}

/* ─── Aurora background ─── */
.aurora {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    background: radial-gradient(120% 120% at 50% -10%, #131826 0%, var(--bg) 55%);
}
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 22s var(--ease) infinite;
}
.b1 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, #4f6bff, transparent 70%);
    top: -140px;
    left: -80px;
}
.b2 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, #a855f7, transparent 70%);
    top: 20%;
    right: -120px;
    animation-delay: -7s;
}
.b3 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, #2dd4bf, transparent 70%);
    bottom: -120px;
    left: 35%;
    animation-delay: -14s;
    opacity: 0.35;
}
@keyframes float {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(40px, 30px) scale(1.08);
    }
    66% {
        transform: translate(-30px, 20px) scale(0.95);
    }
}
.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 54px 54px;
    mask: radial-gradient(120% 80% at 50% 0%, #000 30%, transparent 75%);
}

/* ─── Navbar ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.4s var(--ease);
    padding: 18px 0;
}
.nav.scrolled {
    padding: 10px 0;
    background: rgba(10, 12, 18, 0.7);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    width: min(1160px, 92%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.28rem;
    letter-spacing: -0.02em;
}
.brand-mark {
    color: var(--brand);
    filter: drop-shadow(0 0 10px rgba(124, 156, 255, 0.6));
    animation: spin 12s linear infinite;
    display: inline-block;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.nav-links {
    display: flex;
    gap: 30px;
    margin-left: auto;
}
.nav-links a {
    color: var(--muted);
    font-weight: 500;
    font-size: 0.94rem;
    position: relative;
    transition: color 0.25s;
}
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
    transition: width 0.3s var(--ease);
    border-radius: 2px;
}
.nav-links a:hover {
    color: var(--text);
}
.nav-links a:hover::after {
    width: 100%;
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: 0.3s var(--ease);
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.97rem;
    padding: 13px 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}
.btn .ico {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s var(--ease);
}
.btn-primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #0a0c12;
    box-shadow: 0 12px 30px -10px rgba(124, 156, 255, 0.7);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -10px rgba(124, 156, 255, 0.85);
}
.btn-primary:hover .ico {
    transform: translateX(4px);
}
.btn-ghost {
    background: var(--surface);
    color: var(--text);
    border-color: var(--border-strong);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover {
    background: var(--surface-2);
    transform: translateY(-2px);
}
.btn-sm {
    padding: 10px 18px;
    font-size: 0.9rem;
}
.btn-lg {
    padding: 16px 34px;
    font-size: 1.05rem;
}

/* ─── Hero ─── */
.hero {
    padding: 170px 0 90px;
    position: relative;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}
.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 15px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 24px;
}
.pill .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(52, 211, 153, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0);
    }
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}
.grad {
    background: linear-gradient(120deg, var(--brand) 10%, var(--brand-2) 55%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-sub {
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 34px;
}
.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 46px;
}
.hero-stats {
    display: flex;
    gap: 40px;
}
.hstat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    display: block;
    background: linear-gradient(120deg, #fff, var(--brand));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hstat-label {
    font-size: 0.82rem;
    color: var(--faint);
}

/* Phone mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}
.phone {
    width: 310px;
    background: linear-gradient(160deg, #12151f, #0c0e15);
    border: 1px solid var(--border-strong);
    border-radius: 34px;
    padding: 14px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
    animation: floaty 6s var(--ease) infinite;
}
@keyframes floaty {
    0%,
    100% {
        transform: translateY(0) rotate(-0.5deg);
    }
    50% {
        transform: translateY(-14px) rotate(0.5deg);
    }
}
.phone-notch {
    width: 110px;
    height: 6px;
    background: #000;
    border-radius: 5px;
    margin: 2px auto 12px;
}
.chat-head {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 8px 6px 14px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 14px;
}
.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #0a0c12;
    font-weight: 700;
    font-size: 1.15rem;
}
.chat-name {
    font-weight: 600;
    font-size: 0.95rem;
}
.chat-status {
    font-size: 0.75rem;
    color: var(--green);
    display: flex;
    align-items: center;
    gap: 5px;
}
.online {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
}
.chat-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 300px;
    padding: 4px;
}
.bubble {
    max-width: 82%;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 0.86rem;
    line-height: 1.45;
    opacity: 0;
    transform: translateY(10px);
    animation: bubbleIn 0.5s var(--ease) forwards;
    white-space: pre-line;
}
.bubble.in {
    background: var(--surface-2);
    border: 1px solid var(--border);
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}
.bubble.out {
    background: linear-gradient(135deg, rgba(124, 156, 255, 0.22), rgba(185, 140, 255, 0.18));
    border: 1px solid rgba(124, 156, 255, 0.3);
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}
@keyframes bubbleIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(124, 156, 255, 0.28), transparent 68%);
    filter: blur(30px);
    z-index: 1;
}

/* ─── Sections ─── */
.section {
    padding: 90px 0;
}
.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 54px;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--brand);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    letter-spacing: -0.02em;
    line-height: 1.12;
    margin-bottom: 12px;
}
.section-head p {
    color: var(--muted);
    font-size: 1.05rem;
}

/* ─── Features ─── */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        400px circle at var(--mx, 50%) var(--my, 0%),
        rgba(124, 156, 255, 0.12),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.4s;
}
.feature-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-5px);
    background: var(--surface-2);
}
.feature-card:hover::before {
    opacity: 1;
}
.feature-ico {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    background: linear-gradient(135deg, rgba(124, 156, 255, 0.18), rgba(185, 140, 255, 0.14));
    border: 1px solid var(--border);
    margin-bottom: 18px;
}
.feature-card h3 {
    font-size: 1.12rem;
    margin-bottom: 8px;
    font-weight: 600;
}
.feature-card p {
    color: var(--muted);
    font-size: 0.93rem;
}

/* ─── Pricing ─── */
.price-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 840px;
    margin: 0 auto;
}
.price-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 34px;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}
.price-card.featured {
    border-color: rgba(124, 156, 255, 0.45);
    background: linear-gradient(
        170deg,
        rgba(124, 156, 255, 0.09),
        var(--surface) 60%
    );
    box-shadow: 0 30px 70px -30px rgba(124, 156, 255, 0.5);
}
.price-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-strong);
}
.price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #0a0c12;
    letter-spacing: 0.04em;
}
.price-name {
    font-size: 1.05rem;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 10px;
}
.price-amount {
    font-family: var(--font-display);
    font-size: 2.9rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.price-amount small {
    font-size: 1rem;
    color: var(--faint);
    font-weight: 500;
}
.price-desc {
    color: var(--muted);
    font-size: 0.92rem;
    margin: 8px 0 22px;
}
.price-feats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}
.price-feats li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.93rem;
    color: var(--text);
}
.price-feats .check {
    color: var(--green);
    flex-shrink: 0;
    margin-top: 2px;
}
.price-card .btn {
    width: 100%;
    justify-content: center;
}

/* ─── Live ─── */
.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 1.8s infinite;
}
.live-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}
.live-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
/* Fishing feed item */
.fish-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    animation: slideIn 0.5s var(--ease);
    font-size: 0.86rem;
}
.fish-item .fi-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
}
.fish-item .fi-meta {
    flex: 1;
    min-width: 0;
}
.fish-item .fi-name {
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fish-item .fi-who {
    font-size: 0.74rem;
    color: var(--faint);
}
.fish-item .fi-val {
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: var(--green);
    font-weight: 600;
    flex-shrink: 0;
}
/* rarity dot colors */
.r-common {
    background: #9ca3af;
}
.r-uncommon {
    background: #34d399;
}
.r-rare {
    background: #60a5fa;
}
.r-epic {
    background: #a78bfa;
}
.r-legendary {
    background: #fbbf24;
}
.r-mythical {
    background: #fb923c;
}
.r-secret {
    background: #f472b6;
}
.r-ephemeral {
    background: linear-gradient(90deg, #f472b6, #60a5fa);
}
.r-unreal {
    background: #ef4444;
    box-shadow: 0 0 8px #ef4444;
}
.live-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    min-height: 340px;
}
.live-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.live-card-head h3 {
    font-size: 1.05rem;
    font-weight: 600;
}
.badge {
    background: linear-gradient(135deg, rgba(124, 156, 255, 0.2), rgba(185, 140, 255, 0.15));
    border: 1px solid var(--border);
    padding: 4px 13px;
    border-radius: 999px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--brand);
}
.live-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    max-height: 320px;
    overflow: hidden;
}
.live-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 13px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    animation: slideIn 0.5s var(--ease);
}
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-12px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.live-item .av {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    font-size: 0.9rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #0a0c12;
    flex-shrink: 0;
}
.live-item .meta {
    flex: 1;
    min-width: 0;
}
.live-item .t1 {
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.live-item .t2 {
    font-size: 0.76rem;
    color: var(--faint);
}
.live-item .mono-num {
    font-family: var(--font-display);
    letter-spacing: 0.01em;
    font-size: 0.86rem;
}
.live-item .tag {
    font-size: 0.68rem;
    padding: 3px 9px;
    border-radius: 999px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.tag.private {
    background: rgba(94, 234, 212, 0.14);
    color: var(--accent);
    border: 1px solid rgba(94, 234, 212, 0.25);
}
.tag.public {
    background: rgba(185, 140, 255, 0.14);
    color: var(--brand-2);
    border: 1px solid rgba(185, 140, 255, 0.25);
}
.empty {
    text-align: center;
    color: var(--faint);
    padding: 40px 0;
    font-size: 0.9rem;
}

/* ─── Steps ─── */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    counter-reset: step;
}
.step {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px;
    position: relative;
    transition: all 0.4s var(--ease);
}
.step:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
}
.step-num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
    line-height: 1;
}
.step h4 {
    font-size: 1.02rem;
    margin-bottom: 7px;
}
.step p {
    color: var(--muted);
    font-size: 0.88rem;
}

/* ─── CTA band ─── */
.cta-band {
    padding: 30px 0 100px;
}
.cta-inner {
    text-align: center;
    background: linear-gradient(150deg, rgba(124, 156, 255, 0.12), rgba(185, 140, 255, 0.08));
    border: 1px solid var(--border-strong);
    border-radius: 28px;
    padding: 60px 30px;
    position: relative;
    overflow: hidden;
}
.cta-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.cta-inner p {
    color: var(--muted);
    margin-bottom: 28px;
    font-size: 1.05rem;
}

/* ─── Footer ─── */
.footer {
    border-top: 1px solid var(--border);
    padding: 34px 0;
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    color: var(--faint);
    font-size: 0.88rem;
}

/* ─── Modal ─── */
.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal.open {
    display: flex;
}
.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 6, 10, 0.72);
    backdrop-filter: blur(8px);
    animation: fade 0.3s;
}
@keyframes fade {
    from {
        opacity: 0;
    }
}
.modal-card {
    position: relative;
    width: min(480px, 100%);
    background: linear-gradient(170deg, #12151f, #0b0d14);
    border: 1px solid var(--border-strong);
    border-radius: 24px;
    padding: 34px;
    box-shadow: var(--shadow);
    max-height: 90vh;
    overflow-y: auto;
}
.reveal-modal {
    animation: modalIn 0.45s var(--ease);
}
@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.97);
    }
}
.modal-x {
    position: absolute;
    top: 16px;
    right: 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--muted);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    transition: 0.25s;
    line-height: 1;
}
.modal-x:hover {
    background: var(--surface-2);
    color: var(--text);
}
.modal-body h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 6px;
}
.modal-sub {
    color: var(--muted);
    font-size: 0.92rem;
    margin-bottom: 22px;
}
.field {
    margin-bottom: 16px;
}
.field label {
    display: block;
    font-size: 0.86rem;
    font-weight: 500;
    margin-bottom: 7px;
    color: var(--muted);
}
.field input {
    width: 100%;
    padding: 13px 15px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font);
    font-size: 0.95rem;
    transition: 0.25s;
}
.field input:focus {
    outline: none;
    border-color: var(--brand);
    background: var(--surface-2);
    box-shadow: 0 0 0 3px rgba(124, 156, 255, 0.15);
}
.field .hint {
    font-size: 0.78rem;
    color: var(--faint);
    margin-top: 6px;
}
.field .err {
    font-size: 0.8rem;
    color: #f87171;
    margin-top: 6px;
    display: none;
}
.summary {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.summary .s-name {
    font-weight: 600;
}
.summary .s-price {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--brand);
}
.pay-box {
    text-align: center;
    padding: 10px 0;
}
.pay-box .big {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--brand);
    margin: 6px 0;
}
.order-id {
    font-family: var(--font-display);
    background: var(--surface);
    border: 1px dashed var(--border-strong);
    padding: 10px;
    border-radius: 10px;
    letter-spacing: 0.05em;
    margin: 14px 0;
}
/* Duration selector */
.dur-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
.dur-opt {
    position: relative;
    padding: 11px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--muted);
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s var(--ease);
}
.dur-opt:hover {
    border-color: var(--border-strong);
    color: var(--text);
}
.dur-opt.active {
    background: linear-gradient(135deg, rgba(124, 156, 255, 0.18), rgba(185, 140, 255, 0.12));
    border-color: rgba(124, 156, 255, 0.45);
    color: var(--text);
}
.dur-off {
    display: block;
    font-size: 0.68rem;
    color: var(--green);
    margin-top: 2px;
}
/* Coupon */
.coupon-row {
    display: flex;
    gap: 8px;
}
.coupon-row input {
    flex: 1;
}
.coupon-row .btn {
    flex-shrink: 0;
}
/* Total */
.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    margin: 6px 0 14px;
    border-top: 1px solid var(--border);
    font-weight: 600;
}
.total-amt {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
}

/* ─── Toast ─── */
.toast {
    position: fixed;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%) translateY(30px);
    background: linear-gradient(135deg, #12151f, #0c0e15);
    border: 1px solid var(--border-strong);
    color: var(--text);
    padding: 13px 22px;
    border-radius: 14px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s var(--ease);
    z-index: 200;
}
.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ─── Reveal on scroll ─── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: all 0.8s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Counter flash ─── */
.flash {
    animation: flashUp 0.6s var(--ease);
}
@keyframes flashUp {
    0% {
        color: var(--green);
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-visual {
        order: -1;
    }
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .live-grid-3 {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 640px) {
    .nav-links {
        position: fixed;
        top: 62px;
        right: 4%;
        left: 4%;
        flex-direction: column;
        gap: 6px;
        background: rgba(14, 17, 25, 0.95);
        backdrop-filter: blur(18px);
        border: 1px solid var(--border);
        border-radius: 18px;
        padding: 16px;
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: 0.3s var(--ease);
    }
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .nav-toggle {
        display: flex;
    }
    .nav .btn-primary {
        display: none;
    }
    .feature-grid,
    .price-grid,
    .live-grid,
    .live-grid-3,
    .steps {
        grid-template-columns: 1fr;
    }
    .hero-stats {
        gap: 24px;
    }
    .hstat-num {
        font-size: 1.6rem;
    }
}
