 

@font-face {
  font-family: "Glade Display";
  src: url("../fonts/glade-display.woff2") format("woff2");
  font-weight: 300 900;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Glade Text";
  src: url("../fonts/glade-text.woff2") format("woff2");
  font-weight: 300 800;
  font-display: swap;
  font-style: normal;
}

:root {
  color-scheme: light;
  --abyss: #041a24;
  --deep: #062a3a;
  --sea: #0a4256;
  --teal: #0e7c8b;
  --tide: #19a7b0;
  --foam: #5fe3d2;
  --mist: #cfeef0;
  --sand: #f3efe4;
  --paper: #f6fbfb;
  --ink: #08222c;
  --slate: #3f5a63;
  --line: rgba(8, 60, 74, 0.14);
  --line-dark: rgba(255, 255, 255, 0.14);

  --display: "Glade Display", Georgia, "Times New Roman", serif;
  --body: "Glade Text", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container: 75rem;
  --gap: clamp(1rem, 3vw, 2.5rem);
  --radius: 1.1rem;
  --radius-sm: 0.6rem;
  --shadow: 0 1.6rem 3.4rem rgba(4, 26, 36, 0.18);
  --shadow-soft: 0 0.7rem 1.6rem rgba(4, 26, 36, 0.1);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.68;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--teal);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
h1,
h2,
h3,
h4 {
  font-family: var(--display);
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.012em;
  font-weight: 700;
}
p {
  margin: 0 0 1rem;
}
ul {
  margin: 0;
}
button {
  font-family: inherit;
}
:focus-visible {
  outline: 0.18rem solid var(--foam);
  outline-offset: 0.18rem;
  border-radius: 0.3rem;
}

.shell {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.75rem);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tide);
}
.eyebrow::before {
  content: "";
  width: 1.6rem;
  height: 0.12rem;
  background: var(--tide);
  border-radius: 2px;
}
.eyebrow.light {
  color: var(--foam);
}
.eyebrow.light::before {
  background: var(--foam);
}

.btn {
  --bg: var(--foam);
  --fg: var(--abyss);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.92rem 1.6rem;
  border: 0;
  border-radius: 999px;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  text-decoration: none;
}
.btn:hover {
  transform: translateY(-0.18rem);
  box-shadow: 0 0.9rem 1.8rem rgba(95, 227, 210, 0.35);
  text-decoration: none;
}
.btn.ghost {
  --bg: transparent;
  --fg: #eafafa;
  border: 0.1rem solid rgba(255, 255, 255, 0.5);
}
.btn.ghost:hover {
  box-shadow: none;
  background: rgba(255, 255, 255, 0.12);
}
.btn.solid {
  --bg: var(--teal);
  --fg: #fff;
}
.btn.solid:hover {
  box-shadow: 0 0.9rem 1.8rem rgba(14, 124, 139, 0.35);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(4, 26, 36, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-dark);
}
.topbar .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.6rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.42rem;
  letter-spacing: -0.01em;
}
.brand:hover {
  text-decoration: none;
}
.brand svg {
  width: 2.1rem;
  height: 2.1rem;
  flex: none;
}
.brand b {
  color: var(--foam);
  font-weight: 700;
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}
.nav a {
  color: rgba(234, 250, 250, 0.86);
  font-weight: 600;
  font-size: 0.96rem;
  position: relative;
  padding: 0.3rem 0;
}
.nav a:hover {
  color: #fff;
  text-decoration: none;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1rem;
  width: 0;
  height: 0.13rem;
  background: var(--foam);
  border-radius: 2px;
  transition: width 0.28s var(--ease);
}
.nav a:hover::after,
.nav a[aria-current="page"]::after {
  width: 100%;
}
.nav a[aria-current="page"] {
  color: #fff;
}
.nav .btn {
  margin-left: 0.4rem;
}

.burger {
  display: none;
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid var(--line-dark);
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  position: relative;
}
.burger span,
.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1.25rem;
  height: 0.13rem;
  background: var(--foam);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.burger span {
  top: 50%;
  margin-top: -0.06rem;
}
.burger span::before {
  top: -0.46rem;
}
.burger span::after {
  top: 0.46rem;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, var(--deep), var(--abyss));
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  transition: opacity 0.35s var(--ease), transform 0.45s var(--ease), visibility 0.35s;
}
.overlay.open {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.overlay nav {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  text-align: center;
}
.overlay a {
  color: #eafafa;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.7rem, 7vw, 2.6rem);
}
.overlay a:hover {
  color: var(--foam);
  text-decoration: none;
}
.overlay .meta {
  margin-top: 1.6rem;
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--mist);
}
.overlay-close {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.06);
  color: var(--foam);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}
