@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,700;9..144,900&family=JetBrains+Mono:wght@400;700&family=Nunito:wght@600;700;800;900&display=swap');

:root {
  --ink: #0e0b1f;
  --paper: #fff8e7;
  --cream: #f7efd8;
  --slime: #7fff6b;
  --purple: #7c3aed;
  --coral: #ff5a6e;
  --sun: #ffd93d;
  --cyan: #22d3ee;
  --pink: #ff9db1;
  --muted: rgba(14, 11, 31, 0.62);
  --dark-top: #2a1b4d;
  --dark-bottom: #1a0f3d;
  --dark-accent: #3d2576;
  --dark-accent-2: #4a1f4a;
  --display: 'Fraunces', Georgia, serif;
  --ui: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --shadow: 0 7px 0 var(--ink);
  --card-radius: 28px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--paper);
  font-family: var(--ui);
  background:
    radial-gradient(ellipse at 20% 10%, var(--dark-accent) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 90%, var(--dark-accent-2) 0%, transparent 50%),
    linear-gradient(180deg, var(--dark-top), var(--dark-bottom));
  background-attachment: fixed;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  overflow: hidden;
  position: relative;
}

.page-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 18% 14%, rgba(255, 217, 61, 0.36) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 19%, rgba(127, 255, 107, 0.25) 0 1px, transparent 2px),
    radial-gradient(circle at 54% 70%, rgba(34, 211, 238, 0.22) 0 1px, transparent 2px),
    radial-gradient(circle at 90% 82%, rgba(255, 157, 177, 0.22) 0 2px, transparent 3px);
  background-size: 220px 220px, 180px 180px, 260px 260px, 310px 310px;
  opacity: 0.75;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(26, 15, 61, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  text-decoration: none;
}

.brand svg {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 900;
}

.nav-links a {
  padding: 9px 12px;
  border-radius: 999px;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current='page'] {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.nav-links .nav-cta {
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.hero {
  padding: 54px 0 52px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(32px, 6vw, 74px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 13px;
  color: var(--ink);
  background: var(--sun);
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: 0 3px 0 var(--ink);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '●';
  color: var(--purple);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 820px;
  margin-top: 20px;
  color: #fff;
  font-size: clamp(3.25rem, 7vw, 6.35rem);
  line-height: 0.91;
  text-wrap: balance;
}

.hero-copy {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 2.4vw, 1.35rem);
  font-weight: 700;
  line-height: 1.55;
  text-wrap: pretty;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 20px;
  color: #fff;
  background: var(--coral);
  border: 3px solid var(--ink);
  border-radius: 20px;
  box-shadow: var(--shadow);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.button:hover {
  transform: translateY(2px);
  box-shadow: 0 5px 0 var(--ink);
}

.button.secondary {
  color: var(--ink);
  background: var(--slime);
}

.button.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.section.light .button.ghost,
.delete-panel .button.ghost {
  color: var(--ink);
  background: #fff;
  border-color: var(--ink);
  box-shadow: 0 5px 0 var(--ink);
}

.app-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.app-meta li {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 900;
}

.hero-stage {
  display: grid;
  place-items: center;
  min-height: 570px;
  position: relative;
}

.orbit-card {
  position: absolute;
  width: 170px;
  z-index: 1;
}

.orbit-card.one {
  top: 38px;
  left: 0;
  transform: rotate(-15deg);
}

.orbit-card.two {
  right: -8px;
  bottom: 76px;
  transform: rotate(16deg);
}

.phone {
  width: min(315px, 88vw);
  height: 638px;
  position: relative;
  z-index: 2;
  padding: 14px;
  background: linear-gradient(180deg, rgba(45, 31, 96, 0.98), rgba(21, 12, 50, 0.98));
  border: 3px solid rgba(14, 11, 31, 0.9);
  border-radius: 48px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42), 0 10px 0 rgba(14, 11, 31, 0.55);
}

.phone::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  width: 102px;
  height: 29px;
  transform: translateX(-50%);
  z-index: 4;
  background: #05030b;
  border-radius: 999px;
}

.phone::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 11px;
  width: 108px;
  height: 5px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
}

.phone-screen {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(91, 107, 138, 0.96) 0 48%, rgba(31, 37, 53, 0.98) 48% 100%);
  border: 2px solid rgba(127, 255, 107, 0.28);
  border-radius: 36px;
}

