:root {
  --ink: #112c2d;
  --cream: #f4eddc;
  --yellow: #f4c928;
  --teal: #087f73;
  --coral: #ef624c;
  --paper: #fffaf0;
  --line: #112c2d;
  --max: 1220px;
  --display: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --body: "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 0;
  left: 1rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  background: var(--paper);
  color: var(--ink);
  font-weight: 900;
  transform: translateY(-120%);
}

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

.top-band {
  position: relative;
  z-index: 20;
  width: 100%;
  background: var(--ink);
  color: var(--paper);
  border-bottom: 10px solid var(--paper);
}

.top-inner {
  width: min(100% - 2.5rem, var(--max));
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  background: var(--yellow);
  transform: rotate(45deg);
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  right: -4px;
  bottom: -4px;
  background: var(--coral);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav a {
  text-decoration: none;
}

.main-nav a:not(.nav-cta):hover,
.main-nav a:not(.nav-cta):focus-visible {
  color: var(--yellow);
}

.nav-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.1rem;
  background: var(--yellow);
  color: var(--ink);
  border: 3px solid var(--yellow);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--paper);
  border-color: var(--paper);
}

.standalone-cta {
  font-size: 0.85rem;
}

.menu-button {
  display: none;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0;
  border: 0;
  background: transparent;
  color: var(--paper);
  font: 900 0.85rem var(--body);
  text-transform: uppercase;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 25px;
  height: 3px;
  background: currentColor;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -7px;
}

.menu-icon::after {
  top: 7px;
}

.band {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 560px;
  display: flex;
  align-items: center;
  border-bottom: 10px solid var(--line);
  overflow: hidden;
}

.band::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -1px;
  left: -2vw;
  width: 104vw;
  height: 34px;
  background: currentColor;
  clip-path: polygon(0 100%, 2% 20%, 4% 100%, 6% 20%, 8% 100%, 10% 20%, 12% 100%, 14% 20%, 16% 100%, 18% 20%, 20% 100%, 22% 20%, 24% 100%, 26% 20%, 28% 100%, 30% 20%, 32% 100%, 34% 20%, 36% 100%, 38% 20%, 40% 100%, 42% 20%, 44% 100%, 46% 20%, 48% 100%, 50% 20%, 52% 100%, 54% 20%, 56% 100%, 58% 20%, 60% 100%, 62% 20%, 64% 100%, 66% 20%, 68% 100%, 70% 20%, 72% 100%, 74% 20%, 76% 100%, 78% 20%, 80% 100%, 82% 20%, 84% 100%, 86% 20%, 88% 100%, 90% 20%, 92% 100%, 94% 20%, 96% 100%, 98% 20%, 100% 100%);
  opacity: 0.14;
}

.band-inner {
  width: min(100% - 3rem, var(--max));
  margin: 0 auto;
  padding: 6.5rem 0;
}

.band-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
}

.align-left .band-copy {
  margin-right: auto;
  text-align: left;
}

.align-right .band-copy {
  margin-left: auto;
  text-align: right;
}

.align-right .line-list {
  margin-left: auto;
}

.hero-band,
.final-cta,
.privacy-hero {
  background: var(--yellow);
  color: var(--ink);
}

.hero-band {
  min-height: 720px;
}

.hero-copy {
  width: min(100%, 930px);
}

.band-ink {
  background: var(--ink);
  color: var(--paper);
  --line: var(--yellow);
}

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

.band-teal {
  background: var(--teal);
  color: var(--paper);
  --line: var(--yellow);
}

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

.eyebrow,
.step-label {
  margin: 0 0 1.25rem;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2 {
  max-width: 100%;
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.93;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.4rem, 8.6vw, 8rem);
}

h2 {
  font-size: clamp(2.5rem, 6.2vw, 5.7rem);
}

.lead {
  max-width: 710px;
  margin: 2rem 0 0;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 650;
}

.band-copy > p:not(.eyebrow, .step-label, .lead, .microcopy, .notice) {
  max-width: 650px;
  margin: 1.7rem 0 0;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  font-weight: 600;
}

.align-right .band-copy > p,
.align-right .lead {
  margin-left: auto;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
  margin-top: 2.2rem;
}

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

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border: 4px solid currentColor;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.035em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 150ms ease, background 150ms ease, color 150ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(-4px, -4px);
}

.button-dark {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--paper);
  color: var(--ink);
}

