:root {
  --navy: #123b5d;
  --navy-deep: #0b2b45;
  --sky: #7fc4e6;
  --sky-light: #d8eef7;
  --red: #c93d32;
  --red-deep: #9f2a24;
  --gold: #efb841;
  --gold-light: #f8d982;
  --cream: #fff9ea;
  --cream-deep: #f4ead0;
  --ink: #183044;
  --muted: #5f6870;
  --white: #ffffff;
  --line: #d9cba9;
  --shadow: 0 22px 55px rgba(18, 59, 93, 0.14);
  --display: "Bree Serif", Georgia, serif;
  --body: "Manrope", "Trebuchet MS", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  font-family: var(--body);
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.025em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 5vw, 4.7rem);
}

h3 {
  font-size: 1.65rem;
}

.site-width {
  width: min(100% - 40px, 1240px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--navy-deep);
  background: var(--gold);
  border: 3px solid var(--navy-deep);
  border-radius: 8px;
  font-weight: 800;
  transform: translateY(-150%);
}

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

.app-toast-region {
  position: fixed;
  z-index: 3000;
  top: max(14px, env(safe-area-inset-top));
  left: 50%;
  width: min(calc(100% - 28px), 720px);
  pointer-events: none;
  transform: translateX(-50%);
}

.app-toast {
  position: relative;
  display: grid;
  visibility: hidden;
  grid-template-columns: auto 1fr auto;
  gap: 15px;
  padding: 18px 18px 18px 16px;
  color: var(--navy-deep);
  background: var(--cream);
  border: 3px solid var(--navy-deep);
  border-radius: 13px;
  box-shadow: 8px 8px 0 var(--navy-deep), 0 24px 70px rgba(11, 43, 69, 0.3);
  opacity: 0;
  pointer-events: auto;
  transform: translateY(-26px) scale(0.98);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.app-toast--visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.app-toast::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 6px;
  content: "";
  background: var(--red);
  border-radius: 0 0 9px 9px;
}

.app-toast--success::before {
  background: #34855c;
}

.app-toast--info::before {
  background: var(--sky);
}

.app-toast__mark {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--cream);
  background: var(--red);
  border: 2px solid var(--navy-deep);
  border-radius: 50% 50% 44% 44%;
  box-shadow: 3px 3px 0 var(--gold);
  place-items: center;
  font-family: var(--display);
  font-size: 1.4rem;
  line-height: 1;
  transform: rotate(-4deg);
}

.app-toast--success .app-toast__mark {
  background: #34855c;
}

.app-toast--info .app-toast__mark {
  color: var(--navy-deep);
  background: var(--sky);
}

.app-toast__content {
  min-width: 0;
}

.app-toast__title {
  display: block;
  margin-bottom: 3px;
  color: var(--navy-deep);
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.2;
}

.app-toast__message {
  margin: 0;
  color: #4f5b65;
  font-size: 0.75rem;
  line-height: 1.55;
}

.app-toast__errors {
  display: grid;
  gap: 3px;
  margin: 8px 0 0;
  padding-left: 19px;
  color: var(--red-deep);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.45;
}

.app-toast__errors[hidden],
.app-toast__review[hidden] {
  display: none;
}

.app-toast__review {
  margin-top: 9px;
  padding: 0;
  color: var(--red-deep);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  font-size: 0.66rem;
  font-weight: 800;
}

.app-toast__close {
  display: grid;
  width: 32px;
  height: 32px;
  padding: 0;
  color: var(--navy-deep);
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  place-items: center;
  font-size: 1.4rem;
  line-height: 1;
}

.app-toast__close:hover,
.app-toast__close:focus-visible {
  color: var(--cream);
  background: var(--navy-deep);
}

.topline {
  color: var(--cream);
  background: var(--red);
  border-bottom: 2px solid var(--red-deep);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.topline__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  gap: 12px;
}

.topline__star {
  color: var(--gold);
}

.topline__note {
  margin-left: auto;
  color: var(--cream);
  opacity: 0.82;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 249, 234, 0.94);
  border-bottom: 1px solid rgba(18, 59, 93, 0.16);
  backdrop-filter: blur(14px);
}

.site-nav {
  position: relative;
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
}

.brand__mark {
  display: grid;
  width: 48px;
  height: 48px;
  color: var(--cream);
  background: var(--red);
  border: 3px solid var(--navy-deep);
  border-radius: 50% 50% 44% 44%;
  box-shadow: 4px 4px 0 var(--gold);
  place-items: center;
  font-family: var(--display);
  font-size: 1.1rem;
  line-height: 1;
  transform: rotate(-4deg);
}

.brand__words {
  display: flex;
  flex-direction: column;
}

