@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,600;12..96,700;12..96,800&family=Nunito+Sans:opsz,wght@6..12,400;6..12,500;6..12,600;6..12,700;6..12,800&display=swap');

:root {
  --ink: #11140f;
  --ink-soft: #4b5148;
  --paper: #f4f0e6;
  --paper-deep: #e9e2d1;
  --white: #fffdf7;
  --lime: #b7ef55;
  --green: #167b54;
  --aqua: #5ed6ce;
  --mango: #ffb52e;
  --orange: #ff6b2c;
  --cherry: #e94057;
  --line: rgba(17, 20, 15, .15);
  --radius: 30px;
  --shadow: 0 24px 80px rgba(31, 38, 26, .14);
  --shell: min(1180px, calc(100vw - 40px));
}

*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

.shell { width: var(--shell); margin-inline: auto; }
.display { font-family: 'Bricolage Grotesque', sans-serif; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .15em;
  line-height: 1;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  content: '';
  box-shadow: 0 0 0 5px color-mix(in srgb, currentColor 16%, transparent);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 14px 0 auto;
  width: var(--shell);
  margin-inline: auto;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 22px;
  background: rgba(250,247,239,.86);
  box-shadow: 0 10px 35px rgba(17,20,15,.08);
  backdrop-filter: blur(18px);
}
.nav-row {
  min-height: 66px;
  padding: 8px 9px 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}
