@font-face {
  font-family: "Gabarito";
  src: url("./assets/fonts/gabarito/Gabarito-Variable.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #071b33;
  --ink-soft: rgba(7, 27, 51, 0.72);
  --cream: #f8e9c4;
  --cream-deep: #f1d98f;
  --marigold: #eec42a;
  --blue: #17498d;
  --blue-deep: #0c2b61;
  --orange: #e45a2a;
  --paper: #fff7dd;
  --line: rgba(7, 27, 51, 0.16);
  --line-light: rgba(248, 233, 196, 0.22);
  --shadow: 0 26px 60px rgba(7, 27, 51, 0.18);
  --content: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Gabarito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

a:focus-visible,
.button:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

p,
h1,
h2,
figcaption,
span,
strong {
  overflow-wrap: anywhere;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 30;
  transform: translateY(-180%);
  padding: 10px 14px;
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--content), calc(100% - 32px));
  min-height: 64px;
  margin: 0 auto;
  background: rgba(248, 233, 196, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--line);
}

.site-brand {
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex-wrap: wrap;
}

.site-nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 800;
}

.site-nav a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  width: min(var(--content), calc(100% - 32px));
  min-height: min(760px, calc(84svh - 64px));
  margin: 0 auto;
  padding: clamp(30px, 5vw, 72px) 0 clamp(28px, 5vw, 64px);
  display: grid;
  grid-template-areas:
    "copy media"
    "after media";
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  column-gap: clamp(28px, 5vw, 76px);
  row-gap: 22px;
  align-items: center;
  overflow: hidden;
}

.hero__copy {
  grid-area: copy;
  position: relative;
  z-index: 1;
}

.hero__after {
  grid-area: after;
  align-self: start;
}

.section-kicker {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 0.92rem;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
}

.hero__prompt {
  max-width: 560px;
  margin: 0 0 16px;
  color: var(--orange);
  font-size: clamp(1.38rem, 2.8vw, 2.2rem);
  line-height: 1.04;
  font-weight: 900;
}

h1,
h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0;
}

h1 {
  max-width: 620px;
  font-size: clamp(4rem, 8vw, 6.2rem);
  line-height: 0.88;
  white-space: nowrap;
}

h2 {
  max-width: 720px;
  font-size: clamp(2.35rem, 6vw, 5rem);
  line-height: 0.9;
}

.hero__subhead {
  max-width: 610px;
  margin: 28px 0 0;
  font-size: clamp(1.16rem, 2vw, 1.42rem);
  line-height: 1.34;
  font-weight: 720;
}

.hero__trust {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.42;
  font-weight: 820;
}

.button {
  width: fit-content;
  min-height: 48px;
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  background: var(--ink);
  color: var(--cream);
  border: 2px solid var(--ink);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 900;
}

.button:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.hero__media {
  grid-area: media;
  margin: 0;
  position: relative;
  z-index: 1;
}

.hero-board {
  position: relative;
  overflow: hidden;
  border: 4px solid var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
  aspect-ratio: 1;
}

.hero-board img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tap-target {
  position: absolute;
  left: 21.5%;
  top: 48.2%;
  width: 34px;
  height: 34px;
  transform: translate(-50%, -50%);
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: rgba(248, 233, 196, 0.5);
  box-shadow: 0 0 0 7px rgba(238, 196, 42, 0.34);
}

.tap-target::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: var(--orange);
}

figcaption {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.32;
  font-weight: 760;
}

.band {
  position: relative;
  padding: clamp(64px, 9vw, 118px) 0;
}

.band--cream {
  background: var(--cream);
}

.band--ink {
  background: var(--ink);
  color: var(--cream);
}

.band--gold {
  background: var(--marigold);
  color: var(--ink);
}

.band--compact {
  padding: clamp(42px, 7vw, 84px) 0;
}

.section-head,
.how-grid,
.split,
.included,
.play-panel,
.site-footer {
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-head p:not(.section-kicker) {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
  line-height: 1.45;
  font-weight: 680;
}

.section-head--light p:not(.section-kicker),
.section-head--light .pack-line {
  color: rgba(248, 233, 196, 0.78);
}

.section-head--light .section-kicker {
  color: var(--marigold);
}

.how-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  counter-reset: step;
}

.steps li {
  counter-increment: step;
  position: relative;
  min-height: 92px;
  padding: 18px 18px 18px 70px;
  border: 2px solid var(--line);
  background: var(--paper);
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--cream);
  font-weight: 900;
}

.steps span {
  display: block;
  margin-bottom: 7px;
  font-size: 1.08rem;
  font-weight: 900;
}

.steps li {
  color: var(--ink-soft);
  line-height: 1.36;
  font-weight: 670;
}

.phone-pair,
.variation-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2.2vw, 26px);
}

.phone-pair figure,
.variation-strip figure,
.level-depth {
  margin: 0;
}

.phone-pair img,
.variation-strip img,
.level-depth img {
  width: 100%;
  border: 3px solid var(--ink);
  background: var(--cream);
  box-shadow: 0 18px 44px rgba(7, 27, 51, 0.18);
}

.phone-pair img {
  aspect-ratio: 0.56;
  object-fit: cover;
  object-position: center top;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}

.pack-line {
  margin-top: 20px;
  color: rgba(248, 233, 196, 0.82);
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 800;
}