.brand__name {
  color: var(--navy-deep);
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.brand__name span {
  color: var(--red);
}

.brand__tagline {
  margin-top: 5px;
  color: #6e6048;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 26px);
}

.site-menu > a:not(.button) {
  position: relative;
  color: var(--navy-deep);
  font-size: 0.83rem;
  font-weight: 800;
  white-space: nowrap;
}

.site-menu > a:not(.button)::after {
  position: absolute;
  right: 50%;
  bottom: -8px;
  left: 50%;
  height: 3px;
  content: "";
  background: var(--red);
  border-radius: 999px;
  transition: right 180ms ease, left 180ms ease;
}

.site-menu > a:not(.button):hover::after,
.site-menu > a:not(.button):focus-visible::after {
  right: 0;
  left: 0;
}

.site-menu__signin {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  color: var(--navy-deep);
  background: transparent;
  border: 2px solid var(--navy-deep);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-toggle__bars {
  display: grid;
  gap: 3px;
}

.nav-toggle__bars i {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 10px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 22px;
  border: 2px solid var(--navy-deep);
  border-radius: 10px;
  box-shadow: 4px 4px 0 var(--navy-deep);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.2;
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  box-shadow: 2px 2px 0 var(--navy-deep);
  transform: translate(2px, 2px);
}

.button--small {
  min-height: 43px;
  padding: 10px 17px;
}

.button--large {
  min-height: 58px;
  padding: 15px 25px;
  font-size: 0.95rem;
}

.button--red {
  color: var(--cream);
  background: var(--red);
}

.button--cream {
  color: var(--navy-deep);
  background: var(--cream);
}

.button--gold {
  color: var(--navy-deep);
  background: var(--gold);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--navy-deep);
  background:
    radial-gradient(circle at 8% 14%, rgba(239, 184, 65, 0.22) 0 6px, transparent 7px),
    linear-gradient(135deg, #fff9ea 0%, #f7efd9 48%, #fbe7b9 100%);
  border-bottom: 5px solid var(--navy-deep);
}

.hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(18, 59, 93, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(18, 59, 93, 0.035) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to right, black, transparent 48%);
}

.hero__stripe {
  position: absolute;
  width: 430px;
  height: 70px;
  background: var(--red);
  opacity: 0.08;
  transform: rotate(-17deg);
}

.hero__stripe--one {
  top: 80px;
  left: -140px;
}

.hero__stripe--two {
  bottom: 150px;
  left: -210px;
}

.hero__grid {
  position: relative;
  display: grid;
  min-height: 725px;
  align-items: center;
  grid-template-columns: minmax(0, 1.15fr) minmax(460px, 0.85fr);
  gap: clamp(38px, 5vw, 64px);
  padding-block: 66px 80px;
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
  animation: rise-in 600ms ease both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--navy-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--red);
  font-size: 1rem;
}

.eyebrow--gold span {
  color: var(--gold);
}

.eyebrow--red span {
  color: var(--red);
}

.eyebrow--light {
  color: var(--cream);
}

.eyebrow--light span {
  color: var(--gold);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 25px;
  font-size: clamp(3.3rem, 5vw, 4.3rem);
}

.hero__headline-lead,
.hero__headline-payoff {
  display: block;
}

.hero__headline-payoff {
  margin-top: 0.08em;
  font-size: 0.68em;
  letter-spacing: -0.018em;
  white-space: nowrap;
}

.hero h1 em {
  position: relative;
  display: inline;
  color: var(--red);
  font-style: normal;
}

.hero h1 em::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 7px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
  transform: rotate(-1deg);
}

.hero__lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: #4b5963;
  font-size: clamp(1.05rem, 1.7vw, 1.23rem);
  font-weight: 600;
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 30px;
  color: #4f5f68;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero__assurances span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero__assurances b {
  display: inline-grid;
  width: 18px;
  height: 18px;
  color: var(--cream);
  background: var(--navy);
  border-radius: 50%;
  font-size: 0.65rem;
  place-items: center;
}

.hero__visual {
  position: relative;
  min-height: 610px;
  animation: rise-in 650ms 120ms ease both;
}

.hero__sun {
  position: absolute;
  top: -25px;
  right: -95px;
  width: 390px;
  height: 390px;
  background: repeating-conic-gradient(from 0deg, var(--gold) 0 9deg, #f6cc66 9deg 18deg);
  border: 5px solid var(--navy-deep);
  border-radius: 50%;
  opacity: 0.85;
}

.hero__dots {
  position: absolute;
  bottom: 46px;
  left: -22px;
  width: 175px;
  height: 175px;
  background-image: radial-gradient(var(--red) 2.2px, transparent 2.2px);
  background-size: 15px 15px;
  transform: rotate(-7deg);
}

.hero__poster {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 10px;
  bottom: 0;
  left: 34px;
  overflow: hidden;
  background: #fcfaf2;
  border: 5px solid var(--navy-deep);
  border-radius: 48% 48% 30px 30px;
  box-shadow: 15px 15px 0 var(--sky), 22px 22px 0 var(--navy-deep), var(--shadow);
}

.hero__poster::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background:
    linear-gradient(to bottom, transparent 0 67%, rgba(239, 184, 65, 0.28) 67% 68%, transparent 68%),
    radial-gradient(circle at 50% 27%, rgba(127, 196, 230, 0.18), transparent 42%);
}

