:root {
    --green: #22c55e;
    --green-light: #4ade80;
    --green-dark: #16a34a;

    /* Gradient inspired by the logo */
    --brand-gradient: linear-gradient(
        135deg,
        #7dff63 0%,
        #38e875 28%,
        #22c55e 52%,
        #16a34a 74%,
        #0f7a3d 100%
    );

    --brand-gradient-soft: linear-gradient(
        135deg,
        rgba(125, 255, 99, 0.18),
        rgba(56, 232, 117, 0.1),
        rgba(22, 163, 74, 0.04)
    );

    --background: #050706;
    --background-soft: #090d0a;
    --surface: #0d120f;
    --surface-light: #121914;
    --surface-hover: #182019;

    --text: #f5f7f5;
    --muted: #8d9690;
    --muted-light: #b7c0b9;

    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.14);

    --green-soft: rgba(34, 197, 94, 0.1);
    --green-border: rgba(34, 197, 94, 0.22);

    --container: 1180px;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
}


/* =========================
   RESET
========================= */

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


html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}


body {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 50% -10%,
            rgba(34, 197, 94, 0.11),
            transparent 34%
        ),
        radial-gradient(
            circle at 0% 45%,
            rgba(34, 197, 94, 0.045),
            transparent 28%
        ),
        radial-gradient(
            circle at 100% 80%,
            rgba(34, 197, 94, 0.04),
            transparent 25%
        ),
        var(--background);

    color: var(--text);

    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    overflow-x: hidden;
}


button,
input,
select {
    font: inherit;
}


button {
    border: none;
}


a {
    color: inherit;
    text-decoration: none;
}


.container {
    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin: 0 auto;
}


/* =========================
   GRADIENT TEXT
========================= */

.gradient-text,
.hero h1 span,
.section-eyebrow,
.panel-eyebrow,
.result-eyebrow,
.info-label,
.disclaimer > div > span {

    background: var(--brand-gradient);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent;

}


/* =========================
   BACKGROUND GLOWS
========================= */

.page-glow {
    position: fixed;

    width: 520px;
    height: 520px;

    border-radius: 50%;

    filter: blur(150px);

    pointer-events: none;

    opacity: 0.1;

    z-index: -1;
}


.glow-one {
    top: 8%;
    left: -330px;

    background: #22c55e;
}


.glow-two {
    right: -330px;
    bottom: 5%;

    background: #16a34a;
}


/* =========================
   HEADER
========================= */

.site-header {
    position: sticky;
    top: 0;

    z-index: 100;

    padding: 20px 24px 12px;

    background: transparent;

    transition:
        padding 0.35s var(--ease);
}


.site-header.scrolled {
    padding-top: 10px;
    padding-bottom: 8px;
}


/* Floating transparent header */

.header-shell {
    width: min(100%, 1280px);

    min-height: 68px;

    margin: 0 auto;

    padding: 8px 10px 8px 15px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.015)
        );

    border:
        1px solid
        rgba(255, 255, 255, 0.075);

    border-radius: 22px;

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    box-shadow:
        0 15px 50px
        rgba(0, 0, 0, 0.18);

    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s var(--ease);
}


.site-header.scrolled .header-shell {

    background:
        linear-gradient(
            135deg,
            rgba(14, 19, 16, 0.72),
            rgba(6, 9, 7, 0.6)
        );

    border-color:
        rgba(255, 255, 255, 0.1);

    box-shadow:
        0 20px 65px
        rgba(0, 0, 0, 0.35);

}


/* =========================
   BRAND
========================= */

.brand {
    min-width: 190px;

    display: flex;
    align-items: center;

    gap: 12px;

    transition:
        transform 0.3s var(--ease);
}


.brand:hover {
    transform: translateY(-1px);
}


.brand-logo {
    width: 46px;
    height: 46px;

    flex-shrink: 0;

    overflow: hidden;

    border-radius: 14px;

    background: var(--brand-gradient-soft);

    border:
        1px solid
        rgba(34, 197, 94, 0.2);

    box-shadow:
        0 8px 24px
        rgba(34, 197, 94, 0.1);
}


.brand-logo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


.brand-text {
    display: flex;
    flex-direction: column;

    gap: 2px;
}


.brand-text strong {
    font-size: 1.15rem;

    font-weight: 850;

    letter-spacing: -0.045em;
}


.brand-text span {
    color: var(--muted);

    font-size: 0.7rem;

    font-weight: 650;
}


