/* Gameday marketing site — plain CSS, no build step.
   Colors mirror the app's design tokens (docs/05_DESIGN_SYSTEM.md). */

:root {
  --teal: #0f766e;
  --teal-deep: #0b4f4a;
  --teal-bright: #14b8a6;
  --mint: #79c9c1;
  --maroon: #8a2c43;
  --maroon-bright: #a83a56;
  --ink: #0e1a19;
  --panel: #123230;
  --bg: #f3f6f5;
  --card: #ffffff;
  --muted: #5e6f6e;
  --muted2: #798987;
  --hairline: #e6ecea;
  --highlight: #e8f5f3;
  --amber: #f2c14e;
  --live: #ff5470;
  --maxw: 1080px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Barlow, system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.display {
  font-family: 'Barlow Semi Condensed', Barlow, system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
}

a {
  color: var(--teal);
}

p {
  margin: 0 0 1em;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 12px;
}

/* ---------- header ---------- */

header.site {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(14, 26, 25, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

header.site .wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 62px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: 0.01em;
}

.brand .ball {
  width: 26px;
  height: 26px;
  flex: none;
}

nav.site {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

nav.site a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

nav.site a:hover {
  color: #fff;
}

nav.site a.cta {
  background: var(--teal-bright);
  color: var(--ink);
  padding: 8px 16px;
  border-radius: 10px;
}

nav.site a.cta:hover {
  background: #2ad3c0;
  color: var(--ink);
}

@media (max-width: 720px) {
  nav.site a.hide-sm {
    display: none;
  }
}

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.12s ease, background 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--teal-bright);
  color: var(--ink);
  box-shadow: 0 10px 24px -12px rgba(20, 184, 166, 0.9);
}

.btn-primary:hover {
  background: #2ad3c0;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn-ghost:hover {
  border-color: #fff;
}

.btn-dark {
  background: var(--teal);
  color: #fff;
}

.btn-dark:hover {
  background: var(--teal-deep);
}

/* ---------- hero ---------- */

.hero {
  background:
    radial-gradient(1100px 520px at 78% -10%, rgba(20, 184, 166, 0.22), transparent 60%),
    linear-gradient(165deg, #0e1a19 0%, #0b4f4a 100%);
  color: #fff;
  padding: 72px 0 84px;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 62px);
  margin-bottom: 18px;
}

.hero h1 .accent {
  color: var(--mint);
}

.hero .sub {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 30em;
}

.hero .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero .fineprint {
  margin-top: 18px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.badge-beta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 22px;
}

.badge-beta .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--live);
  animation: pulse 1.4s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

@media (max-width: 880px) {
  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ---------- phone mockup ---------- */

/* Real phone proportions: 9:19.5, thin even bezel, dynamic island. */
.phone {
  position: relative;
  width: 292px;
  aspect-ratio: 9 / 19.5;
  margin: 0 auto;
  border-radius: 44px;
  background: #05100f;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 0 0 1.5px rgba(255, 255, 255, 0.06),
    0 46px 80px -34px rgba(0, 0, 0, 0.9);
}

/* side buttons */
.phone::before,
.phone::after {
  content: '';
  position: absolute;
  width: 2px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 2px;
}

.phone::before {
  left: -3px;
  top: 128px;
  height: 56px;
}

.phone::after {
  right: -3px;
  top: 150px;
  height: 84px;
}

.phone-screen {
  position: relative;
  height: 100%;
  background: var(--ink);
  border-radius: 34px;
  overflow: hidden;
  font-size: 13px;
  display: flex;
  flex-direction: column;
}

/* dynamic island */
.ph-island {
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 22px;
  border-radius: 999px;
  background: #000;
  z-index: 3;
}

.ph-status {
  display: flex;
  align-items: center;
  padding: 12px 18px 2px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ph-status .sig {
  margin-left: auto;
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 9px;
}

.ph-status .sig i {
  display: block;
  width: 3px;
  background: #fff;
  border-radius: 1px;
}

.ph-status .batt {
  margin-left: 6px;
  width: 20px;
  height: 10px;
  border: 1.2px solid rgba(255, 255, 255, 0.7);
  border-radius: 3px;
  padding: 1.2px;
}

.ph-status .batt span {
  display: block;
  height: 100%;
  width: 72%;
  background: #fff;
  border-radius: 1px;
}

.ph-bar {
  background: var(--ink);
  padding: 8px 14px 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.ph-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--live);
}

.ph-live .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--live);
  animation: pulse 1.4s infinite;
}

