* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange: #f7931a;
    --orange-light: #ffb84d;

    --blue: #3d8bff;
    --purple: #8b5cf6;

    --ink: #182338;
    --muted: #64748b;

    --white: #ffffff;
    --background: #eef6ff;

    --border: rgba(30, 64, 110, .10);
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;

    font-family: Inter, sans-serif;

    color: var(--ink);

    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(61,139,255,.25),
            transparent 28%
        ),
        radial-gradient(
            circle at 85% 20%,
            rgba(139,92,246,.16),
            transparent 25%
        ),
        radial-gradient(
            circle at 70% 70%,
            rgba(247,147,26,.13),
            transparent 25%
        ),
        #eef6ff;

    overflow-x: hidden;
}


/* BACKGROUND */

.background-grid {
    position: fixed;

    inset: 0;

    z-index: -5;

    opacity: .35;

    background-image:
        linear-gradient(
            rgba(50,100,160,.055) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(50,100,160,.055) 1px,
            transparent 1px
        );

    background-size: 45px 45px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 90%
        );
}

.orb {
    position: fixed;

    border-radius: 50%;

    filter: blur(100px);

    z-index: -4;

    pointer-events: none;
}

.orb-orange {
    width: 350px;
    height: 350px;

    background: rgba(247,147,26,.18);

    left: -150px;
    top: 450px;
}

.orb-blue {
    width: 300px;
    height: 300px;

    background: rgba(61,139,255,.16);

    right: -100px;
    top: 100px;
}

.orb-purple {
    width: 300px;
    height: 300px;

    background: rgba(139,92,246,.12);

    left: 40%;
    top: 900px;
}


/* NAVBAR */

.navbar {
    width: min(1200px, calc(100% - 50px));

    height: 90px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.logo {
    display: flex;

    align-items: center;

    gap: 10px;

    text-decoration: none;

    color: var(--ink);

    font-size: 14px;

    font-weight: 900;

    letter-spacing: 2px;
}

.logo > span > span {
    color: var(--orange);
}

.logo-mark {
    width: 37px;
    height: 37px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 11px;

    color: white;

    font-size: 22px;

    background:
        linear-gradient(
            135deg,
            #ffb347,
            #f7931a
        );

    box-shadow:
        0 8px 25px rgba(247,147,26,.25);
}

.navbar nav {
    display: flex;

    gap: 35px;
}

.navbar nav a {
    color: #64748b;

    text-decoration: none;

    font-size: 11px;

    font-weight: 600;

    transition: .2s;
}

.navbar nav a:hover {
    color: var(--ink);
}

.live {
    display: flex;

    align-items: center;

    gap: 8px;

    padding: 9px 13px;

    border: 1px solid rgba(30,64,110,.10);

    border-radius: 50px;

    background: rgba(255,255,255,.5);

    backdrop-filter: blur(10px);

    color: #64748b;

    font-size: 8px;

    letter-spacing: 1.2px;

    font-weight: 700;
}

.live i {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #25c96f;

    box-shadow:
        0 0 12px rgba(37,201,111,.7);
}


/* HERO */

.hero {
    width: min(1200px, calc(100% - 50px));

    min-height: 700px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;
}

.hero-left {
    position: relative;

    z-index: 5;
}

.eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 8px 12px;

    border: 1px solid rgba(61,139,255,.15);

    border-radius: 50px;

    background: rgba(255,255,255,.55);

    color: #60728d;

    font-size: 8px;

    letter-spacing: 1.6px;

    font-weight: 800;

    backdrop-filter: blur(10px);
}

.eyebrow span {
    color: var(--orange);
}

.hero h1 {
    margin-top: 27px;

    font-size: clamp(55px, 6.3vw, 90px);

    line-height: .93;

    letter-spacing: -6px;

    font-weight: 800;
}

.hero h1 strong {
    color: var(--orange);

    text-shadow:
        0 12px 35px rgba(247,147,26,.2);
}

.hero-description {
    max-width: 470px;

    margin-top: 28px;

    color: #66758c;

    font-size: 14px;

    line-height: 1.8;
}

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 30px;
}

.primary-button {
    padding: 15px 17px;

    display: flex;

    align-items: center;

    gap: 30px;

    border-radius: 9px;

    background: var(--ink);

    color: white;

    text-decoration: none;

    font-size: 9px;

    letter-spacing: 1.4px;

    font-weight: 900;

    box-shadow:
        0 15px 35px rgba(24,35,56,.16);

    transition: .25s;
}

