:root {
    --bg: #050810;
    --bg2: #080c18;
    --surface: #0d1225;
    --surface2: #111830;
    --accent: #4DFFA0;
    --accent2: #00C8FF;
    --accent3: #A855F7;
    --gold: #F0C060;
    --text: #E8EDF8;
    --muted: #6B7A9F;
    --border: rgba(77, 255, 160, 0.12);
    --glow: 0 0 60px rgba(77, 255, 160, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Syne', sans-serif;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* ───────── NOISE OVERLAY ───────── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.5;
}

/* ───────── NAV ───────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 60px;
    background: rgba(5, 8, 16, 0.82);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(77, 255, 160, 0.07);
    transition: box-shadow 0.3s;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    object-fit: contain;
    box-shadow: 0 0 20px rgba(77, 255, 160, 0.35);
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--text);
    letter-spacing: 0.08em;
}

.logo-text span {
    color: var(--accent);
}

/* ── Dropdown nav ── */
.nav-links {
    display: flex;
    gap: 4px;
    list-style: none;
    align-items: center;
}

.nav-links > li {
    position: relative;
}

.nav-links > li > a,
.nav-links > li > button {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    letter-spacing: 0.01em;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
}

.nav-links > li > a:hover,
.nav-links > li > button:hover,
.nav-links > li.open > button {
    color: var(--accent);
    background: rgba(77, 255, 160, 0.05);
}

.nav-chevron {
    font-size: 10px;
    transition: transform 0.2s;
    opacity: 0.5;
}

.nav-links > li.open .nav-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

/* Mega dropdown */
.nav-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    background: #0d1225;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(77, 255, 160, 0.05);
    min-width: 560px;
    padding: 8px;
    display: none;
    z-index: 300;
    animation: dropIn 0.2s ease both;
}

.nav-links > li.open .nav-dropdown {
    display: block;
}

@keyframes dropIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Single-column dropdown */
.nav-dropdown.narrow {
    min-width: 220px;
    left: 0;
    transform: none;
}

@keyframes dropInNarrow {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-links > li.open .nav-dropdown.narrow {
    animation: dropInNarrow 0.2s ease both;
}

.dd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    padding: 8px;
}

.dd-grid.three {
    grid-template-columns: 1fr 1fr 1fr;
}

.dd-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border-radius: 14px;
    text-decoration: none;
    transition: background 0.2s;
    cursor: pointer;
}

.dd-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.dd-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.dd-icon.g {
    background: rgba(77, 255, 160, 0.1);
}

.dd-icon.b {
    background: rgba(0, 200, 255, 0.1);
}

.dd-icon.p {
    background: rgba(168, 85, 247, 0.1);
}

.dd-icon.go {
    background: rgba(240, 192, 96, 0.1);
}

.dd-icon.r {
    background: rgba(255, 107, 107, 0.1);
}

.dd-text {
    flex: 1;
}

.dd-title {
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}

.dd-desc {
    font-size: 11px;
    color: var(--muted);
    line-height: 1.5;
}

.dd-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 4px 8px;
}

.dd-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(77, 255, 160, 0.04);
    margin: 4px 8px 8px;
    text-decoration: none;
    transition: background 0.2s;
}

.dd-footer-row:hover {
    background: rgba(77, 255, 160, 0.09);
}

.dd-footer-row span {
    font-size: 12px;
    color: var(--accent);
    font-weight: 600;
}

.dd-badge {
    display: inline-block;
    background: rgba(77, 255, 160, 0.15);
    color: var(--accent);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-left: 6px;
}

.dd-single-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--muted);
    font-size: 13px;
    transition: all 0.2s;
    margin: 2px 4px;
}

.dd-single-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
}

