:root {
    --bg: #06080f;
    --s1: #0b0e18;
    --s2: #101522;
    --s3: #161c2e;
    --brd: #1c2338;
    --brd2: rgba(212, 168, 67, 0.2);
    --orange: #f7931a;
    --gold: #d4a843;
    --gold-l: #f0c060;
    --silver: #a8b5c5;
    --blue: #00aaff;
    --green: #00e676;
    --red: #ff4757;
    --text: #cfd8e8;
    --dim: #5a6a7e;
    --dim2: #99a8b9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    line-height: 1.7;
}

/* Noise texture */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.4;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
    width: 3px
}

::-webkit-scrollbar-track {
    background: var(--s1)
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 2px
}

/* ─── TOP STRIP ─── */
.top-strip {
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--orange), #ff6b35, var(--orange), var(--gold));
}

/* ─── NAVBAR ─── */
#nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(6, 8, 15, 0.96);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--brd);
    height: 64px;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    color: var(--gold-l);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    display: grid;
    place-items: center;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.logo-sub {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    color: var(--text);
    display: block;
    margin-top: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-family: 'Share Tech Mono', monospace;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--gold-l)
}

.nav-ctas {
    display: flex;
    gap: 0.8rem;
    align-items: center
}

.btn-nav {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 8px 22px;
    text-decoration: none;
    transition: all 0.2s;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-nav-ghost {
    color: var(--gold-l);
    border: 1px solid rgba(212, 168, 67, 0.3);
    background: transparent;
}

.btn-nav-ghost:hover {
    background: rgba(212, 168, 67, 0.07)
}

.btn-nav-solid {
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: #000;
}

.btn-nav-solid:hover {
    opacity: 0.88;
    transform: translateY(-1px)
}

/* Hamburger */
.hbg {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    border: none;
    background: none;
    padding: 4px
}

.hbg span {
    display: block;
    height: 1.5px;
    background: var(--text);
    border-radius: 1px;
    transition: all 0.3s
}

.hbg span:nth-child(1) {
    width: 22px
}

.hbg span:nth-child(2) {
    width: 16px
}

.hbg span:nth-child(3) {
    width: 22px
}

.hbg.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    width: 22px
}

.hbg.open span:nth-child(2) {
    opacity: 0;
    width: 0
}

.hbg.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    width: 22px
}

/* Mobile menu */
#mob-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--s1);
    z-index: 99;
    padding: 36px 28px;
    transform: translateX(100%);
    transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

#mob-menu.open {
    transform: translateX(0)
}

.mob-link {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid var(--brd);
    transition: color 0.2s;
}

.mob-link:hover {
    color: var(--gold-l)
}

/* ─── TICKER ─── */
.ticker {
    background: linear-gradient(90deg, var(--gold), var(--orange), var(--gold));
    color: #000;
    overflow: hidden;
    white-space: nowrap;
    padding: 8px 0;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
}

.ticker-inner {
    display: inline-block;
    animation: tickerScroll 38s linear infinite
}

@keyframes tickerScroll {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.ti-item {
    display: inline-block;
    margin: 0 2.5rem;
    font-weight: 700
}

.ti-item::before {
    content: '▸ '
}

.ticker-inner:hover {
    animation-play-state: paused
}

/* ─── GLOBAL HELPERS ─── */
.gold-gradient-text {
    background: linear-gradient(120deg, var(--gold-l), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #fff;
    margin-bottom: 0.4rem;
}

.divider {
    height: 2px;
    max-width: 180px;
    background: linear-gradient(90deg, var(--gold), var(--orange), transparent);
    margin-bottom: 2.5rem;
    border-radius: 2px;
}

.accent-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--orange), transparent);
    opacity: 0.15;
}

/* Clip-path angled card */
.angled {
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px))
}

.angled-sm {
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px))
}

/* ─── REVEAL ANIMATION ─── */
.rv {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.75s ease, transform 0.75s ease
}

.rv.on {
    opacity: 1;
    transform: translateY(0)
}

.rv.d1 {
    transition-delay: 0.1s
}

.rv.d2 {
    transition-delay: 0.2s
}

.rv.d3 {
    transition-delay: 0.3s
}

.rv.d4 {
    transition-delay: 0.4s
}

.rv.d5 {
    transition-delay: 0.5s
}

