/* VaultValue - final (azure system) */
@font-face {
  font-family: Manrope;
  src: url("/fonts/manrope-latin-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  color-scheme: light;
  --azure: #0a6cff;
  --azure-2: #0862f6;
  --azure-deep: #0553d6;
  --azure-dark: #0353e0;
  --azure-text: #0a5ce0;
  --azure-tint: #e9f1ff;
  --azure-tint-2: #d9e8ff;
  --cyan: #4fc3f7;
  --cyan-deep: #36b6f0;
  --ink: #0b0e12;
  --ink-2: #1c1f24;
  --ink-3: #2b3340;
  --muted: #5b6573;
  --muted-2: #66707f;
  --line: #e3e8f0;
  --line-2: #cddcf3;
  --paper: #ffffff;
  --paper-2: #f5f7fb;
  --graphite: #0f1216;
  --graphite-2: #1c1f24;
  --graphite-card: #181c23;
  --club-text: #b9c2ce;
  --radius: 20px;
  --container: 1200px;
  --gutter: clamp(20px, 4vw, 40px);
  --section: clamp(52px, 5.5vw, 72px);
  --shadow-phone:
    0 40px 80px -30px rgba(3, 20, 60, 0.55),
    0 18px 36px -18px rgba(3, 20, 60, 0.35);
  --shadow-card: 0 24px 50px -36px rgba(3, 20, 60, 0.3);
  --azure-gradient: linear-gradient(135deg, #0353e0 0%, #0862f6 55%, #0a6cff 100%);
  font-family:
    Manrope,
    "SF Pro Text",
    -apple-system,
    system-ui,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    "Hiragino Sans",
    "Noto Sans CJK JP",
    "Noto Sans CJK KR",
    "Noto Sans CJK SC",
    "Noto Sans CJK TC",
    sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  -webkit-text-size-adjust: 100%;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
body {
  margin: 0;
  background: var(--paper);
  overflow-x: clip;
}
h1,
h2,
h3,
p,
ul,
figure {
  margin: 0;
}
ul {
  padding: 0;
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
  opacity: 0.65;
}
[hidden] {
  display: none !important;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--azure);
  outline-offset: 4px;
  border-radius: 6px;
}
.hero a:focus-visible,
.closing a:focus-visible,
.club a:focus-visible,
.club button:focus-visible {
  outline-color: #fff;
}
.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.i {
  width: 20px;
  height: 20px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.i-lg {
  width: 26px;
  height: 26px;
}
.i-xl {
  width: 44px;
  height: 44px;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--ink);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
}
.skip-link:focus {
  top: 12px;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section {
  padding-block: var(--section);
}
.section-head {
  max-width: 760px;
  margin-bottom: clamp(32px, 4vw, 44px);
}
.section-head-split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 20px 64px;
  align-items: end;
}
.section-head-split .lead {
  margin-top: 0;
  max-width: 46ch;
  padding-bottom: 6px;
}

/* Editorial section header: eyebrow left, meta right, thin rule */
.rule-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px 24px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  margin-bottom: clamp(22px, 3vw, 32px);
}
.rule-head .eyebrow {
  margin-bottom: 0;
}
.meta {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
}
.rule-head-dark {
  border-top-color: rgba(255, 255, 255, 0.14);
}
.rule-head-dark .meta {
  color: var(--club-text);
}

/* ---------- Type ---------- */
h1 {
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
h3 {
  font-size: 22px;
  font-weight: 750;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.lead {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
  color: var(--muted);
  margin-top: 20px;
  text-wrap: pretty;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--azure-text);
  margin-bottom: 18px;
}
.eyebrow .i {
  width: 16px;
  height: 16px;
}
.eyebrow-light {
  color: #fff;
  background: rgba(2, 30, 110, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.32);
  padding: 8px 14px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: none;
  font-size: 14px;
}
.eyebrow-cyan {
  color: var(--cyan);
}
.eyebrow-white {
  color: #fff;
}
.chip {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--azure-text);
  background: var(--azure-tint);
  padding: 6px 12px;
  border-radius: 999px;
  line-height: 1.3;
}
.footnote {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted-2);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  font-weight: 750;
  color: var(--azure-text);
  background: none;
  border: 0;
  padding: 0;
  font-size: 17px;
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

/* ---------- Rarity chips (app colours, dark ink for contrast) ---------- */
.rarity-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}
.rarity {
  --c: #d5dae0;
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.3;
  color: #000;
  background: var(--c);
}
.rarity-uncommon {
  --c: #7dd87d;
}
.rarity-rare {
  --c: #3b7bff;
}
.rarity-ultra {
  --c: #f5a623;
}
.rarity-secret {
  --c: #d9e021;
}
.rarity-fa {
  --c: #c23cf0;
}
.rarity-fe {
  --c: #e5322d;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 14px 26px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 17px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: -0.01em;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
.btn-sm {
  min-height: 44px;
  padding: 8px 16px;
  font-size: 15px;
  border-radius: 11px;
}
.btn-sm .i {
  width: 16px;
  height: 16px;
}
.btn-block {
  width: 100%;
  justify-content: space-between;
}
.btn-azure {
  background: var(--azure);
  color: #fff;
  box-shadow: 0 8px 20px -10px rgba(10, 108, 255, 0.7);
}
.btn-azure:hover {
  background: var(--azure-deep);
}
.btn-white {
  background: #fff;
  color: var(--azure-text);
  box-shadow: 0 14px 30px -14px rgba(0, 20, 70, 0.55);
}
.btn-white:hover {
  background: #f2f6ff;
}
.btn-ghost-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: #fff;
}
.btn-cyan {
  background: var(--cyan);
  color: var(--graphite);
}
.btn-cyan:hover {
  background: #7ad3fa;
}
.btn-store {
  gap: 12px;
  padding: 10px 24px 10px 18px;
  text-align: left;
}
.btn-store span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.btn-store small {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.01em;
  color: var(--muted);
}
.btn-store strong {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.btn-store .i {
  color: var(--ink);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brand img {
  border-radius: 9px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-3);
}
.site-nav a {
  padding-block: 8px;
}
.site-nav a:hover {
  color: var(--azure-text);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: var(--azure-gradient);
  padding-top: clamp(44px, 5.5vw, 72px);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    112deg,
    transparent 0 44%,
    rgba(255, 255, 255, 0.045) 44% 100%
  );
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(2, 40, 120, 0.22));
}
.hero-copy {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-copy .eyebrow {
  margin-bottom: 26px;
}
.hero h1 {
  max-width: 14ch;
  text-wrap: balance;
}
.hero-lead {
  max-width: 660px;
  margin-top: 24px;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: #fff;
  text-wrap: pretty;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}
.hero-note {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  max-width: 560px;
}
.hero-stage {
  position: relative;
  height: 470px;
  margin-top: 40px;
  pointer-events: none;
}
.hero-stage .phone {
  position: absolute;
  left: 50%;
  top: var(--y, 0);
  transform: translateX(calc(-50% + var(--x, 0px)));
}
.phone-hero-center {
  --pw: 340px;
  --x: 0px;
  --y: 0px;
  z-index: 3;
}
.phone-hero-left {
  --pw: 300px;
  --x: -370px;
  --y: 64px;
  z-index: 2;
}
.phone-hero-right {
  --pw: 300px;
  --x: 370px;
  --y: 64px;
  z-index: 2;
}

/* ---------- Phone frame (thin dark titanium) ---------- */
.phone {
  --pw: 300px;
  width: var(--pw);
  max-width: 100%;
  padding: calc(var(--pw) * 0.03);
  border-radius: calc(var(--pw) * 0.155);
  background: linear-gradient(160deg, #46484d 0%, #212327 35%, #1b1d21 65%, #3c3e43 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    var(--shadow-phone);
  position: relative;
  flex: none;
}
.phone::before {
  content: "";
  position: absolute;
  inset: calc(var(--pw) * 0.03);
  border-radius: calc(var(--pw) * 0.128);
  box-shadow: 0 0 0 calc(var(--pw) * 0.012) #050608;
  pointer-events: none;
}
.phone::after {
  content: "";
  position: absolute;
  top: calc(var(--pw) * 0.055);
  left: 50%;
  transform: translateX(-50%);
  width: calc(var(--pw) * 0.25);
  height: calc(var(--pw) * 0.072);
  border-radius: 999px;
  background: #050608;
  pointer-events: none;
}
.phone img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--pw) * 0.128);
  background: #0b0e12;
}

