:root {
    --espresso: #2B1B16;
    --espresso-2: #3A241C;
    --charcoal: #36241E;
    --orange: #F5A12C;
    --orange-2: #FFB23F;
    --cream: #FFF9F2;
    --warm-white: #FFFCF8;
    --sand: #F3E9DE;
    --muted: #7A6A63;
    --line: rgba(43, 27, 22, 0.12);
    --shadow: 0 18px 60px rgba(43, 27, 22, 0.12);
    --radius: 24px;
    --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--espresso);
    background: var(--warm-white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.wrap { width: min(calc(100% - 36px), var(--max)); margin: 0 auto; }
.narrow { max-width: 760px; }
.center { text-align: center; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 252, 248, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(43, 27, 22, 0.08);
}
.header-inner { height: 72px; display: flex; align-items: center; justify-content: space-between; }
.brand img { width: 138px; height: auto; }
.desktop-nav { display: none; }
.menu-button {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(43, 27, 22, 0.08);
    display: grid;
    place-content: center;
    gap: 5px;
}
.menu-button span { width: 20px; height: 2px; border-radius: 10px; background: var(--espresso); display: block; }
.mobile-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    background: var(--warm-white);
    border-bottom: 1px solid var(--line);
    padding: 16px 20px 22px;
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: .25s ease;
    display: grid;
    gap: 8px;
}
.mobile-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-nav a { padding: 14px 16px; border-radius: 14px; background: #fff; font-weight: 700; }

.hero {
    position: relative;
    overflow: hidden;
    padding: 62px 0 54px;
    background:
        radial-gradient(circle at 90% 10%, rgba(245, 161, 44, 0.22), transparent 30%),
        linear-gradient(180deg, #FFFDF9 0%, #FFF8EF 100%);
}
.hero-grid { display: grid; gap: 46px; align-items: center; position: relative; z-index: 2; }
.hero-copy { max-width: 680px; }
.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: .16em;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--muted);
}
.dot, .pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--orange); display: inline-block; }
.hero h1,
.section h2 {
    margin: 14px 0 18px;
    letter-spacing: -.045em;
    line-height: .98;
    font-weight: 800;
}
.hero h1 { font-size: clamp(46px, 13vw, 82px); }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-lead { font-size: 18px; color: #66564F; margin: 0; max-width: 620px; }
.hero-actions { display: grid; gap: 12px; margin-top: 28px; }
.button {
    min-height: 54px;
    border-radius: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease;
}
.button:active { transform: scale(.985); }
.button-primary { background: var(--espresso); color: white; box-shadow: 0 12px 28px rgba(43, 27, 22, .18); }
.button-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(43,27,22,.22); }
.button-secondary { background: white; border: 1px solid var(--line); }
.brand-line { margin-top: 24px; color: var(--muted); font-weight: 700; font-size: 14px; }
.brand-line span { color: var(--orange); }

.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .6; }
.orb-one { width: 220px; height: 220px; background: rgba(245, 161, 44, .16); right: -80px; top: 120px; }
.orb-two { width: 130px; height: 130px; background: rgba(43, 27, 22, .07); left: -60px; bottom: 30px; }

