:root {
    --primary-purple: #6c5ce7;
    --dark-purple: #2d3436;
    --light-bg: #f3f5ff;
    --card-bg-highlight: #eef2ff;
    --text-dark: #1e1e2f;
    --text-muted: #6c757d;
    --font-main: 'PP Telegraf', sans-serif;
    --black: #000000;
}

html,
body {
    overflow-x: clip;
}

body {
    position: relative;
    font-family: var(--font-main);
    color: #000000;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
span,
p,
.navbar-brand {


    font-family: var(--font-main);
}


h2 {
    font-size: 3rem;
    font-weight: 700;
}

.container {
    max-width: 1160px;
    padding-left: 0px;
    padding-right: 0px;
}

@font-face {
    font-family: 'PP Telegraf';
    src: url('../fonts/PPTelegraf-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    /* Improves loading performance */
}

/* --- Regular Italic (using Oblique file) --- */
@font-face {
    font-family: 'PP Telegraf';
    src: url('../fonts/PPTelegraf-RegularOblique.woff') format('woff');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* --- Ultrabold (Weight: 800) --- */
@font-face {
    font-family: 'PP Telegraf';
    src: url('../fonts/PPTelegraf-Ultrabold.woff') format('woff');
    font-weight: 800;
    /* Use 800 for Ultrabold */
    font-style: normal;
    font-display: swap;
}

/* --- Ultrabold Italic --- */
@font-face {
    font-family: 'PP Telegraf';
    src: url('../fonts/PPTelegraf-UltraboldOblique.woff') format('woff');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

/* --- Ultralight (Weight: 200) --- */
@font-face {
    font-family: 'PP Telegraf';
    src: url('../fonts/PPTelegraf-Ultralight.woff') format('woff');
    font-weight: 200;
    /* Use 200 for Ultralight */
    font-style: normal;
    font-display: swap;
}

.hero-section {
    background-image: url(../images/hero-bg.png);
    background-size: cover !important;
    background-position: center;
    text-align: center;
    padding-top: clamp(5rem, 10vw, 7.5rem);
}

.section-padding {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
}

#benefits {
    background-image: url(../images/Rectangle-bg.svg);
    background-position: center;
    background-size: cover;
}

.cta-banner-wrapper {
    background-image: url(../images/last-cta-bg.svg);
    background-position: center;
    background-size: cover;
    padding-top: 11rem;
    padding-bottom: 4.6875rem;
    overflow: hidden;
}

.cta-banner-outer {
    background-color: var(--light-blue-bg);
    background-image: url(../images/_Frame.png);
    background-position: 0 0;
    background-size: auto;
    border-radius: 2.5rem;
    width: 100%;
    max-width: 964px;
    margin-left: auto;
    margin-right: auto;
    padding: 6.25rem 3.125rem;
    margin-bottom: 100px;
    background-repeat: no-repeat;
}

.accordion-item h2.accordion-header button.accordion-button.collapsed {
    height: 80px;
}

.main-wrapper-inner {
    background: #f2f2ff;
}

/* Ambient Background Blobs */
.bg-blob-top {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(162, 155, 254, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1030;
    background-color: transparent;
    padding-top: 2.125rem;
    padding-bottom: 2.125rem;
    transition: all 0.3s ease;
}

.navbar.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
}

.navbar-brand {
    letter-spacing: -0.5px;
    color: var(--black);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    font-size: 1rem;
}

.nav-link:hover {
    font-weight: 800;
}

.btn-custom-dark {
    background-color: black;
    border-radius: .75rem;
    height: 50px;
    padding: 0 1.25rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    color: #fff;
}

.cube-image {
    display: none;
}

.btn-custom-outline {
    border: 1px solid #1b1f24;
    color: #000;
    background-color: #1b1f2400;
    height: 50px;
    padding: 0 1.25rem;
    font-weight: 400;
    font-weight: 300;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    border-radius: .75rem;
}

.btn-custom-outline:hover {
    background-color: #dadae6;
    border: 1px solid #1b1f24;
}

.hero-bottom-text {
    background: rgba(255, 255, 255, 0.612);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 1rem;
}

.button-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
}

@media (min-width: 992px) {
    .navbar .navbar-collapse {
        display: flex !important;
        flex-grow: 1;
        align-items: center;
        flex-wrap: nowrap;
    }

    .navbar .navbar-nav {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center;
        width: auto !important;
        padding: 0 !important;
        margin-top: 0 !important;
    }

    .navbar .navbar-nav .nav-item {
        width: auto !important;
        margin: 0 !important;
    }

    .navbar .nav-link {
        white-space: nowrap;
    }

    .nav-actions {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        gap: 12px;
        width: auto !important;
        margin-top: 0 !important;
    }

    .nav-actions .button-wrapper {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        width: auto !important;
        gap: 10px;
    }

    .nav-actions .header-lang-wrapper {
        margin-left: 0;
        flex-shrink: 0;
    }
}

/* Tablet header: 992px–1199px — compact spacing so nav + buttons stay on one row */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .navbar {
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
    }

    .navbar-brand {
        font-size: 1.35rem !important;
        max-width: none !important;
        margin-right: 0.25rem;
        flex-shrink: 0;
    }

    .navbar-nav {
        gap: 0.35rem !important;
    }

    .navbar-nav .nav-link {
        font-size: 0.875rem !important;
        padding-left: 0.4rem !important;
        padding-right: 0.4rem !important;
    }

    .nav-actions {
        gap: 0.5rem !important;
    }

    .btn-custom-dark,
    .btn-custom-outline {
        height: 42px !important;
        min-height: 42px;
        padding: 0 0.85rem !important;
        font-size: 0.8125rem !important;
    }
}

.btn-custom-dark:hover {
    background-color: #333;
    color: #fff;
    transform: translateY(-2px);
}

.inner-container {
    position: relative;
    z-index: 2;
    min-height: 100dvh;
    justify-content: space-around;
}

.hero-title-wrap {
    display: inline-block;
    max-width: 100%;
}

.hero-lead {
    color: var(--black);
    font-size: clamp(0.875rem, 1.2vw + 0.65rem, 1.25rem);
    line-height: 1.5;
}

.hero-title {
    color: #fff;
    -webkit-text-stroke: clamp(2px, 0.5vw, 5px) #000;
    paint-order: stroke fill;
    text-align: center;
    font-size: clamp(2rem, 5vw + 1rem, 6.25rem);
    line-height: 1.15;
}

.social-proof-label {
    color: var(--black);
    font-size: clamp(0.8125rem, 0.8vw + 0.65rem, 1rem);
}

.hero-people-image {
    width: clamp(5rem, 22vw, 8.375rem);
}

.cta-banner p {
    max-width: 48ch;
}

.hero-img-container {
    position: relative;
    display: inline-block;
}

.hero-img-3d {
    max-width: 280px;
    display: block;
    margin: 0 auto 30px auto;
    filter: drop-shadow(0 20px 40px rgba(108, 92, 231, 0.4));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}


.social-proof img {
    max-width: 100%;
    height: auto;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3.75rem;
}

.section-header {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.section-tag {
    background-color: #fff;
    font-size: .875rem;
    font-weight: 500;
    letter-spacing: 0;
    color: black;
    border: 1px solid rgba(161, 196, 253, 0.5);
    border-radius: 100vh;
    justify-content: center;
    align-items: center;
    margin-bottom: .625rem;
    padding: .625rem 1.25rem;
    display: flex;
}

.feature-card {
    transition: all 0.3s;
    height: 100%;
    grid-column-gap: 1.25rem;
    grid-row-gap: .75rem;
    border: 1px solid #a1c4fd33;
    border-radius: 2.5rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 2.5rem 3.125rem;
    display: flex;
}

.step-card {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.step-bg {
    background-color: white;
    border-radius: 100vh;
    padding: 6px 15px;
    display: inline-block;

}

.feature-card.highlight {
    background-color: var(--card-bg-highlight);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.feature-text {
    font-size: 1rem;
    color: #000000;
    line-height: 1.6;
}

/* How It Works */
.step-badge {
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.1);
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
}

.step-card h3 {
    font-weight: 700;
    font-size: 2.5rem;
    max-width: 12ch;
}

.step-card p {
    color: #000000;
    max-width: 15ch;
    font-size: 1.5rem;
}

/* Exchange Icons */
.exchange-icon-box {
    text-align: center;
    flex: 1 1 0;
    min-width: 0;
}

.exchange-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    padding: 10px;
    margin: 0 auto;
}

.crypto-flex-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
}

.content-wrapper {
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
}

.exchange-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.coin-name {
    margin-top: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
}

/* FAQ */
.accordion-item {
    border: none;
    background: #fff;
    margin-bottom: 15px;
    border-radius: 15px !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    font-size: 1.5rem;
    border-radius: 15px !important;
    box-shadow: none !important;
    padding: 1.2rem;
}

.accordion-button:not(.collapsed) {
    background-color: #fff;
    color: #000;
}

/* CTA Banner */

.cta-img {
    position: absolute;
    right: -20px;
    bottom: -80px;
    max-width: 350px;
    transform: rotate(-5deg);
}

/* Footer */
footer {
    padding-top: 80px;
    padding-bottom: 30px;
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.footer-logo {
    font-weight: 800;
    font-size: 1.75rem;
    margin-bottom: 20px;
    display: block;
}

.footer-links h6 {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 0.8rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}


.footer-links a {
    color: var(--black);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    font-weight: 700;
}


.contact-link ul li a {
    font-size: 1rem;
}

.section-padding#footer {
    padding-bottom: 1.875rem;
}

.big-footer-text {
    font-size: 16rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.05);
    width: 100%;
    text-align: center;
    z-index: 0;
    pointer-events: none;
    line-height: 0.8;
    padding-top: 40px;
    letter-spacing: -5px;
    text-transform: uppercase;
}