/* =========================
   NAVIGATION
========================= */

.main-nav {
    display: flex;
    align-items: center;

    gap: 3px;

    padding: 4px;

    background:
        rgba(255, 255, 255, 0.025);

    border:
        1px solid
        rgba(255, 255, 255, 0.05);

    border-radius: 14px;
}


.nav-link {
    padding: 10px 16px;

    border-radius: 10px;

    color: var(--muted);

    font-size: 0.78rem;

    font-weight: 750;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s var(--ease);
}


.nav-link:hover {
    color: var(--text);

    transform: translateY(-1px);

    background:
        rgba(255, 255, 255, 0.035);
}


.nav-link.active {
    color: var(--text);

    background:
        rgba(255, 255, 255, 0.07);

    box-shadow:
        inset 0 1px 0
        rgba(255, 255, 255, 0.04);
}


/* =========================
   HEADER CTA
========================= */

.header-cta {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    padding: 12px 18px;

    border-radius: 13px;

    background: var(--brand-gradient);

    color: #061008;

    font-size: 0.76rem;

    font-weight: 900;

    box-shadow:
        0 10px 28px
        rgba(34, 197, 94, 0.18);

    transition:
        transform 0.3s var(--ease),
        box-shadow 0.3s ease,
        filter 0.3s ease;
}


.header-cta:hover {
    transform: translateY(-2px);

    filter: brightness(1.08);

    box-shadow:
        0 18px 38px
        rgba(34, 197, 94, 0.26);
}


/* =========================
   HERO
========================= */

.hero {
    position: relative;

    padding: 100px 0 120px;

    overflow: hidden;
}


.hero-grid {
    display: grid;

    grid-template-columns:
        1.1fr
        0.9fr;

    align-items: center;

    gap: 70px;
}


.hero-copy {
    max-width: 650px;
}


.hero-badge {
    width: fit-content;

    display: inline-flex;
    align-items: center;

    gap: 9px;

    padding: 9px 13px;

    border:
        1px solid
        var(--green-border);

    border-radius: 999px;

    background:
        rgba(34, 197, 94, 0.055);

    color: var(--green-light);

    font-size: 0.65rem;

    font-weight: 850;

    letter-spacing: 0.12em;
}


.badge-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--brand-gradient);

    box-shadow:
        0 0 0 4px
        rgba(34, 197, 94, 0.08);
}


.hero h1 {
    margin-top: 25px;

    font-size:
        clamp(
            3.5rem,
            7vw,
            6.3rem
        );

    line-height: 0.94;

    font-weight: 900;

    letter-spacing: -0.075em;
}


.hero h1 span {
    display: block;
}


.hero-description {
    max-width: 570px;

    margin-top: 25px;

    color: var(--muted-light);

    font-size: 1rem;

    line-height: 1.75;
}


/* =========================
   HERO BUTTONS
========================= */

.hero-actions {
    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 32px;
}


.primary-button,
.secondary-button {
    min-height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    font-size: 0.84rem;

    font-weight: 850;

    transition:
        transform 0.3s var(--ease),
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.primary-button {
    min-width: 205px;

    justify-content: space-between;

    padding: 0 18px 0 20px;

    background: var(--brand-gradient);

    color: #061008;

    box-shadow:
        0 16px 38px
        rgba(34, 197, 94, 0.18);
}


.primary-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 22px 48px
        rgba(34, 197, 94, 0.25);
}


.primary-button span {
    font-size: 1.1rem;

    transition:
        transform 0.3s var(--ease);
}


.primary-button:hover span {
    transform: translateX(4px);
}


.secondary-button {
    padding: 0 20px;

    border:
        1px solid
        var(--border-strong);

    color: var(--muted-light);

    background:
        rgba(255, 255, 255, 0.025);
}


.secondary-button:hover {
    transform: translateY(-2px);

    border-color:
        rgba(255, 255, 255, 0.2);

    color: var(--text);

    background:
        rgba(255, 255, 255, 0.045);
}


.hero-trust {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-top: 22px;

    color: var(--muted);

    font-size: 0.72rem;

    font-weight: 650;
}


.trust-item {
    display: flex;
    align-items: center;

    gap: 7px;
}


.trust-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #38e875;
}


.trust-divider {
    width: 4px;
    height: 4px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.18);
}


/* =========================
   HERO VISUAL
========================= */

