/* ── Reset & Custom Properties ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg:              #090909;
    --surface:         #111111;
    --surface-raised:  #1C1C1C;
    --border:          #2A2A2A;
    --text-primary:    #F0EBE0;
    --text-muted:      #7A7268;
    --accent:          #E8970E;
    --accent-hover:    #F5B030;
    --accent-glow:     rgba(232, 151, 14, 0.15);
    --accent-glow-lg:  rgba(232, 151, 14, 0.08);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;

    --font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    --nav-height: 64px;
    --section-padding: 96px;
}

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── Typography ──────────────────────────────────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.15; font-weight: 700; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-glow);
    border: 1px solid rgba(232, 151, 14, 0.25);
    padding: 5px 14px;
    border-radius: 100px;
}

.eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s ease infinite;
}

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

/* ── Navigation ──────────────────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    padding: 0 32px;
    background: rgba(9, 9, 9, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, background 0.3s;
}

.nav.scrolled {
    border-color: var(--border);
    background: rgba(9, 9, 9, 0.95);
}

.nav-logo {
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    flex-shrink: 0;
}

.nav-logo span { color: var(--accent); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--text-primary); }

.nav-cta {
    margin-left: 24px;
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(9, 9, 9, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 20px 32px 28px;
    backdrop-filter: blur(16px);
    z-index: 99;
}

.nav-mobile.open { display: block; }

.nav-mobile ul { list-style: none; }
.nav-mobile li + li { margin-top: 4px; }
.nav-mobile a {
    display: block;
    padding: 10px 0;
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
}
.nav-mobile a:hover { color: var(--text-primary); }
.nav-mobile .btn { margin-top: 20px; width: 100%; text-align: center; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.15s;
    white-space: nowrap;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    box-shadow: 0 0 24px rgba(232, 151, 14, 0.35);
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border);
}

.btn-ghost:hover {
    border-color: rgba(240, 235, 224, 0.3);
    background: rgba(240, 235, 224, 0.05);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

/* ── Layout Utilities ────────────────────────────────────────────────────── */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px;
}

.section { padding: var(--section-padding) 0; }

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

/* ── Reveal Animations ───────────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(232, 151, 14, 0.14) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 80% 60%, rgba(232, 151, 14, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 256px 256px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    padding: 80px 0;
}

.hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin-top: 24px;
    margin-bottom: 24px;
}

.hero h1 em {
    font-style: normal;
    color: var(--accent);
}

.hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--text-muted);
    max-width: 580px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: var(--font-mono);
    animation: bounce 2s ease infinite;
}

.hero-scroll-hint::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--text-muted), transparent);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Problem Strip ───────────────────────────────────────────────────────── */
.problem-strip {
    padding: 56px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
    text-align: center;
}

.problem-strip .headline {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    margin-bottom: 28px;
}

.problem-pills {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.problem-pill {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    background: var(--surface-raised);
    border: 1px solid var(--border);
    padding: 8px 18px;
    border-radius: 100px;
}

/* ── Features Grid ───────────────────────────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.feature-card {
    background: var(--surface);
    padding: 32px;
    transition: background 0.25s;
    position: relative;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    background: var(--accent-glow);
    transition: opacity 0.25s;
    pointer-events: none;
}

.feature-card:hover { background: var(--surface-raised); }
.feature-card:hover::after { opacity: 1; }

.feature-icon {
    font-size: 1.5rem;
    margin-bottom: 16px;
    display: block;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ── Section Header ──────────────────────────────────────────────────────── */
.section-header {
    margin-bottom: 56px;
}

.section-header .eyebrow {
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.7;
}

/* ── How It Works ────────────────────────────────────────────────────────── */
.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    align-items: start;
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}

.step:last-child { border-bottom: none; }

.step-num {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--accent);
    flex-shrink: 0;
}

.step-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 12px;
}

.step-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 480px;
}