.hero__poster-top {
  position: absolute;
  z-index: 4;
  top: 24px;
  right: 38px;
  left: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--navy-deep);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero__poster-top i {
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
}

.hero__poster img {
  position: absolute;
  z-index: 2;
  top: 40px;
  right: -2%;
  width: 104%;
  height: calc(100% - 26px);
  object-fit: contain;
  object-position: center bottom;
  mix-blend-mode: multiply;
  filter: saturate(1.06) contrast(1.02);
}

.hero__poster-name {
  position: absolute;
  z-index: 5;
  right: 26px;
  bottom: 27px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 10px 15px 12px;
  color: var(--cream);
  background: var(--red);
  border: 3px solid var(--navy-deep);
  box-shadow: 5px 5px 0 var(--gold);
  transform: rotate(-2deg);
}

.hero__poster-name span {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.hero__poster-name strong {
  font-family: var(--display);
  font-size: 1.48rem;
  line-height: 1.05;
}

.speech-bubble {
  position: absolute;
  z-index: 6;
  top: 115px;
  right: -45px;
  padding: 13px 18px;
  color: var(--navy-deep);
  background: var(--cream);
  border: 3px solid var(--navy-deep);
  border-radius: 50%;
  box-shadow: 5px 5px 0 var(--red);
  font-family: var(--display);
  font-size: 1.12rem;
  transform: rotate(5deg);
}

.speech-bubble::after {
  position: absolute;
  bottom: -15px;
  left: 18px;
  width: 19px;
  height: 19px;
  content: "";
  background: var(--cream);
  border-right: 3px solid var(--navy-deep);
  border-bottom: 3px solid var(--navy-deep);
  transform: rotate(37deg) skew(-9deg, -9deg);
}

.approval-stamp {
  position: absolute;
  z-index: 7;
  bottom: 8px;
  left: -32px;
  display: flex;
  width: 110px;
  height: 110px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--red-deep);
  background: var(--gold-light);
  border: 3px solid var(--red-deep);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px var(--gold-light), inset 0 0 0 7px var(--red-deep), 6px 6px 0 var(--navy-deep);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-10deg);
}

.approval-stamp strong {
  font-family: var(--display);
  font-size: 2.1rem;
  line-height: 1;
}

.hero__ticker {
  position: relative;
  z-index: 10;
  overflow: hidden;
  color: var(--navy-deep);
  background: var(--gold);
  border-top: 3px solid var(--navy-deep);
}

.hero__ticker > div {
  display: flex;
  width: max-content;
  min-width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 44px);
  padding-inline: 20px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__ticker b {
  color: var(--red);
}

.truth-strip {
  color: var(--cream);
  background: var(--navy-deep);
}

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

.truth-grid article {
  display: flex;
  min-height: 150px;
  align-items: center;
  gap: 20px;
  padding: 35px 32px;
  border-right: 1px solid rgba(255, 249, 234, 0.15);
}

.truth-grid article:first-child {
  padding-left: 0;
}

.truth-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.truth-grid__number {
  color: var(--gold);
  font-family: var(--display);
  font-size: 2.4rem;
  line-height: 1;
}

.truth-grid strong {
  color: var(--cream);
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 400;
}

.truth-grid p {
  margin: 3px 0 0;
  color: rgba(255, 249, 234, 0.68);
  font-size: 0.78rem;
  line-height: 1.5;
}

.section {
  position: relative;
  padding-block: clamp(82px, 10vw, 138px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 54px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading > p,
.section-heading--split > p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.how {
  overflow: hidden;
  background:
    linear-gradient(rgba(18, 59, 93, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 59, 93, 0.045) 1px, transparent 1px),
    var(--cream);
  background-size: 32px 32px;
}

.how::before,
.how::after {
  position: absolute;
  width: 180px;
  height: 180px;
  content: "";
  border: 30px solid var(--gold);
  border-radius: 50%;
  opacity: 0.2;
}

.how::before {
  top: -90px;
  left: -70px;
}

.how::after {
  right: -80px;
  bottom: -100px;
}

.steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 26px 28px 30px;
  background: var(--white);
  border: 3px solid var(--navy-deep);
  border-radius: 16px;
  box-shadow: 8px 8px 0 var(--navy-deep);
}

.step-card::after {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 130px;
  height: 130px;
  content: "";
  border: 18px solid currentColor;
  border-radius: 50%;
  opacity: 0.08;
}

.step-card--red {
  color: var(--red);
}

.step-card--gold {
  color: #b77a00;
}

.step-card--blue {
  color: var(--navy);
}

.step-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: currentColor;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.step-card__top strong {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 0.85;
}

.step-card__icon {
  display: grid;
  width: 74px;
  height: 74px;
  margin: 32px 0 25px;
  color: var(--cream);
  background: currentColor;
  border: 3px solid var(--navy-deep);
  border-radius: 50% 50% 46% 46%;
  box-shadow: 5px 5px 0 var(--gold);
  place-items: center;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  transform: rotate(-4deg);
}

.step-card--gold .step-card__icon {
  color: var(--navy-deep);
  background: var(--gold);
}

.step-card h3,
.step-card p,
.step-card__aside {
  color: var(--ink);
}

.step-card h3 {
  margin-bottom: 15px;
}

.step-card p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.68;
}