/* ─── HERO ─── */
#hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse 120% 55% at 50% 0%, rgba(212, 168, 67, 0.07) 0%, transparent 68%);
}

#hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    color: var(--gold-l);
    border: 1px solid rgba(212, 168, 67, 0.3);
    padding: 6px 18px;
    margin-bottom: 2rem;
    background: rgba(212, 168, 67, 0.05);
    text-transform: uppercase;
    animation: fadeInUp 0.5s ease 0.1s both;
}

.hero-tag-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.2);
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.3
    }
}

.hero-h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(2.6rem, 10vw, 4.5rem);
    line-height: 0.88;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-h1 .l1 {
    color: #fff
}

.hero-h1 .l2 {
    display: block;
    background: linear-gradient(120deg, var(--gold-l), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero-h1 .l3 {
    display: block;
    font-size: 0.45em;
    letter-spacing: 0.18em;
    font-weight: 400;
    color: var(--text);
    margin-top: 0.8rem;
    -webkit-text-fill-color: var(--text)
}

.hero-sub {
    max-width: 580px;
    margin: 2rem 0 2.8rem;
    color: var(--text);
    line-height: 1.8;
    font-size: 0.96rem;
    animation: fadeInUp 0.6s ease 0.35s both;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.45s both
}

.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: #000;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 13px 36px;
    text-decoration: none;
    transition: all 0.2s;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

.btn-main:hover {
    opacity: 0.88;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(247, 147, 26, 0.25)
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-l);
    border: 1px solid rgba(212, 168, 67, 0.35);
    background: transparent;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 12px 34px;
    text-decoration: none;
    transition: all 0.2s;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

.btn-ghost:hover {
    background: rgba(212, 168, 67, 0.07);
    transform: translateY(-2px)
}

/* Hero right visual — bento grid */
.hero-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.h-card {
    background: var(--s1);
    border: 1px solid var(--brd);
    padding: 18px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s;
}

.h-card:hover {
    border-color: var(--brd2)
}

.h-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), transparent 55%);
    pointer-events: none;
}

.h-card-wide {
    grid-column: span 2
}

.hc-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 6px;
}

.hc-price {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: -0.01em;
    color: #fff;
    line-height: 1;
}

.hc-chg-up {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.72rem;
    color: var(--green)
}

.hc-chg-dn {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.72rem;
    color: var(--red)
}

.hc-chart {
    width: 100%;
    height: 52px;
    margin-top: 10px
}

.hc-path {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: draw 2s ease forwards 0.5s
}

@keyframes draw {
    to {
        stroke-dashoffset: 0
    }
}

/* Hero stats */
.hero-stats {
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--brd);
    animation: fadeInUp 0.6s ease 0.55s both;
}

.h-stat-n {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--gold-l);
    letter-spacing: -0.02em;
    display: block;
    line-height: 1;
}

.h-stat-l {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text);
    margin-top: 5px;
    font-family: 'Share Tech Mono', monospace;
}

/* ─── STEP CARDS ─── */
.step {
    background: var(--s1);
    border: 1px solid var(--brd);
    padding: 2rem 1.8rem;
    position: relative;
    transition: border-color 0.3s, background 0.3s;
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.step:hover {
    border-color: var(--gold);
    background: rgba(212, 168, 67, 0.04)
}

.step-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    color: rgba(212, 168, 67, 0.08);
    line-height: 1;
    margin-bottom: 0.8rem;
}

.step-icon {
    width: 44px;
    height: 44px;
    background: rgba(212, 168, 67, 0.08);
    border: 1px solid rgba(212, 168, 67, 0.22);
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.step h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: #fff;
}

.step p {
    color: var(--text);
    font-size: 0.83rem;
    line-height: 1.65
}

.step svg {
    color: var(--gold)
}

/* ─── FEATURE CARDS ─── */
.feat-card {
    background: var(--s1);
    border: 1px solid var(--brd);
    padding: 2.2rem 2rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.feat-card:hover {
    border-color: var(--gold);
    background: rgba(212, 168, 67, 0.03);
    transform: translateY(-3px);
}

.feat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.feat-card:hover::after {
    transform: scaleX(1)
}

.feat-card-num {
    position: absolute;
    top: -5px;
    right: 14px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 5.5rem;
    color: rgba(212, 168, 67, 0.05);
    line-height: 1;
    pointer-events: none;
}

.feat-icon {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(212, 168, 67, 0.2);
    display: grid;
    place-items: center;
    margin-bottom: 1.4rem;
    background: rgba(212, 168, 67, 0.06);
    transition: border-color 0.3s;
}

.feat-card:hover .feat-icon {
    border-color: var(--gold)
}

.feat-h {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0.6rem;
}

.feat-p {
    color: var(--text);
    font-size: 0.82rem;
    line-height: 1.7
}

/* ─── MARKET TABLE ─── */
.mkt-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem
}