.phone-topbar {
  position: absolute;
  top: 38px;
  left: 14px;
  right: 14px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trainer-badge {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #fff;
  background: var(--coral);
  border: 3px solid var(--ink);
  border-radius: 13px;
  box-shadow: 0 4px 0 var(--ink);
  font-weight: 900;
}

.caught-pill,
.ready-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  color: var(--ink);
  background: rgba(127, 255, 107, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.camera-label {
  position: absolute;
  top: 62px;
  left: 68px;
  color: var(--slime);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.camera-label::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  background: var(--slime);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--slime);
}

.furniture {
  position: absolute;
  opacity: 0.24;
  background: var(--ink);
  filter: blur(0.4px);
}

.furniture.a {
  left: 32px;
  top: 222px;
  width: 112px;
  height: 110px;
  border-radius: 8px 8px 0 0;
}

.furniture.b {
  right: 36px;
  top: 172px;
  width: 83px;
  height: 170px;
  border-radius: 8px;
}

.furniture.c {
  left: 74px;
  top: 108px;
  width: 82px;
  height: 70px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
}

.reticle {
  position: absolute;
  top: 288px;
  left: 50%;
  width: 96px;
  height: 96px;
  transform: translateX(-50%);
  border: 3px dashed var(--slime);
  border-radius: 50%;
  opacity: 0.75;
  animation: pulse 2s ease-in-out infinite;
}

.reticle::before,
.reticle::after {
  content: '';
  position: absolute;
  background: var(--slime);
  opacity: 0.65;
}

.reticle::before {
  top: 50%;
  left: 20px;
  right: 20px;
  height: 2px;
}

.reticle::after {
  left: 50%;
  top: 20px;
  bottom: 20px;
  width: 2px;
}

.scan-footer {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 96px;
  z-index: 3;
  display: grid;
  place-items: center;
  gap: 10px;
}

.scan-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.ready-pill {
  background: var(--slime);
  border: 2px solid var(--ink);
  box-shadow: 0 3px 0 var(--ink);
}

.shutter {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  margin-top: 2px;
  background: var(--slime);
  border: 4px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 8px 0 var(--ink);
}

.shutter span {
  width: 68px;
  height: 68px;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 50%;
}

.phone-tabs {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 42px;
  display: flex;
  justify-content: space-between;
}

.phone-tab {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: var(--purple);
  border: 2px solid var(--ink);
  border-radius: 14px;
  box-shadow: 0 4px 0 var(--ink);
  font-weight: 900;
}

.phone-tab.me {
  color: var(--ink);
  background: var(--sun);
}

.monster-card {
  width: 100%;
  aspect-ratio: 240 / 336;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #000;
  border: 3px solid var(--ink);
  border-radius: 22px;
  box-shadow: 0 8px 0 var(--ink), 0 0 50px rgba(255, 217, 61, 0.22);
}

.monster-photo {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 58%, rgba(127, 255, 107, 0.96) 0 22%, rgba(127, 255, 107, 0.46) 34%, transparent 35%),
    radial-gradient(ellipse at 43% 50%, var(--ink) 0 3%, transparent 4%),
    radial-gradient(ellipse at 57% 50%, var(--ink) 0 3%, transparent 4%),
    linear-gradient(180deg, #8fbf6f 0 55%, #3f6a2b 55% 100%);
}

.monster-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(25deg, rgba(0, 0, 0, 0.06) 0 2px, transparent 2px 5px),
    radial-gradient(ellipse at 28% 55%, rgba(0, 0, 0, 0.16), transparent 23%),
    radial-gradient(ellipse at 78% 46%, rgba(0, 0, 0, 0.14), transparent 22%);
}

.rarity-flag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 5px 8px;
  background: #f59e0b;
  border: 2px solid var(--ink);
  border-radius: 7px;
  box-shadow: 0 2px 0 var(--ink);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.dex-number {
  position: absolute;
  top: 44px;
  left: 12px;
  z-index: 2;
  padding: 5px 7px;
  background: rgba(14, 11, 31, 0.7);
  border-radius: 7px;
  font-family: var(--mono);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.type-chip {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 5px 9px;
  color: var(--ink);
  background: var(--cyan);
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: 0 2px 0 var(--ink);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.card-nameplate {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 48px 12px 12px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.58) 42%, rgba(0, 0, 0, 0.88) 100%);
}

.card-nameplate h3 {
  color: #fff;
  font-size: 1.55rem;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.58);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 8px;
}

.stat-row span {
  display: grid;
  place-items: center;
  gap: 2px;
  padding: 5px 0;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  font-family: var(--mono);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.stat-row strong {
  font-family: var(--display);
  font-size: 0.82rem;
}

.section {
  padding: 78px 0;
}

.section.light {
  color: var(--ink);
  background: var(--paper);
}

.section.cream {
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 217, 61, 0.22), transparent 34%),
    radial-gradient(circle at 90% 72%, rgba(255, 90, 110, 0.16), transparent 32%),
    var(--cream);
}

.section-header {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-header.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-header h2 {
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 0.95;
  text-wrap: balance;
}

.section-header p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.55;
}