.step-card__aside {
  position: absolute;
  bottom: 28px;
  left: 28px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audience {
  padding-top: 0;
  background: var(--cream);
}

.audience__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.audience-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: clamp(38px, 5vw, 70px);
  border: 4px solid var(--navy-deep);
  border-radius: 20px;
  box-shadow: 10px 10px 0 var(--gold);
}

.audience-card--red {
  color: var(--cream);
  background: var(--red);
}

.audience-card--blue {
  color: var(--cream);
  background: var(--navy);
}

.audience-card__kicker {
  display: inline-flex;
  margin-bottom: 25px;
  padding: 6px 11px;
  color: var(--navy-deep);
  background: var(--gold);
  border: 2px solid var(--navy-deep);
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.audience-card h2 {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin-bottom: 24px;
  color: var(--cream);
  font-size: clamp(2.35rem, 4.5vw, 4.1rem);
}

.audience-card > p {
  position: relative;
  z-index: 2;
  max-width: 520px;
  color: rgba(255, 249, 234, 0.78);
  font-size: 0.98rem;
}

.audience-card ul {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
  font-size: 0.88rem;
  font-weight: 700;
}

.audience-card li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.audience-card li span {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--navy-deep);
  background: var(--gold);
  border-radius: 50%;
  place-items: center;
  font-size: 0.68rem;
}

.audience-card .button {
  position: relative;
  z-index: 3;
}

.audience-card__pattern {
  position: absolute;
  right: -30px;
  bottom: -80px;
  width: 280px;
  height: 280px;
  border: 45px solid currentColor;
  border-radius: 50%;
  opacity: 0.07;
}

.smart-stuff {
  overflow: hidden;
  background: var(--gold-light);
  border-top: 4px solid var(--navy-deep);
  border-bottom: 4px solid var(--navy-deep);
}

.smart-stuff::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: radial-gradient(rgba(18, 59, 93, 0.12) 1.6px, transparent 1.6px);
  background-size: 18px 18px;
  mask-image: linear-gradient(90deg, black 0 35%, transparent 70%);
}

.smart-stuff__grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(55px, 8vw, 120px);
}

.match-ticket {
  position: relative;
  width: min(100%, 420px);
  margin-inline: auto;
  padding: 15px;
  color: var(--navy-deep);
  background: var(--cream);
  border: 4px solid var(--navy-deep);
  box-shadow: 13px 13px 0 var(--red), 20px 20px 0 var(--navy-deep);
  transform: rotate(-3deg);
}

.match-ticket::before,
.match-ticket::after {
  position: absolute;
  top: 48%;
  width: 28px;
  height: 28px;
  content: "";
  background: var(--gold-light);
  border: 4px solid var(--navy-deep);
  border-radius: 50%;
}

.match-ticket::before {
  left: -18px;
}

.match-ticket::after {
  right: -18px;
}

.match-ticket__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 16px 18px;
  color: var(--cream);
  background: var(--navy);
}