.mkt-table th {
    padding: 0.85rem 1rem;
    text-align: left;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text);
    border-bottom: 1px solid var(--brd);
    background: var(--s2);
}

.mkt-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(28, 35, 56, 0.6);
    vertical-align: middle
}

.mkt-table tr:hover td {
    background: rgba(212, 168, 67, 0.025)
}

.mkt-table tr:last-child td {
    border-bottom: none
}

.coin-n {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff
}

.coin-s {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.6rem;
    color: var(--text);
    margin-top: 1px
}

.m-price {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff
}

.chg-up {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.72rem;
    color: var(--green)
}

.chg-dn {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.72rem;
    color: var(--red)
}

.sp {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: draw 2s ease forwards
}

.sp2 {
    animation-delay: .2s
}

.sp3 {
    animation-delay: .35s
}

.sp4 {
    animation-delay: .5s
}

.sp5 {
    animation-delay: .65s
}

/* ─── ATM CARD ─── */
.atm {
    width: 100%;
    max-width: 420px;
    border-radius: 14px;
    padding: 30px 28px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(140deg, #0d1c42 0%, #081030 40%, #101c40 70%, #141f4a 100%);
    border: 1px solid rgba(0, 170, 255, 0.25);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.07);
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.atm-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(108deg, transparent 25%, rgba(0, 170, 255, 0.05) 45%, rgba(255, 255, 255, 0.04) 50%, rgba(0, 170, 255, 0.05) 55%, transparent 75%);
    pointer-events: none;
}

.atm-ring {
    position: absolute;
    inset: -3px;
    border-radius: 17px;
    border: 1px solid rgba(0, 170, 255, 0.15);
    animation: ringPulse 3.5s ease-in-out infinite;
}

@keyframes ringPulse {

    0%,
    100% {
        opacity: 0.4
    }

    50% {
        opacity: 0.9
    }
}

.atm-soon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.3);
    color: var(--gold-l);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 11px;
}

.atm-chip {
    width: 42px;
    height: 32px;
    border-radius: 5px;
    background: linear-gradient(135deg, #e8c040, #c08010, #f0d060, #b89010);
    position: relative;
    margin-bottom: 26px;
}

.atm-chip::before {
    content: '';
    position: absolute;
    inset: 0 5px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.3)
}

.atm-chip::after {
    content: '';
    position: absolute;
    inset: 5px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3)
}

.atm-num {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.05rem;
    letter-spacing: 0.24em;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 26px;
}

.ghost-card {
    position: absolute;
    bottom: -18px;
    right: -18px;
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    background: linear-gradient(140deg, #0a1630, #060e22);
    border: 1px solid rgba(0, 170, 255, 0.1);
    transform: rotate(6deg) scale(0.93);
    opacity: 0.35;
}

/* ─── TIER TABLE ─── */
.tier-tbl {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.84rem
}

.tier-tbl th {
    padding: 0.9rem 1.1rem;
    text-align: left;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text);
    border-bottom: 1px solid var(--brd);
    background: var(--s2);
}

.tier-tbl td {
    padding: 0.95rem 1.1rem;
    border-bottom: 1px solid var(--brd)
}

.tier-tbl tr:hover td {
    background: rgba(212, 168, 67, 0.025)
}

.tier-tbl .num-col {
    font-family: 'Share Tech Mono', monospace;
    color: #fff;
    font-size: 0.8rem
}

.badge {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    padding: 3px 10px;
    border: 1px solid;
    display: inline-block;
}

.b-silver {
    color: var(--silver);
    border-color: var(--silver)
}

.b-gold {
    color: var(--gold-l);
    border-color: var(--gold-l)
}

.b-blue {
    color: var(--blue);
    border-color: var(--blue)
}

.b-nakamoto {
    color: #ff6b35;
    border-color: #ff6b35
}

