/* =========================================================
   Medi 3.0 — Investor / brand site
   Design language referenced from medi-3.io:
   soft teal + charcoal colour blocks, wavy section dividers,
   rounded friendly headings, big English section labels,
   bilingual copy, gold-coin token motif.
   ========================================================= */

:root {
  --teal:      #6db0be;   /* primary soft teal */
  --teal-dark: #4e97a6;
  --teal-deep: #3d8493;
  --teal-soft: #e6f2f4;   /* very light teal wash */
  --char:      #454545;   /* charcoal (tokenomics) */
  --char-2:    #3b3b3b;
  --navy:      #1b2a5b;   /* headings / chart navy */
  --gold:      #f3c220;
  --gold-2:    #e8a91c;
  --accent:    #3e9bd6;   /* blue accent (EN sublabels) */

  --ink:   #26333f;       /* body headings on light */
  --ink-2: #55636f;       /* body text */
  --ink-3: #8593a0;       /* muted */

  --bg:    #ffffff;
  --line:  #e5edf0;

  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 4px 16px rgba(40, 90, 100, .08);
  --shadow:    0 16px 44px rgba(40, 90, 100, .14);
  --shadow-lg: 0 28px 64px rgba(40, 90, 100, .20);

  --maxw: 1160px;
  --f-round: 'M PLUS Rounded 1c', 'Noto Sans JP', system-ui, sans-serif;
  --f-disp:  'Poppins', 'M PLUS Rounded 1c', system-ui, sans-serif;
  --f-body:  'Noto Sans JP', 'M PLUS Rounded 1c', system-ui, -apple-system, sans-serif;
  --f-pixel: 'DotGothic16', monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; overflow-x: hidden; }
