/* ════════════════════════════════════════════════════
   MIDEN HANDBOOK — main.css
   Base, layout, nav, hero, pillars, chapters, team,
   ecosystem, CTA, footer, animations, responsive
═══════════════════════════════════════════════════ */

/* ── TOKENS ────────────────────────────────────────── */
:root {
  --bg:           #faf8f5;
  --bg-raised:    #f3efe8;
  --border:       rgba(130,95,55,0.13);
  --border-hover: rgba(196,82,10,0.32);
  --border-mid:   rgba(130,95,55,0.20);
  --ink:          #18120a;
  --t2:           rgba(24,18,10,0.55);
  --t3:           rgba(24,18,10,0.35);
  --t4:           rgba(24,18,10,0.22);
  --orange:       #c4520a;
  --ob:           #e06820;
  --op:           rgba(196,82,10,0.08);
  --og:           rgba(196,82,10,0.11);
  --brown:        #8b5e3c;
  --bl:           #b8946a;
  --bp:           rgba(139,94,60,0.07);
}

/* ── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Geist', system-ui, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50%  -5%, rgba(196,82,10,.055) 0%, transparent 60%),
    radial-gradient(ellipse 50% 35% at 95% 105%, rgba(184,148,106,.06) 0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 0%   75%, rgba(196,82,10,.03) 0%, transparent 55%);
}

body::after {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: .65;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='280' height='280' filter='url(%23n)' opacity='.038'/%3E%3C/svg%3E");
}

/* ── NAV ────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 62px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 44px;
  background: rgba(250,248,245,.9);
  backdrop-filter: blur(28px) saturate(1.3);
  -webkit-backdrop-filter: blur(28px) saturate(1.3);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-name { font-size: 15px; font-weight: 700; color: var(--ink); letter-spacing: -.4px; }
.nav-logo-sub  { font-family: 'Geist Mono', monospace; font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--t3); display: block; }
.nav-links { display: flex; gap: 2px; position: absolute; left: 50%; transform: translateX(-50%); }
.nav-link {
  font-size: 13.5px; color: var(--t2); text-decoration: none;
  padding: 5px 12px; border-radius: 6px; min-height: 44px;
  display: inline-flex; align-items: center;
  transition: color .18s, background .18s;
}
.nav-link:hover { color: var(--ink); background: var(--bp); }
.nav-cta {
  font-size: 13px; font-weight: 600; color: #fff; background: var(--orange);
  text-decoration: none; padding: 7px 18px; border-radius: 100px;
  box-shadow: 0 2px 10px rgba(196,82,10,.22);
  transition: opacity .18s, transform .18s, box-shadow .18s;
  -webkit-appearance: none;
}
.nav-cta:hover { opacity: .9; transform: translateY(-1px); box-shadow: 0 5px 18px rgba(196,82,10,.32); }

/* ── HERO ───────────────────────────────────────────── */
.hero {
  position: relative; z-index: 1; min-height: 100vh;
  min-height: -webkit-fill-available;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 120px 40px 80px; overflow: hidden;
}
.hero-wm {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none; opacity: .025; z-index: 0;
}
.eyebrow {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 30px;
  opacity: 0; animation: fadeUp .9s .1s cubic-bezier(.16,1,.3,1) forwards;
}
.eyebrow-dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--orange);
  box-shadow: 0 0 7px rgba(196,82,10,.55);
  animation: breathe 3s ease-in-out infinite;
}
@keyframes breathe { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.3;transform:scale(.75)} }
.eyebrow-txt { font-family: 'Geist Mono', monospace; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--t3); }
.hero h1 {
  position: relative; z-index: 1;
  font-size: clamp(56px, 8.5vw, 114px); font-weight: 800; line-height: .93;
  letter-spacing: -4px; color: var(--ink); max-width: 920px; margin-bottom: 26px;
  opacity: 0; animation: fadeUp 1s .2s cubic-bezier(.16,1,.3,1) forwards;
}
.grad {
  background: linear-gradient(95deg, var(--orange), var(--ob) 50%, var(--brown));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; color: transparent;
}
.hero-sub {
  position: relative; z-index: 1;
  font-size: 17px; color: var(--t2); line-height: 1.65;
  max-width: 460px; margin-bottom: 44px; letter-spacing: -.2px;
  opacity: 0; animation: fadeUp 1s .32s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-btns {
  position: relative; z-index: 1;
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
  opacity: 0; animation: fadeUp 1s .44s cubic-bezier(.16,1,.3,1) forwards;
}
.btn-p {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13.5px; font-weight: 600; color: #fff; background: var(--orange);
  text-decoration: none; padding: 11px 24px; border-radius: 100px;
  box-shadow: 0 3px 14px rgba(196,82,10,.25);
  transition: opacity .2s, transform .2s, box-shadow .2s;
  -webkit-appearance: none; appearance: none;
}
.btn-p:hover { opacity: .9; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,82,10,.35); }
.btn-g {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13.5px; font-weight: 500; color: var(--t2);
  border: 1px solid var(--border-mid); background: transparent;
  text-decoration: none; padding: 11px 24px; border-radius: 100px;
  transition: border-color .2s, color .2s, background .2s, transform .2s;
  -webkit-appearance: none; appearance: none;
}
.btn-g:hover { border-color: var(--border-hover); color: var(--orange); background: var(--op); transform: translateY(-2px); }
.scroll-hint { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); opacity: 0; animation: fadeIn 1.2s 1.1s forwards; }
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(196,82,10,.4), transparent);
  animation: spulse 2.6s ease-in-out infinite;
}
@keyframes spulse { 0%,100%{opacity:.45;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(.5)} }