/* ── Wholesale Spotlight ─────────────────────────────────────────────────── */
.wholesale-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.wholesale-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.wholesale-label {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.wholesale-grid h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.wholesale-grid .lead {
    color: var(--text-muted);
    font-size: 0.975rem;
    line-height: 1.75;
    margin-bottom: 32px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.feature-list li::before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-glow);
    border: 1px solid rgba(232, 151, 14, 0.3);
    flex-shrink: 0;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23E8970E'%3E%3Cpath d='M12.5 4.5l-6 6-3-3'  stroke='%23E8970E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.wholesale-visual {
    background: var(--surface-raised);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.wholesale-visual::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232, 151, 14, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.ws-stat {
    text-align: center;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    margin-bottom: 12px;
}

.ws-stat .ws-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.03em;
}

.ws-stat .ws-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 6px;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.ws-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* ── Teaser Section ──────────────────────────────────────────────────────── */
.teaser-section {
    background: linear-gradient(135deg, rgba(232, 151, 14, 0.08) 0%, transparent 60%),
                var(--bg);
    border-top: 1px solid rgba(232, 151, 14, 0.15);
    border-bottom: 1px solid rgba(232, 151, 14, 0.15);
    text-align: center;
}

.teaser-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    border: 1px solid var(--border);
    background: var(--surface);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.teaser-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.teaser-section h2 span { color: var(--accent); }

.teaser-section p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ── Signup Form ─────────────────────────────────────────────────────────── */
.signup-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.signup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.signup-left h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.signup-left p {
    color: var(--text-muted);
    font-size: 0.975rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.trust-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trust-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.trust-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--surface-raised);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    flex-shrink: 0;
}

/* Form Styles */
.form-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group:last-of-type { margin-bottom: 0; }

label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 11px 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
    -webkit-appearance: none;
}

input::placeholder,
textarea::placeholder { color: var(--text-muted); opacity: 0.6; }

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(232, 151, 14, 0.12);
}

select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7268' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

select option { background: var(--surface-raised); }

textarea {
    resize: vertical;
    min-height: 96px;
    line-height: 1.6;
}

.radio-group {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.radio-option {
    flex: 1;
    position: relative;
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    text-align: center;
}

.radio-label .rl-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.radio-label .rl-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.radio-option input:checked + .radio-label {
    border-color: var(--accent);
    background: var(--accent-glow);
}

.radio-option input:focus-visible + .radio-label {
    box-shadow: 0 0 0 3px rgba(232, 151, 14, 0.2);
}

.honeypot { display: none !important; }

.form-submit { margin-top: 24px; }

.form-submit .btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 0.95rem;
}

.form-message {
    display: none;
    padding: 16px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    margin-top: 16px;
    text-align: center;
}

.form-message.success {
    display: block;
    background: rgba(62, 207, 142, 0.1);
    border: 1px solid rgba(62, 207, 142, 0.25);
    color: #3ecf8e;
}

.form-message.error {
    display: block;
    background: rgba(224, 80, 80, 0.1);
    border: 1px solid rgba(224, 80, 80, 0.2);
    color: #e05050;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 56px 0 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 12px;
}

.footer-brand .logo span { color: var(--accent); }

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 240px;
}

.footer-col h4 {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-family: var(--font-mono);
}

.footer-col ul { list-style: none; }
.footer-col li + li { margin-top: 10px; }
.footer-col a {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-primary); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    font-size: 0.78rem;
    color: var(--text-muted);
}

.footer-bottom a { color: var(--text-muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--text-primary); }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    :root { --section-padding: 72px; }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wholesale-grid,
    .signup-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
    :root { --section-padding: 56px; }

    .container { padding: 0 20px; }

    .nav { padding: 0 20px; }
    .nav-links, .nav-cta { display: none; }
    .nav-hamburger { display: flex; }

    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; justify-content: center; }

    .features-grid { grid-template-columns: 1fr; }

    .form-row { grid-template-columns: 1fr; }

    .radio-group { flex-direction: column; }

    .footer-grid { grid-template-columns: 1fr; }

    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    .step { grid-template-columns: 56px 1fr; gap: 20px; }
    .step-num { width: 48px; height: 48px; font-size: 1.1rem; }
}