body {
  font-family: var(--f-body); color: var(--ink-2); background: var(--bg);
  line-height: 1.8; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden; width: 100%; max-width: 100%;
}
img { max-width: 100%; display: block; }
a { color: var(--teal-dark); text-decoration: none; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.3; font-family: var(--f-round); font-weight: 800; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--f-round); font-weight: 700; font-size: 15px; padding: 14px 28px; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .2s ease; white-space: nowrap;
}
.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 10px 22px rgba(109,176,190,.45); }
.btn-primary:hover { transform: translateY(-2px); background: var(--teal-dark); box-shadow: 0 14px 28px rgba(109,176,190,.55); }
.btn-ghost { background: #fff; color: var(--teal-dark); border-color: #cfe4e8; }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--teal); }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; background: rgba(255,255,255,.82); backdrop-filter: blur(14px); transition: box-shadow .25s ease, background .25s ease; }
.site-header.scrolled { box-shadow: var(--shadow-sm); background: rgba(255,255,255,.94); }
.header-inner { display: flex; align-items: center; gap: 22px; height: 70px; }
.brand-logo { height: 30px; width: auto; }
.main-nav { display: flex; gap: 26px; margin-left: 12px; margin-right: auto; }
.main-nav a { color: var(--ink); font-family: var(--f-round); font-weight: 700; font-size: 15px; }
.main-nav a:hover { color: var(--teal-dark); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-toggle { display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 2px solid #d4e6ea; color: var(--ink); font-family: var(--f-round); font-weight: 700; font-size: 13.5px; padding: 8px 15px; border-radius: 999px; cursor: pointer; transition: border-color .2s ease, color .2s ease; }
.lang-toggle:hover { border-color: var(--teal); color: var(--teal-dark); }
.nav-burger { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; border: 2px solid #d4e6ea; background: #fff; border-radius: 12px; cursor: pointer; align-items: center; justify-content: center; }
.nav-burger span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Wavy dividers ---------- */
.wave { position: relative; z-index: 2; line-height: 0; margin-top: 42px; }
.wave svg { display: block; width: 100%; height: 68px; }
.wave.to-white path { fill: #fff; }
.wave.to-teal  path { fill: var(--teal); }
.wave.to-dark  path { fill: var(--char); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 120px 0 0; background: linear-gradient(160deg, #7bb9c6 0%, #6db0be 45%, #83c1b6 100%); overflow: hidden; }
.hero-deco { position: absolute; inset: 0; z-index: 0; opacity: .35;
  background-image:
    radial-gradient(circle at 85% 15%, rgba(255,255,255,.5), transparent 40%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='104' viewBox='0 0 60 104'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-opacity='.35' stroke-width='1.2' d='M30 2l26 15v30L30 62 4 47V17z M30 62l26 15v30M30 62L4 77v30'/%3E%3C/svg%3E");
  background-size: auto, 60px 104px;
}
.pulse-line { position: absolute; left: 0; right: 0; bottom: 30%; height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='60' viewBox='0 0 400 60'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-opacity='.4' stroke-width='2' d='M0 30h120l14-22 12 44 16-52 14 60 12-30h192'/%3E%3C/svg%3E") repeat-x center; opacity: .5; }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.12fr .88fr; gap: 40px; align-items: center; }
.eyebrow { display: inline-block; font-family: var(--f-round); font-weight: 700; font-size: 13px; letter-spacing: .16em; color: #fff; background: rgba(255,255,255,.22); padding: 7px 15px; border-radius: 999px; margin-bottom: 20px; }
.hero-title { font-family: var(--f-round); font-weight: 800; color: #fff; font-size: clamp(34px, 5vw, 56px); line-height: 1.22; letter-spacing: .01em; margin-bottom: 18px; text-shadow: 0 2px 10px rgba(40,90,100,.18); }
.hero-sub { font-size: clamp(15px, 1.5vw, 18px); color: #f2fbfc; max-width: 540px; margin-bottom: 26px; }
.store-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 8px; }
.store-btn { display: inline-flex; align-items: center; gap: 10px; background: #1c1c1e; color: #fff; padding: 9px 18px 9px 16px; border-radius: 13px; box-shadow: 0 8px 18px rgba(0,0,0,.18); }
.store-btn-txt { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.store-btn-txt small { font-size: 10px; opacity: .85; font-family: var(--f-body); }
.store-btn-txt b { font-family: var(--f-round); font-size: 16px; font-weight: 700; }
.store-note { font-size: 12.5px; color: #eaf7f8; margin-bottom: 24px; font-weight: 500; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; padding-bottom: 60px; }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 320px; }
.hero-logo { width: min(330px, 78%); position: relative; z-index: 1; filter: drop-shadow(0 20px 40px rgba(40,90,100,.3)) brightness(0) invert(1); opacity: .96; animation: float 6s ease-in-out infinite; }
.glow-ring { position: absolute; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.45), transparent 62%); filter: blur(8px); animation: pulse 5s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: .85; } 50% { transform: scale(1.07); opacity: 1; } }

.stat-strip { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4,1fr); background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; margin-bottom: 10px; }
.stat { padding: 22px 18px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat-num { display: block; font-family: var(--f-disp); font-size: clamp(20px, 4.4vw, 26px); font-weight: 800; color: var(--navy); letter-spacing: -.01em; }
.stat-label { display: block; font-size: 13px; color: var(--ink-3); margin-top: 2px; }

/* ---------- Section base ---------- */
.section { padding: 82px 0 0; position: relative; }
.section > .container:last-child, .section > .container { padding-bottom: 0; }
.section { padding-bottom: 20px; }
.sec-teal { background: var(--teal); }
.sec-dark { background: var(--char); }

/* section head (big EN label + JP subtitle) */
.sec-head { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.sec-en { display: block; font-family: var(--f-disp); font-weight: 800; font-size: clamp(34px, 5.5vw, 58px); color: var(--navy); letter-spacing: -.01em; line-height: 1.05; }
.sec-en.on-teal, .sec-en.on-dark { color: #fff; }
.sec-jp { font-family: var(--f-round); font-weight: 700; font-size: clamp(18px, 2.4vw, 26px); color: var(--teal-dark); margin-top: 6px; }
.sec-jp.on-teal { color: #eafafb; }
.sec-jp.on-dark { color: #d7dde0; }
.sec-lead { font-size: 16px; color: var(--ink-2); margin-top: 16px; }
.sec-lead.on-teal { color: #f0fafb; }

/* ---------- Cards ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.cards-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card h3 { font-size: 18px; margin-bottom: 10px; }
.card p { font-size: 14.5px; color: var(--ink-2); }
.card-ico { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; color: #fff; margin-bottom: 18px; }
.ico-teal { background: linear-gradient(135deg, var(--teal), #4fb0c0); }
.ico-green { background: linear-gradient(135deg, #45c08d, #2fae9e); }
.ico-gold { background: linear-gradient(135deg, var(--gold), var(--gold-2)); }
.card-num .card-index { display: block; font-family: var(--f-disp); font-size: 30px; font-weight: 800; color: var(--teal); margin-bottom: 8px; }

/* ---------- Issues (on teal) ---------- */
.issue-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.issue { position: relative; background: #fff; border-radius: var(--radius-lg); padding: 28px 30px 28px 84px; box-shadow: var(--shadow-sm); }
.issue-no { position: absolute; left: 26px; top: 24px; font-family: var(--f-disp); font-size: 34px; font-weight: 800; color: rgba(109,176,190,.32); }
.issue h3 { font-size: 17px; margin-bottom: 8px; }
.issue p { font-size: 14.5px; }

/* ---------- Flow (How to play, on teal) ---------- */
.flow { display: flex; align-items: stretch; justify-content: center; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
.flow-step { flex: 1 1 150px; max-width: 200px; background: #fff; border-radius: var(--radius); padding: 24px 16px; text-align: center; box-shadow: var(--shadow-sm); }
.flow-no { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: var(--teal); color: #fff; font-family: var(--f-disp); font-weight: 800; margin-bottom: 12px; }
.flow-step h4 { font-size: 16px; margin-bottom: 4px; }
.flow-step p { font-size: 13px; color: var(--ink-3); }
.flow-arrow { display: flex; align-items: center; color: #fff; font-size: 24px; font-weight: 800; }
.how-note { text-align: center; background: rgba(255,255,255,.9); border-radius: var(--radius); padding: 18px 24px; font-size: 14.5px; color: var(--ink-2); max-width: 900px; margin: 0 auto; }
.how-note strong { color: var(--teal-dark); }

/* ---------- Market ---------- */
.market-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 22px; align-items: center; }
.market-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; text-align: center; box-shadow: var(--shadow-sm); }
.market-card h3 { font-size: 17px; color: var(--ink-2); margin-bottom: 8px; }
.market-big { font-family: var(--f-disp); font-size: clamp(38px, 6vw, 58px); font-weight: 800; letter-spacing: -.02em; line-height: 1; margin-bottom: 10px; color: var(--teal-dark); }
.market-card:last-of-type .market-big { color: var(--navy); }
.market-meta { font-size: 15px; color: var(--ink-2); }
.market-meta strong { color: var(--ink); }
.market-sub { font-size: 13px; color: var(--ink-3); margin-top: 6px; }
.market-x { font-family: var(--f-disp); font-size: 40px; font-weight: 800; color: var(--teal); }
.source-note { text-align: center; font-size: 12.5px; color: var(--ink-3); margin-top: 22px; }

/* ---------- Tokenomics (on charcoal) ---------- */
.coin-row { text-align: center; margin-bottom: 40px; }
.limited-pill { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-pixel); font-size: 14px; letter-spacing: .05em; color: #fff; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); padding: 7px 16px; border-radius: 999px; }
.coin-dot { width: 12px; height: 12px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #ffe37a, var(--gold-2)); }
.coin { width: 168px; height: 168px; margin: 26px auto 20px; border-radius: 50%; background: radial-gradient(circle at 38% 30%, #ffe680, var(--gold) 55%, var(--gold-2) 100%); box-shadow: 0 18px 44px rgba(243,194,32,.4), inset 0 -10px 24px rgba(180,120,0,.35), inset 0 8px 18px rgba(255,255,255,.5); display: flex; align-items: center; justify-content: center; position: relative; }
.coin::after { content: ""; position: absolute; inset: 12px; border-radius: 50%; border: 3px dashed rgba(255,255,255,.45); }
.coin-mark { width: 92px; height: auto; filter: brightness(0) invert(1); opacity: .55; }
.coin-name { color: #fff; font-size: 14px; }
.coin-name b { font-family: var(--f-pixel); font-size: 26px; display: block; letter-spacing: .04em; }
.coin-name span { color: #c9cfd2; }

.tok-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 40px; max-width: 980px; margin: 0 auto; }
.tok-grid { display: grid; grid-template-columns: 300px 1fr; gap: 44px; align-items: center; }
.tok-chart-wrap { position: relative; width: min(280px, 82vw); aspect-ratio: 1; height: auto; margin: 0 auto; }
.donut { width: 100%; height: 100%; border-radius: 50%; box-shadow: var(--shadow); }
.donut::after { content: ""; position: absolute; inset: 27%; background: #fff; border-radius: 50%; box-shadow: inset 0 2px 10px rgba(28,90,160,.08); }
.donut-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; pointer-events: none; }
.donut-total { font-family: var(--f-disp); font-size: 17px; font-weight: 800; color: var(--navy); }
.donut-total-label { font-size: 11px; color: var(--ink-3); letter-spacing: .04em; text-transform: uppercase; }
.tok-info h3 { font-family: var(--f-disp); font-size: 22px; color: var(--navy); margin-bottom: 16px; }
.info-list { list-style: none; margin-bottom: 18px; }
.info-list li { display: flex; align-items: baseline; gap: 10px; font-size: 14.5px; padding: 5px 0; border-bottom: 1px dashed var(--line); }
.info-list li span { color: var(--ink-2); min-width: 118px; }
.info-list li span::before { content: "· "; }
.info-list li b { color: var(--navy); }
.legend-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; }
.legend-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.legend-dot { width: 12px; height: 12px; border-radius: 3px; flex: none; }
.legend-name { color: var(--ink); font-weight: 500; }
.legend-pct { margin-left: auto; font-family: var(--f-disp); font-weight: 700; color: var(--navy); }
.tok-vesting { font-size: 12.5px; color: var(--ink-3); margin-top: 22px; text-align: center; }

/* ---------- Roadmap ---------- */
.timeline { list-style: none; display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.tl-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden; }
.tl-item::before { content: ""; position: absolute; top: 0; left: 26px; width: 42px; height: 5px; border-radius: 0 0 5px 5px; background: var(--teal); }
.tl-date { display: inline-block; font-family: var(--f-disp); font-weight: 800; color: var(--teal-dark); font-size: 15px; margin-bottom: 8px; }
.tl-item h4 { font-size: 16px; margin-bottom: 6px; }
.tl-item p { font-size: 14px; color: var(--ink-2); }
.tl-hi { background: linear-gradient(135deg, #fff, #fff7e6); border-color: var(--gold); }
.tl-hi::before { background: linear-gradient(135deg, var(--gold), var(--gold-2)); }
.tl-hi .tl-date { color: var(--gold-2); }

/* ---------- Contact (on teal) ---------- */
.sec-contact { padding-bottom: 0; }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.05fr; gap: 44px; align-items: start; }
.contact-copy .sec-en { text-align: left; }
.contact-copy .sec-jp { text-align: left; }
.on-teal-body { color: #f0fafb; font-size: 16px; margin: 12px 0 20px; }
.contact-points { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.contact-points li { position: relative; padding-left: 30px; font-size: 15px; color: #fff; }
.contact-points li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; background: #fff; color: var(--teal-dark); border-radius: 50%; font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.contact-form { background: #fff; border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--f-round); font-size: 13.5px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.field input, .field select, .field textarea { width: 100%; font-family: var(--f-body); font-size: 15px; color: var(--ink); background: var(--teal-soft); border: 2px solid transparent; border-radius: 12px; padding: 12px 14px; transition: border-color .2s ease, background .2s ease; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); background: #fff; }
.field textarea { resize: vertical; }
.form-note { font-size: 12px; color: var(--ink-3); margin-top: 12px; text-align: center; }
.hp-field { position: absolute; left: -9999px; }

/* ---------- Activity grid (How to Play) ---------- */
.activity-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-bottom: 30px; }
.activity { background: #fff; border-radius: var(--radius); padding: 18px 12px 16px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.activity:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.activity img { width: 100%; max-width: 132px; height: 118px; object-fit: contain; margin: 0 auto 8px; }
.activity h4 { font-family: var(--f-round); font-size: 15px; color: var(--ink); }

/* ---------- People row (About) ---------- */
.people-row { display: flex; justify-content: center; align-items: flex-end; gap: 24px; margin-top: 40px; flex-wrap: wrap; }
.people-row img { width: min(240px, 30%); height: auto; }

/* ---------- City skyline band (Contact -> Footer) ---------- */
.city-band { margin-top: 46px; line-height: 0; }
.city-band img { width: 100%; height: auto; display: block; }

/* ---------- Footer ---------- */
.site-footer { background: #2a2f33; color: #b7c0c6; padding: 46px 0 30px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo { height: 30px; width: auto; filter: brightness(0) invert(1); opacity: .95; }
.footer-tag { font-family: var(--f-round); font-size: 14px; margin-top: 8px; color: #93a0a7; }
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-nav a { color: #b7c0c6; font-family: var(--f-round); font-size: 14px; font-weight: 500; }
.footer-nav a:hover { color: #fff; }
.disclaimer { font-size: 11.5px; color: #7a858c; margin-top: 22px; line-height: 1.7; }
.copyright { font-size: 12px; color: #93a0a7; margin-top: 14px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .main-nav.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 16px 24px; gap: 6px; box-shadow: var(--shadow); margin: 0; }
  .main-nav.open a { padding: 11px 0; border-bottom: 1px solid var(--line); }
  .nav-burger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .store-btns, .hero-cta { justify-content: center; }
  .hero-visual { order: -1; min-height: 210px; }
  .hero-logo { width: 190px; }
  .glow-ring { width: 230px; height: 230px; }

  .cards-3, .cards-4 { grid-template-columns: 1fr 1fr; }
  .tok-grid { grid-template-columns: 1fr; gap: 30px; }
  .tok-card { padding: 30px 24px; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-copy .sec-en, .contact-copy .sec-jp { text-align: center; }
}

@media (max-width: 620px) {
  .container { padding: 0 18px; }
  .section { padding-top: 58px; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .cards-3, .cards-4, .issue-grid { grid-template-columns: 1fr; }
  .activity-grid { grid-template-columns: 1fr 1fr; }
  .market-grid { grid-template-columns: 1fr; }
  .market-x { transform: rotate(90deg); margin: -6px auto; }
  .timeline { grid-template-columns: 1fr; }
  .flow { flex-direction: column; align-items: stretch; gap: 8px; }
  .flow-step { max-width: none; width: 100%; }
  .flow-arrow { transform: rotate(90deg); align-self: center; }
  .legend-list { grid-template-columns: 1fr; }
  .wave svg { height: 46px; }
  .hero-cta { padding-bottom: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo, .glow-ring { animation: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