/* ── LAYOUT UTILS ───────────────────────────────────── */
.wrap { position: relative; z-index: 1; max-width: 1080px; margin: 0 auto; padding: 0 44px 80px; }
.slabel { font-family: 'Geist Mono', monospace; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); display: block; margin-bottom: 18px; opacity: .85; }
.sh2 { font-size: clamp(30px,4vw,52px); font-weight: 700; letter-spacing: -2px; line-height: 1; color: var(--ink); margin-bottom: 14px; }
.ssub { font-size: 15px; color: var(--t2); max-width: 420px; line-height: 1.65; margin-bottom: 52px; letter-spacing: -.1px; }
.divider { display: block; position: relative; z-index: 1; border: none; border-top: 1px solid var(--border); max-width: 1080px; margin: 0 auto 60px; }

/* ── PILLARS ─────────────────────────────────────────── */
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.pillar { background: var(--bg); padding: 32px 28px 36px; transition: background .22s; }
.pillar:hover { background: var(--bg-raised); }
.pillar-n { font-family: 'Geist Mono', monospace; font-size: 10px; letter-spacing: 1px; color: var(--orange); opacity: .65; margin-bottom: 18px; }
.pillar-t { font-size: 16px; font-weight: 600; letter-spacing: -.4px; color: var(--ink); margin-bottom: 10px; }
.pillar-d { font-size: 13.5px; color: var(--t2); line-height: 1.65; }