.phone-stage { display: flex; justify-content: center; }
.phone-shell {
    width: min(100%, 360px);
    background: #17100D;
    color: white;
    border: 9px solid #241612;
    border-radius: 38px;
    padding: 16px;
    box-shadow: 0 28px 90px rgba(43, 27, 22, .26);
    position: relative;
}
.phone-top { display: flex; align-items: center; justify-content: space-between; font-size: 10px; color: #D8C8C0; padding: 0 3px 12px; }
.phone-pill { width: 70px; height: 20px; border-radius: 999px; background: #000; }
.app-brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.app-brand-row strong { display: block; font-size: 15px; }
.app-brand-row small { display: block; color: #A9958C; font-size: 11px; }
.mini-mark {
    width: 39px; height: 39px; border-radius: 13px; background: linear-gradient(145deg, #3A241C, #1E120E); color: #fff; display: grid; place-items: center; font-family: Georgia, serif; font-size: 25px; font-weight: 700; position: relative; box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
}
.mini-mark span { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); right: 7px; top: 5px; }
.app-card { border-radius: 20px; padding: 18px; background: #2A1B16; border: 1px solid rgba(255,255,255,.07); }
.featured-card { background: linear-gradient(145deg, #39241D, #241612); box-shadow: inset 0 1px 0 rgba(255,255,255,.06); }
.tiny-label { font-size: 9px; font-weight: 900; letter-spacing: .16em; color: #CBB9AF; }
.app-card h3 { margin: 8px 0 3px; font-size: 24px; }
.app-card p { margin: 0; color: #CDBCB3; font-size: 12px; }
.progress { height: 7px; border-radius: 999px; background: rgba(255,255,255,.08); margin: 16px 0; overflow: hidden; }
.progress span { display: block; width: 38%; height: 100%; background: linear-gradient(90deg, var(--orange), #FFC469); border-radius: inherit; }
.unlock-row { display: flex; gap: 10px; align-items: center; }
.lock-badge { width: 35px; height: 35px; border-radius: 11px; background: var(--orange); color: #2B1B16; display: grid; place-items: center; font-weight: 900; }
.unlock-row small { display: block; color: #9E8B81; font-size: 8px; letter-spacing: .12em; }
.unlock-row strong { font-size: 12px; }
.choice-label { margin: 18px 1px 10px; font-size: 13px; font-weight: 800; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.choice-grid button { border: 1px solid rgba(255,255,255,.06); border-radius: 16px; background: #241713; color: white; padding: 13px 8px; min-height: 70px; font-size: 20px; }
.choice-grid button span { display: block; font-size: 10px; font-weight: 800; margin-top: 5px; }
.app-footer-card { margin-top: 12px; padding: 12px 14px; border-radius: 15px; background: #1E1410; color: #B8A79F; font-size: 10px; display: flex; align-items: center; gap: 8px; }
.pulse-dot { box-shadow: 0 0 0 0 rgba(245, 161, 44, .6); animation: pulse 1.8s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(245,161,44,0); } 100% { box-shadow: 0 0 0 0 rgba(245,161,44,0); } }

.section { padding: 82px 0; }
.intro-section { padding-top: 74px; }
.section h2 { font-size: clamp(36px, 9vw, 62px); }
.section p { color: #6D5D55; font-size: 17px; }
.section-heading { margin-bottom: 32px; }
.split-heading { display: grid; gap: 12px; }

.night-grid { display: grid; gap: 14px; }
.night-card {
    min-height: 230px;
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--line);
    background: white;
    box-shadow: 0 10px 34px rgba(43,27,22,.06);
    position: relative;
    overflow: hidden;
}
.night-card::after { content: ""; position: absolute; width: 120px; height: 120px; border-radius: 50%; right: -35px; top: -35px; opacity: .12; background: var(--orange); }
.night-icon { font-size: 28px; }
.night-card h3 { margin: 16px 0 8px; font-size: 24px; }
.night-card p { margin: 0 0 18px; font-size: 15px; max-width: 38ch; }
.night-card > span { display: inline-flex; padding: 7px 10px; border-radius: 999px; background: #FFF4E3; color: #7B4A00; font-size: 11px; font-weight: 800; }
.accent-2::after { background: #D97757; }
.accent-3::after { background: #B686E3; }
.accent-4::after { background: #79A4D9; }
.accent-5::after { background: #E65D50; }

.dark-section { background: var(--espresso); color: white; }
.dark-section .section-kicker { color: #C7B4AA; }
.dark-section h2 { color: white; }
.steps-grid { display: grid; gap: 12px; }
.steps-grid article { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); border-radius: 22px; padding: 22px; }
.step-number { color: var(--orange); font-weight: 900; font-size: 12px; letter-spacing: .14em; }
.steps-grid h3 { font-size: 21px; margin: 10px 0 7px; }
.steps-grid p { color: #CDBDB5; margin: 0; font-size: 14px; }

.why-grid { display: grid; gap: 38px; }
.quote-card { margin-top: 26px; padding: 22px; border-radius: 20px; background: var(--espresso); color: white; font-size: 20px; font-weight: 800; }
.quote-card small { display: block; margin-top: 9px; color: #C7B4AA; font-weight: 500; font-size: 12px; }
.feature-stack { display: grid; gap: 12px; }
.feature-row { display: grid; grid-template-columns: 15px 1fr; gap: 13px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.feature-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--orange); margin-top: 7px; }
.feature-row h3 { margin: 0 0 6px; font-size: 18px; }
.feature-row p { margin: 0; font-size: 14px; }

.reveal-section { padding-top: 30px; }
.reveal-wrap { max-width: 900px; }
.reveal-card {
    background: linear-gradient(145deg, #2E1D17, #1B110E);
    color: white;
    border-radius: 30px;
    padding: 28px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}
.reveal-card::after { content: ""; position: absolute; width: 240px; height: 240px; border-radius: 50%; background: rgba(245,161,44,.12); right: -70px; top: -80px; }
.orange-label { color: var(--orange); }
.reveal-card h2 { font-size: clamp(34px, 9vw, 58px); margin: 12px 0 22px; position: relative; z-index: 2; }
.reveal-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; position: relative; z-index: 2; }
.reveal-card li { display: flex; gap: 10px; color: #DCCDC6; font-size: 14px; }
.reveal-card li span { color: var(--orange); font-weight: 900; }
.ready-row { position: relative; z-index: 2; margin-top: 26px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: space-between; gap: 15px; flex-wrap: wrap; }
.ready-row span { font-size: 20px; font-weight: 800; }
.ready-row strong { color: var(--orange); }

.final-cta { background: #FFF6EA; }
.large-mark { margin: 0 auto 20px; width: 64px; height: 64px; font-size: 42px; border-radius: 20px; }
.domain-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: 22px 0; }
.domain-pills span { padding: 9px 13px; border-radius: 999px; background: white; border: 1px solid var(--line); font-size: 12px; font-weight: 800; }
.final-cta .button { margin-top: 4px; min-width: 190px; }

.site-footer { background: #1A110E; color: white; padding: 52px 0 26px; }
.footer-grid { display: grid; gap: 30px; }
.footer-logo { width: 170px; filter: brightness(0) invert(1); opacity: .96; }
.site-footer p { color: #BDA9A0; max-width: 340px; }
.footer-links { display: grid; gap: 12px; }
.footer-links a { color: #DAC9C1; font-weight: 700; }
.footer-bottom { margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); display: grid; gap: 8px; color: #8F7B73; font-size: 12px; }

.reveal-on-scroll { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.reveal-on-scroll.visible { opacity: 1; transform: translateY(0); }

@media (min-width: 700px) {
    .wrap { width: min(calc(100% - 56px), var(--max)); }
    .hero { padding: 80px 0 72px; }
    .hero-actions { grid-template-columns: max-content max-content; }
    .night-grid { grid-template-columns: 1fr 1fr; }
    .wide-card { grid-column: span 2; min-height: 190px; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1.2fr .8fr; }
    .footer-bottom { grid-template-columns: 1fr auto; }
}

@media (min-width: 960px) {
    .header-inner { height: 82px; }
    .brand img { width: 154px; }
    .menu-button, .mobile-nav { display: none; }
    .desktop-nav { display: flex; align-items: center; gap: 26px; font-size: 14px; font-weight: 750; }
    .desktop-nav a { color: #5B4A43; }
    .desktop-nav .nav-cta { background: var(--espresso); color: white; padding: 11px 16px; border-radius: 13px; }
    .hero { padding: 86px 0 88px; }
    .hero-grid { grid-template-columns: 1.08fr .92fr; gap: 76px; }
    .phone-stage { justify-content: flex-end; }
    .phone-shell { width: 370px; }
    .section { padding: 110px 0; }
    .intro-section { padding: 96px 0 70px; }
    .split-heading { grid-template-columns: 1fr 360px; align-items: end; }
    .split-heading > p { margin-bottom: 24px; }
    .night-grid { grid-template-columns: repeat(4, 1fr); }
    .wide-card { grid-column: span 4; min-height: 190px; }
    .steps-grid { grid-template-columns: repeat(4, 1fr); }
    .why-grid { grid-template-columns: .95fr 1.05fr; gap: 80px; align-items: start; }
    .reveal-card { padding: 50px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