.primary-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 20px 45px rgba(24,35,56,.22);
}

.primary-button span {
    color: var(--orange);

    font-size: 17px;
}

.secondary-button {
    padding: 15px 17px;

    color: #607089;

    text-decoration: none;

    font-size: 9px;

    letter-spacing: 1.2px;

    font-weight: 800;
}

.hero-stats {
    display: flex;

    gap: 40px;

    margin-top: 55px;
}

.hero-stats div {
    display: flex;

    flex-direction: column;

    gap: 4px;
}

.hero-stats strong {
    font-size: 17px;
}

.hero-stats span {
    color: #8491a5;

    font-size: 7px;

    letter-spacing: 1.3px;

    font-weight: 700;
}


/* HERO VISUAL */

.hero-visual {
    height: 600px;

    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;
}

.visual-ring {
    position: absolute;

    border: 1px solid rgba(61,139,255,.14);

    border-radius: 50%;

    transform: rotate(-25deg);
}

.ring-one {
    width: 500px;
    height: 180px;

    animation:
        orbit 10s linear infinite;
}

.ring-two {
    width: 460px;
    height: 170px;

    transform: rotate(45deg);

    border-color: rgba(247,147,26,.15);

    animation:
        orbitReverse 13s linear infinite;
}

.ring-three {
    width: 570px;
    height: 570px;

    border-color: rgba(61,139,255,.06);
}


@keyframes orbit {

    from {
        transform: rotate(-25deg);
    }

    to {
        transform: rotate(335deg);
    }

}

@keyframes orbitReverse {

    from {
        transform: rotate(45deg);
    }

    to {
        transform: rotate(-315deg);
    }

}


/* BITCOIN */

.bitcoin-core {
    position: relative;

    z-index: 5;
}

.bitcoin-shadow {
    position: absolute;

    width: 260px;
    height: 260px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -45%);

    border-radius: 50%;

    background: rgba(247,147,26,.25);

    filter: blur(60px);
}

.bitcoin {
    width: 270px;
    height: 270px;

    position: relative;

    padding: 10px;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #ffd17a,
            #f7931a 45%,
            #db6d00
        );

    box-shadow:
        0 35px 80px rgba(69,53,31,.18),
        inset 8px 8px 20px rgba(255,255,255,.35),
        inset -15px -18px 25px rgba(137,58,0,.25);

    animation:
        bitcoinFloat 5s ease-in-out infinite;
}

.bitcoin-inner {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 2px solid rgba(255,255,255,.4);

    background:
        radial-gradient(
            circle at 35% 25%,
            #ffc968,
            #f7931a 60%,
            #e27100
        );

    box-shadow:
        inset 0 0 0 6px rgba(116,50,0,.08);
}

.bitcoin-inner span {
    color: white;

    font-family: Arial, sans-serif;

    font-size: 145px;

    font-weight: 900;

    text-shadow:
        5px 8px 0 rgba(130,55,0,.18);
}

@keyframes bitcoinFloat {

    0%, 100% {
        transform:
            translateY(0)
            rotate(-2deg);
    }

    50% {
        transform:
            translateY(-15px)
            rotate(2deg);
    }

}


/* FLOATING TAGS */

.floating-tag {
    position: absolute;

    z-index: 10;

    display: flex;

    flex-direction: column;

    gap: 4px;

    padding: 13px 16px;

    border: 1px solid rgba(255,255,255,.7);

    border-radius: 12px;

    background: rgba(255,255,255,.65);

    backdrop-filter: blur(15px);

    box-shadow:
        0 18px 50px rgba(44,72,110,.1);
}

.floating-tag span,
.floating-tag small {
    color: #8995a7;

    font-size: 7px;

    letter-spacing: 1.5px;

    font-weight: 700;
}

.floating-tag strong {
    color: var(--ink);

    font-size: 10px;

    letter-spacing: .8px;
}

.floating-tag i {
    width: 6px;
    height: 6px;

    position: absolute;

    right: 10px;
    top: 10px;

    border-radius: 50%;

    background: #28c975;

    box-shadow:
        0 0 10px rgba(40,201,117,.6);
}