/* ── CHAPTERS ────────────────────────────────────────── */
.ch-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.ch-card {
  position: relative; background: var(--bg); padding: 28px 26px 30px;
  text-decoration: none; color: inherit; cursor: pointer;
  display: flex; flex-direction: column; gap: 10px;
  overflow: hidden; min-height: 200px;
  transition: background .25s cubic-bezier(.16,1,.3,1);
  border: none;
}
.ch-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 100% 70% at 50% -10%, var(--og), transparent 65%);
  opacity: 0; transition: opacity .3s; pointer-events: none;
}
.ch-card:hover { background: var(--bg-raised); }
.ch-card:hover::after { opacity: 1; }
.ch-featured { grid-column: span 3; flex-direction: row; align-items: flex-start; justify-content: space-between; padding: 36px; min-height: 150px; }
.ch-fl { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.ch-deco { width: 180px; flex-shrink: 0; display: flex; flex-direction: column; justify-content: center; align-items: flex-end; gap: 7px; opacity: .18; transition: opacity .3s; }
.ch-card:hover .ch-deco { opacity: .42; }
.dbar { height: 1px; border-radius: 1px; background: linear-gradient(90deg, var(--orange), var(--bl)); }
.cn { font-family: 'Geist Mono', monospace; font-size: 10px; letter-spacing: 1px; color: var(--t4); }
.ctag { display: inline-flex; align-items: center; width: fit-content; font-family: 'Geist Mono', monospace; font-size: 10px; letter-spacing: .8px; text-transform: uppercase; padding: 2px 8px; border-radius: 4px; border: 1px solid rgba(196,82,10,.2); color: var(--orange); background: var(--op); }
.ct { font-size: 17px; font-weight: 600; letter-spacing: -.5px; color: var(--ink); line-height: 1.2; }
.ch-featured .ct { font-size: 22px; letter-spacing: -.8px; }
.cd { font-size: 13px; line-height: 1.6; color: var(--t2); }
.carr { margin-top: auto; display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--t4); transition: color .2s, gap .2s; }
.ch-card:hover .carr { color: var(--orange); gap: 9px; }

