:root {
  --amber-950: #271204;
  --amber-900: #4b2405;
  --amber-800: #713807;
  --amber-700: #9b5209;
  --amber-500: #d8890d;
  --amber-300: #f3c15a;
  --gold-100: #fff0ba;
  --cream: #fff7e2;
  --white: #ffffff;
  --ink: #241706;
  --muted: #6f5733;
  --line: rgba(255, 255, 255, 0.34);
  --shadow: 0 30px 80px rgba(74, 37, 4, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 50% 0%, rgba(243, 193, 90, 0.44), transparent 34rem),
    radial-gradient(circle at 16% 20%, rgba(9, 145, 64, 0.18), transparent 23rem),
    linear-gradient(135deg, #2a1405 0%, #5b2b06 38%, #8f4b08 70%, #3c1c04 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.launched-only,
body[data-site-mode="launched"] .prelaunch-only,
html[data-site-mode="launched"] .prelaunch-only {
  display: none !important;
}

body[data-site-mode="launched"] .launched-only,
html[data-site-mode="launched"] .launched-only {
  display: revert !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  min-height: 5.8rem;
  padding: 0.75rem clamp(1.2rem, 4vw, 4rem);
  background: rgba(39, 18, 4, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 4.1rem;
  height: 4.1rem;
  overflow: hidden;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(0.8rem, 2vw, 1.6rem);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a {
  align-self: center;
}

.nav-cta {
  padding: 0.65rem 1rem;
  color: var(--amber-950);
  background: var(--gold-100);
  border-radius: 999px;
}

.section-band {
  width: 100%;
}

.section-inner {
  width: min(1180px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 4.7rem);
  display: grid;
  align-items: center;
  padding: clamp(2.4rem, 5vw, 4.8rem) 0 clamp(4rem, 8vw, 7rem);
  background:
    linear-gradient(180deg, rgba(39, 18, 4, 0.18), rgba(39, 18, 4, 0.64)),
    radial-gradient(circle at 50% 14%, rgba(243, 193, 90, 0.22), transparent 25rem);
}

.hero-layout {
  display: grid;
  justify-items: center;
  gap: clamp(1.6rem, 3.4vw, 3rem);
}

.hero-grid,
.split,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.hero-brand-lockup {
  display: grid;
  place-items: center;
  width: 100%;
}

.hero-logo {
  display: block;
  width: min(680px, 88vw);
  max-height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.22));
}

.hero-copy {
  display: grid;
  justify-items: center;
  max-width: 900px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--amber-800);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 1.35rem;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(2.2rem, 5vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.65rem;
  color: var(--ink);
  font-size: 1.25rem;
}

.hero-text,
.feature-copy p,
.center-copy p {
  max-width: 620px;
  font-size: clamp(1.04rem, 1.5vw, 1.28rem);
  line-height: 1.65;
}

.hero-text {
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem 2rem;
  margin-top: 2rem;
}

.text-link {
  font-weight: 800;
  border-bottom: 2px solid currentColor;
  padding-bottom: 0.28rem;
}

.text-link.strong {
  color: var(--gold-100);
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.9rem 1.35rem;
  color: var(--amber-950);
  font-weight: 900;
  background: linear-gradient(135deg, #fff5cd, var(--amber-300));
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(20, 10, 2, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(20, 10, 2, 0.3);
}

.hero-showcase {
  display: grid;
  justify-items: center;
  width: min(100%, 1100px);
  margin-top: clamp(0.8rem, 2vw, 1.4rem);
}

.showcase-panel {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: clamp(420px, 56vw, 700px);
  overflow: hidden;
}

.device-screenshot {
  display: block;
  width: min(1000px, 112vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 32px 56px rgba(39, 18, 4, 0.34));
}

.hero-device {
  transform: none;
}

.feature-showcase {
  display: grid;
  justify-items: center;
  align-items: center;
  min-height: 620px;
}

.feature-device {
  width: min(360px, 82vw);
  transform: none;
}

.feature-section {
  padding: clamp(4.5rem, 8vw, 8rem) 0;
}

.warm-light {
  color: var(--ink);
  background: linear-gradient(180deg, var(--cream), #ffeab1);
}

.soft-light {
  color: var(--ink);
  background: linear-gradient(145deg, #fffaf0, #f8e5bd);
}

.dark-feature {
  color: var(--white);
  background:
    radial-gradient(circle at 78% 18%, rgba(243, 193, 90, 0.22), transparent 24rem),
    radial-gradient(circle at 14% 72%, rgba(32, 130, 87, 0.24), transparent 22rem),
    linear-gradient(145deg, #1d1208 0%, #3b1b05 42%, #0f2219 100%);
}

.dark-feature .feature-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.dark-feature .feature-note {
  color: rgba(255, 240, 186, 0.88);
}

.future-feature {
  color: var(--white);
  background:
    radial-gradient(circle at 22% 20%, rgba(243, 193, 90, 0.2), transparent 25rem),
    radial-gradient(circle at 82% 74%, rgba(43, 165, 111, 0.22), transparent 24rem),
    linear-gradient(135deg, #101c18, #242015 48%, #4b2405);
}

.future-feature .feature-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.future-feature-copy {
  display: grid;
  justify-items: center;
  text-align: center;
}

.future-feature-copy .feature-copy {
  max-width: 760px;
}

.future-feature-copy .feature-copy p {
  margin-right: auto;
  margin-left: auto;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.35fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.feature-layout-reversed {
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.78fr);
}

.feature-layout-reversed .feature-copy {
  order: 2;
}

.feature-copy {
  max-width: 610px;
}

.screen-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 280px);
  gap: clamp(1rem, 2vw, 1.5rem);
  width: 100%;
  padding: 2.5rem 1rem 3.5rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-color: rgba(155, 82, 9, 0.55) transparent;
  scrollbar-width: thin;
}

.screen-gallery::after {
  width: 0.01rem;
  content: "";
}

.screen-gallery-single {
  grid-auto-flow: initial;
  grid-template-columns: minmax(260px, 360px);
  justify-content: center;
  overflow: visible;
}

.screen-gallery-single::after {
  display: none;
}

.screen-gallery-pair {
  grid-auto-columns: minmax(280px, 340px);
  justify-content: center;
  overflow: visible;
}

.screen-gallery-pair::after {
  display: none;
}

.screen-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 540px;
  margin: 0;
  overflow: hidden;
  scroll-snap-align: center;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(113, 56, 7, 0.14);
  border-radius: 2rem;
  box-shadow: 0 28px 54px rgba(74, 37, 4, 0.2);
}

.app-screen-card {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  width: 100%;
  min-height: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  contain: layout paint;
}

.app-screen-card img {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: auto;
  max-width: none;
  height: 100%;
  transform: translateX(-50%);
}

.screen-card:nth-child(even) {
  transform: translateY(2rem);
}

.screen-card:not(.app-screen-card) img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.screen-placeholder {
  padding: 2rem;
  color: rgba(75, 36, 5, 0.68);
  font-weight: 900;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255, 247, 226, 0.96), rgba(255, 234, 177, 0.88)) padding-box,
    linear-gradient(145deg, rgba(216, 137, 13, 0.6), rgba(36, 23, 6, 0.16)) border-box;
  border: 2px dashed transparent;
}

.screen-placeholder span {
  max-width: 10rem;
  line-height: 1.5;
}

.screen-gallery-dark {
  scrollbar-color: rgba(243, 193, 90, 0.5) transparent;
}

.screen-gallery-dark .screen-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 64px rgba(0, 0, 0, 0.34);
}

.screen-gallery-dark .app-screen-card {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.screen-gallery-dark .app-screen-card img {
  filter:
    drop-shadow(0 24px 28px rgba(0, 0, 0, 0.32))
    drop-shadow(0 8px 22px rgba(65, 190, 222, 0.12));
}

.screen-gallery-dark .screen-placeholder {
  color: rgba(255, 240, 186, 0.84);
  background:
    linear-gradient(145deg, rgba(22, 25, 20, 0.96), rgba(55, 34, 12, 0.94)) padding-box,
    linear-gradient(145deg, rgba(243, 193, 90, 0.68), rgba(255, 255, 255, 0.12)) border-box;
}

.coming-soon-label {
  display: inline-flex;
  margin-top: 1.4rem;
  padding: 0.6rem 0.85rem;
  color: var(--gold-100) !important;
  font-size: 0.76rem !important;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(243, 193, 90, 0.42);
  border-radius: 999px;
}

.split.reversed {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
}

.split.reversed .feature-copy {
  order: 2;
}

.center-copy {
  max-width: 820px;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.three-up {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.three-up article {
  min-height: 300px;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid rgba(148, 78, 8, 0.12);
}

.three-up p {
  color: var(--muted);
  line-height: 1.6;
}

.tile-visual {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.9), rgba(148, 78, 8, 0.86));
  height: 140px;
  margin-bottom: 1.2rem;
}

.feature-note {
  margin-top: 1.4rem;
  color: var(--amber-800);
  font-size: 0.95rem;
  font-weight: 800;
}

.screenshot-placeholder {
  display: grid;
  place-items: center;
  width: min(360px, 82vw);
  min-height: 720px;
  padding: 2rem;
  color: rgba(75, 36, 5, 0.7);
  font-weight: 900;
  text-align: center;
  background:
    linear-gradient(var(--cream), var(--cream)) padding-box,
    linear-gradient(145deg, rgba(216, 137, 13, 0.55), rgba(36, 23, 6, 0.18)) border-box;
  border: 2px dashed transparent;
  border-radius: 34px;
  box-shadow: 0 32px 56px rgba(39, 18, 4, 0.24);
}

.screenshot-placeholder.dark {
  color: rgba(255, 240, 186, 0.82);
  background:
    linear-gradient(145deg, rgba(22, 15, 10, 0.94), rgba(42, 24, 9, 0.94)) padding-box,
    linear-gradient(145deg, rgba(243, 193, 90, 0.72), rgba(255, 255, 255, 0.14)) border-box;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.36);
}

.download-section {
  padding: clamp(4.5rem, 8vw, 8rem) 0;
  text-align: center;
  background:
    radial-gradient(circle at 50% 10%, rgba(243, 193, 90, 0.34), transparent 24rem),
    linear-gradient(135deg, #713807, #9b5209 58%, #4b2405);
}

.contact-section {
  padding: clamp(4.5rem, 8vw, 8rem) 0;
  color: var(--ink);
  background: linear-gradient(145deg, #fffaf0, #f5dfad);
}

.contact-page-main {
  display: grid;
  min-height: calc(100vh - 5.8rem);
}

.contact-page-main .contact-section {
  display: grid;
  align-items: center;
}

.contact-unavailable {
  display: grid;
  justify-items: center;
  max-width: 850px;
  text-align: center;
}

.contact-unavailable h1 {
  margin-bottom: 2rem;
  color: var(--ink);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 8rem;
}

.contact-copy h2 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.contact-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.contact-detail {
  display: grid;
  gap: 0.3rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(113, 56, 7, 0.2);
}

.contact-detail span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-detail strong {
  overflow-wrap: anywhere;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 1.15rem;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(113, 56, 7, 0.14);
  border-radius: 1.5rem;
  box-shadow: 0 28px 70px rgba(74, 37, 4, 0.16);
}

.contact-field {
  display: grid;
  gap: 0.45rem;
}

.contact-field label {
  font-size: 0.88rem;
  font-weight: 850;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  min-height: 3.35rem;
  padding: 0.8rem 0.9rem;
  color: var(--ink);
  font: inherit;
  background: var(--white);
  border: 1px solid rgba(113, 56, 7, 0.24);
  border-radius: 0.75rem;
  outline: none;
}

.contact-field textarea {
  min-height: 10rem;
  resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 4px rgba(216, 137, 13, 0.14);
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-submit {
  min-height: 3.5rem;
  padding: 0.9rem 1.25rem;
  color: var(--white);
  font: inherit;
  font-weight: 900;
  background: linear-gradient(135deg, var(--amber-800), var(--amber-700));
  border: 0;
  border-radius: 0.8rem;
  cursor: pointer;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.contact-status,
.contact-privacy {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
}

.contact-status {
  min-height: 1.25rem;
  font-weight: 800;
}

.contact-status.success {
  color: #176b3a;
}

.contact-status.error {
  color: #9b2c1f;
}

.contact-privacy {
  color: var(--muted);
}

.contact-privacy a {
  color: var(--amber-800);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.signup-section {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 9rem) 0;
  background:
    radial-gradient(circle at 16% 24%, rgba(49, 214, 115, 0.22), transparent 25rem),
    radial-gradient(circle at 84% 10%, rgba(255, 210, 91, 0.26), transparent 26rem),
    linear-gradient(135deg, #0b2118 0%, #183624 38%, #533005 100%);
}

.signup-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.signup-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.12fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.reward-showcase {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 520px;
  place-content: center;
  isolation: isolate;
}

.reward-avatar-frame {
  position: relative;
  display: grid;
  place-items: center;
  width: min(390px, 78vw);
  aspect-ratio: 1;
  padding: clamp(1rem, 2.5vw, 1.5rem);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.04)) padding-box,
    linear-gradient(145deg, rgba(255, 244, 188, 0.88), rgba(53, 226, 122, 0.6), rgba(255, 255, 255, 0.16)) border-box;
  border: 1px solid transparent;
  border-radius: 50%;
  box-shadow:
    0 45px 100px rgba(0, 0, 0, 0.38),
    0 0 90px rgba(49, 214, 115, 0.14);
  backdrop-filter: blur(20px);
}

.reward-avatar {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.34));
}

.reward-badge {
  position: absolute;
  top: 4%;
  right: -3%;
  z-index: 2;
  padding: 0.65rem 0.9rem;
  color: #19321f;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fff5c4, #f5c558);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.26);
}

.reward-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 240, 186, 0.18);
  border-radius: 50%;
}

.reward-orbit-one {
  width: min(490px, 92vw);
  aspect-ratio: 1;
}

.reward-orbit-two {
  width: min(590px, 105vw);
  aspect-ratio: 1;
  border-style: dashed;
  transform: rotate(24deg);
}

.reward-name {
  margin: 2rem 0 0.25rem;
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 900;
}

.reward-rarity {
  margin: 0;
  color: var(--amber-300);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.signup-content {
  max-width: 650px;
}

.signup-content h2 {
  max-width: 650px;
  font-size: clamp(2.6rem, 5.5vw, 5.2rem);
}

.signup-lead {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
  line-height: 1.7;
}

.signup-form {
  margin-top: 2rem;
  padding: clamp(1.25rem, 3vw, 1.8rem);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.4rem;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.form-field label {
  display: block;
  margin-bottom: 0.65rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  font-weight: 850;
}

.form-control-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.7rem;
}

.form-control-row input {
  min-width: 0;
  min-height: 3.7rem;
  padding: 0.9rem 1rem;
  color: var(--ink);
  font: inherit;
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid transparent;
  border-radius: 0.9rem;
  outline: none;
}

.form-control-row input:focus {
  border-color: var(--amber-300);
  box-shadow: 0 0 0 4px rgba(243, 193, 90, 0.14);
}

.form-control-row button {
  min-height: 3.7rem;
  padding: 0.9rem 1.25rem;
  color: #16301f;
  font: inherit;
  font-weight: 900;
  background: linear-gradient(135deg, #fff3b5, #f2bd43);
  border: 0;
  border-radius: 0.9rem;
  cursor: pointer;
  transition: transform 160ms ease, filter 160ms ease;
}

.form-control-row button:hover,
.form-control-row button:focus-visible {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.form-control-row button:disabled {
  cursor: wait;
  filter: none;
  opacity: 0.7;
  transform: none;
}

.consent-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  line-height: 1.5;
}

.consent-row input {
  width: 1rem;
  height: 1rem;
  margin: 0.18rem 0 0;
  accent-color: #43c970;
}

.form-footnote,
.form-status {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  line-height: 1.5;
}

.form-footnote a {
  color: var(--gold-100);
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.form-status {
  min-height: 1.2rem;
  color: var(--gold-100);
  font-weight: 750;
}

.form-status.success {
  color: #9ff0ba;
}

.form-status.error {
  color: #ffd0c8;
}

.signup-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.signup-benefits div {
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
}

.signup-benefits strong,
.signup-benefits span {
  display: block;
}

.signup-benefits strong {
  margin-bottom: 0.3rem;
  color: var(--gold-100);
  font-size: 0.9rem;
}

.signup-benefits span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  line-height: 1.45;
}

.download-copy {
  display: grid;
  justify-items: center;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.8rem;
}

.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  min-width: 12rem;
  padding: 0.9rem 1.4rem;
  color: var(--ink);
  font-weight: 900;
  background: var(--gold-100);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.legal-page {
  padding: clamp(3rem, 6vw, 6rem) 0;
  background: linear-gradient(180deg, rgba(39, 18, 4, 0.2), rgba(39, 18, 4, 0.72));
}

.legal-doc {
  width: min(940px, calc(100% - 2.4rem));
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem);
  color: var(--ink);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.legal-doc h1 {
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: clamp(1.5rem, 3vw, 3.4rem);
  line-height: 1.04;
}

.legal-doc h2 {
  margin-top: 2.8rem;
  color: var(--ink);
  font-size: clamp(1.00rem, 1.2vw, 1.9rem);
  line-height: 1.16;
}

.legal-doc h3 {
  margin-top: 2rem;
  font-size: 1.05rem;
}

.legal-doc p,
.legal-doc li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-doc a {
  color: var(--amber-800);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.legal-doc ul {
  padding-left: 1.25rem;
}

.site-footer {
  padding: 2rem 0;
  background: #241706;
}

.footer-grid {
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
}

.site-footer p {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem 1.4rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

@media (max-width: 820px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .hero-grid,
  .split,
  .split.reversed,
  .feature-layout,
  .feature-layout-reversed,
  .signup-shell,
  .contact-layout,
  .footer-grid,
  .three-up {
    grid-template-columns: 1fr;
  }

  .split.reversed .feature-copy,
  .feature-layout-reversed .feature-copy {
    order: 0;
  }

  .feature-copy {
    max-width: 680px;
  }

  .signup-content {
    max-width: 720px;
  }

  .contact-copy {
    position: static;
  }

  .reward-showcase {
    min-height: 470px;
  }

  .screen-gallery {
    grid-auto-columns: minmax(220px, 42vw);
    margin-right: calc((100vw - 100%) / -2);
    width: calc(100% + (100vw - 100%) / 2);
  }

  .screen-gallery-single {
    grid-template-columns: minmax(260px, 360px);
    width: 100%;
    margin-right: 0;
  }

  .screen-gallery-pair {
    grid-auto-columns: minmax(270px, 43vw);
    justify-content: start;
    overflow-x: auto;
  }

  .showcase-panel {
    min-height: 500px;
  }

  .hero-device {
    transform: translateX(-6.25%);
  }

  .feature-showcase {
    min-height: 500px;
  }

  .footer-grid {
    justify-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .section-inner {
    width: min(100% - 1.5rem, 1180px);
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2.1rem, 11vw, 3.2rem);
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

  .device-screenshot {
    width: min(720px, 145vw);
  }

  .feature-device {
    width: min(260px, 78vw);
  }

  .screen-gallery {
    grid-auto-columns: minmax(210px, 76vw);
    padding-top: 1.5rem;
  }

  .screen-gallery-pair {
    grid-auto-columns: minmax(250px, 82vw);
  }

  .screen-card {
    min-height: 500px;
  }

  .app-screen-card {
    min-height: 0;
  }

  .screen-card:nth-child(even) {
    transform: translateY(1rem);
  }

  .screenshot-placeholder {
    width: min(260px, 78vw);
    min-height: 520px;
  }

  .hero-logo {
    width: min(430px, 92vw);
    max-height: 180px;
  }

  .showcase-panel {
    height: min(84vw, 405px);
    min-height: 0;
  }

  .hero-device {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: none;
    transform: translate(-56.25%, -50%);
  }

  .form-control-row,
  .signup-benefits {
    grid-template-columns: 1fr;
  }

  .form-control-row button {
    width: 100%;
  }

  .reward-showcase {
    min-height: 390px;
  }

  .reward-avatar-frame {
    width: min(300px, 76vw);
  }

  .reward-orbit-one {
    width: min(360px, 92vw);
  }

  .reward-orbit-two {
    width: min(420px, 108vw);
  }

}