/* ---------- Tablet frame ---------- */
.tablet {
  --tw: min(100%, 820px);
  width: var(--tw);
  margin-inline: auto;
  padding: clamp(10px, 1.4vw, 18px);
  border-radius: clamp(18px, 2.4vw, 32px);
  background: linear-gradient(160deg, #46484d 0%, #212327 35%, #1b1d21 65%, #3c3e43 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    0 50px 90px -40px rgba(3, 20, 60, 0.5),
    0 20px 40px -24px rgba(3, 20, 60, 0.35);
}
.tablet picture {
  display: block;
}
.tablet img {
  width: 100%;
  border-radius: clamp(10px, 1.4vw, 18px);
  background: #0b0e12;
  box-shadow: 0 0 0 3px #050608;
}

/* ---------- Fact strip ---------- */
.fact-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.fact-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-block: 20px;
}
.fact-strip p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-3);
}
.fact-strip .i {
  color: var(--azure);
}

/* ---------- Showcase 3-up ---------- */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
}
.showcase-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.showcase-item .phone-showcase {
  --pw: min(100%, 300px);
  margin-bottom: 28px;
}
.showcase-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
}
.showcase-text h3 {
  font-size: clamp(21px, 1.7vw, 24px);
  text-wrap: balance;
}
.showcase-text > p:not(.chip):not(.footnote) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

