:root {
  --navy-950: #062e47;
  --navy-900: #0f4a6d;
  --navy-800: #09688e;
  --teal-600: #238ca5;
  --teal-500: #32a0b4;
  --teal-100: #dff3f2;
  --gold-500: #facf6f;
  --gold-300: #f8d79c;
  --orange-600: #cd5e34;
  --orange-400: #e69a60;
  --ink: #17323f;
  --muted: #5c7078;
  --cream: #fffaf0;
  --paper: #ffffff;
  --line: rgba(15, 74, 109, 0.14);
  --shadow: 0 24px 70px rgba(6, 46, 71, 0.13);
  --radius-lg: 34px;
  --radius-md: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 46, 71, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  width: 174px;
}

.brand img {
  width: 100%;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 30px);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 650;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--gold-500);
  transition: right 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: #fff;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.mobile-menu {
  display: none;
}

.action {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.91rem;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 170ms ease, box-shadow 170ms ease,
    background-color 170ms ease;
}

.action:hover {
  transform: translateY(-2px);
}

.action:focus-visible,
.desktop-nav a:focus-visible,
.site-footer a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
}

.action-primary {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  box-shadow: 0 12px 30px rgba(250, 207, 111, 0.2);
}

.action-secondary {
  color: #fff;
  background: var(--teal-600);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 12px 30px rgba(35, 140, 165, 0.18);
}

.site-header > .shell > .action {
  min-height: 42px;
  padding: 11px 17px;
  font-size: 0.82rem;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 10%, rgba(50, 160, 180, 0.25), transparent 30%),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 58%, #0d6680 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: linear-gradient(
      115deg,
      transparent 0 48%,
      rgba(255, 255, 255, 0.28) 49%,
      transparent 50%
    );
  background-size: 38px 38px;
  mask-image: linear-gradient(to right, transparent, #000);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  align-items: center;
  gap: 70px;
  padding-block: 82px 120px;
}

.hero-copy {
  max-width: 720px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-kicker span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--gold-500);
  font-size: 0.82rem;
  font-weight: 900;
}

