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

:root {
    --bg: #0a0a0b;
    --bg2: #111114;
    --bg3: #18181d;
    --border: rgba(255, 255, 255, 0.07);
    --border2: rgba(255, 255, 255, 0.12);
    --text: #e8e6e1;
    --text2: #9b9890;
    --text3: #5c5a57;
    --accent: #c8a96e;
    --accent2: #e2c98a;
    --accent-dim: rgba(200, 169, 110, 0.12);
    --accent-glow: rgba(200, 169, 110, 0.06);
    --green: #5a9e7a;
    --green-dim: rgba(90, 158, 122, 0.12);
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'DM Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
}

/* ── Grain overlay ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    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)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 999;
    opacity: 0.4;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, background 0.3s, backdrop-filter 0.3s;
}

nav.scrolled {
    background: rgba(10, 10, 11, 0.85);
    backdrop-filter: blur(20px);
    border-color: var(--border);
}

.nav-logo {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 0.01em;
}

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

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text2);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

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

.nav-cta {
    background: var(--accent-dim);
    border: 1px solid rgba(200, 169, 110, 0.25);
    color: var(--accent) !important;
    padding: 8px 20px;
    border-radius: 6px;
    transition: background 0.2s, border-color 0.2s !important;
}

.nav-cta:hover {
    background: rgba(200, 169, 110, 0.2) !important;
    border-color: rgba(200, 169, 110, 0.4) !important;
    color: var(--accent2) !important;
}

/* ── SECTIONS ── */
section {
    padding: 120px 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.full-width {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 140px;
    padding-bottom: 80px;
    position: relative;
}

.hero-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.orb1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    background: radial-gradient(circle, rgba(200, 169, 110, 0.08) 0%, transparent 70%);
    animation: drift1 18s ease-in-out infinite;
}

.orb2 {
    width: 500px;
    height: 500px;
    bottom: 0;
    left: -150px;
    background: radial-gradient(circle, rgba(90, 158, 122, 0.06) 0%, transparent 70%);
    animation: drift2 22s ease-in-out infinite;
}

@keyframes drift1 {

    0%,
    100% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(-40px, 60px)
    }
}

@keyframes drift2 {

    0%,
    100% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(50px, -40px)
    }
}

.hero-inner {
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.1s forwards;
}

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

.hero h1 {
    font-family: var(--serif);
    font-size: clamp(52px, 8vw, 96px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    max-width: 780px;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.2s forwards;
}

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

.hero-sub {
    font-size: 18px;
    font-weight: 300;
    color: var(--text2);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.35s forwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.5s forwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #0a0a0b;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
    background: var(--accent2);
    transform: translateY(-1px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text2);
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.02em;
    padding: 14px 28px;
    border-radius: 8px;
    border: 1px solid var(--border2);
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn-ghost:hover {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

@keyframes scan {
    0% {
        left: -100%
    }

    100% {
        left: 100%
    }
}

/* ── PHONE MOCKUP ── */
.hero-mockup {
    position: absolute;
    right: 200px;
    top: 50%;
    transform: translateY(-45%);
    opacity: 0;
    animation: fadeLeft 1s ease 0.6s forwards;
    z-index: 1;
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateY(-45%) translateX(40px)
    }

    to {
        opacity: 1;
        transform: translateY(-45%) translateX(0)
    }
}

.phone-frame {
    width: 240px;
    height: 500px;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 36px;
    background: #0e0e12;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.phone-notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 26px;
    background: #0a0a0b;
    border-radius: 14px;
    z-index: 2;
}

.phone-screen {
    padding: 64px 20px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.phone-app-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #1a1a22, #0f0f15);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 8px;
}

.phone-label {
    font-family: var(--serif);
    font-size: 15px;
    text-align: center;
    color: var(--text);
    margin-bottom: 4px;
}

.phone-sublabel {
    font-size: 11px;
    text-align: center;
    color: var(--text3);
    margin-bottom: 16px;
}

.phone-input-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
}

.phone-input-label {
    font-size: 10px;
    color: var(--text3);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.phone-input-val {
    font-size: 13px;
    color: var(--text2);
}

.phone-timer-row {
    display: flex;
    gap: 6px;
    margin-top: 2px;
}

.phone-timer-chip {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 4px;
    text-align: center;
    font-size: 11px;
    color: var(--text3);
}

.phone-timer-chip.active {
    background: var(--accent-dim);
    border-color: rgba(200, 169, 110, 0.25);
    color: var(--accent);
}

.phone-cta {
    margin-top: auto;
    background: var(--accent);
    color: #0a0a0b;
    border-radius: 10px;
    padding: 13px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
}

/* ── STATS ROW ── */
.stats-row {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: none;
}

.stat-item {
    padding: 0 40px;
    border-right: 1px solid var(--border);
}

.stat-item:first-child {
    padding-left: 0;
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 600;
    color: var(--text);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-num span {
    color: var(--accent);
}

.stat-desc {
    font-size: 13px;
    color: var(--text3);
    letter-spacing: 0.02em;
}

/* ── HOW IT WORKS ── */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.section-eyebrow::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: var(--accent);
}

.section-heading {
    font-family: var(--serif);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.01em;
    max-width: 560px;
    margin-bottom: 64px;
}

.section-heading em {
    font-style: italic;
    color: var(--accent);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.step-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    padding: 40px 36px;
    position: relative;
    transition: border-color 0.2s, background 0.2s;
}

.step-card:hover {
    border-color: var(--border2);
    background: var(--bg3);
}

.step-num {
    font-family: var(--serif);
    font-size: 72px;
    font-weight: 400;
    line-height: 1;
    color: var(--bg3);
    position: absolute;
    top: 24px;
    right: 28px;
    user-select: none;
    transition: color 0.2s;
}

.step-card:hover .step-num {
    color: var(--accent-dim);
}

.step-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--accent-dim);
    border: 1px solid rgba(200, 169, 110, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 24px;
}

.step-title {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--text);
}

