:root {
  --ink: #07070a;
  --surface: #101015;
  --surface-high: #17171e;
  --surface-warm: #17130f;
  --line: #2d2c35;
  --line-soft: rgba(255, 255, 255, 0.085);
  --text: #f4f2ef;
  --muted: #aaa7b0;
  --muted-deep: #77747d;
  --bronze: #b7844b;
  --bronze-bright: #e2b374;
  --bronze-pale: #f2d2a2;
  --violet: #9f83d8;
  --green: #88d8aa;
  --max-width: 1200px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 76% 5%, rgba(118, 91, 170, 0.115), transparent 29rem),
    radial-gradient(circle at 16% 25%, rgba(183, 132, 75, 0.07), transparent 31rem),
    var(--ink);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.32), transparent 75%);
  content: "";
  pointer-events: none;
}

a { color: inherit; }
button, input, select, textarea { max-width: 100%; font: inherit; }
button, a, input, select, textarea { touch-action: manipulation; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: .72rem 1rem;
  transform: translateY(-200%);
  border-radius: .4rem;
  background: #fff;
  color: #000;
}
.skip-link:focus { transform: translateY(0); }

.site-header,
main,
.site-footer {
  width: min(calc(100% - 3rem), var(--max-width));
  margin-inline: auto;
}

.site-header {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line-soft);
}

.wordmark,
.footer-brand {
  display: flex;
  align-items: center;
  gap: .85rem;
  text-decoration: none;
}

.wordmark img,
.footer-brand img {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow: 0 0 1.4rem rgba(255,255,255,.08);
}

.wordmark-copy,
.footer-brand div { display: flex; flex-direction: column; }
.wordmark-copy strong,
.footer-brand strong { font-size: .78rem; font-weight: 850; letter-spacing: .14em; line-height: 1.2; text-transform: uppercase; }
.wordmark-copy small,
.footer-brand span { margin-top: .2rem; color: var(--muted-deep); font-size: .56rem; letter-spacing: .13em; text-transform: uppercase; }

