:root {
    --bg: #030403;
    --panel: #0b0c0b;
    --panel-2: #11120f;
    --gold: #f4bd35;
    --gold-deep: #a97612;
    --gold-soft: #ffd76e;
    --text: #f6f6f3;
    --muted: #a5a69f;
    --line: rgba(245, 194, 64, .19);
    --border: rgba(255, 255, 255, .13);
    --green: #45c43c;
    --red: #ef3737;
    --mx: 50vw;
    --my: 40vh;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at 50% 13%, rgba(126, 86, 10, .09), transparent 29%),
        linear-gradient(#020302, #060706 64%, #020302);
    font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.55;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .012) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .012) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, #000, transparent 68%);
}

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

img {
    display: block;
    max-width: 100%;
}

button,
input {
    font: inherit;
}

svg {
    display: block;
}

.svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.container {
    position: relative;
    z-index: 2;
    width: min(1150px, calc(100% - 46px));
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

#particleCanvas {
    position: fixed;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: .86;
}

.cursor-glow {
    position: fixed;
    z-index: 1;
    left: var(--mx);
    top: var(--my);
    width: 430px;
    height: 430px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(231, 168, 25, .075), rgba(231, 168, 25, .018) 35%, transparent 70%);
    transition: opacity .2s ease;
}

.site-header {
    position: absolute;
    inset: 0 0 auto;
    height: 88px;
    z-index: 20;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .86), transparent);
}

.nav-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: .35px;
    white-space: nowrap;
}

.brand-coin {
    width: 47px;
    height: 47px;
    border-radius: 50%;
    overflow: hidden;
    filter: drop-shadow(0 0 9px rgba(243, 183, 47, .28));
}

.brand-coin img {
    width: 100%;
    height: 100%;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(15px, 1.55vw, 27px);
    margin-left: auto;
}

.main-nav a {
    position: relative;
    color: #eee;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1px;
    padding: 34px 0 29px;
    transition: color .2s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 23px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transform: translateX(-50%);
    transition: width .2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 11px;
    margin-left: 18px;
}

.menu-toggle {
    display: none;
    margin-left: auto;
    width: 43px;
    height: 43px;
    padding: 9px;
    color: var(--gold);
    border: 1px solid var(--line);
    background: #0b0b09;
    border-radius: 5px;
}

.menu-toggle svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.btn {
    min-width: 152px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 1px solid var(--gold-deep);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .2px;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-gold {
    color: #100c02;
    background: linear-gradient(120deg, #e6a920, #ffe184 48%, #bd8011);
    box-shadow: 0 8px 25px rgba(212, 151, 21, .13), inset 0 1px rgba(255, 255, 255, .45);
}

.btn-gold:hover {
    box-shadow: 0 10px 31px rgba(229, 166, 31, .28), inset 0 1px rgba(255, 255, 255, .45);
}

.btn-outline {
    color: #eee;
    border-color: rgba(217, 160, 32, .55);
    background: rgba(10, 10, 8, .55);
}

.btn-outline:hover {
    background: rgba(224, 163, 30, .09);
}

.btn-small {
    min-width: 82px;
    height: 38px;
    padding-inline: 14px;
    font-size: 12px;
}

.hero {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background:
        linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .96) 29%, rgba(0, 0, 0, .48) 64%, rgba(0, 0, 0, .3) 100%),
        radial-gradient(circle at 72% 37%, rgba(172, 112, 8, .2), transparent 27%);
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 180px;
    background: linear-gradient(to top, #030403, transparent);
    z-index: 1;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(215, 154, 25, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(215, 154, 25, .045) 1px, transparent 1px);
    background-size: 67px 67px;
    transform: perspective(600px) rotateX(55deg) translateY(39%);
    transform-origin: bottom;
    opacity: .55;
}

.hero-world {
    position: absolute;
    width: 480px;
    height: 250px;
    left: 40%;
    top: 120px;
    opacity: .32;
    background: radial-gradient(circle, var(--gold-deep) 1.6px, transparent 2px);
    background-size: 11px 11px;
    mask-image: radial-gradient(ellipse, black 15%, transparent 72%);
    transform: translate(calc((var(--mx) - 50vw) * -.012), calc((var(--my) - 40vh) * -.009));
}

.hero-lines {
    position: absolute;
    right: -2%;
    top: 98px;
    width: 35%;
    height: 360px;
    opacity: .25;
    background: repeating-linear-gradient(90deg, transparent 0 34px, rgba(240, 180, 40, .34) 35px 36px, transparent 37px 58px);
    mask-image: linear-gradient(to bottom, transparent, black 25%, black 70%, transparent);
}

.hero-layout {
    min-height: 650px;
    display: grid;
    grid-template-columns: 46% 54%;
    align-items: center;
    padding-top: 88px;
}

.hero-copy {
    position: relative;
    z-index: 5;
    padding: 44px 0 15px 16px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.eyebrow span {
    width: 27px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    margin: 0;
    font-size: clamp(46px, 4.7vw, 68px);
    line-height: .99;
    letter-spacing: -1.8px;
    font-weight: 900;
}

.hero h1 em {
    color: var(--gold);
    font-style: normal;
    text-shadow: 0 0 30px rgba(228, 165, 25, .12);
}

.hero-lead {
    margin: 24px 0 26px;
    color: #e6e6e2;
    font-size: 18px;
    line-height: 1.48;
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 460px;
    margin: 0 0 31px;
}

.hero-benefits>div {
    min-height: 79px;
    padding: 0 15px;
    border-right: 1px solid rgba(255, 255, 255, .09);
}

.hero-benefits>div:first-child {
    padding-left: 0;
}

.hero-benefits>div:last-child {
    border: 0;
}

.hero-benefits svg {
    width: 29px;
    height: 29px;
    margin-bottom: 9px;
    color: var(--gold);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    filter: drop-shadow(0 0 8px rgba(239, 178, 38, .45));
}

.hero-benefits strong {
    display: block;
    font-size: 10px;
    line-height: 1.35;
}

.hero-actions {
    display: flex;
    gap: 12px;
}

.hero-art {
    position: relative;
    align-self: stretch;
    z-index: 4;
    min-width: 0;
    transform: translate(calc((var(--mx) - 50vw) * .008), calc((var(--my) - 40vh) * .005));
    transition: transform .12s linear;
}

.hero-coin {
    position: absolute;
    z-index: 5;
    width: auto;
    height: 600px;
    right: 4%;
    top: -36px;
    filter: drop-shadow(0 15px 20px #000) drop-shadow(0 0 23px rgba(252, 189, 47, .2));
    animation: coinFloat 5.5s ease-in-out infinite;
}

.coin-aura {
    position: absolute;
    z-index: 1;
    width: 470px;
    height: 470px;
    right: 7%;
    top: 26px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 211, 101, .34), rgba(182, 112, 3, .15) 36%, transparent 69%);
    filter: blur(10px);
}

.coin-plinth {
    position: absolute;
    z-index: 4;
    left: 6%;
    right: 1%;
    bottom: 74px;
    height: 45px;
    border: 2px solid rgba(255, 202, 74, .83);
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(255, 215, 106, .73), #654109 34%, #080704 61%, transparent 62%);
    box-shadow: 0 5px 28px #000, 0 0 34px rgba(237, 178, 40, .42), inset 0 5px 14px rgba(255, 225, 120, .45);
}

.coin-rings {
    position: absolute;
    z-index: 2;
    left: -6%;
    right: -9%;
    bottom: 13px;
    height: 152px;
}

.coin-rings span {
    position: absolute;
    inset: auto 0 0;
    height: 96px;
    border: 1px solid rgba(224, 163, 28, .76);
    border-radius: 50%;
    box-shadow: 0 0 14px rgba(230, 170, 33, .25);
}

.coin-rings span:nth-child(2) {
    inset: auto 7% 22px;
    height: 67px;
    opacity: .7;
}

.coin-rings span:nth-child(3) {
    inset: auto 16% 39px;
    height: 39px;
    opacity: .65;
}

.coin-spark {
    position: absolute;
    z-index: 6;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #ffe694;
    box-shadow: 0 0 14px 4px rgba(255, 187, 35, .85);
    animation: spark 2.6s ease-in-out infinite;
}

.coin-spark.s1 {
    right: 8%;
    top: 34%;
}

.coin-spark.s2 {
    left: 19%;
    top: 26%;
    animation-delay: -.8s;
}

.coin-spark.s3 {
    right: 27%;
    bottom: 23%;
    animation-delay: -1.4s;
}

@keyframes coinFloat {

    0%,
    100% {
        transform: translateY(0) rotate(-.4deg);
    }

    50% {
        transform: translateY(-9px) rotate(.4deg);
    }
}

@keyframes spark {

    0%,
    100% {
        opacity: .25;
        transform: scale(.6);
    }

    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

.stats-wrap {
    position: relative;
    z-index: 5;
    margin-top: -25px;
}

.glass-card {
    border: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(18, 19, 17, .92), rgba(7, 8, 7, .84));
    box-shadow: inset 0 1px rgba(255, 255, 255, .025), 0 9px 30px rgba(0, 0, 0, .24);
}

.stats {
    min-height: 110px;
    border-radius: 5px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    padding: 18px 0;
}

.stat {
    display: flex;
    align-items: center;
    gap: 17px;
    min-height: 60px;
    padding: 0 32px;
    border-right: 1px solid rgba(255, 255, 255, .08);
}

.stat:last-child {
    border: 0;
}

.stat svg {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    color: var(--gold);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.stat strong {
    display: block;
    color: var(--gold);
    font-size: 24px;
    line-height: 1.05;
    letter-spacing: .3px;
}

.stat span {
    display: block;
    margin-top: 10px;
    font-size: 10px;
    color: #d5d5d1;
    white-space: nowrap;
}

.section {
    position: relative;
    z-index: 3;
    padding: 55px 0 0;
}

.section h2 {
    margin: 0;
    font-size: 24px;
    line-height: 1.2;
}

.section-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 17px;
    padding: 0 9px;
}

.section-bar a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
}

.section-bar a svg,
.news-content a svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.center-title {
    text-align: center;
}

.center-title span,
.about-copy h2 span {
    color: var(--gold);
}

.markets-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.market-card {
    position: relative;
    min-width: 0;
    min-height: 205px;
    padding: 21px 18px 0;
    border-radius: 5px;
    overflow: hidden;
    transition: border-color .25s ease, transform .25s ease;
}

.market-card:hover {
    border-color: rgba(241, 182, 42, .5);
    transform: translateY(-4px);
}

.market-head {
    display: flex;
    align-items: center;
    gap: 11px;
}

.market-head strong {
    font-size: 13px;
    white-space: nowrap;
}

.crypto-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    font-size: 18px;
    font-family: Georgia, serif;
    font-weight: bold;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, .35), 0 3px 10px #000;
}

.crypto-icon.btc {
    background: #f7921a;
}

.crypto-icon.eth {
    background: #5573d3;
}

.crypto-icon.bfc {
    background: linear-gradient(145deg, #ffe17d, #9e6309);
    color: #3b2501;
}

.crypto-icon.bnb {
    background: #f3ba2f;
    color: #151105;
}

.crypto-icon.xrp {
    background: #222;
}

.market-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 17px;
    font-size: 15px;
}

.market-price b {
    color: var(--green);
    font-size: 14px;
}

.market-price b.negative {
    color: var(--red);
}

.sparkline {
    position: absolute;
    left: 17px;
    right: 17px;
    bottom: 15px;
    width: calc(100% - 34px);
    height: 64px;
    color: #2daf29;
    overflow: visible;
}

.sparkline.negative-line {
    color: #df2626;
}

.spark-fill {
    fill: url(#grad-btc);
    stroke: none;
}

.market-card:nth-child(2) .spark-fill {
    fill: url(#grad-eth);
}

.market-card:nth-child(3) .spark-fill {
    fill: url(#grad-bfc);
}

.market-card:nth-child(4) .spark-fill {
    fill: url(#grad-bnb);
}

.market-card:nth-child(5) .spark-fill {
    fill: url(#grad-xrp);
}

.spark-stroke {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.25;
    vector-effect: non-scaling-stroke;
    filter: drop-shadow(0 0 4px currentColor);
}

.features-section {
    padding-top: 48px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 9px;
    margin-top: 21px;
}

.feature-card {
    min-height: 225px;
    padding: 30px 25px 21px;
    border-radius: 5px;
    text-align: center;
    transition: transform .25s ease, background .25s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(28, 24, 14, .96), rgba(8, 8, 7, .9));
}

.feature-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    display: grid;
    place-items: center;
}

.feature-icon svg {
    width: 39px;
    height: 39px;
    color: var(--gold);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    filter: drop-shadow(0 0 10px rgba(239, 178, 38, .35));
}

.feature-card h3 {
    margin: 0 0 15px;
    font-size: 13px;
}

.feature-card p {
    max-width: 205px;
    margin: auto;
    color: #c2c3be;
    font-size: 12px;
    line-height: 1.65;
}

.about-section {
    margin-top: 20px;
    padding-top: 35px;
    min-height: 405px;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(74, 46, 2, .08), transparent 38%, transparent 70%, rgba(75, 48, 4, .07));
}

.about-layout {
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
}

.about-art {
    position: relative;
    min-height: 365px;
}

.about-art img {
    position: absolute;
    z-index: 3;
    width: 365px;
    left: 36px;
    top: -38px;
    filter: drop-shadow(0 15px 18px #000) drop-shadow(0 0 18px rgba(239, 177, 38, .22));
    transform: rotate(-8deg);
}

.about-halo {
    position: absolute;
    z-index: 1;
    width: 280px;
    height: 280px;
    left: 70px;
    top: 17px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239, 177, 38, .31), transparent 65%);
    filter: blur(8px);
}

.gold-ground {
    position: absolute;
    z-index: 2;
    left: -50px;
    right: 8px;
    bottom: 19px;
    height: 110px;
    background: radial-gradient(ellipse at 45% 45%, rgba(225, 158, 20, .34), transparent 55%), repeating-linear-gradient(165deg, transparent 0 14px, rgba(222, 154, 20, .12) 15px 16px);
    transform: skewY(-5deg);
    mask-image: linear-gradient(to bottom, transparent, black 30%, transparent 98%);
}

.about-copy {
    padding: 5px 48px 0 12px;
}

.about-copy p {
    max-width: 610px;
    margin: 18px 0 15px;
    color: #c8c8c4;
    font-size: 13px;
    line-height: 1.7;
}

.about-copy ul {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
}

.about-copy li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 5px 0;
    font-size: 12px;
}

