:root {
  --ink: #17352d;
  --muted: #64746e;
  --cream: #f7f4ea;
  --paper: #fffdf7;
  --green: #2f7655;
  --green-dark: #163c32;
  --lime: #aad35c;
  --orange: #ef7d32;
  --blue: #2d94b8;
  --yellow: #e9ad29;
  --line: #dce3d9;
  --shadow: 0 18px 60px rgba(25, 57, 45, .1);
  font-family: Inter, ui-rounded, "Avenir Next", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { max-width: 100%; scroll-behavior: smooth; }
body { max-width: 100%; margin: 0; overflow-x: clip; background: var(--paper); line-height: 1.55; }
a { color: inherit; }
img { max-width: 100%; display: block; }
.skip-link { position: fixed; top: -5rem; left: 1rem; z-index: 100; padding: .7rem 1rem; background: #fff; }
.skip-link:focus { top: 1rem; }

.site-header {
  height: 82px;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 clamp(1.25rem, 5vw, 5.5rem);
  border-bottom: 1px solid rgba(23, 53, 45, .1);
  background: rgba(255, 253, 247, .96);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
}
.brand { display: inline-flex; align-items: center; gap: .65rem; font-weight: 900; letter-spacing: .075em; text-decoration: none; line-height: .85; white-space: nowrap; }
.brand small { display: block; font-size: .62em; letter-spacing: .3em; text-align: center; margin-top: .38rem; }
.brand-pin { width: 42px; height: 47px; display: grid; place-items: center; background: var(--orange); color: white; font-size: 1.45rem; border-radius: 50% 50% 50% 8px; transform: rotate(-45deg); box-shadow: inset 0 0 0 4px rgba(255,255,255,.6); }
.brand-pin::first-letter { transform: rotate(45deg); }
.site-header nav { display: flex; gap: clamp(1rem, 2.4vw, 2.2rem); margin-left: auto; }
.site-header nav a { text-decoration: none; font-size: .88rem; font-weight: 700; color: #496058; }
.site-header nav a:hover { color: var(--green); }

.button {
  display: inline-flex;
  gap: .7rem;
  align-items: center;
  justify-content: center;
  padding: .92rem 1.35rem;
  color: #fff;
  background: var(--green);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(47, 118, 85, .18);
  transition: transform .18s, background .18s;
}
.button:hover { background: #245f45; transform: translateY(-2px); }
.button-small { padding: .68rem 1rem; font-size: .86rem; }
.button-light { color: var(--green-dark); background: #fff; box-shadow: none; }
.button-light:hover { background: #eff5e9; }
.text-link { font-weight: 800; text-underline-offset: 5px; }
.eyebrow { margin: 0 0 .8rem; color: var(--green); font-size: .74rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow.light { color: var(--lime); }

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, .83fr) minmax(440px, 1.17fr);
  align-items: center;
  background:
    radial-gradient(circle at 22% 85%, rgba(170,211,92,.13), transparent 25%),
    linear-gradient(115deg, #f9f7ef 0 50%, #deeee8 50%);
}
.hero-copy { position: relative; z-index: 2; min-width: 0; padding: 5rem 3rem 5rem clamp(1.5rem, 7vw, 7.5rem); max-width: 700px; }
.hero h1 { margin: 0; font-size: clamp(3.5rem, 6.5vw, 6.7rem); letter-spacing: -.065em; line-height: .94; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-lede { max-width: 570px; margin: 2rem 0; color: #52665f; font-size: clamp(1rem, 1.35vw, 1.25rem); }
.hero-actions { display: flex; align-items: center; gap: 1.6rem; }
.hero-notes { display: flex; flex-wrap: wrap; gap: 1.6rem; margin: 2.1rem 0 0; padding: 0; list-style: none; color: #65766f; font-size: .8rem; font-weight: 700; }
.hero-notes li::before { content: "✓"; color: var(--green); margin-right: .45rem; }
.hero-art {
  position: relative;
  z-index: 0;
  isolation: isolate;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(3rem, 7vh, 4.5rem) clamp(2rem, 5vw, 5.5rem) clamp(3rem, 7vh, 4.5rem) clamp(1rem, 2vw, 2.5rem);
}
.hero-art::before,
.hero-art::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
}
.hero-art::before {
  width: clamp(320px, 38vw, 640px);
  aspect-ratio: 1.18;
  right: clamp(-8rem, -6vw, -3rem);
  top: clamp(1.5rem, 8%, 5rem);
  background: rgba(108, 168, 144, .18);
  transform: rotate(-8deg);
}
.hero-art::after {
  width: clamp(180px, 20vw, 340px);
  aspect-ratio: 1;
  left: clamp(-7rem, -5vw, -2rem);
  bottom: clamp(-5rem, -4vw, -2rem);
  background: rgba(170, 211, 92, .16);
}
.hero-visual {
  position: relative;
  z-index: 2;
  width: min(42vw, 680px);
  max-width: 100%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: clamp(16px, 2vw, 28px);
  box-shadow: var(--shadow);
}
.hero-stamp { position: absolute; z-index: 3; left: clamp(.75rem, 4%, 3rem); bottom: clamp(2.5rem, 10%, 5.5rem); width: clamp(84px, 7vw, 102px); aspect-ratio: 1; display: grid; place-content: center; text-align: center; color: #fff; background: var(--orange); border: 6px solid var(--paper); border-radius: 50%; transform: rotate(-8deg); box-shadow: 0 10px 30px rgba(40,40,20,.2); }
.hero-stamp strong { font-size: 1.3rem; letter-spacing: .12em; }
.hero-stamp span { font-size: .64rem; }

section:not(.hero):not(.cta-section) { padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 7vw, 7.5rem); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 2rem; max-width: 1400px; margin: 0 auto 2.7rem; }
.section-heading h2, .move-intro h2, .roadmap-section h2, .cta-section h2 { margin: 0; font-size: clamp(2rem, 4vw, 4rem); line-height: 1.03; letter-spacing: -.045em; }
.section-heading .section-intro { max-width: 500px; color: var(--muted); }
.updated { color: var(--muted); font-size: .82rem; white-space: nowrap; }
.pulse { display: inline-block; width: 8px; height: 8px; margin-right: .5rem; border-radius: 50%; background: #4aae6e; box-shadow: 0 0 0 5px rgba(74,174,110,.13); }
.notice { max-width: 1400px; margin: -1rem auto 2rem; padding: .9rem 1rem; border: 1px solid #ead6a2; background: #fff9e8; border-radius: 8px; }

.live-section { background: var(--paper); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; max-width: 1400px; margin: auto; }
.stat-card { min-height: 260px; padding: 1.6rem; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 8px 30px rgba(30,60,45,.04); }
.stat-card.featured { background: #edf5e8; border-color: #d4e5c6; }
.stat-icon { width: 39px; height: 39px; display: grid; place-items: center; margin-bottom: 2.5rem; border-radius: 10px; color: #fff; }
.stat-icon.green { background: var(--green); }
.stat-icon.orange { background: var(--orange); }
.stat-icon.blue { background: var(--blue); }
.stat-icon.yellow { background: var(--yellow); }
.stat-card > strong { display: block; font-size: clamp(2.35rem, 4vw, 4rem); line-height: 1; letter-spacing: -.055em; }
.stat-card h3 { margin: .7rem 0 .25rem; font-size: .95rem; }
.stat-card p { margin: 0; color: var(--muted); font-size: .8rem; }
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1400px; margin: 1rem auto 0; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.stat-strip div { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 1.2rem; background: #faf9f4; border-right: 1px solid var(--line); }
.stat-strip div:last-child { border: 0; }
.stat-strip span { color: var(--muted); font-size: .78rem; }

.economy-section { background: #f3efe4; }
.money-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; max-width: 1400px; margin: auto; }
.money-card { padding: 1.6rem; min-height: 180px; display: flex; flex-direction: column; justify-content: space-between; border-radius: 12px; border: 1px solid #ded9cb; background: #fffdf8; }
.money-card.dark { color: #fff; background: var(--green-dark); border-color: var(--green-dark); }
.money-card.accent { background: #e9f2dc; border-color: #cfdfb8; }
.money-card p, .money-card span { margin: 0; font-size: .77rem; color: var(--muted); }
.money-card.dark p, .money-card.dark span { color: #bfd4cb; }
.money-card strong { font-size: clamp(1.5rem, 2.3vw, 2.3rem); letter-spacing: -.04em; }
.detail-grid { max-width: 1400px; display: grid; grid-template-columns: repeat(3, 1fr); margin: 1.8rem auto 0; }
.detail-grid div { padding: 1rem 1.1rem; border-right: 1px solid #d6d0c1; border-bottom: 1px solid #d6d0c1; }
.detail-grid div:nth-child(3n) { border-right: 0; }
.detail-grid div:nth-child(n+7) { border-bottom: 0; }
.detail-grid strong, .detail-grid span { display: block; }
.detail-grid strong { font-size: 1.1rem; }
.detail-grid span { color: var(--muted); font-size: .72rem; }
.fine-print { max-width: 900px; margin: 2rem auto 0; color: #7a7c73; font-size: .72rem; text-align: center; }

.move-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(3rem, 7vw, 8rem); color: #fff; background: var(--green-dark); }
.move-intro { align-self: center; max-width: 480px; }
.move-intro p:not(.eyebrow) { margin: 1.5rem 0 2rem; color: #bcd0c7; }
.move-dashboard { min-width: 0; }
.move-totals { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: .75rem; }
.move-totals article { display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.3rem; color: var(--ink); background: #fff; border-radius: 10px; }
.move-totals article > span { width: 38px; height: 38px; display: grid; place-items: center; background: #edf4e8; border-radius: 50%; }
.move-totals small, .move-totals strong { display: block; }
.move-totals small { color: var(--muted); font-size: .7rem; }
.move-totals strong { font-size: 1.35rem; }
.leaderboard { padding: 1.3rem; color: var(--ink); background: #fff; border-radius: 12px; }
.leaderboard-heading { display: flex; justify-content: space-between; align-items: center; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.leaderboard-heading > div { display: flex; align-items: center; gap: .65rem; }
.leaderboard-heading h3 { margin: 0; }
.leaderboard-heading small { color: var(--muted); }
.trophy { width: 32px; height: 32px; display: grid; place-items: center; color: #8d6a09; background: #f8e5a8; border-radius: 50%; }
.leaderboard ol { margin: 0; padding: 0; list-style: none; }
.leaderboard li { display: grid; grid-template-columns: 2rem minmax(100px, 1fr) minmax(190px, 1.2fr) auto; gap: .8rem; align-items: center; padding: .8rem .3rem; border-bottom: 1px solid #edf0ea; font-size: .8rem; }
.rank { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: #eff3eb; font-weight: 900; }
.mover-name { font-weight: 800; }
.mode-split, .privacy-note { color: var(--muted); }
.leaderboard-empty { padding: 2.5rem 1rem; text-align: center; background: #f7f8f3; border-radius: 8px; margin-top: 1rem; }
.leaderboard-empty p { color: var(--muted); margin: .4rem 0 0; }
.privacy-note { margin: 1rem 0 0; font-size: .67rem; text-align: center; }

.features-section { background: var(--paper); }
.section-heading.centered { display: block; max-width: 700px; text-align: center; }
.section-heading.centered > p:last-child { color: var(--muted); }
.feature-grid { max-width: 1200px; margin: auto; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.feature-grid article { min-height: 235px; padding: 1.8rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature-grid article:nth-child(3n) { border-right: 0; }
.feature-grid article:nth-child(n+4) { border-bottom: 0; }
.feature-grid article > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 10px; color: var(--green); background: #edf4e8; font-weight: 900; }
.feature-grid h3 { margin: 1.5rem 0 .5rem; }
.feature-grid p { margin: 0; color: var(--muted); font-size: .85rem; }

.roadmap-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 7vw; align-items: center; background: #eef3eb; }
.roadmap-section > div > p:last-child { color: var(--muted); max-width: 520px; }
.roadmap { margin: 0; padding: 0; list-style: none; border-left: 2px solid #cbd6ca; }
.roadmap li { display: flex; align-items: center; gap: 1.2rem; padding: .9rem 0 .9rem 1.5rem; position: relative; }
.roadmap li::before { content: ""; position: absolute; left: -7px; width: 12px; height: 12px; border-radius: 50%; background: #c0cbc0; border: 3px solid #eef3eb; }
.roadmap li.done::before { background: var(--green); }
.roadmap li.current::before { background: var(--orange); box-shadow: 0 0 0 5px rgba(239,125,50,.12); }
.roadmap li > span { color: #91a096; font-size: .7rem; font-weight: 900; }
.roadmap strong, .roadmap small { display: block; }
.roadmap small { color: var(--muted); }

.download-section { background: #f3efe4; }
.download-section .section-heading { margin-bottom: 3rem; }
.download-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 2vw, 1.5rem); max-width: 1300px; margin: auto; }
.download-card { min-width: 0; display: flex; flex-direction: column; padding: clamp(1.5rem, 3vw, 2.4rem); background: #fffdf8; border: 1px solid #ded9cb; border-radius: 18px; box-shadow: 0 12px 35px rgba(30,60,45,.06); }
.download-card.android { background: #edf5e8; border-color: #d4e5c6; }
.download-card.move { background: #eaf4f7; border-color: #cee2e8; }
.download-card-heading { display: flex; align-items: center; gap: 1rem; }
.download-card-heading p { margin: 0 0 .15rem; color: var(--muted); font-size: .72rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.download-card h3 { margin: 0; font-size: clamp(1.25rem, 2vw, 1.65rem); letter-spacing: -.025em; }
.download-platform-icon { flex: 0 0 auto; width: 54px; height: 54px; display: grid; place-items: center; color: #fff; border-radius: 14px; font-size: 2rem; font-weight: 900; line-height: 1; }
.download-platform-icon.windows { background: var(--blue); }
.download-platform-icon.android { position: relative; background: var(--green); font-size: 1.2rem; }
.download-platform-icon.move { background: var(--orange); }
.download-platform-icon.android::before,
.download-platform-icon.android::after { content: ""; position: absolute; top: 12px; width: 2px; height: 10px; background: #fff; border-radius: 2px; }
.download-platform-icon.android::before { left: 18px; transform: rotate(-30deg); }
.download-platform-icon.android::after { right: 18px; transform: rotate(30deg); }
.download-description { flex: 1; margin: 1.5rem 0; color: var(--muted); }
.download-details { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0 0 1.4rem; padding: 0; list-style: none; }
.download-details li { padding: .4rem .65rem; color: #52665f; background: #f2f3ed; border-radius: 999px; font-size: .72rem; font-weight: 800; }
.download-card.android .download-details li { background: #dfead8; }
.download-card.move .download-details li { background: #dbecef; }
.download-button { align-self: flex-start; }
.button-android { background: var(--orange); box-shadow: 0 10px 24px rgba(239,125,50,.18); }
.button-android:hover { background: #d96b24; }
.button-move { background: var(--blue); box-shadow: 0 10px 24px rgba(45,148,184,.18); }
.button-move:hover { background: #247d9d; }
.download-note { margin: 1rem 0 0; color: #7a7c73; font-size: .7rem; }

.cta-section { padding: clamp(5rem, 9vw, 9rem) 1.5rem; text-align: center; color: #fff; background: var(--green); }
.cta-section p:not(.eyebrow) { color: #d4e4db; margin: 1rem auto 2rem; max-width: 570px; }
footer { min-height: 140px; display: flex; align-items: center; gap: 2rem; padding: 2rem clamp(1.25rem, 7vw, 7.5rem); color: #aebfb7; background: #102c25; font-size: .75rem; }
.footer-brand { color: #fff; }
footer p { margin: auto; }
footer > div:last-child { display: flex; gap: 1.3rem; }

@media (max-width: 1050px) {
  .site-header nav { display: none; }
  .site-header .button { margin-left: auto; }
  .hero { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: clamp(3.4rem, 8vw, 5.3rem); }
  .hero-copy { padding-left: 2rem; }
  .hero-art { min-height: 520px; padding-right: 2rem; }
  .hero-visual { width: min(42vw, 560px); }
  .stat-grid, .money-grid { grid-template-columns: 1fr 1fr; }
  .download-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .move-section { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .hero {
    display: flex;
    flex-direction: column;
    background: linear-gradient(#f9f7ef 0 52%, #deeee8 52%);
  }
  .hero-copy { width: 100%; max-width: 700px; padding: 4rem clamp(1.25rem, 4vw, 2rem) 2.5rem; }
  .hero-art { min-height: auto; padding: 1.5rem 1rem 4rem; }
  .hero-visual { width: min(100%, 560px); aspect-ratio: 1; }
  .hero-art::before { width: min(90vw, 520px); right: -25%; top: 3%; }
  .hero-art::after { width: min(48vw, 240px); left: -20%; bottom: -8%; }
  .hero-stamp { right: 2%; bottom: 7%; left: auto; width: 84px; }
}

@media (max-width: 720px) {
  .site-header { height: 68px; padding: 0 1rem; }
  .brand { font-size: .78rem; }
  .brand-pin { width: 34px; height: 38px; }
  .button-small { padding: .55rem .7rem; }
  .hero-copy { padding-right: 1.25rem; padding-left: 1.25rem; }
  .hero h1 { font-size: clamp(3.1rem, 16vw, 4.5rem); }
  section:not(.hero):not(.cta-section) { padding: 4.5rem 1rem; }
  .section-heading { display: block; }
  .section-heading .updated { margin-top: 1rem; }
  .stat-grid, .money-grid, .feature-grid, .download-grid { grid-template-columns: 1fr; }
  .stat-card { min-height: 220px; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .stat-strip div:nth-child(2) { border-right: 0; }
  .stat-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .detail-grid { grid-template-columns: 1fr 1fr; }
  .detail-grid div, .detail-grid div:nth-child(3n), .detail-grid div:nth-child(n+7) { border-right: 1px solid #d6d0c1; border-bottom: 1px solid #d6d0c1; }
  .detail-grid div:nth-child(even) { border-right: 0; }
  .detail-grid div:last-child { border-bottom: 0; }
  .move-totals { grid-template-columns: 1fr; }
  .leaderboard li { grid-template-columns: 2rem 1fr auto; }
  .mode-split { display: none; }
  .feature-grid article, .feature-grid article:nth-child(3n), .feature-grid article:nth-child(n+4) { border: 0; border-bottom: 1px solid var(--line); }
  .feature-grid article:last-child { border: 0; }
  .roadmap-section { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; }
  footer p { margin: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
