:root {
  --navy: #062b4b;
  --deep: #041a34;
  --blue: #087cc9;
  --sky: #48cbe7;
  --aqua: #a8f4ef;
  --foam: #f3fffc;
  --gold: #ffc94e;
  --ink: #123552;
  --muted: #5b7490;
  --line: rgba(7, 66, 103, .13);
  --radius: 24px;
  --shadow: 0 22px 54px rgba(4, 36, 66, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--foam);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(1152px, calc(100% - 48px)); margin: 0 auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; color: #0875b6;
  font-size: .76rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
}
.eyebrow::before { width: 18px; height: 2px; border-radius: 99px; background: currentColor; content: ""; }

/* Header */
.site-header {
  position: fixed; z-index: 20; top: 0; left: 0; width: 100%;
  transition: background .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled {
  background: rgba(243, 255, 252, .92); box-shadow: 0 8px 24px rgba(3, 41, 69, .08); backdrop-filter: blur(14px);
}
.nav-wrap { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); font-weight: 850; letter-spacing: -.04em; }
.brand-mark {
  width: 35px; height: 35px; border-radius: 12px; background: linear-gradient(145deg, #45d3e9, #076fbd);
  position: relative; overflow: hidden; box-shadow: 0 6px 12px rgba(6, 110, 185, .22);
}
.brand-mark::before {
  content: ""; position: absolute; width: 36px; height: 18px; left: 4px; bottom: 7px; border: 3px solid white;
  border-color: white transparent transparent transparent; border-radius: 50%; transform: rotate(-16deg); opacity: .95;
}
.brand-mark::after {
  content: ""; position: absolute; width: 5px; height: 5px; top: 8px; right: 8px; border-radius: 50%;
  background: #fff3b9; box-shadow: -9px 5px 0 -1px rgba(255,255,255,.77);
}
.brand span { font-size: 1.14rem; }
.main-nav { display: flex; align-items: center; gap: 28px; color: #25506e; font-size: .9rem; font-weight: 700; }
.main-nav a { transition: color .16s ease; }
.main-nav a:not(.nav-download):hover { color: var(--blue); }
.nav-download { color: white; padding: 10px 15px; border-radius: 999px; background: var(--navy); box-shadow: 0 7px 16px rgba(6, 43, 75, .16); }
.nav-download:hover { background: #075d95; }
.nav-toggle { display: none; border: 0; padding: 8px; color: var(--navy); background: transparent; cursor: pointer; }
.nav-toggle svg { display: block; width: 25px; height: 25px; }

/* Home */
.hero {
  min-height: 760px; position: relative; isolation: isolate; overflow: hidden; padding: 165px 0 92px;
  background: linear-gradient(158deg, #dffffa 0%, #bcf2f5 34%, #d9fbf6 66%, #eefdff 100%);
}
.hero::before {
  content: ""; position: absolute; z-index: -2; width: 870px; height: 870px; border-radius: 50%; top: -270px; left: -220px;
  background: radial-gradient(circle at 56% 56%, rgba(255,255,255,.94) 0 5%, rgba(255,255,255,.17) 5.3% 18%, transparent 19%); opacity: .85;
}
.hero::after {
  content: ""; position: absolute; z-index: -1; width: 700px; height: 700px; border-radius: 50%; top: -280px; right: -160px;
  border: 95px solid rgba(19, 170, 216, .12);
}
.bubble {
  position: absolute; z-index: -1; display: block; border: 2px solid rgba(255,255,255,.58); border-radius: 50%;
  background: rgba(255,255,255,.12); box-shadow: inset 5px 5px 9px rgba(255,255,255,.28), 0 8px 20px rgba(7,115,156,.05);
}
.bubble.one { width: 26px; height: 26px; top: 196px; left: 8%; }
.bubble.two { width: 62px; height: 62px; top: 136px; right: 41%; }
.bubble.three { width: 20px; height: 20px; top: 478px; right: 6%; }
.bubble.four { width: 41px; height: 41px; bottom: 102px; left: 38%; }
.hero-grid { display: grid; grid-template-columns: minmax(0, .97fr) minmax(415px, 1.03fr); align-items: center; gap: 56px; }
.hero h1 {
  max-width: 610px; margin: 17px 0 19px; color: var(--navy); font-size: clamp(3.05rem, 5vw, 5rem);
  letter-spacing: -.072em; line-height: .95;
}
.hero h1 em { color: #0e91d1; font-style: normal; }
.hero-copy { max-width: 475px; margin: 0; color: #456b83; font-size: 1.08rem; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 31px; }
.store-button {
  display: inline-flex; align-items: center; gap: 10px; min-height: 52px; padding: 9px 20px; color: #fff;
  background: #061b2f; border-radius: 14px; box-shadow: 0 12px 22px rgba(3, 37, 61, .18); transition: transform .16s ease, background .16s ease;
}
.store-button:hover { transform: translateY(-2px); background: #000; }
.store-button small, .store-button strong { display: block; line-height: 1.1; }
.store-button small { font-size: .58rem; letter-spacing: .03em; }
.store-button strong { margin-top: 2px; font-size: 1.08rem; letter-spacing: -.02em; }
.text-link { color: #0c74aa; font-weight: 800; font-size: .92rem; }
.text-link::after { content: " →"; transition: margin .15s ease; }
.text-link:hover::after { margin-left: 4px; }
.rating { display: flex; align-items: center; gap: 8px; margin-top: 24px; color: #55768a; font-size: .78rem; font-weight: 650; }
.rating .stars { color: #ffb92a; letter-spacing: 1px; font-size: .95rem; }

.hero-showcase { position: relative; min-height: 480px; }
.sun-ray {
  position: absolute; top: 8px; right: 13%; width: 328px; height: 433px; clip-path: polygon(24% 0, 76% 0, 100% 100%, 0 100%);
  background: linear-gradient(180deg, rgba(255,255,255,.7), rgba(255,255,255,0)); opacity: .65;
}
.sea-orb {
  position: absolute; z-index: -1; width: 446px; height: 446px; right: 10px; top: 20px; overflow: hidden; border-radius: 45% 55% 53% 47% / 45% 46% 54% 55%;
  background: linear-gradient(160deg, #1cbbd7 0%, #0d82c7 48%, #08569b 100%); box-shadow: 0 28px 42px rgba(0, 89, 146, .22); transform: rotate(-12deg);
}
.sea-orb::before { content: ""; position: absolute; width: 570px; height: 150px; left: -71px; bottom: -60px; border-radius: 49%; background: #044e8d; box-shadow: 0 -24px 0 rgba(14,133,188,.38); }
.sea-orb::after { content: ""; position: absolute; width: 152px; height: 128px; bottom: 47px; right: 42px; border-radius: 50% 20% 47% 20%; border: 7px solid rgba(85,235,199,.36); border-left: 0; transform: rotate(27deg); }
.phone-shot {
  position: absolute; z-index: 2; top: 0; left: 63px; width: 238px; padding: 7px; border: 3px solid rgba(255,255,255,.78);
  border-radius: 34px; background: #073c67; box-shadow: 0 28px 38px rgba(3, 37, 69, .26); transform: rotate(-7deg);
}
.phone-shot img { display: block; width: 100%; border-radius: 25px; }
.floating-card {
  position: absolute; z-index: 3; display: flex; align-items: center; justify-content: center; width: 112px; height: 146px; color: #14314e;
  border: 3px solid rgba(255,255,255,.73); border-radius: 19px; background: linear-gradient(140deg, #fff 0%, #dafbf1 100%);
  box-shadow: 0 20px 28px rgba(0,47,81,.2); font-family: Georgia, serif; font-size: 4.4rem; font-weight: 700; line-height: 1; transform: rotate(14deg);
}
.floating-card::before { content: "A"; position: absolute; top: 11px; left: 14px; font-size: 1.35rem; }
.floating-card::after { content: "♠"; position: absolute; bottom: 8px; right: 12px; font-size: 1.32rem; }
.card-one { top: 46px; right: 8px; }
.card-two { z-index: 1; right: -4px; bottom: 30px; color: #d43c41; transform: rotate(25deg) scale(.77); opacity: .92; }
.card-two::after { content: "♥"; }
.coin {
  position: absolute; z-index: 4; width: 54px; height: 54px; border: 4px solid #ffda72; border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, #fff5ac 0 7%, #ffce4a 20%, #e79b1b 75%); box-shadow: 0 8px 10px rgba(131,82,0,.2);
}
.coin::after { content: "✦"; position: absolute; left: 12px; top: 7px; color: #fff6c9; font-size: 24px; }
.coin.one { left: 12px; bottom: 50px; transform: rotate(-12deg); }
.coin.two { right: 118px; top: -13px; transform: scale(.72); }
.wave-edge { position: absolute; z-index: 0; height: 90px; right: -2%; bottom: -1px; left: -2%; background: var(--foam); clip-path: ellipse(63% 48% at 47% 100%); }

.quick-facts { position: relative; z-index: 3; margin-top: -46px; }
.facts-panel {
  display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; border: 1px solid rgba(10, 83, 124, .10);
  border-radius: 18px; background: rgba(255,255,255,.9); box-shadow: 0 17px 38px rgba(4, 47, 79, .10); backdrop-filter: blur(10px);
}
.fact { display: flex; align-items: center; gap: 14px; min-height: 98px; padding: 20px 28px; }
.fact + .fact { border-left: 1px solid var(--line); }
.fact-icon { display: grid; flex: 0 0 auto; width: 40px; height: 40px; place-items: center; color: #fff; border-radius: 13px; background: linear-gradient(145deg, #4edadd, #0c87c6); font-size: 1.25rem; }
.fact strong, .fact span { display: block; }
.fact strong { color: var(--navy); font-size: .92rem; }
.fact span { margin-top: 4px; color: var(--muted); font-size: .78rem; line-height: 1.35; }

.section { padding: 118px 0; }
.section-heading { max-width: 600px; }
.section-heading h2 { margin: 13px 0 16px; color: var(--navy); font-size: clamp(2.2rem, 3.8vw, 3.35rem); letter-spacing: -.058em; line-height: 1.02; }
.section-heading p { margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.72; }
.gameplay { position: relative; overflow: hidden; }
.gameplay::before { content: ""; position: absolute; width: 452px; height: 452px; right: -220px; top: 145px; border: 65px solid rgba(73,207,218,.10); border-radius: 50%; }
.feature-grid { display: grid; grid-template-columns: 1.13fr .87fr; align-items: center; gap: clamp(40px, 8vw, 110px); margin-top: 60px; }
.feature-list { display: grid; gap: 13px; }
.feature { display: grid; grid-template-columns: 47px 1fr; gap: 17px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.feature:first-child { padding-top: 0; }
.feature-number { display: grid; width: 42px; height: 42px; place-items: center; color: #0876af; border-radius: 14px; background: #daf8f3; font-size: .84rem; font-weight: 850; }
.feature h3 { margin: 0; color: #123d5a; font-size: 1.08rem; letter-spacing: -.02em; }
.feature p { margin: 6px 0 0; color: var(--muted); font-size: .9rem; line-height: 1.62; }
.play-detail { min-height: 570px; position: relative; display: grid; place-items: center; }
.play-detail::before { content: ""; position: absolute; width: 342px; height: 342px; border-radius: 41% 59% 52% 48% / 50% 43% 57% 50%; background: linear-gradient(145deg, #58d8e4, #1594cd); transform: rotate(20deg); box-shadow: 0 23px 37px rgba(17,137,190,.18); }
.detail-shot { position: relative; width: min(245px, 70%); padding: 7px; border-radius: 31px; background: #fff; box-shadow: 0 28px 42px rgba(2,49,78,.26); transform: rotate(6deg); }
.detail-shot img { display: block; width: 100%; border-radius: 24px; }
.detail-chip { position: absolute; right: -28px; bottom: 45px; padding: 13px 15px; color: var(--navy); border-radius: 13px; background: #fff; box-shadow: 0 12px 25px rgba(2,57,89,.16); font-size: .78rem; font-weight: 800; }
.detail-chip::before { content: "✦"; margin-right: 6px; color: #eb9d17; }

.rewards { position: relative; overflow: hidden; background: #062e50; }
.rewards::before { content: ""; position: absolute; width: 122%; height: 250px; top: -143px; left: -11%; border-radius: 50%; background: var(--foam); }
.rewards .section-heading { position: relative; max-width: 570px; padding-top: 37px; }
.rewards .eyebrow { color: #67d9dc; }
.rewards .section-heading h2 { color: #fff; }
.rewards .section-heading p { color: #bfd7e6; }
.reward-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 51px; }
.reward-card { position: relative; min-height: 281px; overflow: hidden; padding: 26px; border: 1px solid rgba(161,243,244,.17); border-radius: var(--radius); background: linear-gradient(145deg, rgba(23,102,150,.92), rgba(8,59,100,.92)); box-shadow: inset 0 1px rgba(255,255,255,.12); }
.reward-card:nth-child(2) { transform: translateY(25px); background: linear-gradient(145deg, #127da7, #075689); }
.reward-card:nth-child(3) { background: linear-gradient(145deg, #0c4f80, #073861); }
.reward-card h3 { position: relative; margin: 47px 0 9px; color: #fff; font-size: 1.2rem; letter-spacing: -.03em; }
.reward-card p { position: relative; max-width: 220px; margin: 0; color: #c7e6ef; font-size: .87rem; line-height: 1.6; }
.reward-mark { position: absolute; top: 26px; left: 26px; width: 48px; height: 48px; border-radius: 16px; background: rgba(195,255,238,.16); color: #9affd9; display: grid; place-items: center; font-size: 1.35rem; }
.reward-card .card-art { position: absolute; width: 95px; height: 129px; right: -3px; bottom: -9px; border: 3px solid rgba(255,255,255,.45); border-radius: 15px; background: linear-gradient(150deg, rgba(255,255,255,.96), rgba(178,246,239,.86)); box-shadow: 0 9px 22px rgba(1,37,66,.21); transform: rotate(13deg); }
.reward-card .card-art::before { content: "?"; position: absolute; left: 27px; top: 18px; color: #1678a8; font: 700 4rem Georgia, serif; }
.reward-card .wheel-art { position: absolute; right: 20px; bottom: 19px; width: 116px; height: 116px; border: 9px solid #96e6ef; border-radius: 50%; background: conic-gradient(#ffd454 0 16.6%, #f588b8 0 33.2%, #95e777 0 49.8%, #83d8f0 0 66.4%, #c49aee 0 83%, #ffb15b 0); box-shadow: 0 0 0 6px #1185b3, 0 8px 18px rgba(1,35,61,.23); }
.reward-card .wheel-art::before { content: ""; position: absolute; width: 22px; height: 22px; top: 38px; left: 38px; border-radius: 50%; background: #0b78ad; box-shadow: 0 0 0 5px #f9ce41; }
.reward-card .undo-art { position: absolute; right: 19px; bottom: 18px; width: 110px; height: 110px; border-radius: 38px; background: linear-gradient(135deg, #3cd1e1, #087bbe); box-shadow: inset 0 0 0 6px rgba(255,255,255,.16), 0 9px 19px rgba(0,34,61,.23); }
.reward-card .undo-art::before { content: "↶"; position: absolute; top: 14px; left: 23px; color: #fff; font-size: 67px; line-height: 1; }

.screens { padding-bottom: 126px; background: #ecfbf8; overflow: hidden; }
.screens-intro { display: flex; align-items: end; justify-content: space-between; gap: 32px; }
.screens-intro .section-heading { max-width: 650px; }
.screen-note { max-width: 215px; margin: 0 0 5px; color: #658498; font-size: .82rem; line-height: 1.55; }
.screen-strip { display: flex; gap: 25px; width: max-content; margin: 49px 0 0; transform: translateX(max(0px, calc((100vw - 1152px) / 2))); }
.screen-item { position: relative; width: 202px; padding: 5px; border: 2px solid #fff; border-radius: 27px; background: #0b6fa5; box-shadow: 0 16px 29px rgba(2,60,84,.17); transition: transform .2s ease; }
.screen-item:hover { transform: translateY(-10px) rotate(-1deg); }
.screen-item:nth-child(even) { margin-top: 33px; }
.screen-item img { display: block; width: 100%; border-radius: 20px; }
.screen-caption { position: absolute; z-index: 2; right: 12px; bottom: 17px; left: 12px; padding: 10px 11px; color: #fff; border-radius: 12px; background: rgba(4,37,66,.7); backdrop-filter: blur(6px); font-size: .72rem; font-weight: 750; }

.final-cta { position: relative; overflow: hidden; padding: 105px 0; color: #fff; background: linear-gradient(116deg, #0a80bb 0%, #0875ba 45%, #064e89 100%); }
.final-cta::before, .final-cta::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.16); }
.final-cta::before { width: 520px; height: 520px; top: -310px; left: -150px; box-shadow: 0 0 0 74px rgba(255,255,255,.04), 0 0 0 146px rgba(255,255,255,.03); }
.final-cta::after { width: 345px; height: 345px; right: -109px; bottom: -225px; background: rgba(34,221,206,.17); }
.cta-grid { position: relative; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
.final-cta .eyebrow { color: #aefaf0; }
.final-cta h2 { max-width: 550px; margin: 14px 0 0; font-size: clamp(2.2rem, 4vw, 3.5rem); letter-spacing: -.06em; line-height: 1.03; }
.final-cta .store-button { background: #fff; color: #082b49; box-shadow: 0 13px 29px rgba(2,45,80,.24); }

/* Legal pages */
.legal-page { background: linear-gradient(180deg, #edfdf9 0, #f8fffe 450px, #fff 450px); }
.legal-hero { padding: 155px 0 63px; text-align: center; }
.legal-hero .eyebrow { justify-content: center; }
.legal-hero h1 { max-width: 680px; margin: 15px auto 12px; color: var(--navy); font-size: clamp(2.65rem, 5vw, 4.25rem); letter-spacing: -.065em; line-height: 1; }
.legal-hero p { max-width: 580px; margin: 0 auto; color: var(--muted); font-size: 1rem; line-height: 1.65; }
.legal-layout { display: grid; grid-template-columns: 195px minmax(0, 760px); justify-content: center; align-items: start; gap: 56px; padding-bottom: 104px; }
.legal-toc { position: sticky; top: 112px; padding: 18px 0; }
.legal-toc strong { display: block; margin-bottom: 10px; color: var(--navy); font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; }
.legal-toc a { display: block; padding: 8px 0; color: #668398; font-size: .84rem; transition: color .15s ease; }
.legal-toc a:hover { color: #0d7db4; }
.legal-card { padding: clamp(30px, 5vw, 58px); border: 1px solid rgba(6,74,110,.10); border-radius: 27px; background: #fff; box-shadow: 0 19px 47px rgba(12,66,91,.09); }
.legal-card > *:first-child { margin-top: 0; }
.legal-card h2 { margin: 43px 0 13px; color: var(--navy); font-size: 1.38rem; letter-spacing: -.025em; scroll-margin-top: 110px; }
.legal-card h3 { margin: 26px 0 8px; color: #1c506d; font-size: 1rem; }
.legal-card p, .legal-card li { color: #4f6f85; font-size: .95rem; line-height: 1.78; }
.legal-card p { margin: 0 0 16px; }
.legal-card ul { padding-left: 22px; margin: 0 0 17px; }
.legal-card li + li { margin-top: 8px; }
.legal-callout { margin: 28px 0; padding: 18px 20px; border-left: 4px solid #13b5c2; border-radius: 0 12px 12px 0; background: #e9fbf8; color: #27627a; font-size: .93rem; font-weight: 650; line-height: 1.65; }
.legal-callout strong { color: var(--navy); }
.policy-date { color: #5b7890; font-size: .84rem; font-weight: 700; }
.contact-link { color: #0877b1; font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }

/* Footer */
.site-footer { color: #aec7d7; background: #041e38; }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 35px 0; }
.footer-brand { color: #fff; }
.footer-brand .brand-mark { transform: scale(.84); transform-origin: left center; }
.footer-copy { margin: 9px 0 0; color: #8caabd; font-size: .74rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 20px; font-size: .82rem; font-weight: 650; }
.footer-links a { transition: color .15s ease; }
.footer-links a:hover { color: #73e2de; }

@media (max-width: 850px) {
  .main-nav { position: absolute; top: 64px; right: 24px; left: 24px; display: none; align-items: stretch; gap: 0; padding: 10px; border: 1px solid rgba(5,60,93,.10); border-radius: 17px; background: rgba(255,255,255,.98); box-shadow: 0 15px 29px rgba(2,47,74,.14); }
  .main-nav.is-open { display: flex; flex-direction: column; }
  .main-nav a { padding: 12px; }
  .main-nav .nav-download { margin: 4px 0; text-align: center; }
  .nav-toggle { display: block; }
  .hero { min-height: unset; padding-top: 132px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .hero-content { text-align: center; }
  .hero h1, .hero-copy { margin-right: auto; margin-left: auto; }
  .hero-actions, .rating { justify-content: center; }
  .hero-showcase { width: min(540px, 100%); min-height: 440px; margin: 0 auto; }
  .sea-orb { right: 50%; transform: translateX(50%) rotate(-12deg); }
  .phone-shot { left: calc(50% - 160px); }
  .floating-card.card-one { right: calc(50% - 250px); }
  .floating-card.card-two { right: calc(50% - 260px); }
  .coin.one { left: calc(50% - 250px); }
  .facts-panel { grid-template-columns: 1fr; }
  .fact + .fact { border-top: 1px solid var(--line); border-left: 0; }
  .fact { min-height: 82px; }
  .feature-grid { grid-template-columns: 1fr; }
  .play-detail { order: -1; min-height: 435px; }
  .reward-grid { grid-template-columns: 1fr; max-width: 450px; }
  .reward-card:nth-child(2) { transform: none; }
  .screens-intro { align-items: start; flex-direction: column; gap: 3px; }
  .screen-strip { transform: translateX(24px); }
  .cta-grid { grid-template-columns: 1fr; }
  .final-cta .store-button { width: fit-content; }
  .legal-layout { grid-template-columns: 1fr; gap: 0; }
  .legal-toc { display: none; }
}

@media (max-width: 560px) {
  .container { width: calc(100% - 32px); }
  .nav-wrap { height: 64px; }
  .nav-toggle { display: grid; place-items: center; width: 34px; height: 34px; margin-left: auto; border: 1px solid rgba(6,43,75,.18); border-radius: 10px; background: rgba(255,255,255,.55); }
  .brand span { font-size: 1.03rem; }
  .hero { padding: 107px 0 75px; }
  .hero h1 { font-size: 2.85rem; line-height: .99; }
  .hero h1 em { display: block; }
  .hero-copy { max-width: 310px; font-size: .96rem; }
  .hero-showcase { min-height: 371px; transform: scale(.82); width: 122%; margin-left: -11%; }
  .quick-facts { margin-top: -8px; }
  .fact { padding: 16px 18px; }
  .section { padding: 80px 0; }
  .section-heading h2 { font-size: 2.25rem; }
  .play-detail { min-height: 341px; }
  .play-detail::before { width: 252px; height: 252px; }
  .detail-shot { width: 188px; }
  .detail-chip { right: 4px; bottom: 14px; }
  .rewards .section-heading { padding-top: 18px; }
  .reward-grid { margin-top: 35px; }
  .screen-strip { gap: 16px; margin-top: 35px; transform: translateX(16px); }
  .screen-item { width: 180px; }
  .final-cta { padding: 78px 0; }
  .footer-grid { align-items: flex-start; flex-direction: column; gap: 23px; }
  .footer-links { justify-content: flex-start; gap: 15px; }
  .legal-hero { padding: 126px 0 44px; }
  .legal-layout { padding-bottom: 64px; }
  .legal-card { border-radius: 20px; }
}