.match-ticket__header span {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.match-ticket__header strong {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
}

.match-ticket__score {
  padding: 30px 18px 28px;
  text-align: center;
  border-bottom: 2px dashed var(--line);
}

.match-ticket__score span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.match-ticket__score strong {
  color: var(--red);
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 400;
  line-height: 0.92;
}

.match-ticket__row {
  display: flex;
  justify-content: space-between;
  padding: 13px 15px;
  border-bottom: 1px dashed var(--line);
  font-size: 0.76rem;
}

.match-ticket__row b {
  color: var(--red-deep);
}

.match-ticket__footer {
  margin-top: 14px;
  padding: 10px;
  color: var(--cream);
  background: var(--red);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.smart-stuff__copy h2 {
  margin-bottom: 20px;
  color: var(--navy-deep);
}

.smart-stuff__lead {
  max-width: 680px;
  color: #475461;
  font-size: 1.08rem;
  line-height: 1.8;
}

.match-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 35px;
}

.match-chips span {
  padding: 9px 13px;
  color: var(--navy-deep);
  background: rgba(255, 249, 234, 0.7);
  border: 2px solid var(--navy-deep);
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 800;
}

.smart-stuff blockquote {
  position: relative;
  margin-bottom: 0;
  padding: 22px 25px 22px 30px;
  color: var(--cream);
  background: var(--navy);
  border-left: 8px solid var(--red);
  border-radius: 0 10px 10px 0;
  font-family: var(--display);
  font-size: 1.2rem;
  line-height: 1.5;
}

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

.section-heading--split {
  display: grid;
  max-width: none;
  align-items: end;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 60px;
}

.section-heading--split h2 {
  margin-bottom: 0;
}

.section-heading--split > p {
  margin-bottom: 8px;
}

.job-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.job-card {
  position: relative;
  display: flex;
  min-height: 485px;
  flex-direction: column;
  padding: 30px;
  background: var(--white);
  border: 3px solid var(--navy-deep);
  border-radius: 14px;
  box-shadow: 7px 7px 0 var(--cream-deep);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.job-card:hover {
  box-shadow: 10px 10px 0 var(--gold);
  transform: translateY(-5px);
}

.job-card--featured {
  box-shadow: 8px 8px 0 var(--red);
}

.job-card__ribbon {
  position: absolute;
  top: -15px;
  right: 22px;
  padding: 7px 12px;
  color: var(--cream);
  background: var(--red);
  border: 2px solid var(--navy-deep);
  box-shadow: 3px 3px 0 var(--gold);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transform: rotate(2deg);
}

.job-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.job-card__top span {
  color: var(--red-deep);
}

.job-card__top b {
  padding: 4px 8px;
  color: var(--navy-deep);
  background: var(--gold-light);
  border-radius: 999px;
}

.job-card h3 {
  margin-bottom: 9px;
  color: var(--navy-deep);
  font-size: 1.72rem;
}

.job-card__company {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.job-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.job-card__meta span {
  padding: 6px 8px;
  color: var(--navy-deep);
  background: var(--sky-light);
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 800;
}

.job-card__fit {
  margin-bottom: 26px;
  padding: 17px;
  background: var(--cream);
  border-left: 4px solid var(--gold);
}

.job-card__fit strong {
  display: block;
  margin-bottom: 5px;
  color: var(--red-deep);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.job-card__fit p {
  margin: 0;
  color: #5d6670;
  font-size: 0.75rem;
  line-height: 1.55;
}

.job-card > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--navy-deep);
  font-size: 0.77rem;
  font-weight: 800;
}

.job-card > a span {
  color: var(--red);
  font-size: 1.1rem;
}

.jobs__note {
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-style: italic;
  text-align: center;
}

.final-cta {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background: var(--navy);
  border-top: 5px solid var(--navy-deep);
}

.final-cta__inner {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 430px;
  align-items: center;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  padding-block: 80px;
}

.final-cta h2 {
  max-width: 650px;
  margin-bottom: 18px;
  color: var(--cream);
}

.final-cta p {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 249, 234, 0.75);
  font-size: 1.03rem;
}

.final-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.final-cta__sun {
  position: absolute;
  right: -140px;
  bottom: -240px;
  width: 600px;
  height: 600px;
  background: repeating-conic-gradient(var(--gold) 0 8deg, var(--red) 8deg 16deg);
  border-radius: 50%;
  opacity: 0.16;
}

.final-cta__lines {
  position: absolute;
  top: -110px;
  left: -140px;
  width: 420px;
  height: 420px;
  border: 70px solid var(--sky);
  border-radius: 50%;
  opacity: 0.08;
}

.site-footer {
  color: rgba(255, 249, 234, 0.72);
  background: var(--navy-deep);
  border-top: 1px solid rgba(255, 249, 234, 0.14);
}

.footer-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 50px;
  padding-block: 62px;
}

.brand--footer .brand__name {
  color: var(--cream);
}

.footer-grid > div:first-child p {
  max-width: 390px;
  margin: 22px 0 0;
  font-size: 0.8rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 22px;
}

.footer-links a {
  color: var(--cream);
  font-size: 0.74rem;
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold);
}

.footer-signoff {
  display: grid;
  padding: 20px;
  background: rgba(255, 249, 234, 0.07);
  border: 1px solid rgba(255, 249, 234, 0.15);
  border-radius: 10px;
  font-size: 0.74rem;
}

.footer-signoff__hat {
  color: var(--gold);
  font-family: var(--display);
  font-size: 2rem;
  line-height: 0.6;
}

.footer-signoff strong {
  color: var(--gold);
  text-transform: uppercase;
}

.footer-signoff span:last-child {
  color: var(--cream);
  font-family: var(--display);
  font-size: 1rem;
}