.dd-single-item .si-icon-sm {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.nav-cta {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

.btn {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s;
    border: none;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-ghost {
    background: transparent;
    color: var(--muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #00E87A);
    color: #050810;
    box-shadow: 0 0 30px rgba(77, 255, 160, 0.35);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 45px rgba(77, 255, 160, 0.55);
}

.btn-large {
    padding: 16px 40px;
    font-size: 15px;
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 1.5px solid var(--accent);
}

.btn-outline:hover {
    background: rgba(77, 255, 160, 0.08);
    box-shadow: 0 0 30px rgba(77, 255, 160, 0.15);
}

/* ── Mobile menu overlay ── */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 199;
    flex-direction: column;
    padding: 100px 28px 40px;
    overflow-y: auto;
}

.mobile-menu.open {
    display: flex;
}

.mob-section-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 24px 0 8px;
}

.mob-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    border-radius: 14px;
    text-decoration: none;
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
    transition: background 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mob-link:hover {
    background: rgba(255, 255, 255, 0.04);
}

.mob-link .mob-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.mob-cta {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* download modal */
.dl-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 500;
    align-items: center;
    justify-content: center;
}

.dl-modal-overlay.open {
    display: flex;
}

.dl-modal {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 28px;
    padding: 40px;
    max-width: 480px;
    width: 90%;
    position: relative;
    animation: modalIn 0.25s ease both;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.8);
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.94) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.dl-modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    color: var(--muted);
    font-size: 18px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.dl-modal-close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--text);
}

.dl-modal h3 {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px;
}

.dl-modal p {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 28px;
}

.dl-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dl-option {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px 20px;
    text-decoration: none;
    transition: all 0.25s;
    cursor: pointer;
}

.dl-option:hover {
    border-color: rgba(77, 255, 160, 0.25);
    background: rgba(77, 255, 160, 0.05);
    transform: translateX(4px);
}

.dl-option-icon {
    font-size: 28px;
}

.dl-option-text {
    flex: 1;
}

.dl-option-text .dot {
    font-size: 11px;
    color: var(--muted);
}

.dl-option-text .big {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

.dl-option-text .sub {
    font-size: 11px;
    color: var(--muted);
    margin-top: 1px;
}

.dl-option-arrow {
    color: var(--muted);
    font-size: 16px;
}

.dl-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 12px;
    color: var(--muted);
}

.dl-rating .stars {
    color: var(--gold);
    letter-spacing: 1px;
}

/* sign-in modal */
.signin-modal {
    max-width: 400px;
}

.signin-modal h3 {
    margin-bottom: 4px;
}

.signin-modal .modal-sub {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 14px;
}

.form-label {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 6px;
    display: block;
    letter-spacing: 0.04em;
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;
    padding: 12px 16px;
    color: var(--text);
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    outline: none;
    transition: border-color 0.2s;
}

.form-input:focus {
    border-color: rgba(77, 255, 160, 0.4);
}

.form-input::placeholder {
    color: var(--muted);
}

.form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--muted);
    cursor: pointer;
}

.form-link {
    font-size: 13px;
    color: var(--accent);
    text-decoration: none;
}

.form-link:hover {
    text-decoration: underline;
}

.btn-form {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--accent), #00E87A);
    border: none;
    border-radius: 14px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #050810;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 0 30px rgba(77, 255, 160, 0.25);
}

.btn-form:hover {
    box-shadow: 0 0 50px rgba(77, 255, 160, 0.5);
    transform: translateY(-1px);
}

.modal-divider {
    text-align: center;
    font-size: 12px;
    color: var(--muted);
    margin: 16px 0;
    position: relative;
}

.modal-divider::before, .modal-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
}

.modal-divider::before {
    left: 0;
}

.modal-divider::after {
    right: 0;
}

.social-signin {
    display: flex;
    gap: 10px;
}

.social-btn {
    flex: 1;
    padding: 11px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--text);
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.modal-signup {
    text-align: center;
    margin-top: 18px;
    font-size: 13px;
    color: var(--muted);
}

.modal-signup a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