.hero-visual {
    position: relative;
}


.visual-card {
    position: relative;

    padding: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(20, 27, 22, 0.97),
            rgba(7, 10, 8, 0.98)
        );

    border:
        1px solid
        rgba(255, 255, 255, 0.09);

    border-radius: 26px;

    box-shadow:
        0 30px 80px
        rgba(0, 0, 0, 0.4);
}


.visual-card::before {
    content: "";

    position: absolute;

    inset: -1px;

    border-radius: inherit;

    padding: 1px;

    background:
        linear-gradient(
            140deg,
            rgba(125, 255, 99, 0.5),
            rgba(34, 197, 94, 0.12) 35%,
            transparent 55%,
            rgba(255, 255, 255, 0.08)
        );

    pointer-events: none;

    opacity: 0.7;

    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    mask-composite: exclude;
}


.visual-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


.visual-label {
    display: block;

    color: var(--muted);

    font-size: 0.62rem;

    font-weight: 850;

    letter-spacing: 0.12em;
}


.visual-card-top strong {
    display: block;

    margin-top: 8px;

    font-size: 1.7rem;

    letter-spacing: -0.05em;
}


.visual-logo {
    width: 54px;
    height: 54px;

    overflow: hidden;

    border-radius: 16px;

    border:
        1px solid
        rgba(34, 197, 94, 0.18);

    background:
        var(--brand-gradient-soft);
}


.visual-logo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


.visual-result {
    margin-top: 42px;

    padding: 25px;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            rgba(125, 255, 99, 0.14),
            rgba(34, 197, 94, 0.05),
            rgba(22, 163, 74, 0.015)
        );

    border:
        1px solid
        rgba(34, 197, 94, 0.16);
}


.visual-result span {
    display: block;

    background: var(--brand-gradient);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    font-size: 0.62rem;

    font-weight: 850;

    letter-spacing: 0.11em;
}


.visual-result strong {
    display: block;

    margin-top: 10px;

    font-size:
        clamp(
            2.2rem,
            4vw,
            3.3rem
        );

    letter-spacing: -0.065em;
}


.visual-lines {
    margin-top: 22px;

    border-top:
        1px solid
        var(--border);
}


.visual-line {
    min-height: 55px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom:
        1px solid
        var(--border);

    font-size: 0.76rem;
}


.visual-line span {
    color: var(--muted);
}


.visual-line strong {
    color: var(--text);
}


.visual-footer {
    display: flex;
    align-items: center;

    gap: 8px;

    margin-top: 20px;

    color: var(--muted);

    font-size: 0.7rem;

    font-weight: 650;
}


/* =========================
   LIVE DOT
========================= */

.live-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #38e875;

    box-shadow:
        0 0 0 4px
        rgba(34, 197, 94, 0.08);

    animation:
        pulse 2.2s ease-in-out infinite;
}


/* =========================
   SECTIONS
========================= */

.calculator-section,
.info-section {
    padding: 100px 0;
}


.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 38px;
}


.section-heading h2 {
    margin-top: 10px;

    font-size:
        clamp(
            2.3rem,
            5vw,
            4rem
        );

    line-height: 1;

    letter-spacing: -0.065em;
}


.section-heading p {
    max-width: 380px;

    color: var(--muted);

    font-size: 0.88rem;

    line-height: 1.65;
}


/* =========================
   CALCULATOR
========================= */

.calculator-grid {
    display: grid;

    grid-template-columns:
        1fr
        0.9fr;

    gap: 22px;
}