.feature-grid,
.policy-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.policy-card,
.step-card {
  padding: 24px;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: var(--card-radius);
  box-shadow: 0 7px 0 var(--ink);
}

.feature-card.dark {
  color: #fff;
  background: linear-gradient(180deg, var(--dark-accent), var(--dark-bottom));
}

.feature-card h3,
.policy-card h3,
.step-card h3 {
  font-family: var(--display);
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.feature-card p,
.policy-card p,
.step-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}

.feature-card.dark p {
  color: rgba(255, 255, 255, 0.76);
}

.icon-bubble,
.step-number {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  color: var(--ink);
  background: var(--sun);
  border: 3px solid var(--ink);
  border-radius: 16px;
  box-shadow: 0 4px 0 var(--ink);
  font-size: 1.35rem;
  font-weight: 900;
}

.step-number {
  background: var(--slime);
  font-family: var(--mono);
  font-size: 1rem;
}

.callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 34px;
  padding: 28px;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), #2a1b4d);
  border: 3px solid var(--ink);
  border-radius: 32px;
  box-shadow: 0 8px 0 var(--ink);
}

.callout h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.95;
}

.callout p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  line-height: 1.5;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-item {
  padding: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
}

.faq-item h3 {
  color: #fff;
  font-size: 1.35rem;
}

.faq-item p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
  line-height: 1.55;
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.66);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 900;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.legal-hero {
  padding: 68px 0 42px;
}

.legal-hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
}

.legal-hero p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.55;
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 96px;
  padding: 18px;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 24px;
  box-shadow: 0 6px 0 var(--ink);
}

.legal-nav strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.legal-nav a {
  display: block;
  padding: 8px 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 900;
  text-decoration: none;
}

.legal-nav a:hover {
  color: var(--purple);
}

.legal-card {
  padding: clamp(24px, 5vw, 46px);
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 34px;
  box-shadow: 0 8px 0 var(--ink);
}

.legal-card section + section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 2px solid rgba(14, 11, 31, 0.1);
}

.legal-card h2 {
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1;
}

.legal-card h3 {
  margin-top: 18px;
  color: var(--ink);
  font-family: var(--ui);
  font-size: 1.05rem;
  letter-spacing: 0;
}

.legal-card p,
.legal-card li {
  color: rgba(14, 11, 31, 0.72);
  font-weight: 700;
  line-height: 1.62;
}

.legal-card ul,
.legal-card ol {
  padding-left: 1.2rem;
}

.legal-card a {
  color: var(--purple);
  font-weight: 900;
}

.notice-box {
  padding: 18px;
  color: var(--ink);
  background: rgba(127, 255, 107, 0.22);
  border: 2px dashed rgba(14, 11, 31, 0.28);
  border-radius: 18px;
}

.delete-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 5vw, 42px);
  color: var(--ink);
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 34px;
  box-shadow: 0 8px 0 var(--ink);
}

.delete-panel h2 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 0.94;
}

.delete-panel p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.55;
}

.email-card {
  padding: 22px;
  color: var(--ink);
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 26px;
  box-shadow: 0 6px 0 var(--ink);
}

.email-card code {
  display: block;
  margin: 10px 0 14px;
  font-family: var(--mono);
  font-size: 0.95rem;
  font-weight: 700;
  word-break: break-word;
}

.small-button {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--sun);
  border: 2px solid var(--ink);
  border-radius: 12px;
  box-shadow: 0 3px 0 var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.support-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.support-step {
  padding: 20px;
  color: var(--ink);
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 24px;
  box-shadow: 0 6px 0 var(--ink);
}

.support-step strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.support-step p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}

.sr-only {
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: translateX(-50%) scale(0.96);
  }
  50% {
    opacity: 0.95;
    transform: translateX(-50%) scale(1.05);
  }
}

@media (max-width: 940px) {
  .hero-grid,
  .legal-layout,
  .delete-panel {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 600px;
  }

  .legal-nav {
    position: static;
  }
}

@media (max-width: 820px) {
  .header-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .feature-grid,
  .policy-grid,
  .steps-grid,
  .faq-grid,
  .support-steps {
    grid-template-columns: 1fr;
  }

  .callout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .hero,
  .section,
  .legal-hero {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .button {
    width: 100%;
  }

  .hero-stage {
    min-height: 520px;
  }

  .phone {
    width: 292px;
    height: 592px;
    border-radius: 44px;
  }

  .reticle {
    top: 268px;
    width: 88px;
    height: 88px;
  }

  .scan-footer {
    bottom: 96px;
  }

  .shutter {
    width: 82px;
    height: 82px;
  }

  .shutter span {
    width: 58px;
    height: 58px;
  }

  .orbit-card {
    width: 142px;
    opacity: 0.8;
  }
}
