:root {
    --bg: #07111b;
    --panel: #0d1a26;
    --panel2: #101f2d;
    --line: #203342;
    --muted: #95a6b8;
    --white: #f5f8fb;
    --green: #3cfeae;
    --blue: #199df6
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
    background-image: linear-gradient(rgba(41, 76, 99, .09) 1px, transparent 1px), linear-gradient(90deg, rgba(41, 76, 99, .09) 1px, transparent 1px);
    background-size: 48px 48px
}

.shell {
    max-width: 1120px;
    margin: auto;
    padding-left: 28px;
    padding-right: 28px
}

.topbar {
    height: 105px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    width: 116px;
    height: auto;
    object-fit: contain
}

.top-note {
    font-size: 13px;
    line-height: 1.35;
    color: #b8c3d0
}

.intro {
    text-align: center;
    padding: 30px 0 34px
}

.eyebrow {
    font-size: 12px;
    letter-spacing: 6px;
    color: #aab8c7;
    margin: 0 0 12px
}

.intro h1 {
    font: 700 clamp(36px, 5vw, 58px)/1.05 'Space Grotesk', sans-serif;
    letter-spacing: -2px;
    margin: 0
}

.green {
    color: var(--green)
}

.blue {
    color: var(--blue)
}

.intro-copy,
.section-copy {
    font-size: 18px;
    line-height: 1.45;
    color: #aab8c7;
    margin: 16px 0 0
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.panel {
    border: 1px solid var(--line);
    border-radius: 17px;
    background: linear-gradient(145deg, rgba(16, 30, 43, .96), rgba(9, 20, 30, .96));
    padding: 24px
}

.panel-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 26px;
    font-weight: 700
}

.green-icon {
    color: var(--green);
    background: rgba(60, 254, 174, .1)
}

.blue-icon {
    color: var(--blue);
    background: rgba(25, 157, 246, .1)
}

h2,
h3,
p {
    margin-top: 0
}

.panel-title h2 {
    font: 600 20px 'Space Grotesk', sans-serif;
    margin: 0
}

.panel-title p {
    font-size: 14px;
    color: var(--muted);
    margin: 3px 0 0
}

.field {
    height: 58px;
    border: 1px solid var(--line);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px 0 16px;
    margin: 10px 0;
    color: #f0f4f8;
    font-size: 14px
}

.field input {
    width: 130px;
    background: var(--panel2);
    border: 0;
    border-radius: 9px;
    color: #fff;
    font: bold 16px 'DM Sans';
    text-align: center;
    padding: 12px;
    outline: none
}

.field input:focus {
    box-shadow: 0 0 0 2px var(--green)
}

.money-input {
    display: flex;
    align-items: center;
    background: var(--panel2);
    border-radius: 9px;
    overflow: hidden
}

.money-input b {
    font-size: 12px;
    color: var(--muted);
    padding: 0 8px
}

.money-input input {
    width: 90px
}

.goal-card {
    border-top: 1px solid var(--line);
    margin-top: 21px;
    padding: 22px 14px 0
}

.goal-row {
    display: flex;
    align-items: end;
    justify-content: space-between
}

.goal-card h3 {
    font-size: 15px;
    margin: 0 0 4px
}

.goal-card p {
    font-size: 13px;
    color: var(--muted);
    margin: 0
}

.goal-row output {
    font: 600 27px 'Space Grotesk'
}

.goal-card input {
    width: 100%;
    accent-color: var(--green);
    margin: 22px 0 8px
}

.range-labels {
    display: flex;
    justify-content: space-between;
    color: #aab8c7;
    font-size: 12px
}

.metric {
    height: 71px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(20, 34, 48, .7);
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 15px;
    margin: 10px 0
}

.metric strong {
    font: 700 33px 'Space Grotesk';
    min-width: 78px
}

.metric b {
    font-size: 14px;
    display: block
}

.metric small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-top: 4px
}

.ring {
    width: 42px;
    height: 42px;
    margin-left: auto;
    border-radius: 50%;
    border: 7px solid #263947;
    border-top-color: currentColor;
    transform: rotate(40deg)
}