.about-copy li svg {
    width: 17px;
    height: 17px;
    color: var(--gold);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.about-copy .btn {
    min-width: 150px;
    height: 40px;
}

.about-dots {
    position: absolute;
    left: 0;
    bottom: 15%;
    width: 42%;
    height: 55%;
    opacity: .3;
    background: radial-gradient(circle, rgba(232, 166, 28, .7) 1px, transparent 2px);
    background-size: 12px 12px;
    mask-image: radial-gradient(ellipse, #000, transparent 70%);
}

.how-section {
    padding-top: 31px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 30px;
}

.step {
    min-width: 0;
}

.step-top {
    position: relative;
    height: 105px;
}

.step-icon {
    width: 94px;
    height: 94px;
    margin: 0 auto;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    display: grid;
    place-items: center;
    background: radial-gradient(circle, rgba(228, 162, 25, .17), rgba(8, 8, 7, .92) 66%);
    box-shadow: 0 0 25px rgba(218, 153, 19, .24), inset 0 0 18px rgba(229, 164, 27, .1);
}

.step-icon svg {
    width: 45px;
    height: 45px;
    color: var(--gold);
    fill: rgba(238, 179, 47, .85);
    stroke: currentColor;
    stroke-width: 1.5;
}

.step-line {
    position: absolute;
    z-index: -1;
    top: 46px;
    left: calc(50% + 48px);
    width: calc(100% - 96px);
    height: 1px;
    background: linear-gradient(90deg, var(--gold-deep), rgba(241, 184, 45, .7), var(--gold-deep));
}

.step-line i {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffe18a;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 12px 4px rgba(240, 179, 38, .55);
}

.step-body {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 9px;
    align-items: start;
    padding: 4px 12px 0;
}

.step-body>b {
    color: var(--gold);
    font-size: 26px;
    font-weight: 500;
}

.step-body h3 {
    margin: 7px 0 8px;
    font-size: 17px;
}

.step-body p {
    margin: 0;
    max-width: 160px;
    color: #a9aaa5;
    font-size: 16px;
    line-height: 1.55;
}

.economics-section {
    padding-top: 47px;
}

.economics-grid {
    display: grid;
    grid-template-columns: 1fr 1.03fr;
    gap: 10px;
}

.economics-card {
    min-height: 335px;
    padding: 25px 26px;
    border-radius: 5px;
    overflow: hidden;
}

.economics-card h2 {
    font-size: 21px;
}

.token-layout {
    display: grid;
    grid-template-columns: 53% 47%;
    align-items: center;
    min-height: 260px;
}

.donut {
    position: relative;
    width: 205px;
    height: 205px;
    margin: 17px auto 0;
    border-radius: 50%;
    background: conic-gradient(#f3c65b 0 40%, #b98720 40% 65%, #7c5916 65% 85%, #4b350f 85% 95%, #2c210e 95%);
    filter: drop-shadow(0 0 13px rgba(229, 167, 35, .12));
}

.donut::after {
    content: "";
    position: absolute;
    inset: 36px;
    border-radius: 50%;
    background: #0b0c0b;
    box-shadow: inset 0 0 18px #000;
}

.donut-center {
    position: absolute;
    inset: 35px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.donut-center small {
    font-size: 9px;
}

.donut-center strong {
    font-size: 17px;
    line-height: 1.3;
}

.donut-center b {
    font-size: 14px;
}

.token-list {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
}

.token-list li {
        display: flex;
    grid-template-columns: 14px 46px 1fr;
    align-items: center;
    gap: 9px;
    margin: 9px 0;
    font-size: 11px;
}

.token-list i {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    background: #c28e27;
}

.token-list li:nth-child(2) i {
    background: #9f721e;
}

.token-list li:nth-child(3) i {
    background: #765517;
}

.token-list li:nth-child(4) i {
    background: #513b13;
}

.token-list li:nth-child(5) i {
    background: #31250f;
}

.token-list strong {
    color: var(--gold);
    font-size: 18px;
}

.token-list span {
    color: #bbbcb6;
        font-size: 18px;
}

.roadmap-layout {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 260px;
}

.roadmap-layout ol {
    position: relative;
    z-index: 2;
    list-style: none;
    padding: 7px 0 0 22px;
    margin: 11px 0 0;
}

.roadmap-layout ol::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 16px;
    bottom: 24px;
    width: 2px;
    background: linear-gradient(var(--gold), #8a641a);
}

.roadmap-layout li {
    position: relative;
    display: flex;
    grid-template-columns: 74px 1fr;
    gap: 8px;
    justify-content: start;
    align-items: center;
    margin: 25px 0;
    font-size: 11px;
}

.roadmap-layout li::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 1px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 8px rgba(240, 181, 39, .45);
}

.roadmap-layout b {
    color: var(--gold);
    font-size: 18px;
}

.roadmap-layout span {
    color: #bbbcb6;
    font-size: 18px;
}

.roadmap-mountain {
    position: relative;
    align-self: stretch;
    opacity: .54;
    transform: translate(22px, 25px);
    background: repeating-linear-gradient(167deg, transparent 0 12px, rgba(228, 162, 26, .22) 13px 14px);
    clip-path: polygon(0 100%, 38% 14%, 51% 38%, 68% 4%, 100% 72%, 100% 100%);
}

.roadmap-mountain::before,
.roadmap-mountain::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(72deg, transparent 0 14px, rgba(228, 162, 26, .28) 15px 16px);
}

.roadmap-mountain::after {
    background: linear-gradient(145deg, transparent 37%, rgba(245, 187, 45, .7) 38%, transparent 39%);
}

.news-section {
    padding-top: 49px;
    padding-bottom: 48px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 11px;
}

.news-card {
    border-radius: 5px;
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: rgba(241, 182, 42, .5);
}

.news-img {
    height: 133px;
    overflow: hidden;
    position: relative;
}

.news-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 6, 5, .65), transparent 58%);
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 43%;
    filter: saturate(.75) contrast(1.08);
    transition: transform .35s ease;
}

.news-card:hover .news-img img {
    transform: scale(1.05);
}

.news-content {
    min-height: 131px;
    padding: 13px 15px 16px;
}

.news-content time {
    color: var(--gold);
    font-size: 9px;
    font-weight: 800;
}

.news-content h3 {
    margin: 7px 0 8px;
    min-height: 39px;
    font-size: 13px;
    line-height: 1.45;
}

.news-content a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
}

.site-footer {
    position: relative;
    z-index: 3;
    border-top: 1px solid rgba(255, 255, 255, .07);
    background: radial-gradient(circle at 25% 0, rgba(225, 164, 28, .07), transparent 34%), #0b0c0b;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.1fr 1fr 1fr 1.3fr;
    gap: 65px;
    padding-top: 37px;
    padding-bottom: 34px;
}

.site-footer h3 {
    margin: 0 0 16px;
    font-size: 18px;
}

.site-footer p {
    color: #b9bab4;
    font-size: 20px;
    line-height: 1.65;
}

.site-footer>.container>div:not(:first-child) {
    display: flex;
    flex-direction: column;
}

.site-footer>.container>div:not(:first-child)>a {
    width: max-content;
    color: #c5c6c0;
    font-size: 19px;
    /* line-height: 1.68; */
    transition: color .2s;
}

.site-footer>.container>div:not(:first-child)>a:hover {
    color: var(--gold);
}

.subscribe-form {
    display: flex;
    width: 330px;
    height: 40px;
    margin-top: 16px;
}

.subscribe-form input {
    min-width: 0;
    flex: 1;
    padding: 0 14px;
    color: white;
    border: 1px solid rgba(255, 255, 255, .17);
    border-right: 0;
    outline: none;
    border-radius: 4px 0 0 4px;
    background: #0f100e;
    font-size: 11px;
}

.subscribe-form input:focus {
    border-color: rgba(238, 180, 44, .55);
}

