:root {
  --deep-navy: #081627;
  --navy: #0d2036;
  --navy-raised: #10263f;
  --border: #16324d;
  --text: #eaf4fb;
  --text-bright: #b9d2e4;
  --text-muted: #7fa3bd;
  --cyan: #4fd8eb;
  --blue: #1d6ae5;
  --blue-dark: #114fac;
  --coral: #ff7a59;
  --seafoam: #5de2b7;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 14%, rgba(29, 106, 229, 0.18), transparent 26rem),
    radial-gradient(circle at 88% 38%, rgba(79, 216, 235, 0.1), transparent 24rem),
    var(--deep-navy);
  font-family: Inter, ui-rounded, "SF Pro Rounded", "Avenir Next", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 8% 20%, rgba(79, 216, 235, 0.3) 0 2px, transparent 3px),
    radial-gradient(circle at 92% 70%, rgba(79, 216, 235, 0.22) 0 3px, transparent 4px),
    radial-gradient(circle at 74% 16%, rgba(79, 216, 235, 0.16) 0 1px, transparent 2px);
  background-size: 190px 240px, 260px 310px, 140px 190px;
  content: "";
  opacity: 0.28;
}

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

a {
  color: var(--cyan);
  text-underline-offset: 0.2em;
}

a:hover {
  color: #a8f4ff;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: var(--deep-navy);
  background: var(--cyan);
  font-weight: 800;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(79, 216, 235, 0.12);
  background: rgba(8, 22, 39, 0.86);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  width: min(calc(100% - 2rem), var(--max-width));
  min-height: 76px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  box-shadow: 0 8px 22px rgba(29, 106, 229, 0.35);
}

.brand-name {
  display: grid;
  line-height: 1.05;
}

.brand-name strong {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-name small {
  margin-top: 0.25rem;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 0.6rem 0.8rem;
  border-radius: 999px;
  color: var(--text-bright);
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
  background: var(--navy-raised);
}

.nav-links .nav-cta {
  margin-left: 0.35rem;
  color: white;
  background: var(--blue);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta[aria-current="page"] {
  color: white;
  background: #2f7cf3;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  background: var(--navy-raised);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 2rem), 790px);
  margin-inline: auto;
}

.hero {
  position: relative;
  display: grid;
  min-height: 680px;
  overflow: hidden;
  isolation: isolate;
  place-items: center;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("assets/underwater-hero.webp") center / cover no-repeat;
  content: "";
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 22, 39, 0.95) 0%, rgba(8, 22, 39, 0.76) 37%, rgba(8, 22, 39, 0.1) 72%),
    linear-gradient(0deg, var(--deep-navy) 0%, transparent 22%);
  content: "";
}

.hero-content {
  width: min(calc(100% - 2rem), var(--max-width));
  padding: 7rem 0 9rem;
}

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

.eyebrow {
  display: inline-flex;
  margin: 0 0 1.2rem;
  align-items: center;
  gap: 0.5rem;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.15rem, 5vw, 3.8rem);
  letter-spacing: -0.045em;
}

h3 {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin-bottom: 2rem;
  color: var(--text-bright);
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0.8rem 1.25rem;
  border: 0;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: white;
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(29, 106, 229, 0.28);
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  color: white;
  background: #337ef0;
  box-shadow: 0 16px 34px rgba(29, 106, 229, 0.4);
  transform: translateY(-2px);
}

.button.secondary {
  border: 1px solid rgba(234, 244, 251, 0.24);
  background: rgba(13, 32, 54, 0.72);
  box-shadow: none;
}

.button.secondary:hover {
  background: var(--navy-raised);
}

.coming-soon {
  display: inline-flex;
  margin-top: 1.4rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(79, 216, 235, 0.35);
  border-radius: 999px;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-bright);
  background: rgba(8, 22, 39, 0.5);
  font-size: 0.88rem;
  font-weight: 700;
}