body.lock {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: clamp(34rem, 84vh, 46rem);
  display: flex;
  align-items: center;
  color: #eafafa;
  isolation: isolate;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, rgba(4, 26, 36, 0.92) 8%, rgba(6, 42, 58, 0.7) 48%, rgba(10, 66, 86, 0.42) 100%);
}
.hero .shell {
  padding-block: clamp(3rem, 8vw, 5.5rem);
}
.hero-copy {
  max-width: 42rem;
}
.hero h1 {
  font-size: clamp(2.7rem, 6.4vw, 4.7rem);
  font-weight: 800;
  margin: 1.1rem 0 1.1rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--foam);
  font-weight: 600;
}
.hero p.lead {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: var(--mist);
  max-width: 36rem;
  margin-bottom: 1.9rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.4rem, 4vw, 3rem);
  margin-top: 2.6rem;
  padding-top: 1.7rem;
  border-top: 1px solid var(--line-dark);
}
.hero-stats div strong {
  display: block;
  font-family: var(--display);
  font-size: 1.95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.hero-stats div span {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--mist);
}

.band {
  padding-block: clamp(3.6rem, 8vw, 6rem);
}
.band.tint {
  background: linear-gradient(180deg, #eef7f7, #ffffff);
}
.band.dark {
  background: radial-gradient(120% 130% at 80% 0%, #0a4256 0%, var(--deep) 55%, var(--abyss) 100%);
  color: #eafafa;
}
.band.dark h2,
.band.dark h3 {
  color: #fff;
}
.section-head {
  max-width: 44rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}
.section-head h2 {
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  margin: 0.7rem 0 0.8rem;
}
.section-head p {
  color: var(--slate);
  font-size: 1.08rem;
}
.band.dark .section-head p {
  color: var(--mist);
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.section-head.center .eyebrow {
  justify-content: center;
}

.spotlight {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
  background: linear-gradient(150deg, var(--sea), var(--deep));
  color: #eafafa;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.spotlight-media {
  position: relative;
  min-height: 22rem;
  height: 100%;
}
.spotlight-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.spotlight-media .badge {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  background: rgba(4, 26, 36, 0.78);
  color: var(--foam);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
}
.spotlight-body {
  padding: clamp(1.6rem, 4vw, 3rem) clamp(1.6rem, 4vw, 3rem) clamp(1.6rem, 4vw, 3rem) 0;
}
.spotlight-body .row-icon {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.spotlight-body .row-icon img {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
}
.spotlight-body h3 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
}
.spotlight-body .genre {
  font-size: 0.85rem;
  color: var(--mist);
  letter-spacing: 0.04em;
}
.spotlight-body p {
  color: var(--mist);
  margin: 0.9rem 0 1.4rem;
}
@media (max-width: 48rem) {
  .spotlight-body {
    padding: 0 clamp(1.4rem, 5vw, 2rem) 2rem;
  }
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(17.5rem, 1fr));
  gap: clamp(1.1rem, 2.5vw, 1.7rem);
}
.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.review:hover {
  transform: translateY(-0.4rem);
  box-shadow: var(--shadow);
}
.review-shot {
  aspect-ratio: 16 / 10;
  background: var(--sea);
  overflow: hidden;
}
.review-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.review:hover .review-shot img {
  transform: scale(1.06);
}
.review-top {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  padding: 1.1rem 1.2rem 0;
}
.review-top img {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 0.75rem;
  flex: none;
  box-shadow: var(--shadow-soft);
}
.review-top h3 {
  font-size: 1.16rem;
  margin: 0;
}
.review-top .cat {
  font-size: 0.78rem;
  color: var(--slate);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.review-body {
  padding: 0.85rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.review-body p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--slate);
}
.score {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--teal);
}
.stars {
  --pct: 90%;
  display: inline-block;
  font-size: 0.98rem;
  line-height: 1;
  background: linear-gradient(90deg, #f4b740 var(--pct), #d7e3e5 var(--pct));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.06em;
}
.review .play-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--teal);
}
.review .play-link svg {
  width: 0.95rem;
  height: 0.95rem;
}

.rows {
  display: flex;
  flex-direction: column;
  gap: clamp(2.4rem, 6vw, 4.5rem);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.6rem, 5vw, 4rem);
  align-items: center;
}
.split:nth-child(even) .split-media {
  order: 2;
}
.split-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 5 / 4;
}
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-media .tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(4, 26, 36, 0.78);
  color: var(--foam);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
}
.split-body h3 {
  font-size: clamp(1.6rem, 3.6vw, 2.5rem);
  margin: 0.7rem 0 0.9rem;
}
.split-body p {
  color: var(--slate);
}
.band.dark .split-body p {
  color: var(--mist);
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 0.75rem;
}
.feature-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.98rem;
}
.feature-list svg {
  flex: none;
  width: 1.35rem;
  height: 1.35rem;
  color: var(--tide);
  margin-top: 0.1rem;
}
.band.dark .feature-list svg {
  color: var(--foam);
}

