:root {
    --bg: #f4f9fd;
    --surface: #ffffff;
    --text: #0e1726;
    --muted: #667085;
    --line: #dbeaf3;
    --green: #38bdf8;
    --green-dark: #0284c7;
    --green-soft: #e0f2fe;
    --shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: radial-gradient(circle at 50% -10%, #ffffff 0, var(--bg) 58%, #e8f4fb 100%);
    font-family: "Saira", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
}

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

.shell {
    width: min(92vw, 1440px);
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(230, 236, 229, 0.9);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
}

.nav-shell {
    min-height: 70px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
}

.brand {
    font-size: 24px;
    font-weight: 900;
}

.brand strong {
    color: var(--green);
}

.menu {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 13px;
    font-weight: 700;
}

.menu a {
    display: inline-flex;
    align-items: center;
    min-height: 70px;
    border-bottom: 3px solid transparent;
}

.menu a:hover,
.menu .is-active {
    color: var(--green);
    border-color: var(--green);
}

.header-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 38px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta,
.btn-primary {
    color: #fff;
    background: linear-gradient(180deg, #38bdf8 0%, #0284c7 100%);
    box-shadow: 0 13px 24px rgba(56, 189, 248, 0.23);
}

.btn-secondary {
    color: #0369a1;
    background: #fff;
    border-color: rgba(56, 189, 248, 0.45);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(56, 189, 248, 0.18);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 0;
    background: transparent;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    border-radius: 99px;
    background: #111827;
}

.v2-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.2fr);
    gap: clamp(28px, 5vw, 80px);
    align-items: center;
    min-height: 390px;
    padding: 34px 0 10px;
    overflow: hidden;
}

.eyebrow {
    display: inline-flex;
    margin: 0 0 22px;
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--green);
    background: var(--green-soft);
    font-size: 12px;
    font-weight: 900;
}

.v2-hero h1 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(42px, 4.2vw, 68px);
    line-height: 1.08;
    letter-spacing: 0;
}

.v2-hero h1 span {
    color: var(--green);
}

.typewriter-static {
    display: block;
    color: var(--text) !important;
}

.typewriter-line {
    display: inline-flex;
    align-items: center;
    min-height: 1.16em;
}

.typewriter-text {
    color: var(--green);
}

.typewriter-cursor {
    display: inline-block;
    width: 4px;
    height: 0.9em;
    margin-left: 7px;
    border-radius: 99px;
    background: var(--green);
    animation: cursor-blink 0.82s steps(2, start) infinite;
}

.v2-hero-copy > p:not(.eyebrow) {
    max-width: 640px;
    margin: 22px 0 24px;
    color: #344054;
    font-size: 17px;
    line-height: 1.65;
    font-weight: 500;
}

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

.v2-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    align-items: center;
    margin-top: 58px;
    color: #344054;
    font-size: 13px;
    font-weight: 800;
}

.v2-proof span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.avatar-stack i,
.review-avatar {
    width: 27px;
    aspect-ratio: 1;
    display: inline-block;
    margin-left: -8px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8c78b, #6d381e);
}

.avatar-stack i:first-child {
    margin-left: 0;
}