/* ─── TESTIMONIALS ─── */
.testi {
    background: var(--s1);
    border: 1px solid var(--brd);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
}

.testi:hover {
    border-color: var(--brd2);
    transform: translateY(-3px)
}

.testi::before {
    content: '\201C';
    position: absolute;
    top: 4px;
    right: 14px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(212, 168, 67, 0.06);
    line-height: 1;
}

.testi-txt {
    font-size: 0.85rem;
    color: var(--text);
    line-height: 1.85;
    font-style: italic;
    margin-bottom: 1.4rem
}

.testi-nm {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
    text-transform: uppercase
}

.testi-role {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text);
    margin-top: 2px
}

.testi-ret {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--green)
}

.star-row {
    display: flex;
    gap: 3px;
    margin-bottom: 0.8rem
}

/* ─── FAQ ─── */
.faq-item {
    border-bottom: 1px solid var(--brd)
}

.faq-btn {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.4rem 0;
    text-align: left;
}

.faq-q {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
}

.faq-ic {
    width: 28px;
    height: 28px;
    border: 1px solid var(--brd2);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: var(--gold);
    transition: transform 0.3s, background 0.2s;
}

.faq-item.o .faq-ic {
    transform: rotate(45deg);
    background: rgba(212, 168, 67, 0.08)
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease
}

.faq-item.o .faq-body {
    max-height: 240px
}

.faq-bd {
    padding-bottom: 1.4rem;
    font-size: 0.84rem;
    color: var(--text);
    line-height: 1.85
}

/* ─── CTA ─── */
.cta-wrap {
    position: relative;
    max-width: 900px;
    margin: 4rem auto;
    border: 1px solid rgba(212, 168, 67, 0.22);
    padding: 4.5rem 3rem;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(212, 168, 67, 0.07), rgba(247, 147, 26, 0.04), rgba(212, 168, 67, 0.07));
}

.cta-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 56px;
    height: 56px;
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
    opacity: 0.45
}

.cta-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 56px;
    height: 56px;
    border-bottom: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    opacity: 0.45
}

.cta-wrap h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(1.8rem, 5vw, 3rem);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-wrap p {
    color: var(--text);
    max-width: 500px;
    margin: 0 auto 2.2rem;
    font-size: 0.9rem;
    line-height: 1.8
}

/* ─── PHOTO ─── */
.photo-wrap {
    position: relative;
    overflow: hidden
}

.photo-wrap img {
    width: 100%;
    display: block;
    transition: transform 0.6s;
    filter: brightness(0.85) saturate(0.9)
}

.photo-wrap:hover img {
    transform: scale(1.04)
}

.photo-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(212, 168, 67, 0.15);
    pointer-events: none
}

/* ─── SECURITY ITEM ─── */
.sec-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 1.3rem 0;
    border-bottom: 1px solid rgba(28, 35, 56, 0.7)
}

.sec-row:last-child {
    border-bottom: none
}

.sec-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 168, 67, 0.2);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    background: rgba(212, 168, 67, 0.05)
}

.sec-h {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    margin-bottom: 4px
}

.sec-p {
    font-size: 0.8rem;
    color: var(--text);
    line-height: 1.7
}

/* ─── FOOTER ─── */
footer {
    border-top: 1px solid var(--brd);
    padding: 3rem 2rem;
    text-align: center;
    color: var(--text);
    font-size: 0.74rem;
    line-height: 2.2
}

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ─── RESPONSIVE ─── */
@media(max-width:900px) {

    .nav-links,
    .nav-ctas {
        display: none !important
    }

    .hbg {
        display: flex
    }

    .hero-inner {
        padding: 4rem 1.5rem 3rem
    }

    .hero-bento {
        display: none
    }

    .hero-h1 {
        font-size: clamp(2.6rem, 12vw, 4.5rem)
    }
}

@media(max-width:640px) {
    #nav {
        padding: 0 1.2rem
    }

    .hero-stats {
        gap: 1.5rem
    }

    .cta-wrap {
        margin: 2rem 1rem;
        padding: 2.5rem 1.5rem
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%
    }

    .btn-main,
    .btn-ghost {
        text-align: center;
        justify-content: center
    }

    .mkt-table td:nth-child(4),
    .mkt-table th:nth-child(4) {
        display: none
    }

    .tier-tbl td:nth-child(3),
    .tier-tbl th:nth-child(3) {
        display: none
    }
}