.quotes {
  columns: 3 18rem;
  column-gap: 1.5rem;
}
.quote {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.3rem;
}
.quote p {
  font-size: 0.98rem;
  color: var(--mist);
  margin: 0 0 1rem;
}
.quote .who {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.quote .avatar {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--abyss);
  background: var(--foam);
  flex: none;
}
.quote .who b {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}
.quote .who div span {
  font-size: 0.8rem;
  color: var(--mist);
}
.quote .ministars {
  color: #f4b740;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.7rem;
}

.board-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
table.board {
  width: 100%;
  border-collapse: collapse;
  min-width: 40rem;
}
table.board th,
table.board td {
  padding: 1rem 1.15rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
table.board thead th {
  background: var(--deep);
  color: var(--mist);
  font-family: var(--body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
table.board tbody tr:last-child td {
  border-bottom: 0;
}
table.board tbody tr:hover {
  background: #eef7f7;
}
table.board .rank {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--teal);
  width: 3rem;
}
table.board .game {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  white-space: normal;
}
table.board .game img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.55rem;
  flex: none;
}
table.board .game b {
  font-weight: 700;
}
table.board .bar {
  display: inline-block;
  height: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--tide), var(--foam));
  vertical-align: middle;
}

.faq {
  display: grid;
  gap: 0.85rem;
  max-width: 50rem;
}
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 1.3rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.12rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--ink);
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  font-family: var(--body);
  font-size: 1.5rem;
  color: var(--tide);
  transition: transform 0.3s var(--ease);
  line-height: 1;
}
.faq details[open] summary::after {
  transform: rotate(45deg);
}
.faq details p {
  padding: 0 1.3rem 1.25rem;
  margin: 0;
  color: var(--slate);
  font-size: 0.98rem;
}

.signup {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.6rem, 4vw, 3.2rem);
  align-items: stretch;
  background: linear-gradient(150deg, var(--sea), var(--abyss));
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  color: #eafafa;
}
.signup-info {
  padding: clamp(1.8rem, 4vw, 3rem);
  position: relative;
  isolation: isolate;
}
.signup-info::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.22;
  background: url("../img/current-strip.webp") center/cover no-repeat;
}
.signup-info h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  color: #fff;
}
.signup-info p {
  color: var(--mist);
}
.benefit {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: grid;
  gap: 0.85rem;
}
.benefit li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.98rem;
}
.benefit svg {
  flex: none;
  width: 1.35rem;
  height: 1.35rem;
  color: var(--foam);
  margin-top: 0.1rem;
}
.contact-line {
  margin-top: 1.7rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-dark);
  display: grid;
  gap: 0.55rem;
  font-size: 0.95rem;
}
.contact-line a {
  color: var(--foam);
}
.contact-line span {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  color: var(--mist);
}
.contact-line svg {
  width: 1.05rem;
  height: 1.05rem;
  color: var(--foam);
  flex: none;
}

.signup-form {
  background: #fff;
  color: var(--ink);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.signup-form h3 {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}
.field {
  margin-bottom: 1rem;
}
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--sea);
  margin-bottom: 0.4rem;
}
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"] {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #f4f9f9;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  transition: border 0.2s, box-shadow 0.2s;
}
.field input:focus {
  outline: 0;
  border-color: var(--tide);
  box-shadow: 0 0 0 0.18rem rgba(25, 167, 176, 0.22);
}
.consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--slate);
  margin: 0.4rem 0 1.2rem;
}
.consent input {
  margin-top: 0.2rem;
  width: 1.05rem;
  height: 1.05rem;
  flex: none;
  accent-color: var(--teal);
}
.consent a {
  color: var(--teal);
  font-weight: 600;
}
.signup-form .btn {
  width: 100%;
}
.success-msg {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(25, 167, 176, 0.14);
  border: 1px solid var(--tide);
  color: var(--sea);
  font-size: 0.92rem;
  font-weight: 600;
}
.success-msg.show {
  display: block;
}

.strip {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 4vw, 3rem);
  align-items: center;
  justify-content: center;
  opacity: 0.92;
}
.strip .chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--mist);
}
.strip .chip img {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.5rem;
}