.footer-bottom {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 249, 234, 0.12);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Employer sign-up flow */
.signup-shell {
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  padding-block: clamp(45px, 6vw, 86px) clamp(90px, 10vw, 145px);
  background:
    linear-gradient(rgba(18, 59, 93, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 59, 93, 0.035) 1px, transparent 1px),
    linear-gradient(145deg, var(--cream) 0%, #f8efd8 100%);
  background-size: 30px 30px, 30px 30px, auto;
}

.signup-shell--blue {
  background:
    linear-gradient(rgba(18, 59, 93, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 59, 93, 0.035) 1px, transparent 1px),
    linear-gradient(145deg, #edf6f8 0%, var(--cream) 70%);
  background-size: 30px 30px, 30px 30px, auto;
}

.signup-shell--gold {
  background:
    linear-gradient(rgba(18, 59, 93, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 59, 93, 0.035) 1px, transparent 1px),
    linear-gradient(145deg, #fff6d9 0%, var(--cream) 70%);
  background-size: 30px 30px, 30px 30px, auto;
}

.signup-shell__pattern {
  position: absolute;
  top: 210px;
  right: -155px;
  width: 360px;
  height: 360px;
  border: 58px solid var(--gold);
  border-radius: 50%;
  opacity: 0.14;
  transform: rotate(-12deg);
}

.signup-shell__pattern::after {
  position: absolute;
  right: 255px;
  bottom: -680px;
  width: 260px;
  height: 260px;
  content: "";
  border: 42px solid var(--sky);
  border-radius: 50%;
  opacity: 0.5;
}

.signup-width {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 1050px);
}

.signup-progress {
  display: grid;
  align-items: center;
  grid-template-columns: auto minmax(35px, 1fr) auto minmax(35px, 1fr) auto;
  margin-bottom: clamp(55px, 7vw, 85px);
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 3px solid var(--navy-deep);
  border-radius: 15px;
  box-shadow: 7px 7px 0 var(--gold);
  backdrop-filter: blur(10px);
}

.signup-progress > i {
  height: 3px;
  margin-inline: 18px;
  background: var(--line);
  border-radius: 99px;
}

.signup-progress > i.signup-progress__line--done {
  background: var(--red);
}

.signup-progress__step {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #79828a;
}

a.signup-progress__step:hover strong,
a.signup-progress__step:focus-visible strong {
  color: var(--red);
}

.signup-progress__step > span {
  display: grid;
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  color: var(--muted);
  background: var(--cream-deep);
  border: 2px solid var(--line);
  border-radius: 50%;
  place-items: center;
  font-family: var(--display);
  font-size: 1.05rem;
}

.signup-progress__step div {
  display: grid;
  line-height: 1.15;
}

.signup-progress__step small {
  margin-bottom: 4px;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.signup-progress__step strong {
  color: currentColor;
  font-size: 0.78rem;
}

.signup-progress__step--active,
.signup-progress__step--done {
  color: var(--navy-deep);
}

.signup-progress__step--active > span {
  color: var(--cream);
  background: var(--red);
  border-color: var(--navy-deep);
  box-shadow: 3px 3px 0 var(--gold);
}

.signup-progress__step--done > span {
  color: var(--navy-deep);
  background: var(--gold);
  border-color: var(--navy-deep);
}

.signup-heading {
  max-width: 830px;
  margin-bottom: 50px;
}

.signup-heading h1,
.signup-complete h1 {
  margin: 12px 0 20px;
  color: var(--navy-deep);
  font-size: clamp(3rem, 7vw, 5.7rem);
}

.signup-heading p,
.signup-complete p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.signup-form {
  display: grid;
  gap: 30px;
}

.form-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 50px);
  background: rgba(255, 255, 255, 0.94);
  border: 3px solid var(--navy-deep);
  border-radius: 16px;
  box-shadow: 8px 8px 0 var(--cream-deep);
}

.form-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 7px;
  content: "";
  background: linear-gradient(90deg, var(--red) 0 34%, var(--gold) 34% 68%, var(--navy) 68%);
}

