:root {
    --navy: #0D1B2A;
    --navy-mid: #162233;
    --navy-light: #1E2F42;
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --cream: #F5EFE0;
    --muted: #8A9BB0;
    --teal: #2EC4A4;
    --blue: #4F8EF7;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--navy);
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 56px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background .4s, box-shadow .4s;
}

nav.solid {
    background: rgba(13, 27, 42, .97);
    box-shadow: 0 1px 0 rgba(201, 168, 76, .12);
    backdrop-filter: blur(14px);
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: -.3px;
}

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

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 13.5px;
    opacity: .8;
    position: relative;
    transition: opacity .2s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width .25s;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--navy) !important;
    font-weight: 500 !important;
    padding: 10px 22px;
    border-radius: 100px;
    opacity: 1 !important;
    transition: background .2s, transform .15s !important;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
    transform: translateY(-1px);
}

.nav-cta::after {
    display: none !important;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 130px 56px 90px;
    background: url('assets/hero-bg.png') no-repeat center center/cover;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(201, 168, 76, .13) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.g1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 168, 76, .07), transparent 65%);
    top: -150px;
    right: -200px;
}

.g2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(46, 196, 164, .06), transparent 65%);
    bottom: -80px;
    left: -120px;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    gap: 12px;
}

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

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 5.8vw, 72px);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -1.5px;
    margin-bottom: 30px;
}

h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-sub {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--muted);
    max-width: 540px;
    margin-bottom: 48px;
}

.hero-sub strong {
    color: var(--cream);
    font-weight: 500;
}

.btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-p {
    background: var(--gold);
    color: var(--navy);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 15px 30px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .2s, transform .15s;
}

.btn-p:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-o {
    background: transparent;
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    padding: 14px 28px;
    border-radius: 100px;
    border: 1px solid rgba(245, 239, 224, .22);
    cursor: pointer;
    text-decoration: none;
    transition: border-color .2s, color .2s, transform .15s;
}

.btn-o:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 56px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: .3;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-family: 'DM Mono', monospace;
}

.sl {
    width: 36px;
    height: 1px;
    background: var(--cream);
    animation: sl 2s ease-in-out infinite;
}

@keyframes sl {

    0%,
    100% {
        opacity: 1;
        transform: scaleX(1);
    }

    50% {
        opacity: .3;
        transform: scaleX(.4);
    }
}

/* TRUST BAR */
.trust {
    background: var(--navy-mid);
    border-top: 1px solid rgba(201, 168, 76, .1);
    border-bottom: 1px solid rgba(201, 168, 76, .1);
    padding: 20px 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-family: 'DM Mono', monospace;
    color: var(--muted);
    letter-spacing: .5px;
}

.trust-item span {
    color: var(--gold);
    font-size: 16px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.trust-sep {
    width: 1px;
    height: 20px;
    background: rgba(201, 168, 76, .15);
}

/* SECTIONS */
section {
    padding: 100px 56px;
}

.inner {
    max-width: 1120px;
    margin: 0 auto;
}

.sec-eye {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.sec-h {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -.5px;
    margin-bottom: 16px;
}

.sec-sub {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--muted);
    max-width: 580px;
    margin-bottom: 56px;
}

/* FOR YOU SECTION */
.for-you {
    background: #fff;
    color: var(--navy);
}

.for-you .sec-sub {
    color: #5a6b7a;
}

.fy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(13, 27, 42, .06);
    border-radius: 16px;
    overflow: hidden;
}

.fy-card {
    background: #fff;
    padding: 36px 32px;
    transition: background .2s;
}

.fy-card:hover {
    background: #F8FDFC;
}

.fy-icon {
    font-size: 32px;
    margin-bottom: 18px;
    display: block;
}

.fy-icon-img {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    display: block;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(13, 27, 42, 0.1);
}

.fy-tag {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 10px;
}

.fy-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.25;
}

.fy-card p {
    font-size: 13.5px;
    color: #5a6b7a;
    line-height: 1.75;
    font-weight: 300;
}

/* WHAT YOU GET */
.wyg {
    background: var(--navy);
}

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

.wyg-card {
    background: var(--navy-mid);
    border: 1px solid rgba(201, 168, 76, .1);
    border-radius: 14px;
    padding: 32px;
    transition: transform .25s, border-color .25s;
    position: relative;
    overflow: hidden;
}

.wyg-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}

.wyg-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 168, 76, .25);
}

.wyg-card:hover::before {
    transform: scaleX(1);
}

.wyg-num {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 900;
    color: rgba(201, 168, 76, .12);
    line-height: 1;
    margin-bottom: 12px;
    display: block;
}

.wyg-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 10px;
    line-height: 1.3;
}

.wyg-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
}

/* HOW IT WORKS */
.hiw {
    background: #F7F9FC;
    color: var(--navy);
}

.hiw .sec-sub {
    color: #5a6b7a;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    opacity: .25;
}

.step {
    padding: 0 20px;
    text-align: center;
}

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 900;
    color: var(--gold);
    position: relative;
    z-index: 1;
}

