/* ===== AXIORY 15 Years Microsite - Main Styles ===== */

:root {
    --black: #1a171c;
    --teal: #19fce2;
    --purple: #8f26bd;
    --grey: #eff7f6;
}

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

/* ===== SCROLL-REVEAL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }

body {
    font-family: 'Noto Sans', sans-serif;
    background: var(--black);
    color: #ffffff;
    overflow-x: hidden;
}

/* ===== HEADER ===== */
header {
    display: flex;
    align-items: center;
    height: 70px;
    padding: 0 73px;
    background: var(--black);
    position: relative;
    z-index: 100;
}

.logo-img {
    height: 84px;
    width: 268px;
    object-fit: cover;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 32px;
    position: absolute;
    left: 506px;
    top: 50%;
    transform: translateY(-50%);
}

.nav-links a {
    color: var(--grey);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--teal); }

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    position: absolute;
    right: 61px;
    top: 50%;
    transform: translateY(-50%);
}

.lang-toggle {
    display: flex;
    gap: 4px;
    background: rgba(255,255,255,0.05);
    border-radius: 9999px;
    padding: 4px;
}

.lang-toggle button {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.5);
    padding: 6px 12px;
    cursor: pointer;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 500;
    border-radius: 9999px;
    transition: all 0.2s;
}

.lang-toggle button.active {
    background: rgba(255,255,255,0.1);
    color: #ffffff;
}

.btn-register {
    background: linear-gradient(135deg, #19fce2 0%, #0de0c8 100%);
    color: var(--black);
    border: none;
    padding: 10px 22px;
    border-radius: 50px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13.7px;
    font-weight: 700;
    height: 38px;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(25,252,226,0.35), 0 0 24px rgba(25,252,226,0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.3px;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(25,252,226,0.5), 0 0 40px rgba(25,252,226,0.25);
    background: linear-gradient(135deg, #2cffe8 0%, #19fce2 100%);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    width: 100%;
    height: 771px;
    overflow: hidden;
    background-image: linear-gradient(7deg, rgba(143,38,189,0) 62%, rgba(143,38,189,0.55) 120%);
}

.hero-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-line {
    position: absolute;
    mix-blend-mode: screen;
    animation: line-float 6s ease-in-out infinite;
}

.hero-line--2 { animation-delay: -1s; }
.hero-line--3 { animation-delay: -2s; }
.hero-line--4 { animation-delay: -0.5s; }
.hero-line--5 { animation-delay: -3s; }
.hero-line--6 { animation-delay: -1.5s; }
.hero-line--7 { animation-delay: -4s; }
.hero-line--8 { animation-delay: -2.5s; }

@keyframes line-float {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.7; transform: translateY(-12px); }
}

.hero-line-thin {
    width: 3px;
    background: linear-gradient(180deg, rgba(25,252,226,0.8) 0%, rgba(143,38,189,0.6) 50%, transparent 100%);
}

.hero-line-medium {
    width: 6px;
    background: linear-gradient(180deg, rgba(143,38,189,0.7) 0%, rgba(25,252,226,0.5) 50%, transparent 100%);
}

.hero-line--1 { left: 72px; top: 119px; height: 383px; }
.hero-line--2 { left: 152px; top: -60px; height: 202px; }
.hero-line--3 { left: 174px; top: 298px; height: 383px; }
.hero-line--4 { left: 229px; top: -24px; height: 202px; }
.hero-line--5 { left: 396px; top: 172px; height: 200px; }
.hero-line--6 { right: 98px; top: -315px; height: 383px; }
.hero-line--7 { right: 78px; top: -49px; height: 383px; }
.hero-line--8 { right: 106px; top: 552px; height: 202px; }

.hero-15y {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 680px;
    height: 680px;
    pointer-events: none;
    opacity: 0.15;
}

.hero-15y-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(270deg, rgba(25, 252, 226, 0.08) 0%, transparent 80%);
    pointer-events: none;
    z-index: 1;
}

.hero-watermark {
    position: absolute;
    right: 603px;
    top: 119px;
    width: 532px;
    height: 624px;
    opacity: 0.38;
    mix-blend-mode: overlay;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 200px;
    font-weight: 900;
    color: rgba(255,255,255,0.08);
    letter-spacing: 8px;
}

.hero-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, calc(-50% + 24px));
    width: 1224px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.hero-headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    width: 1209px;
    text-align: center;
}

.hero-title {
    font-size: 55px;
    font-weight: 700;
    line-height: 55px;
    color: var(--grey);
}

.hero-tagline {
    font-size: 40px;
    font-weight: 500;
    line-height: 55px;
    color: var(--grey);
}

.hero-tagline .zero { color: var(--teal); }

.hero-desc {
    font-size: 25px;
    line-height: 33px;
    color: #ffffff;
    text-align: center;
    max-width: 1209px;
}

.hero-desc strong { font-weight: 600; }
.hero-desc .light {
    font-weight: 300;
    font-size: 26px;
}

/* Stats */
.stats-row {
    display: flex;
    gap: 6px;
    width: 100%;
}

.stats-note {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    margin-top: 12px;
    text-align: center;
}

.stat-box {
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    width: 240px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.14);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.stat-num {
    font-size: 60px;
    font-weight: 700;
    line-height: 28px;
    height: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-num.teal { color: var(--teal); }
.stat-num.purple { color: var(--purple); }

.stat-label {
    font-size: 19px;
    font-weight: 400;
    line-height: 22px;
    color: var(--grey);
    margin-top: 18px;
}

/* Join button */
.btn-join {
    background: linear-gradient(135deg, #19fce2 0%, #0de0c8 50%, #19fce2 100%);
    background-size: 200% 100%;
    color: var(--black);
    border: none;
    width: 220px;
    height: 52px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(25,252,226,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
    letter-spacing: 0.4px;
    position: relative;
    overflow: hidden;
}

.btn-join:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(25,252,226,0.45), inset 0 1px 0 rgba(255,255,255,0.3);
    background-position: 100% 0;
}

/* ===== ANNIVERSARY SECTION ===== */
.anniversary {
    position: relative;
    width: 100%;
    min-height: 1427px;
    overflow: hidden;
}

.anniversary-bg {
    position: absolute;
    left: -51px;
    top: 0;
    width: 2171px;
    height: 1568px;
    pointer-events: none;
}

.anniversary-content {
    position: relative;
    width: 1216px;
    margin: 0 auto;
    padding: 48px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.anniversary-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    width: 100%;
}

.offer-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 345px;
    height: 43px;
    padding: 12px 24px;
    border-radius: 50px;
    background-image: linear-gradient(97.32deg, rgba(143,38,189,0.2) 0.2%, rgba(25,252,226,0.55) 131.31%);
}

.offer-badge-icon {
    width: 20px;
    height: 20px;
}

.offer-badge-text {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: #ffffff;
    text-align: center;
}

.anniversary-texts {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
}

.anniversary-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    text-align: center;
}

.anniversary-heading .pre-title {
    font-family: 'Noto Sans Display', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 35px;
    color: rgba(255,255,255,0.9);
}