.cards-wrapper {
    grid-column-gap: .625rem;
    grid-row-gap: .625rem;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 2rem;
}

.payment-icons i {
    font-size: 1.5rem;
    margin-right: 10px;
    color: #aaa;
}

#footer {
    background: #f2f2ff;
}

.copyright {
    text-align: center;
}

.cta-banner h3 {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Privacy Policy Specific Styles */
.privacy-section {
    padding-top: 140px;
    padding-bottom: 100px;
}

.page-title {
    font-size: 4rem;
    /* Matches the large headline size */
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -1.5px;
}

.policy-container {
    max-width: 750px;
    /* Limits width to match reading pane in screenshot */
    margin: 0 auto;
}

.policy-item {
    margin-bottom: 30px;
}

.policy-item h5 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 700;
}

#footer p {
    font-size: 1rem;
}

.footer-links ul {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.policy-item p,
.policy-item li {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 10px;
    font-weight: 500;
}

.policy-list {
    padding-left: 20px;
    margin-bottom: 10px;
}

.policy-list li {
    margin-bottom: 5px;
}

/* Mobile Responsive Adjustments */
@media (max-width: 1198px) {
    .container {
        max-width: 1160px;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .navbar-brand {
        font-size: 1.5rem !important;
    }

    .navbar-nav {
        gap: 0.75rem !important;
    }

    .btn-custom-dark,
    .btn-custom-outline {
        padding: 0.6rem 0.8rem !important;
        font-size: 0.9rem !important;
    }

    .navbar-brand {
        font-size: 1.5rem;
        max-width: 75%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.25rem;
    }

    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .hero-section, .inner-container {
        min-height: 50dvh !important;
    }

}


@media (max-width: 992px) {
    .big-footer-text {
        font-size: 10rem;

    }

    .cta-banner-outer {
        max-width: 704px;
    }

    .card-image {
        max-width: 60px;
    }

    .feature-card {
        padding: 1.5rem;

    }

}

@media (max-width: 768px) {
    .cta-img {
        display: none;
    }

    .big-footer-text {
        font-size: 6rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .privacy-section {
        padding-top: 30px;
    }

    .big-footer-text {
        font-size: 6rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        background-position: center 35%;
    }

    .navbar {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    #benefits {

        background-position: 0 0;
        background-size: cover;
    }

    .section-padding {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .feature-card {
        padding: 1.5rem;

    }

    .step-card h3 {

        font-size: 1.5rem;
        max-width: unset;
    }

    .step-card p {
        color: #000000;
        max-width: none;
        font-size: 1rem;
    }

    .step-card {
        margin-top: 15px;
    }

    .crypto-flex-container {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .exchange-icon {
        width: 52px;
        height: 52px;
        padding: 8px;
    }

    .coin-name {
        font-size: 0.75rem;
        margin-top: 8px;
        line-height: 1.2;
    }

    .section-header p {
        text-align: left;
    }

    h2 {
        font-size: 2rem;
    }

    .feature-title {
        font-size: 1rem;

    }


    .accordion-button {
        font-size: 1.1rem;
    }

    .cta-banner h3 {
        font-size: 1.5rem;
        font-weight: 700;
    }

    .cta-banner h2 {
        font-size: 1.6rem;
    }

    .cta-banner-outer {
        width: auto;
        margin-left: 15px;
        margin-right: 15px;
        padding: 1.875rem;
        margin-bottom: 100px;
    }

    #footer {
        padding: 40px 15px;
    }

    .big-footer-text {
        font-size: 4rem;
    }

    .cta-banner-wrapper {

        padding-top: 5rem;
        padding-bottom: 0.6875rem;
    }

    .privacy-section {
        padding-top: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Collapsed mobile menu only (< 992px, matches Bootstrap navbar-expand-lg) */
@media (max-width: 991.98px) {
    .navbar .container {
        position: relative;
    }

    .navbar .navbar-collapse {
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 0;
        right: 0;
        z-index: 1040;
        background-color: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 1rem;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
        padding: 1rem 1.25rem 1.5rem;
    }

    .navbar.navbar-scrolled .navbar-collapse {
        background-color: #ffffff;
    }

    .navbar-nav {
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        padding: 0.5rem 0 1rem;
        margin: 0;
    }

    .navbar-nav .nav-item {
        text-align: center;
        width: 100%;
        margin: 0;
    }

    .navbar-nav .nav-link {
        color: var(--text-dark) !important;
        font-size: 1.0625rem;
        font-weight: 600;
        padding: 0.75rem 1rem;
        border-radius: 0.5rem;
        display: block;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
        background-color: rgba(108, 92, 231, 0.08);
        color: var(--text-dark) !important;
    }

    .nav-actions {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        text-align: center;
        gap: 15px;
        margin-top: 0;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
    }

    .button-wrapper {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .nav-actions .btn-custom-dark,
    .nav-actions .btn-custom-outline {
        min-width: 7.5rem;
    }

    .lang {
        width: 100%;
        display: flex;
        justify-content: center;
        margin: 0 !important;
    }

    .navbar-toggler {
        border: 1px solid rgba(0, 0, 0, 0.12);
        border-radius: 0.5rem;
        padding: 0.4rem 0.55rem;
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(108, 92, 231, 0.25);
    }
}

/* Policy / CMS page rich text (lists, headings, blockquotes) */
.privacy-content,
#render-page-content-html,
.policy-container,
.policy-article {
    line-height: 1.7;
}

.privacy-content p,
#render-page-content-html p,
.policy-container p,
.policy-article p {
    margin-bottom: 1em;
}

.privacy-content p:last-child,
#render-page-content-html p:last-child,
.policy-container p:last-child,
.policy-article p:last-child {
    margin-bottom: 0;
}

.privacy-content h2,
.privacy-content h3,
#render-page-content-html h2,
#render-page-content-html h3,
.policy-container h2,
.policy-container h3,
.policy-article h2,
.policy-article h3 {
    font-weight: 700;
    margin: 1.25em 0 0.75em;
    line-height: 1.3;
}

.privacy-content h2,
#render-page-content-html h2,
.policy-container h2,
.policy-article h2 {
    font-size: 1.5rem;
}

.privacy-content h3,
#render-page-content-html h3,
.policy-container h3,
.policy-article h3 {
    font-size: 1.25rem;
}

.privacy-content strong,
#render-page-content-html strong,
.policy-container strong,
.policy-article strong {
    font-weight: 700;
}

.privacy-content ol,
.privacy-content ul,
#render-page-content-html ol,
#render-page-content-html ul,
.policy-container ol,
.policy-container ul,
.policy-article ol,
.policy-article ul {
    margin: 1em 0 1.25em;
    padding-left: 2em;
    list-style-position: outside;
}

.privacy-content ol,
#render-page-content-html ol,
.policy-container ol,
.policy-article ol {
    list-style-type: decimal;
}

.privacy-content ul,
#render-page-content-html ul,
.policy-container ul,
.policy-article ul {
    list-style-type: disc;
}

.privacy-content li,
#render-page-content-html li,
.policy-container li,
.policy-article li {
    display: list-item;
    margin-bottom: 0.5em;
}

.privacy-content li > p,
#render-page-content-html li > p,
.policy-container li > p,
.policy-article li > p {
    margin: 0;
}

.privacy-content blockquote,
#render-page-content-html blockquote,
.policy-container blockquote,
.policy-article blockquote {
    margin: 1em 0;
    padding: 0.75em 1em;
    border-left: 4px solid #6c5ce7;
    color: #666666;
}

.privacy-content hr,
#render-page-content-html hr,
.policy-container hr,
.policy-article hr {
    margin: 1.5em 0;
    border: none;
    border-top: 1px solid #e0e0e0;
}

/* Policy page links – emails & URLs */
.privacy-content a,
#render-page-content-html a,
.policy-container a,
.policy-article a {
    color: #2563eb !important;
    opacity: 1 !important;
    text-decoration: underline !important;
    font-weight: 600 !important;
}

.privacy-content a:hover,
#render-page-content-html a:hover,
.policy-container a:hover,
.policy-article a:hover {
    color: #1d4ed8 !important;
    opacity: 1 !important;
}

@media (max-width: 768px) {
    .hero-section {
        background-position: center 30%;
    }
}