.step-body {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.75;
}

/* ── FEATURES ── */
.features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.feature-item {
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    cursor: default;
}

.feature-item:first-child {
    border-top: 1px solid var(--border);
}

.feature-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text3);
    margin-top: 8px;
    flex-shrink: 0;
    transition: background 0.2s;
}

.feature-item:hover .feature-dot {
    background: var(--accent);
}

.feature-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 4px;
    transition: color 0.2s;
}

.feature-item:hover .feature-title {
    color: var(--accent2);
}

.feature-body {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.65;
}

.features-visual {
    position: relative;
}

.visual-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(200, 169, 110, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.visual-apps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.visual-app {
    aspect-ratio: 1;
    border-radius: 14px;
    background: var(--bg3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    position: relative;
    transition: opacity 0.3s;
}

.visual-app.blocked {
    opacity: 0.3;
}

.visual-app.blocked::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: rgba(10, 10, 11, 0.5);
    border: 1px solid rgba(200, 169, 110, 0.2);
}

.block-badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--bg);
    border: 1.5px solid rgba(200, 169, 110, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: var(--accent);
    z-index: 1;
}

.visual-divider {
    height: 1px;
    background: var(--border);
    margin: 0 -32px 24px;
}

.visual-session {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.session-label {
    font-size: 12px;
    color: var(--text3);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.session-value {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--text);
}

.session-badge {
    background: var(--green-dim);
    border: 1px solid rgba(90, 158, 122, 0.25);
    color: var(--green);
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
}

/* ── PRIVACY ── */
.privacy-section {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.privacy-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.privacy-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.privacy-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--green-dim);
    border: 1px solid rgba(90, 158, 122, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.privacy-card-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 4px;
}

.privacy-card-body {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.6;
}

/* ── PRIVACY POLICY ── */
.policy-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.policy-block h3 {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.policy-block p {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.75;
    margin-bottom: 12px;
}

.policy-block p:last-child {
    margin-bottom: 0;
}

.policy-block ul {
    list-style: none;
    padding: 0;
}

.policy-block ul li {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.65;
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.policy-block ul li::before {
    content: '–';
    color: var(--text3);
    flex-shrink: 0;
    margin-top: 1px;
}

.policy-block ul li:last-child {
    border-bottom: none;
}

/* ── CONTACT ── */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--accent-dim);
    border: 1px solid rgba(200, 169, 110, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-item-label {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text3);
    margin-bottom: 4px;
}

.contact-item-val {
    font-size: 15px;
    color: var(--text);
}

.contact-item-val a {
    color: var(--accent);
    text-decoration: none;
}

.contact-item-val a:hover {
    text-decoration: underline;
}

.contact-form-wrap {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
}

.form-title {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 8px;
}

.form-sub {
    font-size: 14px;
    color: var(--text2);
    margin-bottom: 28px;
}


/* ── FOOTER ── */
footer {
    border-top: 1px solid var(--border);
    padding: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    font-family: var(--serif);
    font-size: 18px;
    color: var(--text2);
}

.footer-logo em {
    color: var(--accent);
    font-style: italic;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 13px;
    color: var(--text3);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text2);
}

.footer-copy {
    font-size: 13px;
    color: var(--text3);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    nav {
        padding: 20px 24px;
    }

    .nav-links {
        display: none;
    }

    section {
        padding: 80px 24px;
    }

    .hero {
        padding: 120px 24px 80px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-mockup {
        display: none;
    }

    .stats-row {
        grid-template-columns: 1fr 1fr;
        padding: 40px 24px;
        gap: 32px;
    }

    .stat-item {
        border-right: none;
        padding: 0;
    }

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

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

    .policy-content {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .privacy-section section {
        grid-template-columns: 1fr;
    }

    footer {
        padding: 40px 24px;
    }
}

/* Anchor offset for fixed nav */
:target {
    scroll-margin-top: 80px;
}

#privacy {
    scroll-margin-top: 80px;
}

#contact {
    scroll-margin-top: 80px;
}