.subscribe-form button {
    width: 112px;
    border: 0;
    border-radius: 0 4px 4px 0;
    color: #171002;
    background: linear-gradient(120deg, #d99d21, #f7cd62);
    font-size: 10px;
    font-weight: 900;
    cursor: pointer;
}

.socials {
    display: flex;
    gap: 12px;
}

.socials a {
    width: 40px !important;
    height: 40px;
    border-radius: 50%;
    display: grid !important;
    place-items: center;
    color: var(--gold) !important;
    border: 1px solid var(--gold-deep);
    background: rgba(235, 174, 37, .05);
    font-size: 17px !important;
    line-height: 1 !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-bottom .container {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-brand {
    font-size: 12px;
}

.footer-brand .brand-coin {
    width: 39px;
    height: 39px;
}

.footer-bottom p {
    margin: 0;
    font-size: 21px;
}

.language {
    color: #ccc;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 3px;
    background: #0c0d0c;
    padding: 9px 14px;
    font-size: 10px;
}

.language span {
    color: var(--gold);
    margin-left: 20px;
}

.toast {
    position: fixed;
    z-index: 80;
    right: 22px;
    bottom: 22px;
    padding: 12px 18px;
    color: #151003;
    border-radius: 4px;
    background: linear-gradient(120deg, #d99d21, #f7cf67);
    font-size: 12px;
    font-weight: 800;
    transform: translateY(25px);
    opacity: 0;
    pointer-events: none;
    transition: .3s ease;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .main-nav {
        gap: 15px;
    }

    .main-nav a:nth-last-child(2) {
        display: none;
    }

    .nav-actions {
        margin-left: 2px;
    }

    .hero-layout {
        grid-template-columns: 49% 51%;
    }

    .hero-copy {
        padding-left: 0;
    }

    .hero-benefits {
        max-width: 420px;
    }

    .stat {
        padding: 0 20px;
    }

    .stat svg {
        width: 31px;
        height: 31px;
    }

    .stat strong {
        font-size: 21px;
    }

    .market-card {
        padding-inline: 13px;
    }

    .market-price {
        font-size: 13px;
    }

    .economics-card {
        padding-inline: 20px;
    }
}

@media (max-width: 900px) {
    .site-header {
        height: 76px;
    }

    .nav-wrap {
        height: 76px;
    }

    .brand {
        font-size: 12px;
    }

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

    .nav-actions {
        display: none;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
    }

    .main-nav {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        margin: 0;
        padding: 8px;
        border: 1px solid rgba(240, 180, 40, .23);
        border-radius: 5px;
        background: rgba(6, 7, 6, .98);
        box-shadow: 0 20px 50px #000;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: .25s ease;
    }

    .main-nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .main-nav a,
    .main-nav a:nth-last-child(2) {
        display: block;
        padding: 13px 16px;
        border-bottom: 1px solid rgba(255, 255, 255, .05);
    }

    .main-nav a::after {
        display: none;
    }

    .hero {
        min-height: 870px;
    }

    .hero-layout {
        min-height: 870px;
        grid-template-columns: 1fr;
        grid-template-rows: 460px 410px;
        padding-top: 76px;
    }

    .hero-copy {
        align-self: center;
        padding: 35px 0 0;
    }

    .hero-copy br {
        display: none;
    }

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

    .hero-lead br {
        display: block;
    }

    .hero-art {
        grid-row: 2;
        width: min(650px, 94vw);
        justify-self: center;
    }

    .hero-coin {
        width: 510px;
        max-width: 83vw;
        height: auto;
        right: 50%;
        top: -113px;
        transform: translateX(50%);
        animation: coinFloatMobile 5.5s ease-in-out infinite;
    }

    .coin-aura {
        width: 360px;
        height: 360px;
        right: 50%;
        top: -35px;
        transform: translateX(50%);
    }

    .coin-plinth {
        left: 11%;
        right: 11%;
        bottom: 65px;
    }

    .coin-rings {
        left: 3%;
        right: 3%;
        bottom: 4px;
    }

    @keyframes coinFloatMobile {

        0%,
        100% {
            transform: translateX(50%) translateY(0);
        }

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

    .stats-wrap {
        margin-top: -10px;
    }

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

    .stat {
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .stat:nth-child(2) {
        border-right: 0;
    }

    .stat:nth-child(3),
    .stat:nth-child(4) {
        border-bottom: 0;
    }

    .markets-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .market-card:nth-child(4),
    .market-card:nth-child(5) {
        min-height: 190px;
    }

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

    .about-layout {
        grid-template-columns: 43% 57%;
    }

    .about-art img {
        width: 330px;
        left: -20px;
    }

    .about-copy {
        padding-right: 10px;
    }

    .step-body {
        grid-template-columns: 39px 1fr;
        padding-inline: 4px;
    }

    .step-body>b {
        font-size: 21px;
    }

    .step-icon {
        width: 81px;
        height: 81px;
    }

    .step-top {
        height: 94px;
    }

    .step-line {
        left: calc(50% + 42px);
        width: calc(100% - 84px);
        top: 40px;
    }

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

    .footer-grid {
        grid-template-columns: 1.8fr 1fr 1fr;
        gap: 42px;
    }

    .footer-grid>div:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 650px) {
    .container {
        width: min(100% - 28px, 540px);
    }

    .cursor-glow {
        display: none;
    }

    .hero {
        min-height: 815px;
    }

    .hero-layout {
        min-height: 815px;
        grid-template-rows: 500px 315px;
    }

    .hero-copy {
        padding-top: 29px;
    }

    .eyebrow {
        margin-bottom: 13px;
    }

    .hero h1 {
        font-size: clamp(39px, 13vw, 55px);
        letter-spacing: -1.2px;
    }

    .hero h1 em {
        display: block;
    }

    .hero-lead {
        margin: 18px 0 20px;
        font-size: 16px;
    }

    .hero-benefits {
        max-width: 100%;
        margin-bottom: 23px;
    }

    .hero-benefits>div {
        padding-inline: 8px;
    }

    .hero-benefits svg {
        width: 25px;
        height: 25px;
    }

    .hero-benefits strong {
        font-size: 8px;
    }

    .hero-actions {
        gap: 9px;
    }

    .hero-actions .btn {
        min-width: 0;
        flex: 1;
        padding-inline: 10px;
    }

    .hero-coin {
        width: 390px;
        top: -78px;
    }

    .coin-aura {
        width: 290px;
        height: 290px;
        top: -15px;
    }

    .coin-plinth {
        bottom: 31px;
    }

    .coin-rings {
        bottom: -24px;
    }

    .stats {
        min-height: 0;
    }

    .stat {
        min-height: 85px;
        gap: 10px;
        padding: 11px 13px;
    }

    .stat svg {
        width: 28px;
        height: 28px;
    }

    .stat strong {
        font-size: 18px;
    }

    .stat span {
        margin-top: 6px;
        font-size: 7px;
    }

    .section {
        padding-top: 42px;
    }

    .section h2 {
        font-size: 20px;
    }

    .section-bar {
        padding-inline: 0;
    }

    .section-bar a {
        font-size: 10px;
    }

    .markets-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 9px;
        scrollbar-width: none;
    }

    .markets-grid::-webkit-scrollbar {
        display: none;
    }

    .market-card {
        flex: 0 0 75vw;
        scroll-snap-align: start;
    }

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

    .feature-card {
        min-height: 0;
        padding-block: 24px;
    }

    .about-section {
        min-height: 680px;
        margin-top: 5px;
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-art {
        min-height: 325px;
        grid-row: 1;
    }

    .about-art img {
        width: 325px;
        left: 50%;
        top: -40px;
        transform: translateX(-50%) rotate(-7deg);
    }

    .about-halo {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-copy {
        padding: 0 3px 32px;
    }

    .how-section {
        padding-top: 38px;
    }

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

    .step {
        display: grid;
        grid-template-columns: 105px 1fr;
    }

    .step-top {
        height: 93px;
    }

    .step-icon {
        width: 82px;
        height: 82px;
    }

    .step-line {
        top: 83px;
        left: 50%;
        width: 1px;
        height: 35px;
    }

    .step-line i {
        left: 50%;
        top: 50%;
    }

    .step-body {
        grid-template-columns: 40px 1fr;
        align-self: center;
        padding: 0;
    }

    .step-body h3 {
        margin-top: 3px;
    }

    .step-body p {
        max-width: 210px;
    }

    .economics-section {
        padding-top: 39px;
    }

    .economics-card {
        min-height: 0;
        padding: 21px 17px;
    }

    .token-layout {
        grid-template-columns: 1fr;
    }

    .donut {
        width: 190px;
        height: 190px;
    }

    .token-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0 10px;
    }

    .token-list li {
        margin: 10px 0;
    }

    .roadmap-layout {
        grid-template-columns: 66% 34%;
    }

    .roadmap-layout li {
        grid-template-columns: 65px 1fr;
        font-size: 10px;
    }

    .roadmap-mountain {
        transform: translate(8px, 31px);
    }

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

    .news-img {
        height: 119px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 25px;
    }

    .footer-update {
        grid-column: 1 / -1;
    }

    .subscribe-form {
        width: 100%;
    }

    .footer-grid>div:last-child {
        grid-column: auto;
    }

    .footer-bottom .container {
        min-height: 112px;
        flex-wrap: wrap;
        padding-block: 15px;
        gap: 9px;
    }

    .footer-bottom p {
        order: 3;
        flex: 0 0 100%;
        text-align: center;
    }
}

@media (max-width: 390px) {
    .brand {
        font-size: 11px;
    }

    .brand-coin {
        width: 38px;
        height: 38px;
    }

    .hero-benefits>div {
        padding-inline: 5px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        flex: none;
        width: 100%;
    }

    .hero-layout {
        grid-template-rows: 555px 300px;
    }

    .hero {
        min-height: 855px;
    }

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

    .news-img {
        height: 155px;
    }

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

    .socials {
        flex-wrap: wrap;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }

    #particleCanvas,
    .cursor-glow {
        display: none;
    }
}

/* =========================================================
   FUTURE CITY REDESIGN
   ========================================================= */
.future-theme {
    --bg: #010202;
    --panel: #080a09;
    --panel-2: #0c0e0d;
    --gold: #f6bd35;
    --gold-deep: #936912;
    --gold-soft: #ffd970;
    --border: rgba(255, 255, 255, .14);
}

.future-theme body {
    padding-bottom: 0;
    background:
        radial-gradient(circle at 50% 14%, rgba(169, 113, 8, .08), transparent 24%),
        #010202;
}

.future-theme body::before {
    opacity: .32;
    background-size: 74px 74px;
}

.future-theme .container {
    width: min(1180px, calc(100% - 76px));
}

.future-theme .site-header {
    height: 98px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .96), rgba(0, 0, 0, .38), transparent);
}

.future-theme .nav-wrap {
    height: 98px;
    gap: 22px;
}

.future-theme .brand {
    gap: 13px;
    font-size: 20px;
    line-height: .94;
    letter-spacing: .3px;
}

.future-theme .brand-coin {
    width: 53px;
    height: 53px;
    border: 1px solid rgba(246, 189, 53, .55);
    box-shadow: 0 0 22px rgba(246, 189, 53, .13);
}

.future-theme .main-nav {
    position: absolute;
    top: 84px;
    right: 0;
    left: auto;
    width: 310px;
    margin: 0;
    padding: 9px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border: 1px solid rgba(246, 189, 53, .28);
    border-radius: 13px;
    background: rgba(5, 6, 6, .98);
    box-shadow: 0 25px 70px #000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}

.future-theme .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.future-theme .main-nav a,
.future-theme .main-nav a:nth-last-child(2) {
    display: block;
    padding: 15px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .055);
    color: #d7d8d4;
    font-size: 11px;
}

.future-theme .main-nav a::after {
    display: none;
}

.future-theme .main-nav a:hover,
.future-theme .main-nav a.active {
    color: var(--gold);
}

.future-theme .nav-actions {
    margin-left: auto;
}

.future-theme .nav-actions .btn:first-child {
    min-width: 110px;
    height: 48px;
    color: #171003;
    border-color: #e0a526;
    border-radius: 9px;
    background: linear-gradient(135deg, #f3b52e, #ffd76c);
    box-shadow: 0 10px 30px rgba(218, 154, 24, .17);
    font-size: 15px;
    text-transform: capitalize;
}

.future-theme .nav-actions .btn:last-child {
    display: none;
}

.future-theme .menu-toggle {
    display: block;
    width: 45px;
    height: 45px;
    margin-left: 2px;
    padding: 8px 5px;
    border: 0;
    color: #eeeeea;
    background: transparent;
    cursor: pointer;
}

.future-theme .menu-toggle svg {
    stroke-width: 1.6;
}

.future-theme .hero {
    min-height: 780px;
    isolation: isolate;
    background: #020303;
}

.future-theme .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(90deg, #010202 0%, rgba(1, 2, 2, .97) 22%, rgba(1, 2, 2, .72) 39%, rgba(1, 2, 2, .18) 68%, rgba(1, 2, 2, .12) 100%),
        linear-gradient(to top, #010202 0%, transparent 24%, rgba(0, 0, 0, .12) 75%, #010202 100%),
        url("../images/bangkok-city-1.jpg") 100% 50% / auto 100% no-repeat;
    filter: saturate(.66) contrast(1.18) brightness(.75);
}

.future-theme .hero::after {
    z-index: 1;
    height: 220px;
    background: linear-gradient(to top, #010202 8%, rgba(1, 2, 2, .82) 37%, transparent);
}

.future-theme .hero-grid,
.future-theme .hero-world,
.future-theme .hero-lines,
.future-theme .hero-art {
    display: none;
}

.future-theme .hero-layout {
    min-height: 780px;
    display: block;
    padding-top: 98px;
}

.future-theme .hero-copy {
    position: static;
    width: 495px;
    max-width: 48%;
    padding: 76px 0 190px;
}

.future-theme .eyebrow {
    width: max-content;
    margin: 0 0 25px;
    padding: 8px 17px;
    border: 1px solid rgba(246, 189, 53, .8);
    border-radius: 20px;
    color: var(--gold);
    font-size: 17px;
    line-height: 1;
    letter-spacing: .4px;
    background: rgba(4, 5, 5, .58);
}

.future-theme .eyebrow span {
    display: none;
}

.future-theme .hero h1 {
    max-width: 560px;
    font-size: clamp(48px, 4.7vw, 69px);
    line-height: 1.06;
    letter-spacing: -1.35px;
}

.future-theme .hero h1 em {
    display: block;
    color: var(--gold);
}

.future-theme .hero-copy h1 br {
    display: block;
}

.future-theme .hero-lead {
    max-width: 470px;
    margin: 25px 0 27px;
    color: #c6c8c5;
    font-size: 17px;
    line-height: 1.72;
}

.future-theme .hero-actions {
    gap: 14px;
}

.future-theme .hero-actions .btn {
    min-width: 174px;
    height: 48px;
    border-radius: 8px;
    font-size: 11px;
}

.future-theme .hero-actions .btn::after {
    content: "→";
    margin-left: 18px;
    font-size: 19px;
    line-height: 1;
}

.future-theme .hero-benefits {
    position: absolute;
    z-index: 7;
    right: 0;
    bottom: 28px;
    left: 0;
    max-width: none;
    min-height: 155px;
    margin: 0;
    padding: 21px 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 33px;
    background:
        radial-gradient(circle at 50% 0, rgba(246, 189, 53, .07), transparent 38%),
        rgba(7, 8, 8, .89);
    box-shadow: inset 0 1px rgba(255, 255, 255, .025), 0 22px 60px rgba(0, 0, 0, .42);
    backdrop-filter: blur(14px);
}

.future-theme .hero-benefits>div {
    min-height: 104px;
    padding: 3px 32px;
    display: grid;
    grid-template-columns: 52px 1fr;
    grid-template-rows: 1fr 1fr;
    align-items: center;
    column-gap: 16px;
    border-right: 1px solid rgba(255, 255, 255, .08);
}

.future-theme .hero-benefits>div:first-child {
    padding-left: 22px;
}

.future-theme .hero-benefits>div:last-child {
    border: 0;
}

.future-theme .hero-benefits svg {
    grid-row: 1 / 3;
    width: 49px;
    height: 49px;
    margin: 0;
    padding: 11px;
    border: 1px solid rgba(246, 189, 53, .76);
    border-radius: 50%;
    color: var(--gold);
    background: rgba(246, 189, 53, .035);
}

.future-theme .hero-benefits strong {
    align-self: end;
    font-size: 14px;
    line-height: 1.2;
}

.future-theme .hero-benefits span {
    align-self: start;
    margin-top: 7px;
    color: #aeb0ad;
    font-size: 11px;
    line-height: 1.2;
}

.future-theme .stats-wrap {
    order: initial;
    margin: 31px 0 0;
}

.future-theme .stats {
    position: relative;
    min-height: 298px;
    padding: 0 0 0 40%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(130deg, #090b0a, #060707);
}

.future-theme .stats::before {
    content: "";
    position: absolute;
    inset: 0 60% 0 0;
    border-right: 1px solid rgba(255, 255, 255, .08);
    background:
        url("../images/bfc-coin.png") center / 143px auto no-repeat,
        repeating-radial-gradient(circle at center, transparent 0 23px, rgba(246, 189, 53, .2) 24px 25px, transparent 26px 41px),
        radial-gradient(circle, rgba(246, 189, 53, .12), transparent 63%);
    filter: drop-shadow(0 0 20px rgba(246, 189, 53, .13));
}

.future-theme .stats::after {
    content: "";
    position: absolute;
    left: 20%;
    top: 50%;
    width: 242px;
    height: 242px;
    border: 1px solid rgba(246, 189, 53, .11);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 35px rgba(246, 189, 53, .05), inset 0 0 35px rgba(246, 189, 53, .05);
}

.future-theme .stat {
    position: relative;
    z-index: 2;
    min-height: 149px;
    padding: 28px 35px;
    border-right: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.future-theme .stat:nth-child(2),
.future-theme .stat:nth-child(4) {
    border-right: 0;
}

.future-theme .stat:nth-child(3),
.future-theme .stat:nth-child(4) {
    border-bottom: 0;
}

.future-theme .stat svg {
    display: none;
}

.future-theme .stat strong {
    font-size: clamp(29px, 3vw, 40px);
    font-weight: 500;
}

.future-theme .stat span {
    margin-top: 8px;
    color: #f0f0ec;
    font-size: 12px;
}

.future-theme .market-section {
    padding-top: 38px;
}

.future-theme .market-section .section-bar {
    margin-bottom: 20px;
    padding: 0 8px;
}

.future-theme .market-section .section-bar h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    text-transform: none;
}

.future-theme .market-section .section-bar h2::before {
    content: "⌁";
    color: var(--gold);
    font-size: 27px;
}

.future-theme .section-bar a {
    font-size: 12px;
}

.future-theme .markets-grid {
    gap: 10px;
}

.future-theme .market-card {
    min-height: 222px;
    padding: 20px 17px 0;
    border-radius: 13px;
    background: linear-gradient(150deg, #0b0d0c, #060707);
}

.future-theme .market-head strong {
    font-size: 12px;
}

.future-theme .crypto-icon {
    width: 37px;
    height: 37px;
}

.future-theme .market-price {
    display: grid;
    justify-content: start;
    margin-top: 18px;
    gap: 5px;
    font-size: 18px;
}

.future-theme .market-price b {
    font-size: 13px;
}

.future-theme .sparkline {
    bottom: 13px;
    height: 66px;
}

.future-theme .features-section {
    display: none;
}

.future-theme .about-section {
    min-height: 0;
    margin: 34px 0 0;
    padding: 0;
    overflow: visible;
    background: none;
}

.future-theme .about-dots {
    display: none;
}

.future-theme .about-layout {
    min-height: 395px;
    display: grid;
    grid-template-columns: 44% 56%;
    align-items: stretch;
    padding: 0;
    border: 1px solid rgba(246, 189, 53, .42);
    border-radius: 22px;
    overflow: hidden;
    background:
        radial-gradient(circle at 83% 29%, rgba(246, 189, 53, .07), transparent 30%),
        #060807;
}

.future-theme .about-art {
    position: relative;
    min-height: 395px;
    overflow: hidden;
    background:
        linear-gradient(90deg, transparent 55%, #060807 100%),
        linear-gradient(to top, #060807, transparent 55%),
        url("../images/bangkok-city-3.jpg") center 56% / cover no-repeat;
    filter: saturate(.62) contrast(1.17);
}

.future-theme .about-art::after {
    content: "BFC";
    position: absolute;
    left: 50%;
    bottom: 52px;
    width: 73px;
    height: 73px;
    display: grid;
    place-items: center;
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 50%;
    background: rgba(0, 0, 0, .78);
    box-shadow: 0 0 32px rgba(246, 189, 53, .32), inset 0 0 18px rgba(246, 189, 53, .16);
    transform: translateX(-50%);
    font-size: 18px;
}

.future-theme .about-art img,
.future-theme .about-halo,
.future-theme .gold-ground {
    display: none;
}

.future-theme .about-copy {
    align-self: center;
    padding: 42px 52px 40px 22px;
}

.future-theme .about-copy h2 {
    font-size: clamp(27px, 3.1vw, 39px);
    line-height: 1.12;
    letter-spacing: -.5px;
}

.future-theme .about-copy h2 small {
    display: block;
    margin-bottom: 12px;
    color: var(--gold);
    font-size: 11px;
    letter-spacing: .5px;
}

.future-theme .about-copy p {
    max-width: 570px;
    margin: 15px 0 20px;
    font-size: 13px;
    line-height: 1.65;
}

.future-theme .about-copy ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 0 22px;
}

.future-theme .about-copy li {
    min-height: 55px;
    margin: 0;
    padding: 4px 14px 4px 0;
    border-right: 1px solid rgba(246, 189, 53, .34);
    font-size: 11px;
}

.future-theme .about-copy li:nth-child(3) {
    border-right: 0;
    padding-left: 14px;
}

.future-theme .about-copy li:nth-child(4) {
    display: none;
}

.future-theme .about-copy li>span {
    color: #e2e3df;
    line-height: 1.3;
}

.future-theme .about-copy li svg {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    padding: 9px;
    border: 1px solid rgba(246, 189, 53, .75);
    border-radius: 50%;
}

.future-theme .about-copy .btn {
    height: 45px;
    border-radius: 8px;
}

.future-theme .about-copy .btn::after {
    content: "→";
    margin-left: 22px;
    font-size: 18px;
}

.future-theme .how-section {
    padding-top: 39px;
}

.future-theme .how-section .container {
    position: relative;
}

.future-theme .how-section .center-title {
    padding-left: 26px;
    text-align: left;
    font-size: 24px;
}

.future-theme .how-section .center-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 15px;
    height: 23px;
    border-left: 2px solid var(--gold);
    transform: skewX(-35deg);
}

.future-theme .how-link {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
}

.future-theme .how-link::after {
    content: "→";
    font-size: 21px;
}

.future-theme .steps {
    margin-top: 28px;
}

.future-theme .step-top {
    height: 126px;
}

.future-theme .step-icon {
    position: relative;
    width: 119px;
    height: 119px;
    border-color: rgba(246, 189, 53, .48);
    background:
        repeating-radial-gradient(circle, transparent 0 22px, rgba(246, 189, 53, .15) 23px 24px, transparent 25px 32px),
        radial-gradient(circle, rgba(246, 189, 53, .12), #060707 67%);
    box-shadow: 0 0 30px rgba(246, 189, 53, .1), inset 0 0 22px rgba(246, 189, 53, .08);
}

.future-theme .step-icon::before,
.future-theme .step-icon::after {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px dashed rgba(246, 189, 53, .18);
    border-radius: 50%;
}

.future-theme .step-icon::after {
    inset: -8px;
    border-style: solid;
    opacity: .36;
}

.future-theme .step-icon svg {
    width: 45px;
    height: 45px;
    filter: drop-shadow(0 0 9px rgba(246, 189, 53, .25));
}

.future-theme .step-line {
    top: 59px;
    left: calc(50% + 60px);
    width: calc(100% - 120px);
    border-top: 1px dashed rgba(246, 189, 53, .62);
    background: none;
}

.future-theme .step-body {
    grid-template-columns: 47px 1fr;
    padding: 7px 12px 0;
}

.future-theme .step-body>b {
    width: 41px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(246, 189, 53, .46);
    border-radius: 10px;
    background: rgba(246, 189, 53, .04);
    font-size: 22px;
    line-height: 1;
}

.future-theme .step-body h3 {
    margin: 1px 0 1px;
    color: var(--gold);
}

.future-theme .step-body p {
    max-width: 205px;
    color: #b2b4b0;
}

.future-theme .economics-section,
.future-theme .news-section {
    padding-top: 55px;
}

.future-theme .economics-card,
.future-theme .news-card {
    border-radius: 16px;
    position: relative;
    background: linear-gradient(145deg, #0a0c0b, #050606);
}

.last-road {
    position: absolute;
    width: 107%;
    left: -15px;
    top: -21px;
    transform: scaleX(-1);
}

.last-road::after {
    content: '';
}

.future-theme .site-footer {
    margin-top: 25px;
    background: #080a09;
}

.future-theme .mobile-dock {
    display: none;
}

@media (max-width: 1000px) {
    .future-theme .container {
        width: min(100% - 76px, 930px);
    }

    .future-theme .hero {
        min-height: 690px;
    }

    .future-theme .hero-layout {
        min-height: 690px;
        padding-top: 82px;
    }

    .future-theme .hero-copy {
        width: 360px;
        max-width: 45%;
        padding: 55px 0 175px;
    }

    .future-theme .hero h1 {
        font-size: 42px;
    }

    .future-theme .hero-lead {
        margin-block: 18px 22px;
        font-size: 14px;
    }

    .future-theme .hero-benefits {
        min-height: 147px;
        bottom: 14px;
        padding-inline: 14px;
        border-radius: 30px;
    }

    .future-theme .hero-benefits>div {
        min-height: 95px;
        padding-inline: 17px;
        grid-template-columns: 45px 1fr;
        gap: 11px;
    }

    .future-theme .hero-benefits>div:first-child {
        padding-left: 17px;
    }

    .future-theme .hero-benefits svg {
        width: 43px;
        height: 43px;
    }

    .future-theme .hero-benefits strong {
        font-size: 12px;
    }

    .future-theme .hero-benefits span {
        font-size: 10px;
    }

    .future-theme .markets-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .future-theme .market-card {
        min-height: 203px;
        padding-inline: 13px;
    }

    .future-theme .market-head {
        gap: 7px;
    }

    .future-theme .market-head strong {
        font-size: 10px;
    }

    .future-theme .market-price {
        font-size: 16px;
    }

    .future-theme .about-copy {
        padding-right: 27px;
    }

    .future-theme .about-copy ul {
        gap: 7px;
    }

    .future-theme .about-copy li {
        padding-right: 7px;
    }

    .future-theme .step-icon {
        width: 100px;
        height: 100px;
    }

    .future-theme .step-top {
        height: 108px;
    }

    .future-theme .step-line {
        top: 50px;
        left: calc(50% + 50px);
        width: calc(100% - 100px);
    }
}

@media (max-width: 900px) {
    .future-theme body {
        padding-bottom: 95px;
    }

    .future-theme .site-header,
    .future-theme .nav-wrap {
        height: 78px;
    }

    .future-theme .site-header {
        position: absolute;
    }

    .future-theme .brand {
        font-size: 16px;
    }

    .future-theme .brand-coin {
        width: 45px;
        height: 45px;
    }

    .future-theme .nav-actions {
        display: flex;
    }

    .future-theme .nav-actions .btn:first-child {
        min-width: 103px;
        height: 45px;
    }

    .future-theme .main-nav {
        top: 70px;
        right: 0;
    }

    .future-theme .hero {
        min-height: 690px;
    }

    .future-theme .hero::before {
        background:
            linear-gradient(90deg, #010202 0%, rgba(1, 2, 2, .96) 22%, rgba(1, 2, 2, .69) 42%, rgba(1, 2, 2, .12) 76%),
            linear-gradient(to top, #010202, transparent 30%, rgba(0, 0, 0, .08), #010202),
            url("../images/bangkok-city-1.jpg") 100% 49% / auto 100% no-repeat;
    }

    .future-theme .hero-layout {
        min-height: 690px;
        padding-top: 78px;
        grid-template-rows: none;
    }

    .future-theme .hero-copy {
        align-self: auto;
        padding-top: 48px;
    }

    .future-theme .hero-coin {
        display: none;
    }

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

    .future-theme .stat {
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .future-theme .about-layout {
        grid-template-columns: 43% 57%;
    }

    .future-theme .mobile-dock {
        position: fixed;
        z-index: 45;
        right: 9px;
        bottom: 9px;
        left: 9px;
        height: 82px;
        padding: 0 10px;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        align-items: center;
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 18px;
        background: rgba(9, 11, 10, .94);
        box-shadow: 0 -14px 45px rgba(0, 0, 0, .55), inset 0 1px rgba(255, 255, 255, .025);
        backdrop-filter: blur(18px);
    }

    .future-theme .mobile-dock a {
        position: relative;
        height: 64px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        color: #8e918e;
        border-radius: 12px;
        font-size: 10px;
        transition: color .2s ease, background .2s ease;
    }

    .future-theme .mobile-dock a.active {
        color: var(--gold);
        border: 1px solid rgba(246, 189, 53, .42);
        background: radial-gradient(circle, rgba(246, 189, 53, .15), transparent 72%);
    }

    .future-theme .mobile-dock svg {
        width: 25px;
        height: 25px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.65;
    }

    .future-theme .mobile-dock .dock-coin {
        width: 78px;
        height: 78px;
        justify-self: center;
        transform: translateY(-19px);
        border: 1px solid rgba(246, 189, 53, .42);
        border-radius: 50%;
        background: radial-gradient(circle, #231904, #080907 69%);
        box-shadow: 0 0 28px rgba(246, 189, 53, .13);
    }

    .future-theme .mobile-dock .dock-coin img {
        width: 71px;
        height: 71px;
        border-radius: 50%;
        object-fit: cover;
        object-position: 50% 45%;
        transform: scale(1.2);
    }
}

@media (max-width: 650px) {
    .future-theme .container {
        width: min(100% - 28px, 540px);
    }

    .future-theme .site-header,
    .future-theme .nav-wrap {
        height: 72px;
    }

    .future-theme .brand {
        font-size: 13px;
    }

    .future-theme .brand-coin {
        width: 40px;
        height: 40px;
    }

    .future-theme .nav-actions .btn:first-child {
        min-width: 76px;
        height: 39px;
        font-size: 12px;
    }

    .future-theme .menu-toggle {
        width: 38px;
        height: 38px;
    }

    .future-theme .main-nav {
        top: 64px;
        width: min(310px, 100%);
    }

    .future-theme .hero {
        min-height: 830px;
    }

    .future-theme .hero::before {
        background:
            linear-gradient(to bottom, rgba(1, 2, 2, .84), rgba(1, 2, 2, .34) 37%, rgba(1, 2, 2, .88) 71%, #010202 89%),
            linear-gradient(90deg, rgba(1, 2, 2, .88), rgba(1, 2, 2, .25)),
            url("../images/bangkok-city-1.jpg") 60% 34% / auto 72% no-repeat;
    }

    .future-theme .hero-layout {
        min-height: 830px;
        padding-top: 72px;
    }

    .future-theme .hero-copy {
        width: 100%;
        max-width: none;
        padding: 39px 0 310px;
    }

    .future-theme .eyebrow {
        margin-bottom: 18px;
        font-size: 9px;
    }

    .future-theme .hero h1 {
        max-width: 330px;
        font-size: 42px;
    }

    .future-theme .hero-lead {
        max-width: 330px;
        font-size: 13px;
    }

    .future-theme .hero-actions {
        max-width: 360px;
        flex-direction: row;
    }

    .future-theme .hero-actions .btn {
        width: auto;
        min-width: 0;
        flex: 1;
    }

    .future-theme .hero-benefits {
        min-height: 219px;
        bottom: 14px;
        grid-template-columns: repeat(2, 1fr);
        padding: 12px;
        border-radius: 24px;
    }

    .future-theme .hero-benefits>div,
    .future-theme .hero-benefits>div:first-child {
        min-height: 91px;
        padding: 8px 12px;
    }

    .future-theme .hero-benefits>div:nth-child(2) {
        border-right: 0;
    }

    .future-theme .hero-benefits>div:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .future-theme .market-section {
        padding-top: 29px;
    }

    .future-theme .market-section .section-bar h2 {
        font-size: 19px;
    }

    .future-theme .markets-grid {
        display: flex;
        gap: 9px;
    }

    .future-theme .market-card {
        flex: 0 0 min(71vw, 250px);
        min-height: 215px;
    }

    .future-theme .stats {
        min-height: 485px;
        padding: 194px 0 0;
        grid-template-columns: repeat(2, 1fr);
    }

    .future-theme .stats::before {
        inset: 0 0 auto;
        height: 194px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        background-size: 105px auto, auto, auto;
    }

    .future-theme .stats::after {
        left: 50%;
        top: 97px;
        width: 158px;
        height: 158px;
    }

    .future-theme .stat {
        min-height: 145px;
        padding: 24px 18px;
    }

    .future-theme .stat strong {
        font-size: 25px;
    }

    .future-theme .stat span {
        white-space: normal;
        font-size: 9px;
    }

    .future-theme .about-section {
        margin-top: 28px;
    }

    .future-theme .about-layout {
        grid-template-columns: 1fr;
    }

    .future-theme .about-art {
        min-height: 260px;
    }

    .future-theme .about-copy {
        padding: 29px 24px 31px;
    }

    .future-theme .about-copy h2 {
        font-size: 28px;
    }

    .future-theme .about-copy ul {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .future-theme .about-copy li,
    .future-theme .about-copy li:nth-child(3) {
        min-height: 43px;
        padding: 0;
        border-right: 0;
    }

    .future-theme .about-copy li svg {
        width: 34px;
        height: 34px;
    }

    .future-theme .how-section .center-title {
        font-size: 20px;
    }

    .future-theme .how-link {
        top: 2px;
        font-size: 10px;
    }

    .future-theme .steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .future-theme .step {
        grid-template-columns: 112px 1fr;
    }

    .future-theme .step-top {
        height: 103px;
    }

    .future-theme .step-icon {
        width: 96px;
        height: 96px;
    }

    .future-theme .step-line {
        top: 95px;
        left: 50%;
        width: 1px;
        height: 34px;
        border-top: 0;
        border-left: 1px dashed rgba(246, 189, 53, .62);
    }

    .future-theme .step-body {
        align-self: center;
    }

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

@media (max-width: 390px) {
    .future-theme .hero {
        min-height: 872px;
    }

    .future-theme .hero-layout {
        min-height: 872px;
    }

    .future-theme .hero-copy {
        padding-bottom: 345px;
    }

    .future-theme .hero h1 {
        font-size: 37px;
    }

    .future-theme .hero-actions {
        flex-direction: column;
        max-width: 210px;
    }

    .future-theme .hero-actions .btn {
        width: 100%;
    }

    .future-theme .hero-benefits {
        min-height: 235px;
    }

    .future-theme .hero-benefits strong {
        font-size: 10px;
    }

    .future-theme .hero-benefits span {
        font-size: 8px;
    }

    .future-theme .news-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   CLASSIC HEADER + HERO RESTORE
   ========================================================= */
.future-theme .site-header,
.future-theme .site-header .nav-wrap {
    height: 88px;
}

.future-theme .site-header {
    position: absolute;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .86), transparent);
}

.future-theme .site-header .container,
.future-theme .hero .container {
    width: min(1150px, calc(100% - 46px));
}

.future-theme .brand {
    gap: 10px;
    font-size: 24px;
    line-height: 1.05;
}

.future-theme .brand-coin {
    width: 70px;
    height: 100%;
    border: 0;
    box-shadow: none;
}

.future-theme .main-nav {
    position: static;
    top: auto;
    right: auto;
    left: auto;
    width: auto;
    margin: 0 0 0 auto;
    padding: 0;
    display: flex;
    grid-template-columns: none;
    align-items: center;
    justify-content: center;
    gap: clamp(15px, 1.55vw, 27px);
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
}

.future-theme .main-nav a,
.future-theme .main-nav a:nth-last-child(2) {
    position: relative;
    display: block;
    padding: 34px 0 29px;
    border: 0;
    color: #eee;
    font-size: 15px;
}

.future-theme .main-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 23px;
    display: block;
    width: 0;
    height: 2px;
    background: var(--gold);
    transform: translateX(-50%);
    transition: width .2s ease;
}

.future-theme .main-nav a:hover::after,
.future-theme .main-nav a.active::after {
    width: 100%;
}

.future-theme .nav-actions {
    display: flex;
    gap: 11px;
    margin-left: 18px;
}

.future-theme .nav-actions .btn:first-child {
    min-width: 82px;
    height: 38px;
    padding-inline: 14px;
    color: #eee;
    border: 1px solid rgba(217, 160, 32, .55);
    border-radius: 4px;
    background: rgba(10, 10, 8, .55);
    box-shadow: none;
    font-size: 12px;
    text-transform: uppercase;
}

.future-theme .nav-actions .btn:last-child {
    display: inline-flex;
}

.future-theme .menu-toggle {
    display: none;
}

.future-theme .hero {
    min-height: 650px;
    isolation: auto;
    background:
        linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .96) 29%, rgba(0, 0, 0, .48) 64%, rgba(0, 0, 0, .3) 100%),
        radial-gradient(circle at 72% 37%, rgba(172, 112, 8, .2), transparent 27%);
}

.future-theme .hero::before {
    display: none;
}

.future-theme .hero::after {
    display: block;
    z-index: 1;
    height: 180px;
    background: linear-gradient(to top, #030403, transparent);
}

.future-theme .hero-grid,
.future-theme .hero-world,
.future-theme .hero-lines,
.future-theme .hero-art {
    display: block;
}

.future-theme .hero-layout {
    min-height: 650px;
    display: grid;
    grid-template-columns: 46% 54%;
    grid-template-rows: none;
    align-items: center;
    padding-top: 88px;
}

.future-theme .hero-copy {
    position: relative;
    width: auto;
    max-width: none;
    align-self: auto;
    padding: 44px 0 15px 16px;
}

.future-theme .eyebrow {
    width: auto;
    margin: 0 0 16px;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 17px;
    line-height: 1.55;
    letter-spacing: 1.5px;
}

.future-theme .eyebrow span {
    display: block;
    width: 27px;
    height: 1px;
}

.future-theme .hero h1 {
    max-width: none;
    font-size: 45px;
    line-height: .99;
    letter-spacing: normal;
}

.future-theme .hero h1 em {
    display: inline;
}

.future-theme .hero-lead {
    max-width: none;
    margin: 24px 0 26px;
    color: #e6e6e2;
    font-size: 18px;
    line-height: 1.48;
}

.future-theme .hero-actions {
    gap: 12px;
}

.future-theme .hero-actions .btn {
    min-width: 152px;
    height: 44px;
    border-radius: 4px;
}

.future-theme .hero-actions .btn::after {
    display: none;
}

.future-theme .hero-benefits {
    position: static;
    min-height: 0;
    max-width: 460px;
    margin: 0 0 31px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.future-theme .hero-benefits>div,
.future-theme .hero-benefits>div:first-child {
    min-height: 79px;
    padding: 0 15px;
    display: block;
    border-right: 1px solid rgba(255, 255, 255, .09);
    border-bottom: 0;
}

.future-theme .hero-benefits>div:first-child {
    padding-left: 0;
}

.future-theme .hero-benefits>div:last-child {
    border-right: 0;
}

.future-theme .hero-benefits svg {
    width: 29px;
    height: 29px;
    margin: 0 0 9px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.future-theme .hero-benefits strong {
    display: block;
    font-size: 15px;
    line-height: 1.35;
}

.future-theme .hero-benefits span {
    display: none;
}

.future-theme .hero-art {
    position: relative;
    align-self: stretch;
    min-width: 0;
}

.future-theme .hero-coin {
    display: block;
    width: auto;
    max-width: none;
    height: 530px;
    right: 15%;
    top: -36px;
}

.future-theme .coin-aura {
    width: 470px;
    height: 470px;
    right: 7%;
    top: 26px;
}

@media (max-width: 1100px) {
    .future-theme .main-nav {
        gap: 15px;
    }

    .future-theme .nav-actions {
        margin-left: 2px;
    }

    .future-theme .hero-layout {
        grid-template-columns: 49% 51%;
    }

    .future-theme .hero-copy {
        padding-left: 0;
    }

    .future-theme .hero-benefits {
        max-width: 420px;
    }
}

@media (max-width: 900px) {

    .future-theme .site-header,
    .future-theme .site-header .nav-wrap {
        height: 76px;
    }

    .future-theme .site-header .container,
    .future-theme .hero .container {
        width: min(1150px, calc(100% - 46px));
    }

    .future-theme .brand {
        font-size: 12px;
    }

    .future-theme .brand-coin {
        width: 42px;
        height: 42px;
    }

    .future-theme .nav-actions {
        display: flex;
        margin-left: auto;
    }

    .future-theme .menu-toggle {
        display: block;
    }

    .future-theme .main-nav {
        position: absolute;
        top: 72px;
        right: 0;
        left: 0;
        width: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        margin: 0;
        padding: 8px;
        border: 1px solid rgba(240, 180, 40, .23);
        border-radius: 5px;
        background: rgba(6, 7, 6, .98);
        box-shadow: 0 20px 50px #000;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
    }

    .future-theme .main-nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .future-theme .main-nav a,
    .future-theme .main-nav a:nth-last-child(2) {
        display: block;
        padding: 13px 16px;
        border-bottom: 1px solid rgba(255, 255, 255, .05);
    }

    .future-theme .main-nav a::after {
        display: none;
    }

    .future-theme .hero {
        min-height: 870px;
    }

    .future-theme .hero-layout {
        min-height: 870px;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 460px 410px;
        padding-top: 76px;
    }

    .future-theme .hero-copy {
        align-self: center;
        width: auto;
        max-width: none;
        padding: 35px 0 0;
    }

    .future-theme .hero-copy br {
        display: none;
    }

    .future-theme .hero h1 {
        max-width: 650px;
    }

    .future-theme .hero-lead br {
        display: block;
    }

    .future-theme .hero-art {
        display: block;
        grid-row: 2;
        width: min(650px, 94vw);
        justify-self: center;
    }

    .future-theme .hero-coin {
        display: block;
        width: 510px;
        max-width: 83vw;
        height: auto;
        right: 50%;
        top: -113px;
    }

    .future-theme .coin-aura {
        width: 360px;
        height: 360px;
        right: 50%;
        top: -35px;
    }

    .future-theme .hero-benefits {
        position: static;
        min-height: 0;
        padding: 0;
    }
}

@media (max-width: 650px) {

    .future-theme .site-header .container,
    .future-theme .hero .container {
        width: min(100% - 28px, 540px);
    }

    .future-theme .hero {
        min-height: 815px;
    }

    .future-theme .hero-layout {
        min-height: 815px;
        grid-template-rows: 500px 315px;
    }

    .future-theme .hero-copy {
        padding: 29px 0 0;
    }

    .future-theme .hero h1 {
        max-width: none;
        font-size: 40px;
        letter-spacing: -1.2px;
    }

    .future-theme .hero h1 em {
        display: block;
    }

    .future-theme .hero-lead {
        max-width: none;
        margin: 18px 0 20px;
        font-size: 16px;
    }

    .future-theme .hero-benefits {
        min-height: 0;
        max-width: 100%;
        margin-bottom: 23px;
        grid-template-columns: repeat(2, 1fr);
    }

    .future-theme .hero-benefits>div,
    .future-theme .hero-benefits>div:first-child {
        min-height: 79px;
        padding: 0 8px;
        border-right: 1px solid rgba(255, 255, 255, .09);
        border-bottom: 0;
    }

    .future-theme .hero-benefits>div:first-child {
        padding-left: 0;
    }

    .future-theme .hero-benefits>div:last-child {
        border-right: 0;
    }

    .future-theme .hero-benefits svg {
        width: 25px;
        height: 25px;
    }

    .future-theme .hero-benefits strong {
        font-size: 16px;
    }

    .future-theme .hero-actions {
        max-width: none;
        flex-direction: row;
        gap: 9px;
    }

    .future-theme .hero-actions .btn {
        width: auto;
        min-width: 0;
        flex: 1;
        padding-inline: 10px;
    }

    .future-theme .hero-coin {
        width: 271px;
        top: -26px;
    }

    .future-theme .coin-aura {
        width: 290px;
        height: 290px;
        top: -15px;
    }
}

@media (max-width: 390px) {
    .future-theme .hero {
        min-height: 855px;
    }

    .future-theme .hero-layout {
        min-height: 855px;
        grid-template-rows: 555px 300px;
    }

    .future-theme .hero-copy {
        padding-bottom: 0;
    }

    .future-theme .hero-actions {
        max-width: none;
        flex-direction: column;
    }

    .future-theme .hero-actions .btn {
        width: 100%;
    }
}

/* Hero feature strip */
.future-theme .hero-feature-strip {
    position: relative;
    z-index: 6;
    padding: 18px 0 9px;
    background: #010202;
}

.future-theme .hero-feature-strip .hero-benefits {
    position: relative;
    min-height: 130px;
    max-width: none;
    margin: 0;
    padding: 17px 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 35px;
    background:
        radial-gradient(circle at 50% -25%, rgba(246, 189, 53, .07), transparent 42%),
        linear-gradient(115deg, rgba(13, 15, 14, .97), rgba(6, 8, 7, .96));
    box-shadow:
        inset 0 1px rgba(255, 255, 255, .028),
        0 24px 62px rgba(0, 0, 0, .36);
    overflow: hidden;
}

.future-theme .hero-feature-strip .hero-benefits::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(110deg, transparent 0 37%, rgba(246, 189, 53, .025) 50%, transparent 64%);
}

.future-theme .hero-feature-strip .benefit-strip-item,
.future-theme .hero-feature-strip .benefit-strip-item:first-child {
    position: relative;
    z-index: 1;
    min-height: 110px;
    padding: 9px 29px;
    display: flex;
    grid-template-columns: 62px 1fr;
    align-items: center;
    gap: 17px;
    border-right: 1px solid rgba(255, 255, 255, .09);
    border-bottom: 0;
}

.future-theme .hero-feature-strip .benefit-strip-item:first-child {
    padding-left: 19px;
}

.future-theme .hero-feature-strip .benefit-strip-item:last-child {
    border-right: 0;
}

.future-theme .hero-feature-strip .benefit-strip-item>svg {
    width: 62px;
    height: 62px;
    margin: 0;
    padding: 15px;
    color: var(--gold);
    border: 1.5px solid rgba(246, 189, 53, .8);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(246, 189, 53, .09), transparent 70%),
        #090b09;
    box-shadow:
        0 0 18px rgba(246, 189, 53, .08),
        inset 0 0 13px rgba(246, 189, 53, .045);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
}

.future-theme .hero-feature-strip .benefit-strip-item strong {
    display: block;
    color: #f4f4f1;
    font-size: 16px;
    line-height: 1.25;
    white-space: nowrap;
}

.hero-video {
    width: 100%;
    max-width: 550px;
    height: auto;
    object-fit: contain;
    display: block;
}

.future-theme .hero-feature-strip .benefit-strip-item span {
    display: block;
    margin-top: 10px;
    color: #afb1ad;
    font-size: 17px;
    line-height: 1.25;
    white-space: nowrap;
}

@media (max-width: 1000px) {
    .future-theme .hero-feature-strip .hero-benefits {
        min-height: 155px;
        padding-inline: 14px;
        border-radius: 29px;
    }

    .future-theme .hero-feature-strip .benefit-strip-item,
    .future-theme .hero-feature-strip .benefit-strip-item:first-child {
        min-height: 98px;
        padding-inline: 15px;
        grid-template-columns: 51px 1fr;
        gap: 11px;
    }

    .future-theme .hero-feature-strip .benefit-strip-item>svg {
        width: 51px;
        height: 51px;
        padding: 12px;
    }

    .future-theme .hero-feature-strip .benefit-strip-item strong {
        font-size: 13px;
    }

    .future-theme .hero-feature-strip .benefit-strip-item span {
        margin-top: 8px;
        font-size: 10px;
    }
}

@media (max-width: 700px) {
    .future-theme .hero-feature-strip {
        padding-top: 13px;
    }

    .future-theme .hero-feature-strip .hero-benefits {
        min-height: 278px;
        padding: 14px;
        grid-template-columns: repeat(2, 1fr);
        border-radius: 25px;
    }

    .future-theme .hero-feature-strip .benefit-strip-item,
    .future-theme .hero-feature-strip .benefit-strip-item:first-child {
        min-height: 122px;
        padding: 13px 14px;
        grid-template-columns: 50px 1fr;
        border-right: 1px solid rgba(255, 255, 255, .09);
    }

    .future-theme .hero-feature-strip .benefit-strip-item:nth-child(2),
    .future-theme .hero-feature-strip .benefit-strip-item:nth-child(4) {
        border-right: 0;
    }

    .future-theme .hero-feature-strip .benefit-strip-item:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, .09);
    }
}

@media (max-width: 430px) {
    .future-theme .hero-feature-strip .hero-benefits {
        padding: 9px;
    }

    .future-theme .hero-feature-strip .benefit-strip-item,
    .future-theme .hero-feature-strip .benefit-strip-item:first-child {
        padding: 11px 8px;
        grid-template-columns: 43px 1fr;
        gap: 8px;
    }

    .future-theme .hero-feature-strip .benefit-strip-item>svg {
        width: 43px;
        height: 43px;
        padding: 10px;
    }

    .future-theme .hero-feature-strip .benefit-strip-item strong {
        font-size: 11px;
        white-space: normal;
    }

    .future-theme .hero-feature-strip .benefit-strip-item span {
        font-size: 8px;
        white-space: normal;
    }
}

/* =========================================================
   ABOUT VIDEO + RESPONSIVE HEADER FINAL FIX
   ========================================================= */
.future-theme .about-section {
    margin-top: 42px;
    padding: 0;
    overflow: visible;
    background: none;
}

.future-theme .about-layout {
    position: relative;
    min-height: 440px;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
    align-items: stretch;
    padding: 0;
    border: 1px solid rgba(246, 189, 53, .42);
    border-radius: 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at 84% 23%, rgba(246, 189, 53, .09), transparent 33%),
        linear-gradient(135deg, #080a09, #040605);
    box-shadow:
        0 26px 65px rgba(0, 0, 0, .34),
        inset 0 1px rgba(255, 255, 255, .025);
}

.future-theme .about-art {
    position: relative;
    isolation: isolate;
    min-width: 0;
    min-height: 440px;
    overflow: hidden;
    background: #030403;
    filter: none;
}

.future-theme .about-art::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent 52%, rgba(5, 7, 6, .42) 74%, #060807 100%),
        linear-gradient(to top, rgba(3, 4, 3, .78), transparent 38%),
        linear-gradient(to bottom, rgba(0, 0, 0, .28), transparent 27%);
}

.future-theme .about-art::after {
    display: none;
}

.future-theme .about-art .hero-video {
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 100%;
    display: block;
    border: 0;
    object-fit: cover;
    object-position: center center;
    background: #030403;
}

.future-theme .about-art .about-halo {
    position: absolute;
    z-index: 3;
    right: -45px;
    bottom: -80px;
    left: auto;
    top: auto;
    width: 260px;
    height: 260px;
    display: block;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(246, 189, 53, .18), transparent 68%);
    filter: blur(10px);
    pointer-events: none;
}

.future-theme .about-art .gold-ground {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
    left: 0;
    height: 72px;
    display: block;
    background: linear-gradient(to top, rgba(246, 189, 53, .09), transparent);
    transform: none;
    mask-image: none;
    pointer-events: none;
}

.future-theme .about-copy {
    position: relative;
    z-index: 4;
    align-self: center;
    min-width: 0;
    padding: 48px 46px 45px 34px;
}

.future-theme .about-copy h2 {
    max-width: 590px;
    margin: 0;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.12;
    letter-spacing: -.75px;
}

.future-theme .about-copy h2 small {
    display: block;
    margin-bottom: 13px;
    color: var(--gold);
    font-size: 11px;
    line-height: 1;
    letter-spacing: 1.2px;
}

.future-theme .about-copy p {
    max-width: 540px;
    margin: 17px 0 24px;
    color: #c5c7c3;
    font-size: 14px;
    line-height: 1.7;
}

.future-theme .about-copy ul {
    width: 100%;
    margin: 0 0 26px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
}

.future-theme .about-copy li,
.future-theme .about-copy li:nth-child(3) {
    min-width: 0;
    min-height: 64px;
    margin: 0;
    padding: 5px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-right: 1px solid rgba(246, 189, 53, .3);
    color: #e4e5e1;
    font-size: 11px;
    line-height: 1.35;
}

.future-theme .about-copy li:first-child {
    padding-left: 0;
}

.future-theme .about-copy li:nth-child(3) {
    padding-right: 0;
    border-right: 0;
}

.future-theme .about-copy li:nth-child(4) {
    display: none;
}

.future-theme .about-copy li svg {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    padding: 9px;
    color: var(--gold);
    border: 1px solid rgba(246, 189, 53, .68);
    border-radius: 50%;
    background: rgba(246, 189, 53, .035);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.future-theme .about-copy li>span {
    min-width: 0;
    color: #e4e5e1;
    overflow-wrap: anywhere;
}

.future-theme .about-copy .btn {
    min-width: 158px;
    height: 46px;
    border-radius: 8px;
}

/* Intermediate header: prevent navigation collision on small laptops/tablets. */
@media (max-width: 1180px) and (min-width: 1081px) {
    .future-theme .brand {
        font-size: 18px;
    }

    .future-theme .brand-coin {
        width: 54px;
        height: 54px;
    }

    .future-theme .main-nav {
        gap: 12px;
    }

    .future-theme .main-nav a,
    .future-theme .main-nav a:nth-last-child(2) {
        font-size: 12px;
    }

    .future-theme .nav-actions {
        margin-left: 7px;
    }

    .future-theme .nav-actions .btn:last-child {
        min-width: 122px;
        padding-inline: 12px;
        font-size: 10px;
    }
}

/* Collapsed header begins before links can overlap. */
@media (max-width: 1280px) {

    .future-theme .site-header,
    .future-theme .site-header .nav-wrap {
        height: 76px;
    }

    .future-theme .site-header {
        z-index: 60;
    }

    .future-theme .site-header .container {
        width: min(100% - 32px, 1010px);
    }

    .future-theme .nav-wrap {
        gap: 10px;
    }

    .future-theme .brand {
        flex: 0 0 auto;
        gap: 9px;
        font-size: 13px;
        line-height: 1.02;
    }

    .future-theme .brand-coin {
        width: 44px;
        height: 44px;
    }

    .future-theme .nav-actions {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-left: auto;
    }

    .future-theme .nav-actions .btn:first-child {
        display: none !important;
    }

    .future-theme .nav-actions .btn:last-child {
        min-width: 124px;
        height: 40px;
        padding: 0 14px;
        display: inline-flex;
        border-radius: 7px;
        font-size: 10px;
        white-space: nowrap;
    }

    .future-theme .menu-toggle {
        flex: 0 0 41px;
        width: 41px;
        height: 41px;
        margin: 0;
        display: block;
        padding: 8px;
        border: 1px solid rgba(246, 189, 53, .27);
        border-radius: 7px;
        background: rgba(7, 8, 7, .7);
    }

    .future-theme .main-nav {
        position: absolute;
        top: 68px;
        right: 0;
        left: 0;
        width: auto;
        max-height: calc(100vh - 86px);
        margin: 0;
        padding: 9px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        overflow-y: auto;
        border: 1px solid rgba(246, 189, 53, .27);
        border-radius: 10px;
        background: rgba(5, 7, 6, .98);
        box-shadow: 0 24px 60px rgba(0, 0, 0, .72);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
    }

    .future-theme .main-nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .future-theme .main-nav a,
    .future-theme .main-nav a:nth-last-child(2) {
        display: block;
        padding: 13px 15px;
        border-bottom: 1px solid rgba(255, 255, 255, .055);
        font-size: 11px;
    }

    .future-theme .main-nav a::after {
        display: none;
    }
}

@media (max-width: 860px) {
    .future-theme .about-layout {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .future-theme .about-art {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .future-theme .about-art::before {
        background:
            linear-gradient(to top, #060807 0%, rgba(6, 8, 7, .58) 25%, transparent 58%),
            linear-gradient(to bottom, rgba(0, 0, 0, .2), transparent 25%);
    }

    .future-theme .about-copy {
        padding: 34px 34px 37px;
    }

    .future-theme .about-copy h2 {
        max-width: 650px;
        font-size: clamp(29px, 5vw, 38px);
    }

    .future-theme .about-copy p {
        max-width: 650px;
    }
}

@media (max-width: 600px) {

    .future-theme .site-header,
    .future-theme .site-header .nav-wrap {
        height: 68px;
    }

    .future-theme .site-header .container {
        width: calc(100% - 22px);
    }

    .future-theme .nav-wrap {
        gap: 7px;
    }

    .future-theme .brand {
        gap: 7px;
        font-size: 22px;
        letter-spacing: 0;
    }

    .future-theme .brand-coin {
        width: 55px;
        height: 100%;
    }

    .future-theme .nav-actions {
        gap: 6px;
    }

    .future-theme .nav-actions .btn:last-child {
        min-width: 104px;
        height: 36px;
        padding-inline: 10px;
        font-size: 9px;
    }

    .future-theme .menu-toggle {
        flex-basis: 36px;
        width: 36px;
        height: 36px;
        padding: 7px;
    }

    .future-theme .main-nav {
        top: 61px;
        grid-template-columns: 1fr;
    }

    .future-theme .about-section {
        margin-top: 28px;
    }

    .future-theme .about-layout {
        border-radius: 17px;
    }

    .future-theme .about-art {
        aspect-ratio: 4 / 3;
    }

    .future-theme .about-art .hero-video {
        object-position: center center;
    }

    .future-theme .about-copy {
        padding: 27px 20px 29px;
    }

    .future-theme .about-copy h2 {
        font-size: clamp(25px, 8.1vw, 32px);
        line-height: 1.13;
    }

    .future-theme .about-copy h2 br {
        display: none;
    }

    .future-theme .about-copy p {
        margin: 14px 0 20px;
        font-size: 12px;
        line-height: 1.65;
    }

    .future-theme .about-copy ul {
        grid-template-columns: 1fr;
        gap: 9px;
        margin-bottom: 23px;
    }

    .future-theme .about-copy li,
    .future-theme .about-copy li:nth-child(3) {
        min-height: 48px;
        padding: 5px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .075);
        font-size: 11px;
    }

    .future-theme .about-copy li:last-child {
        border-bottom: 0;
    }

    .future-theme .about-copy li svg {
        flex-basis: 36px;
        width: 36px;
        height: 36px;
        padding: 8px;
    }

    .future-theme .about-copy .btn {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 365px) {
    .future-theme .brand>span:last-child {
        max-width: 58px;
    }

    .future-theme .nav-actions .btn:last-child {
        min-width: 92px;
        padding-inline: 7px;
        font-size: 8px;
    }

    .future-theme .menu-toggle {
        flex-basis: 34px;
        width: 34px;
        height: 34px;
    }
}

.hero-price-chip {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 8px 0 18px;
    padding: 8px 14px;
    border: 1px solid rgba(245, 187, 50, .35);
    border-radius: 999px;
    background: rgba(0,0,0,.35);
}
.hero-price-chip small { color: var(--gold); letter-spacing: .08em; font-size: 10px; }
.hero-price-chip strong { font-size: 18px; }
.hero-price-chip a { color: var(--gold); font-weight: 800; font-size: 12px; }
.coin-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 18px;
}
.coin-facts article { padding: 16px 18px; }
.coin-facts span { color: var(--muted); font-size: 11px; letter-spacing: .08em; }
.coin-facts strong { display: block; margin-top: 6px; font-size: 18px; }
.contract-line { margin-top: 16px; word-break: break-all; }
.contract-line a { color: var(--gold); }
.chart-frame { margin-top: 18px; overflow: hidden; min-height: 420px; }
.chart-frame iframe { width: 100%; height: 420px; border: 0; }
.chart-actions { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
@media (max-width: 800px) {
    .coin-facts { grid-template-columns: 1fr 1fr; }
    .chart-frame iframe { height: 320px; }
}

@media (max-width: 720px) {
    body {
        padding-bottom: 84px;
    }
    .hero-price-chip {
        max-width: 100%;
        flex-wrap: wrap;
    }
    .coin-facts {
        grid-template-columns: 1fr;
    }
    .chart-actions .btn {
        flex: 1 1 160px;
        justify-content: center;
    }
}

@media (max-width: 1320px) and (min-width: 1281px) {
    .future-theme .main-nav {
        gap: 10px;
    }
    .future-theme .main-nav a,
    .future-theme .main-nav a:nth-last-child(2) {
        font-size: 12px;
    }
}

/* =========================================================
   Homepage UI polish — headings, news, footer readability
   ========================================================= */
.future-theme .hero-price-chip {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin: 16px 0 20px;
    padding: 10px 18px;
    border: 1px solid rgba(246, 189, 53, .55);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(246, 189, 53, .16), rgba(0, 0, 0, .42));
    box-shadow: 0 0 28px rgba(246, 189, 53, .14);
}

.future-theme .hero-price-chip small {
    color: var(--gold);
    letter-spacing: .14em;
    font-size: 11px;
    font-weight: 800;
}

.future-theme .hero-price-chip strong {
    color: #fff;
    font-size: 22px;
    letter-spacing: .02em;
    text-shadow: 0 0 18px rgba(246, 189, 53, .28);
}

.future-theme .hero-price-chip a {
    color: #171002;
    background: linear-gradient(120deg, #d99d21, #f7cd62);
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-decoration: none;
}

.future-theme .hero-price-chip a:hover {
    filter: brightness(1.08);
}

.future-theme .section-heading {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 0 22px;
    padding: 0 0 0 26px;
    min-height: 28px;
}

.future-theme .section-heading::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 15px;
    height: 22px;
    margin-top: -11px;
    border-left: 2px solid var(--gold);
    transform: skewX(-35deg);
    box-shadow: 0 0 14px rgba(246, 189, 53, .55);
}

.future-theme .section-heading h2 {
    margin: 0;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1.15;
    text-align: left;
    text-transform: uppercase;
    text-shadow: 0 0 22px rgba(246, 189, 53, .2);
}

.future-theme .market-section .section-heading,
.future-theme .coin-facts-section .section-heading,
.future-theme .news-section .section-heading {
    margin-bottom: 24px;
}

.future-theme .market-card.is-featured {
    border-color: rgba(246, 189, 53, .58);
    box-shadow: 0 0 0 1px rgba(246, 189, 53, .22), 0 14px 32px rgba(246, 189, 53, .1);
}

.future-theme .market-card.is-featured .market-price span {
    color: #fff;
}

.future-theme .coin-facts-section {
    padding-top: 42px;
}

.future-theme .coin-facts article span {
    color: #c9c9c2;
}

.future-theme .coin-facts article strong {
    color: #fff;
}

.future-theme .contract-line {
    margin-top: 18px;
    color: #d8d8d2;
    font-size: 14px;
    line-height: 1.6;
}

.future-theme .contract-meta {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.future-theme .contract-address-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
    max-width: 100%;
}

.future-theme .contract-label {
    color: #f0f0ea;
    font-size: 14px;
    font-weight: 700;
}

.future-theme .contract-address {
    color: var(--gold);
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    word-break: break-all;
}

.future-theme .contract-copy {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    padding: 0;
    color: var(--gold);
    border: 1px solid rgba(246, 189, 53, .55);
    border-radius: 8px;
    background: rgba(246, 189, 53, .1);
    cursor: pointer;
}

.future-theme .contract-copy:hover {
    color: #171002;
    background: linear-gradient(120deg, #d99d21, #f7cd62);
    border-color: #f7cd62;
}

.future-theme .contract-copy svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.future-theme .contract-scan-label {
    margin: 6px 0 0;
    color: #f0f0ea;
    font-size: 14px;
    font-weight: 700;
}

.future-theme .contract-scan-link {
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
    word-break: break-all;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.future-theme .contract-scan-link:hover {
    color: var(--gold-soft);
}

.future-theme .contract-line a {
    color: var(--gold);
    font-weight: 700;
    word-break: break-all;
}

.future-theme .news-section .section-heading h2 {
    letter-spacing: .12em;
}

.future-theme .news-content {
    padding: 16px 16px 18px;
}

.future-theme .news-content time {
    display: block;
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.future-theme .news-content h3 {
    margin: 10px 0 12px;
    min-height: 42px;
    color: #f4f4f0;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.4;
}

.future-theme .news-content a {
    color: var(--gold);
    font-size: 12px;
}

.future-theme .feature-card h3 {
    color: #fff;
    font-size: 14px;
    letter-spacing: .04em;
}

.future-theme .feature-card p {
    max-width: 240px;
    color: #d6d6d0;
    font-size: 13px;
}

.future-theme .step-body h3 {
    color: #fff;
}

.future-theme .step-body p {
    color: #d2d2cc;
}

.future-theme .site-footer {
    margin-top: 32px;
    border-top: 1px solid rgba(246, 189, 53, .16);
    background:
        radial-gradient(circle at 18% 0, rgba(225, 164, 28, .1), transparent 36%),
        #080a09;
}

.future-theme .footer-grid {
    gap: 40px 48px;
    padding: 48px 0 36px;
    align-items: start;
}

.future-theme .site-footer h3 {
    margin: 0 0 14px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .16em;
    line-height: 1.3;
    text-transform: uppercase;
}

.future-theme .site-footer p {
    margin: 0;
    color: #e6e6e0;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 400;
}

.future-theme .footer-update p {
    max-width: 360px;
    color: #deded8;
}

.future-theme .footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.future-theme .footer-col > a {
    width: max-content;
    color: #e2e2dc;
    font-size: 12px;
    line-height: 1.45;
    font-weight: 500;
    text-decoration: none;
    transition: color .2s ease;
}

.future-theme .footer-col > a:hover {
    color: var(--gold);
}

.future-theme .subscribe-form {
    width: min(100%, 360px);
    height: 44px;
    margin-top: 18px;
}

.future-theme .subscribe-form input {
    color: #f3f3ef;
    font-size: 12px;
    background: #101210;
}

.future-theme .subscribe-form input::placeholder {
    color: #9a9a92;
}

.future-theme .subscribe-form button {
    width: 118px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
}

.future-theme .footer-follow .socials,
.future-theme .socials {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 2px;
}

.future-theme .socials a.social-btn,
.future-theme a.social-btn {
    width: 44px !important;
    height: 44px;
    min-width: 44px;
    padding: 0;
    display: grid !important;
    place-items: center;
    border-radius: 50%;
    color: var(--gold) !important;
    border: 1px solid rgba(246, 189, 53, .6);
    background: rgba(246, 189, 53, .1);
    font-size: 0 !important;
    line-height: 0 !important;
    text-decoration: none;
}

.future-theme a.social-btn:hover {
    color: #171002 !important;
    background: linear-gradient(120deg, #d99d21, #f7cd62);
    border-color: #f7cd62;
}

.future-theme a.social-btn svg {
    width: 18px;
    height: 18px;
    min-width: 18px;
    display: block;
    overflow: visible;
    fill: currentColor !important;
    stroke: none !important;
}

.future-theme a.social-btn svg path {
    fill: currentColor;
    stroke: none;
}

.future-theme .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.future-theme .footer-bottom .container {
    min-height: 68px;
    gap: 16px;
}

.future-theme .footer-brand span:last-child {
    color: #f0f0ea;
    font-size: 12px;
    letter-spacing: .04em;
}

.future-theme .footer-bottom p {
    margin: 0;
    color: #cfcfc8;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 400;
}

@media (max-width: 800px) {
    .future-theme .section-heading h2 {
        font-size: 20px;
    }

    .future-theme .hero-price-chip {
        gap: 10px;
        padding: 9px 14px;
    }

    .future-theme .hero-price-chip strong {
        font-size: 18px;
    }

    .future-theme .footer-grid {
        gap: 32px 24px;
        padding: 36px 0 28px;
    }
}

@media (max-width: 720px) {
    .future-theme .footer-bottom p {
        font-size: 12px;
        text-align: center;
    }
}

html.future-theme,
html.future-theme body {
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.5;
}

.future-theme .brand {
    font-size: 16px;
}

.future-theme .nav a,
.future-theme .nav .dropdown-toggle {
    font-size: 12px;
}

.future-theme .nav-cta {
    font-size: 11px;
}

.future-theme .ticker-item {
    font-size: 11px;
}

.future-theme .eyebrow {
    font-size: 11px;
    letter-spacing: .18em;
}

.future-theme .section-heading {
    font-size: 20px;
}

.future-theme .hero-kicker {
    font-size: 11px;
}

.future-theme .hero-copy h1 {
    font-size: clamp(32px, 4.4vw, 48px);
}

.future-theme .hero-lead {
    color: #e8e8e2;
    font-size: 14px;
    line-height: 1.65;
}

.future-theme .hero-actions .btn,
.future-theme .hero-copy .hero-actions .btn {
    min-width: 148px;
    height: 44px;
    font-size: 12px;
    font-weight: 800;
}

.future-theme .hero-copy .hero-benefits strong {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .03em;
    line-height: 1.25;
}

.future-theme .hero-benefits span {
    color: #d4d4ce;
    font-size: 11px;
}

.future-theme .hero-live-price {
    font-size: 12px;
}

.future-theme .hero-live-price strong {
    font-size: 18px;
}

.future-theme .hero-feature-strip article strong {
    font-size: 12px;
}

.future-theme .hero-feature-strip article p {
    font-size: 11px;
}

.future-theme .hero-stat span,
.future-theme .hero-stat small {
    font-size: 11px;
}

.future-theme .hero-stat strong {
    font-size: 20px;
}

.future-theme .about-copy h2 {
    font-size: clamp(22px, 2.4vw, 32px);
}

.future-theme .about-copy h2 small {
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
}

.future-theme .about-copy p {
    max-width: 36em;
    margin: 14px 0 20px;
    color: #ecece6;
    font-size: 13px;
    line-height: 1.65;
    font-weight: 400;
}

.future-theme .about-copy li,
.future-theme .about-copy li:nth-child(3) {
    min-height: 58px;
    gap: 10px;
    color: #f4f4ee;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.future-theme .about-copy li > span {
    color: #f4f4ee;
    font-size: 12px;
    line-height: 1.3;
    overflow-wrap: normal;
}

.future-theme .about-copy li svg {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
}

.future-theme .about-copy .btn {
    min-width: 150px;
    height: 42px;
    font-size: 12px;
}

.future-theme .feature-card h3 {
    font-size: 14px;
}

.future-theme .feature-card p {
    max-width: 280px;
    color: #e2e2dc;
    font-size: 12px;
    line-height: 1.6;
}

.future-theme .step-body h3 {
    font-size: 14px;
}

.future-theme .step-body p {
    max-width: 230px;
    color: #dcdcd6;
    font-size: 12px;
}

.future-theme .market-head strong {
    font-size: 12px;
}

.future-theme .market-price {
    font-size: 16px;
}

.future-theme .market-meta,
.future-theme .market-change {
    font-size: 11px;
}

.future-theme .news-content h3 {
    font-size: 14px;
}

.future-theme .news-content p,
.future-theme .news-content a {
    font-size: 12px;
}

.future-theme .contract-copy p,
.future-theme .contract-meta,
.future-theme .token-copy p,
.future-theme .faq-item p,
.future-theme .cta-copy p {
    font-size: 13px;
}

.future-theme .cta-copy h2 {
    font-size: clamp(22px, 2.6vw, 32px);
}

.future-theme .faq-item h3,
.future-theme .token-copy h3 {
    font-size: 15px;
}

.future-theme .site-footer {
    font-size: 13px;
}

.future-theme .footer-col h4,
.future-theme .footer-follow h4 {
    font-size: 13px;
}

.future-theme .footer-col p,
.future-theme .footer-col a,
.future-theme .footer-col li,
.future-theme .site-footer > .container > div:not(:first-child) > a,
.future-theme .footer-update p,
.future-theme .footer-bottom p {
    font-size: 12px;
}

.future-theme .footer-update p {
    font-size: 13px;
    line-height: 1.6;
}

.future-theme .subscribe-form input,
.future-theme .subscribe-form button {
    font-size: 12px;
}

.future-theme .economics-card h2 {
    font-size: 18px;
    letter-spacing: .12em;
}

.future-theme .donut-center small {
    font-size: 10px;
    letter-spacing: .08em;
}

.future-theme .donut-center strong {
    font-size: 14px;
    line-height: 1.2;
}

.future-theme .donut-center b {
    font-size: 13px;
}

.future-theme .token-list li {
    margin: 6px 0;
    font-size: 13px;
}

.future-theme .token-list strong {
    font-size: 15px;
}

.future-theme .token-list span,
.future-theme .token-list a {
    font-size: 14px;
}

.future-theme .roadmap-layout li {
    margin: 16px 0;
    font-size: 13px;
}

.future-theme .roadmap-layout b {
    font-size: 15px;
}

.future-theme .roadmap-layout span {
    font-size: 14px;
}

@media (max-width: 960px) {
    .future-theme .about-copy p,
    .future-theme .about-copy li,
    .future-theme .about-copy li:nth-child(3),
    .future-theme .about-copy li > span {
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    .future-theme .about-copy p {
        margin: 12px 0 18px;
        font-size: 13px;
        line-height: 1.6;
    }

    .future-theme .about-copy li,
    .future-theme .about-copy li:nth-child(3) {
        min-height: 48px;
        font-size: 12px;
    }

    .future-theme .about-copy li > span {
        font-size: 12px;
    }
}

/* =========================================================
   Homepage viewport alignment (final)
   Tablet + phone: even gutters, auto-height stacks, no overflow
   ========================================================= */
html.future-theme,
html.future-theme body {
    overflow-x: hidden;
}

.future-theme .mobile-dock {
    display: none !important;
}

.future-theme img,
.future-theme svg,
.future-theme iframe,
.future-theme video {
    max-width: 100%;
}

.future-theme .section,
.future-theme .hero-copy,
.future-theme .about-copy,
.future-theme .token-layout,
.future-theme .roadmap-layout,
.future-theme .markets-grid,
.future-theme .features-grid,
.future-theme .news-grid,
.future-theme .footer-grid,
.future-theme .economics-card {
    min-width: 0;
}

@media (max-width: 1280px) {
    .future-theme body {
        padding-bottom: 0 !important;
    }

    .future-theme .container,
    .future-theme .site-header .container,
    .future-theme .hero .container {
        width: min(1100px, calc(100% - 40px));
    }

    .future-theme .section {
        padding-top: 40px;
        padding-bottom: 8px;
    }
}

@media (max-width: 1100px) {
    .future-theme .hero-feature-strip .hero-benefits {
        min-height: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        border-radius: 22px;
    }

    .future-theme .hero-feature-strip .benefit-strip-item,
    .future-theme .hero-feature-strip .benefit-strip-item:first-child {
        min-height: 88px;
        padding: 14px 16px;
        display: flex;
        align-items: center;
        gap: 12px;
        border-right: 1px solid rgba(255, 255, 255, .09);
        border-bottom: 1px solid rgba(255, 255, 255, .09);
    }

    .future-theme .hero-feature-strip .benefit-strip-item:nth-child(2n) {
        border-right: 0;
    }

    .future-theme .hero-feature-strip .benefit-strip-item:nth-child(n+3) {
        border-bottom: 0;
    }

    .future-theme .hero-feature-strip .benefit-strip-item strong,
    .future-theme .hero-feature-strip .benefit-strip-item span {
        white-space: normal;
    }

    .future-theme .markets-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        overflow: visible;
    }

    .future-theme .market-card,
    .future-theme .market-card:nth-child(4),
    .future-theme .market-card:nth-child(5) {
        flex: none;
        min-height: 168px;
        width: auto;
    }

    .future-theme .steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 16px;
    }

    .future-theme .step-line {
        display: none;
    }

    .future-theme .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
}

@media (max-width: 900px) {
    .future-theme .container,
    .future-theme .site-header .container,
    .future-theme .hero .container {
        width: calc(100% - 32px);
    }

    .future-theme .site-header,
    .future-theme .site-header .nav-wrap,
    .future-theme .nav-wrap {
        height: 72px;
    }

    .future-theme .brand {
        font-size: 13px;
        line-height: 1.05;
        gap: 8px;
    }

    .future-theme .brand-coin {
        width: 40px;
        height: 40px;
    }

    .future-theme .nav-actions .btn:last-child {
        min-width: 0;
        height: 36px;
        padding: 0 12px;
        font-size: 10px;
    }

    .future-theme .main-nav {
        top: 64px;
        left: 0;
        right: 0;
        width: auto;
        grid-template-columns: 1fr 1fr;
    }

    .future-theme .hero,
    .future-theme .hero-layout {
        min-height: 0 !important;
        height: auto;
    }

    .future-theme .hero-layout {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        align-items: start;
        gap: 8px;
        padding: 80px 0 12px;
    }

    .future-theme .hero-copy {
        width: 100%;
        max-width: none;
        padding: 8px 0 12px !important;
        align-self: start;
    }

    .future-theme .hero-copy br,
    .future-theme .hero-copy h1 br {
        display: initial;
    }

    .future-theme .hero-copy h1,
    .future-theme .hero-copy h1 em {
        display: block;
        max-width: 16ch;
        font-size: clamp(28px, 8vw, 40px);
        line-height: 1.05;
    }

    .future-theme .eyebrow {
        margin-bottom: 12px;
        font-size: 10px;
    }

    .future-theme .hero-lead {
        max-width: 36em;
        margin: 12px 0 16px;
        font-size: 13px;
        line-height: 1.6;
    }

    .future-theme .hero-price-chip {
        max-width: 100%;
        margin: 10px 0 14px;
        padding: 8px 12px;
        gap: 8px;
        flex-wrap: wrap;
    }

    .future-theme .hero-price-chip strong {
        font-size: 16px;
    }

    .future-theme .hero-copy .hero-benefits {
        max-width: 100%;
        margin: 0 0 16px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 0;
    }

    .future-theme .hero-copy .hero-benefits > div,
    .future-theme .hero-copy .hero-benefits > div:first-child {
        min-height: 0;
        padding: 8px 10px 8px 0;
        border-bottom: 0;
    }

    .future-theme .hero-copy .hero-benefits strong {
        font-size: 10px;
    }

    .future-theme .hero-actions {
        max-width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }

    .future-theme .hero-actions .btn,
    .future-theme .hero-copy .hero-actions .btn {
        flex: 1 1 140px;
        min-width: 0;
        height: 42px;
    }

    .future-theme .hero-art {
        position: relative;
        grid-row: auto;
        width: 100%;
        max-width: 100%;
        height: 220px;
        justify-self: center;
        overflow: hidden;
    }

    .future-theme .hero-coin {
        display: block;
        width: min(220px, 58vw);
        max-width: 220px;
        height: auto;
        right: 50%;
        top: 8px;
        transform: translateX(50%);
        animation: none;
    }

    .future-theme .coin-aura {
        width: 180px;
        height: 180px;
        right: 50%;
        top: 28px;
        transform: translateX(50%);
    }

    .future-theme .coin-plinth,
    .future-theme .coin-rings,
    .future-theme .coin-spark {
        display: none;
    }

    .future-theme .hero-feature-strip {
        padding: 8px 0 4px;
    }

    .future-theme .about-layout {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .future-theme .about-art {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .future-theme .about-copy {
        padding: 24px 22px 26px;
    }

    .future-theme .about-copy h2 {
        max-width: none;
        font-size: clamp(22px, 5vw, 32px);
    }

    .future-theme .about-copy ul {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .future-theme .about-copy li,
    .future-theme .about-copy li:nth-child(3) {
        min-height: 0;
        padding: 8px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .future-theme .economics-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .future-theme .economics-card {
        min-height: 0;
        overflow: hidden;
        padding: 20px 18px;
    }

    .future-theme .last-road,
    .future-theme .roadmap-mountain {
        display: none;
    }

    .future-theme .token-layout,
    .future-theme .roadmap-layout {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .future-theme .donut {
        width: 168px;
        height: 168px;
        margin: 8px auto 4px;
    }

    .future-theme .token-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4px 12px;
        margin: 8px 0 0;
    }

    .future-theme .roadmap-layout ol {
        padding-left: 22px;
        margin: 8px 0 0;
    }

    .future-theme .roadmap-layout li {
        margin: 10px 0;
        display: flex;
        flex-wrap: wrap;
        gap: 6px 10px;
        align-items: baseline;
    }

    .future-theme .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px 20px;
        padding: 32px 0 24px;
    }

    .future-theme .footer-update {
        grid-column: 1 / -1;
    }

    .future-theme .subscribe-form {
        width: 100%;
        max-width: 100%;
    }

    .future-theme .chart-frame,
    .future-theme .chart-frame iframe {
        min-height: 280px;
        height: 280px;
    }

    .future-theme .chart-actions {
        gap: 8px;
    }

    .future-theme .chart-actions .btn {
        flex: 1 1 140px;
        min-width: 0;
    }

    .future-theme .coin-facts {
        grid-template-columns: 1fr 1fr;
    }

    .future-theme .contract-line,
    .future-theme .contract-label,
    .future-theme .contract-address,
    .future-theme .contract-scan-label {
        font-size: 13px;
    }

    .future-theme .contract-scan-link {
        font-size: 12px;
        overflow-wrap: anywhere;
    }
}

@media (max-width: 600px) {
    .future-theme .container,
    .future-theme .site-header .container,
    .future-theme .hero .container {
        width: calc(100% - 24px);
    }

    .future-theme .site-header,
    .future-theme .site-header .nav-wrap,
    .future-theme .nav-wrap {
        height: 64px;
    }

    .future-theme .brand {
        font-size: 12px;
        max-width: 46%;
    }

    .future-theme .brand-coin {
        width: 34px;
        height: 34px;
    }

    .future-theme .nav-actions .btn:last-child {
        min-width: 0;
        height: 34px;
        padding: 0 9px;
        font-size: 9px;
    }

    .future-theme .menu-toggle {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .future-theme .main-nav {
        top: 58px;
        grid-template-columns: 1fr;
    }

    .future-theme .hero-layout {
        padding-top: 72px;
    }

    .future-theme .hero-copy h1,
    .future-theme .hero-copy h1 em {
        max-width: none;
        font-size: clamp(26px, 8.4vw, 34px);
    }

    .future-theme .hero-art {
        height: 180px;
    }

    .future-theme .hero-coin {
        width: min(168px, 52vw);
        max-width: 168px;
        top: 4px;
    }

    .future-theme .hero-feature-strip .hero-benefits {
        grid-template-columns: 1fr;
        padding: 6px 8px;
        border-radius: 16px;
    }

    .future-theme .hero-feature-strip .benefit-strip-item,
    .future-theme .hero-feature-strip .benefit-strip-item:first-child,
    .future-theme .hero-feature-strip .benefit-strip-item:nth-child(2n),
    .future-theme .hero-feature-strip .benefit-strip-item:nth-child(n+3) {
        min-height: 0;
        padding: 12px 10px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .09);
    }

    .future-theme .hero-feature-strip .benefit-strip-item:last-child {
        border-bottom: 0;
    }

    .future-theme .hero-feature-strip .benefit-strip-item > svg {
        width: 40px;
        height: 40px;
        padding: 9px;
        flex: 0 0 40px;
    }

    .future-theme .hero-feature-strip .benefit-strip-item strong {
        font-size: 13px;
    }

    .future-theme .hero-feature-strip .benefit-strip-item span {
        margin-top: 4px;
        font-size: 11px;
    }

    .future-theme .section-heading {
        padding-left: 20px;
        margin-bottom: 16px;
    }

    .future-theme .section-heading h2 {
        font-size: 18px;
        letter-spacing: .06em;
    }

    .future-theme .markets-grid,
    .future-theme .features-grid,
    .future-theme .news-grid,
    .future-theme .coin-facts {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        overflow: visible;
    }

    .future-theme .market-card {
        flex: none;
        width: 100%;
        min-height: 0;
        padding: 14px;
    }

    .future-theme .feature-card,
    .future-theme .news-card {
        min-height: 0;
    }

    .future-theme .feature-card p,
    .future-theme .step-body p {
        max-width: none;
    }

    .future-theme .news-content h3 {
        min-height: 0;
    }

    .future-theme .news-img {
        height: 160px;
    }

    .future-theme .steps {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .future-theme .step {
        display: grid;
        grid-template-columns: 72px minmax(0, 1fr);
        align-items: center;
        gap: 10px;
    }

    .future-theme .step-top {
        height: auto;
    }

    .future-theme .step-icon {
        width: 64px;
        height: 64px;
    }

    .future-theme .step-body {
        grid-template-columns: 36px minmax(0, 1fr);
        padding: 0;
    }

    .future-theme .about-copy {
        padding: 20px 16px 22px;
    }

    .future-theme .about-copy h2 br {
        display: none;
    }

    .future-theme .about-copy .btn,
    .future-theme .hero-actions .btn {
        width: 100%;
        flex: 1 1 100%;
    }

    .future-theme .token-list {
        grid-template-columns: 1fr;
    }

    .future-theme .token-list li,
    .future-theme .roadmap-layout li {
        margin: 8px 0;
    }

    .future-theme .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px 0 20px;
    }

    .future-theme .footer-col,
    .future-theme .footer-update {
        grid-column: auto;
    }

    .future-theme .subscribe-form {
        height: 42px;
        margin-top: 12px;
    }

    .future-theme .subscribe-form button {
        width: 104px;
        flex: 0 0 104px;
    }

    .future-theme .footer-bottom .container {
        min-height: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 16px 0;
        text-align: center;
    }

    .future-theme .footer-bottom p {
        flex: none;
        text-align: center;
    }

    .future-theme .chart-frame,
    .future-theme .chart-frame iframe {
        min-height: 240px;
        height: 240px;
    }
}

@media (max-width: 390px) {
    .future-theme .container,
    .future-theme .site-header .container,
    .future-theme .hero .container {
        width: calc(100% - 20px);
    }

    .future-theme .brand > span:last-child {
        max-width: none;
    }

    .future-theme .hero-copy .hero-benefits {
        grid-template-columns: 1fr 1fr;
    }

    .future-theme .hero-art {
        height: 150px;
    }

    .future-theme .donut {
        width: 148px;
        height: 148px;
    }
}

/* Legal / help / terms / privacy pages */
html.future-theme.legal-page,
html.future-theme.legal-page body.legal-body {
    background: #050605;
    overflow-x: hidden;
}

html.future-theme.legal-page body.legal-body {
    padding-bottom: 0 !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-size: 15px;
    line-height: 1.6;
}

.legal-bar {
    position: relative !important;
    z-index: 40;
    flex: 0 0 auto;
    height: auto !important;
    border-bottom: 1px solid rgba(246, 189, 53, .22);
    background: #080a09;
}

.legal-bar-inner {
    width: min(980px, calc(100% - 32px));
    min-height: 84px;
    margin: 0 auto;
    padding: 14px 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.legal-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: .04em;
    text-decoration: none;
}

.legal-logo {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px;
    min-height: 52px;
    display: block !important;
    flex: 0 0 52px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(246, 189, 53, .35));
}

.legal-bar-actions {
    margin-left: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.legal-bar-actions .btn {
    min-width: 0;
    height: 38px;
    padding: 0 14px;
}

.legal-main {
    flex: 1 1 auto;
    padding: 36px 0 48px;
}

.legal-wrap {
    width: min(860px, calc(100% - 32px));
    margin: 0 auto;
}

.legal-kicker {
    margin: 0 0 10px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
}

.legal-wrap > h1 {
    margin: 0 0 8px;
    color: #fff;
    font-size: clamp(28px, 5vw, 38px);
    font-weight: 800;
    letter-spacing: .02em;
    line-height: 1.15;
}

.legal-updated {
    margin: 0 0 22px;
    color: #bdbdb6;
    font-size: 13px;
}

.legal-card {
    padding: 28px 30px 32px;
    border: 1px solid rgba(246, 189, 53, .28);
    border-radius: 16px;
    background:
        radial-gradient(circle at 100% 0, rgba(246, 189, 53, .08), transparent 36%),
        #0b0d0c;
    color: #e8e8e2;
    font-size: 15px;
    line-height: 1.75;
}

.legal-card.is-plain {
    white-space: pre-wrap;
}

.legal-card h2 {
    margin: 28px 0 10px;
    color: var(--gold);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .04em;
}

.legal-card h2:first-child {
    margin-top: 0;
}

.legal-card p {
    margin: 0 0 14px;
}

.legal-card ul,
.legal-card ol {
    margin: 0 0 16px;
    padding: 0 0 0 20px;
}

.legal-card ol:first-child,
.legal-card ul:first-child,
.legal-card h2:first-child,
.legal-card p:first-child {
    margin-top: 0;
}

.legal-card--help {
    padding-top: 20px;
}

.legal-card--help h2 {
    margin: 0 0 12px;
}

.legal-card--help ol {
    margin: 0;
}

.legal-card--help ol + p {
    margin-top: 14px;
}

.legal-card--help li {
    margin: 0 0 10px;
    padding-left: 4px;
}

.legal-card--help li:last-child,
.legal-card--help p:last-child {
    margin-bottom: 0;
}

.legal-card li {
    margin: 0 0 8px;
}

.legal-card a {
    color: var(--gold);
    font-weight: 700;
    word-break: break-all;
}

.legal-card .legal-note {
    margin-top: 22px;
    color: #b5b5ae;
    font-size: 13px;
}

.legal-faq {
    margin-top: 14px;
}

.legal-faq h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 16px;
}

.legal-foot {
    flex: 0 0 auto;
    border-top: 1px solid rgba(246, 189, 53, .18);
    background: #080a09;
}

.legal-foot-inner {
    width: min(860px, calc(100% - 32px));
    margin: 0 auto;
    padding: 22px 0 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.legal-brand--foot {
    font-size: 12px;
}

.legal-brand--foot .legal-logo {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px;
    min-height: 36px;
    flex-basis: 36px;
}

.legal-foot-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.legal-foot-links a {
    color: #e2e2dc;
    font-size: 13px;
}

.legal-foot-links a:hover {
    color: var(--gold);
}

.legal-foot p {
    margin: 0;
    color: #b5b5ae;
    font-size: 13px;
}

@media (max-width: 700px) {
    .legal-bar-inner {
        min-height: 72px;
        width: calc(100% - 24px);
        flex-wrap: wrap;
    }

    .legal-logo {
        width: 44px !important;
        height: 44px !important;
        min-width: 44px;
        min-height: 44px;
        flex-basis: 44px;
    }

    .legal-brand {
        font-size: 13px;
    }

    .legal-bar-actions {
        width: 100%;
        margin-left: 0;
    }

    .legal-bar-actions .btn {
        flex: 1 1 auto;
    }

    .legal-main {
        padding: 24px 0 36px;
    }

    .legal-wrap,
    .legal-foot-inner {
        width: calc(100% - 24px);
    }

    .legal-card {
        padding: 20px 18px 24px;
        font-size: 14px;
        border-radius: 14px;
    }
}