/* ── Toast ── */
.toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--surface);
    border: 1px solid rgba(77, 255, 160, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 14px;
    color: var(--text);
    z-index: 600;
    opacity: 0;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    white-space: nowrap;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast .t-icon {
    font-size: 16px;
}

/* ───────── HERO ───────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 60px 80px;
}

/* Animated gradient orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    animation: drift 12s ease-in-out infinite alternate;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(77, 255, 160, 0.12) 0%, transparent 70%);
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 200, 255, 0.1) 0%, transparent 70%);
    top: 100px;
    right: -50px;
    animation-delay: -4s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
    bottom: -50px;
    left: 30%;
    animation-delay: -8s;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(30px, 40px) scale(1.05);
    }
}

/* Grid lines background */
.grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(77, 255, 160, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 255, 160, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    animation: fadeUp 0.9s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(77, 255, 160, 0.08);
    border: 1px solid rgba(77, 255, 160, 0.2);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

.hero h1 {
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.05;
}

.hero h1 .line-accent {
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: var(--text);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-number span {
    color: var(--accent);
}

.stat-label {
    font-size: 13px;
    color: var(--muted);
}

/* ───────── PHONE MOCKUPS ───────── */
.hero-phones {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    max-width: 720px;
    height: 700px;
    pointer-events: none;
    animation: fadeUp 1s 0.3s ease both;
}

.phone {
    position: absolute;
    border-radius: 44px;
    overflow: hidden;
    box-shadow: 0 0 0 1.5px rgba(255, 255, 255, 0.08),
    0 40px 120px rgba(0, 0, 0, 0.8),
    0 0 80px rgba(77, 255, 160, 0.1);
}

.phone-main {
    width: 280px;
    height: 580px;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    box-shadow: 0 0 0 1.5px rgba(255, 255, 255, 0.12),
    0 60px 140px rgba(0, 0, 0, 0.9),
    0 0 120px rgba(77, 255, 160, 0.15);
}

.phone-left {
    width: 240px;
    height: 500px;
    right: 320px;
    top: 50%;
    transform: translateY(-50%) rotate(-8deg);
    z-index: 2;
    opacity: 0.75;
}

.phone-right {
    width: 240px;
    height: 500px;
    right: -40px;
    top: 50%;
    transform: translateY(-50%) rotate(8deg);
    z-index: 2;
    opacity: 0.75;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

/* ──── Phone Main: Portfolio ──── */
.phone-header {
    padding: 52px 20px 16px;
    background: linear-gradient(180deg, rgba(77, 255, 160, 0.06) 0%, transparent 100%);
}

.ph-greeting {
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 2px;
    letter-spacing: 0.05em;
}

.ph-title {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
}

.ph-balance-wrap {
    padding: 20px 20px 16px;
}

.ph-balance-label {
    font-size: 10px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.ph-balance {
    font-family: 'Syne', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.ph-change {
    font-size: 12px;
    color: var(--accent);
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 3px;
}

/* Mini chart */
.mini-chart {
    padding: 0 20px 16px;
    height: 80px;
    position: relative;
}

.mini-chart svg {
    width: 100%;
    height: 100%;
}

/* Action buttons */
.ph-actions {
    display: flex;
    gap: 8px;
    padding: 0 20px 16px;
}

.ph-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 10px 6px;
    text-align: center;
    font-size: 10px;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    color: var(--muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.ph-btn-icon {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.ph-btn:nth-child(1) .ph-btn-icon {
    background: rgba(77, 255, 160, 0.15);
    color: var(--accent);
}

.ph-btn:nth-child(2) .ph-btn-icon {
    background: rgba(0, 200, 255, 0.15);
    color: var(--accent2);
}

.ph-btn:nth-child(3) .ph-btn-icon {
    background: rgba(168, 85, 247, 0.15);
    color: var(--accent3);
}

.ph-btn:nth-child(4) .ph-btn-icon {
    background: rgba(240, 192, 96, 0.15);
    color: var(--gold);
}

/* Assets list */
.ph-section-title {
    padding: 4px 20px 8px;
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ph-asset {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.ph-asset-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    flex-shrink: 0;
}

.ph-asset-info {
    flex: 1;
}

.ph-asset-name {
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
}

.ph-asset-amount {
    font-size: 10px;
    color: var(--muted);
}

.ph-asset-values {
    text-align: right;
}

.ph-asset-usd {
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
}

.ph-asset-chg {
    font-size: 10px;
}

.pos {
    color: var(--accent);
}

.neg {
    color: #FF6B6B;
}

/* ──── Phone Left: Send ──── */
.send-screen {
    padding: 52px 20px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.send-back {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--muted);
}

.send-title {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 24px;
}

.send-amount-wrap {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 16px;
    text-align: center;
}

.send-amount-label {
    font-size: 10px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.send-amount-val {
    font-family: 'Syne', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--text);
}

.send-amount-sub {
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px;
}

.send-to {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 14px 16px;
    margin-bottom: 16px;
}

.send-to-label {
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.send-to-addr {
    font-size: 11px;
    color: var(--text);
    font-family: monospace;
}

.send-confirm {
    margin-top: auto;
    background: linear-gradient(135deg, var(--accent), #00E87A);
    border: none;
    border-radius: 18px;
    padding: 16px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #050810;
    width: 100%;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(77, 255, 160, 0.35);
}

/* ──── Phone Right: Swap ──── */
.swap-screen {
    padding: 52px 20px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.swap-title {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
}

.swap-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 16px;
    position: relative;
}

.swap-box-label {
    font-size: 10px;
    color: var(--muted);
    margin-bottom: 8px;
}

.swap-token {
    display: flex;
    align-items: center;
    gap: 8px;
}

.swap-token-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.swap-token-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--text);
}

.swap-amount {
    margin-left: auto;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--text);
}

.swap-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--surface);
    border: 1.5px solid rgba(77, 255, 160, 0.25);
    border-radius: 50%;
    margin: -4px auto;
    position: relative;
    z-index: 1;
    font-size: 16px;
    color: var(--accent);
}

.swap-rate {
    background: rgba(77, 255, 160, 0.05);
    border: 1px solid rgba(77, 255, 160, 0.12);
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 10px;
    color: var(--muted);
    display: flex;
    justify-content: space-between;
}

.swap-rate span {
    color: var(--accent);
    font-weight: 600;
}

.swap-btn {
    margin-top: auto;
    background: linear-gradient(135deg, var(--accent2), #006EFF);
    border: none;
    border-radius: 18px;
    padding: 14px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(0, 200, 255, 0.3);
}

/* ───────── SECTIONS ───────── */
section {
    padding: 100px 60px;
    position: relative;
}

.section-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.section-sub {
    font-size: 17px;
    color: var(--muted);
    max-width: 520px;
    line-height: 1.7;
    font-weight: 300;
}

/* ───────── FEATURES GRID ───────── */
.features-section {
    background: var(--bg);
}

.features-header {
    max-width: 580px;
    margin-bottom: 70px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    cursor: default;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(77, 255, 160, 0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(77, 255, 160, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(77, 255, 160, 0.08);
}

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

.feature-card.wide {
    grid-column: span 2;
}

.feat-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
}

.feat-icon-wrap.green {
    background: rgba(77, 255, 160, 0.1);
    box-shadow: 0 0 20px rgba(77, 255, 160, 0.1);
}

.feat-icon-wrap.blue {
    background: rgba(0, 200, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 200, 255, 0.1);
}

.feat-icon-wrap.purple {
    background: rgba(168, 85, 247, 0.1);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.1);
}

.feat-icon-wrap.gold {
    background: rgba(240, 192, 96, 0.1);
    box-shadow: 0 0 20px rgba(240, 192, 96, 0.1);
}

.feat-title {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.feat-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

/* Wide card extras */
.feat-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.feat-tag {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 12px;
    color: var(--muted);
}

/* ───────── PHONE SHOWCASE ───────── */
.showcase-section {
    background: var(--bg2);
    overflow: hidden;
}

.showcase-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.showcase-phones {
    position: relative;
    height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-phone {
    position: absolute;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 0 0 1.5px rgba(255, 255, 255, 0.08),
    0 40px 100px rgba(0, 0, 0, 0.8),
    0 0 80px rgba(0, 200, 255, 0.08);
}

.sp-phone-main {
    width: 260px;
    height: 530px;
    z-index: 3;
}

.sp-phone-back {
    width: 220px;
    height: 450px;
    z-index: 2;
}

.sp-phone-back:nth-child(2) {
    left: 10px;
    transform: rotate(-10deg) translateY(20px);
    opacity: 0.6;
}

.sp-phone-back:nth-child(3) {
    right: 10px;
    transform: rotate(10deg) translateY(20px);
    opacity: 0.6;
}

/* NFT screen */
.nft-screen {
    padding: 52px 0 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--bg2);
}

.nft-header {
    padding: 0 18px 16px;
}

.nft-head-title {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
}

.nft-tabs {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

.nft-tab {
    font-size: 12px;
    color: var(--muted);
    padding-bottom: 8px;
    cursor: pointer;
}

.nft-tab.active {
    color: var(--accent2);
    border-bottom: 2px solid var(--accent2);
}

.nft-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0 18px 18px;
}

.nft-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.nft-img {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.nft-info {
    padding: 8px 10px;
}

.nft-name {
    font-size: 10px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    color: var(--text);
}

.nft-floor {
    font-size: 9px;
    color: var(--muted);
    margin-top: 2px;
}

.nft-price {
    font-size: 10px;
    color: var(--accent2);
    font-weight: 600;
}

/* showcase text */
.showcase-text {
    padding: 20px 0;
}

.showcase-items {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.showcase-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.si-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.si-icon.g {
    background: rgba(77, 255, 160, 0.1);
}

.si-icon.b {
    background: rgba(0, 200, 255, 0.1);
}

.si-icon.p {
    background: rgba(168, 85, 247, 0.1);
}

.si-content h4 {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.si-content p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

/* ───────── SECURITY SECTION ───────── */
.security-section {
    background: var(--bg);
}

.security-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.security-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec-rings {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
}

.sec-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 20s linear infinite;
}

.sec-ring:nth-child(1) {
    width: 380px;
    height: 380px;
    border-color: rgba(77, 255, 160, 0.08);
}

.sec-ring:nth-child(2) {
    width: 300px;
    height: 300px;
    border-color: rgba(0, 200, 255, 0.1);
    animation-direction: reverse;
    animation-duration: 15s;
}

.sec-ring:nth-child(3) {
    width: 220px;
    height: 220px;
    border-color: rgba(168, 85, 247, 0.12);
    animation-duration: 10s;
}

/* Ring dots */
.sec-ring::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 12px rgba(77, 255, 160, 0.8);
}

.sec-ring:nth-child(2)::before {
    background: var(--accent2);
    box-shadow: 0 0 12px rgba(0, 200, 255, 0.8);
}

.sec-ring:nth-child(3)::before {
    background: var(--accent3);
    box-shadow: 0 0 12px rgba(168, 85, 247, 0.8);
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.sec-center {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    border: 1px solid rgba(77, 255, 160, 0.15);
    box-shadow: 0 0 0 8px rgba(77, 255, 160, 0.04),
    0 0 60px rgba(77, 255, 160, 0.1);
    z-index: 2;
}

/* floating badges */
.sec-badge {
    position: absolute;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    z-index: 3;
    white-space: nowrap;
}

.sec-badge .sb-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.sec-badge-1 {
    top: 40px;
    left: 20px;
}

.sec-badge-1 .sb-dot {
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
}

.sec-badge-2 {
    bottom: 60px;
    right: 10px;
}

.sec-badge-2 .sb-dot {
    background: var(--accent2);
    box-shadow: 0 0 8px var(--accent2);
}

.sec-badge-3 {
    bottom: 40px;
    left: 30px;
}

.sec-badge-3 .sb-dot {
    background: var(--accent3);
    box-shadow: 0 0 8px var(--accent3);
}

/* ───────── MARQUEE ───────── */
.marquee-section {
    padding: 50px 0;
    background: var(--surface);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee 20s linear infinite;
    width: max-content;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    white-space: nowrap;
}

.marquee-item .coin {
    font-size: 20px;
}

.marquee-item .chg {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 50px;
}

.marquee-item .chg.pos {
    background: rgba(77, 255, 160, 0.1);
    color: var(--accent);
}

.marquee-item .chg.neg {
    background: rgba(255, 107, 107, 0.1);
    color: #FF6B6B;
}

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

/* ───────── TESTIMONIALS ───────── */
.testimonials-section {
    background: var(--bg2);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.testi-card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s;
}

.testi-card:hover {
    border-color: rgba(77, 255, 160, 0.1);
    transform: translateY(-2px);
}

.testi-stars {
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--gold);
}

.testi-text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
    font-weight: 300;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: var(--surface2);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.testi-name {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.testi-handle {
    font-size: 12px;
    color: var(--muted);
}

/* ───────── CTA SECTION ───────── */
.cta-section {
    background: var(--bg);
    text-align: center;
    padding: 120px 60px;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(77, 255, 160, 0.07) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-section .section-title {
    max-width: 700px;
    margin: 0 auto 20px;
}

.cta-sub {
    font-size: 18px;
    color: var(--muted);
    max-width: 480px;
    margin: 0 auto 48px;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 14px 24px;
    text-decoration: none;
    transition: all 0.25s;
}

.store-btn:hover {
    border-color: rgba(77, 255, 160, 0.2);
    transform: translateY(-2px);
    background: var(--surface2);
}

.store-icon {
    font-size: 28px;
}

.store-text {
    text-align: left;
}

.store-text .st-small {
    font-size: 10px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.store-text .st-big {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

/* ───────── FOOTER ───────── */
footer {
    background: var(--bg2);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 60px 60px 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 260px;
}

.footer-col h5 {
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    font-size: 14px;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 13px;
    color: var(--muted);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 36px;
    height: 36px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s;
    color: var(--muted);
}

.social-link:hover {
    border-color: rgba(77, 255, 160, 0.2);
    color: var(--accent);
}

/* ───────── HAMBURGER ───────── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--muted);
    border-radius: 2px;
}

/* ───────── RESPONSIVE ───────── */
@media (max-width: 1100px) {
    .hero-phones {
        width: 50%;
    }

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

    .feature-card.wide {
        grid-column: span 2;
    }
}

@media (max-width: 900px) {
    nav {
        padding: 16px 24px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-cta .btn-ghost {
        display: none;
    }

    .hero {
        padding: 100px 24px 60px;
        flex-direction: column;
    }

    .hero-phones {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 380px;
        height: 400px;
        margin: 40px auto 0;
    }

    .phone-main {
        width: 200px;
        height: 410px;
        right: 40px;
    }

    .phone-left {
        width: 170px;
        height: 350px;
        right: 210px;
    }

    .phone-right {
        display: none;
    }

    .hero-stats {
        gap: 24px;
    }

    section {
        padding: 70px 24px;
    }

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

    .feature-card.wide {
        grid-column: span 1;
    }

    .showcase-inner {
        grid-template-columns: 1fr;
    }

    .showcase-phones {
        height: 420px;
    }

    .sp-phone-main {
        width: 200px;
        height: 410px;
    }

    .sp-phone-back {
        display: none;
    }

    .security-inner {
        grid-template-columns: 1fr;
    }

    .security-visual {
        height: 360px;
    }

    .sec-ring:nth-child(1) {
        width: 300px;
        height: 300px;
    }

    .sec-ring:nth-child(2) {
        width: 240px;
        height: 240px;
    }

    .sec-ring:nth-child(3) {
        width: 170px;
        height: 170px;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 560px) {
    .hero h1 {
        font-size: 38px;
    }

    .hero-phones {
        max-width: 280px;
        height: 340px;
    }

    .phone-main {
        width: 160px;
        height: 330px;
        right: 20px;
    }

    .phone-left {
        width: 140px;
        height: 280px;
        right: 165px;
    }

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

    .cta-section {
        padding: 80px 24px;
    }
}

/* scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--surface2);
    border-radius: 3px;
}