.hero-kicker p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.hero h1 {
  margin: 0;
  max-width: 800px;
  font-size: clamp(3rem, 5.7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 800;
}

.hero h1 em {
  display: block;
  margin-top: 15px;
  color: var(--gold-500);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.58em;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.hero-lead {
  max-width: 700px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-actions,
.inline-actions,
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 32px;
}

.action-note {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
}

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

.river-orbit {
  position: relative;
  width: 340px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 48% 52% 56% 44% / 45% 42% 58% 55%;
  background:
    radial-gradient(circle at 38% 30%, rgba(255, 255, 255, 0.2), transparent 25%),
    linear-gradient(145deg, rgba(50, 160, 180, 0.65), rgba(9, 104, 142, 0.25));
  box-shadow:
    inset 0 0 50px rgba(255, 255, 255, 0.08),
    0 40px 80px rgba(0, 0, 0, 0.18);
  transform: rotate(-6deg);
}

.river-orbit::before,
.river-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.river-orbit::before {
  width: 260px;
  height: 260px;
}

.river-orbit::after {
  width: 180px;
  height: 180px;
}

.drop {
  position: relative;
  z-index: 2;
  width: 112px;
  height: 136px;
  display: grid;
  place-items: center;
  border-radius: 58% 42% 60% 40% / 62% 43% 57% 38%;
  color: var(--navy-950);
  background: linear-gradient(150deg, var(--gold-500), var(--orange-400));
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.2rem;
  font-weight: 700;
  box-shadow: 0 20px 45px rgba(6, 46, 71, 0.35);
  transform: rotate(6deg);
}

.orbit {
  position: absolute;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 24px rgba(250, 207, 111, 0.65);
}

.orbit-one {
  top: 46px;
  right: 56px;
  width: 13px;
  height: 13px;
}

.orbit-two {
  bottom: 68px;
  left: 54px;
  width: 8px;
  height: 8px;
}

.panel-card {
  position: absolute;
  width: 220px;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(6, 46, 71, 0.72);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.panel-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-500);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.panel-card strong {
  font-size: 0.91rem;
  line-height: 1.4;
}

.panel-card-top {
  top: 55px;
  left: -10px;
}

.panel-card-bottom {
  right: -10px;
  bottom: 58px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero-glow-one {
  width: 380px;
  height: 380px;
  left: -220px;
  bottom: -140px;
  background: rgba(250, 207, 111, 0.1);
}

.hero-glow-two {
  width: 240px;
  height: 240px;
  right: 8%;
  top: -150px;
  background: rgba(50, 160, 180, 0.18);
}

.wave-divider {
  position: absolute;
  z-index: 3;
  left: -5%;
  right: -5%;
  bottom: -72px;
  height: 140px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: var(--cream);
}

.quick-strip {
  position: relative;
  z-index: 5;
  margin-top: -36px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quick-grid article {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.quick-grid article:last-child {
  border-right: 0;
}

.quick-grid article > span {
  color: var(--orange-600);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.76rem;
  font-weight: 800;
}

.quick-grid strong {
  display: block;
  color: var(--navy-900);
  font-size: 0.95rem;
}

.quick-grid p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.section {
  position: relative;
  padding-block: 110px;
}

.section-light {
  padding-top: 130px;
  background: var(--cream);
}

.section-heading {
  max-width: 760px;
}

.section-heading .eyebrow,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange-600);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.section-heading .eyebrow::before,
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.section-heading h2,
.responsible-card h2,
.faq-intro h2,
.closing-section h2 {
  margin: 16px 0 0;
  color: var(--navy-950);
  font-size: clamp(2.2rem, 4.4vw, 4.25rem);
  line-height: 1.07;
  letter-spacing: -0.045em;
}

.section-heading > p,
.faq-intro > p,
.closing-section p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 20px;
  margin-top: 52px;
}

.story-card {
  position: relative;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.story-card-wide {
  grid-row: span 2;
  padding: 50px;
  background:
    linear-gradient(145deg, rgba(223, 243, 242, 0.82), rgba(255, 255, 255, 0.92));
}

.story-card h3,
.copy-block h3,
.wingo-main h3,
.risk-stack h3,
.payment-card h3,
.security-copy h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 1.35rem;
  line-height: 1.3;
}

.story-card p,
.copy-block p,
.wingo-main p,
.payment-card p,
.invite-grid > div > p,
.security-copy p,
.two-column-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.85;
}

.card-index {
  position: absolute;
  right: 26px;
  top: 22px;
  color: rgba(15, 74, 109, 0.13);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1;
}

.accent-card {
  background: var(--navy-900);
}

.accent-card h3,
.accent-card p {
  color: #fff;
}

.accent-card p {
  color: rgba(255, 255, 255, 0.72);
}

.accent-card .card-index {
  color: rgba(255, 255, 255, 0.11);
}

.warning-card {
  background: #fff2da;
  border-color: rgba(205, 94, 52, 0.16);
}

.process-section {
  overflow: hidden;
  background: #fff;
}

.process-section::before {
  content: "";
  position: absolute;
  left: -140px;
  top: 10%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(50, 160, 180, 0.08);
}

.split-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
}

.split-reverse {
  grid-template-columns: 1.22fr 0.78fr;
}

.phone-frame,
.mini-phone {
  position: relative;
  margin-inline: auto;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 34px;
  background: var(--navy-950);
  box-shadow: 0 35px 80px rgba(6, 46, 71, 0.24);
  overflow: hidden;
}

.phone-frame {
  width: min(100%, 380px);
  transform: rotate(-2deg);
}

.phone-frame img,
.mini-phone img {
  width: 100%;
  border-radius: 23px;
}

.phone-top {
  position: absolute;
  z-index: 2;
  top: 17px;
  left: 50%;
  width: 70px;
  height: 9px;
  border-radius: 999px;
  background: rgba(6, 46, 71, 0.86);
  transform: translateX(-50%);
}

.process-copy .section-heading {
  max-width: 700px;
}

.step-list {
  display: grid;
  gap: 0;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}

.step-list li {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding-bottom: 28px;
}

.step-list li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 50px;
  bottom: 4px;
  width: 1px;
  background: var(--line);
}

.step-list li > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(50, 160, 180, 0.24);
  border-radius: 50%;
  color: var(--navy-900);
  background: var(--teal-100);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.8rem;
  font-weight: 800;
}