.panel {
    padding: 34px;

    background:
        rgba(13, 18, 15, 0.82);

    border:
        1px solid
        var(--border);

    border-radius: 24px;

    box-shadow:
        0 25px 70px
        rgba(0, 0, 0, 0.18);

    transition:
        transform 0.35s var(--ease),
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


.panel:hover {
    transform: translateY(-3px);

    border-color:
        rgba(255, 255, 255, 0.13);

    box-shadow:
        0 32px 80px
        rgba(0, 0, 0, 0.25);
}


.panel-heading {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-bottom: 30px;
}


.panel-icon,
.result-icon {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 13px;

    background:
        var(--brand-gradient-soft);

    color: var(--green-light);

    font-size: 0.85rem;

    font-weight: 900;

    border:
        1px solid
        rgba(34, 197, 94, 0.12);
}


.panel-heading h3 {
    margin-top: 5px;

    font-size: 1.45rem;

    letter-spacing: -0.045em;
}


/* =========================
   FORM
========================= */

.field {
    margin-top: 21px;
}


.field:first-child {
    margin-top: 0;
}


.field label,
.fee-field label {
    display: block;

    margin-bottom: 9px;

    color: var(--muted-light);

    font-size: 0.75rem;

    font-weight: 750;
}


.field small {
    display: block;

    margin-top: 8px;

    color: var(--muted);

    font-size: 0.68rem;
}


input,
select {
    width: 100%;
    height: 56px;

    border:
        1px solid
        var(--border);

    outline: none;

    border-radius: 13px;

    padding: 0 15px;

    background:
        rgba(255, 255, 255, 0.035);

    color: var(--text);

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}


input:hover,
select:hover {
    border-color:
        rgba(255, 255, 255, 0.14);
}


input:focus,
select:focus {
    border-color:
        rgba(34, 197, 94, 0.55);

    background:
        rgba(34, 197, 94, 0.025);

    box-shadow:
        0 0 0 4px
        rgba(34, 197, 94, 0.08);
}


select option {
    background: #101510;
    color: white;
}


.robux-input,
.percentage-input,
.dollar-input {
    position: relative;
}


.robux-input input,
.percentage-input input {
    padding-right: 50px;
}


.robux-input > span,
.percentage-input > span {
    position: absolute;

    top: 50%;
    right: 16px;

    transform: translateY(-50%);

    color: var(--muted);

    font-size: 0.78rem;

    font-weight: 750;

    pointer-events: none;
}


.dollar-input > span {
    position: absolute;

    top: 50%;
    left: 15px;

    transform: translateY(-50%);

    color: var(--muted);

    font-weight: 750;

    pointer-events: none;
}


.dollar-input input {
    padding-left: 34px;
}


.fee-row {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 14px;

    margin-top: 21px;
}


.error {
    min-height: 20px;

    margin-top: 12px;

    color: #fb7185;

    font-size: 0.72rem;

    font-weight: 700;
}


.calculate-button {
    width: 100%;

    min-height: 57px;

    margin-top: 5px;

    padding: 0 19px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-radius: 14px;

    cursor: pointer;

    background: var(--brand-gradient);

    color: #061008;

    font-weight: 900;

    transition:
        transform 0.3s var(--ease),
        box-shadow 0.3s ease,
        filter 0.3s ease;

    box-shadow:
        0 15px 34px
        rgba(34, 197, 94, 0.18);
}


.calculate-button:hover {
    transform: translateY(-2px);

    filter: brightness(1.07);

    box-shadow:
        0 22px 45px
        rgba(34, 197, 94, 0.25);
}


.calculate-button b {
    font-size: 1.1rem;
}


/* =========================
   RESULTS
========================= */

.result-panel {
    display: flex;
    flex-direction: column;

    background:
        linear-gradient(
            145deg,
            rgba(18, 24, 20, 0.96),
            rgba(7, 10, 8, 0.98)
        );
}


.result-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;
}


.result-title-row {
    display: flex;
    align-items: center;

    gap: 12px;
}


.result-pill {
    padding: 7px 10px;

    border-radius: 999px;

    background:
        var(--brand-gradient-soft);

    border:
        1px solid
        rgba(34, 197, 94, 0.16);

    font-size: 0.6rem;

    font-weight: 900;

    letter-spacing: 0.08em;

    color: var(--green-light);
}


.live-indicator {
    display: flex;
    align-items: center;

    gap: 7px;

    margin-top: 7px;

    color: var(--muted);

    font-size: 0.68rem;

    font-weight: 650;
}


.live-indicator i {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #38e875;
}


.main-result {
    display: flex;
    align-items: baseline;

    gap: 10px;

    margin-top: 48px;
}


#resultValue {
    font-size:
        clamp(
            3rem,
            5vw,
            4.7rem
        );

    line-height: 1;

    font-weight: 900;

    letter-spacing: -0.075em;
}


.result-code {
    padding: 7px 10px;

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.055);

    color: var(--muted-light);

    font-size: 0.65rem;

    font-weight: 850;
}


.result-subtitle {
    margin-top: 11px;

    color: var(--muted);

    font-size: 0.78rem;
}


.result-details {
    margin-top: 32px;

    border-top:
        1px solid
        var(--border);
}


.result-line {
    min-height: 57px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-bottom:
        1px solid
        var(--border);

    font-size: 0.76rem;
}