nav { display: flex; align-items: center; gap: 1.65rem; }
nav a { color: var(--muted); font-size: .82rem; font-weight: 700; text-decoration: none; }
nav a:hover, nav a:focus-visible { color: var(--text); }
nav .nav-cta { padding: .65rem 1rem; border: 1px solid #4b4752; border-radius: 999px; color: var(--text); }

.section { padding: 8rem 0; scroll-margin-top: 1rem; }

.hero {
  display: grid;
  min-height: 770px;
  align-items: center;
  gap: clamp(3rem, 7vw, 6rem);
  grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
  padding: 5rem 0 6rem;
}

.hero-copy { position: relative; z-index: 2; }
.eyebrow { margin: 0 0 1.2rem; color: var(--bronze-bright); font-size: .69rem; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
.hero .eyebrow { display: flex; align-items: center; gap: .55rem; }
.hero .eyebrow span { width: .42rem; height: .42rem; border-radius: 50%; background: var(--green); box-shadow: 0 0 .8rem rgba(136,216,170,.62); }

h1, h2, h3, p { text-wrap: pretty; }
h1, h2 { margin: 0; font-family: var(--serif); font-weight: 500; letter-spacing: -.045em; line-height: 1.03; }
h1 { max-width: 9ch; font-size: clamp(4.2rem, 7.15vw, 6.7rem); }
h2 { font-size: clamp(2.7rem, 5vw, 4.35rem); }
h3 { margin: 0 0 .65rem; font-size: 1.32rem; }

.hero-lede { max-width: 620px; margin: 1.8rem 0 0; color: #c9c5cd; font-size: clamp(1.04rem, 1.8vw, 1.22rem); }
.hero-actions, .gym-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .9rem; margin-top: 2rem; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: .82rem 1.3rem;
  border: 1px solid transparent;
  border-radius: .38rem;
  cursor: pointer;
  font-size: .83rem;
  font-weight: 850;
  letter-spacing: .035em;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, a:focus-visible { outline: 2px solid var(--bronze-bright); outline-offset: 3px; }
.button-primary { background: linear-gradient(135deg, #ddb06f, #9b6734); box-shadow: 0 .8rem 2rem rgba(183,132,75,.16); color: #100b07; }
.button-primary:hover { box-shadow: 0 1rem 2.5rem rgba(183,132,75,.25); }
.button-secondary { border-color: #3a3841; background: rgba(255,255,255,.02); color: var(--text); }
.microcopy { margin-top: 1rem; color: var(--muted-deep); font-size: .78rem; }

.product-stage { position: relative; display: grid; min-height: 610px; place-items: center; isolation: isolate; }
.product-glow { position: absolute; z-index: -2; width: 110%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(159,131,216,.18), rgba(183,132,75,.07) 34%, transparent 68%); filter: blur(18px); }
.product-stage::before, .product-stage::after { position: absolute; z-index: -1; width: 95%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; content: ""; }
.product-stage::before { transform: rotate(12deg) scaleY(.48); }
.product-stage::after { transform: rotate(-52deg) scaleY(.39); }

.app-window {
  position: relative;
  width: min(100%, 570px);
  padding: 1.4rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 1.2rem;
  background: linear-gradient(150deg, rgba(23,23,30,.97), rgba(10,10,14,.98));
  box-shadow: 0 2.5rem 6rem rgba(0,0,0,.52), inset 0 1px rgba(255,255,255,.035);
}
.app-window::after { position: absolute; right: -20%; bottom: -35%; width: 65%; aspect-ratio: 1; border-radius: 50%; background: rgba(159,131,216,.055); content: ""; }
.app-window-top, .app-greeting, .xp-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.app-window-top { padding-bottom: 1.2rem; border-bottom: 1px solid var(--line-soft); }
.mini-brand { display: flex; align-items: center; gap: .65rem; color: #d7d3da; font-size: .62rem; font-weight: 850; letter-spacing: .15em; }
.mini-brand img { border-radius: 50%; }
.status-pill { display: flex; align-items: center; gap: .4rem; padding: .35rem .6rem; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: .62rem; }
.status-pill i { width: .35rem; height: .35rem; border-radius: 50%; background: var(--green); box-shadow: 0 0 .5rem rgba(136,216,170,.65); }
.app-greeting { padding: 1.65rem 0; }
.app-greeting > div:first-child { display: flex; flex-direction: column; }
.app-greeting span, .app-stats span { color: var(--muted-deep); font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; }
.app-greeting > div:first-child strong { font-family: var(--serif); font-size: 2rem; font-weight: 500; }
.level-medallion { display: grid; width: 4.2rem; height: 4.2rem; place-items: center; align-content: center; border: 1px solid #4c3d2d; border-radius: 50%; background: rgba(183,132,75,.05); }
.level-medallion span { color: var(--bronze-bright); font-size: .48rem; }
.level-medallion strong { font-family: var(--serif); font-size: 1.4rem; line-height: 1.1; }
.app-stats { display: grid; gap: .55rem; grid-template-columns: repeat(3, 1fr); }
.app-stats > div { display: flex; min-height: 105px; flex-direction: column; padding: .9rem; border: 1px solid var(--line); border-radius: .65rem; background: rgba(255,255,255,.018); }
.app-stats strong { margin: .25rem 0; font-family: var(--serif); font-size: 1.35rem; font-weight: 500; }
.app-stats small { color: var(--muted-deep); font-size: .61rem; }
.quest-card { position: relative; z-index: 1; display: grid; align-items: center; gap: .85rem; grid-template-columns: auto 1fr auto; margin: .7rem 0 1.1rem; padding: 1rem; border: 1px solid #3b3541; border-radius: .7rem; background: linear-gradient(120deg, rgba(159,131,216,.07), rgba(183,132,75,.035)); }
.quest-icon { display: grid; width: 2.4rem; height: 2.4rem; place-items: center; border: 1px solid #58442f; border-radius: 50%; color: var(--bronze-bright); font-size: .75rem; }
.quest-card > div:nth-child(2) { display: flex; flex-direction: column; }
.quest-card span, .floating-card span { color: var(--bronze-bright); font-size: .5rem; font-weight: 850; letter-spacing: .16em; }
.quest-card strong { font-size: .8rem; }
.quest-card small, .floating-card small { color: var(--muted-deep); font-size: .62rem; }
.quest-arrow { color: var(--muted) !important; font-size: 1rem !important; }
.xp-row { position: relative; z-index: 1; color: var(--muted); font-size: .58rem; }
.xp-row div { height: .28rem; flex: 1; overflow: hidden; border-radius: 999px; background: #28262f; }
.xp-row i { display: block; width: 56%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--bronze), var(--bronze-bright)); }

.floating-card { position: absolute; z-index: 3; display: flex; min-width: 150px; flex-direction: column; padding: .85rem 1rem; border: 1px solid rgba(255,255,255,.13); border-radius: .6rem; background: rgba(12,12,16,.9); box-shadow: 0 1.4rem 3rem rgba(0,0,0,.4); backdrop-filter: blur(14px); }
.floating-card strong { margin: .15rem 0; font-size: .78rem; }
.floating-card-left { top: 13%; left: -3%; }
.floating-card-right { right: -3%; bottom: 14%; }

.manifesto { display: flex; align-items: center; justify-content: center; gap: 2.3rem; padding: 1.45rem 1rem; border-block: 1px solid var(--line-soft); color: #b7b3bc; font-family: var(--serif); font-size: 1.02rem; letter-spacing: .02em; }
.manifesto p { margin: 0; }
.manifesto span { color: var(--bronze); font-size: .5rem; }

.section-heading { display: grid; align-items: end; gap: 2.5rem 5rem; grid-template-columns: 1.25fr .75fr; }
.section-heading .eyebrow { margin-bottom: 1.1rem; }
.section-heading > p { margin: 0 0 .3rem; color: var(--muted); font-size: 1.02rem; }
.feature-grid { display: grid; gap: 1rem; grid-template-columns: repeat(4, 1fr); margin-top: 3.7rem; }
.feature-card { position: relative; min-height: 320px; padding: 1.7rem; overflow: hidden; border: 1px solid var(--line); border-radius: .8rem; background: linear-gradient(145deg, rgba(255,255,255,.032), transparent 52%), var(--surface); }
.feature-card::after { position: absolute; right: -25%; bottom: -40%; width: 80%; aspect-ratio: 1; border-radius: 50%; background: rgba(159,131,216,.04); content: ""; }
.feature-card-large { grid-column: span 2; }
.feature-card-wide { grid-column: span 2; }
.feature-number { position: absolute; top: 1.2rem; right: 1.35rem; color: #625f69; font-size: .66rem; letter-spacing: .13em; }
.feature-symbol { display: grid; width: 3.2rem; height: 3.2rem; margin: 2.8rem 0 2rem; place-items: center; border: 1px solid #4a3b2c; border-radius: 50%; color: var(--bronze-bright); font-size: 1.35rem; }
.feature-card p { max-width: 48ch; margin: 0; color: var(--muted); font-size: .91rem; }
.feature-list { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.5rem 0 0; padding: 0; list-style: none; }
.feature-list li { padding: .42rem .65rem; border: 1px solid var(--line); border-radius: 999px; color: #c3bfc7; font-size: .67rem; }
.guild-preview { position: relative; z-index: 1; display: flex; align-items: center; margin-top: 1.5rem; }
.avatar { display: grid; width: 2rem; height: 2rem; margin-right: -.35rem; place-items: center; border: 2px solid var(--surface); border-radius: 50%; background: #29242e; color: var(--bronze-pale); font-size: .55rem; font-weight: 800; }
.guild-preview p { display: flex; flex-direction: column; margin-left: .85rem; }
.guild-preview strong { color: var(--text); font-size: .75rem; }
.guild-preview small { color: var(--muted-deep); font-size: .62rem; }

.system { display: grid; gap: 4rem 7rem; grid-template-columns: .82fr 1.18fr; border-top: 1px solid var(--line-soft); }
.system-intro { position: static; align-self: start; }
.system-intro > p:last-child { max-width: 52ch; margin-top: 1.5rem; color: var(--muted); }
.system-steps { margin: 0; padding: 0; list-style: none; }
.system-steps li { display: grid; gap: 1.5rem; grid-template-columns: 3rem 1fr; padding: 2rem 0; border-bottom: 1px solid var(--line-soft); }
.system-steps > li > span { color: var(--bronze-bright); font-size: .66rem; font-weight: 850; letter-spacing: .12em; }
.system-steps strong { display: block; margin-bottom: .35rem; font-family: var(--serif); font-size: 1.5rem; font-weight: 500; }
.system-steps p { margin: 0; color: var(--muted); }

.gym-section { position: relative; display: grid; align-items: center; gap: 4rem 7rem; grid-template-columns: 1fr 1fr; padding-inline: clamp(2rem, 5vw, 4.8rem); border: 1px solid #463c4f; border-radius: 1.1rem; background: radial-gradient(circle at 92% 12%, rgba(159,131,216,.13), transparent 26rem), linear-gradient(135deg, #17151c, #0f0e13); }
.gym-copy > p:not(.eyebrow) { max-width: 58ch; margin: 1.5rem 0 0; color: var(--muted); }
.text-link { color: var(--bronze-pale); font-size: .81rem; font-weight: 800; text-decoration: none; }
.text-link span { display: inline-block; transition: transform 160ms ease; }
.text-link:hover span { transform: translateX(4px); }
.gym-panel { padding: 1.7rem; border: 1px solid var(--line); border-radius: .8rem; background: rgba(4,4,7,.46); box-shadow: inset 0 1px rgba(255,255,255,.025); }
.gym-panel > p { margin: 0 0 1rem; color: var(--bronze-bright); font-size: .64rem; font-weight: 850; letter-spacing: .16em; }
.gym-panel ul { display: grid; gap: .9rem; margin: 0 0 1.2rem; padding: 0; list-style: none; }
.gym-panel li { display: grid; gap: .75rem; grid-template-columns: auto 1fr; color: #d1cdd4; font-size: .87rem; }
.gym-panel li span { color: var(--bronze); font-size: .5rem; }
.gym-panel small { display: block; padding-top: 1rem; border-top: 1px solid var(--line-soft); color: var(--muted-deep); font-size: .7rem; }

.beta-section { display: grid; gap: 4rem 7rem; grid-template-columns: .8fr 1.2fr; }
.beta-copy > p:not(.eyebrow) { max-width: 48ch; margin-top: 1.4rem; color: var(--muted); }
.beta-points { display: grid; gap: .65rem; margin-top: 2rem; }
.beta-points span { color: #c9c5cd; font-size: .84rem; }
.beta-points i { display: inline-grid; width: 1.35rem; height: 1.35rem; margin-right: .55rem; place-items: center; border: 1px solid #4b3c2c; border-radius: 50%; color: var(--bronze-bright); font-size: .66rem; font-style: normal; }
.beta-form { display: grid; gap: 1rem; padding: clamp(1.4rem, 3vw, 2.2rem); border: 1px solid var(--line); border-radius: .9rem; background: linear-gradient(145deg, rgba(255,255,255,.03), rgba(255,255,255,.012)); }
.form-row { display: grid; gap: 1rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.beta-form label { display: grid; gap: .45rem; color: #c5c1c9; font-size: .72rem; font-weight: 750; letter-spacing: .025em; }
.beta-form input, .beta-form select, .beta-form textarea { width: 100%; border: 1px solid #37353e; border-radius: .42rem; background: #0d0d11; color: var(--text); font-size: 16px; line-height: 1.4; }
.beta-form input, .beta-form select { min-height: 48px; padding: 0 .8rem; }
.beta-form textarea { min-height: 120px; padding: .75rem .8rem; resize: vertical; }
.beta-form input:hover, .beta-form select:hover, .beta-form textarea:hover { border-color: #4b4853; }
.beta-form textarea::placeholder { color: #66636c; }
.beta-form .button { width: 100%; margin-top: .25rem; }
.form-hidden { position: absolute; left: -9999px; }
.form-note { margin: 0; color: var(--muted-deep); font-size: .66rem; text-align: center; }
.form-note a { color: var(--bronze-pale); }

.faq { display: grid; gap: 4rem 7rem; grid-template-columns: .72fr 1.28fr; border-top: 1px solid var(--line-soft); }
.faq-heading { align-self: start; }
.faq-list { display: grid; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer; font-family: var(--serif); font-size: 1.22rem; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { color: var(--bronze-bright); content: "+"; font-family: var(--sans); font-size: 1.2rem; font-weight: 300; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 68ch; margin: -.2rem 0 1.5rem; color: var(--muted); font-size: .9rem; }

.health-note { max-width: 860px; margin: 0 auto 6rem; padding-top: 2rem; border-top: 1px solid var(--line-soft); color: var(--muted-deep); font-size: .78rem; text-align: center; }

.site-footer { display: grid; align-items: center; gap: 2rem; grid-template-columns: 1fr auto; padding: 2.7rem 0; border-top: 1px solid var(--line-soft); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: var(--muted); font-size: .79rem; text-decoration: none; }
.footer-links a:hover { color: var(--text); }
.copyright { grid-column: 1 / -1; margin: 0; color: #5e5b63; font-size: .68rem; }

/* Support and confirmation pages */
.inner-page { min-height: calc(100vh - 230px); padding: 5rem 0 7rem; }
.inner-heading { max-width: 770px; margin-bottom: 3rem; }
.inner-heading h1 { max-width: 12ch; }
.inner-heading > p:not(.eyebrow) { max-width: 62ch; margin-top: 1.4rem; color: var(--muted); font-size: 1.05rem; }
.support-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.support-card { padding: 1.7rem; border: 1px solid var(--line); border-radius: .8rem; background: linear-gradient(145deg, rgba(255,255,255,.034), rgba(255,255,255,.012)); }
.support-card h2 { margin: 0 0 .7rem; font-family: var(--sans); font-size: 1.2rem; font-weight: 800; letter-spacing: 0; }
.support-card p { margin: 0 0 1.2rem; color: var(--muted); }
.support-card a:not(.button) { color: var(--bronze-bright); font-weight: 700; }
.confirmation-card { max-width: 760px; padding: clamp(2rem, 6vw, 4.5rem); border: 1px solid #463c4f; border-radius: 1rem; background: radial-gradient(circle at 90% 10%, rgba(159,131,216,.12), transparent 20rem), var(--surface); }
.confirmation-mark { display: grid; width: 3.8rem; height: 3.8rem; margin-bottom: 1.6rem; place-items: center; border: 1px solid #5b452f; border-radius: 50%; color: var(--bronze-bright); }
.confirmation-card h1 { max-width: 12ch; }
.confirmation-card > p { max-width: 56ch; margin: 1.3rem 0 0; color: var(--muted); }

/* Privacy page retains its policy text while sharing the site system. */
.legal-body { background: radial-gradient(circle at 50% -10%, rgba(183,132,75,.1), transparent 30rem), var(--ink); }
.legal-body header, .legal-body main, .legal-body footer { width: min(calc(100% - 3rem), 850px); margin-inline: auto; }
.legal-body header { padding: 4.5rem 0 2.5rem; border-bottom: 1px solid var(--line); }
.legal-body .brand { display: inline-flex; align-items: center; gap: .7rem; margin-bottom: 2.2rem; color: var(--text); font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-decoration: none; text-transform: uppercase; }
.legal-body .sigil { display: grid; width: 2rem; height: 2rem; place-items: center; border: 1px solid var(--bronze); border-radius: 50%; color: var(--bronze-bright); font-size: .85rem; }
.legal-body h1 { max-width: 12ch; }
.legal-body h2 { margin: 3.2rem 0 .8rem; color: #fff; font-family: var(--sans); font-size: clamp(1.35rem, 3vw, 1.65rem); font-weight: 800; letter-spacing: -.02em; }
.legal-body h3 { margin: 1.7rem 0 .4rem; color: var(--bronze-pale); font-size: 1rem; }
.legal-body p, .legal-body ul { margin: .75rem 0; }
.legal-body ul { padding-left: 1.4rem; }
.legal-body li { margin: .4rem 0; }
.legal-body .effective-date, .legal-body .lede { color: var(--muted); }
.legal-body .lede { max-width: 65ch; margin-top: 1.3rem; font-size: 1.04rem; }
.legal-body .notice { margin: 2rem 0; padding: 1.2rem 1.3rem; border: 1px solid var(--line); border-left: 3px solid var(--bronze); border-radius: .65rem; background: linear-gradient(135deg, rgba(183,132,75,.09), rgba(255,255,255,.02)); }
.legal-body main { padding: 1.2rem 0 4.5rem; }
.legal-body a { color: var(--bronze-pale); text-underline-offset: .18em; }
.legal-body footer { padding: 2rem 0 3rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .86rem; }

@media (max-width: 1060px) {
  .hero { grid-template-columns: 1fr; padding-top: 5.5rem; text-align: center; }
  .hero-copy { display: flex; align-items: center; flex-direction: column; }
  .product-stage { width: min(100%, 700px); margin-inline: auto; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card-large, .feature-card-wide { grid-column: span 1; }
}

@media (max-width: 840px) {
  .site-header { min-height: 82px; }
  nav a:not(.nav-cta) { display: none; }
  .section-heading, .system, .gym-section, .beta-section, .faq { grid-template-columns: 1fr; }
  .gym-section { gap: 3rem; }
  .faq { gap: 2.5rem; }
}

@media (max-width: 650px) {
  .site-header, main, .site-footer { width: min(calc(100% - 1.5rem), var(--max-width)); }
  .site-header { gap: .7rem; }
  .wordmark-copy small { display: none; }
  .wordmark-copy strong { font-size: .66rem; }
  nav .nav-cta { padding: .58rem .75rem; font-size: .72rem; }
  .hero { gap: 1rem; min-height: auto; padding: 4.2rem 0 2.5rem; }
  h1 { font-size: clamp(3rem, 14.5vw, 4.6rem); }
  h2 { font-size: clamp(2.25rem, 11vw, 3.35rem); }
  .hero-actions { width: 100%; }
  .hero-actions .button { width: 100%; }
  .product-stage { min-height: 530px; }
  .app-window { padding: 1rem; }
  .app-stats { grid-template-columns: 1fr 1fr; }
  .app-stats > div:last-child { display: none; }
  .floating-card { min-width: 130px; }
  .floating-card-left { top: 8%; left: 0; }
  .floating-card-right { right: 0; bottom: 8%; }
  .manifesto { flex-wrap: wrap; gap: .6rem; font-size: .82rem; }
  .manifesto span { display: none; }
  .manifesto p { margin: 0 .35rem; }
  .section { padding: 5rem 0; }
  .feature-grid, .support-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 280px; }
  .beta-section { gap: 2.5rem; }
  .beta-form { gap: .9rem; padding: 1.1rem; }
  .beta-form label { font-size: .78rem; }
  .beta-form input, .beta-form select { min-height: 52px; }
  .form-note { font-size: .72rem; line-height: 1.5; text-align: left; }
  .form-row { grid-template-columns: 1fr; }
  .gym-section { padding-inline: 1.3rem; }
  .gym-actions .button { width: 100%; }
  .inner-page { padding: 3.5rem 0 5rem; }
  .inner-heading { margin-bottom: 2rem; }
  .confirmation-card { padding: 1.5rem; }
  .confirmation-card .hero-actions { align-items: stretch; flex-direction: column; }
  .confirmation-card .button { width: 100%; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
  .copyright { grid-column: auto; }
  .legal-body header, .legal-body main, .legal-body footer { width: min(calc(100% - 1.5rem), 850px); }
}

@media (max-width: 430px) {
  .wordmark img { width: 40px; height: 40px; }
  .site-header { min-height: 76px; }
  .wordmark { gap: .6rem; }
  .wordmark-copy strong { max-width: 12ch; line-height: 1.35; }
  nav .nav-cta { white-space: nowrap; }
  .product-stage { min-height: 500px; }
  .app-window-top { padding-bottom: .8rem; }
  .app-greeting { padding: 1.2rem 0; }
  .app-greeting > div:first-child strong { font-size: 1.6rem; }
  .level-medallion { width: 3.5rem; height: 3.5rem; }
  .app-stats > div { min-height: 95px; padding: .7rem; }
  .app-stats strong { font-size: 1.15rem; }
  .quest-card { gap: .6rem; padding: .8rem; }
  .quest-icon { width: 2rem; height: 2rem; }
  .floating-card { display: none; }
  .feature-card { padding: 1.4rem; }
  .faq-list summary { font-size: 1.08rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button, .text-link span { transition: none; }
}