.step h4 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.step p {
    font-size: 13px;
    color: #5a6b7a;
    line-height: 1.65;
    font-weight: 300;
}

/* TOOLS PREVIEW */
.tools {
    background: var(--navy);
}

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

.tool-card {
    background: var(--navy-mid);
    border: 1px solid rgba(201, 168, 76, .1);
    border-radius: 14px;
    padding: 32px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: start;
    transition: transform .25s, border-color .25s;
    cursor: default;
}

.tool-card:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 168, 76, .3);
}

.tool-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.tc-gold .tool-icon {
    background: rgba(201, 168, 76, .12);
    border: 1px solid rgba(201, 168, 76, .2);
}

.tc-teal .tool-icon {
    background: rgba(46, 196, 164, .1);
    border: 1px solid rgba(46, 196, 164, .2);
}

.tool-lbl {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.tc-gold .tool-lbl {
    color: var(--gold);
}

.tc-teal .tool-lbl {
    color: var(--teal);
}

.tool-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 8px;
    line-height: 1.3;
}

.tool-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
}

.soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 9px;
    font-family: 'DM Mono', monospace;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 100px;
    margin-top: 10px;
}

.soon-badge.launch {
    background: rgba(46, 196, 164, .1);
    color: var(--teal);
    border: 1px solid rgba(46, 196, 164, .2);
}

.soon-badge.coming {
    background: rgba(201, 168, 76, .1);
    color: var(--gold-light);
    border: 1px solid rgba(201, 168, 76, .2);
}

/* TESTIMONIAL */
.testimonial {
    background: var(--navy-mid);
    border-top: 1px solid rgba(201, 168, 76, .08);
    border-bottom: 1px solid rgba(201, 168, 76, .08);
    padding: 80px 56px;
    text-align: center;
}

.tq {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 2.5vw, 30px);
    font-weight: 700;
    font-style: italic;
    color: var(--cream);
    max-width: 720px;
    margin: 0 auto 28px;
    line-height: 1.5;
}

.tq em {
    color: var(--gold);
    font-style: normal;
}

.ta {
    font-size: 12px;
    font-family: 'DM Mono', monospace;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
}

/* CTA */
.cta-sec {
    background: var(--navy);
    padding: 100px 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 70% at 50% 50%, rgba(201, 168, 76, .07), transparent);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-sec .sec-h {
    color: var(--cream);
    margin-bottom: 18px;
}

.cta-sub {
    font-size: 17px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 44px;
}

.wl-form {
    display: flex;
    gap: 12px;
    max-width: 460px;
    margin: 0 auto 16px;
}

.wl-input {
    flex: 1;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(201, 168, 76, .2);
    border-radius: 100px;
    padding: 14px 24px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--cream);
    outline: none;
    transition: border-color .2s;
}

.wl-input::placeholder {
    color: var(--muted);
}

.wl-input:focus {
    border-color: var(--gold);
}

.wl-note {
    font-size: 11px;
    color: var(--muted);
    font-family: 'DM Mono', monospace;
    letter-spacing: .5px;
}

/* FOOTER */
footer {
    background: var(--navy-mid);
    border-top: 1px solid rgba(201, 168, 76, .08);
    padding: 64px 56px 32px;
}

.ft {
    max-width: 1120px;
    margin: 0 auto;
}

.ft-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 52px;
}

.ft-logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--gold);
    display: block;
    margin-bottom: 12px;
}

.ft-tag {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.75;
    font-weight: 300;
    max-width: 260px;
}

.ft-head {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.ft-links {
    list-style: none;
}

.ft-links li {
    margin-bottom: 10px;
}

.ft-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 300;
    transition: color .2s;
}

.ft-links a:hover {
    color: var(--cream);
}

.ft-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ft-copy {
    font-size: 11px;
    color: var(--muted);
    font-family: 'DM Mono', monospace;
    opacity: .55;
}

/* ANIMATIONS */
.fade-up {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s ease, transform .6s ease;
}

.fade-up.in {
    opacity: 1;
    transform: translateY(0);
}

.fade-up:nth-child(2) {
    transition-delay: .08s;
}

.fade-up:nth-child(3) {
    transition-delay: .16s;
}

.fade-up:nth-child(4) {
    transition-delay: .24s;
}

.fade-up:nth-child(5) {
    transition-delay: .32s;
}

.fade-up:nth-child(6) {
    transition-delay: .40s;
}

/* RESPONSIVE */
@media(max-width:960px) {

    nav,
    section,
    .hero,
    .trust,
    .testimonial,
    .cta-sec,
    footer {
        padding-left: 24px;
        padding-right: 24px;
    }

    nav {
        padding-top: 0;
        padding-bottom: 0;
    }

    .nav-links {
        display: none;
    }

    h1 {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .fy-grid,
    .wyg-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }

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

    .steps::before {
        display: none;
    }

    .ft-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .wl-form {
        flex-direction: column;
    }
}