.result-line span {
    color: var(--muted);
}


.result-line strong {
    color: var(--text);

    font-size: 0.78rem;
}


.rate-status {
    margin-top: auto;

    padding-top: 23px;

    background: var(--brand-gradient);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    font-size: 0.7rem;

    font-weight: 750;
}


/* =========================
   INFO
========================= */

.info-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;
}


.info-item {
    min-height: 220px;

    padding: 25px;

    display: flex;
    flex-direction: column;

    border:
        1px solid
        var(--border);

    border-radius: 20px;

    background:
        rgba(255, 255, 255, 0.022);

    transition:
        transform 0.3s var(--ease),
        background 0.3s ease,
        border-color 0.3s ease;
}


.info-item:hover {
    transform: translateY(-4px);

    background:
        rgba(255, 255, 255, 0.04);

    border-color:
        rgba(34, 197, 94, 0.22);
}


.info-item strong {
    display: block;

    margin-top: 20px;

    font-size: 1.7rem;

    letter-spacing: -0.055em;
}


.info-item p {
    margin-top: auto;

    padding-top: 20px;

    color: var(--muted);

    font-size: 0.76rem;

    line-height: 1.6;
}


/* =========================
   DISCLAIMER
========================= */

.disclaimer-section {
    padding: 30px 0 100px;
}


.disclaimer {
    max-width: 850px;

    padding: 24px;

    display: flex;
    align-items: center;

    gap: 18px;

    border:
        1px solid
        var(--border);

    border-radius: 20px;

    background:
        rgba(255, 255, 255, 0.022);
}


.disclaimer-logo {
    width: 58px;
    height: 58px;

    flex-shrink: 0;

    overflow: hidden;

    border-radius: 16px;

    background:
        var(--brand-gradient-soft);

    border:
        1px solid
        rgba(34, 197, 94, 0.14);
}


.disclaimer-logo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


.disclaimer h3 {
    margin-top: 7px;

    font-size: 1rem;

    letter-spacing: -0.025em;
}


.disclaimer p {
    margin-top: 7px;

    color: var(--muted);

    font-size: 0.78rem;

    line-height: 1.65;
}


/* =========================
   FOOTER
========================= */

footer {
    padding: 28px 0;

    border-top:
        1px solid
        var(--border);
}


.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    color: var(--muted);

    font-size: 0.72rem;
}


.footer div {
    display: flex;
    align-items: center;

    gap: 10px;
}


.footer strong {
    color: var(--muted-light);

    font-weight: 700;
}


/* =========================
   REVEALS
========================= */

.reveal {
    opacity: 0;

    transform:
        translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s var(--ease-soft);
}


.reveal.is-visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================
   ANIMATIONS
========================= */

@keyframes pulse {

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

    50% {
        transform: scale(1.15);
    }

}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

    .hero-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .hero-copy {
        max-width: 750px;
    }

    .hero-visual {
        max-width: 650px;
    }

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

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

}


@media (max-width: 760px) {

    .site-header {
        padding:
            10px
            12px;
    }

    .header-shell {
        min-height: 62px;
    }

    .brand {
        min-width: auto;
    }

    .brand-text span {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .hero {
        padding:
            70px
            0
            90px;
    }

    .section-heading {
        flex-direction: column;

        align-items: flex-start;

        gap: 16px;
    }

    .section-heading p {
        max-width: 550px;
    }

}


@media (max-width: 560px) {

    .container {
        width:
            min(
                calc(100% - 28px),
                var(--container)
            );
    }

    .main-nav {
        padding: 3px;
    }

    .nav-link {
        padding:
            9px
            10px;

        font-size: 0.68rem;
    }

    .brand-logo {
        width: 42px;
        height: 42px;
    }

    .brand-text strong {
        font-size: 1rem;
    }

    .hero h1 {
        font-size:
            clamp(
                3.2rem,
                16vw,
                4.5rem
            );
    }

    .hero-description {
        font-size: 0.92rem;
    }

    .hero-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .hero-trust {
        flex-wrap: wrap;
    }

    .visual-card,
    .panel {
        padding: 23px;
    }

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

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

    .info-item {
        min-height: 180px;
    }

    .disclaimer {
        align-items: flex-start;
    }

    .footer {
        flex-direction: column;

        align-items: flex-start;
    }

}


/* =========================
   REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;

        scroll-behavior: auto !important;

    }

}