.prose {
  max-width: 48rem;
}
.prose h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 2.2rem 0 0.8rem;
}
.prose h3 {
  font-size: 1.25rem;
  margin: 1.6rem 0 0.5rem;
}
.prose p,
.prose li {
  color: var(--slate);
}
.prose ul {
  padding-left: 1.3rem;
  margin: 0 0 1rem;
}
.prose li {
  margin-bottom: 0.4rem;
}
.prose a {
  color: var(--teal);
  font-weight: 600;
}
.page-hero {
  position: relative;
  color: #eafafa;
  padding-block: clamp(3.4rem, 8vw, 5rem);
  isolation: isolate;
  overflow: hidden;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, rgba(4, 26, 36, 0.92), rgba(10, 66, 86, 0.6));
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: 30rem;
}
.page-hero p {
  color: var(--mist);
  max-width: 38rem;
  margin-top: 0.8rem;
  font-size: 1.1rem;
}
.crumb {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--foam);
  font-weight: 700;
  margin-bottom: 0.7rem;
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.3rem;
  margin-bottom: 2.6rem;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
}
.contact-card .ico {
  width: 3rem;
  height: 3rem;
  border-radius: 0.8rem;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, var(--tide), var(--teal));
  color: #fff;
  margin-bottom: 1rem;
}
.contact-card .ico svg {
  width: 1.5rem;
  height: 1.5rem;
}
.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}
.contact-card p,
.contact-card a {
  color: var(--slate);
  font-size: 0.98rem;
  margin: 0;
}
.contact-card a {
  color: var(--teal);
  font-weight: 600;
}

.foot {
  background: var(--abyss);
  color: var(--mist);
  padding-block: clamp(3rem, 6vw, 4.2rem) 2rem;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  padding-bottom: 2.4rem;
  border-bottom: 1px solid var(--line-dark);
}
.foot-brand .brand {
  margin-bottom: 1rem;
}
.foot-brand p {
  font-size: 0.95rem;
  max-width: 24rem;
}
.foot h4 {
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--foam);
  margin: 0 0 1rem;
}
.foot ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}
.foot a {
  color: var(--mist);
  font-size: 0.95rem;
}
.foot a:hover {
  color: #fff;
}
.foot .nap {
  display: grid;
  gap: 0.65rem;
  font-size: 0.92rem;
  font-style: normal;
}
.foot .nap span {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.foot .nap svg {
  width: 1.05rem;
  height: 1.05rem;
  color: var(--foam);
  flex: none;
  margin-top: 0.15rem;
}
.foot-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.8rem;
  font-size: 0.86rem;
}
.foot-bottom .disc {
  max-width: 40rem;
  color: rgba(207, 238, 240, 0.62);
}

.cookie {
  position: fixed;
  left: 50%;
  bottom: 1.2rem;
  transform: translateX(-50%) translateY(150%);
  z-index: 90;
  width: min(46rem, calc(100% - 2rem));
  background: rgba(4, 26, 36, 0.97);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.3rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.4rem;
  color: var(--mist);
  transition: transform 0.5s var(--ease);
}
.cookie.show {
  transform: translateX(-50%) translateY(0);
}
.cookie p {
  margin: 0;
  font-size: 0.9rem;
  flex: 1 1 18rem;
}
.cookie p a {
  color: var(--foam);
}
.cookie-actions {
  display: flex;
  gap: 0.7rem;
}
.cookie .btn {
  padding: 0.65rem 1.2rem;
  font-size: 0.88rem;
}
.cookie .btn.line {
  background: transparent;
  border: 1px solid var(--line-dark);
  color: var(--mist);
}

.wave-edge {
  display: block;
  width: 100%;
  height: 3.5rem;
  margin-bottom: -1px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 64rem) {
  .foot-top {
    grid-template-columns: 1fr 1fr;
  }
  .foot-brand {
    grid-column: 1 / -1;
  }
  .quotes {
    columns: 2 16rem;
  }
}

@media (max-width: 56rem) {
  .nav {
    display: none;
  }
  .burger {
    display: block;
  }
  .spotlight,
  .signup {
    grid-template-columns: 1fr;
  }
  .spotlight-media {
    min-height: 16rem;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .split:nth-child(even) .split-media {
    order: 0;
  }
}

@media (max-width: 40rem) {
  body {
    font-size: 1rem;
  }
  .quotes {
    columns: 1;
  }
  .foot-top {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 1.3rem;
  }
  .hero-stats div strong {
    font-size: 1.6rem;
  }
  .cookie {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-actions {
    width: 100%;
  }
  .cookie .btn {
    flex: 1;
  }
}

@media (max-width: 24rem) {
  .brand {
    font-size: 1.2rem;
  }
  .hero h1 {
    font-size: 2.3rem;
  }
}
