    body {
      background: var(--landing-page-background);
      color: var(--landing-title);
    }

    .landing-topbar {
      position: sticky;
      top: 0;
      z-index: 50;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1rem clamp(1rem, 2vw, 2rem);
      background: var(--landing-header-bg);
      border-bottom: 1px solid var(--landing-border);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
    }

    .landing-brand,
    .landing-topbar-actions,
    .landing-actions,
    .landing-hero-actions {
      display: flex;
      align-items: center;
      gap: 0.9rem;
      flex-wrap: wrap;
    }

    .landing-brand {
      color: inherit;
      text-decoration: none;
    }

    .landing-brand-mark {
      width: 2.8rem;
      height: 2.8rem;
      border-radius: 1rem;
      display: grid;
      place-items: center;
      background: rgba(255, 255, 255, 0.06);
      overflow: hidden;
      box-shadow: 0 16px 36px rgba(255, 184, 77, 0.18);
    }

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

    .landing-brand-mark .brand-logo--light {
      display: none;
    }

    :root[data-theme="light"] .landing-brand-mark .brand-logo--light {
      display: block;
    }

    :root[data-theme="light"] .landing-brand-mark .brand-logo--dark {
      display: none;
    }

    .landing-brand-copy {
      display: grid;
      gap: 0.1rem;
    }

    .landing-brand-copy strong {
      font-size: 1.03rem;
      line-height: 1.1;
      letter-spacing: -0.04em;
      color: var(--landing-title);
    }

    .landing-brand-copy span {
      font-size: 0.74rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--landing-copy-muted);
    }

    .landing-topbar .btn,
    .landing-topbar .btn-outline,
    .landing-primary,
    .landing-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 3rem;
      padding: 0.85rem 1.2rem;
      border-radius: 999px;
      font-weight: 700;
      text-decoration: none;
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
    }

    .landing-topbar .btn,
    .landing-primary {
      background: linear-gradient(135deg, var(--landing-nav-action-start), var(--landing-nav-action-end));
      color: var(--landing-on-action);
      box-shadow: 0 16px 34px rgba(255, 142, 87, 0.2);
    }

    .landing-topbar .btn-outline,
    .landing-secondary {
      background: var(--landing-surface);
      border: 1px solid var(--landing-border-emphasis);
      color: var(--landing-title);
      box-shadow: none;
    }

    .landing-topbar .btn:hover,
    .landing-topbar .btn-outline:hover,
    .landing-primary:hover,
    .landing-secondary:hover {
      transform: translateY(-2px);
    }

    .landing-shell {
      width: min(100%, 86rem);
      margin: 0 auto;
      padding: 2rem clamp(1rem, 2vw, 2rem) 3.5rem;
      position: relative;
      z-index: 1;
    }

    .landing-hero {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(22rem, 0.85fr);
      gap: 1.4rem;
      margin-bottom: 1.25rem;
    }

    .hero-main,
    .hero-side,
    .landing-section {
      border-radius: 2rem;
      border: 1px solid var(--landing-border);
      background:
        linear-gradient(180deg, var(--landing-surface), transparent 32%),
        var(--landing-panel-bg);
      box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      padding: 1.7rem;
      position: relative;
      overflow: hidden;
    }

    .hero-main::before,
    .hero-side::before {
      content: "";
      position: absolute;
      inset: auto -5rem -5rem auto;
      width: 15rem;
      height: 15rem;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 184, 77, 0.14), transparent 70%);
      pointer-events: none;
    }

    .hero-kicker,
    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      width: fit-content;
      padding: 0.46rem 0.82rem;
      border-radius: 999px;
      background: rgba(255, 207, 107, 0.12);
      color: var(--landing-accent-text);
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.14em;
    }

    .hero-title {
      margin-top: 1rem;
      color: var(--landing-title);
      font-size: clamp(3rem, 7vw, 5rem);
      line-height: 0.95;
      letter-spacing: -0.06em;
      max-width: 10ch;
    }

    .hero-copy {
      margin-top: 1.1rem;
      max-width: 43rem;
      color: var(--landing-copy-strong);
      font-size: 1.08rem;
    }

    .hero-trust {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.85rem;
      margin-top: 1.5rem;
    }

    .landing-game-search {
      display: grid;
      gap: 0.75rem;
      margin-top: 1rem;
      margin-bottom: 1.15rem;
      padding: 0;
      border-radius: 1.35rem;
    }

    .landing-game-search-form {
      display: block;
    }

    .landing-game-search-form input {
      width: 100%;
      min-height: 3.45rem;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      background: var(--landing-input-bg);
      color: var(--landing-title);
      padding: 0 1.2rem;
      font: inherit;
      outline: none;
    }

    .landing-game-search-form input:focus {
      border-color: rgba(255, 207, 107, 0.42);
      box-shadow: 0 0 0 4px rgba(255, 207, 107, 0.12);
    }

    .landing-game-search-form input::placeholder {
      color: var(--landing-copy-muted);
    }

    .landing-game-search-hint,
    .landing-game-search-empty {
      margin: 0;
      color: var(--landing-copy-soft);
      font-size: 0.92rem;
    }

    .landing-game-result-list {
      display: grid;
      gap: 0.55rem;
    }

    .landing-game-result {
      display: grid;
      gap: 0.25rem;
      padding: 0.9rem 1rem;
      border-radius: 1rem;
      background: var(--landing-result-bg);
      border: 1px solid var(--landing-border);
    }

    .landing-game-result strong {
      color: var(--landing-title);
    }

    .landing-game-result small {
      color: var(--landing-accent-text);
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .landing-game-result span,
    .landing-game-result p {
      margin: 0;
      color: var(--landing-copy-muted);
      font-size: 0.9rem;
    }

    .landing-game-result-cta {
      margin-top: 0.2rem;
      width: fit-content;
    }

    .hero-signup-proof {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.7rem;
      margin-top: 0.9rem;
      color: var(--landing-copy-soft);
      font-size: 0.92rem;
    }

    .hero-signup-proof span {
      padding: 0.75rem 0.85rem;
      border-radius: 1rem;
      background: var(--landing-surface);
      border: 1px solid var(--landing-border);
    }

    .trust-card {
      padding: 1rem;
      border-radius: 1.2rem;
      background: var(--landing-surface);
      border: 1px solid var(--landing-border);
    }

    .trust-card strong {
      display: block;
      margin-bottom: 0.25rem;
      color: var(--landing-title);
      font-size: 1rem;
    }

    .trust-card span {
      color: var(--landing-copy-soft);
      font-size: 0.92rem;
    }

    .side-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 1rem;
      color: var(--landing-copy-muted);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .side-grid {
      display: grid;
      gap: 0.85rem;
    }

    .side-card {
      padding: 1rem;
      border-radius: 1.25rem;
      background: var(--landing-surface);
      border: 1px solid var(--landing-border);
      display: grid;
      gap: 0.3rem;
    }

    .side-card small {
      color: var(--landing-accent-text);
      font-size: 0.76rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.14em;
    }

    .side-card strong {
      color: var(--landing-title);
      font-size: 1.05rem;
    }

    .side-card span {
      color: var(--landing-copy-soft);
      font-size: 0.94rem;
    }

    .section-head {
      display: grid;
      gap: 0.45rem;
      margin-bottom: 1rem;
    }

    .section-head h2 {
      margin: 0;
      color: var(--landing-title);
      font-size: clamp(1.9rem, 3vw, 2.5rem);
      letter-spacing: -0.05em;
    }

    .section-head p {
      margin: 0;
      max-width: 48rem;
      color: var(--landing-copy-soft);
    }

    .landing-grid-3,
    .landing-grid-2 {
      display: grid;
      gap: 1rem;
    }

    .landing-grid-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .landing-grid-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-card,
    .audience-card,
    .platform-card {
      padding: 1.2rem;
      border-radius: 1.35rem;
      background: var(--landing-surface);
      border: 1px solid var(--landing-border);
      display: grid;
      gap: 0.55rem;
      min-height: 100%;
    }

    .feature-card small,
    .audience-card small,
    .platform-card small {
      color: var(--landing-accent-text);
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .feature-card h3,
    .audience-card h3,
    .platform-card h3 {
      margin: 0;
      color: var(--landing-title);
      font-size: 1.18rem;
    }

    .feature-card p,
    .audience-card p,
    .platform-card p {
      margin: 0;
      color: var(--landing-copy-soft);
    }

    .platform-list {
      margin: 0;
      padding-left: 1.15rem;
      color: var(--landing-copy-soft);
      display: grid;
      gap: 0.45rem;
    }

    .faq-overview {
      display: grid;
      grid-template-columns: minmax(16rem, 0.35fr) minmax(0, 0.65fr);
      gap: 1.1rem;
      align-items: start;
    }

    .faq-index {
      position: sticky;
      top: 6.2rem;
      display: grid;
      gap: 0.6rem;
      padding: 1rem;
      border-radius: 1.35rem;
      background: var(--landing-surface);
      border: 1px solid var(--landing-border);
    }

    .faq-index a {
      display: flex;
      justify-content: space-between;
      gap: 0.75rem;
      padding: 0.72rem 0.8rem;
      border-radius: 1rem;
      color: var(--landing-copy);
      background: var(--landing-surface-faint);
      border: 1px solid transparent;
      font-weight: 700;
      text-decoration: none;
    }

    .faq-index a:hover {
      color: var(--landing-title);
      border-color: rgba(255, 207, 107, 0.22);
      background: rgba(255, 207, 107, 0.08);
    }

    .faq-index span {
      color: var(--landing-accent-text);
      font-size: 0.82rem;
    }

    .faq-groups {
      display: grid;
      gap: 1rem;
    }

    .faq-group {
      display: grid;
      gap: 0.8rem;
      padding: 1rem;
      border-radius: 1.35rem;
      background: var(--landing-surface-faint);
      border: 1px solid var(--landing-border);
      scroll-margin-top: 6rem;
    }

    .faq-group-head {
      display: grid;
      gap: 0.25rem;
    }

    .faq-group-head small {
      color: var(--landing-accent-text);
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .faq-group-head h3 {
      margin: 0;
      color: var(--landing-title);
      font-size: 1.25rem;
    }

    .faq-group-head p {
      margin: 0;
      color: var(--landing-copy-muted);
    }

    .faq-list {
      display: grid;
      gap: 0.55rem;
    }

    .faq-item {
      border-radius: 1rem;
      background: var(--landing-detail-bg);
      border: 1px solid var(--landing-border);
      overflow: hidden;
    }

    .faq-item[open] {
      border-color: rgba(255, 207, 107, 0.24);
      background: var(--landing-surface-raised);
    }

    .faq-item summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.95rem 1rem;
      color: var(--landing-title);
      cursor: pointer;
      font-weight: 800;
      list-style: none;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "+";
      flex: 0 0 auto;
      display: grid;
      place-items: center;
      width: 1.7rem;
      height: 1.7rem;
      border-radius: 999px;
      color: var(--landing-on-action);
      background: var(--landing-accent-text);
      font-weight: 900;
    }

    .faq-item[open] summary::after {
      content: "-";
    }

    .faq-answer {
      padding: 0 1rem 1rem;
      color: var(--landing-copy-soft);
    }

    .faq-answer p {
      margin: 0;
    }

    .landing-final {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
      gap: clamp(1rem, 3vw, 2rem);
      align-items: center;
    }

    .landing-final p {
      margin: 0;
      color: var(--landing-copy-soft);
      font-size: 1rem;
    }

    .landing-final-actions {
      display: grid;
      justify-items: end;
      gap: 1rem;
    }

    .landing-final-store {
      width: min(100%, 25rem);
      padding: 1rem;
      border-radius: 1.45rem;
      background:
        radial-gradient(circle at 12% 0%, rgba(255, 176, 46, 0.22), transparent 10rem),
        var(--landing-surface-subtle);
      border: 1px solid var(--landing-border-strong);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    }

    .landing-final-store .store-badge {
      width: 100%;
    }

    .landing-final-store p {
      margin: 0.7rem 0 0;
      color: var(--landing-copy-muted);
      font-size: 0.9rem;
      line-height: 1.45;
    }

    .account-deleted-banner {
      margin-bottom: 1.25rem;
      border-color: rgba(120, 224, 196, 0.24);
      background:
        linear-gradient(135deg, rgba(120, 224, 196, 0.12), rgba(255, 207, 107, 0.08)),
        var(--landing-panel-bg);
    }

    .account-deleted-banner p {
      margin: 0;
      color: var(--landing-copy-strong);
    }

    .ios-hero {
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(22rem, 0.98fr);
      gap: 1.35rem;
      align-items: stretch;
      margin-bottom: 1.25rem;
    }

    .ios-hero-copy,
    .ios-showcase,
    .ios-flow-card,
    .ios-proof-card {
      border-radius: 2.15rem;
      border: 1px solid var(--landing-border-strong);
      background:
        linear-gradient(180deg, var(--landing-surface-raised), transparent 34%),
        var(--landing-panel-bg-soft);
      box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
      backdrop-filter: blur(22px);
      -webkit-backdrop-filter: blur(22px);
      position: relative;
      overflow: hidden;
    }

    .ios-hero-copy {
      min-height: 38rem;
      padding: clamp(1.35rem, 3vw, 2.35rem);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 1.4rem;
    }

    .ios-hero-copy::before {
      content: "";
      position: absolute;
      inset: -8rem auto auto -8rem;
      width: 20rem;
      height: 20rem;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 143, 91, 0.2), transparent 68%);
      pointer-events: none;
    }

    .ios-pill-row,
    .ios-cta-row,
    .ios-metric-row,
    .ios-mini-avatars,
    .ios-store-row {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      flex-wrap: wrap;
    }

    .ios-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      width: fit-content;
      padding: 0.45rem 0.78rem;
      border-radius: 999px;
      background: rgba(255, 122, 49, 0.13);
      color: var(--landing-badge-text);
      border: 1px solid rgba(255, 143, 91, 0.18);
      font-size: 0.78rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.13em;
    }

    .ios-hero-title {
      margin: 1rem 0 0;
      max-width: 11ch;
      color: var(--landing-title);
      font-size: clamp(3.45rem, 8vw, 6.6rem);
      line-height: 0.88;
      letter-spacing: -0.075em;
    }

    .ios-hero-lead {
      max-width: 45rem;
      margin: 1.1rem 0 0;
      color: var(--landing-copy);
      font-size: clamp(1.03rem, 1.35vw, 1.22rem);
      line-height: 1.58;
    }

    .ios-cta-row {
      margin-top: 1.3rem;
    }

    .ios-primary,
    .ios-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 3.25rem;
      padding: 0.9rem 1.25rem;
      border-radius: 999px;
      font-weight: 900;
      text-decoration: none;
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
    }

    .ios-primary {
      background: linear-gradient(135deg, var(--landing-action-start), var(--landing-action-end));
      color: var(--landing-on-action-strong);
      box-shadow: 0 18px 38px rgba(255, 106, 31, 0.24);
    }

    .ios-secondary {
      background: var(--landing-surface-raised);
      color: var(--landing-title);
      border: 1px solid rgba(255, 255, 255, 0.13);
    }

    .ios-primary:hover,
    .ios-secondary:hover {
      transform: translateY(-2px);
    }

    .ios-metric-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      margin-top: 1.35rem;
    }

    .ios-metric {
      padding: 1rem;
      border-radius: 1.25rem;
      background: var(--landing-surface-subtle);
      border: 1px solid var(--landing-border);
    }

    .ios-metric strong {
      display: block;
      color: var(--landing-title);
      font-size: 1.45rem;
      line-height: 1;
      letter-spacing: -0.04em;
    }

    .ios-metric span {
      display: block;
      margin-top: 0.35rem;
      color: var(--landing-copy-muted);
      font-size: 0.86rem;
    }

    .ios-showcase {
      min-height: 38rem;
      padding: 1rem;
      display: grid;
      place-items: center;
      background:
        radial-gradient(circle at 82% 18%, rgba(255, 194, 92, 0.24), transparent 18rem),
        linear-gradient(145deg, rgba(35, 24, 19, 0.88), rgba(13, 22, 34, 0.92));
    }

    .ios-device {
      width: min(100%, 31rem);
      border-radius: 2.35rem;
      padding: 0.75rem;
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.24), var(--landing-surface));
      border: 1px solid var(--landing-border-emphasis);
      box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
    }

    .ios-screen {
      border-radius: 1.85rem;
      padding: 1rem;
      min-height: 33rem;
      background:
        radial-gradient(circle at top right, rgba(255, 143, 91, 0.22), transparent 13rem),
        linear-gradient(180deg, #121926, #07111f 88%);
      border: 1px solid var(--landing-border-strong);
      display: grid;
      gap: 0.85rem;
    }

    .ios-landing-photo {
      min-height: 13rem;
      border-radius: 1.45rem;
      overflow: hidden;
      position: relative;
      border: 1px solid var(--landing-border-strong);
      box-shadow: inset 0 1px 0 var(--landing-border);
    }

    .ios-landing-photo img {
      width: 100%;
      height: 100%;
      min-height: 13rem;
      display: block;
      object-fit: cover;
    }

    .ios-landing-photo::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(7, 17, 31, 0.03), rgba(7, 17, 31, 0.74)),
        radial-gradient(circle at 74% 28%, rgba(255, 176, 46, 0.18), transparent 12rem);
      pointer-events: none;
    }

    .ios-screen-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: var(--landing-copy-muted);
      font-size: 0.82rem;
      font-weight: 800;
    }

    .ios-screen-hero {
      min-height: 10rem;
      border-radius: 1.45rem;
      padding: 1rem;
      background:
        linear-gradient(90deg, rgba(8, 17, 34, 0.76), rgba(8, 17, 34, 0.1)),
        radial-gradient(circle at 78% 38%, rgba(255, 176, 46, 0.45), transparent 6rem),
        linear-gradient(135deg, #4b2b19, #151b29);
      display: grid;
      align-content: end;
    }

    .ios-screen-hero small {
      color: var(--landing-accent-text-soft);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }

    .ios-screen-hero strong {
      display: block;
      max-width: 15rem;
      margin-top: 0.3rem;
      color: var(--landing-title);
      font-size: 1.65rem;
      line-height: 1;
      letter-spacing: -0.055em;
    }

    .ios-mini-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.65rem;
    }

    .ios-mini-card,
    .ios-session-card,
    .ios-score-card {
      border-radius: 1.15rem;
      background: var(--landing-surface-raised);
      border: 1px solid var(--landing-border);
      padding: 0.85rem;
    }

    .ios-mini-card strong {
      display: block;
      color: var(--landing-title);
      font-size: 1.35rem;
      line-height: 1;
    }

    .ios-mini-card span,
    .ios-session-card span,
    .ios-score-card span {
      color: var(--landing-copy-muted);
      font-size: 0.78rem;
    }

    .ios-session-card {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 7rem;
      align-items: center;
      gap: 0.8rem;
    }

    .ios-session-card h3,
    .ios-score-card h3 {
      margin: 0 0 0.2rem;
      color: var(--landing-title);
      font-size: 1.1rem;
    }

    .ios-board-shape {
      min-height: 6rem;
      border-radius: 1rem;
      background:
        radial-gradient(circle at 30% 30%, #f0c36a 0 0.55rem, transparent 0.58rem),
        radial-gradient(circle at 64% 34%, #64a97e 0 0.5rem, transparent 0.54rem),
        radial-gradient(circle at 46% 64%, #d87b35 0 0.6rem, transparent 0.64rem),
        linear-gradient(135deg, #b79043, #5a7f5f);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
    }

    .ios-score-list {
      display: grid;
      gap: 0.42rem;
      margin-top: 0.7rem;
    }

    .ios-score-row {
      display: flex;
      justify-content: space-between;
      gap: 0.75rem;
      padding: 0.55rem 0.65rem;
      border-radius: 0.8rem;
      color: var(--landing-copy-strong);
      background: var(--landing-surface-subtle);
      font-size: 0.86rem;
    }

    .ios-score-row.is-active {
      color: var(--landing-accent-highlight);
      background: rgba(255, 106, 31, 0.16);
    }

    .ios-flow {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1rem;
      margin-bottom: 1.25rem;
    }

    .ios-flow-card,
    .ios-proof-card {
      padding: 1.25rem;
      display: grid;
      gap: 0.65rem;
    }

    .ios-flow-step {
      width: 2.55rem;
      height: 2.55rem;
      border-radius: 0.95rem;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--landing-action-start), var(--landing-action-end));
      color: var(--landing-on-action-strong);
      font-weight: 1000;
    }

    .ios-flow-card h3,
    .ios-proof-card h3 {
      margin: 0;
      color: var(--landing-title);
      font-size: 1.18rem;
    }

    .ios-flow-card p,
    .ios-proof-card p {
      margin: 0;
      color: var(--landing-copy-soft);
    }

    .ios-proof-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
      margin-bottom: 1.25rem;
    }

    .ios-proof-card strong {
      display: block;
      color: var(--landing-accent-highlight);
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }

    :root[data-theme="light"] .ios-hero-copy,
    :root[data-theme="light"] .ios-showcase,
    :root[data-theme="light"] .ios-flow-card,
    :root[data-theme="light"] .ios-proof-card {
      background: rgba(255, 255, 255, 0.82);
      border-color: rgba(18, 60, 112, 0.12);
      box-shadow: 0 24px 70px rgba(31, 56, 91, 0.12);
    }

    :root[data-theme="light"] .ios-hero-title,
    :root[data-theme="light"] .ios-metric strong,
    :root[data-theme="light"] .ios-flow-card h3,
    :root[data-theme="light"] .ios-proof-card h3 {
      color: var(--title-color);
    }

    :root[data-theme="light"] .ios-hero-lead,
    :root[data-theme="light"] .ios-metric span,
    :root[data-theme="light"] .ios-flow-card p,
    :root[data-theme="light"] .ios-proof-card p {
      color: var(--body-copy-soft);
    }

    :root[data-theme="light"] .ios-secondary,
    :root[data-theme="light"] .ios-metric,
    :root[data-theme="light"] .landing-final-store {
      color: var(--title-color);
      background: rgba(240, 245, 252, 0.86);
      border-color: rgba(18, 60, 112, 0.12);
    }

    :root[data-theme="light"] .landing-final-store p {
      color: var(--body-copy-soft);
    }

    :root[data-theme="light"] body {
      background: var(--landing-page-background);
      color: var(--text);
    }

    :root[data-theme="light"] .landing-topbar {
      background: var(--app-shell-bg);
      border-bottom-color: var(--border);
    }

    :root[data-theme="light"] .landing-brand-copy strong,
    :root[data-theme="light"] .hero-title,
    :root[data-theme="light"] .landing-game-result strong,
    :root[data-theme="light"] .trust-card strong,
    :root[data-theme="light"] .side-card strong,
    :root[data-theme="light"] .section-head h2,
    :root[data-theme="light"] .feature-card h3,
    :root[data-theme="light"] .audience-card h3,
    :root[data-theme="light"] .platform-card h3,
    :root[data-theme="light"] .faq-group-head h3,
    :root[data-theme="light"] .faq-item summary {
      color: var(--title-color);
    }

    :root[data-theme="light"] .landing-brand-copy span,
    :root[data-theme="light"] .hero-copy,
    :root[data-theme="light"] .landing-game-search-hint,
    :root[data-theme="light"] .landing-game-search-empty,
    :root[data-theme="light"] .landing-game-result span,
    :root[data-theme="light"] .landing-game-result p,
    :root[data-theme="light"] .trust-card span,
    :root[data-theme="light"] .side-header,
    :root[data-theme="light"] .side-card span,
    :root[data-theme="light"] .section-head p,
    :root[data-theme="light"] .feature-card p,
    :root[data-theme="light"] .audience-card p,
    :root[data-theme="light"] .platform-card p,
    :root[data-theme="light"] .platform-list,
    :root[data-theme="light"] .faq-index a,
    :root[data-theme="light"] .faq-group-head p,
    :root[data-theme="light"] .faq-answer,
    :root[data-theme="light"] .landing-final p,
    :root[data-theme="light"] .account-deleted-banner p {
      color: var(--body-copy-soft);
    }

    :root[data-theme="light"] .hero-kicker,
    :root[data-theme="light"] .section-kicker,
    :root[data-theme="light"] .side-card small,
    :root[data-theme="light"] .feature-card small,
    :root[data-theme="light"] .audience-card small,
    :root[data-theme="light"] .platform-card small,
    :root[data-theme="light"] .faq-index span,
    :root[data-theme="light"] .faq-group-head small {
      color: var(--accent-warm-readable);
    }

    :root[data-theme="light"] .hero-main,
    :root[data-theme="light"] .hero-side,
    :root[data-theme="light"] .landing-section,
    :root[data-theme="light"] .landing-game-search,
    :root[data-theme="light"] .landing-game-result,
    :root[data-theme="light"] .trust-card,
    :root[data-theme="light"] .side-card,
    :root[data-theme="light"] .feature-card,
    :root[data-theme="light"] .audience-card,
    :root[data-theme="light"] .platform-card,
    :root[data-theme="light"] .faq-index,
    :root[data-theme="light"] .faq-group,
    :root[data-theme="light"] .faq-item {
      background: var(--panel-shell);
      border-color: var(--border);
      box-shadow: var(--shadow-soft), var(--shadow-inset);
    }

    :root[data-theme="light"] .landing-secondary,
    :root[data-theme="light"] .landing-topbar .btn-outline {
      background: var(--button-ghost-bg);
      border-color: var(--border-strong);
      color: var(--title-color);
    }

    :root[data-theme="light"] .landing-game-search-form input {
      background: var(--surface);
      border-color: var(--border);
      color: var(--text);
    }

    :root[data-theme="light"] .landing-game-search-form input::placeholder {
      color: var(--text-soft);
    }

    :root[data-theme="light"] .faq-index a:hover,
    :root[data-theme="light"] .faq-item[open] {
      background: var(--panel-soft-hover);
      border-color: rgba(255, 143, 91, 0.24);
    }

    :root[data-theme="light"] .account-deleted-banner {
      background:
        linear-gradient(135deg, rgba(20, 155, 98, 0.1), rgba(255, 143, 91, 0.08)),
        var(--panel-shell);
    }

    @media (max-width: 1100px) {
      .landing-hero,
      .ios-hero,
      .landing-grid-3,
      .landing-grid-2,
      .faq-overview,
      .landing-final,
      .ios-flow,
      .ios-proof-grid {
        grid-template-columns: 1fr;
      }

      .landing-final-actions {
        justify-items: start;
      }

      .faq-index {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 720px) {
      .landing-shell * {
        min-width: 0;
        overflow-wrap: anywhere;
      }

      .ios-screen-top {
        flex-wrap: wrap;
        gap: 0.5rem;
      }

      .ios-pill {
        max-width: 100%;
      }

      .landing-shell {
        padding-left: 16px;
        padding-right: 16px;
      }

      .hero-main,
      .hero-side,
      .landing-section,
      .ios-hero-copy,
      .ios-showcase {
        padding: 16px;
        border-radius: 1.5rem;
      }

      .ios-hero-copy,
      .ios-showcase {
        min-height: auto;
      }

      .ios-metric-row,
      .ios-mini-grid,
      .ios-session-card {
        grid-template-columns: 1fr;
      }

      .hero-trust {
        grid-template-columns: 1fr;
      }

      .hero-signup-proof {
        grid-template-columns: 1fr;
      }

      .landing-topbar {
        align-items: flex-start;
        flex-direction: column;
      }

      .faq-index {
        grid-template-columns: 1fr;
      }
    }