.coming-soon::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 14px var(--coral);
  content: "";
}

.section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.section-tight {
  padding: 3.5rem 0;
}

.section-heading {
  display: flex;
  margin-bottom: 2.2rem;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.section-heading > div {
  max-width: 720px;
}

.section-heading p,
.lead {
  color: var(--text-bright);
  font-size: 1.12rem;
}

.section-heading p {
  margin-bottom: 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card,
.price-card,
.contact-card,
.legal-card,
.game-card,
.callout {
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(16, 38, 63, 0.96), rgba(13, 32, 54, 0.9));
  box-shadow: var(--shadow);
}

.feature-card {
  position: relative;
  min-height: 320px;
  padding: 2rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.feature-card::after {
  position: absolute;
  right: -38px;
  bottom: -55px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 216, 235, 0.2), transparent 66%);
  content: "";
}

.feature-card .card-number {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 3.5rem;
  border: 1px solid rgba(79, 216, 235, 0.35);
  border-radius: 15px;
  color: var(--cyan);
  background: rgba(79, 216, 235, 0.08);
  font-weight: 900;
  place-items: center;
}

.feature-card p {
  color: var(--text-bright);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 850;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  transition: transform 160ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.about-band {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(79, 216, 235, 0.12);
  background: rgba(13, 32, 54, 0.55);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.app-preview {
  position: relative;
  width: 100%;
  max-width: 410px;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(79, 216, 235, 0.34);
  border-radius: 42px;
  background: linear-gradient(155deg, rgba(79, 216, 235, 0.32), rgba(29, 106, 229, 0.12));
  box-shadow: 0 30px 80px rgba(2, 10, 19, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transform: rotate(-1deg);
}

.app-preview::before,
.app-preview::after {
  position: absolute;
  border: 1px solid rgba(79, 216, 235, 0.32);
  border-radius: 50%;
  content: "";
}

.app-preview::before {
  top: 8%;
  left: -44px;
  width: 18px;
  height: 18px;
  box-shadow: -20px 43px 0 -5px rgba(79, 216, 235, 0.18);
}

.app-preview::after {
  right: -34px;
  bottom: 23%;
  width: 28px;
  height: 28px;
}

.app-preview-shell {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  color: #eefbff;
  background:
    radial-gradient(circle at 82% 16%, rgba(79, 216, 235, 0.13), transparent 25%),
    linear-gradient(180deg, #0d2742 0%, #081627 100%);
}

.app-preview-topbar {
  display: flex;
  padding: 18px 20px 12px;
  align-items: center;
  justify-content: space-between;
}

.app-preview-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-preview-brand img,
.app-preview-feature img,
.app-preview-game img {
  display: block;
  object-fit: cover;
}

.app-preview-brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.app-preview-actions {
  color: var(--cyan);
  font-size: 0.65rem;
}

.app-preview-progress {
  display: grid;
  margin: 0 18px 18px;
  padding: 13px 15px;
  border: 1px solid rgba(79, 216, 235, 0.16);
  border-radius: 16px;
  grid-template-columns: 1fr auto;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.71rem;
}

.app-preview-progress > span:last-of-type {
  color: var(--text-muted);
}

.app-preview-progress i {
  overflow: hidden;
  height: 5px;
  border-radius: 999px;
  grid-column: 1 / -1;
  background: rgba(255, 255, 255, 0.1);
}

.app-preview-progress b {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--logo-blue), var(--cyan));
}

.app-preview-section {
  margin: 0 20px 10px;
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.app-preview-feature {
  display: grid;
  margin: 0 18px 10px;
  padding: 10px 13px 10px 10px;
  border: 1px solid rgba(79, 216, 235, 0.22);
  border-radius: 20px;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 11px;
  background: linear-gradient(115deg, rgba(29, 106, 229, 0.22), rgba(255, 255, 255, 0.04));
}

.app-preview-feature img {
  width: 58px;
  height: 58px;
  border-radius: 16px;
}

.app-preview-feature span,
.app-preview-game span {
  display: grid;
}

.app-preview-feature strong {
  font-size: 0.88rem;
}

.app-preview-feature small,
.app-preview-game small {
  margin-top: 2px;
  color: #a8bfd0;
  font-size: 0.64rem;
  line-height: 1.3;
}

.app-preview-feature > b {
  color: var(--cyan);
  font-size: 1.7rem;
  font-weight: 400;
}

.app-preview-grid {
  display: grid;
  margin: 0 18px 18px;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.app-preview-game {
  display: grid;
  min-width: 0;
  padding: 10px 7px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 17px;
  justify-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.035);
  text-align: center;
}

.app-preview-game img {
  width: 54px;
  height: 54px;
  border-radius: 15px;
}

.app-preview-game strong {
  font-size: 0.66rem;
  line-height: 1.15;
}

.app-preview-nav {
  display: grid;
  padding: 11px 24px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  grid-template-columns: repeat(3, 1fr);
  color: #7f9aad;
  background: rgba(3, 13, 24, 0.5);
  text-align: center;
}

.app-preview-nav span {
  display: grid;
  justify-items: center;
  gap: 2px;
  font-size: 0.82rem;
}

.app-preview-nav small {
  font-size: 0.58rem;
}

.app-preview-nav .active {
  color: var(--cyan);
}

.app-preview-note {
  position: absolute;
  right: -1.25rem;
  bottom: 1rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: var(--deep-navy);
  background: var(--cyan);
  box-shadow: var(--shadow);
  font-weight: 900;
  transform: rotate(4deg);
}

.values {
  display: flex;
  margin: 2rem 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
}

.values li {
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-bright);
  background: var(--navy-raised);
  font-size: 0.9rem;
  font-weight: 800;
}

.cta-band {
  position: relative;
  padding: clamp(3rem, 8vw, 5.5rem);
  overflow: hidden;
  border: 1px solid rgba(79, 216, 235, 0.2);
  border-radius: 34px;
  background:
    radial-gradient(circle at 90% 20%, rgba(79, 216, 235, 0.25), transparent 18rem),
    linear-gradient(125deg, #0e3154, #0d2036 68%);
  box-shadow: var(--shadow);
}

.cta-band p {
  max-width: 650px;
  color: var(--text-bright);
  font-size: 1.1rem;
}

.page-hero {
  position: relative;
  padding: clamp(6rem, 12vw, 10rem) 0 5rem;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  position: absolute;
  top: -240px;
  left: 50%;
  z-index: -1;
  width: 760px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 106, 229, 0.36), transparent 65%);
  content: "";
  transform: translateX(-50%);
}

.page-hero h1 {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(3rem, 7vw, 5.7rem);
}

.page-hero .lead {
  max-width: 720px;
  margin: 0 auto;
}

.filter-bar-wrap {
  position: sticky;
  top: 92px;
  z-index: 20;
  width: fit-content;
  max-width: calc(100% - 1rem);
  margin: 0 auto 4rem;
}

.filter-bar {
  display: flex;
  padding: 0.45rem;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(13, 32, 54, 0.92);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
  scrollbar-width: none;
}

.filter-bar::-webkit-scrollbar {
  display: none;
}

/* Scroll affordances. Each side shows only while the row really does continue
   in that direction, so a narrow screen never hides a filter silently. */
.filter-scroll {
  display: none;
  position: absolute;
  top: 1px;
  bottom: 1px;
  z-index: 1;
  width: 3.6rem;
  padding: 0;
  border: 0;
  align-items: center;
  background: none;
  cursor: pointer;
}

.filter-scroll span {
  display: flex;
  width: 1.7rem;
  height: 1.7rem;
  border: 1px solid rgba(79, 216, 235, 0.45);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  background: rgba(8, 22, 39, 0.95);
  font-size: 1.05rem;
  font-weight: 850;
  line-height: 1;
}

.filter-scroll-next {
  right: 1px;
  justify-content: flex-end;
  padding-right: 0.4rem;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(90deg, rgba(13, 32, 54, 0) 0%, rgba(13, 32, 54, 0.96) 46%);
}

.filter-scroll-prev {
  left: 1px;
  justify-content: flex-start;
  padding-left: 0.4rem;
  border-radius: 999px 0 0 999px;
  background: linear-gradient(270deg, rgba(13, 32, 54, 0) 0%, rgba(13, 32, 54, 0.96) 46%);
}

.filter-bar-wrap[data-scroll-next="true"] .filter-scroll-next,
.filter-bar-wrap[data-scroll-prev="true"] .filter-scroll-prev {
  display: flex;
}

.filter-button {
  padding: 0.6rem 0.9rem;
  border: 0;
  border-radius: 999px;
  flex: 0 0 auto;
  color: var(--text-muted);
  background: transparent;
  font-size: 0.85rem;
  font-weight: 850;
  white-space: nowrap;
  cursor: pointer;
}

.filter-button:hover,
.filter-button[aria-pressed="true"] {
  color: var(--deep-navy);
  background: var(--cyan);
}

.game-section {
  margin-bottom: 5rem;
  scroll-margin-top: 170px;
}

.game-section[hidden],
.game-card[hidden] {
  display: none;
}

.game-section-header {
  display: flex;
  margin-bottom: 1.5rem;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.game-section-header h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.game-section-header p {
  margin-bottom: 0;
  color: var(--text-muted);
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.game-card {
  position: relative;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  transition: border-color 160ms ease, transform 160ms ease;
}

.game-card:hover {
  border-color: rgba(79, 216, 235, 0.42);
  transform: translateY(-3px);
}

.game-card-top {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 1.1rem;
}

.game-icon {
  width: 92px;
  height: 92px;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.3));
}

.game-card h3 {
  margin-bottom: 0.35rem;
  font-size: 1.5rem;
}

.game-card .pitch {
  margin-bottom: 0;
  color: var(--text-bright);
}

.status-pill {
  display: inline-flex;
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.55rem;
  border: 1px solid rgba(255, 122, 89, 0.35);
  border-radius: 999px;
  color: #ffb19e;
  background: rgba(255, 122, 89, 0.08);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.game-card details {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.game-card summary {
  width: fit-content;
  color: var(--cyan);
  font-weight: 850;
  cursor: pointer;
}

.game-card summary::marker {
  color: var(--cyan);
}

.steps {
  margin: 1rem 0 0;
  padding: 0;
  counter-reset: steps;
  list-style: none;
}

.steps li {
  display: grid;
  margin-top: 0.75rem;
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: 0.75rem;
  color: var(--text-bright);
}

.steps li::before {
  display: grid;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--deep-navy);
  background: var(--cyan);
  content: counter(steps);
  counter-increment: steps;
  font-size: 0.78rem;
  font-weight: 950;
  place-items: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 1.25rem;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 100%;
  padding: 2rem;
  border-radius: var(--radius-lg);
  flex-direction: column;
}

.price-card.featured {
  border-color: var(--cyan);
  background:
    radial-gradient(circle at 100% 0%, rgba(79, 216, 235, 0.18), transparent 16rem),
    linear-gradient(145deg, #12345a, #0d2036);
  transform: translateY(-0.75rem);
}

.plan-label {
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.price {
  display: flex;
  margin: 1rem 0 1.2rem;
  align-items: end;
  gap: 0.3rem;
}

.price strong {
  font-size: 3.4rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.price span {
  color: var(--text-muted);
  font-weight: 700;
}

.plan-features {
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.plan-features li {
  position: relative;
  margin: 0.65rem 0;
  padding-left: 1.55rem;
  color: var(--text-bright);
}

.plan-features li::before {
  position: absolute;
  left: 0;
  color: var(--seafoam);
  content: "✓";
  font-weight: 950;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.fine-print {
  margin-top: 2rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  text-align: center;
}

.comparison {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--navy);
}

.comparison th,
.comparison td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.comparison th:not(:first-child),
.comparison td:not(:first-child) {
  text-align: center;
}

.comparison th {
  color: var(--cyan);
  background: var(--navy-raised);
}

.comparison td {
  color: var(--text-bright);
}

.comparison tr:last-child td {
  border-bottom: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 2rem;
}

.contact-card,
.legal-card {
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
}

.contact-details {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-details li {
  margin: 1rem 0;
  color: var(--text-bright);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--text-bright);
  font-size: 0.88rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  background: #0a1a2d;
}

.field input,
.field select {
  min-height: 50px;
  padding: 0 0.9rem;
}

.field textarea {
  min-height: 190px;
  padding: 0.8rem 0.9rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--cyan);
}

.form-note,
.form-status {
  color: var(--text-muted);
  font-size: 0.86rem;
}

.form-status {
  min-height: 1.4em;
  margin: 0.75rem 0 0;
}

.legal-card h2 {
  margin-top: 2.5rem;
  font-size: 1.65rem;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: var(--text-bright);
}

.legal-card li + li {
  margin-top: 0.5rem;
}

.legal-meta {
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.site-footer {
  margin-top: 4rem;
  border-top: 1px solid rgba(79, 216, 235, 0.12);
  background: rgba(5, 15, 27, 0.72);
}

.footer-grid {
  display: grid;
  padding: 4rem 0 2rem;
  grid-template-columns: 1.4fr 0.6fr 0.6fr;
  gap: 3rem;
}

.footer-intro {
  max-width: 420px;
  color: var(--text-muted);
}

.footer-title {
  margin-bottom: 1rem;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 0.55rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  padding: 1.5rem 0 2.5rem;
  border-top: 1px solid var(--border);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.83rem;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    right: 1rem;
    left: 1rem;
    display: none;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0 0 18px 18px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(8, 22, 39, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.8rem 1rem;
  }

  .nav-links .nav-cta {
    margin: 0.25rem 0 0;
    text-align: center;
  }

  .grid-3,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 250px;
  }

  .feature-card .card-number {
    margin-bottom: 2rem;
  }

  .price-card.featured {
    transform: none;
  }

  .about-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .app-preview {
    margin-inline: auto;
  }

  .filter-bar-wrap {
    top: 84px;
    margin-bottom: 3rem;
  }

  /* Two-column cards are too narrow to float the badge over the title. */
  .status-pill {
    position: static;
    margin: 0 0 0.9rem;
  }
}

@media (max-width: 720px) {
  .brand-name small {
    display: none;
  }

  .hero {
    min-height: auto;
    background: var(--deep-navy);
  }

  .hero::before {
    bottom: auto;
    height: 22rem;
    background-position: 68% center;
    background-size: cover;
  }

  .hero::after {
    bottom: auto;
    height: 22rem;
    background: linear-gradient(
      180deg,
      rgba(8, 22, 39, 0.02) 0%,
      rgba(8, 22, 39, 0.06) 48%,
      rgba(8, 22, 39, 0.42) 66%,
      rgba(8, 22, 39, 0.9) 84%,
      var(--deep-navy) 94%,
      var(--deep-navy) 100%
    );
  }

  .hero-content {
    padding: 20rem 0 5rem;
  }

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

  .section-heading,
  .game-section-header,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .game-section {
    scroll-margin-top: 150px;
  }

  .game-card-top {
    grid-template-columns: 76px 1fr;
  }

  .game-icon {
    width: 76px;
    height: 76px;
  }

  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 2rem;
  }

  .comparison-wrap {
    overflow-x: auto;
  }

  .comparison {
    min-width: 680px;
  }

  .app-preview-note {
    right: 0;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