.avatar-stack i:nth-child(2) {
    background: linear-gradient(135deg, #d5f6d7, #127a2c);
}

.avatar-stack i:nth-child(3) {
    background: linear-gradient(135deg, #dbeafe, #1d4ed8);
}

.v2-hero-visual {
    position: relative;
    min-height: 430px;
}

.leaf {
    position: absolute;
    border-radius: 55% 45% 55% 45%;
    background: rgba(56, 189, 248, 0.08);
    animation: slow-drift 6s ease-in-out infinite;
}

.leaf-one {
    inset: 24px 90px 45px 20px;
    transform: rotate(-10deg);
}

.leaf-two {
    right: -20px;
    bottom: 18px;
    width: 480px;
    height: 180px;
    transform: rotate(-16deg);
    animation-delay: 0.6s;
}

.phone-mockup,
.small-phone {
    position: relative;
    z-index: 2;
    width: 245px;
    min-height: 370px;
    margin: 0 auto;
    padding: 22px 18px;
    border: 7px solid #111827;
    border-radius: 38px;
    background: #fff;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22);
    animation: phone-float 4.2s ease-in-out infinite;
}

.phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    width: 86px;
    height: 22px;
    border-radius: 999px;
    background: #0b1220;
    transform: translateX(-50%);
}

.phone-top {
    display: flex;
    justify-content: space-between;
    margin: 2px 0 20px;
    color: #101828;
    font-size: 10px;
    font-weight: 900;
}

.phone-mockup p {
    margin: 0 0 12px;
    color: #344054;
    font-size: 12px;
    font-weight: 700;
}

.app-card {
    padding: 16px;
    border-radius: 12px;
    color: #fff;
    background:
        radial-gradient(circle at 100% 0, rgba(255,255,255,0.28), transparent 35%),
        linear-gradient(135deg, #38bdf8, #0284c7);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.32), 0 16px 30px rgba(56, 189, 248, 0.25);
}

.app-card small,
.app-card em {
    display: block;
    font-style: normal;
    opacity: 0.88;
}

.app-card strong {
    display: block;
    margin: 6px 0 2px;
    font-size: 25px;
}

.app-card button {
    margin-top: 12px;
    min-height: 26px;
    padding: 0 16px;
    border: 0;
    border-radius: 999px;
    color: #0369a1;
    background: #fff;
    font: inherit;
    font-size: 11px;
    font-weight: 900;
}

.phone-mockup h4 {
    margin: 18px 0 10px;
}

.phone-mockup ul {
    display: grid;
    gap: 9px;
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 11px;
}

.phone-mockup li {
    display: grid;
    grid-template-columns: 20px 1fr auto;
    gap: 8px;
    align-items: center;
    color: #667085;
}

.phone-mockup li span {
    color: var(--green);
}

.phone-mockup li strong {
    color: #111827;
}

.metric-card {
    position: absolute;
    z-index: 3;
    width: 185px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
    animation: card-float 4s ease-in-out infinite;
}

.metric-card small,
.metric-card em {
    display: block;
    color: var(--green);
    font-style: normal;
    font-weight: 900;
}

.metric-card strong {
    display: block;
    margin: 5px 0;
    font-size: 19px;
}

.metric-a { top: 56px; right: 110px; }
.metric-b { top: 145px; right: 112px; animation-delay: 0.25s; }
.metric-c { top: 238px; right: 112px; animation-delay: 0.5s; }
.metric-d { top: 330px; right: 112px; animation-delay: 0.75s; }

.mini-chart {
    position: absolute;
    right: 14px;
    top: 26px;
    width: 54px;
    height: 34px;
    border-right: 3px solid rgba(56, 189, 248, 0.2);
    border-bottom: 3px solid rgba(56, 189, 248, 0.2);
}

.mini-chart::after {
    content: "";
    position: absolute;
    inset: 12px 0 5px 4px;
    border-top: 3px solid #85d99b;
    border-right: 3px solid #85d99b;
    transform: skewY(-32deg);
}

.partners {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 26px;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.partners h2 {
    margin: 0;
    font-size: 19px;
}

.partner-logos {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.partner-track {
    display: flex;
    width: max-content;
    gap: 16px;
    animation: partner-marquee 24s linear infinite;
}

.partner-logos:hover .partner-track {
    animation-play-state: paused;
}

.partner-logos span {
    display: grid;
    place-items: center;
    min-width: 160px;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    font-size: 20px;
    font-weight: 900;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partner-logos span:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(56, 189, 248, 0.12);
}

.exchange-showcase {
    margin-top: 26px;
    padding: 42px 0 46px;
    color: #f8fafc;
    background:
        radial-gradient(circle at 50% 0%, rgba(113, 255, 0, 0.12), transparent 42%),
        linear-gradient(180deg, #020602 0%, #04101d 100%);
    overflow: hidden;
}

.exchange-showcase + .exchange-showcase {
    margin-top: 0;
    padding-top: 22px;
}

.exchange-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.exchange-title h2,
.exchange-modal h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.15;
    color: #fff;
}

.exchange-title button {
    border: 0;
    color: rgba(255, 255, 255, 0.88);
    background: transparent;
    font: inherit;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

.exchange-title button:hover {
    color: #7dd3fc;
    transform: translateX(4px);
}

.exchange-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(330px, 390px);
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 0 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    cursor: grab;
}

.exchange-slider::-webkit-scrollbar {
    display: none;
}

.exchange-slider.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

.exchange-card {
    position: relative;
    min-height: 410px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(20, 29, 18, 0.96), rgba(14, 24, 12, 0.96));
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
    scroll-snap-align: start;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}

.exchange-card::before {
    content: "";
    position: absolute;
    inset: -40% -20% auto auto;
    width: 180px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(125, 211, 252, 0.12);
    filter: blur(12px);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.exchange-card:hover {
    transform: translateY(-7px);
    border-color: rgba(125, 211, 252, 0.32);
    box-shadow: 0 30px 70px rgba(90, 255, 0, 0.13);
}

.exchange-card:hover::before {
    opacity: 1;
}

.exchange-hot {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    padding: 7px 13px;
    border-radius: 9px;
    color: #111;
    background: #ffc766;
    font-weight: 900;
}

.exchange-head {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

.exchange-logo {
    display: grid;
    place-items: center;
    width: 72px;
    aspect-ratio: 1;
    border: 1px solid rgba(125, 211, 252, 0.22);
    border-radius: 13px;
    color: #fff;
    background: #020b14;
    font-size: 23px;
    font-weight: 900;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.exchange-head h3 {
    margin: 0 0 4px;
    font-size: 30px;
    line-height: 1.1;
}

.exchange-head p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    font-weight: 800;
}

.exchange-card dl {
    display: grid;
    gap: 16px;
    margin: 0 0 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.exchange-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.exchange-card dt {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 800;
}

.exchange-card dd {
    margin: 0;
    color: #7dd3fc;
    text-align: right;
    font-size: 18px;
    font-weight: 900;
}

.bonus-pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 14px;
    border-radius: 8px;
    color: #082f49;
    background: linear-gradient(90deg, #7dd3fc, #38bdf8);
    font-size: 13px;
}

.exchange-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.exchange-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-radius: 999px;
    color: #082f49;
    background: #7dd3fc;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(125, 211, 252, 0.18);
    transition: transform 0.2s ease, filter 0.2s ease;
}

.exchange-actions a + a {
    color: #fff;
    background: rgba(255, 255, 255, 0.22);
    box-shadow: none;
}

.exchange-actions a:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.slider-dots span {
    width: 10px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(125, 211, 252, 0.22);
}

.slider-dots .is-active {
    background: #7dd3fc;
}

.exchange-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    padding: 34px;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(10px);
}

.exchange-modal.is-open {
    display: grid;
    place-items: center;
}

.exchange-modal-panel {
    position: relative;
    width: min(1180px, 100%);
    max-height: min(840px, calc(100vh - 68px));
    overflow: auto;
    padding: 34px;
    border: 1px solid rgba(125, 211, 252, 0.22);
    border-radius: 22px;
    color: #fff;
    background:
        radial-gradient(circle at 50% 0%, rgba(125, 211, 252, 0.12), transparent 32%),
        #050905;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.44);
}

.exchange-modal-close {
    position: sticky;
    top: 0;
    float: right;
    display: grid;
    place-items: center;
    width: 42px;
    aspect-ratio: 1;
    border: 0;
    border-radius: 50%;
    color: #111;
    background: #7dd3fc;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.exchange-modal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 26px;
}

.exchange-modal .exchange-card {
    min-height: 390px;
}

.v2-modules {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
    padding: 34px 0 28px;
}

.module-box,
.plan-card,
.v2-cta {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
}

.module-box {
    padding: 22px;
    overflow: hidden;
}

.module-box::before,
.plan-card::before,
.v2-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 10% 0, rgba(56, 189, 248, 0.1), transparent 34%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.module-box:hover::before,
.plan-card:hover::before,
.v2-cta:hover::before {
    opacity: 1;
}

.module-box > *,
.plan-card > *,
.v2-cta > * {
    position: relative;
    z-index: 1;
}

.module-title {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    margin-bottom: 18px;
}

.module-title h2 {
    margin: 0;
    font-size: 20px;
}

.module-title a {
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
}

.mini-grid {
    display: grid;
    gap: 14px;
}

.mini-grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.features-box,
.why-box {
    grid-column: span 1;
}

.process-box {
    grid-column: span 1;
}

.mini-card,
.process-row article,
.review-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mini-card {
    min-height: 150px;
    padding: 16px;
}

.mini-card:hover,
.process-row article:hover,
.review-card:hover,
.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(56, 189, 248, 0.12);
}

.mini-card span,
.process-row article span {
    display: grid;
    place-items: center;
    width: 42px;
    aspect-ratio: 1;
    margin-bottom: 13px;
    border-radius: 50%;
    color: var(--green);
    background: var(--green-soft);
    font-size: 22px;
    animation: icon-breathe 2.8s ease-in-out infinite;
}

.mini-card h3,
.process-row h3 {
    margin: 0 0 8px;
    font-size: 14px;
}

.mini-card p,
.process-row p,
.review-card p,
.plan-card li,
.v2-cta p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}

.process-row {
    display: grid;
    grid-template-columns: 1fr 28px 1fr 28px 1fr;
    gap: 10px;
    align-items: stretch;
}

.process-row article {
    padding: 18px;
}

.process-row b {
    display: grid;
    place-items: center;
    width: 25px;
    aspect-ratio: 1;
    margin: 0 auto 10px;
    border-radius: 50%;
    color: #fff;
    background: var(--green);
}

.process-row > i {
    display: grid;
    place-items: center;
    color: var(--green);
    font-style: normal;
    font-weight: 900;
}

.table-testimonials {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.7fr);
    gap: 28px;
    padding: 8px 0 28px;
}

.broker-table-wrap {
    overflow-x: auto;
}

.broker-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.broker-table th,
.broker-table td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    white-space: nowrap;
}