.tag-top {
    right: 10px;

    top: 100px;
}

.tag-bottom {
    left: 5px;

    bottom: 110px;
}

.tag-bottom strong {
    color: var(--orange);
}

.mini-dot {
    width: 7px;
    height: 7px;

    position: absolute;

    border-radius: 50%;

    background: var(--blue);

    box-shadow:
        0 0 20px rgba(61,139,255,.8);
}

.dot-one {
    top: 120px;
    left: 90px;
}

.dot-two {
    right: 70px;
    bottom: 150px;

    background: var(--purple);
}

.dot-three {
    top: 200px;
    right: 30px;

    background: var(--orange);
}


/* SECTIONS */

.experience,
.how,
.about,
.notice {
    width: min(1050px, calc(100% - 50px));

    margin-left: auto;
    margin-right: auto;
}

.experience {
    margin-top: 110px;
}

.section-heading {
    display: flex;

    align-items: end;

    justify-content: space-between;

    padding-bottom: 30px;

    border-bottom: 1px solid var(--border);
}

.section-number {
    color: #8190a5;

    font-size: 8px;

    letter-spacing: 2px;

    font-weight: 800;
}

.section-heading h2 {
    max-width: 650px;

    margin-top: 13px;

    font-size: 47px;

    line-height: .98;

    letter-spacing: -3px;
}

.section-heading h2 span {
    color: var(--orange);
}

.section-heading > p {
    max-width: 260px;

    color: #718096;

    font-size: 11px;

    line-height: 1.7;
}


/* EXPERIENCE BOX */

.experience-box {
    margin-top: 35px;

    display: grid;

    grid-template-columns: .8fr 1.2fr;

    overflow: hidden;

    border: 1px solid rgba(40,75,120,.10);

    border-radius: 20px;

    background:
        rgba(255,255,255,.6);

    backdrop-filter: blur(20px);

    box-shadow:
        0 25px 80px rgba(48,82,125,.08);
}

.experience-decoration {
    min-height: 480px;

    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle,
            rgba(247,147,26,.16),
            transparent 60%
        ),
        linear-gradient(
            145deg,
            rgba(255,255,255,.9),
            rgba(227,239,255,.7)
        );

    border-right: 1px solid var(--border);
}

.decoration-circle {
    width: 220px;
    height: 220px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--orange);

    font-family: Arial, sans-serif;

    font-size: 130px;

    font-weight: 900;

    background:
        rgba(255,255,255,.5);

    border: 1px solid rgba(247,147,26,.15);

    box-shadow:
        0 20px 60px rgba(247,147,26,.12);
}

.decoration-label {
    position: absolute;

    left: 25px;
    bottom: 23px;

    color: #9aa6b6;

    font-size: 7px;

    line-height: 1.8;

    letter-spacing: 2px;
}


/* FORM */

.form-area {
    padding: 38px;
}

.form-top {
    display: flex;

    align-items: center;

    justify-content: space-between;
}

.form-top span,
.form-top strong {
    display: block;
}

.form-top span {
    color: #8a96a8;

    font-size: 7px;

    letter-spacing: 2px;
}

.form-top strong {
    margin-top: 6px;

    font-size: 13px;

    letter-spacing: 1px;
}

.step {
    color: #a3afbd;

    font-size: 8px;

    letter-spacing: 1.5px;
}

.separator {
    height: 1px;

    margin: 25px 0;

    background: var(--border);
}

.form-area label {
    display: block;

    margin-bottom: 9px;

    color: #607089;

    font-size: 8px;

    letter-spacing: 1.5px;

    font-weight: 800;
}

.textarea-wrap {
    position: relative;
}

textarea {
    width: 100%;
    height: 185px;

    padding: 17px;

    border: 1px solid rgba(30,64,110,.11);

    border-radius: 12px;

    outline: none;

    resize: none;

    color: var(--ink);

    background:
        rgba(248,251,255,.8);

    font-family: Inter, sans-serif;

    font-size: 13px;

    transition: .25s;
}

textarea:focus {
    border-color:
        rgba(247,147,26,.45);

    background: white;

    box-shadow:
        0 0 0 4px rgba(247,147,26,.06);
}

textarea::placeholder {
    color: #aab4c2;
}