/* ---------- Go deeper: bento ---------- */
.deeper {
  background: var(--paper-2);
}
.bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-card);
}
.card-body {
  padding: 30px 30px 26px;
}
.card-body h3 {
  margin-bottom: 10px;
  text-wrap: balance;
}
.card-body p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  text-wrap: pretty;
}
.card-details {
  grid-column: span 8;
  flex-direction: row;
  align-items: stretch;
}
.card-details .card-body {
  flex: 1 1 auto;
  padding: 34px 16px 34px 34px;
}
.card-details .shot {
  flex: 0 0 300px;
  height: 380px;
  min-height: 0;
  align-self: flex-end;
  margin: 36px 30px 0 0;
}
.card-details .text-link {
  margin-top: 18px;
  font-size: 16px;
}
.card-charts {
  grid-column: span 4;
}
.card-wide {
  grid-column: span 6;
  flex-direction: row;
  align-items: stretch;
}
.card-wide .card-body {
  flex: 1 1 auto;
  padding: 30px 8px 30px 30px;
}
.card-wide .shot {
  flex: 0 0 250px;
  width: 250px;
  height: 340px;
  min-height: 0;
  align-self: flex-end;
  margin: 30px 26px 0 0;
}
.card-wide .shot .phone {
  --pw: 250px;
}
.card-wide .stat-row {
  margin-top: 16px;
}
.card-wide .stat-row li {
  min-width: 0;
}
.card-comics,
.card-mcp {
  grid-column: span 4;
}
.bento-minis {
  grid-column: span 4;
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 18px;
  min-width: 0;
}
.card-mini {
  justify-content: center;
  gap: 5px;
  padding: 16px 22px;
}
.card-mini h3 {
  font-size: 17px;
  line-height: 1.3;
}
.card-mini p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  text-wrap: pretty;
}
.mini-icon,
.feat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--azure-tint);
  color: var(--azure);
  flex: none;
}
.mini-icon .i,
.feat-icon .i {
  width: 22px;
  height: 22px;
}
.card-mini .mini-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  margin-bottom: 3px;
}
.card-mini .mini-icon .i {
  width: 19px;
  height: 19px;
}
.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.stat-row li {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 88px;
  padding: 8px 12px;
  border-radius: 12px;
  background: var(--paper-2);
  border: 1px solid var(--line);
}
.stat-row span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.3;
}
.stat-row strong {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.stat-row .i {
  width: 15px;
  height: 15px;
  color: var(--azure);
}
/* Cropped phone: a normal titanium bezel clipped by the card's bottom edge */
.shot {
  position: relative;
  flex: 1 1 270px;
  width: min(100%, 300px);
  min-height: 270px;
  margin: 0 auto;
  overflow: hidden;
}
.shot::before {
  content: "";
  position: absolute;
  inset: 24% -20% -10%;
  border-radius: 50%;
  background: radial-gradient(60% 60% at 50% 60%, rgba(10, 108, 255, 0.2), transparent 70%);
  pointer-events: none;
}
.shot .phone {
  --pw: 300px;
  --shadow-phone: 0 30px 60px -30px rgba(3, 20, 60, 0.45);
  z-index: 1;
}
.shot-chart {
  flex-basis: 300px;
  min-height: 300px;
}

/* ---------- CLUB (graphite + cyan, gradient-border card) ---------- */
.club {
  color: #fff;
  background:
    radial-gradient(900px 500px at 85% 10%, rgba(79, 195, 247, 0.14), transparent 60%),
    linear-gradient(180deg, #0b0e12 0%, #14171c 100%);
  padding-block: clamp(44px, 4.5vw, 56px);
}
.club-card {
  border-radius: 32px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(79, 195, 247, 0.75) 0%,
    rgba(255, 255, 255, 0.14) 30%,
    rgba(255, 255, 255, 0.08) 65%,
    rgba(10, 108, 255, 0.7) 100%
  );
  box-shadow: 0 40px 100px -40px rgba(79, 195, 247, 0.25);
}
.club-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 20px;
  border-radius: 31px;
  background:
    radial-gradient(60% 50% at 100% 100%, rgba(10, 108, 255, 0.2), transparent 70%),
    linear-gradient(180deg, #181c23 0%, #0f1217 100%);
  overflow: hidden;
}
.club-copy {
  padding: clamp(28px, 4vw, 52px);
}
.club h2 {
  color: #fff;
  max-width: 14ch;
}
.club .lead {
  color: var(--club-text);
  max-width: 48ch;
}
.club-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
  margin-top: 32px;
}
.club-features li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feat-icon {
  background: rgba(79, 195, 247, 0.12);
  border: 1px solid rgba(79, 195, 247, 0.28);
  color: var(--cyan);
}
.club-features h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 4px;
}
.club-features p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--club-text);
}
.club-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}
.club-note {
  font-size: 15px;
  color: var(--club-text);
  max-width: 34ch;
  line-height: 1.5;
}
.club-stage {
  position: relative;
  min-height: 560px;
}
.club-stage::before {
  content: "";
  position: absolute;
  inset: auto -10% -10% -10%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 60%, rgba(79, 195, 247, 0.22), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}