.form-card--review {
  background: linear-gradient(135deg, #fff 0%, #fff8df 100%);
  box-shadow: 9px 9px 0 var(--gold);
}

.form-card__heading {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 34px;
  padding-bottom: 25px;
  border-bottom: 2px dashed var(--line);
}

.form-card__number {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  color: var(--cream);
  background: var(--navy);
  border: 2px solid var(--navy-deep);
  border-radius: 50% 50% 45% 45%;
  box-shadow: 3px 3px 0 var(--gold);
  place-items: center;
  font-family: var(--display);
  font-size: 1rem;
  transform: rotate(-3deg);
}

.form-card__heading h2 {
  margin: 0 0 4px;
  color: var(--navy-deep);
  font-size: clamp(1.7rem, 4vw, 2.35rem);
}

.form-card__heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.form-grid {
  display: grid;
  gap: 25px;
}

.form-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form-field {
  display: grid;
  align-content: start;
  gap: 8px;
}

.form-field--wide {
  grid-column: 1 / -1;
}

.form-field--nested {
  gap: 16px;
}

.form-field label,
.form-label {
  color: var(--navy-deep);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.025em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fffdf7;
  border: 2px solid #c9bea4;
  border-radius: 8px;
  outline: none;
  font-family: var(--body);
  font-size: 0.86rem;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.65;
}

.form-field select {
  cursor: pointer;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: var(--white);
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(127, 196, 230, 0.28);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #91979b;
}

.form-field .input-validation-error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(201, 61, 50, 0.12);
}

.form-field > span.field-validation-error,
.validation-summary {
  color: var(--red-deep);
  font-size: 0.7rem;
  font-weight: 700;
}

.validation-summary:empty,
.validation-summary-valid {
  display: none;
}

.validation-summary {
  padding: 17px 20px;
  background: #fff0ec;
  border: 2px solid var(--red);
  border-radius: 9px;
}

.validation-summary ul {
  margin: 0;
  padding-left: 20px;
}

.form-hint {
  color: #777f85;
  font-size: 0.65rem;
  line-height: 1.5;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 17px 18px;
  background: var(--sky-light);
  border: 2px solid var(--navy-deep);
  border-radius: 9px;
  cursor: pointer;
}

.form-check input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--red);
}

.form-check span {
  display: grid;
  gap: 2px;
}

.form-check strong {
  color: var(--navy-deep);
  font-size: 0.75rem;
}

.form-check small {
  color: var(--muted);
  font-size: 0.65rem;
}

.publish-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.publish-choice label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 105px;
  padding: 19px;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}

.publish-choice label:has(input:checked) {
  background: var(--gold-light);
  border-color: var(--navy-deep);
  box-shadow: 4px 4px 0 var(--navy-deep);
}

.publish-choice input {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  margin-top: 3px;
  accent-color: var(--red);
}

.publish-choice span {
  display: grid;
  gap: 5px;
}

.publish-choice strong {
  color: var(--navy-deep);
  font-size: 0.76rem;
}

.publish-choice small {
  color: var(--muted);
  font-size: 0.65rem;
  line-height: 1.5;
}

.signup-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
}

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

.signup-actions button {
  cursor: pointer;
}

.signup-actions__note {
  color: var(--muted);
  font-size: 0.68rem;
  font-style: italic;
}

.signup-complete {
  position: relative;
  overflow: hidden;
  max-width: 880px;
  margin: 45px auto;
  padding: clamp(45px, 8vw, 85px);
  background: var(--white);
  border: 4px solid var(--navy-deep);
  border-radius: 20px;
  box-shadow: 13px 13px 0 var(--gold);
  text-align: center;
}

.signup-complete::before {
  position: absolute;
  right: -110px;
  bottom: -150px;
  width: 300px;
  height: 300px;
  content: "";
  border: 48px solid var(--sky);
  border-radius: 50%;
  opacity: 0.18;
}

.signup-complete .eyebrow {
  justify-content: center;
}

.signup-complete h1 {
  font-size: clamp(3rem, 7vw, 5.3rem);
}

.signup-complete p {
  margin-inline: auto;
}

.signup-complete__stamp {
  display: grid;
  width: 120px;
  height: 120px;
  margin: 0 auto 35px;
  color: var(--navy-deep);
  background: var(--gold);
  border: 4px double var(--navy-deep);
  border-radius: 50%;
  box-shadow: 6px 6px 0 var(--red);
  place-content: center;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-transform: uppercase;
  transform: rotate(-5deg);
}

.signup-complete__stamp strong {
  color: var(--red);
  font-family: var(--display);
  font-size: 2.4rem;
}

.signup-complete__actions {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 38px;
}

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

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1150px) {
  .site-width {
    width: min(100% - 34px, 1060px);
  }

  .site-menu {
    gap: 14px;
  }

  .site-menu > a:not(.button) {
    font-size: 0.74rem;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.88fr);
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 5vw, 4rem);
  }

  .hero__visual {
    min-height: 570px;
  }

  .speech-bubble {
    right: -12px;
  }
}