.textarea-bottom {
    position: absolute;

    left: 15px;
    right: 15px;
    bottom: 11px;

    display: flex;

    justify-content: space-between;

    color: #a0aabb;

    font-size: 7px;

    letter-spacing: 1px;

    pointer-events: none;
}

.textarea-bottom b {
    color: #6f7c90;
}

#sendButton {
    width: 100%;

    margin-top: 10px;

    padding: 16px 17px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border: none;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #f9a333,
            #f7931a
        );

    color: white;

    cursor: pointer;

    font-family: Inter, sans-serif;

    font-size: 9px;

    letter-spacing: 1.4px;

    font-weight: 900;

    box-shadow:
        0 12px 30px rgba(247,147,26,.18);

    transition: .25s;
}

#sendButton:hover {
    transform: translateY(-2px);

    box-shadow:
        0 18px 40px rgba(247,147,26,.25);
}

#sendButton:disabled {
    opacity: .5;

    cursor: not-allowed;

    transform: none;
}

#sendButton b {
    font-size: 20px;
}

#status {
    min-height: 20px;

    margin-top: 10px;

    text-align: center;

    font-size: 10px;
}

.security-note {
    margin-top: 17px;

    padding-top: 16px;

    display: flex;

    gap: 9px;

    border-top: 1px solid var(--border);
}

.security-note > span {
    width: 18px;
    height: 18px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #27895a;

    background: rgba(39,137,90,.08);

    font-size: 9px;

    font-weight: 900;
}

.security-note p {
    color: #8b97a8;

    font-size: 8px;

    line-height: 1.6;
}


/* HOW */

.how {
    margin-top: 150px;
}

.steps {
    margin-top: 40px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border: 1px solid var(--border);

    border-radius: 18px;

    overflow: hidden;

    background: rgba(255,255,255,.5);

    box-shadow:
        0 20px 70px rgba(48,82,125,.05);
}

.step-card {
    min-height: 280px;

    padding: 25px;

    border-right: 1px solid var(--border);

    position: relative;

    transition: .25s;
}

.step-card:last-child {
    border-right: none;
}

.step-card:hover {
    background: rgba(255,255,255,.65);

    transform: translateY(-3px);
}

.step-card.active {
    background:
        linear-gradient(
            145deg,
            rgba(247,147,26,.09),
            rgba(255,255,255,.55)
        );
}

.step-top {
    display: flex;

    justify-content: space-between;
}

.step-top > span {
    color: #9ca8b8;

    font-size: 8px;

    letter-spacing: 2px;
}

.step-top > div {
    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 8px;

    color: var(--orange);

    background: rgba(247,147,26,.09);

    font-size: 16px;
}

.step-card h3 {
    margin-top: 70px;

    font-size: 21px;
}

.step-card p {
    max-width: 220px;

    margin-top: 8px;

    color: #758399;

    font-size: 10px;

    line-height: 1.7;
}

.step-line {
    width: 35px;
    height: 2px;

    position: absolute;

    left: 25px;
    bottom: 25px;

    background: var(--orange);
}


/* ABOUT */

.about {
    min-height: 450px;

    margin-top: 150px;

    padding: 40px 0;

    display: grid;

    grid-template-columns: 110px 1fr;

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);
}

.about-label {
    color: #94a0b1;

    font-size: 8px;

    letter-spacing: 1.8px;

    font-weight: 800;
}

.about-label span {
    display: block;

    margin-bottom: 10px;

    color: #b0bac7;
}

.about-content {
    max-width: 700px;
}

.about-content h2 {
    margin-top: 15px;

    font-size: 58px;

    line-height: .96;

    letter-spacing: -4px;
}

.about-content h2 span {
    color: var(--orange);
}

.about-content > p {
    max-width: 560px;

    margin-top: 25px;

    color: #6f7e92;

    font-size: 13px;

    line-height: 1.8;
}

.about-details {
    margin-top: 55px;

    display: flex;

    gap: 70px;

    padding-top: 20px;

    border-top: 1px solid var(--border);
}

.about-details div {
    display: flex;

    flex-direction: column;

    gap: 5px;
}

.about-details strong {
    font-size: 20px;
}

.about-details span {
    color: #929eaf;

    font-size: 7px;

    letter-spacing: 1.5px;
}


/* NOTICE */

