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

:root {
    --y:      #F0B429;
    --bg:     #0E0C09;
    --white:  #F0EDE8;
    --muted:  rgba(240,237,232,0.38);
    --border: rgba(240,237,232,0.08);
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}


/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 130px 72px 100px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.hero-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
    width: 100%;
    max-width: 1280px;
}

.hero-left {
    flex: 1;
    min-width: 0;
}

.hero-right {
    flex: 0 0 240px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-left: 40px;
    border-left: 1px solid var(--border);
}

.hero-logo-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 32px;
}
.hero-logo-wrap::before {
    content: '';
    position: absolute;
    inset: -28px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240,180,41,0.22) 0%, transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
}
.hero-logo {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--y);
    position: relative;
    z-index: 1;
}

.hero-label {
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 42px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--y);
}

h1 {
    font-size: clamp(36px, 4.3vw, 66px);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -2px;
    max-width: 720px;
    margin-bottom: 38px;
}

h1 .accent {
    color: var(--y);
}

.hero-sub {
    font-size: 20px;
    font-weight: 300;
    color: var(--muted);
    max-width: 440px;
    line-height: 1.8;
    margin-bottom: 56px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-primary {
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    letter-spacing: 1px;
    color: #000;
    background: var(--y);
    padding: 16px 38px;
    text-decoration: none;
    transition: opacity 0.2s, box-shadow 0.25s;
}
.btn-primary:hover { opacity: 0.9; box-shadow: 0 0 22px rgba(240,180,41,0.5), 0 0 55px rgba(240,180,41,0.18); }

.btn-secondary {
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}
.btn-secondary:hover { color: var(--white); }

/* ── SECTION LABEL ── */
.section-label {
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
    max-width: 120px;
}

/* ── SITES ── */
.sites-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border);
    padding: 12px 18px;
    background: rgba(240,237,232,0.02);
    opacity: 0;
    transform: translateY(8px);
    transition: border-color 0.2s, background 0.2s;
    cursor: default;
}

.site-pill:hover {
    border-color: rgba(240,180,41,0.25);
    background: rgba(240,180,41,0.04);
}

.site-pill.visible {
    animation: pillIn 0.35s ease forwards;
}

.live-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 6px rgba(34,197,94,0.8);
    animation: pulse 2.5s ease infinite;
    flex-shrink: 0;
}

.site-pill-name {
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--muted);
    transition: color 0.2s;
}

.site-pill:hover .site-pill-name { color: var(--white); }

@keyframes pillIn {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}

/* ── PRICING ── */
.pricing {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 72px;
    border-bottom: 1px solid var(--border);
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin: 44px 0 12px;
}

.price-sym {
    font-size: 33px;
    font-weight: 700;
    color: var(--y);
}

.price-val {
    font-size: 100px;
    font-weight: 800;
    letter-spacing: -3px;
    line-height: 1;
}

.price-per {
    font-family: 'DM Mono', monospace;
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 4px;
}

.price-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 38px 0;
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 42px;
}

.price-features li {
    font-size: 19px;
    font-weight: 300;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 16px;
}

.price-features li::before {
    content: '';
    width: 5px; height: 5px;
    background: var(--y);
    border-radius: 50%;
    flex-shrink: 0;
}

.btn-get {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--y);
    color: #000;
    font-family: 'DM Mono', monospace;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 22px;
    text-decoration: none;
    transition: opacity 0.2s, box-shadow 0.25s;
    margin-bottom: 22px;
}
.btn-get:hover { opacity: 0.9; box-shadow: 0 0 22px rgba(240,180,41,0.5), 0 0 55px rgba(240,180,41,0.18); }

.price-note {
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--muted);
    text-align: center;
}

/* ── FOOTER ── */
footer {
    padding: 32px 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: 'DM Mono', monospace;
    font-size: 14px;
    letter-spacing: 5px;
    color: var(--y);
    opacity: 0.4;
}

.footer-copy {
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--muted);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes glowPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.1); }
}

.hero-logo-wrap  { animation: fadeUp  0.55s ease 0.15s    both; }
.hero-label    { animation: fadeUp  0.55s ease 0.3s     both; }
.hero-left h1  { animation: fadeUp  0.55s ease 0.45s    both; }
.hero-sub      { animation: fadeUp  0.55s ease 0.6s     both; }
.hero-btns     { animation: fadeUp  0.55s ease 0.75s    both; }
.hero-right    { animation: fadeUp  0.65s ease 0.9s     both; }

.pricing {
    opacity: 0;
}
.pricing.in-view {
    animation: blurIn 1s ease forwards;
}

@keyframes blurIn {
    from { filter: blur(14px); opacity: 0; }
    to   { filter: blur(0px);  opacity: 1; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .hero-inner { flex-direction: column; align-items: flex-start; gap: 48px; }
    .hero-right { flex: none; width: 100%; padding-left: 0; border-left: none; border-top: 1px solid var(--border); padding-top: 40px; }
    .sites-grid { flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 640px) {
    nav, .hero, .pricing, footer { padding-left: 24px; padding-right: 24px; }
    h1 { letter-spacing: -1px; }
    footer { flex-direction: column; gap: 10px; text-align: center; }
}