@media (max-width: 1039px) {
  html {
    scroll-padding-top: 100px;
  }

  .nav-toggle {
    display: flex;
  }

  .site-menu {
    position: absolute;
    top: calc(100% - 3px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 18px;
    background: var(--cream);
    border: 3px solid var(--navy-deep);
    border-radius: 10px;
    box-shadow: 8px 8px 0 var(--gold);
  }

  .site-menu--open {
    display: flex;
  }

  .site-menu > a:not(.button) {
    padding: 12px 8px;
    border-bottom: 1px solid var(--line);
    font-size: 0.82rem;
  }

  .site-menu > a:not(.button)::after {
    display: none;
  }

  .site-menu__signin {
    padding-left: 8px;
    border-left: 0;
  }

  .site-menu .button {
    margin-top: 12px;
  }

  .hero__grid {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-top: 74px;
  }

  .hero__copy {
    max-width: 760px;
  }

  .hero__visual {
    width: min(100%, 650px);
    min-height: 670px;
    margin-inline: auto;
  }

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

  .truth-grid article,
  .truth-grid article:first-child,
  .truth-grid article:last-child {
    min-height: 110px;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 249, 234, 0.15);
  }

  .truth-grid article:last-child {
    border-bottom: 0;
  }

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

  .step-card {
    min-height: 360px;
  }

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

  .smart-stuff__grid {
    grid-template-columns: 1fr;
  }

  .match-ticket {
    width: min(88%, 440px);
  }

  .section-heading--split {
    align-items: start;
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .job-card {
    min-height: 0;
  }

  .final-cta__inner {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .final-cta__actions {
    max-width: 430px;
  }

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

  .footer-signoff {
    grid-column: 1 / -1;
  }

  .signup-progress__step div {
    display: none;
  }

  .signup-progress {
    grid-template-columns: auto 1fr auto 1fr auto;
  }
}

@media (max-width: 680px) {
  .site-width {
    width: min(100% - 26px, 620px);
  }

  .topline__inner {
    justify-content: center;
    gap: 7px;
    font-size: 0.58rem;
  }

  .topline__note {
    display: none;
  }

  .site-nav {
    min-height: 76px;
  }

  .brand__mark {
    width: 42px;
    height: 42px;
  }

  .brand__name {
    font-size: 1.22rem;
  }

  .brand__tagline {
    font-size: 0.5rem;
  }

  .nav-toggle__label {
    display: none;
  }

  .hero__grid {
    padding-block: 58px 62px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 13vw, 3.85rem);
  }

  .hero__headline-payoff {
    font-size: 0.72em;
    white-space: normal;
  }

  .hero__actions,
  .hero__actions .button {
    width: 100%;
  }

  .hero__assurances {
    display: grid;
  }

  .hero__visual {
    min-height: 525px;
  }

  .hero__poster {
    top: 10px;
    right: 14px;
    left: 10px;
    border-width: 4px;
    box-shadow: 9px 9px 0 var(--sky), 14px 14px 0 var(--navy-deep);
  }

  .hero__poster img {
    top: 32px;
    width: 110%;
  }

  .hero__poster-top {
    top: 18px;
    font-size: 0.48rem;
  }

  .hero__poster-name {
    right: 16px;
    bottom: 18px;
  }

  .speech-bubble {
    top: 90px;
    right: -3px;
    font-size: 0.9rem;
  }

  .approval-stamp {
    bottom: -10px;
    left: -6px;
    width: 90px;
    height: 90px;
  }

  .hero__ticker > div {
    justify-content: flex-start;
    gap: 18px;
    overflow: hidden;
  }

  .hero__ticker span:nth-of-type(n+4),
  .hero__ticker b:nth-of-type(n+4) {
    display: none;
  }

  .section {
    padding-block: 78px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .step-card {
    min-height: 405px;
  }

  .audience {
    padding-top: 0;
  }

  .audience-card {
    min-height: 0;
    padding: 36px 26px;
  }

  .audience-card h2 {
    font-size: 2.65rem;
  }

  .match-ticket {
    width: calc(100% - 24px);
  }

  .match-ticket__score strong {
    font-size: 2.35rem;
  }

  .job-card {
    padding: 25px;
  }

  .final-cta__actions .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-signoff {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding-block: 16px;
  }

  .signup-width {
    width: min(100% - 24px, 620px);
  }

  .signup-progress {
    margin-bottom: 48px;
    padding: 18px;
  }

  .signup-progress > i {
    margin-inline: 9px;
  }

  .signup-progress__step > span {
    width: 35px;
    height: 35px;
  }

  .signup-heading h1,
  .signup-complete h1 {
    font-size: clamp(2.65rem, 14vw, 4rem);
  }

  .form-grid--two,
  .form-grid--three,
  .publish-choice {
    grid-template-columns: 1fr;
  }

  .form-field--wide {
    grid-column: auto;
  }

  .form-card {
    padding: 30px 22px;
  }

  .form-card__heading {
    gap: 13px;
  }

  .form-card__number {
    width: 42px;
    height: 42px;
  }

  .signup-actions,
  .signup-complete__actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .signup-actions .button,
  .signup-complete__actions .button {
    width: 100%;
  }

  .signup-actions__note {
    text-align: center;
  }
}

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

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