.club-stage .phone {
  position: absolute;
  --shadow-phone:
    0 40px 90px -30px rgba(79, 195, 247, 0.25),
    0 30px 60px -30px rgba(0, 0, 0, 0.8);
}
.phone-club-front {
  --pw: 312px;
  right: 5%;
  bottom: -120px;
  z-index: 2;
}
.phone-club-back {
  --pw: 250px;
  left: -4%;
  bottom: -160px;
  z-index: 1;
  transform: rotate(-5deg);
  filter: brightness(0.85);
}

/* ---------- iPad + languages ---------- */
.ipad-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 28px 64px;
  align-items: start;
  margin-bottom: clamp(32px, 3.5vw, 40px);
}
.ipad-head .lead {
  max-width: 48ch;
}
.languages {
  padding: 22px 24px 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper-2);
}
.languages-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.languages-title .i {
  color: var(--azure);
  width: 22px;
  height: 22px;
}
.language-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.language-list li {
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink-3);
}

/* ---------- Android waitlist ---------- */
.android {
  background: linear-gradient(180deg, #e9f1ff 0%, #f3f7ff 100%);
}
.android .rule-head {
  border-top-color: var(--line-2);
}
.android-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.android-copy h2 {
  max-width: 20ch;
}
.android-fineprint {
  margin-top: 18px;
  font-size: 15px;
  color: var(--muted);
  max-width: 48ch;
}
.waitlist-card {
  background: #fff;
  border: 1px solid #d5e2f7;
  border-radius: 28px;
  padding: clamp(24px, 3vw, 40px);
  box-shadow: 0 30px 60px -40px rgba(10, 60, 160, 0.4);
}
.waitlist-card h3 {
  font-size: 24px;
  margin-bottom: 22px;
}
.field-label {
  display: block;
  font-size: 14px;
  font-weight: 750;
  margin-bottom: 8px;
}
#email {
  display: block;
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1.5px solid #7f8ca3;
  background: #fbfcff;
  font-size: 17px;
}
#email::placeholder {
  color: var(--muted-2);
}
#email:focus {
  border-color: var(--azure);
  outline: 3px solid rgba(10, 108, 255, 0.25);
  outline-offset: 0;
}
#email[aria-invalid="true"] {
  border-color: #c0262f;
}
.bot-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 18px 0 22px;
  cursor: pointer;
}
.consent input {
  flex: none;
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--azure);
}
.consent span {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-3);
}
.form-status {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 650;
  color: #b3202a;
}
.form-status:empty {
  display: none;
}
.privacy-note {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
.privacy-note a {
  color: var(--azure-text);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.waitlist-success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.waitlist-success .i-xl {
  color: var(--azure);
}
.waitlist-success h3 {
  margin: 0;
}
.waitlist-success > p:not(.privacy-note) {
  color: var(--muted);
}
.waitlist-success .privacy-note {
  margin-top: 0;
}
.waitlist-success .text-link {
  margin-top: 4px;
}

/* ---------- FAQ ---------- */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.faq-head .text-link {
  margin-top: 12px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 4px;
  list-style: none;
  cursor: pointer;
  font-size: 19px;
  font-weight: 750;
  letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary .i {
  color: var(--azure);
  transition: transform 0.2s ease;
}
.faq details[open] summary .i {
  transform: rotate(45deg);
}
.faq details p {
  padding: 0 44px 22px 4px;
  color: var(--muted);
  line-height: 1.65;
}

/* ---------- Closing band with phone montage ---------- */
.closing {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: var(--azure-gradient);
  padding-top: clamp(56px, 7vw, 80px);
  text-align: center;
}
.closing::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    112deg,
    transparent 0 52%,
    rgba(255, 255, 255, 0.045) 52% 100%
  );
}
.closing-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.closing .eyebrow {
  margin-bottom: 20px;
}
.closing h2 {
  max-width: 16ch;
  text-wrap: balance;
}
.closing .lead {
  color: #fff;
  margin-top: 16px;
  max-width: 60ch;
}
.closing .btn {
  margin-top: 28px;
}
.closing-fine {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  max-width: 60ch;
}
.closing-strip {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 28px;
  height: 250px;
  margin-top: clamp(32px, 4vw, 40px);
  overflow: hidden;
}
.closing-strip .phone {
  --pw: 224px;
  --shadow-phone: 0 30px 60px -20px rgba(2, 30, 100, 0.55);
}
.closing-strip .phone:nth-child(even) {
  margin-top: 44px;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 40px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
.footer-brand {
  max-width: 520px;
}
.footer-brand p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 44px;
}
.footer-links a:hover {
  color: var(--azure-text);
}
.footer-links .i {
  width: 15px;
  height: 15px;
}
.footer-copy {
  color: var(--muted);
  font-weight: 600;
}

/* ---------- Legal page ---------- */
.legal {
  max-width: 760px;
  padding-block: clamp(48px, 6vw, 80px) clamp(64px, 8vw, 112px);
  min-height: 60vh;
}
.legal h1 {
  font-size: clamp(36px, 4.6vw, 56px);
  margin: 0 0 20px;
}
.legal h2 {
  font-size: 24px;
  margin: 40px 0 12px;
}
.legal p {
  color: var(--muted);
  line-height: 1.7;
  margin-top: 12px;
}
.legal a {
  color: var(--azure-text);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal .updated {
  font-size: 15px;
  color: var(--muted-2);
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .site-nav {
    gap: 20px;
  }
  .phone-hero-center {
    --pw: 300px;
  }
  .phone-hero-left,
  .phone-hero-right {
    --pw: 250px;
    --y: 56px;
  }
  .phone-hero-left {
    --x: -300px;
  }
  .phone-hero-right {
    --x: 300px;
  }
  .hero-stage {
    height: 500px;
  }
  .card-details .shot {
    flex-basis: 280px;
    margin-right: 22px;
  }
  .card-details .shot .phone {
    --pw: 280px;
  }
  .card-wide .shot {
    flex-basis: 230px;
    width: 230px;
    margin-right: 20px;
  }
  .card-wide .shot .phone {
    --pw: 230px;
  }
}

@media (max-width: 1000px) {
  .bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .card-details {
    grid-column: 1 / -1;
  }
  .card-details .card-body {
    padding: 34px 20px 34px 34px;
  }
  .card-details .shot {
    flex-basis: 300px;
    height: 400px;
    margin-right: 40px;
  }
  .card-details .shot .phone {
    --pw: 300px;
  }
  .card-charts,
  .card-comics,
  .card-mcp,
  .card-wide,
  .bento-minis {
    grid-column: span 1;
  }
  .card-wide {
    flex-direction: column;
  }
  .card-wide .card-body {
    padding: 30px 30px 26px;
  }
  .card-wide .shot {
    flex: 1 1 290px;
    width: min(100%, 300px);
    height: auto;
    min-height: 290px;
    align-self: auto;
    margin: 0 auto;
  }
  .card-wide .shot .phone {
    --pw: 300px;
  }
  .club-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }
  .club-stage {
    min-height: 520px;
  }
  .phone-club-front {
    --pw: 300px;
    right: auto;
    left: 50%;
    transform: translateX(-4%);
    bottom: -120px;
  }
  .phone-club-back {
    --pw: 250px;
    left: 50%;
    transform: translateX(-104%) rotate(-5deg);
    bottom: -160px;
  }
  .ipad-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .closing-strip .phone:nth-child(n + 4) {
    display: none;
  }
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
  }
  .phone-hero-center {
    --pw: 290px;
  }
  .phone-hero-left,
  .phone-hero-right {
    --pw: 230px;
    --y: 52px;
  }
  .phone-hero-left {
    --x: -270px;
  }
  .phone-hero-right {
    --x: 270px;
  }
  .hero-stage {
    height: 480px;
  }
  .fact-strip-inner {
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
  }
  .section-head-split {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .section-head-split .lead {
    margin-top: 16px;
    padding-bottom: 0;
  }
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .showcase-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    column-gap: 36px;
    align-items: center;
  }
  .showcase-item .phone-showcase {
    --pw: min(100%, 300px);
    margin-bottom: 0;
    justify-self: center;
  }
  .showcase-item:nth-child(even) .phone-showcase {
    order: 2;
  }
  .android-layout {
    grid-template-columns: 1fr;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  :root {
    --section: 60px;
  }
  .nav-shell {
    height: 64px;
    gap: 12px;
  }
  .brand {
    font-size: 18px;
  }
  .brand img {
    width: 30px;
    height: 30px;
  }
  .hero {
    padding-top: 40px;
  }
  .hero-copy .eyebrow {
    font-size: 13px;
    padding: 7px 14px;
    text-align: center;
  }
  .hero-lead {
    font-size: 17px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 360px;
  }
  .hero-note {
    font-size: 14px;
    margin-top: 18px;
  }
  .hero-stage {
    height: 400px;
    margin-top: 36px;
  }
  .phone-hero-center {
    --pw: 232px;
  }
  .phone-hero-left,
  .phone-hero-right {
    --pw: 190px;
    --y: 44px;
    z-index: 1;
  }
  .phone-hero-left {
    --x: -190px;
  }
  .phone-hero-right {
    --x: 190px;
  }
  .fact-strip-inner {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-block: 18px;
  }
  .rule-head {
    margin-bottom: 24px;
  }
  .section-head {
    margin-bottom: 32px;
  }
  .showcase-grid {
    gap: 52px;
  }
  .showcase-item {
    display: flex;
    flex-direction: column;
  }
  .showcase-item .phone-showcase,
  .showcase-item:nth-child(even) .phone-showcase {
    --pw: min(100%, 280px);
    margin-bottom: 24px;
    order: 0;
  }
  .bento {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }
  .bento > .card,
  .bento-minis {
    grid-column: 1 / -1;
  }
  .bento-minis {
    grid-template-rows: none;
    gap: 14px;
  }
  .card {
    border-radius: 22px;
  }
  .card-body,
  .card-details .card-body {
    padding: 24px 22px 22px;
  }
  .card-details {
    flex-direction: column;
  }
  .card-details .shot {
    flex-basis: auto;
    height: 330px;
    align-self: center;
    margin: 0 auto;
  }
  .shot,
  .shot-chart {
    flex-basis: 290px;
    min-height: 290px;
  }
  .card-mini {
    padding: 22px;
  }
  .club {
    padding-block: 52px;
  }
  .club-card {
    border-radius: 26px;
  }
  .club-inner {
    border-radius: 25px;
  }
  .club-copy {
    padding: 26px 22px 30px;
  }
  .club-features {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
  .club-actions {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 30px;
  }
  .club-actions .btn {
    width: 100%;
  }
  .club-stage {
    min-height: 430px;
  }
  .phone-club-front {
    --pw: 250px;
    left: auto;
    right: 16px;
    transform: none;
    bottom: -84px;
  }
  .phone-club-back {
    --pw: 200px;
    left: -14px;
    transform: rotate(-6deg);
    bottom: -120px;
  }
  .languages {
    padding: 20px 18px 22px;
  }
  .waitlist-card {
    border-radius: 22px;
  }
  .faq summary {
    font-size: 17px;
    padding-block: 18px;
  }
  .faq details p {
    padding-right: 8px;
  }
  .closing .btn {
    width: 100%;
    max-width: 360px;
  }
  .closing-strip {
    gap: 20px;
    height: 230px;
  }
  .closing-strip .phone {
    --pw: 176px;
  }
  .closing-strip .phone:nth-child(even) {
    margin-top: 36px;
  }
  .footer-links {
    gap: 4px 20px;
  }
}

@media (max-width: 520px) {
  .closing-strip {
    gap: 18px;
    height: 220px;
  }
  .closing-strip .phone {
    --pw: 164px;
  }
  .closing-strip .phone:nth-child(n + 3) {
    display: none;
  }
}

@media (max-width: 380px) {
  .phone-hero-center {
    --pw: 210px;
  }
  .phone-hero-left,
  .phone-hero-right {
    --pw: 170px;
  }
  .phone-hero-left {
    --x: -170px;
  }
  .phone-hero-right {
    --x: 170px;
  }
  .hero-stage {
    height: 370px;
  }
  .shot .phone {
    --pw: 260px;
  }
  .phone-club-front {
    --pw: 230px;
  }
}

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