 /* ── Fonts ─────────────────────────────────── */
 @font-face {
     font-family: "KHTeka";
     font-weight: 300;
     font-display: fallback;
     src: url(./assets/KHTeka-Light.woff2) format("woff2");
 }

 @font-face {
     font-family: "KHTeka";
     font-weight: 400;
     font-display: fallback;
     src: url(./assets/KHTeka-Regular.woff2) format("woff2");
 }

 @font-face {
     font-family: "KHTeka";
     font-weight: 500;
     font-display: fallback;
     src: url(./assets/KHTeka-Medium.woff2) format("woff2");
 }

 @font-face {
     font-family: "KHTekaMono";
     font-weight: 400;
     font-display: fallback;
     src: url(./assets/KHTekaMono-Regular.woff2) format("woff2");
 }

 /* ── Animated gradient properties ──────────── */
 @property --g1 {
     syntax: "<color>";
     inherits: false;
 }

 @property --g2 {
     syntax: "<color>";
     inherits: false;
 }

 @keyframes cardShift {
     0% {
         --g1: rgb(var(--cyan-rgb));
         --g2: rgb(var(--primary-rgb));
     }

     50% {
         --g1: var(--cyan-hi);
         --g2: var(--green);
     }

     100% {
         --g1: rgb(var(--cyan-rgb));
         --g2: rgb(var(--primary-rgb));
     }
 }

 /* ── Tokens ────────────────────────────────── */
 :root {
     --bg: #090d10;
     --bg-rgb: 9, 13, 16;
     --bg-raised: #0d151e;
     --surface: #19242e;
     --surface-hi: #212a36;
     --text: #f8fafc;
     --text2: #cad5e2;
     --text3: #90a1b9;
     --muted: #67778e;
     --primary: #fc8e03;
     --primary-rgb: 199, 242, 132;
     --primary-alt: #a8e05f;
     --primary-contrast: #0B1117;
     --primary-dim: rgba(var(--primary-rgb), .1);
     --primary-deep: rgba(var(--primary-rgb), .05);
     --cyan: #00bef0;
     --cyan-rgb: 0, 190, 240;
     --cyan-hi: #7CD4FD;
     --lily: #E8F9FF;
     --green: #3CE3AB;
     --green-rgb: 60, 227, 171;
     --red: #f23674;
     --border: #19242e;
     --border-hi: #212a36;
     --ease: cubic-bezier(.23, .09, .08, 1.13);
     --ease-out: cubic-bezier(.12, .04, .2, 1.06);
     --dur: .3s;
 }

 /* ── Reset ─────────────────────────────────── */
 *,
 *::before,
 *::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
     -webkit-tap-highlight-color: transparent;
 }

 html {
     background: var(--bg);
     color: var(--text);
 }

 body {
     font-family: "KHTeka", -apple-system, BlinkMacSystemFont, sans-serif;
     -webkit-font-smoothing: antialiased;
     font-feature-settings: "liga" on, "kern" on;
     height: 100dvh;
     overflow: hidden;
 }

 button {
     background: none;
     border: none;
     cursor: pointer;
     font-family: inherit;
     color: inherit;
 }

 a {
     text-decoration: none;
     color: inherit;
 }

 /* ── Page ──────────────────────────────────── */
 .page {
     position: relative;
     display: grid;
     grid-template-rows: auto 1fr auto;
     height: 100dvh;
     max-width: 1112px;
     width: 100%;
     margin: 0 auto;
     padding: 0 32px;
 }

 /* ── Ambient bg ────────────────────────────── */
 .bg {
     position: fixed;
     inset: 0;
     z-index: -1;
     pointer-events: none;
     overflow: hidden;
 }

 .bg-grad {
     position: absolute;
     width: 100%;
     height: 100%;
     background:
         radial-gradient(ellipse 50% 40% at 15% 20%, rgba(var(--cyan-rgb), .07) 0%, transparent 100%),
         radial-gradient(ellipse 40% 50% at 80% 70%, rgba(var(--primary-rgb), .05) 0%, transparent 100%);
 }

 .bg-orb {
     position: absolute;
     border-radius: 50%;
     filter: blur(100px);
     opacity: .4;
     animation: float 18s ease-in-out infinite alternate;
 }

 .bg-orb--1 {
     width: 500px;
     height: 500px;
     top: -15%;
     left: 20%;
     background: rgba(var(--cyan-rgb), .1);
 }

 .bg-orb--2 {
     width: 400px;
     height: 400px;
     bottom: -10%;
     right: 10%;
     background: rgba(var(--primary-rgb), .06);
     animation-delay: -7s;
     animation-duration: 22s;
 }

 @keyframes float {
     0% {
         transform: translate(0, 0) scale(1);
     }

     100% {
         transform: translate(30px, -20px) scale(1.08);
     }
 }

 /* ── Announcement bar ─────────────────────── */
 .announce {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     padding: 9px 16px;
     background: linear-gradient(90deg, var(--bg) 0%, rgba(var(--primary-rgb), .06) 50%, var(--bg) 100%);
     border-bottom: 1px solid rgba(var(--primary-rgb), .06);
     font-size: 12.5px;
     font-weight: 400;
     color: var(--text3);
     letter-spacing: -.005em;
     position: relative;
     overflow: hidden;
     width: 100vw;
     margin-left: calc(-50vw + 50%);
 }

 .announce::after {
     content: "";
     position: absolute;
     inset: 0;
     background: linear-gradient(90deg, transparent 20%, rgba(var(--primary-rgb), .05) 50%, transparent 80%);
     background-size: 200% 100%;
     animation: shimmer 4s ease-in-out infinite;
 }

 @keyframes shimmer {
     0% {
         background-position: 200% 0;
     }

     100% {
         background-position: -200% 0;
     }
 }

 .announce-pill {
     display: inline-flex;
     align-items: center;
     gap: 5px;
     padding: 2px 9px 2px 6px;
     border-radius: 9999px;
     background: rgba(var(--primary-rgb), .08);
     border: 1px solid rgba(var(--primary-rgb), .1);
     font-size: 10.5px;
     font-weight: 600;
     color: var(--primary);
     text-transform: uppercase;
     letter-spacing: .04em;
     position: relative;
     z-index: 1;
 }

 .announce-pill-dot {
     width: 5px;
     height: 5px;
     border-radius: 50%;
     background: var(--primary);
     box-shadow: 0 0 6px rgba(var(--primary-rgb), .5);
     animation: aPulse 2.5s ease-in-out infinite;
 }

 @keyframes aPulse {

     0%,
     100% {
         opacity: 1;
         box-shadow: 0 0 4px rgba(var(--primary-rgb), .3);
     }

     50% {
         opacity: .6;
         box-shadow: 0 0 10px rgba(var(--primary-rgb), .6);
     }
 }

 .announce-text {
     position: relative;
     z-index: 1;
 }

 .announce-text b {
     font-weight: 600;
     color: var(--text2);
 }

 /* ── Nav ───────────────────────────────────── */
 .nav {
     display: flex;
     align-items: center;
     justify-content: space-between;
     height: 56px;
     grid-row: 1;
     border-bottom: 1px solid var(--border);
 }

 .nav-logo {
     display: flex;
     align-items: center;
     gap: 10px;
     color: var(--text);
 }

 .nav-logo img {
     width: 22px;
     height: 22px;
 }

 .nav-logo-text {
     font-size: 17px;
     font-weight: 500;
     letter-spacing: -.01em;
 }

 .nav-right {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .nav-enter {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 9px 22px;
     border-radius: 10px;
     background: linear-gradient(135deg, var(--primary) 0%, var(--primary-alt) 100%);
     font-size: 13.5px;
     font-weight: 600;
     color: var(--primary-contrast);
     letter-spacing: -.01em;
     cursor: pointer;
     position: relative;
     overflow: hidden;
     border: none;
     font-family: inherit;
     transition: transform .2s ease, box-shadow .3s ease;
 }

 .nav-enter:hover {
     transform: translateY(-1px);
     box-shadow: 0 4px 20px rgba(var(--primary-rgb), .3), 0 0 40px rgba(var(--primary-rgb), .08);
 }

 .nav-enter:active {
     transform: scale(.97);
 }

 /* tooltip that appears on click */
 .nav-enter-tip {
     position: absolute;
     top: calc(100% + 12px);
     right: 0;
     padding: 12px 16px;
     border-radius: 12px;
     background: var(--bg-raised);
     border: 1px solid var(--border-hi);
     box-shadow: 0 8px 30px rgba(0, 0, 0, .45);
     white-space: nowrap;
     font-size: 13px;
     font-weight: 400;
     color: var(--text3);
     letter-spacing: -.01em;
     display: flex;
     flex-direction: column;
     gap: 0;
     opacity: 0;
     pointer-events: none;
     transform: translateY(-6px);
     transition: opacity .25s ease, transform .25s ease;
     z-index: 100;
     overflow: hidden;
 }

 .nav-enter-tip.show {
     opacity: 1;
     pointer-events: auto;
     transform: translateY(0);
 }

 .nav-enter-tip::before {
     content: "";
     position: absolute;
     top: -5px;
     right: 20px;
     width: 10px;
     height: 10px;
     border-radius: 2px;
     background: var(--bg-raised);
     border-top: 1px solid var(--border-hi);
     border-left: 1px solid var(--border-hi);
     transform: rotate(45deg);
     z-index: 1;
 }

 .nav-enter-tip-content {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .nav-enter-tip-dot {
     width: 6px;
     height: 6px;
     border-radius: 50%;
     flex-shrink: 0;
     background: var(--primary);
     box-shadow: 0 0 8px rgba(var(--primary-rgb), .4);
 }

 .nav-enter-tip b {
     color: var(--text);
     font-weight: 500;
 }

 .nav-enter-tip-timer {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     height: 2px;
     background: rgba(255, 255, 255, .04);
 }

 .nav-enter-tip-timer-bar {
     height: 100%;
     width: 100%;
     border-radius: 0 2px 2px 0;
     background: linear-gradient(90deg, var(--cyan), var(--primary));
     transform-origin: left;
     transform: scaleX(1);
 }

 .nav-enter-tip.show .nav-enter-tip-timer-bar {
     transform: scaleX(0);
     transition: transform 2.8s linear;
 }

 /* ── Content ───────────────────────────────── */
 .content {
     grid-row: 2;
     display: grid;
     grid-template-columns: 1fr 420px;
     gap: 80px;
     align-items: center;
     min-height: 0;
 }

 /* ── Left ──────────────────────────────────── */
 .left {
     display: flex;
     flex-direction: column;
     gap: 28px;
 }

 .hero {
     display: flex;
     flex-direction: column;
     gap: 20px;
 }

 /* ── Token display ── */
 .token {
     display: inline-flex;
     align-items: center;
     gap: 12px;
     width: fit-content;
     padding: 8px 10px 8px 8px;
     border-radius: 9999px;
     background: var(--primary-deep);
     border: 1px solid rgba(var(--primary-rgb), .08);
 }

 .token-logo {
     width: 32px;
     height: 32px;
     border-radius: 50%;
     object-fit: cover;
 }

 .token-name {
     font-size: 14.5px;
     font-weight: 500;
     color: var(--text);
     letter-spacing: -.01em;
 }

 .token-ticker {
     font-size: 11px;
     font-weight: 600;
     color: var(--primary);
     letter-spacing: .04em;
     text-transform: uppercase;
     padding: 3px 10px;
     border-radius: 9999px;
     background: rgba(var(--primary-rgb), .08);
     border: 1px solid rgba(var(--primary-rgb), .1);
 }

 .pill {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     width: fit-content;
     padding: 6px 14px;
     border-radius: 9999px;
     background: var(--bg-raised);
     border: 1px solid var(--border);
     font-size: 13px;
     font-weight: 400;
     color: var(--text3);
     letter-spacing: -.01em;
 }

 .pill-dot {
     width: 5px;
     height: 5px;
     border-radius: 50%;
     background: var(--primary);
 }

 h1 {
     font-size: clamp(34px, 4vw, 52px);
     line-height: 1.1;
     font-weight: 500;
     letter-spacing: -.04em;
     color: var(--text);
 }

 h1 .hi {
     color: var(--primary);
 }

 .sub {
     font-size: 16px;
     font-weight: 400;
     line-height: 1.6;
     color: var(--text2);
     max-width: 440px;
 }

 /* ── Stats ─────────────────────────────────── */
 .stats {
     display: flex;
     gap: 1px;
     border-radius: 12px;
     overflow: hidden;
     border: 1px solid var(--border);
 }

 .stat {
     flex: 1;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 6px;
     padding: 18px 16px;
     background: var(--bg-raised);
     transition: 'background' var(--dur) ease;
 }

 .stat:hover {
     background: rgba(var(--primary-rgb), .03);
 }

 .stat+.stat {
     border-left: 1px solid var(--border);
 }

 .stat-val {
     font-family: "KHTekaMono", "KHTeka", monospace;
     font-size: clamp(20px, 1.8vw, 26px);
     font-weight: 400;
     line-height: 1;
     letter-spacing: -.02em;
     color: var(--text);
 }

 .stat-val.timer {
     font-variant-numeric: tabular-nums;
 }

 .stat-lbl {
     font-size: 12px;
     font-weight: 400;
     color: var(--muted);
     letter-spacing: -.01em;
 }

 /* ── Card ──────────────────────────────────── */
 .card {
     position: relative;
     border-radius: 24px;
     display: flex;
     flex-direction: column;
     padding: 1px;
     background: linear-gradient(40deg, var(--g1) 0%, var(--g2) 90%);
     animation: cardShift 10s ease-in-out infinite;
     color: var(--text);
 }

 .card-inner {
     display: flex;
     flex-direction: column;
     padding: 32px;
     background: rgba(var(--bg-rgb), .94);
     backdrop-filter: blur(40px);
     -webkit-backdrop-filter: blur(40px);
     height: 100%;
     border-radius: 23px;
 }

 .card::after {
     content: "";
     position: absolute;
     inset: -1px;
     z-index: -1;
     border-radius: 24px;
     background: linear-gradient(40deg, rgba(var(--cyan-rgb), .18) 0%, rgba(var(--primary-rgb), .12) 90%);
     filter: blur(30px);
 }

 /* ── Card header ── */
 .card-head {
     display: flex;
     align-items: flex-start;
     gap: 16px;
     margin-bottom: 24px;
 }

 .card-icon {
     width: 46px;
     height: 46px;
     border-radius: 14px;
     flex-shrink: 0;
     background: linear-gradient(135deg, rgba(var(--cyan-rgb), .15) 0%, rgba(var(--primary-rgb), .15) 100%);
     border: 1px solid rgba(var(--primary-rgb), .1);
     display: grid;
     place-items: center;
     position: relative;
 }

 .card-icon::after {
     content: "";
     position: absolute;
     inset: -4px;
     border-radius: 18px;
     background: linear-gradient(135deg, rgba(var(--cyan-rgb), .06) 0%, rgba(var(--primary-rgb), .06) 100%);
     z-index: -1;
 }

 .card-icon svg {
     width: 22px;
     height: 22px;
     color: var(--primary);
 }

 .card-h {
     font-size: 18px;
     font-weight: 500;
     letter-spacing: -.02em;
     line-height: 1.3;
 }

 .card-sub {
     font-size: 13px;
     font-weight: 400;
     color: var(--text3);
     margin-top: 4px;
     line-height: 1.5;
 }

 .sep {
     height: 1px;
     margin-bottom: 24px;
     background: linear-gradient(90deg, transparent, var(--border-hi) 50%, transparent);
 }

 /* ── Steps ─── */
 .steps {
     display: flex;
     flex-direction: column;
     margin-bottom: 24px;
     position: relative;
     padding-left: 4px;
 }

 .step {
     display: flex;
     align-items: center;
     gap: 14px;
     padding: 12px 16px;
     border-radius: 12px;
     background: transparent;
     border: 1px solid transparent;
     transition: border-color var(--dur) ease, "background" var(--dur) ease;
     position: relative;
 }

 .step.active {
     border-color: rgba(var(--primary-rgb), .12);
     background: rgba(var(--primary-rgb), .035);
 }

 .step-n {
     flex-shrink: 0;
     width: 30px;
     height: 30px;
     border-radius: 50%;
     background: rgba(255, 255, 255, .04);
     color: var(--muted);
     font-size: 12px;
     font-weight: 500;
     display: grid;
     place-items: center;
     border: 1px solid rgba(255, 255, 255, .06);
     transition: all var(--dur) ease;
     position: relative;
     z-index: 1;
 }

 .step.active .step-n {
     background: rgba(var(--primary-rgb), .12);
     color: var(--primary);
     border-color: rgba(var(--primary-rgb), .2);
     box-shadow: 0 0 12px rgba(var(--primary-rgb), .08);
 }

 .step-t {
     font-size: 14px;
     font-weight: 400;
     color: var(--muted);
     line-height: 1.3;
     transition: color var(--dur) ease;
 }

 .step.active .step-t {
     color: var(--text);
     font-weight: 500;
 }

 .step-connector {
     width: 1px;
     height: 16px;
     margin-left: 30px;
     background: linear-gradient(180deg, rgba(var(--primary-rgb), .12) 0%, rgba(255, 255, 255, .04) 100%);
 }

 .step.done .step-n {
     background: rgba(var(--green-rgb), .12);
     color: var(--green);
     border-color: rgba(var(--green-rgb), .2);
 }

 .step.done .step-t {
     color: var(--green);
 }

 /* ── Buttons ── */
 .actions {
     display: flex;
     flex-direction: column;
     gap: 10px;
 }

 .btn {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     width: 100%;
     padding: 14px 24px;
     border-radius: 14px;
     font-size: 15px;
     font-weight: 500;
     font-family: "KHTeka", sans-serif;
     letter-spacing: -.01em;
     transition: transform .2s ease, box-shadow .3s ease, background-color .2s ease, opacity .2s ease;
 }

 .btn svg {
     width: 18px;
     height: 18px;
 }

 @media (hover: hover) {
     .btn:hover {
         transform: translateY(-1px);
     }
 }

 .btn:active {
     transform: scale(.98);
 }

 .btn--primary {
     background: linear-gradient(135deg, var(--primary) 0%, var(--primary-alt) 100%);
     color: var(--primary-contrast);
     font-weight: 600;
     box-shadow: 0 2px 12px rgba(var(--primary-rgb), .15);
 }

 @media (hover: hover) {
     .btn--primary:hover {
         box-shadow: 0 4px 24px rgba(var(--primary-rgb), .35), 0 0 60px rgba(var(--primary-rgb), .12);
     }
 }

 .btn--primary:disabled {
     opacity: .5;
     pointer-events: none;
 }

 .btn--ghost {
     background: rgba(255, 255, 255, .03);
     border: 1px solid var(--border);
     color: var(--text3);
 }

 .spinner {
     width: 16px;
     height: 16px;
     border: 2px solid transparent;
     border-top-color: currentColor;
     border-radius: 50%;
     animation: spin .6s linear infinite;
 }

 @keyframes spin {
     to {
         transform: rotate(360deg);
     }
 }

 .status-msg {
     font-size: 13px;
     font-weight: 400;
     color: var(--text3);
     text-align: center;
     padding: 8px 0;
     min-height: 28px;
 }

 .status-msg.error {
     color: var(--red);
 }

 .card-secure {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 6px;
     margin-top: 16px;
     padding-top: 16px;
     border-top: 1px solid rgba(255, 255, 255, .04);
     font-size: 11.5px;
     font-weight: 400;
     color: var(--muted);
     letter-spacing: .01em;
 }

 .card-secure svg {
     width: 12px;
     height: 12px;
     color: var(--green);
 }

 /* ── Footer ────────────────────────────────── */
 .foot {
     grid-row: 3;
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 16px 0;
     border-top: 1px solid var(--border);
     font-size: 12px;
     font-weight: 400;
     color: var(--muted);
 }

 .foot a {
     color: var(--muted);
     transition: color .15s;
 }

 .foot a:hover {
     color: var(--text);
 }

 .foot-links {
     display: flex;
     gap: 20px;
 }


 /* ── Animations ────────────────────────────── */
 @keyframes up {
     from {
         opacity: 0;
         transform: translateY(12px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .a {
     animation: up .5s var(--ease-out) both;
 }

 .a1 {
     animation-delay: .04s;
 }

 .a2 {
     animation-delay: .1s;
 }

 .a3 {
     animation-delay: .18s;
 }

 .a4 {
     animation-delay: .26s;
 }

 /* ── Urgency notice ── */
 .urgency {
     display: flex;
     align-items: center;
     gap: 10px;
     padding: 12px 16px;
     border-radius: 10px;
     background: rgba(251, 191, 36, .1);
     border: 1px solid rgba(251, 191, 36, .25);
 }

 .urgency svg {
     flex-shrink: 0;
     width: 16px;
     height: 16px;
     min-width: 16px;
     min-height: 16px;
     color: #FBBF24;
 }

 .urgency-text {
     font-size: 13px;
     font-weight: 500;
     color: #FCD34D;
     line-height: 1.45;
 }

 /* ── Tweet signal ─────────────────────────── */
 .signal {
     display: flex;
     align-items: stretch;
     width: 100%;
     border-radius: 12px;
     overflow: hidden;
     background: var(--bg-raised);
     border: 1px solid var(--border);
     position: relative;
     transition: border-color .35s ease, box-shadow .35s ease;
 }

 .signal:hover {
     border-color: rgba(var(--primary-rgb), .18);
     box-shadow: 0 0 24px rgba(var(--primary-rgb), .04);
 }

 .signal-accent {
     width: 3px;
     flex-shrink: 0;
     background: linear-gradient(180deg, var(--cyan) 0%, var(--primary) 100%);
 }

 .signal-content {
     display: flex;
     align-items: center;
     gap: 14px;
     padding: 14px 18px;
     flex: 1;
     min-width: 0;
 }

 .signal-avatar {
     flex-shrink: 0;
     width: 36px;
     height: 36px;
     border-radius: 4px;
     overflow: hidden;
     border: 1.5px solid #000;
 }

 .signal-avatar img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
 }

 .signal-body {
     display: flex;
     flex-direction: column;
     gap: 3px;
     min-width: 0;
 }

 .signal-head {
     display: flex;
     align-items: center;
     gap: 6px;
     font-size: 13px;
     font-weight: 500;
     color: var(--text);
 }

 .signal-head .verified {
     width: 14px;
     height: 14px;
     flex-shrink: 0;
 }

 .signal-handle {
     font-size: 12px;
     color: var(--muted);
     font-weight: 400;
 }

 .signal-quote {
     font-size: 15px;
     font-weight: 400;
     color: var(--text2);
     letter-spacing: -.01em;
     line-height: 1.45;
 }

 .signal-quote .signal-jm {
     font-weight: 600;
     color: var(--primary);
 }

 .signal-arrow {
     flex-shrink: 0;
     margin-left: auto;
     padding-left: 12px;
     display: grid;
     place-items: center;
     color: var(--muted);
     transition: color .25s ease, transform .25s ease;
 }

 .signal-arrow svg {
     width: 16px;
     height: 16px;
 }

 .signal:hover .signal-arrow {
     color: var(--primary);
     transform: translateX(2px);
 }

 /* ════════════════════════════════
       RESPONSIVE
    ════════════════════════════════ */
 @media (max-width: 1100px) {
     .content {
         grid-template-columns: 1fr 400px;
         gap: 48px;
     }
 }

 @media (max-width: 860px) {
     body {
         height: auto;
         overflow-y: auto;
         overflow-x: hidden;
     }

     .page {
         height: auto;
         min-height: 100dvh;
     }

     .content {
         grid-template-columns: 1fr;
         gap: 28px;
         padding: 16px 0 40px;
         align-items: start;
     }

     .left {
         gap: 24px;
     }

     h1 {
         font-size: 34px;
     }

     .sub {
         max-width: 100%;
     }

     .card {
         max-width: 100%;
     }

     .card-inner {
         padding: 28px;
     }

     .signal-arrow {
         display: none;
     }
 }

 @media (max-width: 600px) {
     .page {
         padding: 0 18px;
     }

     /* Announce */
     .announce {
         font-size: 11px;
         padding: 7px 12px;
         gap: 8px;
     }

     .announce-pill {
         font-size: 9.5px;
         padding: 2px 7px 2px 5px;
     }

     /* Nav */
     .nav {
         height: 52px;
     }

     .nav-logo {
         gap: 8px;
     }

     .nav-logo img {
         width: 28px !important;
         height: 28px !important;
     }

     .nav-logo-text {
         font-size: 14px;
     }

     .nav-enter {
         padding: 8px 16px;
         font-size: 12.5px;
         border-radius: 8px;
     }

     .nav-enter-tip {
         font-size: 12px;
         padding: 10px 14px;
         right: -4px;
     }

     .nav-enter-tip::before {
         right: 14px;
     }

     /* Hero */
     .hero {
         gap: 16px;
     }

     .token {
         padding: 6px 14px 6px 6px;
         gap: 8px;
     }

     .token-logo {
         width: 26px;
         height: 26px;
     }

     .token-name {
         font-size: 13px;
     }

     .token-ticker {
         font-size: 11.5px;
     }

     h1 {
         font-size: 26px;
     }

     .sub {
         font-size: 14px;
         line-height: 1.55;
     }

     /* Signal */
     .signal {
         border-radius: 10px;
     }

     .signal-content {
         padding: 12px 14px;
         gap: 11px;
     }

     .signal-avatar {
         width: 32px;
         height: 32px;
     }

     .signal-head {
         font-size: 12px;
         gap: 4px;
     }

     .signal-head .verified {
         width: 12px;
         height: 12px;
     }

     .signal-handle {
         font-size: 11px;
     }

     .signal-quote {
         font-size: 13.5px;
     }

     /* Stats */
     .stats {
         flex-direction: column;
         border-radius: 10px;
     }

     .stat {
         flex-direction: row;
         justify-content: space-between;
         padding: 13px 16px;
         gap: 8px;
     }

     .stat+.stat {
         border-left: none;
         border-top: 1px solid var(--border);
     }

     .stat-val {
         font-size: 18px;
     }

     .stat-lbl {
         font-size: 11.5px;
     }

     /* Urgency */
     .urgency {
         padding: 10px 14px;
         border-radius: 8px;
         gap: 8px;
     }

     .urgency svg {
         width: 14px;
         height: 14px;
         min-width: 14px;
         min-height: 14px;
     }

     .urgency-text {
         font-size: 12px;
     }

     /* Card */
     .card {
         border-radius: 20px;
     }

     .card::after {
         border-radius: 20px;
     }

     .card-inner {
         border-radius: 19px;
     }

     .card-inner {
         padding: 22px;
     }

     .card-head {
         gap: 12px;
         margin-bottom: 20px;
     }

     .card-icon {
         width: 40px;
         height: 40px;
         border-radius: 12px;
     }

     .card-icon::after {
         inset: -3px;
         border-radius: 15px;
     }

     .card-icon svg {
         width: 20px;
         height: 20px;
     }

     .card-h {
         font-size: 16px;
     }

     .card-sub {
         font-size: 12px;
     }

     .sep {
         margin-bottom: 18px;
     }

     .steps {
         margin-bottom: 18px;
     }

     .step {
         padding: 10px 12px;
         border-radius: 10px;
         gap: 12px;
     }

     .step-n {
         width: 26px;
         height: 26px;
         font-size: 11px;
     }

     .step-t {
         font-size: 13px;
     }

     .step-connector {
         height: 12px;
         margin-left: 26px;
     }

     .btn {
         padding: 13px 20px;
         font-size: 14px;
         border-radius: 12px;
     }

     .card-secure {
         font-size: 10.5px;
         margin-top: 14px;
         padding-top: 14px;
     }

     .card-secure svg {
         width: 11px;
         height: 11px;
     }

     /* Footer */
     .foot {
         flex-direction: column;
         gap: 8px;
         text-align: center;
         padding: 16px 0;
     }

     .foot-links {
         gap: 16px;
     }
 }

 @media (max-width: 380px) {
     .page {
         padding: 0 14px;
     }

     h1 {
         font-size: 23px;
     }

     .nav-logo-text {
         font-size: 13px;
     }

     .card-inner {
         padding: 18px;
     }

     .signal-content {
         padding: 10px 12px;
         gap: 10px;
     }

     .signal-quote {
         font-size: 12.5px;
     }

     .nav-enter {
         padding: 7px 14px;
         font-size: 12px;
     }

     .announce-text b {
         font-weight: 500;
     }
 }