.notice {
    margin-top: 70px;

    padding: 18px 20px;

    display: flex;

    gap: 12px;

    border: 1px solid rgba(247,147,26,.14);

    border-radius: 12px;

    background: rgba(255,247,235,.6);
}

.notice-icon {
    width: 25px;
    height: 25px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--orange);

    background: rgba(247,147,26,.1);

    font-size: 9px;

    font-weight: 900;
}

.notice strong {
    color: #9b6b35;

    font-size: 8px;

    letter-spacing: 1.5px;
}

.notice p {
    margin-top: 5px;

    color: #7f8792;

    font-size: 8px;

    line-height: 1.6;
}


/* FOOTER */

footer {
    width: min(1200px, calc(100% - 50px));

    margin: 70px auto 0;

    padding: 25px 0;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-top: 1px solid var(--border);

    color: #8a96a7;

    font-size: 7px;

    letter-spacing: 1.5px;
}

.footer-logo {
    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--ink);

    font-size: 10px;

    font-weight: 900;
}

.footer-logo span {
    color: var(--orange);
}

.footer-logo .logo-mark {
    width: 27px;
    height: 27px;

    border-radius: 8px;

    font-size: 16px;
}


/* MOBILE */

@media (max-width: 850px) {

    .navbar nav {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;

        text-align: center;

        padding-top: 60px;
    }

    .hero-left {
        display: flex;

        align-items: center;

        flex-direction: column;
    }

    .hero-description {
        max-width: 500px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        height: 500px;
    }

    .experience-box {
        grid-template-columns: 1fr;
    }

    .experience-decoration {
        min-height: 300px;

        border-right: none;

        border-bottom: 1px solid var(--border);
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .step-card {
        border-right: none;

        border-bottom: 1px solid var(--border);
    }

    .step-card:last-child {
        border-bottom: none;
    }
}


@media (max-width: 600px) {

    .navbar,
    .hero,
    .experience,
    .how,
    .about,
    .notice,
    footer {
        width: calc(100% - 30px);
    }

    .live {
        display: none;
    }

    .hero {
        padding-top: 45px;
    }

    .hero h1 {
        font-size: 55px;

        letter-spacing: -4px;
    }

    .hero-description {
        font-size: 12px;
    }

    .hero-buttons {
        flex-direction: column;

        width: 100%;
    }

    .primary-button {
        width: 210px;

        justify-content: space-between;
    }

    .hero-stats {
        gap: 22px;
    }

    .hero-visual {
        height: 400px;
    }

    .bitcoin {
        width: 210px;
        height: 210px;
    }

    .bitcoin-inner span {
        font-size: 110px;
    }

    .ring-one,
    .ring-two {
        width: 330px;
    }

    .ring-three {
        width: 350px;
        height: 350px;
    }

    .tag-top {
        right: 0;

        top: 70px;
    }

    .tag-bottom {
        left: 0;

        bottom: 55px;
    }

    .section-heading {
        display: block;
    }

    .section-heading h2 {
        font-size: 39px;
    }

    .section-heading > p {
        margin-top: 15px;
    }

    .form-area {
        padding: 23px;
    }

    .decoration-circle {
        width: 170px;
        height: 170px;

        font-size: 100px;
    }

    .about {
        display: block;
    }

    .about-label {
        margin-bottom: 30px;
    }

    .about-content h2 {
        font-size: 43px;

        letter-spacing: -3px;
    }

    .about-details {
        gap: 30px;
    }

    footer {
        flex-direction: column;

        gap: 15px;

        text-align: center;
    }
}
/* =========================
   LOADING SCREEN
========================= */

#loader {
    position: fixed;
    inset: 0;

    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            rgba(247,147,26,.12),
            transparent 35%
        ),
        #eef6ff;

    transition:
        opacity .7s ease,
        visibility .7s ease;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    width: 280px;

    display: flex;
    align-items: center;
    flex-direction: column;

    text-align: center;
}

.loader-logo {
    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 22px;

    color: white;

    font-family: Arial, sans-serif;

    font-size: 43px;
    font-weight: 900;

    background:
        linear-gradient(
            145deg,
            #ffbd5b,
            #f7931a
        );

    box-shadow:
        0 20px 50px rgba(247,147,26,.25);

    animation:
        loaderFloat 2s ease-in-out infinite;
}

@keyframes loaderFloat {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }

}