.ph-inning {
  margin-left: auto;
  font-size: 11px;
  color: var(--mint);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.ph-score {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 4px 16px 14px;
  color: #fff;
}

.ph-team {
  font-size: 12px;
  color: #8fa9a6;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ph-num {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
}

.ph-vs {
  color: #4d7a75;
  font-size: 12px;
  font-weight: 700;
  padding: 0 12px;
}

.ph-right {
  text-align: right;
}

.ph-panel {
  background: var(--panel);
  padding: 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}

.diamond {
  width: 74px;
  height: 74px;
  position: relative;
}

.diamond span {
  position: absolute;
  width: 20px;
  height: 20px;
  transform: rotate(45deg);
  border: 1.5px solid #2f5b57;
  border-radius: 3px;
}

.diamond .b1 {
  right: 0;
  top: 27px;
}

.diamond .b2 {
  left: 27px;
  top: 0;
}

.diamond .b3 {
  left: 0;
  top: 27px;
}

.diamond .on {
  background: var(--teal-bright);
  border-color: var(--teal-bright);
}

.counts {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.count-row {
  display: flex;
  align-items: center;
  gap: 7px;
}

.count-row b {
  color: #6d8582;
  font-size: 10px;
  width: 12px;
  font-weight: 700;
}

.pip {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1.5px solid #2f5b57;
}

.pip.fill {
  background: var(--teal-bright);
  border-color: var(--teal-bright);
}

.pip.out {
  background: var(--amber);
  border-color: var(--amber);
}

.ph-atbat {
  background: #fff;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 11px;
}

.jersey {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--teal);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 800;
  font-size: 17px;
  flex: none;
}

.ph-atbat .label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--maroon);
}

.ph-atbat .name {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}

.ph-pad {
  background: #fff;
  padding: 0 14px 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

/* play log fills the remaining screen height */
.ph-log {
  background: #fff;
  flex: 1;
  min-height: 0;
  padding: 4px 14px 8px;
  border-top: 1px solid var(--hairline);
  overflow: hidden;
}

.ph-log-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid var(--hairline);
}

.ph-log-row:last-child {
  border-bottom: 0;
}

.ph-tag {
  flex: none;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--teal);
  border-radius: 5px;
  padding: 2.5px 6px;
}

.ph-tag.big {
  background: var(--maroon);
}

.ph-log-row span {
  font-size: 11.5px;
  color: var(--muted);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ph-log-row.big span {
  color: var(--ink);
  font-weight: 700;
}

/* bottom tab bar */
.ph-tabs {
  background: #fff;
  border-top: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  padding: 8px 6px 16px;
  position: relative;
}

.ph-tab {
  text-align: center;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #9aabaa;
}

.ph-tab i {
  display: block;
  width: 15px;
  height: 15px;
  margin: 0 auto 3px;
  border-radius: 4px;
  background: #cfdbd9;
}

.ph-tab.on {
  color: var(--teal);
}

.ph-tab.on i {
  background: var(--teal);
}

.ph-tab.mid i {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 6px 14px -4px rgba(15, 118, 110, 0.6);
  margin-top: -18px;
  position: relative;
}

.ph-tab.mid i::after {
  content: '';
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: #fff;
}

/* home indicator */
.ph-tabs::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 4px;
  border-radius: 999px;
  background: #cfdbd9;
}

.pad-btn {
  border-radius: 9px;
  padding: 10px 0;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  background: #e7edeb;
  color: var(--ink);
}

.pad-btn.hit {
  background: var(--teal);
  color: #fff;
}

.pad-btn.hr {
  background: var(--teal-deep);
  color: #fff;
}

.pad-btn.out {
  background: var(--maroon);
  color: #fff;
}

/* ---------- sections ---------- */

section {
  padding: 76px 0;
}

section.tint {
  background: #fff;
}

section h2 {
  font-size: clamp(30px, 4vw, 40px);
  margin-bottom: 14px;
}

section .lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 40em;
  margin-bottom: 40px;
}

/* ---------- three roles ---------- */

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

.role {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 26px 22px;
}

section.tint .role {
  background: var(--bg);
}

.role .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fff;
  background: var(--teal);
  padding: 4px 11px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.role.b .tag {
  background: var(--maroon);
}

.role.c .tag {
  background: var(--ink);
}

.role h3 {
  font-size: 23px;
  margin-bottom: 8px;
}

.role p {
  color: var(--muted);
  font-size: 15.5px;
  margin: 0;
}

@media (max-width: 820px) {
  .roles {
    grid-template-columns: 1fr;
  }
}

/* ---------- feature grid ---------- */

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 22px;
}

section.tint .feature {
  background: var(--bg);
}

.feature h3 {
  font-size: 19px;
  margin-bottom: 6px;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.feature .ico {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

@media (max-width: 880px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .features {
    grid-template-columns: 1fr;
  }
}

/* ---------- streaming ---------- */

.stream-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
}

.stream-wrap .lede {
  margin-bottom: 26px;
}

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

.stream-list li {
  position: relative;
  padding: 9px 0 9px 30px;
  font-size: 16px;
  color: var(--muted);
  border-top: 1px solid var(--hairline);
}

.stream-list li:first-child {
  border-top: 0;
}

.stream-list li strong {
  color: var(--ink);
}

.stream-list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 17px;
  width: 13px;
  height: 7px;
  border-left: 2.5px solid var(--teal-bright);
  border-bottom: 2.5px solid var(--teal-bright);
  transform: rotate(-45deg);
}

.stream-mock {
  border-radius: 18px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 26px 50px -28px rgba(0, 0, 0, 0.6);
}

.sm-video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(180deg, #7fb3d5 0%, #a9d18e 42%, #6f9e54 100%);
  overflow: hidden;
}