.variation-strip img {
  aspect-ratio: 0.56;
  object-fit: cover;
  object-position: center 32%;
  border-color: var(--line-light);
}

.variation-strip figcaption {
  color: rgba(248, 233, 196, 0.78);
}

.included {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.included .section-head {
  width: auto;
  margin: 0;
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 0;
}

.facts div {
  min-height: 116px;
  padding: 18px;
  border: 2px solid rgba(7, 27, 51, 0.22);
  background: rgba(248, 233, 196, 0.34);
}

.facts strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  line-height: 0.95;
  font-weight: 900;
}

.facts span {
  color: var(--ink-soft);
  font-weight: 760;
  line-height: 1.32;
}

.level-depth img {
  aspect-ratio: 0.56;
  object-fit: cover;
  object-position: center top;
}

.play-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  padding: clamp(24px, 4vw, 42px);
  border: 3px solid var(--ink);
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--blue);
}

.play-panel h2 {
  font-size: clamp(2.4rem, 6vw, 4.7rem);
}

.play-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  line-height: 1.42;
  font-weight: 760;
}

.play-copy p + p {
  margin-top: 14px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding: 32px 0 42px;
  border-top: 2px solid var(--line);
}

.site-footer strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 900;
}

.site-footer p {
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-weight: 740;
}

.footer-links {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 2px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  font-weight: 850;
}

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

.policy-main {
  width: min(840px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(42px, 7vw, 86px) 0 clamp(58px, 9vw, 112px);
}

.policy-hero {
  padding-bottom: clamp(22px, 5vw, 44px);
  border-bottom: 3px solid var(--ink);
}

.policy-hero h1 {
  max-width: 840px;
  white-space: normal;
  font-size: clamp(3rem, 8vw, 5.4rem);
  line-height: 0.92;
}

.policy-hero p,
.policy-section p,
.policy-section li {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.8vw, 1.16rem);
  line-height: 1.52;
  font-weight: 680;
}

.policy-section ul {
  margin: 18px 0 0;
  padding-left: 1.35rem;
}

.policy-section li + li {
  margin-top: 12px;
}

.policy-section li strong {
  color: var(--ink);
}

.policy-note {
  padding: 14px 16px;
  border: 2px solid rgba(7, 27, 51, 0.2);
  background: var(--paper);
}

.policy-section {
  padding: clamp(28px, 5vw, 46px) 0 0;
}

.policy-section h2 {
  max-width: 840px;
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  line-height: 0.98;
}

.policy-section a {
  color: var(--blue);
  font-weight: 850;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 58px;
  }

  .hero,
  .how-grid,
  .split,
  .included,
  .play-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-areas:
      "copy"
      "media"
      "after";
    min-height: auto;
    padding-top: 24px;
    padding-bottom: 22px;
    row-gap: 18px;
  }

  .hero__media {
    max-width: 440px;
    width: 100%;
    margin: 0 auto;
  }

  .included {
    align-items: start;
  }

  .level-depth {
    max-width: 440px;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: min(var(--content), calc(100% - 24px));
    min-height: 54px;
  }

  .site-nav a {
    min-height: 32px;
    padding: 0 7px;
    font-size: 0.86rem;
  }

  .policy-page .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
  }

  .policy-page .site-nav {
    justify-content: flex-start;
  }

  .hero,
  .section-head,
  .how-grid,
  .split,
  .included,
  .play-panel,
  .site-footer {
    width: min(var(--content), calc(100% - 24px));
  }

  .hero {
    gap: 22px;
    padding-top: 18px;
    padding-bottom: 30px;
  }

  .section-kicker {
    margin-bottom: 10px;
    font-size: 0.78rem;
  }

  .hero__prompt {
    margin-bottom: 10px;
    font-size: 1.28rem;
  }

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

  h2 {
    font-size: clamp(2.1rem, 12vw, 3.2rem);
  }

  .hero__subhead {
    margin-top: 18px;
    font-size: 1.04rem;
  }

  .hero__trust {
    margin-top: 12px;
    font-size: 0.93rem;
  }

  .button {
    min-height: 44px;
    margin-top: 18px;
    font-size: 0.95rem;
  }

  .hero__media {
    max-width: min(100%, 350px);
  }

  .hero-board {
    border-width: 3px;
  }

  .tap-target {
    width: 28px;
    height: 28px;
    border-width: 2px;
    box-shadow: 0 0 0 5px rgba(238, 196, 42, 0.32);
  }

  .tap-target::after {
    inset: 8px;
  }

  figcaption {
    font-size: 0.88rem;
  }

  .band {
    padding: 54px 0;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .section-head p:not(.section-kicker) {
    margin-top: 16px;
    font-size: 1rem;
  }

  .steps li {
    min-height: 0;
    padding: 16px 16px 16px 58px;
  }

  .steps li::before {
    left: 14px;
    top: 16px;
    width: 30px;
    height: 30px;
  }

  .phone-pair,
  .variation-strip,
  .facts {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .facts div {
    min-height: 102px;
    padding: 14px;
  }

  .play-panel {
    padding: 20px;
    box-shadow: 7px 7px 0 var(--blue);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 390px) {
  .site-nav {
    gap: 0;
  }

  .site-nav a {
    padding: 0 5px;
    font-size: 0.8rem;
  }

  .hero__media {
    max-width: 326px;
  }

  .phone-pair,
  .variation-strip {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