.step-list h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 1.05rem;
}

.step-list p,
.notice-box p {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.inline-actions {
  margin-top: 18px;
}

.login-section {
  background: var(--teal-100);
}

.account-help-section {
  background: #fff;
}

.topic-grid {
  display: grid;
  gap: 18px;
  margin-top: 52px;
}

.topic-grid-four {
  grid-template-columns: repeat(4, 1fr);
}

.topic-grid article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--cream);
}

.topic-grid article > span,
.screen-notes article > span {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--navy-950);
  background: var(--gold-500);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.topic-grid h3,
.screen-notes h3,
.transaction-grid h3 {
  margin: 18px 0 0;
  color: var(--navy-900);
  font-size: 1.12rem;
  line-height: 1.35;
}

.topic-grid p,
.screen-notes p,
.transaction-grid p,
.screen-grid > div > p,
.category-heading p,
.category-copy p {
  margin: 13px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.detail-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 18px;
  border-radius: var(--radius-md);
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.detail-band > div {
  padding: 30px;
  background: var(--navy-900);
}

.detail-band strong {
  color: var(--gold-500);
}

.detail-band p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

.phone-frame-soft {
  background: #186f92;
  transform: rotate(2deg);
}

.copy-block {
  margin-top: 38px;
}

.notice-box {
  margin-top: 28px;
  padding: 24px 26px;
  border-left: 4px solid var(--orange-600);
  border-radius: 0 16px 16px 0;
  background: rgba(255, 255, 255, 0.72);
}

.notice-box strong {
  color: var(--navy-900);
}

.wingo-section {
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(50, 160, 180, 0.25), transparent 28%),
    var(--navy-950);
}

.wingo-section .section-heading h2,
.wingo-section .section-heading > p {
  color: #fff;
}

.wingo-section .section-heading > p {
  color: rgba(255, 255, 255, 0.68);
}

.wingo-section .eyebrow {
  color: var(--gold-500);
}

.wingo-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  margin-top: 56px;
}

.wingo-main {
  min-height: 520px;
  padding: 50px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
}

.wingo-main h3 {
  margin-top: 36px;
  color: #fff;
  font-size: 1.6rem;
}

.wingo-main p {
  color: rgba(255, 255, 255, 0.68);
}

.round-dial {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.round-dial span {
  min-height: 68px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  color: var(--gold-500);
  background: rgba(255, 255, 255, 0.05);
  font-family: var(--font-geist-mono), monospace;
  font-weight: 800;
}

.risk-stack {
  display: grid;
  gap: 16px;
}

.risk-stack article {
  position: relative;
  padding: 30px 32px 30px 84px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
}

.risk-stack article > span {
  position: absolute;
  left: 30px;
  top: 34px;
  color: var(--gold-500);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.76rem;
}

.risk-stack h3 {
  color: #fff;
}

.risk-stack p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.game-screen-section {
  background: var(--cream);
}

.screen-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: start;
}

.screen-grid > div > p:first-of-type {
  margin-top: 34px;
}

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

.screen-notes article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.screen-notes article:nth-child(2),
.screen-notes article:nth-child(3) {
  background: var(--teal-100);
}

.payments-section {
  background: #fff;
}

.payment-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.payment-flow::before {
  content: "";
  position: absolute;
  left: 16.5%;
  right: 16.5%;
  top: 38px;
  height: 2px;
  background: linear-gradient(to right, var(--teal-500), var(--gold-500), var(--orange-400));
}

.payment-card {
  position: relative;
  z-index: 2;
  padding: 88px 34px 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.payment-number {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--navy-900);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.78rem;
  font-weight: 800;
  transform: translateX(-50%);
}

.deposit-card .payment-number {
  color: var(--navy-950);
  background: var(--gold-500);
}

.withdrawal-card .payment-number {
  background: var(--orange-600);
}

.payment-checklist {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  align-items: center;
  gap: 28px;
  padding: 28px 34px;
  border-radius: var(--radius-md);
  color: #fff;
  background: var(--navy-900);
}

.payment-checklist strong {
  font-size: 1.2rem;
  line-height: 1.4;
}

