@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/Inter-400.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/Inter-500.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/Inter-700.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/Inter-900.woff2') format('woff2');
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('/assets/fonts/JetBrainsMono-500.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}

:root {
  --blue: #0052ff;
  --blue-dark: #0040cc;
  --ink: #0a0e1a;
  --ink-dim: #5b6472;
  --paper: #ffffff;
  --gray: #f5f7fb;
  --gray-2: #eef1f6;
  --line: #e3e8ef;
  --green: #16a34a;
  --red: #dc2626;
  --radius: 14px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3 { margin: 0; font-weight: 900; letter-spacing: -0.02em; }
p { margin: 0; }
a { color: inherit; }
img { max-width: 100%; display: block; }

.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }

/* nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
}
.nav-mark {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--blue);
  position: relative;
  flex-shrink: 0;
}
.nav-mark::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--paper);
  -webkit-mask: radial-gradient(circle at 50% 50%, transparent 5px, #000 5.5px);
  mask: radial-gradient(circle at 50% 50%, transparent 5px, #000 5.5px);
  border-radius: 6px;
}
.nav-links { display: none; gap: 22px; font-size: 14px; font-weight: 500; }
.nav-links a { text-decoration: none; color: var(--ink-dim); transition: color 0.15s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 10px; }

.x-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--gray-2);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.15s ease;
}
.x-btn:hover { background: var(--line); }
.x-mark { position: relative; width: 12px; height: 12px; display: block; }
.x-mark i {
  position: absolute; top: 50%; left: 50%;
  width: 14px; height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transform-origin: center;
}
.x-mark i:nth-child(1) { transform: translate(-50%,-50%) rotate(35deg); }
.x-mark i:nth-child(2) { transform: translate(-50%,-50%) rotate(-35deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); box-shadow: 0 6px 20px -6px rgba(0,82,255,0.5); }
.btn-ghost { background: var(--gray-2); color: var(--ink); }
.btn-ghost:hover { background: var(--line); }
.btn-white { background: #fff; color: var(--blue); }
.btn-white:hover { box-shadow: 0 8px 24px -8px rgba(0,0,0,0.35); }
.btn-sm { padding: 9px 16px; font-size: 13px; }

/* ticker */
.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  padding: 7px 0;
}
.ticker-track { display: flex; width: max-content; animation: ticker 22s linear infinite; }
.ticker-set { display: flex; align-items: center; flex-shrink: 0; white-space: nowrap; }
.ticker-set span:not(.tdot) { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.04em; color: #aeb8c9; padding: 0 12px; }
.tdot { color: #4a5468; }
.up { color: #4ade80; }
.down { color: #f87171; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

main { position: relative; }

/* hero */
.hero {
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue) 70%, var(--blue-dark) 100%);
  color: #fff;
  padding: 40px 20px 56px;
}
.hero-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  grid-template-areas: "visual" "copy";
  gap: 0;
}
.hero-copy { grid-area: copy; display: flex; flex-direction: column; align-items: center; }
.hero-visual { grid-area: visual; position: relative; width: 100%; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.12);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.signal-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 6px #4ade80; animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
.hero-banner {
  width: 100%;
  max-width: 460px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin: 0 auto 28px;
  border-radius: var(--radius);
  box-shadow: 0 30px 70px -20px rgba(0,20,80,0.55);
}

/* price widget card (zoinbase-inspired: bright, floating, live-looking) */
.price-card {
  position: static;
  margin: -44px auto 0;
  width: min(88%, 300px);
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: 0 20px 50px -18px rgba(0,20,80,0.5);
  text-align: left;
}
.price-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.price-card-ticker { font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 13px; }
.price-card-live { display: inline-flex; align-items: center; gap: 5px; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.05em; color: var(--ink-dim); }
.price-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 6px var(--green); animation: pulse 1.6s ease-in-out infinite; }
.price-card-value { font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 24px; margin-bottom: 8px; }
.price-card-value sub { font-size: 13px; }
.price-card-change { margin-left: 8px; font-size: 13px; font-weight: 700; color: var(--green); }
.price-card-chart { display: block; width: 100%; height: 44px; margin-bottom: 12px; }
.price-card-chart polyline { fill: none; stroke: var(--blue); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.price-card-actions { display: flex; gap: 8px; }
.pc-btn { flex: 1; text-align: center; padding: 9px 0; border-radius: 999px; font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 12px; text-decoration: none; }
.pc-btn-buy { background: var(--blue); color: #fff; transition: background 0.15s ease; }
.pc-btn-buy:hover { background: var(--blue-dark); }
.pc-btn-sell { background: var(--gray); color: var(--ink-dim); cursor: not-allowed; }
.hero-h { font-size: clamp(28px, 6vw, 48px); line-height: 1.08; }
.hero-h .accent { color: #d9e4ff; }
.hero-sub { margin-top: 14px; font-size: 16px; color: rgba(255,255,255,0.85); font-family: 'JetBrains Mono', monospace; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 28px; }
.hero .btn-primary { background: #fff; color: var(--blue); }
.hero .btn-primary:hover { background: #eef1ff; box-shadow: 0 8px 24px -8px rgba(0,0,0,0.35); }
.hero .btn-ghost { background: rgba(255,255,255,0.14); color: #fff; }
.hero .btn-ghost:hover { background: rgba(255,255,255,0.24); }
.why-answer {
  margin-top: 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
}
.why-answer[hidden] { display: none; }

/* card + status */
.status-wrap { padding: 0 20px; margin-top: -32px; position: relative; z-index: 5; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px -24px rgba(10,14,26,0.2);
}
.status-card { max-width: 560px; margin: 0 auto; padding: 26px 24px; }
.card-title { font-size: 12px; letter-spacing: 0.1em; color: var(--ink-dim); font-weight: 700; margin-bottom: 16px; font-family: 'JetBrains Mono', monospace; }
.status-grid { display: flex; flex-direction: column; gap: 14px; }
.status-row { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid var(--gray-2); font-size: 14px; }
.status-row:last-child { border-bottom: none; padding-bottom: 0; }
.status-k { color: var(--ink-dim); font-weight: 500; }
.status-v { display: flex; gap: 8px; align-items: center; }
.status-strong { font-weight: 700; }
.pill { font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 500; padding: 4px 10px; border-radius: 999px; }
.pill-no { background: #fdecec; color: var(--red); }
.pill-yes { background: #e9f9ef; color: var(--green); }

/* profile */
.profile {
  max-width: 940px;
  margin: 88px auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
.profile-media {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray);
}
.window-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--gray);
  border-bottom: 1px solid var(--line);
}
.wdot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.wdot-r { background: #ff5f57; }
.wdot-y { background: #febc2e; }
.wdot-g { background: #28c840; }
.window-title { margin-left: 8px; font-size: 11px; color: var(--ink-dim); letter-spacing: 0.02em; }
.profile-media img { display: block; border-radius: 0; border: none; }
.profile-sub { color: var(--ink-dim); margin: 10px 0 20px; font-size: 15px; }
.profile-list { display: flex; flex-direction: column; gap: 0; margin: 0; }
.profile-row { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--gray-2); font-size: 14px; }
.profile-row dt { color: var(--ink-dim); font-weight: 500; }
.profile-row dd { margin: 0; font-weight: 700; text-align: right; }

/* story */
.story {
  max-width: 560px;
  margin: 96px auto 0;
  padding: 0 20px;
  text-align: center;
}
.story h2 { font-size: clamp(24px, 4.5vw, 34px); margin-bottom: 24px; }
.log-card {
  text-align: left;
  background: var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 54px -26px rgba(10,14,26,0.4);
}
.log-card .window-chrome { background: #0d1220; border-bottom: 1px solid #1c2434; }
.log-card .window-title { color: #6b7688; }
.log-line { padding: 10px 22px; font-size: 14px; color: #aeb8c9; border-bottom: 1px solid #151b2a; }
.log-line:last-of-type { border-bottom: none; }
.story blockquote {
  margin: 0;
  padding: 20px 22px 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  font-weight: 500;
  color: #7fa8ff;
}

/* ask */
.ask {
  max-width: 480px;
  margin: 96px auto 0;
  padding: 0 20px;
  text-align: center;
}
.ask h2 { font-size: 26px; margin-bottom: 20px; }
.ask-panel { background: var(--gray); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.ask-form { display: flex; gap: 10px; }
.ask-input {
  flex: 1;
  padding: 13px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
  font-size: 14px;
  color: var(--ink);
}
.ask-input:focus { outline: 2px solid var(--blue); outline-offset: 1px; }
.ask-reply {
  margin-top: 18px;
  min-height: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  font-weight: 500;
  color: var(--blue);
}

/* metrics */
.metrics { max-width: 980px; margin: 96px auto 0; padding: 0 20px; text-align: center; }
.metrics h2 { font-size: 26px; margin-bottom: 30px; }
.metrics-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.metric { display: flex; flex-direction: column; gap: 6px; padding: 22px 10px; background: var(--gray); border-radius: var(--radius); }
.metric-v { font-family: 'JetBrains Mono', monospace; font-size: 28px; font-weight: 700; color: var(--blue); }
.metric-text { font-size: 18px; }
.metric-k { font-size: 11px; letter-spacing: 0.06em; color: var(--ink-dim); font-weight: 500; }

/* why solana */
.why-sol { max-width: 980px; margin: 96px auto 0; padding: 0 20px; text-align: center; }
.why-sol h2 { font-size: 26px; margin-bottom: 26px; }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.why-card { padding: 26px 20px; text-align: left; transition: transform 0.15s ease, box-shadow 0.15s ease; }
.why-card:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -18px rgba(10,14,26,0.25); }
.why-card h3 { font-size: 18px; margin-bottom: 8px; }
.why-card p { color: var(--ink-dim); font-size: 14px; }

.why-icon { display: block; width: 40px; height: 40px; border-radius: 10px; background: var(--blue); position: relative; margin-bottom: 14px; flex-shrink: 0; }
.why-icon::before, .why-icon::after { content: ""; position: absolute; }
.icon-fast::before { top: 6px; left: 11px; width: 18px; height: 28px; background: #fff; clip-path: polygon(58% 0%, 8% 58%, 42% 58%, 32% 100%, 92% 38%, 52% 38%); }
.icon-cheap::before { top: 8px; left: 8px; width: 24px; height: 24px; border-radius: 50%; border: 2.5px solid #fff; }
.icon-cheap::after { top: 50%; left: 6px; width: 28px; height: 2.5px; background: #fff; transform: translateY(-50%) rotate(-42deg); }
.icon-pump::before { top: 22px; left: 8px; width: 24px; height: 2.5px; background: #fff; transform-origin: left center; transform: rotate(-28deg); }
.icon-pump::after { top: 6px; left: 23px; width: 11px; height: 11px; border-top: 2.5px solid #fff; border-right: 2.5px solid #fff; transform: rotate(45deg); }

/* how to buy */
.how-to-buy { max-width: 640px; margin: 96px auto 0; padding: 0 20px; text-align: center; }
.how-to-buy h2 { font-size: 26px; margin-bottom: 26px; }
.steps { list-style: none; margin: 0 0 30px; padding: 0; display: flex; flex-direction: column; gap: 10px; text-align: left; }
.steps li { display: flex; align-items: center; gap: 16px; padding: 16px 18px; background: var(--gray); border-radius: 12px; }
.step-n { font-family: 'JetBrains Mono', monospace; color: var(--blue); font-weight: 700; font-size: 13px; }
.step-t { font-weight: 500; }

/* compare */
.compare { max-width: 640px; margin: 96px auto 0; padding: 0 20px; text-align: center; }
.compare h2 { font-size: 26px; margin-bottom: 24px; }
.compare-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
.compare-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare-table th, .compare-table td { padding: 13px 16px; text-align: center; border-bottom: 1px solid var(--gray-2); white-space: nowrap; }
.compare-table thead th { background: var(--gray); font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.06em; color: var(--ink-dim); }
.compare-table tbody th { text-align: left; font-weight: 700; }
.compare-table tbody tr:last-child td, .compare-table tbody tr:last-child th { border-bottom: none; }
.compare-result { margin-top: 20px; font-size: 14px; color: var(--ink-dim); }
.compare-result strong { color: var(--blue); }

/* final cta */
.final-cta {
  margin-top: 110px;
  padding: 80px 20px;
  background: var(--blue);
  color: #fff;
  text-align: center;
}
.final-cta h2 { font-size: clamp(28px, 6vw, 46px); line-height: 1.1; margin-bottom: 28px; }
.final-fine { margin-top: 16px; font-family: 'JetBrains Mono', monospace; font-size: 12px; color: rgba(255,255,255,0.7); }

/* footer */
.chrome { max-width: 980px; margin: 0 auto; padding: 40px 20px 60px; text-align: center; }
.chrome-top { display: flex; align-items: center; justify-content: center; gap: 10px; font-weight: 900; font-size: 15px; margin-bottom: 18px; }
.chrome-ticker { font-family: 'JetBrains Mono', monospace; color: var(--blue); font-weight: 700; font-size: 13px; }
.chrome-links { display: flex; justify-content: center; gap: 18px; font-size: 13px; font-weight: 500; margin-bottom: 18px; }
.chrome-links a { text-decoration: none; color: var(--ink-dim); }
.chrome-links a:hover { color: var(--ink); }
.chrome-ca { display: flex; justify-content: center; align-items: center; gap: 8px; margin-bottom: 18px; }
.chrome-ca .lbl { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ink-dim); }
.ca-value {
  display: flex; align-items: center; gap: 8px;
  background: var(--gray); border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 12px; font-family: 'JetBrains Mono', monospace; font-size: 12px;
  cursor: pointer; color: var(--ink);
}
.ca-value:hover { background: var(--gray-2); }
.copy-hint { color: var(--ink-dim); }
.chrome-fine { font-size: 12px; color: var(--ink-dim); }

.noscript-banner {
  position: fixed; inset: 0; z-index: 999;
  background: var(--paper); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 20px; font-size: 14px;
}

@media (min-width: 720px) {
  .nav-links { display: flex; }
  .profile { grid-template-columns: 340px 1fr; gap: 48px; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .metrics-grid { grid-template-columns: repeat(5, 1fr); }
}

@media (min-width: 1024px) {
  .hero { padding: 76px 20px 90px; }
  .hero-inner {
    max-width: 1240px;
    grid-template-areas: "copy visual";
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
    text-align: left;
  }
  .hero-copy { align-items: flex-start; }
  .eyebrow { margin-left: 0; }
  .hero-visual { max-width: 560px; justify-self: end; }
  .hero-banner {
    width: 100%;
    max-width: 560px;
    height: clamp(420px, 34vw, 560px);
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center 28%;
    margin: 0;
  }
  .price-card {
    position: absolute;
    left: -48px;
    bottom: -36px;
    width: 250px;
    margin: 0;
  }
  .hero-h { font-size: clamp(46px, 3.6vw, 64px); }
  .hero-sub { font-size: 18px; }
  .hero-cta { margin-top: 32px; gap: 14px; justify-content: flex-start; }
  .hero .btn, .btn { padding: 15px 28px; font-size: 16px; }
  .btn-sm { padding: 9px 18px; font-size: 14px; }
  .why-answer { font-size: 16px; }

  .status-wrap { margin-top: -60px; }
  .status-card { max-width: 900px; padding: 50px 58px; }
  .status-card .card-title { font-size: 16px; }
  .status-row { font-size: 20px; padding-bottom: 22px; }
  .pill { font-size: 15px; padding: 6px 14px; }

  .profile { max-width: 1100px; margin-top: 100px; grid-template-columns: 620px 1fr; gap: 56px; }
  .profile-media img { width: 100%; height: 650px; object-fit: cover; }
  .profile-body .card-title { font-size: 19px; }
  .profile-sub { font-size: 24px; margin: 18px 0 34px; }
  .profile-row { font-size: 22px; padding: 21px 0; }

  .story { max-width: 1050px; margin-top: 100px; }
  .story h2 { font-size: clamp(50px, 4.8vw, 68px); margin-bottom: 34px; }
  .log-line { font-size: 22px; padding: 20px 44px; }
  .story blockquote { font-size: 36px; padding: 34px 44px 44px; }

  .ask { max-width: 980px; margin-top: 100px; }
  .ask h2 { font-size: 54px; margin-bottom: 28px; }
  .ask-panel { padding: 48px 52px; }
  .ask-input { font-size: 22px; padding: 24px 30px; }
  .ask-form { gap: 16px; }
  .ask-reply { font-size: 26px; margin-top: 24px; }

  .metrics { max-width: 1100px; margin-top: 100px; }
  .metrics h2 { font-size: 54px; margin-bottom: 40px; }
  .metrics-grid { gap: 26px; }
  .metric { padding: 40px 20px; }
  .metric-v { font-size: 52px; }
  .metric-text { font-size: 26px; }
  .metric-k { font-size: 14px; }

  .why-sol { max-width: 1100px; margin-top: 100px; }
  .why-sol h2 { font-size: 54px; margin-bottom: 36px; }
  .why-grid { gap: 24px; }
  .why-card { padding: 48px 40px; }
  .why-icon { width: 50px; height: 50px; margin-bottom: 18px; }
  .icon-fast::before { top: 8px; left: 14px; width: 22px; height: 35px; }
  .icon-cheap::before { top: 10px; left: 10px; width: 30px; height: 30px; }
  .icon-cheap::after { left: 7px; width: 35px; }
  .icon-pump::before { top: 28px; left: 10px; width: 30px; }
  .icon-pump::after { top: 8px; left: 29px; width: 14px; height: 14px; }
  .why-card h3 { font-size: 28px; margin-bottom: 14px; }
  .why-card p { font-size: 19px; }

  .how-to-buy { max-width: 1100px; margin-top: 100px; }
  .how-to-buy h2 { font-size: 54px; margin-bottom: 36px; }
  .steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-bottom: 40px; }
  .steps li { flex-direction: column; align-items: flex-start; padding: 30px 26px; gap: 16px; }
  .step-n { font-size: 18px; }
  .step-t { font-size: 20px; }

  .compare { max-width: 1100px; margin-top: 100px; }
  .compare h2 { font-size: 54px; margin-bottom: 32px; }
  .compare-table th, .compare-table td { padding: 24px 36px; font-size: 20px; }
  .compare-result { font-size: 20px; margin-top: 28px; }

  .final-cta { padding: 100px 20px; margin-top: 120px; }
  .final-cta h2 { font-size: clamp(48px, 4.4vw, 72px); margin-bottom: 34px; }
  .final-fine { font-size: 13px; }

  .chrome { max-width: 1100px; padding: 48px 20px 68px; }
  .chrome-top { font-size: 20px; }
  .chrome-links { font-size: 16px; gap: 24px; }
  .ca-value { font-size: 15px; padding: 8px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track, .signal-dot { animation: none; }
  .why-card:hover { transform: none; }
}