.button-light {
  margin-top: 2rem;
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.text-link {
  font-weight: 900;
  text-underline-offset: 0.25em;
  text-decoration-thickness: 3px;
}

.microcopy {
  margin: 1rem 0 0;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.line-list {
  width: min(100%, 610px);
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 4px solid currentColor;
}

.line-list li {
  padding: 0.8rem 0;
  border-bottom: 2px solid currentColor;
  font-weight: 800;
}

.notice {
  max-width: 640px;
  margin-top: 2rem;
  padding: 1rem 0;
  border-top: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  font-weight: 900;
  text-transform: uppercase;
}

.shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.shape-sun {
  width: clamp(240px, 36vw, 540px);
  aspect-ratio: 1;
  right: -10vw;
  bottom: -12vw;
  border: clamp(35px, 6vw, 80px) solid var(--coral);
  border-radius: 50%;
}

.shape-sun::before,
.shape-sun::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transform: rotate(45deg);
}

.shape-sun::before {
  width: 18%;
  height: 140%;
  left: 41%;
  top: -20%;
}

.shape-sun::after {
  width: 140%;
  height: 18%;
  left: -20%;
  top: 41%;
}

.shape-bolt {
  left: 6vw;
  top: 14%;
  width: clamp(100px, 13vw, 190px);
  height: clamp(230px, 30vw, 430px);
  background: var(--coral);
  clip-path: polygon(48% 0, 100% 0, 68% 39%, 96% 39%, 24% 100%, 42% 54%, 10% 54%);
}

.proof-band {
  min-height: 650px;
}

.proof-heading {
  max-width: 930px;
}

.proof-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3.5rem;
  border-top: 5px solid var(--yellow);
  border-bottom: 5px solid var(--yellow);
}

.proof-columns > * {
  min-width: 0;
  margin: 0;
  padding: 2rem;
}

.proof-columns > * + * {
  border-left: 4px solid var(--yellow);
}

.proof-columns p {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 800;
}

.proof-columns cite,
.proof-fact span {
  display: block;
  font-size: 0.92rem;
  font-style: normal;
}

.proof-fact strong {
  display: block;
  margin-bottom: 1rem;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 1.05;
}

.final-cta {
  min-height: 640px;
}

.footer-band {
  background: var(--teal);
  color: var(--paper);
  border-top: 10px solid var(--ink);
}

.footer-inner {
  width: min(100% - 3rem, var(--max));
  margin: 0 auto;
  padding: 4rem 0;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2.5rem;
}

.footer-inner > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
}

.footer-inner strong {
  margin-bottom: 0.5rem;
  color: var(--yellow);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.footer-inner p,
.footer-inner address {
  margin: 0;
  font-style: normal;
}

.footer-inner a:not(.brand) {
  text-underline-offset: 0.2em;
}

.footer-brand {
  margin-bottom: 0.65rem;
}

.privacy-hero {
  min-height: 560px;
}

.privacy-section {
  min-height: 520px;
}

.privacy-section a:not(.button) {
  font-weight: 900;
  text-underline-offset: 0.2em;
}

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

.hero-band :focus-visible,
.final-cta :focus-visible,
.privacy-hero :focus-visible {
  outline-color: var(--ink);
}

@media (max-width: 900px) {
  .top-inner {
    flex-wrap: wrap;
    min-height: 76px;
    padding: 1rem 0;
  }

  .menu-button {
    display: inline-flex;
  }

  .main-nav {
    display: none;
    width: calc(100% + 2.5rem);
    margin: 0 -1.25rem -1rem;
    padding: 1.2rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    color: var(--ink);
    border-top: 6px solid var(--yellow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 0.9rem 0;
    border-bottom: 2px solid var(--ink);
  }

  .main-nav .nav-cta {
    margin-top: 0.8rem;
    padding: 0.8rem;
    border: 3px solid var(--ink);
  }

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

  .proof-columns > * + * {
    border-top: 4px solid var(--yellow);
    border-left: 0;
  }

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

  .shape-bolt {
    left: -3rem;
    opacity: 0.2;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .top-inner,
  .band-inner,
  .footer-inner {
    width: min(100% - 2rem, var(--max));
  }

  .brand {
    font-size: 0.9rem;
  }

  .brand-mark {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }

  .standalone-cta {
    min-height: 40px;
    padding: 0.5rem 0.7rem;
    font-size: 0.72rem;
  }

  .band,
  .hero-band,
  .proof-band,
  .final-cta,
  .privacy-hero,
  .privacy-section {
    min-height: auto;
  }

  .band-inner {
    padding: 5rem 0;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  h2 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .align-right .band-copy {
    text-align: right;
  }

  .actions,
  .actions-right {
    align-items: stretch;
    flex-direction: column;
    justify-content: flex-start;
  }

  .align-right .actions {
    align-items: flex-end;
  }

  .button {
    width: 100%;
  }

  .shape-sun {
    right: -40vw;
    bottom: -15vw;
    opacity: 0.45;
  }

  .proof-columns > * {
    padding: 1.5rem 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0;
  }
}

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

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