.anniversary-heading .gradient-title {
    font-size: 55px;
    font-weight: 700;
    line-height: 55px;
    width: 710px;
    background: linear-gradient(180deg, #8f26bd 0%, #19fce2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.anniversary-sub {
    font-family: 'Noto Sans Display', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    color: #fafffe;
    text-align: center;
}

/* Stage pills / switcher */
.stage-bar {
    display: flex;
    gap: 0;
    align-items: center;
    width: 480px;
    height: 83px;
    background: rgba(26,23,28,0.6);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 8px;
}

.stage-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex: 1;
    height: 62px;
    border-radius: 8px;
    background: transparent;
    border: none;
    padding: 9px 18px;
    cursor: pointer;
    transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.stage-pill .stage-icon { 
    width: 37px; 
    height: 38px; 
    transition: transform 0.35s ease, filter 0.35s ease;
    filter: brightness(0.7);
}

.stage-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.stage-info .stage-num {
    font-family: 'Noto Sans Display', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 20px;
    color: #99a1af;
    transition: color 0.35s ease;
    text-align: left;
}

.stage-info .stage-name {
    font-family: 'Noto Sans Display', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: #99a1af;
    transition: color 0.35s ease;
    text-align: left;
}

.stage-pill.active .stage-info .stage-num,
.stage-pill.active .stage-info .stage-name {
    color: #fafffe;
}

.stage-pill.active .stage-icon {
    transform: scale(1.1);
    filter: brightness(1.15);
}

.stage-pill:not(.active):hover {
    background: rgba(255,255,255,0.06);
}

.stage-pill:not(.active):hover .stage-num,
.stage-pill:not(.active):hover .stage-name {
    color: rgba(255,255,255,0.7);
}

.stage-pill:not(.active):hover .stage-icon {
    filter: brightness(0.9);
}

.stage-pill--1.active {
    background-image: linear-gradient(-76.76deg, rgb(25,252,226) 3.38%, rgb(143,38,189) 96.81%);
    box-shadow: 0 4px 20px rgba(25, 252, 226, 0.25);
    animation: pillPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.stage-pill--2.active {
    background-image: linear-gradient(-76.76deg, rgb(143,38,189) 3.38%, rgb(90,20,140) 96.81%);
    box-shadow: 0 4px 20px rgba(143, 38, 189, 0.3);
    animation: pillPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes pillPop {
    0%   { transform: scale(0.92); }
    60%  { transform: scale(1.04); }
    100% { transform: scale(1); }
}

/* Offer card */
.offer-card {
    width: 1024px;
    min-height: 736px;
    border-radius: 28px;
    border: 2px solid rgba(25,252,226,0.4);
    background-image: linear-gradient(144.3deg, rgb(26,23,28) 0%, rgba(26,23,28,0.44) 50%, rgba(25,252,226,0.55) 100%);
    padding: 71px 54px 71px 155px;
    display: none;
    align-items: center;
}

.offer-card-inner {
    display: flex;
    gap: 125px;
    align-items: center;
    width: 100%;
}

/* Left: $100 block */
.offer-left {
    display: grid;
    position: relative;
    flex-shrink: 0;
}

.offer-glow {
    grid-area: 1/1;
    width: 218px;
    height: 146px;
    margin-top: 7px;
    background: linear-gradient(180deg, #19fce2 0%, rgba(25,252,226,0.5) 100%);
    filter: blur(65px);
    opacity: 0.5;
}

.offer-amount {
    grid-area: 1/1;
    font-family: 'Noto Sans Display', sans-serif;
    font-size: 100px;
    font-weight: 700;
    line-height: 100px;
    width: 218px;
    background: linear-gradient(180deg, #19fce2 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.offer-amount-jp {
    font-size: 72px;
    line-height: 72px;
    width: auto;
    white-space: nowrap;
}

.offer-amount-jp .offer-currency {
    font-size: 40px;
    -webkit-text-fill-color: transparent;
}

.offer-no-deposit-jp {
    width: auto;
    padding: 0 18px;
    margin-top: 72px;
}

.offer-no-deposit {
    grid-area: 1/1;
    align-self: end;
    margin-top: 108px;
    margin-left: 14px;
    width: 190px;
    height: 42px;
    background: rgba(25,252,226,0.2);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.offer-no-deposit span {
    font-family: 'Noto Sans Display', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: 0.7px;
    text-transform: uppercase;
    text-align: center;
}

/* Right: details */
.offer-right {
    display: flex;
    flex-direction: column;
    gap: 36px;
    flex: 1;
    min-width: 0;
    max-width: 467px;
}

.offer-right-top {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.launch-badge {
    width: 146px;
    height: 32px;
    background: rgba(25,252,226,0.2);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.launch-badge span {
    font-family: 'Noto Sans Display', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.offer-texts {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.offer-texts .title-white {
    font-family: 'Noto Sans Display', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    color: #ffffff;
}

.offer-texts .title-teal {
    font-family: 'Noto Sans Display', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    color: var(--teal);
}

.offer-texts .desc {
    font-family: 'Noto Sans Display', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    color: #d1d5dc;
}

/* Bullet features */
.offer-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 442px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    background: rgba(255,255,255,0.05);
    border: 0.909px solid rgba(25,252,226,0.2);
    border-radius: 14px;
    height: 58px;
    display: flex;
    align-items: center;
    padding: 0 17px;
    gap: 16px;
}

.feature-dot {
    width: 8px;
    height: 8px;
    background: var(--teal);
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-item p {
    font-family: 'Noto Sans Display', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #ffffff;
}

.btn-launch {
    width: 100%;
    max-width: 442px;
    height: 62px;
    background: linear-gradient(135deg, #19fce2 0%, #0de0c8 50%, #14ebd4 100%);
    background-size: 200% 100%;
    border: none;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(25,252,226,0.3), inset 0 1px 0 rgba(255,255,255,0.25);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-launch::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
    z-index: 0;
}

.btn-launch:hover::before {
    left: 100%;
}

.btn-launch:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(25,252,226,0.45), inset 0 1px 0 rgba(255,255,255,0.3);
    background-position: 100% 0;
}

.btn-launch:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(25,252,226,0.3);
}

.btn-launch span,
.btn-launch .icon {
    position: relative;
    z-index: 1;
}

.btn-launch span {
    font-family: 'Noto Sans Display', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    letter-spacing: 0.3px;
}

.btn-launch .icon {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

.btn-launch:hover .icon:last-child {
    transform: translateX(3px);
}

/* Offer card hover */
.offer-card.active:hover {
    border-color: rgba(25,252,226,0.6);
    box-shadow: 0 12px 48px rgba(25,252,226,0.12);
}

.offer-card--stage2:hover {
    border-color: rgba(143,38,189,0.7);
    box-shadow: 0 12px 48px rgba(143,38,189,0.15);
}

/* Feature items hover */
.feature-item {
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.feature-item:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(25,252,226,0.4);
    transform: translateX(4px);
}

.feature-item--purple:hover {
    background: rgba(143,38,189,0.18);
    border-color: rgba(143,38,189,0.5);
}

/* Stage card visibility & animations */
.offer-card { display: none; }

.offer-card.active {
    display: flex;
    animation: cardEnter 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.offer-card.card-exit {
    display: flex;
    animation: cardExit 0.3s cubic-bezier(0.4, 0, 1, 1) both;
}

@keyframes cardEnter {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes cardExit {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(-16px) scale(0.98);
    }
}

/* Staggered content slide-in */
.offer-card.active .offer-left {
    animation: slideFromLeft 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}

.offer-card.active .offer-right {
    animation: slideFromRight 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both;
}

@keyframes slideFromLeft {
    from { opacity: 0; transform: translateX(-24px) scale(0.96); }
    to   { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes slideFromRight {
    from { opacity: 0; transform: translateX(24px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Stage 2 card: purple theme */
.offer-card--stage2 {
    border-color: rgba(143,38,189,0.5);
    background-image: linear-gradient(144.3deg, rgb(26,23,28) 0%, rgba(26,23,28,0.44) 50%, rgba(143,38,189,0.55) 100%);
    padding: 50px 54px;
}

.offer-card--stage2 .offer-glow {
    background: linear-gradient(180deg, #8f26bd 0%, rgba(143,38,189,0.5) 100%);
}

.offer-card--stage2 .offer-amount {
    font-size: 80px;
    line-height: 80px;
    width: auto;
    background: linear-gradient(180deg, #c77dff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offer-sub-label {
    margin-top: -8px;
    position: relative;
    z-index: 1;
}

.offer-sub-label span {
    font-family: 'Noto Sans Display', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    display: block;
}

.offer-card--stage2 .offer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 380px;
}

.offer-card--stage2 .offer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.offer-card--stage2 .offer-no-deposit {
    background: rgba(143,38,189,0.3);
    margin-top: 0;
    grid-area: unset;
    align-self: center;
}

.offer-card--stage2 .offer-no-deposit span {
    color: #c77dff;
}

.offer-card--stage2 .offer-card-inner {
    align-items: center;
    gap: 60px;
}

.offer-card--stage2 .offer-deposit-calc {
    width: 100%;
}

.launch-badge--purple {
    background: rgba(143,38,189,0.25);
}

.launch-badge--purple span {
    color: #c77dff;
}

.offer-texts .title-purple {
    font-family: 'Noto Sans Display', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    color: #c77dff;
}

/* Deposit calculator */
.offer-deposit-calc {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(143,38,189,0.3);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.deposit-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.deposit-label {
    font-family: 'Noto Sans Display', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #d1d5dc;
}

.deposit-value {
    font-family: 'Noto Sans Display', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}

.deposit-value--purple {
    color: #c77dff;
}

.deposit-plus {
    text-align: center;
    font-size: 18px;
    color: #99a1af;
}

.deposit-row--total {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 12px;
}

/* Purple feature items (Stage 2) */
.feature-item--purple {
    background: rgba(143,38,189,0.1);
    border-color: rgba(143,38,189,0.3);
    height: auto;
    padding: 16px 17px;
    align-items: flex-start;
}

.feature-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(143,38,189,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    color: #c77dff;
}

.feature-text-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-text-block .feature-title {
    font-family: 'Noto Sans Display', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    color: #ffffff;
}

.feature-text-block .feature-desc {
    font-family: 'Noto Sans Display', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #99a1af;
}

.btn-launch--purple {
    background: linear-gradient(135deg, #8f26bd 0%, #a944d6 50%, #c77dff 100%);
    background-size: 200% 100%;
    box-shadow: 0 4px 20px rgba(143,38,189,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-launch--purple::before {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    z-index: 0;
}

.btn-launch--purple:hover {
    box-shadow: 0 8px 32px rgba(143,38,189,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-launch--purple span {
    color: #ffffff;
}

/* ===== CELEBRATIONS DON'T STOP ===== */
.celebrations {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 48px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.celebrations-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
    width: 1347px;
}

.celebrations-header {
    text-align: center;
    width: 1124px;
}

.celebrations-title {
    font-size: 55px;
    font-weight: 700;
    line-height: 55px;
    background: linear-gradient(90deg, #8f26bd 0%, #19fce2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.celebrations-sub {
    font-size: 29px;
    font-weight: 400;
    line-height: 55px;
    color: #fafffe;
}

/* Cards row */
.celebrations-cards {
    display: flex;
    gap: 12px;
    width: 100%;
    align-items: center;
}

/* Each card is a grid so glow + inner stack */
.cel-card {
    position: relative;
    flex: 1;
    display: grid;
    min-width: 0;
}

/* Glow layer behind card */
.cel-card-glow {
    grid-area: 1/1;
    width: 100%;
    height: 100%;
    margin-top: 2px;
    border-radius: 32px;
    filter: blur(24px);
    opacity: 0.5;
}

.cel-card-glow--teal {
    background: linear-gradient(90deg, #19fce2 0%, rgba(25,252,226,0.5) 100%);
}

.cel-card-glow--purple {
    background: linear-gradient(90deg, #8f26bd 0%, rgba(143,38,189,0.5) 100%);
}

/* Card face */
.cel-card-inner {
    grid-area: 1/1;
    position: relative;
    width: 100%;
    min-height: 384px;
    border-radius: 28px;
    background: rgba(26,23,28,0.8);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cel-card:hover .cel-card-inner {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.cel-card:hover .cel-card-glow {
    opacity: 0.7;
    transition: opacity 0.35s ease;
}

.cel-card-inner--teal {
    border: 2px solid rgba(25,252,226,0.4);
}

.cel-card-inner--purple {
    border: 2px solid rgba(143,38,189,0.4);
}

.cel-card-inner--grey {
    border: 2px solid rgba(74,85,101,0.4);
}

/* Centered content wrapper inside each card */
.cel-card-wrap {
    width: 274px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 32px 0;
}

/* Icon area */
.cel-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 168px;
    height: 154px;
    position: relative;
    flex-shrink: 0;
}

/* Card 1: Ready - checkmark circle */
.cel-card-icon--ready {
    position: relative;
}

.cel-card-icon--ready::before {
    content: '';
    position: absolute;
    width: 104px;
    height: 104px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(25, 252, 226, 0.25);
    animation: ready-pulse 2.4s ease-in-out infinite;
}

.cel-card-icon--ready .cel-icon-main {
    width: 104px;
    height: 104px;
    position: relative;
    z-index: 1;
    animation: ready-bounce 2.4s ease-in-out infinite;
    filter: drop-shadow(0 4px 20px rgba(25, 252, 226, 0.4));
}

@keyframes ready-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
    50% { transform: translate(-50%, -50%) scale(1.35); opacity: 0; }
}

@keyframes ready-bounce {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 4px 20px rgba(25, 252, 226, 0.4)); }
    50% { transform: scale(1.06); filter: drop-shadow(0 6px 28px rgba(25, 252, 226, 0.6)); }
}

/* Card 2: Active - X inside teal circle */
.cel-card-icon--active {
    width: 169px;
    height: 169px;
}

.cel-icon-circle--teal {
    width: 104px;
    height: 104px;
    border: 3px solid var(--teal);
    border-radius: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cel-icon-circle--teal .cel-icon-main {
    width: 42px;
    height: 43px;
}

/* Card 3: Coming Soon - purple rings */
.cel-card-icon--coming {
    width: 169px;
    height: 169px;
}

.cel-icon-rings {
    position: relative;
    width: 128px;
    height: 128px;
    flex-shrink: 0;
}

.cel-ring--outer {
    position: absolute;
    left: 8.5px;
    top: 8.5px;
    width: 111px;
    height: 111px;
    border: 1.8px solid rgba(143,38,189,0.4);
    border-radius: 50%;
    opacity: 0.37;
    animation: ring-pulse 4s ease-in-out infinite;
}

@keyframes ring-pulse {
    0%, 100% { transform: scale(1); opacity: 0.37; }
    50% { transform: scale(1.06); opacity: 0.55; }
}

.cel-ring--middle {
    position: absolute;
    left: 13.9px;
    top: 13.9px;
    width: 100px;
    height: 100px;
    border: 1.8px solid rgba(143,38,189,0.4);
    border-radius: 50%;
    opacity: 0.53;
}

.cel-ring--inner {
    position: absolute;
    left: 23px;
    top: 23px;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8f26bd 0%, rgba(143,38,189,0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.69;
}

.cel-ring--inner .cel-icon-main {
    width: 37px;
    height: 37px;
}

/* Card 4: Locked - circle bg + lock */
.cel-card-icon--locked {
    width: 169px;
    height: 169px;
}

.cel-icon-lock-bg {
    position: relative;
    width: 128px;
    height: 128px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cel-icon-lock-bg::before {
    content: '';
    position: absolute;
    width: 105px;
    height: 105px;
    background: var(--grey);
    border-radius: 50%;
}

.cel-icon-lock-bg .cel-icon-main {
    position: relative;
    z-index: 1;
    width: 55px;
    height: 58px;
    object-fit: cover;
}

/* Text + button block */
.cel-card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.cel-card-texts {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.cel-card-name {
    font-size: 22px;
    font-weight: 700;
    line-height: 42px;
    color: #ffffff;
}

.cel-card-desc {
    font-size: 16px;
    font-weight: 600;
    line-height: 21px;
    color: var(--grey);
}

.cel-small {
    font-size: 16px;
}

.cel-btn {
    width: 100%;
    height: 42px;
    border-radius: 50px;
    border: none;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Noto Sans', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    padding: 10px 24px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.3px;
}

.cel-btn--teal {
    background: linear-gradient(135deg, #19fce2 0%, #0de0c8 100%);
    color: var(--black);
    box-shadow: 0 3px 12px rgba(25,252,226,0.25);
}

.cel-btn--teal:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(25,252,226,0.4);
    background: linear-gradient(135deg, #2cffe8 0%, #19fce2 100%);
}

.cel-btn--purple {
    background: rgba(143,38,189,0.25);
    border: 1px solid rgba(143,38,189,0.4);
    color: #e0b3ff;
}

.cel-btn--purple:hover {
    background: rgba(143,38,189,0.4);
    border-color: rgba(143,38,189,0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(143,38,189,0.2);
}

.cel-btn--grey {
    background: rgba(54,65,83,0.2);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.5);
}

.cel-btn--grey:hover {
    background: rgba(54,65,83,0.35);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ===== X INITIATIVE ===== */
.x-initiative {
    position: relative;
    width: 100%;
    min-height: 600px;
    overflow: hidden;
}

.x-initiative-bg {
    position: absolute;
    right: 164px;
    top: 50%;
    transform: translateY(calc(-50% - 3.5px));
    pointer-events: none;
}

.x-initiative-union {
    position: absolute;
    right: 114px;
    top: 50%;
    transform: translateY(calc(-50% + 16px));
    width: 738px;
    height: 677px;
}

.x-initiative-character {
    position: relative;
    width: 754px;
    height: 695px;
    object-fit: cover;
    object-position: left top;
}

.x-initiative-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 56px;
    padding: 64px 0 64px 163px;
    max-width: 1300px;
    width: 100%;
    box-sizing: border-box;
}

.x-initiative-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    width: 100%;
}

.x-initiative-badge {
    display: flex;
    align-items: center;
    gap: 36px;
    width: 330px;
    height: 46px;
    padding: 13px 72px;
    border-radius: 50px;
    background-image: linear-gradient(96.55deg, rgba(143, 38, 189, 0.2) 0.2%, rgba(25, 252, 226, 0.55) 131.31%);
}

.x-initiative-badge-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.x-initiative-badge span {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: #ffffff;
    text-align: center;
    line-height: 20px;
}

.x-initiative-title {
    font-size: 55px;
    font-weight: 700;
    line-height: 90px;
    text-align: center;
    background: linear-gradient(90deg, #8f26bd 0%, #19fce2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.x-initiative-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 795px;
    width: 100%;
    box-sizing: border-box;
}

.x-initiative-columns {
    display: flex;
    gap: 51px;
    align-items: flex-start;
    max-width: 795px;
}

.x-initiative-col:first-child {
    width: 301px;
    max-width: 100%;
    flex-shrink: 0;
}

.x-initiative-col:last-child {
    width: 443px;
    max-width: 100%;
    flex-shrink: 0;
}

.x-initiative-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.x-initiative-col-header {
    display: flex;
    align-items: center;
    gap: 24px;
}

.x-initiative-arrow-box {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: rgba(25, 252, 226, 0.2);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.x-initiative-arrow-box span {
    font-family: 'Noto Sans Display', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: var(--teal);
}

.x-initiative-col-header h3 {
    font-family: 'Noto Sans Display', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 42px;
    color: #ffffff;
}

.x-initiative-rewards-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.x-initiative-col-text {
    font-family: 'Noto Sans Display', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    color: #99a1af;
}

.x-initiative-col-text strong.teal {
    font-weight: 700;
    color: var(--teal);
}

.btn-find-out {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    min-height: 52px;
    background: linear-gradient(135deg, #19fce2 0%, #0de0c8 50%, #14ebd4 100%);
    background-size: 200% 100%;
    color: var(--black);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Noto Sans', sans-serif;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 20px rgba(25,252,226,0.3), inset 0 1px 0 rgba(255,255,255,0.25);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-find-out::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
    z-index: 0;
}

.btn-find-out:hover::before {
    left: 100%;
}

.btn-find-out > * {
    position: relative;
    z-index: 1;
}

.btn-find-out:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(25,252,226,0.45), inset 0 1px 0 rgba(255,255,255,0.3);
    background-position: 100% 0;
}

.btn-find-out:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(25,252,226,0.3);
}

/* ===== TRADING YOU CAN TRUST ===== */
.trust {
    position: relative;
    width: 100%;
    padding: 48px 0;
    overflow: hidden;
}

.trust-content {
    width: 1158px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.trust-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 90px;
    text-align: center;
    background: linear-gradient(90deg, #8f26bd 0%, #19fce2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
}

.trust-card {
    width: 370px;
    min-height: 72px;
    height: auto;
    border-radius: 16px;
    background: rgba(26, 23, 28, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: min-height 0.25s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.trust-card:hover {
    border-color: rgba(25,252,226,0.3);
    box-shadow: 0 4px 20px rgba(25,252,226,0.08);
    transform: translateY(-2px);
}

.trust-card--expanded {
    min-height: 230px;
}

.trust-card-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 30px;
    min-height: 100%;
    justify-content: flex-start;
}

.trust-card--expanded .trust-card-inner {
    justify-content: center;
}

.trust-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
}

.trust-card-name {
    font-size: 22px;
    font-weight: 700;
    line-height: 28px;
}

.trust-card-name--teal {
    color: var(--teal);
}

.trust-chevron {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transform: rotate(-90deg);
    transition: transform 0.25s ease;
}

.trust-card--expanded .trust-chevron {
    transform: rotate(0deg);
}

.trust-card-body {
    display: none;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
}

.trust-card--expanded .trust-card-body {
    display: flex;
}

.trust-card-subtitle {
    font-family: 'Noto Sans Display', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    color: #fafffe;
}

.trust-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trust-card-list li {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #fafffe;
    padding-left: 12px;
    position: relative;
}

.trust-card-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #fafffe;
}

.trust-disclaimer {
    font-size: 16px;
    font-weight: 400;
    line-height: 44px;
    color: #ffffff;
    width: 100%;
    text-align: left;
}

/* ===== 15 YEARS OF RELIABILITY ===== */
.reliability {
    position: relative;
    width: 100%;
    padding: 48px 0;
    overflow: hidden;
}

.reliability-content {
    max-width: 1376px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 0 20px;
}

.reliability-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.reliability-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 90px;
    background: linear-gradient(90deg, #8f26bd 0%, #19fce2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reliability-sub {
    font-size: 22px;
    font-weight: 400;
    line-height: 22px;
    color: #ffffff;
    text-align: center;
    max-width: 992px;
}

.reliability-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}

.reliability-col {
    display: flex;
    flex-direction: column;
    gap: 47px;
    flex-shrink: 0;
}

.reliability-col--left {
    width: 483px;
}

.reliability-col--right {
    width: 483px;
}

.reliability-card {
    position: relative;
    width: 483px;
    height: 175px;
    transition: transform 0.3s ease;
}

.reliability-card:hover {
    transform: translateY(-4px);
}

.reliability-card:hover .reliability-card-title {
    text-shadow: 0 0 16px rgba(25,252,226,0.4);
}

.reliability-card-border {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.reliability-card-border--tr,
.reliability-card-border--br {
    transform: scaleX(-1);
}

.reliability-card-content {
    position: relative;
    z-index: 1;
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
    justify-content: center;
}

.reliability-card-title {
    font-size: 25px;
    font-weight: 700;
    line-height: 25px;
    color: #19fce2;
}

.reliability-card-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: #ffffff;
}

/* Center badge area */
.reliability-center {
    position: relative;
    width: 410px;
    height: 397px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reliability-badge {
    position: relative;
    width: 332px;
    height: 332px;
}

.reliability-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: ring-spin 30s linear infinite;
}

@keyframes ring-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.reliability-badge-inner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 192px;
    height: 225px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.reliability-15-logo {
    width: 188px;
    height: 220px;
    object-fit: contain;
    transform: scale(0.7);
}

.reliability-years-text {
    position: absolute;
    bottom: 0;
    width: 88px;
    height: 20px;
    object-fit: contain;
}

/* Connector lines */
.reliability-connector {
    position: absolute;
    width: 77px;
    height: 2px;
    z-index: 2;
}

.reliability-connector img {
    width: 100%;
    height: 100%;
    display: block;
}

.reliability-connector--tl {
    left: 0;
    top: 87px;
}

.reliability-connector--tr {
    right: 0;
    top: 87px;
}

.reliability-connector--bl {
    left: 0;
    bottom: 88px;
}

.reliability-connector--br {
    right: 0;
    bottom: 88px;
}

/* ===== INDUSTRY AWARDS ===== */
.awards {
    position: relative;
    width: 100%;
    padding: 48px 0;
    overflow: hidden;
}

.awards-content {
    max-width: 1345px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
}

.awards-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 90px;
    text-align: center;
    background: linear-gradient(90deg, #8f26bd 0%, #19fce2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.awards-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
    max-width: 1345px;
    border: 2px solid var(--purple);
    border-radius: 10px;
    padding: 29px 52px;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.awards-box:hover {
    border-color: var(--teal);
    box-shadow: 0 0 30px rgba(25,252,226,0.1), 0 0 60px rgba(143,38,189,0.1);
}

.awards-laurel {
    width: 93px;
    height: 134px;
    flex-shrink: 0;
}

.awards-laurel--left {
    transform: scaleY(-1) rotate(180deg);
}

.awards-list {
    flex: 1;
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--grey);
}

.awards-list li {
    padding: 2px 0;
}

.awards-bold {
    font-weight: 600;
    color: #fff;
}

/* ===== CEO QUOTE ===== */
.ceo-quote {
    position: relative;
    width: 100%;
    height: 620px;
    overflow: hidden;
    background: var(--black);
}

.ceo-quote-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.ceo-quote-shape {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.ceo-quote-content {
    position: relative;
    z-index: 1;
    max-width: 1450px;
    width: 100%;
    margin: 0 auto;
    height: 100%;
}

.ceo-quote-text {
    position: absolute;
    left: 462px;
    top: 108px;
    width: 629px;
}

.ceo-quote-title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 33px;
    line-height: 44px;
    color: var(--teal);
    font-style: italic;
    margin-bottom: 0;
}

.ceo-quote-body {
    position: relative;
    padding-left: 62px;
    margin-top: 42px;
}

.ceo-quote-mark {
    position: absolute;
    left: 0;
    top: 0;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 111px;
    line-height: 33px;
    color: var(--teal);
    height: 92px;
    display: flex;
    align-items: center;
}

.ceo-quote-body p {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 19px;
    line-height: 25px;
    color: var(--grey);
    margin-bottom: 0;
}

.ceo-quote-body p + p {
    margin-top: 25px;
}

.ceo-quote-author {
    margin-top: 25px;
}

.ceo-quote-photo {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 554px;
    height: 659px;
}

.ceo-quote-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* ===== TRADERS MAKE IT HAPPEN ===== */
.traders {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 48px 0;
}

.traders-inner {
    width: 1340px;
    border-radius: 24px;
    border: 2px solid rgba(25,252,226,0.5);
    background: linear-gradient(180deg, #1e1d22 0%, #1a171c 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
}

.traders-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    width: 988px;
}

.traders-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 527px;
}

.traders-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 90px;
    text-align: center;
    background: linear-gradient(90deg, #8f26bd 0%, #19fce2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.traders-stars {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 40px;
}

.traders-avatars {
    display: flex;
    position: relative;
    height: 40px;
    width: 168px;
}

.traders-avatar {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--purple);
    border: 1.818px solid var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.818px;
}

.traders-avatar:nth-child(1) { left: 0; z-index: 6; }
.traders-avatar:nth-child(2) { left: 32px; z-index: 5; }
.traders-avatar:nth-child(3) { left: 32px; z-index: 4; }
.traders-avatar:nth-child(4) { left: 64px; z-index: 3; }
.traders-avatar:nth-child(5) { left: 96px; z-index: 2; }
.traders-avatar:nth-child(6) { left: 128px; z-index: 1; }

.traders-avatar--gradient {
    background: linear-gradient(163deg, #8f26bd 9.5%, #19fce2 88.2%);
}

.traders-avatar img {
    width: 16px;
    height: 16px;
}

.traders-count {
    font-family: 'Noto Sans Display', sans-serif;
    font-size: 33px;
    font-weight: 700;
    line-height: 32px;
    color: #ffffff;
    text-align: center;
}

.traders-feedback {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 666px;
    text-align: center;
}

.traders-feedback-title {
    font-family: 'Noto Sans Display', sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 33px;
    color: var(--teal);
}

.traders-feedback-desc {
    font-family: 'Noto Sans Display', sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 30.875px;
    color: #d1d5dc;
}

.traders-stats {
    display: flex;
    gap: 24px;
    width: 100%;
}

.traders-stat {
    width: 229px;
    height: 150px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.traders-stat:hover {
    transform: translateY(-4px);
}

.traders-stat--teal:hover {
    border-color: rgba(25,252,226,0.5);
    box-shadow: 0 8px 24px rgba(25,252,226,0.1);
}

.traders-stat--purple:hover {
    border-color: rgba(143,38,189,0.5);
    box-shadow: 0 8px 24px rgba(143,38,189,0.1);
}

.traders-stat--teal {
    border: 0.909px solid rgba(25,252,226,0.2);
    background: linear-gradient(147deg, rgba(25,252,226,0.05) 0%, rgba(0,0,0,0) 100%);
}

.traders-stat--purple {
    border: 0.909px solid rgba(143,38,189,0.2);
    background: linear-gradient(147deg, rgba(143,38,189,0.05) 0%, rgba(0,0,0,0) 100%);
}

.traders-stat-icon {
    width: 32px;
    height: 32px;
}

.traders-stat-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-align: center;
}

.traders-stat-num {
    font-family: 'Noto Sans Display', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: #ffffff;
}

.traders-stat-label {
    font-family: 'Noto Sans Display', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #99a1af;
}

.traders-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 304px;
}

.btn-community {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    min-height: 52px;
    background: linear-gradient(135deg, #19fce2 0%, #0de0c8 50%, #14ebd4 100%);
    background-size: 200% 100%;
    color: var(--black);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Noto Sans', sans-serif;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    letter-spacing: 0.4px;
    box-shadow: 0 4px 20px rgba(25,252,226,0.3), inset 0 1px 0 rgba(255,255,255,0.25);
    position: relative;
    overflow: hidden;
}

.btn-community::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
    z-index: 0;
}

.btn-community > * {
    position: relative;
    z-index: 1;
}

.btn-community:hover::before {
    left: 100%;
}

.btn-community:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(25,252,226,0.45), inset 0 1px 0 rgba(255,255,255,0.3);
    background-position: 100% 0;
}

.btn-community:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(25,252,226,0.3);
}

.traders-cta-sub {
    font-family: 'Noto Sans Display', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #99a1af;
    text-align: center;
}

/* ===== FOOTER ===== */
footer {
    background: white !important;
    padding-top: 2rem !important;
}

.site-footer {
    position: relative;
    width: 100%;
    background: var(--black);
    padding: 0 192px;
}

.footer-divider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(25,252,226,0) 0%, rgba(25,252,226,0.5) 50%, rgba(25,252,226,0) 100%);
}

.footer-container {
    max-width: 1536px;
    width: 100%;
    margin: 0 auto;
    padding: 64px 16px 78px;
}

.footer-top {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    justify-content: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 573px;
    flex-shrink: 0;
}

.footer-logo {
    width: 169px;
    height: 53px;
    object-fit: cover;
}

.footer-desc {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 350;
    font-size: 16px;
    line-height: 24px;
    color: rgba(255,255,255,0.6);
    max-width: 384px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 8px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-contact-item span {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 350;
    font-size: 14px;
    line-height: 20px;
    color: rgba(255,255,255,0.6);
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 262px;
    flex-shrink: 0;
}

.footer-links-title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 15.8px;
    line-height: 24px;
    color: #ffffff;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list li a {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 350;
    font-size: 14px;
    line-height: 20px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links-list li a:hover {
    color: var(--teal);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 0.625px solid rgba(255,255,255,0.1);
    margin-top: 48px;
}

.footer-copyright {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 350;
    font-size: 14px;
    line-height: 20px;
    color: rgba(255,255,255,0.4);
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-risk {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 350;
    font-size: 12px;
    line-height: 16px;
    color: rgba(255,255,255,0.4);
}

.footer-scroll-top {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(25,252,226,0.5);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
}

.footer-scroll-top:hover {
    background: rgba(25,252,226,0.1);
    border-color: var(--teal);
}

.footer-arrow-icon {
    width: 20px;
    height: 20px;
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 110;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

header.menu-open .hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

header.menu-open .hamburger span:nth-child(2) {
    opacity: 0;
}

header.menu-open .hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    header.menu-open::after {
        content: '';
        position: fixed;
        inset: 0;
        top: 60px;
        background: rgba(0,0,0,0.5);
        z-index: 90;
    }
}

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

/* ---------- 1800px ---------- */
@media (max-width: 1800px) {
    .x-initiative-bg { display: none; }
}

/* ---------- 1400px ---------- */
@media (max-width: 1400px) {
    header { padding: 0 40px; }
    .nav-links { left: 350px; }
    .header-right { right: 40px; }
    .hero-content { width: 95%; }
    .hero-headline { width: 100%; }
    .stats-row { flex-wrap: wrap; justify-content: center; }
    .anniversary-content { width: 95%; }
    .offer-card { width: 100%; padding: 50px 40px 50px 80px; }
    .offer-card-inner { gap: 60px; }
    .celebrations-content { width: 95%; }
    .x-initiative-content { padding-left: 80px; padding-top: 48px; padding-bottom: 48px; gap: 40px; }
    .trust-content { width: 95%; }
    .trust-card { width: calc(33.333% - 16px); }
    .reliability-content { width: 95%; }
    .ceo-quote-text { left: 340px; width: 540px; }
    .ceo-quote-photo { width: 460px; height: 550px; }
    .awards-title { font-size: 36px; line-height: 60px; }
    .awards-box { padding: 24px 32px; }
    .awards-list { font-size: 20px; }
    .awards-laurel { width: 75px; height: 108px; }
    .traders-inner { width: 95%; }
    .traders-content { width: 90%; }
    .site-footer { padding: 0 80px; }
    .footer-brand { width: 400px; }
    .footer-links-col { width: auto; flex: 1; }
}

/* ---------- 1024px ---------- */
@media (max-width: 1024px) {
    .hero-15y { width: 500px; height: 500px; right: 0; }
    .hero-content { width: 90%; }
    .hero-title { font-size: 40px; line-height: 44px; }
    .hero-tagline { font-size: 28px; line-height: 40px; }
    .hero-desc { font-size: 18px; line-height: 28px; }
    .stat-box { width: 180px; height: 140px; }
    .stat-num { font-size: 44px; }
    .offer-card-inner { flex-direction: column; gap: 40px; }
    .offer-card { height: auto; padding: 50px 40px; }
    .anniversary-heading .gradient-title { font-size: 38px; line-height: 42px; width: auto; }
    .celebrations-title { font-size: 38px; line-height: 42px; }
    .celebrations-sub { font-size: 22px; line-height: 32px; }
    .celebrations-cards { flex-wrap: wrap; justify-content: center; }
    .cel-card { flex: 0 0 calc(50% - 6px); }
    .x-initiative-title { font-size: 40px; line-height: 60px; }
    .x-initiative-content { padding-left: 40px; gap: 60px; }
    .x-initiative-columns { flex-direction: column; gap: 32px; }
    .x-initiative-col:first-child,
    .x-initiative-col:last-child { width: 100%; max-width: 443px; }
    .trust-card { width: calc(50% - 12px); }
    .trust-title { font-size: 36px; line-height: 60px; }
    .reliability-layout { flex-wrap: wrap; gap: 40px; }
    .reliability-col { flex-shrink: 1; }
    .reliability-col--left,
    .reliability-col--right { width: 420px; }
    .reliability-card { width: 420px; }
    .reliability-center { width: 280px; height: 280px; }
    .reliability-badge { width: 280px; height: 280px; }
    .reliability-title { font-size: 36px; line-height: 60px; }
    .reliability-connector { display: none; }
    .awards-title { font-size: 32px; line-height: 50px; }
    .awards-box { padding: 20px 24px; }
    .awards-list { font-size: 18px; }
    .awards-laurel { width: 65px; height: 94px; }
    .ceo-quote { height: 620px; }
    .ceo-quote-text { left: 40px; width: calc(58% - 40px); top: 60px; }
    .ceo-quote-title { font-size: 26px; line-height: 36px; }
    .ceo-quote-body p { font-size: 16px; line-height: 23px; }
    .ceo-quote-body { padding-left: 50px; margin-top: 30px; }
    .ceo-quote-mark { font-size: 90px; height: 72px; }
    .ceo-quote-photo { width: 380px; height: 460px; bottom: 0; top: auto; }
    .traders-inner { width: 95%; }
    .traders-content { width: 90%; }
    .traders-stats { flex-wrap: wrap; justify-content: center; }
    .traders-stat { width: calc(50% - 12px); }
    .traders-title { font-size: 36px; line-height: 60px; }
    .site-footer { padding: 0 40px; }
    .footer-top { flex-wrap: wrap; gap: 40px; }
    .footer-brand { width: 100%; }
    .footer-links-col { width: calc(33.333% - 28px); flex: none; }
}

/* ---------- 768px: Tablet / Mobile hamburger menu ---------- */
@media (max-width: 768px) {
    /* Header: hamburger layout */
    header {
        height: 60px;
        padding: 0 20px;
        flex-wrap: nowrap;
        justify-content: space-between;
        position: sticky;
        top: 0;
    }

    .logo-img { height: 60px; width: 190px; }

    .hamburger { display: flex; }

    .nav-links,
    .header-right {
        display: none;
        position: static;
        transform: none;
    }

    header.menu-open {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        height: auto;
        flex-wrap: wrap;
        padding-bottom: 0;
        z-index: 1000;
    }

    header.menu-open .logo-img {
        order: -2;
    }

    header.menu-open .hamburger {
        order: -1;
    }

    header.menu-open .nav-links,
    header.menu-open .header-right {
        display: flex;
        flex-direction: column;
        position: static;
        transform: none;
        width: 100%;
        background: var(--black);
        z-index: 200;
    }

    header.menu-open .nav-links {
        padding: 20px 20px 12px;
        gap: 16px;
        border-top: 1px solid rgba(25,252,226,0.15);
    }

    header.menu-open .nav-links a { font-size: 17px; }

    header.menu-open .header-right {
        padding: 12px 20px 24px;
        gap: 16px;
        align-items: stretch;
        border-bottom: 1px solid rgba(25,252,226,0.15);
    }

    .lang-toggle { justify-content: center; }

    .btn-register { width: 100%; height: 46px; font-size: 15px; border-radius: 50px; }

    /* Hero */
    .hero-15y { display: none; }
    .hero::after { display: none; }
    .hero { height: auto; padding: 48px 20px 60px; }
    .hero-content { position: static; transform: none; width: 100%; gap: 40px; }
    .hero-headline { gap: 20px; }
    .hero-title { font-size: 32px; line-height: 38px; }
    .hero-tagline { font-size: 22px; line-height: 32px; }
    .hero-desc { font-size: 16px; line-height: 24px; }
    .hero-desc .light { font-size: 17px; }
    .hero-desc br { display: none; }
    .stat-box { width: calc(50% - 3px); height: 120px; }
    .stat-num { font-size: 36px; height: 40px; }
    .stat-label { font-size: 14px; line-height: 18px; margin-top: 12px; }

    /* Anniversary */
    .anniversary { height: auto; padding: 40px 20px; }
    .anniversary-content { position: static; transform: none; width: 100%; gap: 32px; }
    .anniversary-bg { left: -51px; width: 200vw; height: auto; }
    .anniversary-heading .pre-title { font-size: 22px; line-height: 28px; }
    .anniversary-heading .gradient-title { font-size: 32px; line-height: 38px; width: auto; }
    .anniversary-sub { font-size: 18px; line-height: 28px; }
    .anniversary-texts { gap: 32px; }
    .stage-bar { width: 100%; height: auto; padding: 8px; }
    .stage-pill { flex: 1; height: 54px; padding: 6px 12px; }
    .stage-info .stage-num { font-size: 16px; }
    .stage-info .stage-name { font-size: 14px; line-height: 22px; }
    .stage-pill .stage-icon { width: 28px; height: 28px; }
    .offer-card--stage2 .offer-amount { font-size: 56px; line-height: 56px; }
    .offer-sub-label span { font-size: 16px; }
    .offer-deposit-calc { padding: 16px 18px; }
    .deposit-value { font-size: 18px; }
    .offer-texts .title-purple { font-size: 24px; line-height: 32px; }
    .offer-card { width: 100%; padding: 32px 20px; border-radius: 20px; }
    .offer-card-inner { flex-direction: column; gap: 32px; align-items: center; }
    .offer-left { justify-items: center; }
    .offer-amount { font-size: 72px; line-height: 72px; width: auto; text-align: center; }
    .offer-glow { width: 160px; height: 100px; }
    .offer-no-deposit { margin-top: 80px; margin-left: 0; }
    .offer-amount-jp { font-size: 60px; line-height: 60px; }
    .offer-amount-jp .offer-currency { font-size: 34px; }
    .offer-no-deposit-jp { margin-top: 64px; }
    .offer-card--stage2 .offer-left { width: 100%; }
    .offer-card--stage2 .offer-no-deposit { margin-top: 12px; }
    .offer-right { width: 100%; }
    .offer-texts .title-white,
    .offer-texts .title-teal { font-size: 24px; line-height: 32px; }
    .offer-texts .desc { font-size: 15px; line-height: 22px; }
    .offer-features { width: 100%; }
    .feature-item { height: auto; padding: 12px 14px; }
    .btn-launch { width: 100%; height: 54px; border-radius: 50px; }

    /* Celebrations */
    .celebrations { padding: 40px 20px; }
    .celebrations-content { width: 100%; gap: 32px; }
    .celebrations-header { width: 100%; }
    .celebrations-title { font-size: 30px; line-height: 36px; }
    .celebrations-sub { font-size: 16px; line-height: 24px; }
    .celebrations-cards { flex-direction: column; gap: 16px; }
    .cel-card { flex: none; width: 100%; }
    .cel-card-inner { height: auto; min-height: 0; overflow: visible; padding: 24px 16px; }
    .cel-card-glow { height: 100%; min-height: 200px; }
    .cel-card-wrap { margin: 0 auto; padding: 24px 0; }

    /* X Initiative */
    .x-initiative { min-height: auto; padding: 40px 20px; }
    .x-initiative-bg { display: none; }
    .x-initiative-content { padding: 0; max-width: 100%; gap: 48px; }
    .x-initiative-top { align-items: center; gap: 24px; }
    .x-initiative-badge { width: auto; padding: 10px 24px; }
    .x-initiative-title { font-size: 28px; line-height: 38px; text-align: center; }
    .x-initiative-details { max-width: 100%; gap: 32px; }
    .x-initiative-columns { flex-direction: column; gap: 28px; }
    .x-initiative-col:first-child,
    .x-initiative-col:last-child { width: 100%; }
    .x-initiative-col-header h3 { font-size: 22px; line-height: 32px; }
    .x-initiative-col-text { font-size: 16px; line-height: 22px; }
    .btn-find-out { white-space: normal; text-align: center; padding: 14px 28px; font-size: 15px; }

    /* Trust */
    .trust { padding: 40px 20px; }
    .trust-content { width: 100%; }
    .trust-title { font-size: 26px; line-height: 36px; }
    .trust-grid { flex-direction: column; gap: 16px; }
    .trust-card { width: 100%; height: auto; }
    .trust-disclaimer { font-size: 13px; line-height: 20px; }

    /* Reliability */
    .reliability { padding: 40px 20px; }
    .reliability-content { width: 100%; padding: 0; }
    .reliability-title { font-size: 26px; line-height: 36px; }
    .reliability-sub { font-size: 16px; line-height: 24px; }
    .reliability-layout { flex-direction: column; gap: 24px; }
    .reliability-col--left,
    .reliability-col--right { width: 100%; }
    .reliability-col { gap: 24px; }
    .reliability-card { width: 100%; height: auto; min-height: 140px; }
    .reliability-card-content { padding: 20px 24px; }
    .reliability-card-title { font-size: 20px; line-height: 24px; }
    .reliability-card-text { font-size: 14px; line-height: 20px; }
    .reliability-center { width: 180px; height: 180px; order: -1; }
    .reliability-badge { width: 180px; height: 180px; }
    .reliability-badge-inner { width: 120px; height: 140px; }
    .reliability-15-logo { width: 116px; height: 136px; }
    .reliability-years-text { width: 56px; height: 14px; }
    .reliability-connector { display: none; }

    /* CEO Quote */
    .ceo-quote { height: auto; }
    .ceo-quote-content { height: auto; display: flex; flex-direction: column; }
    .ceo-quote-text { position: relative; left: auto; top: auto; width: 100%; padding: 40px 20px 24px; }
    .ceo-quote-title { font-size: 22px; line-height: 30px; }
    .ceo-quote-title br { display: none; }
    .ceo-quote-body { padding-left: 36px; margin-top: 20px; }
    .ceo-quote-mark { font-size: 72px; height: 56px; }
    .ceo-quote-body p { font-size: 15px; line-height: 22px; }
    .ceo-quote-photo {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        max-width: 320px;
        height: 360px;
        margin: 0 auto;
    }

    /* Awards */
    .awards { padding: 50px 20px; }
    .awards-content { padding: 0; }
    .awards-title { font-size: 24px; line-height: 34px; }
    .awards-box { flex-direction: column; gap: 16px; padding: 24px 20px; }
    .awards-list { font-size: 15px; }
    .awards-laurel { width: 50px; height: 72px; }
    .awards-laurel--left { transform: rotate(90deg); }
    .awards-laurel--right { transform: rotate(-90deg); }

    /* Traders */
    .traders { padding: 40px 20px; }
    .traders-inner { width: 100%; padding: 40px 20px; }
    .traders-content { width: 100%; gap: 40px; }
    .traders-header { width: 100%; }
    .traders-title { font-size: 26px; line-height: 36px; }
    .traders-feedback { width: 100%; }
    .traders-feedback-title { font-size: 18px; line-height: 26px; }
    .traders-feedback-desc { font-size: 16px; line-height: 24px; }
    .traders-stats { flex-wrap: wrap; gap: 12px; }
    .traders-stat { width: calc(50% - 6px); height: 130px; padding: 16px; }
    .traders-count { font-size: 24px; }

    /* Footer */
    .site-footer { padding: 0 20px; }
    .footer-container { padding: 40px 0 50px; }
    .footer-top { flex-direction: column; gap: 32px; }
    .footer-brand { width: 100%; }
    .footer-links-col { width: 100%; }
    .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
    .footer-bottom-right { width: 100%; justify-content: space-between; }
}

/* ---------- 480px: Small mobile ---------- */
@media (max-width: 480px) {
    .hero { padding: 36px 16px 48px; }
    .hero-content { gap: 32px; }
    .hero-title { font-size: 26px; line-height: 32px; }
    .hero-tagline { font-size: 18px; line-height: 26px; }
    .hero-desc { font-size: 14px; line-height: 21px; }
    .hero-desc .light { font-size: 15px; }
    .stats-row { gap: 4px; }
    .stat-box { width: calc(50% - 2px); height: 100px; padding: 12px 0; border-radius: 12px; }
    .stat-num { font-size: 28px; height: 32px; }
    .stat-label { font-size: 12px; line-height: 15px; margin-top: 8px; }
    .btn-join { width: 100%; }

    .anniversary { padding: 32px 16px; }
    .anniversary-content { gap: 24px; }
    .anniversary-top { gap: 20px; }
    .offer-badge { width: auto; height: auto; padding: 8px 16px; }
    .offer-badge-text { font-size: 13px; }
    .anniversary-heading .pre-title { font-size: 18px; line-height: 24px; }
    .anniversary-heading .gradient-title { font-size: 26px; line-height: 32px; }
    .anniversary-sub { font-size: 15px; line-height: 22px; }
    .offer-card { padding: 24px 16px; border-radius: 16px; }
    .offer-amount { font-size: 56px; line-height: 56px; }
    .offer-amount-jp { font-size: 46px; line-height: 46px; }
    .offer-amount-jp .offer-currency { font-size: 28px; }
    .offer-glow { width: 120px; height: 80px; }
    .offer-no-deposit { margin-top: 60px; width: 160px; height: 36px; }
    .offer-no-deposit-jp { margin-top: 48px; width: auto; height: auto; min-height: 36px; }
    .offer-no-deposit span { font-size: 12px; }
    .offer-texts .title-white,
    .offer-texts .title-teal { font-size: 20px; line-height: 28px; }
    .offer-texts .desc { font-size: 14px; line-height: 20px; }
    .feature-item p { font-size: 14px; }
    .btn-launch { height: 50px; border-radius: 50px; }
    .btn-launch span { font-size: 15px; }

    .celebrations { padding: 32px 16px; }
    .celebrations-title { font-size: 24px; line-height: 30px; }
    .celebrations-sub { font-size: 14px; line-height: 22px; }
    .cel-card-inner { min-height: 0; }
    .cel-card-glow { height: 100%; min-height: 180px; }
    .cel-card-name { font-size: 18px; line-height: 32px; }
    .cel-card-desc { font-size: 15px; line-height: 20px; }

    .x-initiative { padding: 32px 16px; }
    .x-initiative-title { font-size: 24px; line-height: 32px; }
    .x-initiative-badge span { font-size: 14px; }

    .trust { padding: 32px 16px; }
    .trust-title { font-size: 22px; line-height: 30px; }
    .trust-card-name { font-size: 18px; }
    .trust-card-subtitle { font-size: 15px; }

    .reliability { padding: 32px 16px; }
    .reliability-title { font-size: 22px; line-height: 30px; }
    .reliability-sub { font-size: 14px; line-height: 22px; }
    .reliability-center { width: 150px; height: 150px; }
    .reliability-badge { width: 150px; height: 150px; }
    .reliability-badge-inner { width: 100px; height: 118px; }
    .reliability-15-logo { width: 96px; height: 112px; }
    .reliability-years-text { width: 48px; height: 12px; }

    .ceo-quote-text { padding: 32px 16px 20px; }
    .ceo-quote-title { font-size: 19px; line-height: 26px; }
    .ceo-quote-body { padding-left: 28px; margin-top: 16px; }
    .ceo-quote-mark { font-size: 56px; height: 44px; }
    .ceo-quote-body p { font-size: 14px; line-height: 20px; }
    .ceo-quote-photo { max-width: 260px; height: 300px; }

    .awards { padding: 32px 16px; }
    .awards-title { font-size: 20px; line-height: 28px; }
    .awards-box { padding: 20px 16px; }
    .awards-list { font-size: 13px; }
    .awards-laurel { width: 40px; height: 58px; }

    .traders { padding: 32px 16px; }
    .traders-inner { padding: 32px 16px; border-radius: 16px; }
    .traders-title { font-size: 22px; line-height: 30px; }
    .traders-feedback-title { font-size: 16px; line-height: 22px; }
    .traders-feedback-desc { font-size: 14px; line-height: 22px; }
    .traders-stat { width: calc(50% - 6px); height: 120px; padding: 12px; }
    .traders-stat-num { font-size: 20px; line-height: 28px; }
    .traders-stat-label { font-size: 12px; }
    .traders-count { font-size: 22px; }
    .traders-cta { gap: 24px; }

    .site-footer { padding: 0 16px; }
    .footer-container { padding: 32px 0 40px; }
    .footer-desc { font-size: 14px; }
    .footer-links-title { font-size: 14px; }
    .footer-bottom { gap: 12px; }
}