/* suggestion of an infield */
.sm-field {
  position: absolute;
  left: 50%;
  bottom: -46%;
  width: 78%;
  aspect-ratio: 1;
  transform: translateX(-50%) rotate(45deg);
  background: #c8a06a;
  border-radius: 12px;
  opacity: 0.85;
}

.sm-live {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(14, 26, 25, 0.72);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  padding: 5px 10px;
  border-radius: 999px;
}

.sm-live .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--live);
  animation: pulse 1.4s infinite;
}

.sm-play {
  position: absolute;
  z-index: 2;
  width: 58px;
  height: 58px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.sm-play circle {
  fill: rgba(14, 26, 25, 0.55);
  stroke: rgba(255, 255, 255, 0.85);
  stroke-width: 1.5;
}

.sm-play path {
  fill: #fff;
}

.sm-score {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: #fff;
}

.sm-score .sm-t {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #8fa9a6;
}

.sm-score b {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.sm-score .sm-mid {
  margin: 0 auto;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--mint);
}

@media (max-width: 880px) {
  .stream-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ---------- league band ---------- */

.band {
  background: linear-gradient(150deg, var(--teal-deep), var(--ink));
  color: #fff;
}

.band h2,
.band .eyebrow {
  color: #fff;
}

.band .eyebrow {
  color: var(--mint);
}

.band .lede {
  color: rgba(255, 255, 255, 0.78);
}

.band ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 28px;
  max-width: 760px;
}

.band li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
}

.band li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 8px;
  border-left: 2.5px solid var(--teal-bright);
  border-bottom: 2.5px solid var(--teal-bright);
  transform: rotate(-45deg);
}

@media (max-width: 640px) {
  .band ul {
    grid-template-columns: 1fr;
  }
}

/* ---------- pricing ---------- */

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.plan {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 28px 24px;
}

.plan.hi {
  border: 2px solid var(--teal);
  box-shadow: 0 18px 40px -26px rgba(15, 118, 110, 0.7);
}

.plan h3 {
  font-size: 22px;
}

.plan .price {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 1.1;
  margin: 10px 0 2px;
}

.plan .per {
  color: var(--muted2);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan li {
  position: relative;
  padding: 6px 0 6px 24px;
  font-size: 15px;
  color: var(--muted);
  border-top: 1px solid var(--hairline);
}

.plan li:first-child {
  border-top: 0;
}

.plan li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 14px;
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--teal-bright);
  border-bottom: 2px solid var(--teal-bright);
  transform: rotate(-45deg);
}

.plan .flag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--highlight);
  color: var(--teal-deep);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.plan.hi .flag {
  background: var(--teal);
  color: #fff;
}

@media (max-width: 880px) {
  .plans {
    grid-template-columns: 1fr;
  }
}

.note {
  margin-top: 28px;
  padding: 18px 20px;
  background: var(--highlight);
  border-radius: 14px;
  font-size: 15.5px;
  color: var(--teal-deep);
}

.note strong {
  color: var(--teal-deep);
}

/* ---------- faq ---------- */

.faq {
  max-width: 760px;
}

.faq details {
  border-bottom: 1px solid var(--hairline);
  padding: 6px 0;
}

.faq summary {
  cursor: pointer;
  padding: 14px 0;
  font-weight: 700;
  font-size: 17.5px;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.faq summary::after {
  content: '+';
  margin-left: auto;
  color: var(--teal);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.faq details[open] summary::after {
  content: '\2013';
}

.faq details p {
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 16px;
}

/* ---------- final cta ---------- */

.final {
  background: linear-gradient(165deg, #0e1a19, #0b4f4a);
  color: #fff;
  text-align: center;
}

.final h2 {
  font-size: clamp(32px, 5vw, 46px);
  margin-bottom: 14px;
}

.final p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  max-width: 34em;
  margin: 0 auto 30px;
}

.final .buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- footer ---------- */

footer.site {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.55);
  padding: 40px 0;
  font-size: 14.5px;
}

footer.site .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
}

footer.site a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

footer.site a:hover {
  color: #fff;
}

footer.site .spacer {
  margin-left: auto;
}

footer.site a.ig {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

footer.site a.ig svg {
  flex: none;
}

/* ---------- legal pages ---------- */

.legal {
  background: #fff;
  padding: 56px 0 80px;
}

.legal .wrap {
  max-width: 760px;
}

.legal h1 {
  font-size: 40px;
  margin-bottom: 8px;
}

.legal .updated {
  color: var(--muted2);
  font-size: 15px;
  margin-bottom: 36px;
}

.legal h2 {
  font-size: 25px;
  margin: 38px 0 10px;
}

.legal h3 {
  font-size: 19px;
  margin: 24px 0 6px;
}

.legal p,
.legal li {
  color: #26403e;
  font-size: 16.5px;
}

.legal ul {
  padding-left: 22px;
}

.legal li {
  margin-bottom: 7px;
}

.legal .callout {
  background: var(--highlight);
  border-radius: 12px;
  padding: 16px 18px;
  color: var(--teal-deep);
  font-size: 16px;
}