.payment-checklist ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.transaction-section {
  background: var(--cream);
}

.transaction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 54px;
}

.transaction-grid article {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.transaction-grid article:nth-child(2) {
  background: var(--teal-100);
}

.transaction-tag {
  display: inline-flex;
  color: var(--orange-600);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.invite-section {
  background: #fff2da;
}

.invite-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: 70px;
}

.invite-grid strong {
  color: var(--navy-950);
}

.code-card {
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    radial-gradient(circle at 90% 0, rgba(50, 160, 180, 0.38), transparent 35%),
    var(--navy-950);
  box-shadow: var(--shadow);
}

.code-card > span {
  color: var(--gold-500);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.code-card > strong {
  display: block;
  margin: 18px 0 0;
  color: #fff;
  font-family: var(--font-geist-mono), monospace;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  letter-spacing: 0.04em;
}

.code-card > p {
  margin: 8px 0 26px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
}

.security-section {
  overflow: hidden;
  background: var(--teal-100);
}

.security-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 70px;
  margin-top: 56px;
}

.security-copy {
  display: grid;
  gap: 16px;
}

.security-copy article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 22px;
  padding: 27px;
  border: 1px solid rgba(15, 74, 109, 0.11);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.64);
}

.security-copy article > span {
  color: var(--orange-600);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.78rem;
  font-weight: 800;
}

.security-copy p {
  margin-top: 8px;
}

.security-phones {
  position: relative;
  min-height: 580px;
}

.mini-phone {
  position: absolute;
  width: 265px;
  padding: 9px;
  border-radius: 28px;
}

.mini-phone figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--navy-950);
  background: var(--gold-500);
  font-size: 0.69rem;
  font-weight: 800;
}

.mini-phone-back {
  left: 0;
  top: 36px;
  transform: rotate(-7deg);
}

.mini-phone-front {
  right: 0;
  bottom: 20px;
  transform: rotate(6deg);
}

.app-section {
  background: #fff;
}

.app-grid {
  display: grid;
  grid-template-columns: 0.38fr 1.62fr;
  align-items: center;
  gap: 70px;
}

.app-number {
  width: min(100%, 260px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 55% 45% / 45% 53% 47% 55%;
  color: var(--navy-950);
  background: linear-gradient(145deg, var(--gold-500), var(--orange-400));
  font-family: Georgia, "Times New Roman", serif;
  font-size: 8rem;
  font-weight: 700;
  box-shadow: var(--shadow);
  transform: rotate(-5deg);
}

.two-column-copy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 34px;
}

.category-section {
  color: #fff;
  background:
    radial-gradient(circle at 5% 10%, rgba(50, 160, 180, 0.28), transparent 30%),
    var(--navy-950);
}

.category-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
}

.category-heading h2 {
  margin: 17px 0 0;
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.category-heading p,
.category-copy p {
  color: rgba(255, 255, 255, 0.67);
}

.category-copy {
  columns: 2;
  column-gap: 40px;
}

.category-copy p {
  margin-top: 0;
  margin-bottom: 24px;
  break-inside: avoid;
}

.responsible-section {
  padding-top: 0;
  background: #fff;
}

.responsible-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  padding: 62px;
  border-radius: var(--radius-lg);
  background: #fff2da;
}

.responsible-card h2 {
  font-size: clamp(2rem, 3.8vw, 3.5rem);
}

.responsible-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.responsible-copy p + p {
  margin-top: 20px;
}

.faq-section {
  background: var(--cream);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 80px;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 10px;
  padding: 22px 58px 22px 24px;
  color: var(--navy-900);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  color: var(--orange-600);
  font-size: 1.5rem;
  font-weight: 400;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list summary span {
  color: var(--orange-600);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.72rem;
}

.faq-list details > p {
  margin: 0;
  padding: 0 58px 25px 78px;
  color: var(--muted);
  line-height: 1.8;
}

.closing-section {
  padding-block: 80px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 0, rgba(50, 160, 180, 0.35), transparent 30%),
    var(--navy-950);
}

.closing-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
}

.closing-section h2 {
  color: #fff;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
}

.closing-section p {
  color: rgba(255, 255, 255, 0.66);
}

.closing-actions {
  justify-content: flex-end;
}