.broker-table th {
    color: #475467;
    font-weight: 900;
    background: #f9fbf9;
}

.broker-table .green {
    color: var(--green);
    font-weight: 900;
}

.broker-table a {
    display: inline-flex;
    justify-content: center;
    min-width: 88px;
    min-height: 26px;
    align-items: center;
    border: 1px solid rgba(56, 189, 248, 0.45);
    border-radius: 6px;
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
}

.review-box {
    display: grid;
    gap: 14px;
}

.review-card {
    padding: 20px;
}

.review-card p {
    font-size: 14px;
}

.review-card p::before {
    content: "“";
    display: block;
    color: var(--green);
    font-size: 42px;
    line-height: 0.7;
}

.review-card div {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 12px;
    align-items: center;
    margin-top: 18px;
}

.review-avatar {
    grid-row: span 2;
    margin-left: 0;
}

.review-avatar.alt {
    background: linear-gradient(135deg, #fde68a, #9a3412);
}

.review-card small {
    color: var(--muted);
}

.review-card em {
    display: block;
    margin-top: 12px;
    color: #f59e0b;
    font-style: normal;
    letter-spacing: 3px;
}

.plans-cta {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
    gap: 28px;
    padding: 4px 0 30px;
}

.posts-section {
    padding: 4px 0 34px;
}

.posts-title {
    margin-bottom: 18px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.post-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    overflow: hidden;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(56, 189, 248, 0.12);
}

.post-thumb {
    display: grid;
    place-items: center;
    min-height: 168px;
    color: #fff;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.24), transparent 30%),
        linear-gradient(135deg, #04101d 0%, #38bdf8 58%, #bae6fd 100%);
}

.post-thumb img {
    width: 100%;
    height: 100%;
    min-height: 168px;
    object-fit: cover;
}

.post-thumb span {
    display: grid;
    place-items: center;
    width: 72px;
    aspect-ratio: 1;
    border: 2px solid rgba(255, 255, 255, 0.68);
    border-radius: 50%;
    font-size: 34px;
    font-weight: 900;
    animation: icon-breathe 2.8s ease-in-out infinite;
}

.post-body {
    padding: 18px;
}

.post-body time {
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.post-body h3 {
    margin: 8px 0 10px;
    font-size: 18px;
    line-height: 1.35;
}

.post-body p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.post-more {
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
}

.backcom-info-section {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 24px;
    padding: 0 0 38px;
}

.info-boxer {
    position: relative;
    display: grid;
    grid-template-columns: 66px 1fr;
    gap: 20px;
    min-height: 320px;
    padding: 30px;
    border: 1px solid rgba(56, 189, 248, 0.24);
    border-radius: 18px;
    overflow: hidden;
    background:
        radial-gradient(circle at 86% 0%, rgba(125, 211, 252, 0.18), transparent 34%),
        linear-gradient(145deg, #ffffff 0%, #eff9ff 100%);
    box-shadow: 0 22px 55px rgba(56, 189, 248, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-boxer::before {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -90px;
    width: 240px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.1);
    animation: slow-pulse 4.5s ease-in-out infinite;
}

.info-boxer:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 75px rgba(56, 189, 248, 0.18);
}

.info-boxer > * {
    position: relative;
    z-index: 1;
}

.info-icon {
    display: grid;
    place-items: center;
    width: 62px;
    aspect-ratio: 1;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, #38bdf8, #0284c7);
    font-size: 32px;
    font-weight: 900;
    box-shadow: 0 16px 30px rgba(56, 189, 248, 0.25);
    animation: icon-breathe 2.8s ease-in-out infinite;
}

.info-boxer span {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.info-boxer h2 {
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 1.2;
}

.info-boxer p {
    margin: 0;
    color: #475467;
    line-height: 1.75;
}

.info-points {
    display: grid;
    gap: 9px;
    margin-top: 18px;
}

.info-points b {
    display: inline-flex;
    color: #075985;
    font-size: 14px;
}

.info-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.info-steps div {
    padding: 14px;
    border: 1px solid rgba(56, 189, 248, 0.16);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.76);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.info-steps div:hover {
    transform: translateY(-3px);
    border-color: rgba(56, 189, 248, 0.36);
}

.info-steps strong {
    color: var(--green);
    font-size: 13px;
}

.info-steps h3 {
    margin: 4px 0 6px;
    font-size: 15px;
}

.info-steps p {
    font-size: 12px;
    line-height: 1.55;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.plan-card {
    padding: 24px;
    overflow: hidden;
}

.plan-card.is-featured {
    border: 2px solid var(--green);
    box-shadow: 0 20px 45px rgba(56, 189, 248, 0.14);
}

.plan-card small {
    position: absolute;
    right: 0;
    top: 0;
    padding: 5px 12px;
    border-radius: 0 0 0 7px;
    color: #fff;
    background: var(--green);
    font-size: 11px;
    font-weight: 900;
}

.plan-card h3 {
    margin: 0 0 4px;
}

.plan-card > strong {
    display: block;
    margin-bottom: 16px;
    color: var(--green);
    font-size: 22px;
}

.plan-card ul {
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 0 0 18px;
    list-style: none;
}

.plan-card .btn {
    width: 100%;
}

.v2-cta {
    display: grid;
    grid-template-columns: 1fr 150px;
    gap: 22px;
    align-items: center;
    min-height: 220px;
    padding: 34px;
    overflow: hidden;
    background:
        radial-gradient(circle at 75% 100%, rgba(56, 189, 248, 0.18), transparent 32%),
        linear-gradient(135deg, #ffffff 0%, #eff9ff 100%);
}

.v2-cta h2 {
    max-width: 470px;
    margin: 0 0 10px;
    font-size: 32px;
    line-height: 1.2;
}

.v2-cta p {
    max-width: 450px;
    margin-bottom: 22px;
    font-size: 14px;
}

.small-phone {
    width: 130px;
    min-height: 210px;
    padding: 32px 10px 12px;
    border-width: 5px;
    border-radius: 24px;
    margin: 0;
}

.small-phone .phone-notch {
    width: 52px;
    height: 14px;
    top: 8px;
}

.small-phone .app-card {
    padding: 10px;
}

.small-phone .app-card strong {
    font-size: 17px;
}

.coin {
    position: absolute;
    display: grid;
    place-items: center;
    width: 48px;
    aspect-ratio: 1;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #fbbf24, #f97316);
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(249, 115, 22, 0.25);
    animation: coin-spin 3.8s ease-in-out infinite;
}

.coin-a {
    right: 142px;
    top: 68px;
}

.coin-b {
    right: 18px;
    bottom: 62px;
    animation-delay: 0.45s;
}

.site-footer {
    padding: 34px 0 18px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    background: rgba(255, 255, 255, 0.75);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 40px;
}

.footer-grid h3 {
    margin: 0 0 14px;
    color: var(--text);
    font-size: 14px;
}

.footer-grid a {
    display: table;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.footer-brand p {
    max-width: 310px;
    margin: 14px 0;
    font-size: 13px;
    line-height: 1.7;
}

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

.socials a {
    display: grid;
    place-items: center;
    width: 34px;
    aspect-ratio: 1;
    margin: 0;
    border-radius: 50%;
    color: #fff;
    background: var(--green);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.socials a:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 24px rgba(56, 189, 248, 0.2);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    font-size: 12px;
}

.page-content {
    padding: 48px 0;
}

.content-card {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

@keyframes phone-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes card-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

@keyframes slow-drift {
    0%, 100% { transform: translateY(0) rotate(-10deg); }
    50% { transform: translateY(10px) rotate(-13deg); }
}

@keyframes icon-breathe {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(10, 163, 49, 0); }
    50% { transform: scale(1.08); box-shadow: 0 10px 22px rgba(56, 189, 248, 0.16); }
}

@keyframes coin-spin {
    0%, 100% { transform: rotate(-10deg) translateY(0); }
    50% { transform: rotate(12deg) translateY(-8px); }
}

@keyframes partner-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 8px)); }
}

@keyframes cursor-blink {
    0%, 45% { opacity: 1; }
    46%, 100% { opacity: 0; }
}

@keyframes slow-pulse {
    0%, 100% { transform: scale(1); opacity: 0.65; }
    50% { transform: scale(1.18); opacity: 1; }
}

@media (max-width: 1180px) {
    .v2-hero,
    .table-testimonials,
    .plans-cta {
        grid-template-columns: 1fr;
    }

    .v2-modules {
        grid-template-columns: 1fr;
    }

    .metric-a { right: 18%; }
    .metric-b { right: 18%; }
    .metric-c { right: 18%; }
    .metric-d { right: 18%; }
}

@media (max-width: 900px) {
    .shell {
        width: calc(100% - 30px);
    }

    .nav-shell {
        min-height: 64px;
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .nav-toggle {
        display: block;
    }

    .primary-nav,
    .header-cta {
        display: none;
    }

    .primary-nav.is-open {
        position: absolute;
        top: 66px;
        left: 15px;
        right: 15px;
        display: block;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: #fff;
        box-shadow: var(--shadow);
    }

    .primary-nav.is-open .menu {
        display: grid;
        gap: 0;
    }

    .primary-nav.is-open .menu a {
        min-height: 42px;
        border-bottom: 1px solid var(--line);
    }

    .v2-hero {
        grid-template-columns: 1fr;
        padding-top: 22px;
    }

    .v2-hero h1 {
        font-size: 32px;
    }

    .v2-hero-copy > p:not(.eyebrow) {
        font-size: 14px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .v2-proof {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 22px;
        font-size: 12px;
    }

    .v2-hero-visual {
        min-height: 350px;
    }

    .phone-mockup {
        width: 190px;
        min-height: 300px;
        padding: 22px 12px 14px;
        border-radius: 28px;
    }

    .phone-mockup ul {
        gap: 5px;
        font-size: 9px;
    }

    .app-card strong {
        font-size: 18px;
    }

    .metric-card {
        width: 132px;
        padding: 10px;
        font-size: 10px;
    }

    .metric-card strong {
        font-size: 13px;
    }

    .metric-a { top: 18px; right: 0; }
    .metric-b { top: 92px; right: 0; }
    .metric-c { top: 166px; right: 0; }
    .metric-d { top: 240px; right: 0; }

    .partners {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .mini-grid.four,
    .plans-grid,
    .posts-grid,
    .backcom-info-section {
        grid-template-columns: 1fr 1fr;
    }

    .process-row {
        grid-template-columns: 1fr;
    }

    .process-row > i {
        transform: rotate(90deg);
    }

    .v2-cta {
        grid-template-columns: 1fr 100px;
        padding: 24px;
    }

    .exchange-slider {
        grid-auto-columns: minmax(300px, 78vw);
        gap: 18px;
    }

    .exchange-modal-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-wrap: wrap;
    }
}

@media (max-width: 520px) {
    .shell {
        width: calc(100% - 24px);
    }

    .brand {
        font-size: 20px;
    }

    .eyebrow {
        font-size: 10px;
    }

    .v2-hero h1 {
        font-size: 27px;
    }

    .v2-proof,
    .mini-grid.four,
    .plans-grid,
    .posts-grid,
    .backcom-info-section,
    .info-steps {
        grid-template-columns: 1fr;
    }

    .partner-track {
        animation-duration: 18s;
    }

    .partner-logos span {
        min-width: 132px;
    }

    .v2-proof .avatar-stack {
        grid-column: span 2;
    }

    .module-box {
        padding: 14px;
    }

    .info-boxer {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .info-boxer h2 {
        font-size: 25px;
    }

    .exchange-showcase {
        padding: 30px 0;
    }

    .exchange-title h2,
    .exchange-modal h2 {
        font-size: 26px;
    }

    .exchange-title button {
        font-size: 14px;
    }

    .exchange-card {
        min-height: 390px;
        padding: 22px;
        border-radius: 18px;
    }

    .exchange-head {
        grid-template-columns: 62px 1fr;
        gap: 14px;
    }

    .exchange-logo {
        width: 58px;
    }

    .exchange-head h3 {
        font-size: 24px;
    }

    .exchange-card dd {
        font-size: 15px;
    }

    .exchange-actions {
        grid-template-columns: 1fr;
    }

    .exchange-modal {
        padding: 14px;
    }

    .exchange-modal-panel {
        padding: 22px 14px;
        max-height: calc(100vh - 28px);
    }

    .mini-card {
        padding: 12px;
        min-height: 132px;
    }

    .mini-card h3,
    .process-row h3 {
        font-size: 12px;
    }

    .mini-card p,
    .process-row p,
    .plan-card li {
        font-size: 10px;
    }

    .table-testimonials {
        grid-template-columns: 1fr;
    }

    .plans-cta {
        grid-template-columns: 1fr;
    }

    .v2-cta {
        grid-template-columns: 1fr;
    }

    .small-phone,
    .coin {
        display: none;
    }

    .v2-cta h2 {
        font-size: 25px;
    }

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

    .footer-bottom {
        display: grid;
    }
}

.ecosystem-section {
    padding: 58px 0 64px;
    color: #f8fafc;
    background:
        radial-gradient(circle at 50% 18%, rgba(125, 211, 252, 0.12), transparent 42%),
        linear-gradient(180deg, #061626 0%, #04101d 100%);
}

.ecosystem-section h2 {
    margin: 0 0 42px;
    text-align: center;
    color: #fff;
    font-size: clamp(30px, 3.2vw, 44px);
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.95fr 0.95fr;
    gap: 24px;
    align-items: stretch;
}

.eco-card {
    position: relative;
    min-height: 295px;
    padding: 30px;
    border: 1px solid rgba(125, 211, 252, 0.14);
    border-radius: 18px;
    background: rgba(12, 30, 48, 0.92);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 24px 70px rgba(0, 0, 0, 0.28);
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.eco-card:hover {
    transform: translateY(-7px);
    border-color: rgba(125, 211, 252, 0.38);
    box-shadow: 0 32px 90px rgba(56, 189, 248, 0.11);
}

.eco-card h3 {
    margin: 0 0 20px;
    color: #fff;
    font-size: 24px;
    line-height: 1.25;
}

.eco-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    line-height: 1.55;
}

.eco-large {
    min-height: 350px;
}

.orbit-visual {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: -90px;
    height: 230px;
    border: 3px solid rgba(255, 255, 255, 0.12);
    border-bottom: 0;
    border-radius: 50% 50% 0 0;
}

.orbit-visual::before,
.orbit-visual::after {
    content: "";
    position: absolute;
    inset: 40px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-bottom: 0;
    border-radius: 50% 50% 0 0;
}

.orbit-visual::after {
    inset: 84px;
}

.orbit-visual span,
.orbit-visual b {
    position: absolute;
    display: grid;
    place-items: center;
    width: 54px;
    aspect-ratio: 1;
    border-radius: 12px;
    color: #fff;
    background: #050805;
    font-weight: 900;
    animation: icon-breathe 3s ease-in-out infinite;
}

.orbit-visual span:nth-child(1) { left: 35px; top: 55px; }
.orbit-visual span:nth-child(2) { left: 128px; top: 28px; animation-delay: 0.2s; }
.orbit-visual span:nth-child(3) { right: 92px; top: 58px; animation-delay: 0.4s; }
.orbit-visual span:nth-child(4) { right: 170px; top: -20px; color: #111; background: #ffe000; animation-delay: 0.6s; }
.orbit-visual b { left: 50%; top: 108px; color: #7dd3fc; transform: translateX(-50%); }

.rebate-tickets,
.market-pills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 38px;
}

.rebate-tickets span,
.market-pills span {
    min-height: 40px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 9px;
    color: #fff;
    background: rgba(6, 8, 6, 0.78);
    font-weight: 800;
}

.pay-list {
    display: grid;
    gap: 12px;
    margin-top: 30px;
    padding: 24px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
}

.pay-list span {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 10px;
    font-weight: 900;
}

.pay-list .active {
    color: #082f49;
    background: rgba(255, 255, 255, 0.55);
}

.mascot-visual {
    position: absolute;
    right: 36px;
    bottom: 24px;
    color: #bae6fd;
    font-size: 118px;
    filter: drop-shadow(0 18px 26px rgba(125, 211, 252, 0.14));
    animation: phone-float 4s ease-in-out infinite;
}

.eco-phone {
    position: absolute;
    left: 50%;
    bottom: -44px;
    width: 230px;
    height: 300px;
    padding: 36px 22px;
    border: 6px solid rgba(255, 255, 255, 0.75);
    border-radius: 34px;
    background: #060806;
    transform: translateX(-50%);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.34);
}

.eco-phone b,
.eco-phone i,
.eco-phone span {
    display: block;
}

.eco-phone b {
    color: #7dd3fc;
    font-size: 22px;
}

.eco-phone span {
    margin: 35px 0;
    color: #fff;
    font-size: 25px;
    font-weight: 900;
}

.eco-phone i {
    padding: 10px;
    border-radius: 10px;
    color: #7dd3fc;
    background: rgba(125, 211, 252, 0.11);
    font-style: normal;
    font-weight: 900;
}

.eco-app h3 small {
    display: inline-flex;
    margin-left: 8px;
    padding: 6px 12px;
    border-radius: 8px;
    color: #082f49;
    background: #bae6fd;
    font-size: 13px;
    text-transform: uppercase;
}

.ecosystem-more {
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    min-height: 54px;
    margin: 38px auto 0;
    padding: 0 34px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    font-size: 18px;
    font-weight: 900;
}

.backcom-info-section {
    display: block;
    padding: 0;
    color: #f8fafc;
    background: #020b14;
}

.about-dark {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
    gap: 80px;
    align-items: center;
    min-height: 520px;
    padding-block: 70px;
    border-top: 1px solid rgba(125, 211, 252, 0.2);
    border-bottom: 1px solid rgba(125, 211, 252, 0.2);
}

.about-copy h2,
.faq-copy h2 {
    margin: 0 0 28px;
    color: #fff;
    font-size: clamp(32px, 3vw, 44px);
    line-height: 1.15;
}

.about-copy h2 span {
    color: #7dd3fc;
}

.about-copy p,
.faq-copy p,
.faq-items p {
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    line-height: 1.55;
}

.about-visual {
    position: relative;
    min-height: 330px;
    border: 1px solid rgba(125, 211, 252, 0.22);
    border-radius: 18px;
    background: radial-gradient(circle at 50% 50%, rgba(125, 211, 252, 0.1), transparent 45%);
}

.magnet-visual {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
}

.magnet-visual strong {
    position: absolute;
    color: #7dd3fc;
    font-size: 150px;
    filter: drop-shadow(0 0 28px rgba(125, 211, 252, 0.32));
}

.magnet-visual em {
    position: relative;
    z-index: 1;
    font-size: 118px;
    font-style: normal;
    animation: phone-float 4s ease-in-out infinite;
}

.about-stat {
    position: absolute;
    z-index: 2;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
}

.about-stat b {
    display: block;
    color: #7dd3fc;
    font-size: 22px;
}

.stat-left { left: -58px; top: 34px; }
.stat-right { right: -70px; bottom: 54px; }

.coin-float {
    position: absolute;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 42px;
    aspect-ratio: 1;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #fbbf24, #f97316);
    font-style: normal;
    font-weight: 900;
    animation: coin-spin 4s ease-in-out infinite;
}

.coin-one { left: 120px; top: 80px; }
.coin-two { right: 90px; top: 90px; background: #a3a3a3; animation-delay: 0.4s; }
.coin-three { right: 170px; bottom: 40px; background: #14b8a6; animation-delay: 0.8s; }

.faq-dark {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 80px;
    align-items: start;
    padding-block: 78px;
}

.faq-copy span {
    display: inline-flex;
    min-width: 82px;
    justify-content: center;
    margin-bottom: 34px;
    padding: 8px 22px;
    border: 2px solid #7dd3fc;
    border-radius: 999px;
    color: #fff;
    font-weight: 900;
}

.faq-copy a {
    display: inline-flex;
    align-items: center;
    min-height: 54px;
    padding: 0 34px;
    border-radius: 999px;
    color: #082f49;
    background: linear-gradient(90deg, #7dd3fc, #38bdf8);
    font-weight: 900;
    box-shadow: 0 16px 30px rgba(125, 211, 252, 0.18);
}

.faq-items {
    display: grid;
    gap: 18px;
}

.faq-items details {
    border: 1px solid rgba(125, 211, 252, 0.22);
    border-radius: 20px;
    background: #020b14;
    overflow: hidden;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.faq-items details[open],
.faq-items details:hover {
    border-color: rgba(125, 211, 252, 0.52);
    background: rgba(125, 211, 252, 0.04);
}

.faq-items summary {
    position: relative;
    cursor: pointer;
    padding: 26px 64px 26px 28px;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    list-style: none;
}

.faq-items summary::-webkit-details-marker {
    display: none;
}

.faq-items summary::after {
    content: "›";
    position: absolute;
    right: 32px;
    top: 50%;
    color: #7dd3fc;
    font-size: 34px;
    line-height: 1;
    transform: translateY(-50%);
}

.faq-items p {
    padding: 0 28px 26px;
    margin: 0;
    font-size: 15px;
}

@media (max-width: 1180px) {
    .ecosystem-grid,
    .about-dark,
    .faq-dark {
        grid-template-columns: 1fr;
    }

    .stat-left {
        left: 18px;
    }

    .stat-right {
        right: 18px;
    }
}

@media (max-width: 760px) {
    .ecosystem-grid {
        gap: 16px;
    }

    .eco-card {
        min-height: auto;
        padding: 22px;
    }

    .eco-card p,
    .about-copy p,
    .faq-copy p {
        font-size: 15px;
    }

    .orbit-visual,
    .eco-phone {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 24px;
        transform: none;
    }

    .rebate-tickets,
    .market-pills {
        grid-template-columns: 1fr;
    }

    .about-dark,
    .faq-dark {
        gap: 34px;
        padding-block: 48px;
    }

    .about-visual {
        min-height: 300px;
    }

    .stat-left,
    .stat-right {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        display: inline-block;
        margin: 16px;
    }
}
