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

        :root {
            --bg:        #070c18;
            --bg2:       #0d1426;
            --bg3:       #111d35;
            --card:      #0f1829;
            --card2:     #121f35;
            --border:    rgba(255,255,255,0.07);
            --border2:   rgba(255,255,255,0.14);
            --blue:      #0098EA;
            --cyan:      #00D1FF;
            --purple:    #7B61FF;
            --green:     #00FFA3;
            --pink:      #FF6B9D;
            --orange:    #FF9A3C;
            --gold:      #F6C85F;
            --text:      #E4ECF7;
            --muted:     #6B7A96;
            --muted2:    #9AA8C2;
            --success:   #00FFA3;
            --grad:      linear-gradient(135deg, var(--blue), var(--cyan));
            --grad-warm: linear-gradient(135deg, var(--gold), var(--orange));
            --shadow:    0 24px 80px rgba(0,0,0,.35);
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background:
                radial-gradient(circle at 18% 8%, rgba(0,209,255,.12), transparent 28%),
                radial-gradient(circle at 86% 18%, rgba(246,200,95,.08), transparent 24%),
                linear-gradient(180deg, #070c18 0%, #0a1020 44%, #070c18 100%);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* ─── Canvas ──────────────────────────── */
        #particles {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 0;
        }

        /* ─── Utility ─────────────────────────── */
        .container { max-width: 1160px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
        .gradient-text { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .skip-link {
            position: fixed; left: 16px; top: 12px; z-index: 1000;
            transform: translateY(-140%); padding: 10px 14px; border-radius: 8px;
            background: var(--text); color: var(--bg); font-weight: 700; text-decoration: none;
        }
        .skip-link:focus { transform: translateY(0); }
        .btn {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 10px 22px; border-radius: 10px; font-size: 15px;
            font-weight: 600; cursor: pointer; border: none;
            transition: all .2s; text-decoration: none;
        }
        .btn-primary {
            background: var(--grad); color: #fff;
            box-shadow: 0 0 24px rgba(0,152,234,.35);
        }
        .btn-primary:hover { opacity: .88; box-shadow: 0 0 36px rgba(0,152,234,.55); transform: translateY(-1px); }
        .btn-secondary {
            background: rgba(255,255,255,.06); color: var(--text);
            border: 1px solid var(--border);
        }
        .btn-secondary:hover { background: rgba(255,255,255,.1); }
        .btn:focus-visible, .copy-btn:focus-visible, .burger:focus-visible {
            outline: 2px solid var(--cyan);
            outline-offset: 3px;
        }
        .btn-large { padding: 14px 30px; font-size: 16px; border-radius: 12px; }

        /* ─── Header ──────────────────────────── */
        .header {
            position: fixed; top: 0; left: 0; right: 0; z-index: 100;
            background: rgba(7,12,24,.7);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            transition: background .3s;
        }
        .nav {
            max-width: 1160px; margin: 0 auto; padding: 0 24px;
            height: 68px; display: flex; align-items: center; gap: 32px;
        }
        .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); font-weight: 800; font-size: 20px; letter-spacing: 0; }
        .nav-links { display: flex; gap: 28px; list-style: none; margin: 0 auto; }
        .nav-links a { text-decoration: none; color: var(--muted); font-size: 14px; font-weight: 500; transition: color .2s; }
        .nav-links a:hover { color: var(--text); }
        .nav-actions { display: flex; align-items: center; gap: 12px; }
        .ton-connect-root { min-height: 40px; display: flex; align-items: center; }
        .ton-connect-root tc-root, .ton-connect-root [data-tc-root] { max-width: 190px; }

        .burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
        .burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }
        .burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .burger.active span:nth-child(2) { opacity: 0; }
        .burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        .mobile-menu {
            display: none; position: fixed; top: 68px; left: 0; right: 0; z-index: 99;
            background: var(--bg2); border-bottom: 1px solid var(--border);
            padding: 24px; flex-direction: column; gap: 16px;
        }
        .mobile-menu.active { display: flex; }
        .mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
        .mobile-menu a { text-decoration: none; color: var(--text); font-size: 16px; font-weight: 500; }

        /* ─── Hero ────────────────────────────── */
        .hero {
            min-height: 100vh; display: flex; align-items: center;
            padding: 108px 0 64px;
            background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,152,234,.12) 0%, transparent 70%);
        }
        .hero .container { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(320px,.95fr); align-items: center; gap: 48px; }
        .hero-copy { display: flex; flex-direction: column; align-items: flex-start; text-align: left; gap: 26px; }

        .hero-badge {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 6px 16px; border-radius: 99px;
            background: rgba(0,152,234,.12); border: 1px solid rgba(0,152,234,.3);
            font-size: 13px; font-weight: 500; color: var(--cyan);
        }
        .pulse {
            width: 8px; height: 8px; border-radius: 50%;
            background: var(--green);
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0%,100% { box-shadow: 0 0 0 0 rgba(0,255,163,.4); }
            50%      { box-shadow: 0 0 0 6px rgba(0,255,163,0); }
        }

        .hero-title { font-size: clamp(46px, 7vw, 78px); font-weight: 900; line-height: 1.04; letter-spacing: 0; }
        .hero-subtitle { font-size: 18px; color: var(--muted2); max-width: 620px; }

        .hero-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; width: 100%; margin-top: 8px; }
        .stat-card {
            background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
            border: 1px solid var(--border);
            border-radius: 12px; padding: 18px;
            backdrop-filter: blur(10px);
        }
        .stat-label { font-size: 12px; color: var(--muted); font-weight: 500; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px; }
        .stat-value { font-size: 20px; font-weight: 700; }
        .stat-change { font-size: 13px; font-weight: 600; margin-top: 4px; }
        .stat-change.positive { color: var(--green); }
        .stat-change.negative { color: var(--pink); }

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

        .contract-box {
            display: flex; align-items: center; gap: 10px;
            background: rgba(255,255,255,.04); border: 1px solid var(--border);
            border-radius: 10px; padding: 10px 16px;
            font-size: 13px;
        }
        .contract-label { color: var(--muted); white-space: nowrap; }
        .contract-address { font-family: 'Courier New', monospace; color: var(--cyan); background: none; border: none; }
        .copy-btn {
            background: rgba(0,152,234,.15); border: 1px solid rgba(0,152,234,.3);
            border-radius: 6px; padding: 4px 8px; cursor: pointer; color: var(--blue);
            transition: all .2s; display: flex; align-items: center;
        }
        .copy-btn:hover { background: rgba(0,152,234,.3); }

        .hero-visual {
            position: relative;
            min-height: 520px;
            display: grid;
            place-items: center;
        }
        .token-orbit {
            position: relative;
            width: min(100%, 440px);
            aspect-ratio: 1;
            display: grid;
            place-items: center;
        }
        .token-orbit::before {
            content: '';
            position: absolute;
            inset: 20px;
            border: 1px solid rgba(255,255,255,.12);
            border-radius: 50%;
            background:
                conic-gradient(from 220deg, rgba(0,209,255,.36), transparent 28%, rgba(246,200,95,.28), transparent 58%, rgba(0,255,163,.2), transparent 82%),
                radial-gradient(circle, rgba(255,255,255,.05), transparent 60%);
            filter: drop-shadow(0 30px 70px rgba(0,0,0,.4));
            animation: slowSpin 28s linear infinite;
        }
        .token-coin {
            position: relative;
            width: 230px;
            aspect-ratio: 1;
            border-radius: 50%;
            display: grid;
            place-items: center;
            background:
                radial-gradient(circle at 35% 30%, rgba(255,255,255,.32), transparent 18%),
                linear-gradient(145deg, #00d1ff 0%, #0098ea 48%, #0a4b88 100%);
            border: 1px solid rgba(255,255,255,.26);
            box-shadow: inset 0 -18px 45px rgba(0,0,0,.24), 0 32px 90px rgba(0,152,234,.34);
        }
        .token-coin span { font-size: 58px; font-weight: 900; letter-spacing: 0; color: #fff; text-shadow: 0 8px 28px rgba(0,0,0,.28); }
        .orbit-chip {
            position: absolute;
            display: flex; align-items: center; gap: 8px;
            padding: 10px 13px;
            border: 1px solid var(--border2);
            border-radius: 10px;
            background: rgba(15,24,41,.82);
            box-shadow: var(--shadow);
            backdrop-filter: blur(14px);
            color: var(--text);
            font-size: 13px;
            font-weight: 700;
        }
        .orbit-chip small { display: block; color: var(--muted2); font-size: 11px; font-weight: 600; }
        .orbit-chip.one { top: 62px; left: 8px; }
        .orbit-chip.two { right: 0; top: 178px; }
        .orbit-chip.three { left: 32px; bottom: 70px; }
        .risk-note {
            margin-top: 10px;
            display: flex; gap: 12px; align-items: flex-start;
            max-width: 620px;
            padding: 14px 16px;
            border: 1px solid rgba(246,200,95,.26);
            border-radius: 12px;
            background: rgba(246,200,95,.08);
            color: var(--muted2);
            font-size: 13px;
        }
        .risk-note strong { color: var(--gold); }
        .trust-strip {
            display: grid;
            grid-template-columns: repeat(3,1fr);
            gap: 1px;
            width: 100%;
            overflow: hidden;
            border: 1px solid var(--border);
            border-radius: 14px;
            background: var(--border);
        }
        .trust-item {
            padding: 16px 18px;
            background: rgba(13,20,38,.86);
        }
        .trust-item span { display: block; color: var(--muted2); font-size: 12px; margin-bottom: 3px; }
        .trust-item strong { font-size: 15px; }
        .trust-section { padding: 0 0 72px; position: relative; z-index: 1; }
        @keyframes slowSpin { to { transform: rotate(360deg); } }

        /* ─── Sections ────────────────────────── */
        .section { padding: 100px 0; position: relative; z-index: 1; }
        .section-header { text-align: center; margin-bottom: 60px; }
        .section-tag {
            display: inline-block; padding: 5px 14px; border-radius: 99px;
            background: rgba(0,152,234,.12); border: 1px solid rgba(0,152,234,.25);
            font-size: 12px; font-weight: 600; color: var(--blue); text-transform: uppercase;
            letter-spacing: 1px; margin-bottom: 16px;
        }
        .section-header h2 { font-size: clamp(32px, 5vw, 48px); font-weight: 800; letter-spacing: 0; margin-bottom: 14px; }
        .section-desc { font-size: 17px; color: var(--muted); max-width: 520px; margin: 0 auto; }

        /* ─── About / Features ────────────────── */
        .about { background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(123,97,255,.07) 0%, transparent 70%); }
        .features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
        .feature-card {
            background: var(--card); border: 1px solid var(--border);
            border-radius: 18px; padding: 28px;
            transition: transform .25s, border-color .25s;
        }
        .feature-card:hover { transform: translateY(-4px); border-color: rgba(0,152,234,.3); }
        .feature-icon {
            width: 52px; height: 52px; border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 18px;
        }
        .feature-icon.blue   { background: rgba(0,152,234,.15); color: var(--blue); }
        .feature-icon.purple { background: rgba(123,97,255,.15); color: var(--purple); }
        .feature-icon.green  { background: rgba(0,255,163,.12); color: var(--green); }
        .feature-icon.orange { background: rgba(255,154,60,.12); color: var(--orange); }
        .feature-icon.pink   { background: rgba(255,107,157,.12); color: var(--pink); }
        .feature-icon.cyan   { background: rgba(0,209,255,.12); color: var(--cyan); }
        .feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
        .feature-card p  { font-size: 14px; color: var(--muted); line-height: 1.6; }

        /* ─── Swap ────────────────────────────── */
        .swap-section { background: linear-gradient(180deg, rgba(0,152,234,.06), rgba(13,20,38,.55)); }
        .swap-layout {
            display: grid;
            grid-template-columns: minmax(320px, 480px) 1fr;
            gap: 28px;
            align-items: start;
        }
        .swap-card {
            background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
            border: 1px solid var(--border2);
            border-radius: 16px;
            padding: 24px;
            box-shadow: var(--shadow);
        }
        .swap-row { display: flex; flex-direction: column; gap: 8px; }
        .swap-row label, .swap-settings label {
            font-size: 12px;
            color: var(--muted2);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .6px;
        }
        .swap-input-group {
            display: grid;
            grid-template-columns: 1fr 112px;
            gap: 10px;
            padding: 10px;
            border: 1px solid var(--border);
            border-radius: 12px;
            background: rgba(7,12,24,.55);
        }
        .swap-input-group input, .swap-input-group select, .swap-settings select {
            width: 100%;
            border: 0;
            outline: 0;
            color: var(--text);
            background: transparent;
            font: inherit;
        }
        .swap-input-group input { font-size: 28px; font-weight: 800; min-width: 0; }
        .swap-input-group select, .swap-settings select {
            min-height: 44px;
            padding: 0 10px;
            border-radius: 10px;
            background: rgba(255,255,255,.08);
            font-weight: 800;
            cursor: pointer;
        }
        .swap-input-group option, .swap-settings option { color: #07101d; }
        .swap-switch {
            width: 40px;
            height: 40px;
            display: grid;
            place-items: center;
            margin: 12px auto;
            border: 1px solid rgba(0,152,234,.3);
            border-radius: 50%;
            background: rgba(0,152,234,.14);
            color: var(--cyan);
            cursor: pointer;
            font-size: 18px;
        }
        .swap-settings {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin: 16px 0;
            padding: 12px 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        .swap-settings select { width: 110px; border: 1px solid var(--border); }
        .wallet-panel {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            margin-bottom: 16px;
            padding: 14px;
            border: 1px solid rgba(0,152,234,.25);
            border-radius: 12px;
            background: rgba(0,152,234,.08);
        }
        .wallet-panel span {
            display: block;
            color: var(--muted2);
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .6px;
            margin-bottom: 2px;
        }
        .wallet-panel strong {
            display: block;
            max-width: 210px;
            overflow: hidden;
            color: var(--text);
            font-size: 14px;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .quote-box {
            display: grid;
            gap: 10px;
            margin: 18px 0;
            padding: 16px;
            border-radius: 12px;
            background: rgba(255,255,255,.04);
            border: 1px solid var(--border);
        }
        .quote-box div {
            display: flex;
            justify-content: space-between;
            gap: 14px;
            font-size: 13px;
        }
        .quote-box span { color: var(--muted2); }
        .quote-box strong { text-align: right; }
        .swap-submit { width: 100%; justify-content: center; }
        .swap-status {
            min-height: 22px;
            margin-top: 12px;
            color: var(--muted2);
            font-size: 13px;
            text-align: center;
        }
        .swap-status.success { color: var(--green); }
        .swap-status.error { color: var(--pink); }
        .swap-info { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
        .swap-info-card {
            min-height: 170px;
            padding: 20px;
            border: 1px solid var(--border);
            border-radius: 14px;
            background: var(--card);
        }
        .swap-info-card span {
            display: block;
            color: var(--muted2);
            font-size: 12px;
            font-weight: 700;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: .6px;
        }
        .swap-info-card strong { display: block; font-size: 18px; margin-bottom: 10px; }
        .swap-info-card p { color: var(--muted); font-size: 14px; line-height: 1.6; }

        /* ─── Tokenomics ──────────────────────── */
        .tokenomics { background: var(--bg2); }
        .tokenomics-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: center; margin-bottom: 40px; }
        .token-chart-wrapper { display: flex; justify-content: center; }
        .chart-container { position: relative; width: 220px; height: 220px; }
        .donut-chart { width: 100%; height: 100%; }
        .chart-total { font-size: 22px; font-weight: 800; fill: var(--text); font-family: inherit; }
        .chart-label  { font-size: 13px; fill: var(--muted); font-family: inherit; }

        .token-distribution { display: flex; flex-direction: column; gap: 18px; }
        .distribution-item { padding: 16px 20px; background: var(--card); border: 1px solid var(--border); border-radius: 12px; }
        .dist-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .dist-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
        .dist-label { font-size: 14px; font-weight: 600; flex: 1; }
        .dist-percent { font-size: 14px; font-weight: 700; color: var(--cyan); }
        .dist-bar { height: 4px; background: rgba(255,255,255,.08); border-radius: 99px; overflow: hidden; margin-bottom: 8px; }
        .dist-fill { height: 100%; border-radius: 99px; background: var(--grad); transition: width .6s ease; }
        .dist-desc { font-size: 12px; color: var(--muted); }

        .token-details-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
        .detail-card {
            background: var(--card); border: 1px solid var(--border);
            border-radius: 14px; padding: 20px;
            display: flex; align-items: center; gap: 14px;
        }
        .detail-icon { font-size: 26px; }
        .detail-title { font-size: 12px; color: var(--muted); margin-bottom: 4px; }
        .detail-value { font-size: 16px; font-weight: 700; }

        /* ─── Roadmap ─────────────────────────── */
        .roadmap-timeline { display: flex; flex-direction: column; gap: 0; position: relative; padding-left: 40px; }
        .roadmap-timeline::before {
            content: ''; position: absolute; left: 11px; top: 0; bottom: 0;
            width: 2px; background: var(--border);
        }
        .roadmap-item { position: relative; padding: 0 0 36px 32px; }
        .roadmap-item:last-child { padding-bottom: 0; }
        .roadmap-marker {
            position: absolute; left: -29px; top: 4px;
            width: 24px; height: 24px; border-radius: 50%;
            background: var(--bg3); border: 2px solid var(--border);
            display: flex; align-items: center; justify-content: center;
        }
        .roadmap-item.done .roadmap-marker  { background: var(--green); border-color: var(--green); }
        .roadmap-item.active .roadmap-marker {
            background: var(--blue); border-color: var(--cyan);
            box-shadow: 0 0 16px rgba(0,152,234,.5);
            animation: pulse 2s infinite;
        }
        .roadmap-content {
            background: var(--card); border: 1px solid var(--border);
            border-radius: 16px; padding: 24px 28px;
        }
        .roadmap-item.done .roadmap-content   { border-color: rgba(0,255,163,.2); }
        .roadmap-item.active .roadmap-content { border-color: rgba(0,152,234,.3); }
        .roadmap-quarter { font-size: 12px; color: var(--blue); font-weight: 600; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 6px; }
        .roadmap-content h3 { font-size: 18px; font-weight: 700; margin-bottom: 14px; }
        .roadmap-content ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
        .roadmap-content li { font-size: 14px; color: var(--muted); }

        /* ─── FAQ ─────────────────────────────── */
        .faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
        .faq-item {
            background: var(--card); border: 1px solid var(--border);
            border-radius: 14px; overflow: hidden;
        }
        .faq-item summary {
            display: flex; align-items: center; justify-content: space-between;
            padding: 20px 24px; cursor: pointer; font-weight: 600; font-size: 16px;
            list-style: none; user-select: none;
        }
        .faq-item summary::-webkit-details-marker { display: none; }
        .faq-item summary:hover { color: var(--cyan); }
        .faq-icon { flex-shrink: 0; transition: transform .3s; color: var(--muted); }
        .faq-item[open] .faq-icon { transform: rotate(180deg); }
        .faq-answer { padding: 0 24px 20px; }
        .faq-answer p { font-size: 14px; color: var(--muted); line-height: 1.7; }

        /* ─── Community ───────────────────────── */
        .community { background: var(--bg2); }
        .social-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
        .social-card {
            background: var(--card); border: 1px solid var(--border);
            border-radius: 18px; padding: 28px 24px;
            display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
            text-decoration: none; color: var(--text);
            transition: all .25s; position: relative; overflow: hidden;
        }
        .social-card:hover { transform: translateY(-4px); border-color: rgba(0,152,234,.35); }
        .social-icon-bg {
            position: absolute; inset: 0; opacity: .04;
            background-size: 200% 200%;
        }
        .social-icon-bg.tg { background: #2AABEE; }
        .social-icon-bg.tw { background: #1DA1F2; }
        .social-icon-bg.dc { background: #5865F2; }
        .social-icon-bg.gh { background: #f0f6fc; }
        .social-svg { position: relative; z-index: 1; color: var(--blue); }
        .social-info { position: relative; z-index: 1; }
        .social-name  { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
        .social-count { font-size: 13px; color: var(--muted); }

        /* ─── Footer ──────────────────────────── */
        .footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 60px 0 32px; }
        .footer-top { display: flex; gap: 64px; margin-bottom: 48px; }
        .footer-brand { flex: 1; max-width: 260px; }
        .footer-brand p { font-size: 14px; color: var(--muted); margin-top: 14px; }
        .footer-links { display: flex; gap: 48px; }
        .footer-col { display: flex; flex-direction: column; gap: 10px; }
        .footer-col h4 { font-size: 13px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 4px; }
        .footer-col a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color .2s; }
        .footer-col a:hover { color: var(--text); }
        .footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 8px; }
        .footer-bottom p  { font-size: 13px; color: var(--muted); }
        .disclaimer { font-size: 12px !important; }

        /* ─── Responsive ──────────────────────── */
        @media (max-width: 900px) {
            .nav-links { display: none; }
            .burger { display: flex; }
            .hero { min-height: auto; }
            .hero .container { grid-template-columns: 1fr; text-align: center; }
            .hero-copy { align-items: center; text-align: center; }
            .hero-actions { justify-content: center; }
            .hero-visual { min-height: 430px; order: -1; margin-top: 12px; }
            .token-orbit { max-width: 380px; }
            .token-coin { width: 200px; }
            .features-grid { grid-template-columns: repeat(2,1fr); }
            .swap-layout { grid-template-columns: 1fr; }
            .swap-info { grid-template-columns: 1fr; }
            .tokenomics-grid { grid-template-columns: 1fr; }
            .token-chart-wrapper { order: -1; }
            .token-details-grid { grid-template-columns: repeat(2,1fr); }
            .social-grid { grid-template-columns: repeat(2,1fr); }
            .footer-top { flex-direction: column; gap: 32px; }
            .footer-links { flex-wrap: wrap; gap: 32px; }
        }
        @media (max-width: 600px) {
            .container, .nav { padding-left: 18px; padding-right: 18px; }
            .nav-actions .btn { display: none; }
            .nav-actions { gap: 8px; margin-left: auto; }
            .ton-connect-root {
                max-width: 150px;
                min-width: 0;
                overflow: hidden;
                transform: scale(.88);
                transform-origin: right center;
            }
            .hero { padding-top: 92px; }
            .hero-title { font-size: clamp(40px, 14vw, 56px); }
            .hero-subtitle { font-size: 16px; }
            .hero-stats { grid-template-columns: repeat(2,1fr); }
            .stat-card { padding: 14px; }
            .stat-value { font-size: 18px; }
            .contract-box { width: 100%; justify-content: space-between; overflow: hidden; }
            .contract-address { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
            .hero-visual { min-height: 330px; }
            .token-coin { width: 160px; }
            .token-coin span { font-size: 44px; }
            .orbit-chip { padding: 8px 10px; font-size: 12px; }
            .orbit-chip.one { top: 24px; left: 0; }
            .orbit-chip.two { right: 0; top: 138px; }
            .orbit-chip.three { left: 12px; bottom: 32px; }
            .trust-strip { grid-template-columns: 1fr; }
            .features-grid { grid-template-columns: 1fr; }
            .swap-card { padding: 18px; }
            .swap-input-group { grid-template-columns: 1fr 96px; }
            .swap-input-group input { font-size: 22px; }
            .wallet-panel { align-items: stretch; flex-direction: column; }
            .wallet-panel .btn { width: 100%; justify-content: center; }
            .token-details-grid { grid-template-columns: repeat(2,1fr); }
            .social-grid { grid-template-columns: 1fr; }
            .roadmap-timeline { padding-left: 28px; }
        }
        @media (prefers-reduced-motion: reduce) {
            html { scroll-behavior: auto; }
            *, *::before, *::after {
                animation-duration: .01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: .01ms !important;
            }
        }
    