.ring-green {
    color: var(--green)
}

.ring-blue {
    color: var(--blue)
}

.money-card {
    border: 1px solid;
    border-radius: 12px;
    padding: 16px 20px;
    margin-top: 10px
}

.money-card span {
    display: block;
    font-size: 13px;
    color: #c1ccd7
}

.money-card strong {
    font: 700 27px 'Space Grotesk';
    display: block;
    margin-top: 5px
}

.current {
    border-color: #0b775c;
    background: rgba(17, 76, 64, .27)
}

.current strong {
    color: var(--green)
}

.projected {
    border-color: #155a8a;
    background: rgba(16, 57, 88, .35)
}

.projected strong {
    color: var(--blue)
}

.money-card small {
    font-size: 12px
}

.comparison {
    margin-top: 32px;
    text-align: center;
    padding: 30px 22px 22px
}

.comparison h2,
.cta h2 {
    font: 600 30px 'Space Grotesk';
    margin: 0
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    text-align: left;
    margin-top: 18px
}

.compare-card,
.opportunity {
    border: 1px solid var(--line);
    border-radius: 13px;
    padding: 18px 20px
}

.compare-card.highlighted {
    border-color: var(--blue)
}

.compare-card h3 {
    font-size: 16px;
    margin-bottom: 14px
}

.data-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(128, 153, 173, .17);
    padding: 9px 0;
    color: var(--muted);
    font-size: 13px
}

.data-row:last-child {
    border: 0
}

.data-row b {
    color: #f0f4f8
}

.opportunity {
    border-color: #0b775c;
    background: rgba(17, 76, 64, .27)
}

.opportunity span {
    font-size: 13px
}

.opportunity strong {
    display: block;
    color: var(--green);
    font: 700 27px 'Space Grotesk';
    margin-top: 28px
}

.opportunity small {
    font-size: 13px
}

.opportunity hr {
    border: 0;
    border-top: 1px solid rgba(60, 254, 174, .22);
    margin: 25px 0 14px
}

.opportunity p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
    margin: 0
}

.cta {
    text-align: center;
    padding: 70px 0 45px
}

.cta h2 {
    margin-top: 10px
}

.cta p:not(.eyebrow) {
    color: #aab8c7;
    line-height: 1.5;
    margin: 12px 0 22px
}

.whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    background: var(--green);
    color: #03130e;
    text-decoration: none;
    font-weight: 700;
    padding: 16px 28px;
    border-radius: 12px;
    min-width: 320px;
    justify-content: center;
    box-shadow: 0 10px 35px rgba(60, 254, 174, .2)
}

.whatsapp span {
    font-size: 22px
}

.cta>small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-top: 13px
}

.ambient {
    position: fixed;
    filter: blur(100px);
    opacity: .08;
    pointer-events: none;
    border-radius: 50%;
    z-index: -1
}

.ambient-green {
    width: 400px;
    height: 400px;
    background: var(--green);
    left: -220px;
    bottom: -100px
}

.ambient-blue {
    width: 400px;
    height: 400px;
    background: var(--blue);
    right: -200px;
    top: 220px
}

@media(max-width:760px) {
    .shell {
        padding-left: 16px;
        padding-right: 16px
    }

    .topbar {
        height: 80px
    }

    .logo {
        width: 100px
    }

    .intro {
        padding: 30px 0
    }

    .intro h1 {
        letter-spacing: -1px
    }

    .desktop {
        display: none
    }

    .intro-copy {
        font-size: 16px
    }

    .calculator-grid,
    .compare-grid {
        grid-template-columns: 1fr
    }

    .panel {
        padding: 18px
    }

    .field {
        font-size: 13px
    }

    .field input {
        width: 105px
    }

    .comparison h2,
    .cta h2 {
        font-size: 25px
    }

    .cta {
        padding: 52px 0 34px
    }

    .whatsapp {
        min-width: 0;
        width: 100%;
        font-size: 14px
    }

    .eyebrow {
        letter-spacing: 4px
    }
}