/* ── TEAM ────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.team-card {
  border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; background: var(--bg);
  opacity: 0; transform: translateY(28px) scale(.97);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1), border-color .25s, box-shadow .3s;
}
.team-card.in { opacity: 1; transform: translateY(0) scale(1); }
.team-card.in:hover { border-color: var(--border-hover); box-shadow: 0 14px 40px rgba(196,82,10,.11); transform: translateY(-5px) scale(1); }
.td1{transition-delay:.05s} .td2{transition-delay:.16s} .td3{transition-delay:.27s}
.t-avatar { position: relative; height: 200px; overflow: hidden; }
.t-avatar img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.16,1,.3,1); }
.team-card:hover .t-avatar img { transform: scale(1.05); }
.t-avatar-svg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; transition: transform .5s cubic-bezier(.16,1,.3,1); }
.team-card:hover .t-avatar-svg { transform: scale(1.05); }
.t-fade { position: absolute; bottom: 0; left: 0; right: 0; height: 90px; background: linear-gradient(to top, var(--bg), transparent); pointer-events: none; }
.t-body { padding: 20px 24px 26px; }
.t-role { font-family: 'Geist Mono', monospace; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 5px; opacity: .8; }
.t-name { font-size: 20px; font-weight: 700; letter-spacing: -.5px; color: var(--ink); margin-bottom: 10px; }
.t-bio { font-size: 13px; line-height: 1.68; color: var(--t2); margin-bottom: 18px; }
.t-handle { display: inline-flex; align-items: center; gap: 7px; font-family: 'Geist Mono', monospace; font-size: 12px; color: var(--t3); text-decoration: none; padding: 6px 12px; border-radius: 8px; border: 1px solid var(--border); transition: color .18s, border-color .18s, background .18s; }
.t-handle:hover { color: var(--orange); border-color: var(--border-hover); background: var(--op); }
.xi { width: 13px; height: 13px; flex-shrink: 0; opacity: .7; }

/* ── ECOSYSTEM ───────────────────────────────────────── */
.eco-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.eco-card { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; background: var(--bg); text-decoration: none; color: inherit; display: flex; flex-direction: column; opacity: 0; transform: translateY(20px) scale(.97); }
.eco-card.in { opacity: 1; transform: translateY(0) scale(1); transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1), border-color .25s, box-shadow .3s; }
.eco-card.in:hover { border-color: var(--border-hover); box-shadow: 0 8px 28px rgba(196,82,10,.11); transform: translateY(-4px); }
.e1{transition-delay:.04s} .e2{transition-delay:.10s} .e3{transition-delay:.16s} .e4{transition-delay:.22s}
.e5{transition-delay:.28s} .e6{transition-delay:.34s} .e7{transition-delay:.40s} .e8{transition-delay:.46s}
.e9{transition-delay:.52s} .e10{transition-delay:.58s}
.eco-vis { height: 80px; position: relative; overflow: hidden; transition: transform .4s cubic-bezier(.16,1,.3,1); }
.eco-card:hover .eco-vis { transform: scale(1.06); }
.eco-logo-wrap { position: absolute; bottom: 10px; left: 12px; display: flex; align-items: center; gap: 7px; }
.eco-fav { width: 26px; height: 26px; border-radius: 6px; object-fit: contain; background: #fff; box-shadow: 0 1px 6px rgba(0,0,0,.12); }
.eco-fav-fallback { width: 26px; height: 26px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: #fff; box-shadow: 0 1px 6px rgba(0,0,0,.12); flex-shrink: 0; }
.eco-body { padding: 12px 14px 14px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.eco-name { font-size: 14px; font-weight: 600; letter-spacing: -.3px; color: var(--ink); }
.eco-desc { font-size: 12px; color: var(--t3); line-height: 1.5; }
.eco-foot { padding: 0 14px 12px; display: flex; align-items: center; gap: 4px; font-size: 11px; color: var(--t4); transition: color .2s, gap .2s; }
.eco-card:hover .eco-foot { color: var(--orange); gap: 7px; }

/* ── CTA ─────────────────────────────────────────────── */
.cta-box { position: relative; border: 1px solid var(--border); border-radius: 16px; padding: 84px 48px; text-align: center; overflow: hidden; background: rgba(174,134,90,.05); }
.cta-box::before { content: ''; position: absolute; top: -1px; left: 5%; right: 5%; height: 1px; background: linear-gradient(90deg, transparent, rgba(196,82,10,.38), rgba(224,104,32,.5), rgba(196,82,10,.38), transparent); }
.cta-box::after { content: ''; position: absolute; top: 0; left: 15%; right: 15%; height: 160px; background: radial-gradient(ellipse at top, rgba(196,82,10,.06), transparent 70%); pointer-events: none; }
.cta-wm { position: absolute; bottom: -20px; right: -20px; opacity: .04; pointer-events: none; }
.cta-lbl { font-family: 'Geist Mono', monospace; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 20px; opacity: .8; }
.cta-h2  { font-size: clamp(28px,4vw,52px); font-weight: 700; letter-spacing: -2px; color: var(--ink); margin-bottom: 14px; line-height: 1; }
.cta-sub { font-size: 15px; color: var(--t2); max-width: 380px; margin: 0 auto 40px; line-height: 1.6; }
.cta-btns { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────────── */
footer { position: relative; z-index: 1; border-top: 1px solid var(--border); padding: 36px 44px; max-width: 1080px; margin: 0 auto; }
.foot-top { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 28px; margin-bottom: 32px; }
.foot-brand { display: flex; flex-direction: column; gap: 8px; }
.foot-tag { font-size: 13px; color: var(--t3); max-width: 220px; line-height: 1.5; margin-top: 4px; }
.foot-cols { display: flex; gap: 48px; flex-wrap: wrap; }
.foot-col  { display: flex; flex-direction: column; gap: 8px; }
.foot-col-lbl { font-family: 'Geist Mono', monospace; font-size: 9.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--t4); margin-bottom: 6px; display: block; }
.foot-link { font-size: 13px; color: var(--t3); text-decoration: none; transition: color .18s; }
.foot-link:hover { color: var(--orange); }
.foot-btm { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 24px; border-top: 1px solid var(--border); }
.foot-copy   { font-size: 12px; color: var(--t4); }
.foot-credit { font-size: 12px; color: var(--t4); }
.foot-credit a { color: var(--t3); text-decoration: none; transition: color .18s; }
.foot-credit a:hover { color: var(--orange); }
.socials { display: flex; gap: 6px; }
.soc { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 7px; border: 1px solid var(--border); color: var(--t3); text-decoration: none; font-size: 12px; font-weight: 500; transition: color .18s, border-color .18s, background .18s; }
.soc:hover { color: var(--orange); border-color: var(--border-hover); background: var(--op); }

/* ── BUBBLES ─────────────────────────────────────────── */
.bubbles-container { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.bubble { position: absolute; border-radius: 50%; background: radial-gradient(circle at 30% 30%, rgba(196,82,10,0.12), rgba(196,82,10,0.04)); border: 1px solid rgba(196,82,10,0.15); backdrop-filter: blur(4px); animation: float-up linear infinite; opacity: 0; }
.bubble::before { content: ''; position: absolute; top: 10%; left: 10%; width: 40%; height: 40%; border-radius: 50%; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4), transparent); }
@keyframes float-up {
  0%   { transform: translateY(0) translateX(0) scale(0); opacity: 0; }
  10%  { opacity: 0.6; transform: translateY(-10vh) translateX(5px) scale(1); }
  50%  { opacity: 0.8; transform: translateY(-50vh) translateX(-10px) scale(1.1); }
  100% { transform: translateY(-100vh) translateX(15px) scale(0.8); opacity: 0; }
}
.bubble:nth-child(1)  { width:60px; height:60px; left:10%; animation-duration:15s; animation-delay:0s; }
.bubble:nth-child(2)  { width:40px; height:40px; left:25%; animation-duration:18s; animation-delay:2s; }
.bubble:nth-child(3)  { width:80px; height:80px; left:40%; animation-duration:20s; animation-delay:4s; }
.bubble:nth-child(4)  { width:50px; height:50px; left:60%; animation-duration:16s; animation-delay:1s; }
.bubble:nth-child(5)  { width:70px; height:70px; left:75%; animation-duration:22s; animation-delay:3s; }
.bubble:nth-child(6)  { width:45px; height:45px; left:90%; animation-duration:17s; animation-delay:5s; }
.bubble:nth-child(7)  { width:55px; height:55px; left:15%; animation-duration:19s; animation-delay:6s; }
.bubble:nth-child(8)  { width:65px; height:65px; left:50%; animation-duration:21s; animation-delay:2.5s; }
.bubble:nth-child(9)  { width:35px; height:35px; left:70%; animation-duration:14s; animation-delay:4.5s; }
.bubble:nth-child(10) { width:75px; height:75px; left:85%; animation-duration:23s; animation-delay:1.5s; }

/* ── ANIMATIONS ─────────────────────────────────────── */
@keyframes fadeUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.rv { opacity: 0; transform: translateY(18px); transition: opacity .85s cubic-bezier(.16,1,.3,1), transform .85s cubic-bezier(.16,1,.3,1); }
.rv.in { opacity: 1; transform: translateY(0); }
.d1{transition-delay:.05s} .d2{transition-delay:.13s} .d3{transition-delay:.21s} .d4{transition-delay:.29s}

/* ── SCROLL NAV BUTTONS ──────────────────────────────── */
#scroll-nav {
  position: fixed; right: 20px; bottom: 100px; z-index: 350;
  display: flex; flex-direction: column; gap: 6px;
}
.scroll-nav-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border-mid); background: var(--bg);
  color: var(--t3); cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: all .2s; opacity: 0; pointer-events: none;
  -webkit-appearance: none; appearance: none;
}
.scroll-nav-btn.visible { opacity: 1; pointer-events: auto; }
.scroll-nav-btn:hover { border-color: var(--border-hover); color: var(--orange); background: var(--op); transform: scale(1.08); }
.scroll-nav-btn svg { width: 14px; height: 14px; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 960px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero, .wrap { padding-left: 20px; padding-right: 20px; }
  .hero h1 { letter-spacing: -2.5px; }
  .pillars, .ch-grid, .team-grid { grid-template-columns: 1fr; }
  .ch-featured { grid-column: span 1; flex-direction: column; }
  .ch-deco { display: none; }
  .eco-grid { grid-template-columns: repeat(2,1fr); }
  .cta-box { padding: 52px 24px; }
  footer { padding: 28px 20px; }
  .divider { margin-left: 20px; margin-right: 20px; }
  .foot-cols { gap: 24px; }
  #scroll-nav { right: 12px; bottom: 90px; }
}

@media (max-width: 560px) {
  .eco-grid { grid-template-columns: 1fr; }
  .hero h1 { letter-spacing: -2px; font-size: clamp(44px,12vw,72px); }
  #progress-widget { display: none; }
}