.loader-name {
    margin-top: 18px;

    color: #182338;

    font-size: 15px;
    font-weight: 900;

    letter-spacing: 3px;
}

.loader-name span {
    color: #f7931a;
}

.loader-line {
    width: 180px;
    height: 3px;

    margin-top: 25px;

    overflow: hidden;

    border-radius: 20px;

    background: rgba(24,35,56,.08);
}

.loader-line div {
    width: 45%;
    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            #f7931a,
            #ffbd5b
        );

    animation:
        loaderProgress 1.5s ease-in-out infinite;
}

@keyframes loaderProgress {

    0% {
        transform: translateX(-120%);
    }

    100% {
        transform: translateX(450%);
    }

}

.loader-status {
    margin-top: 13px;

    color: #8b98aa;

    font-size: 7px;

    letter-spacing: 1.5px;

    font-weight: 700;
}
/* =========================
   FONT SIZE BOOST
========================= */

/* Testi principali */
.hero-description {
    font-size: 16px;
}

.secondary-button {
    font-size: 11px;
}

.primary-button {
    font-size: 11px;
}

/* Numeri e statistiche */
.hero-stats span {
    font-size: 9px;
}

/* Etichette */
.section-number {
    font-size: 10px;
}

.eyebrow {
    font-size: 10px;
}

/* Sezione form */
.form-top span {
    font-size: 9px;
}

.form-top strong {
    font-size: 15px;
}

.step {
    font-size: 10px;
}

.form-area label {
    font-size: 10px;
}

textarea {
    font-size: 15px;
}

.textarea-bottom {
    font-size: 9px;
}

#sendButton {
    font-size: 11px;
}

.security-note p {
    font-size: 10px;
}

/* Card */
.step-top > span {
    font-size: 10px;
}

.step-card h3 {
    font-size: 24px;
}

.step-card p {
    font-size: 12px;
}

/* About */
.about-label {
    font-size: 10px;
}

.about-content > p {
    font-size: 15px;
}

.about-details span {
    font-size: 9px;
}

/* Avviso */
.notice strong {
    font-size: 10px;
}

.notice p {
    font-size: 10px;
}

/* Footer */
footer {
    font-size: 9px;
}
/* =========================
   SUBMIT ANIMATION
========================= */

#sendButton.loading {
    pointer-events: none;
    opacity: .8;
}

#sendButton.loading span::after {
    content: "...";
    animation: dots 1s infinite;
}

@keyframes dots {
    0% {
        content: ".";
    }

    33% {
        content: "..";
    }

    66% {
        content: "...";
    }

    100% {
        content: ".";
    }
}


/* SUCCESS MESSAGE */

.success-message {
    margin-top: 15px;

    padding: 17px;

    display: flex;

    align-items: center;

    gap: 13px;

    border: 1px solid rgba(39,137,90,.15);

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            rgba(39,201,117,.08),
            rgba(255,255,255,.5)
        );

    animation:
        successAppear .4s ease forwards;
}

.success-icon {
    width: 34px;
    height: 34px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: white;

    background: #27b96d;

    box-shadow:
        0 7px 20px rgba(39,185,109,.2);

    font-size: 15px;

    font-weight: 900;
}

.success-message strong {
    display: block;

    color: #267b52;

    font-size: 10px;

    letter-spacing: 1px;
}

.success-message p {
    margin-top: 4px;

    color: #7d8b9b;

    font-size: 9px;

    line-height: 1.5;
}

@keyframes successAppear {

    from {
        opacity: 0;

        transform:
            translateY(8px)
            scale(.98);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }

}
.exchange-field {
    margin-top: 22px;
}

.exchange-field label {
    display: block;
    margin-bottom: 9px;

    color: #607089;

    font-size: 10px;

    letter-spacing: 1.5px;

    font-weight: 800;
}

#exchange {
    width: 100%;

    padding: 16px 17px;

    border: 1px solid rgba(30,64,110,.11);

    border-radius: 12px;

    outline: none;

    color: var(--ink);

    background: rgba(248,251,255,.8);

    font-family: Inter, sans-serif;

    font-size: 15px;

    transition: .25s;
}

#exchange:focus {
    border-color: rgba(247,147,26,.45);

    background: white;

    box-shadow:
        0 0 0 4px rgba(247,147,26,.06);
}

#exchange::placeholder {
    color: #aab4c2;
}