.site-footer {
  padding-block: 64px 28px;
  color: rgba(255, 255, 255, 0.66);
  background: #041f31;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.7fr;
  gap: 60px;
}

.footer-brand img {
  width: 190px;
}

.footer-brand p,
.footer-note p {
  max-width: 440px;
  margin: 20px 0 0;
  font-size: 0.84rem;
  line-height: 1.7;
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 650;
}

.site-footer nav a:hover {
  color: var(--gold-500);
}

.footer-note strong {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--navy-950);
  background: var(--gold-500);
  font-size: 0.8rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.74rem;
}

.mobile-cta-bar {
  display: none;
}

.legal-page {
  min-height: 100vh;
  background: var(--cream);
}

.legal-header {
  color: #fff;
  background:
    radial-gradient(circle at 90% 0, rgba(50, 160, 180, 0.28), transparent 32%),
    var(--navy-950);
}

.legal-nav {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.legal-nav .brand {
  width: 185px;
}

.legal-nav > a:last-child {
  color: var(--gold-500);
  font-size: 0.86rem;
  font-weight: 750;
}

.legal-hero {
  max-width: 850px;
  padding-block: 78px 92px;
}

.legal-hero .eyebrow {
  color: var(--gold-500);
}

.legal-hero h1 {
  margin: 18px 0 0;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.legal-hero p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.legal-content {
  display: grid;
  grid-template-columns: 250px minmax(0, 760px);
  justify-content: center;
  gap: 70px;
  padding-block: 90px 110px;
}

.legal-aside {
  position: sticky;
  top: 110px;
  align-self: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.legal-aside strong {
  color: var(--navy-900);
}

.legal-aside p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.legal-article {
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.legal-article section + section {
  margin-top: 40px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.legal-article h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: 1.45rem;
  line-height: 1.3;
}

.legal-article p,
.legal-article li {
  color: var(--muted);
  line-height: 1.85;
}

.legal-article p {
  margin: 14px 0 0;
}

.legal-article ul {
  margin: 14px 0 0;
  padding-left: 22px;
}

.legal-footer {
  padding-block: 36px;
  color: rgba(255, 255, 255, 0.66);
  background: #041f31;
}

.legal-footer .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.legal-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #fff;
  font-size: 0.82rem;
}

@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: 165px 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
    justify-self: end;
  }

  .mobile-menu summary {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu nav {
    position: absolute;
    right: 0;
    top: 48px;
    width: 210px;
    display: grid;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    color: #fff;
    background: var(--navy-950);
    box-shadow: var(--shadow);
  }

  .mobile-menu nav a {
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 0.85rem;
  }

  .mobile-menu nav a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .header-inner > .action {
    justify-self: end;
  }

  .hero-grid {
    grid-template-columns: 1fr 380px;
    gap: 36px;
  }

  .hero h1 {
    font-size: clamp(3rem, 6.5vw, 4.7rem);
  }

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

  .quick-grid article:nth-child(2) {
    border-right: 0;
  }

  .quick-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .payment-flow {
    grid-template-columns: 1fr;
  }

  .topic-grid-four {
    grid-template-columns: repeat(2, 1fr);
  }

  .screen-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

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

  .payment-flow::before {
    display: none;
  }

  .payment-card {
    padding: 38px 38px 38px 110px;
  }

  .payment-number {
    left: 28px;
    top: 34px;
    transform: none;
  }

  .security-layout {
    grid-template-columns: 1fr;
  }

  .security-phones {
    width: min(100%, 580px);
    margin-inline: auto;
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(100% - 28px, 680px);
  }

  .site-header > .shell > .action {
    display: none;
  }

  .header-inner {
    min-height: 70px;
    grid-template-columns: 160px 1fr;
  }

  .hero-grid,
  .split-layout,
  .split-reverse,
  .wingo-grid,
  .invite-grid,
  .app-grid,
  .responsible-card,
  .faq-layout,
  .closing-grid,
  .footer-grid,
  .legal-content {
    grid-template-columns: 1fr;
  }

  .detail-band {
    grid-template-columns: 1fr;
  }

  .category-copy {
    columns: 1;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 70px 150px;
  }

  .hero-panel {
    min-height: 420px;
  }

  .hero-copy {
    text-align: left;
  }

  .section,
  .section-light {
    padding-block: 80px;
  }

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

  .story-card-wide {
    grid-row: auto;
  }

  .split-layout {
    gap: 60px;
  }

  .split-reverse .process-copy {
    order: 2;
  }

  .split-reverse .phone-frame {
    order: 1;
  }

  .phone-frame {
    width: min(82vw, 360px);
  }

  .payment-checklist,
  .two-column-copy {
    grid-template-columns: 1fr;
  }

  .invite-grid {
    gap: 40px;
  }

  .app-number {
    width: 180px;
    font-size: 6rem;
  }

  .responsible-card {
    gap: 34px;
    padding: 40px;
  }

  .faq-layout {
    gap: 42px;
  }

  .faq-intro,
  .legal-aside {
    position: static;
  }

  .closing-actions {
    justify-content: flex-start;
  }

  .legal-content {
    gap: 24px;
  }

  .mobile-cta-bar {
    position: fixed;
    z-index: 60;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px max(10px, env(safe-area-inset-left))
      calc(10px + env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-right));
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(6, 46, 71, 0.96);
    backdrop-filter: blur(16px);
  }

  .mobile-cta-bar .action {
    min-height: 44px;
    padding: 10px;
    font-size: 0.78rem;
  }

  .site-footer {
    padding-bottom: 98px;
  }
}

@media (max-width: 560px) {
  .brand {
    width: 148px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero h1 em {
    font-size: 0.56em;
    line-height: 1.15;
  }

  .hero-kicker {
    align-items: flex-start;
  }

  .hero-kicker p {
    max-width: 230px;
    line-height: 1.5;
  }

  .hero-actions,
  .closing-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 350px;
  }

  .river-orbit {
    width: 270px;
  }

  .river-orbit::before {
    width: 210px;
    height: 210px;
  }

  .river-orbit::after {
    width: 145px;
    height: 145px;
  }

  .drop {
    width: 88px;
    height: 106px;
    font-size: 3.4rem;
  }

  .panel-card {
    width: 190px;
    padding: 14px;
  }

  .panel-card-top {
    top: 25px;
    left: -2px;
  }

  .panel-card-bottom {
    right: 0;
    bottom: 22px;
  }

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

  .quick-grid article {
    min-height: 94px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-grid article:last-child {
    border-bottom: 0;
  }

  .section-heading h2,
  .faq-intro h2,
  .closing-section h2 {
    font-size: 2.4rem;
  }

  .story-card,
  .story-card-wide,
  .wingo-main,
  .payment-card,
  .code-card,
  .responsible-card,
  .legal-article {
    padding: 28px;
  }

  .topic-grid-four,
  .screen-notes {
    grid-template-columns: 1fr;
  }

  .topic-grid article,
  .screen-notes article,
  .transaction-grid article {
    padding: 26px;
  }

  .step-list li {
    grid-template-columns: 44px 1fr;
    gap: 15px;
  }

  .step-list li > span {
    width: 44px;
    height: 44px;
  }

  .step-list li:not(:last-child)::before {
    left: 21px;
    top: 44px;
  }

  .round-dial {
    grid-template-columns: repeat(2, 1fr);
  }

  .risk-stack article {
    padding: 26px 26px 26px 70px;
  }

  .risk-stack article > span {
    left: 25px;
    top: 30px;
  }

  .payment-card {
    padding-top: 88px;
  }

  .payment-number {
    left: 28px;
    top: 24px;
  }

  .payment-checklist {
    padding: 28px;
  }

  .payment-checklist ul {
    grid-template-columns: 1fr;
  }

  .security-copy article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .security-phones {
    min-height: 470px;
  }

  .mini-phone {
    width: 205px;
  }

  .responsible-card {
    padding: 30px;
  }

  .faq-list summary {
    grid-template-columns: 34px 1fr;
    padding: 20px 48px 20px 18px;
    font-size: 0.93rem;
  }

  .faq-list details > p {
    padding: 0 22px 22px 52px;
    font-size: 0.9rem;
  }

  .footer-bottom,
  .legal-footer .shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-hero {
    padding-block: 60px 72px;
  }

  .legal-article {
    padding: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