.brand img { width: 44px; height: 44px; border-radius: 13px; object-fit: cover; box-shadow: 0 5px 12px rgba(17,20,15,.14); }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-family: 'Bricolage Grotesque'; font-size: .97rem; letter-spacing: -.025em; }
.brand-copy small { margin-top: 5px; color: #70766d; font-size: .59rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 6px; }
.desktop-nav a {
  min-height: 44px;
  padding: 12px 14px;
  border-radius: 999px;
  color: #454a42;
  font-size: .86rem;
  font-weight: 800;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.desktop-nav a:hover { background: rgba(17,20,15,.07); color: var(--ink); }
.nav-cta, .button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 0;
  border-radius: 16px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  box-shadow: 0 8px 0 rgba(17,20,15,.13);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.nav-cta:hover, .button:hover { transform: translateY(-2px); box-shadow: 0 11px 0 rgba(17,20,15,.12); }
.nav-cta { min-height: 48px; border-radius: 15px; background: var(--lime); color: var(--ink); box-shadow: none; }
.nav-cta:hover { box-shadow: none; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
  content: '';
  transition: transform .2s ease, opacity .2s ease;
}
.menu-open .menu-toggle span { opacity: 0; }
.menu-open .menu-toggle::before { transform: translateY(6px) rotate(45deg); }
.menu-open .menu-toggle::after { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav {
  display: none;
  padding: 3px 9px 12px;
  border-top: 1px solid var(--line);
}
.mobile-nav a {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
}
.mobile-nav a::after { content: '↗'; }

.hero {
  position: relative;
  min-height: 870px;
  padding: 148px 0 84px;
  isolation: isolate;
}
.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(rgba(17,20,15,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,20,15,.055) 1px, transparent 1px),
    radial-gradient(circle at 74% 24%, rgba(94,214,206,.38), transparent 31%),
    radial-gradient(circle at 18% 75%, rgba(255,181,46,.32), transparent 28%);
  background-size: 48px 48px, 48px 48px, auto, auto;
  content: '';
  mask-image: linear-gradient(#000 80%, transparent);
}
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 44px; }
.hero-copy { position: relative; z-index: 2; }
.hero .eyebrow { color: var(--green); }
.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: 'Bricolage Grotesque';
  font-size: clamp(4rem, 7.2vw, 7.6rem);
  font-weight: 800;
  letter-spacing: -.075em;
  line-height: .86;
}
.hero h1 span { display: block; }
.hero h1 .punch {
  width: fit-content;
  margin-top: .11em;
  padding: .09em .16em .12em;
  border: 3px solid var(--ink);
  border-radius: .22em;
  background: var(--lime);
  box-shadow: .09em .09em 0 var(--ink);
  color: var(--ink);
  transform: rotate(-2deg);
}
.hero-lede { max-width: 610px; margin: 34px 0 30px; color: var(--ink-soft); font-size: clamp(1.05rem, 2vw, 1.26rem); font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 13px; }
.button-primary { background: var(--ink); }
.button-secondary { border: 1px solid var(--line); background: rgba(255,253,247,.66); color: var(--ink); box-shadow: none; }
.button-secondary:hover { background: #fff; box-shadow: none; }
.play-mark { display: grid; width: 29px; height: 29px; place-items: center; border-radius: 8px; background: conic-gradient(from 28deg, #34a853, #fbbc04, #ea4335, #4285f4, #34a853); color: #fff; font-size: 11px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.trust-chip { display: inline-flex; align-items: center; gap: 8px; min-height: 37px; padding: 8px 13px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,253,247,.72); color: #454a42; font-size: .78rem; font-weight: 800; }
.trust-chip b { color: var(--green); }

.hero-stage { position: relative; min-height: 640px; }
.stage-card {
  position: absolute;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 34px;
  background: #090b09;
  box-shadow: 14px 16px 0 var(--ink), var(--shadow);
}
.stage-card img { display: block; width: 100%; }
.stage-main { z-index: 2; top: 0; left: 19%; width: 48%; transform: rotate(2.2deg); }
.stage-play { z-index: 1; top: 93px; right: -2%; width: 41%; transform: rotate(8deg); }
.stage-game { z-index: 1; bottom: 12px; left: 0; width: 39%; transform: rotate(-8deg); }
.stage-note {
  position: absolute;
  z-index: 4;
  display: grid;
  max-width: 165px;
  min-height: 96px;
  place-items: center;
  padding: 17px;
  border: 2px solid var(--ink);
  border-radius: 22px;
  background: var(--mango);
  box-shadow: 7px 8px 0 var(--ink);
  font-family: 'Bricolage Grotesque';
  font-size: .95rem;
  font-weight: 800;
  line-height: 1.13;
  text-align: center;
  transform: rotate(-5deg);
}
.note-one { top: 28px; left: -2%; }
.note-two { right: 2%; bottom: 20px; background: var(--aqua); transform: rotate(5deg); }
.floating-tile {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 68px;
  aspect-ratio: 1;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 18px;
  background: var(--cherry);
  box-shadow: 7px 8px 0 var(--ink);
  color: #fff;
  font-family: 'Bricolage Grotesque';
  font-size: 2rem;
  font-weight: 800;
}
.tile-a { right: 7%; top: 5px; transform: rotate(11deg); }
.tile-b { left: 6%; bottom: 60px; background: var(--green); transform: rotate(-10deg); }

.marquee { overflow: hidden; border-block: 2px solid var(--ink); background: var(--ink); color: #fff; }
.marquee-track { display: flex; width: max-content; animation: marquee 24s linear infinite; }
.marquee-group { display: flex; align-items: center; }
.marquee span { display: inline-flex; align-items: center; gap: 24px; padding: 15px 24px; font-family: 'Bricolage Grotesque'; font-size: .9rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.marquee span::after { width: 10px; height: 10px; border-radius: 3px; background: var(--lime); content: ''; transform: rotate(45deg); }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: 110px 0; }
.section-head { display: grid; grid-template-columns: .7fr 1.3fr; align-items: end; gap: 40px; margin-bottom: 50px; }
.section-head h2, .split-copy h2, .final-cta h2, .legal-hero h1 {
  margin: 0;
  font-family: 'Bricolage Grotesque';
  font-size: clamp(2.7rem, 5vw, 5.4rem);
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: .94;
}
.section-head p { max-width: 580px; margin: 0; color: var(--ink-soft); font-size: 1.05rem; font-weight: 600; }

.game-loop { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.loop-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: 30px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 8px 9px 0 var(--ink);
}
.loop-card:nth-child(2) { background: var(--aqua); }
.loop-card:nth-child(3) { background: var(--mango); }
.loop-number { display: inline-grid; width: 44px; height: 44px; place-items: center; border: 2px solid var(--ink); border-radius: 13px; background: var(--ink); color: #fff; font-family: 'Bricolage Grotesque'; font-weight: 800; }
.loop-card h3 { max-width: 240px; margin: 52px 0 10px; font-family: 'Bricolage Grotesque'; font-size: 2rem; line-height: 1; }
.loop-card p { max-width: 280px; margin: 0; color: #343a32; font-weight: 600; }
.mini-objects { position: absolute; right: -20px; bottom: -20px; width: 165px; height: 165px; }
.mini-objects i { position: absolute; display: grid; width: 56px; height: 56px; place-items: center; border: 2px solid var(--ink); border-radius: 17px; background: var(--cherry); box-shadow: 5px 5px 0 var(--ink); color: #fff; font-family: 'Bricolage Grotesque'; font-size: 1.5rem; font-style: normal; font-weight: 800; }
.mini-objects i:nth-child(1) { top: 10px; left: 48px; transform: rotate(8deg); }
.mini-objects i:nth-child(2) { top: 64px; left: 9px; background: var(--lime); color: var(--ink); transform: rotate(-8deg); }
.mini-objects i:nth-child(3) { top: 72px; left: 76px; background: var(--orange); transform: rotate(6deg); }

.playtime-section { position: relative; background: var(--ink); color: #fff; }
.playtime-section::before { position: absolute; inset: 0; background: radial-gradient(circle at 70% 35%, rgba(183,239,85,.14), transparent 31%), linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: auto, 50px 50px, 50px 50px; content: ''; }
.split { position: relative; display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 80px; }
.split-copy .eyebrow { color: var(--lime); }
.split-copy h2 em { color: var(--lime); font-style: normal; }
.split-copy > p { color: #c5cabf; font-size: 1.1rem; }
.reward-disclaimer { display: flex; gap: 12px; margin-top: 24px; padding: 15px 17px; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; background: rgba(255,255,255,.055); color: #c9cec4; font-size: .84rem; line-height: 1.45; }
.reward-disclaimer strong { color: #fff; }
.reward-steps { display: grid; gap: 10px; margin: 28px 0 0; padding: 0; list-style: none; }
.reward-steps li { display: grid; grid-template-columns: 42px 1fr; gap: 13px; align-items: center; padding: 12px 14px; border-radius: 17px; background: rgba(255,255,255,.06); }
.reward-steps b { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 13px; background: var(--lime); color: var(--ink); font-family: 'Bricolage Grotesque'; }
.reward-steps span { color: #e8eadf; font-weight: 700; }
.reward-visual { position: relative; min-height: 675px; }
.reward-phone { position: absolute; overflow: hidden; border: 3px solid #fff; border-radius: 35px; background: #000; box-shadow: 16px 18px 0 var(--lime), 0 32px 80px rgba(0,0,0,.45); }
.reward-phone img { display: block; width: 100%; }
.reward-main { top: 0; left: 3%; width: 50%; transform: rotate(-4deg); }
.reward-side { right: 0; bottom: 0; width: 52%; transform: rotate(4deg); }
.reward-sticker { position: absolute; z-index: 3; top: 25px; right: 1%; width: 170px; padding: 18px 15px; border: 2px solid #fff; border-radius: 21px; background: var(--orange); box-shadow: 8px 9px 0 #fff; color: var(--ink); font-family: 'Bricolage Grotesque'; font-size: 1.08rem; font-weight: 800; line-height: 1.05; text-align: center; transform: rotate(6deg); }

.feature-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-auto-rows: minmax(250px, auto); gap: 18px; }
.feature-panel { position: relative; overflow: hidden; min-height: 260px; padding: 28px; border: 2px solid var(--ink); border-radius: var(--radius); background: var(--white); }
.feature-panel:first-child { grid-row: span 2; background: var(--green); color: #fff; }
.feature-panel:nth-child(2) { background: var(--cherry); color: #fff; }
.feature-panel:nth-child(4) { grid-column: span 2; background: var(--lime); }
.feature-icon { display: grid; width: 50px; height: 50px; place-items: center; border: 2px solid currentColor; border-radius: 15px; font-size: 1.35rem; }
.feature-panel h3 { margin: 34px 0 9px; font-family: 'Bricolage Grotesque'; font-size: clamp(1.55rem, 3vw, 2.5rem); line-height: 1; }
.feature-panel p { max-width: 420px; margin: 0; opacity: .78; font-weight: 600; }
.feature-panel .big-stat { position: absolute; right: 22px; bottom: -14px; opacity: .15; font-family: 'Bricolage Grotesque'; font-size: 7rem; font-weight: 800; line-height: 1; }
.feature-shot { position: absolute; right: -3%; bottom: -10%; width: 48%; border: 3px solid var(--ink); border-radius: 26px; transform: rotate(5deg); box-shadow: 10px 11px 0 var(--ink); }

.gallery { background: var(--paper-deep); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); align-items: start; gap: 22px; }
.screen-card { margin: 0; }
.screen-frame { overflow: hidden; border: 3px solid var(--ink); border-radius: 29px; background: #060806; box-shadow: 9px 10px 0 var(--ink); transition: transform .3s ease, box-shadow .3s ease; }
.screen-card:nth-child(even) { margin-top: 54px; }
.screen-card:nth-child(1) .screen-frame { transform: rotate(-2deg); }
.screen-card:nth-child(2) .screen-frame { transform: rotate(2deg); }
.screen-card:nth-child(3) .screen-frame { transform: rotate(-1deg); }
.screen-card:nth-child(4) .screen-frame { transform: rotate(2.5deg); }
.screen-card:hover .screen-frame { transform: translateY(-8px) rotate(0); box-shadow: 13px 15px 0 var(--ink); }
.screen-frame img { display: block; width: 100%; aspect-ratio: 1 / 2; object-fit: cover; }
.screen-card figcaption { padding: 20px 3px 0; }
.screen-card h3 { margin: 0 0 5px; font-family: 'Bricolage Grotesque'; font-size: 1.2rem; }
.screen-card p { margin: 0; color: var(--ink-soft); font-size: .88rem; line-height: 1.45; }

.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; }
.faq-intro { position: sticky; top: 110px; align-self: start; }
.faq-intro h2 { margin: 0 0 18px; font-family: 'Bricolage Grotesque'; font-size: clamp(2.8rem, 5vw, 5rem); letter-spacing: -.06em; line-height: .92; }
.faq-intro p { color: var(--ink-soft); }
.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 2px solid var(--ink); border-radius: 20px; background: var(--white); box-shadow: 5px 6px 0 var(--ink); }
.faq-list summary { position: relative; padding: 21px 62px 21px 22px; cursor: pointer; font-family: 'Bricolage Grotesque'; font-size: 1.05rem; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 15px; right: 15px; display: grid; width: 34px; height: 34px; place-items: center; border-radius: 10px; background: var(--lime); content: '+'; font-size: 1.35rem; }
.faq-list details[open] summary::after { content: '−'; }
.faq-answer { padding: 0 22px 22px; color: var(--ink-soft); }
.faq-answer p { margin: 0; }

.final-cta { position: relative; overflow: hidden; padding: 82px 70px; border: 3px solid var(--ink); border-radius: 42px; background: var(--mango); box-shadow: 13px 14px 0 var(--ink); }
.final-cta::after { position: absolute; right: -60px; bottom: -90px; width: 330px; height: 330px; border: 60px solid var(--cherry); border-radius: 50%; content: ''; }
.final-cta h2 { position: relative; z-index: 2; max-width: 700px; }
.final-cta p { position: relative; z-index: 2; max-width: 580px; margin: 20px 0 28px; font-size: 1.08rem; font-weight: 700; }
.final-cta .button { position: relative; z-index: 2; }

.site-footer { padding: 58px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; align-items: start; gap: 50px; padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.footer-brand p { max-width: 430px; color: var(--ink-soft); font-size: .9rem; }
.footer-links { display: grid; grid-template-columns: repeat(2, minmax(130px, 1fr)); gap: 8px 42px; }
.footer-links a { min-height: 42px; padding: 8px 0; color: var(--ink-soft); font-weight: 800; text-decoration: none; }
.footer-links a:hover { color: var(--ink); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; color: #757a72; font-size: .78rem; }

.legal-page { background: #f6f2e9; }
.legal-hero { padding: 150px 0 58px; border-bottom: 2px solid var(--ink); background: var(--aqua); }
.legal-hero.terms { background: var(--mango); }
.legal-hero h1 { max-width: 820px; }
.legal-hero p { max-width: 720px; margin: 20px 0 0; color: #29302a; font-size: 1.07rem; font-weight: 700; }
.legal-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.legal-meta span { padding: 8px 12px; border: 1px solid var(--ink); border-radius: 999px; background: rgba(255,255,255,.38); font-size: .76rem; font-weight: 900; }
.legal-layout { display: grid; grid-template-columns: 250px minmax(0, 780px); justify-content: space-between; gap: 70px; padding-block: 70px 110px; }
.legal-layout > * { min-width: 0; }
.legal-toc { position: sticky; top: 104px; align-self: start; padding: 18px; border: 2px solid var(--ink); border-radius: 20px; background: var(--white); box-shadow: 6px 7px 0 var(--ink); }
.legal-toc strong { display: block; margin-bottom: 8px; font-family: 'Bricolage Grotesque'; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.legal-toc a { display: block; padding: 8px 9px; border-radius: 9px; color: var(--ink-soft); font-size: .79rem; font-weight: 800; line-height: 1.25; text-decoration: none; }
.legal-toc a:hover { background: var(--paper-deep); color: var(--ink); }
.legal-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 35px; }
.legal-summary div { padding: 17px; border: 2px solid var(--ink); border-radius: 18px; background: var(--white); }
.legal-summary b { display: block; margin-bottom: 3px; font-family: 'Bricolage Grotesque'; }
.legal-summary span { color: var(--ink-soft); font-size: .78rem; line-height: 1.35; }
.legal-content h2 { margin: 55px 0 13px; padding-top: 18px; border-top: 1px solid var(--line); font-family: 'Bricolage Grotesque'; font-size: 1.8rem; letter-spacing: -.035em; line-height: 1.1; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 { margin: 26px 0 8px; font-family: 'Bricolage Grotesque'; font-size: 1.14rem; }
.legal-content p, .legal-content li { color: #444a42; }
.legal-content ul, .legal-content ol { padding-left: 22px; }
.legal-content li { margin-bottom: 8px; }
.legal-content a { color: #116e51; font-weight: 800; text-underline-offset: 3px; }
.legal-callout { margin: 28px 0; padding: 20px 22px; border: 2px solid var(--ink); border-radius: 18px; background: var(--lime); box-shadow: 5px 6px 0 var(--ink); }
.legal-callout.warning { background: #ffd98f; }
.legal-callout p { margin: 0; color: var(--ink); font-weight: 700; }
.data-table-wrap { overflow-x: auto; margin: 22px 0; border: 2px solid var(--ink); border-radius: 18px; background: var(--white); }
.data-table { width: 100%; min-width: 680px; border-collapse: collapse; font-size: .82rem; }
.data-table th, .data-table td { padding: 14px 15px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.data-table th { background: var(--ink); color: #fff; font-family: 'Bricolage Grotesque'; }
.data-table tr:last-child td { border-bottom: 0; }
.legal-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

.support-page { background: #f6f2e9; }
.support-hero { position: relative; overflow: hidden; padding: 142px 0 70px; border-bottom: 2px solid var(--ink); }
.support-hero::before, .support-hero::after { position: absolute; border: 2px solid rgba(17,20,15,.24); border-radius: 50%; content: ''; pointer-events: none; }
.support-hero::before { top: 105px; right: -110px; width: 300px; height: 300px; }
.support-hero::after { right: 118px; bottom: -150px; width: 250px; height: 250px; }
.contact-hero { background: var(--aqua); }
.deletion-hero { background: #ff7184; }
.support-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 680px) 390px; align-items: center; justify-content: space-between; gap: 54px; }
.support-hero h1 { max-width: 760px; margin: 0; font-family: 'Bricolage Grotesque'; font-size: clamp(4.5rem, 7.6vw, 7.4rem); letter-spacing: -.075em; line-height: .85; }
.support-hero p:not(.eyebrow) { max-width: 670px; margin: 25px 0 0; color: #262d27; font-size: 1.08rem; font-weight: 700; line-height: 1.65; }
.support-art { position: relative; min-height: 330px; }
.support-device { position: absolute; z-index: 2; top: 20px; left: 38px; display: grid; justify-items: center; width: 270px; min-height: 275px; padding: 32px 26px 26px; border: 3px solid var(--ink); border-radius: 38px; background: var(--white); box-shadow: 12px 13px 0 var(--ink); text-align: center; transform: rotate(3deg); }
.support-device::before { width: 56px; height: 6px; margin: -17px auto 19px; border-radius: 99px; background: var(--ink); content: ''; }
.support-device img { width: 92px; height: 92px; border-radius: 25px; box-shadow: 0 12px 26px rgba(17,20,15,.18); }
.support-device strong { margin-top: 15px; font-family: 'Bricolage Grotesque'; font-size: 1.35rem; line-height: 1; }
.support-device span { margin-top: 8px; color: var(--ink-soft); font-size: .85rem; font-weight: 800; line-height: 1.35; }
.support-shape { position: absolute; z-index: 3; display: grid; place-items: center; width: 70px; aspect-ratio: 1; border: 3px solid var(--ink); border-radius: 21px; background: var(--mango); box-shadow: 6px 7px 0 var(--ink); font-family: 'Bricolage Grotesque'; font-size: 1.8rem; font-style: normal; font-weight: 900; }
.support-shape.shape-one { top: 5px; right: 2px; transform: rotate(10deg); }
.support-shape.shape-two { right: 4px; bottom: 10px; background: var(--lime); transform: rotate(-8deg); }
.support-shape.shape-three { bottom: 3px; left: 0; background: var(--orange); color: #fff; transform: rotate(8deg); }
.delete-art .support-device { transform: rotate(-3deg); }
.delete-art .shape-one { background: var(--white); color: var(--cherry); }
.delete-art .shape-two { background: var(--lime); }
.delete-art .shape-three { background: var(--aqua); color: var(--ink); }
.deletion-cta { background: var(--cherry); color: #fff; }

.support-section { padding: 76px 0 110px; }
.support-layout { display: grid; grid-template-columns: 330px minmax(0, 760px); justify-content: space-between; align-items: start; gap: 70px; }
.support-sidebar { display: grid; gap: 18px; }
.support-info-card { position: relative; overflow: hidden; padding: 25px; border: 2px solid var(--ink); border-radius: 24px; background: var(--white); box-shadow: 7px 8px 0 var(--ink); }
.support-info-card.lime-card { background: var(--lime); }
.support-info-card.mango-card { background: var(--mango); }
.support-info-card h2 { margin: 13px 0 8px; font-family: 'Bricolage Grotesque'; font-size: 1.35rem; letter-spacing: -.035em; line-height: 1.08; }
.support-info-card p { margin: 0; color: #3f453d; font-size: .88rem; line-height: 1.55; }
.support-info-card a { display: inline-block; margin-top: 13px; font-size: .85rem; font-weight: 900; text-underline-offset: 4px; }
.support-card-icon { display: grid; place-items: center; width: 42px; height: 42px; border: 2px solid var(--ink); border-radius: 13px; background: var(--ink); color: #fff; font-family: 'Bricolage Grotesque'; font-size: .78rem; font-weight: 900; }
.compact-card { background: var(--ink); color: #fff; box-shadow: 7px 8px 0 var(--aqua); }
.compact-card h2 { margin-top: 0; }
.compact-card p { color: #cbd0c8; }
.compact-card a { color: var(--lime); }

.support-form-wrap { min-width: 0; }
.form-heading { margin-bottom: 24px; }
.form-heading .eyebrow { margin-bottom: 13px; color: var(--green); }
.form-heading h2 { margin: 0; font-family: 'Bricolage Grotesque'; font-size: clamp(2.6rem, 5vw, 4.4rem); letter-spacing: -.065em; line-height: .92; }
.form-heading > p:not(.eyebrow) { max-width: 640px; margin: 16px 0 0; color: var(--ink-soft); font-size: .92rem; }
.support-form { position: relative; display: grid; gap: 20px; padding: 30px; border: 2px solid var(--ink); border-radius: 30px; background: var(--white); box-shadow: 10px 11px 0 var(--ink); }
.form-grid { display: grid; gap: 16px; }
.form-grid.two { grid-template-columns: 1fr 1fr; }
.field { display: grid; min-width: 0; gap: 7px; }
.field label { color: #30352e; font-size: .73rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.field label span { color: #777d74; font-size: .67rem; letter-spacing: .02em; text-transform: none; }
.field input, .field select, .field textarea { width: 100%; min-height: 54px; padding: 14px 15px; border: 1.5px solid #bdc1b8; border-radius: 15px; outline: 0; background: #fbfaf5; color: var(--ink); font-size: .93rem; transition: border-color .18s ease, box-shadow .18s ease, background .18s ease; }
.field select { appearance: auto; }
.field textarea { min-height: 155px; resize: vertical; line-height: 1.55; }
.field input::placeholder, .field textarea::placeholder { color: #989d94; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); background: #fff; box-shadow: 0 0 0 4px rgba(22,123,84,.12); }
.field small, .field-foot { color: #747970; font-size: .7rem; line-height: 1.35; }
.field-foot { display: flex; justify-content: space-between; gap: 18px; }
.field-error { color: #bd1f39 !important; font-weight: 800; }
.block-error { display: block; margin-top: -12px; }
.inline-error { margin-bottom: 16px; padding: 12px 14px; border: 1px solid #d83c52; border-radius: 13px; background: #fff0f2; color: #a3162d; font-size: .82rem; font-weight: 800; }
.check-field { display: flex; align-items: flex-start; gap: 12px; padding: 16px; border: 1.5px solid #bdc1b8; border-radius: 16px; background: #fbfaf5; cursor: pointer; }
.check-field input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--green); }
.check-field span { display: grid; gap: 3px; }
.check-field strong { font-size: .84rem; line-height: 1.35; }
.check-field small { color: #747970; font-size: .72rem; }
.support-submit { display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 62px; padding: 10px 12px 10px 22px; border: 2px solid var(--ink); border-radius: 18px; background: var(--lime); box-shadow: 6px 7px 0 var(--ink); color: var(--ink); cursor: pointer; font-weight: 900; transition: transform .18s ease, box-shadow .18s ease; }
.support-submit b { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: var(--ink); color: #fff; font-size: 1.25rem; }
.support-submit:hover { transform: translateY(-2px); box-shadow: 9px 10px 0 var(--ink); }
.support-submit:disabled { cursor: not-allowed; filter: grayscale(1); opacity: .55; }
.danger-submit { background: #ff7184; }
.form-privacy { margin: 0; color: #6c7269; font-size: .72rem; text-align: center; }
.form-privacy a { color: var(--green); font-weight: 900; }
.trap-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.support-alert { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; padding: 18px 20px; border: 2px solid var(--ink); border-radius: 20px; box-shadow: 6px 7px 0 var(--ink); }
.support-alert.success { background: var(--lime); }
.support-alert.error { background: #ffb7c1; }
.alert-mark { display: grid; flex: 0 0 auto; place-items: center; width: 34px; height: 34px; border-radius: 11px; background: var(--ink); color: #fff; font-family: 'Bricolage Grotesque'; font-weight: 900; }
.support-alert strong { display: block; font-family: 'Bricolage Grotesque'; font-size: 1.12rem; }
.support-alert p { margin: 3px 0 0; font-size: .84rem; }
.support-alert code { padding: 2px 6px; border-radius: 6px; background: rgba(255,255,255,.52); font-weight: 900; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .desktop-nav, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .menu-open .mobile-nav { display: grid; }
  .hero { min-height: auto; padding-bottom: 70px; }
  .hero-grid, .split, .faq-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 20px; }
  .hero-stage { width: min(640px, 100%); min-height: 620px; margin: 10px auto 0; }
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .split { gap: 48px; }
  .split-copy { max-width: 680px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-panel:first-child { grid-row: auto; }
  .feature-panel:nth-child(4) { grid-column: auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); max-width: 700px; margin-inline: auto; }
  .faq-intro { position: static; }
  .legal-layout { grid-template-columns: 1fr; gap: 32px; }
  .legal-toc { position: static; display: grid; grid-template-columns: repeat(3, 1fr); }
  .legal-toc strong { grid-column: 1 / -1; }
  .support-hero-grid, .support-layout { grid-template-columns: 1fr; }
  .support-hero-grid { gap: 20px; }
  .support-art { width: min(390px, 100%); margin: 0 auto; }
  .support-layout { gap: 45px; }
  .support-sidebar { grid-template-columns: repeat(2, 1fr); }
  .support-sidebar .compact-card { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  :root { --shell: min(100% - 28px, 1180px); --radius: 24px; }
  .site-header { inset: 9px 0 auto; border-radius: 18px; }
  .nav-row { min-height: 60px; padding: 6px 7px 6px 10px; }
  .brand img { width: 40px; height: 40px; }
  .brand-copy small { display: none; }
  .hero { padding-top: 118px; }
  .hero h1 { font-size: clamp(3.45rem, 17.5vw, 5.4rem); }
  .hero-lede { margin-top: 27px; font-size: 1.02rem; }
  .hero-actions .button { width: 100%; }
  .trust-row { gap: 7px; }
  .trust-chip { font-size: .71rem; }
  .hero-stage { min-height: 485px; margin-top: 15px; }
  .stage-main { left: 18%; width: 55%; }
  .stage-play { top: 74px; right: -4%; width: 45%; }
  .stage-game { bottom: 10px; left: -4%; width: 43%; }
  .stage-card { border-width: 2px; border-radius: 26px; box-shadow: 8px 9px 0 var(--ink), 0 20px 50px rgba(31,38,26,.12); }
  .stage-note { max-width: 125px; min-height: 72px; padding: 12px; border-radius: 16px; font-size: .72rem; box-shadow: 5px 5px 0 var(--ink); }
  .note-one { top: 8px; }
  .note-two { right: 1%; bottom: 4px; }
  .floating-tile { width: 49px; border-width: 2px; border-radius: 14px; box-shadow: 4px 5px 0 var(--ink); font-size: 1.4rem; }
  .tile-b { bottom: 41px; }
  .section { padding: 78px 0; }
  .section-head { margin-bottom: 34px; }
  .section-head h2, .split-copy h2, .final-cta h2, .legal-hero h1 { font-size: clamp(2.7rem, 13vw, 4.2rem); }
  .game-loop { grid-template-columns: 1fr; }
  .loop-card { min-height: 280px; }
  .split { gap: 42px; }
  .reward-visual { min-height: 530px; }
  .reward-main { left: 0; width: 55%; }
  .reward-side { width: 57%; }
  .reward-sticker { width: 132px; padding: 13px 10px; font-size: .83rem; box-shadow: 5px 6px 0 #fff; }
  .feature-grid, .gallery-grid { grid-template-columns: 1fr; }
  .feature-panel { min-height: 235px; }
  .feature-shot { width: 44%; }
  .screen-card, .screen-card:nth-child(even) { width: min(310px, 88%); margin: 0 auto 34px; }
  .screen-card:nth-child(even) { margin-left: auto; margin-right: 0; }
  .screen-card:nth-child(odd) { margin-left: 0; }
  .final-cta { padding: 48px 27px 130px; border-radius: 30px; box-shadow: 8px 9px 0 var(--ink); }
  .final-cta::after { right: -75px; bottom: -130px; width: 260px; height: 260px; border-width: 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 4px 24px; }
  .footer-bottom { flex-direction: column; gap: 7px; }
  .legal-hero { padding: 122px 0 45px; }
  .legal-layout { padding-top: 38px; }
  .legal-toc { grid-template-columns: 1fr 1fr; }
  .legal-summary { grid-template-columns: 1fr; }
  .data-table { font-size: .78rem; }
  .support-hero { padding: 122px 0 45px; }
  .support-hero h1 { font-size: clamp(3.6rem, 16vw, 5.4rem); }
  .support-hero p:not(.eyebrow) { font-size: .98rem; }
  .support-art { min-height: 300px; transform: scale(.92); transform-origin: center top; }
  .support-section { padding: 48px 0 85px; }
  .support-sidebar { grid-template-columns: 1fr; }
  .support-sidebar .compact-card { grid-column: auto; }
  .support-info-card { padding: 22px; box-shadow: 5px 6px 0 var(--ink); }
  .support-form { gap: 18px; padding: 21px; border-radius: 24px; box-shadow: 7px 8px 0 var(--ink); }
  .form-grid.two { grid-template-columns: 1fr; }
  .form-heading h2 { font-size: clamp(2.65rem, 13vw, 3.8rem); }
  .field-foot { flex-direction: column; gap: 4px; }
  .support-submit { min-height: 58px; padding-left: 17px; box-shadow: 5px 6px 0 var(--ink); }
}

@media (max-width: 420px) {
  .support-art { width: 330px; margin-left: 50%; transform: translateX(-50%) scale(.82); }
  .support-device { left: 28px; }
  .support-shape.shape-one, .support-shape.shape-two { right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
