:root {
  --navy: #061b2c;
  --navy-soft: #0b2e45;
  --blue: #087fa6;
  --cyan: #59e5ff;
  --yellow: #ffe400;
  --ink: #11212c;
  --muted: #5d6b74;
  --cream: #f7f6ed;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background-color: var(--navy);
  background-image: url('/images/blue-bg.webp');
  background-repeat: no-repeat;
  background-size: auto calc(100% + 260px);
  background-position: center -240px;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2,18,32,.72) 0%, rgba(2,18,32,.46) 54%, rgba(2,18,32,.28) 100%),
    linear-gradient(180deg, rgba(2,15,27,.12) 0%, rgba(2,15,27,.04) 32%, rgba(2,15,27,.7) 68%, rgba(2,15,27,.84) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 600px;
  padding-top: 62px;
  padding-bottom: 62px;
  display: flex;
  align-items: center;
}

.hero-copy {
  --hero-mikey-width: 214px;
  --hero-title-gap: 38px;
  width: 100%;
}

.hero-title-row {
  display: grid;
  grid-template-columns: var(--hero-mikey-width) minmax(0, 1fr);
  align-items: center;
  gap: var(--hero-title-gap);
}

.hero-mikey {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 18px rgba(0,0,0,.42));
}

.hero-details {
  max-width: 690px;
  margin-left: calc(var(--hero-mikey-width) + var(--hero-title-gap));
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 26px;
  color: var(--yellow);
  font-size: clamp(58px, 7vw, 96px);
  font-weight: 900;
  letter-spacing: -.065em;
  line-height: .9;
  text-shadow: 0 5px 0 rgba(0,0,0,.34), 0 18px 42px rgba(0,0,0,.4);
}

.hero-lead {
  max-width: 630px;
  margin-bottom: 32px;
  color: rgba(255,255,255,.9);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.55;
}

.primary-button {
  min-height: 58px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px solid var(--yellow);
  border-radius: 6px;
  background: var(--yellow);
  color: #071724;
  box-shadow: 0 13px 30px rgba(0,0,0,.25);
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 17px 34px rgba(0,0,0,.32);
  background: #fff23d;
}

.button-note {
  margin: 13px 0 0 4px;
  color: rgba(255,255,255,.68);
  font-size: 14px;
}

.steps {
  padding: 100px 0 108px;
  background: var(--cream);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 55px;
}

.eyebrow-dark {
  color: #047b9c;
}

.section-heading h2,
.join-band h2 {
  margin-bottom: 16px;
  font-size: clamp(37px, 5vw, 58px);
  letter-spacing: -.05em;
  line-height: 1;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.step-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.step-list li {
  min-height: 240px;
  padding: 0 38px;
  border-left: 1px solid #cfd4d1;
}

.step-list li:first-child {
  padding-left: 0;
  border-left: 0;
}

.step-list li:last-child {
  padding-right: 0;
}

.step-number {
  display: block;
  margin-bottom: 28px;
  color: #0782a6;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .14em;
}

.step-list h3 {
  margin-bottom: 13px;
  font-size: 23px;
  letter-spacing: -.025em;
}

.step-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.join-band {
  padding: 82px 0;
  background: var(--blue);
  color: var(--white);
}

.join-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.join-band .eyebrow {
  margin-bottom: 13px;
  color: #bff5ff;
}

.join-band h2 {
  max-width: 650px;
  margin-bottom: 0;
}

.primary-button-light {
  flex: 0 0 auto;
  box-shadow: none;
}

footer {
  padding: 28px 0;
  background: var(--navy);
  color: rgba(255,255,255,.66);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  margin: 0;
}

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

@media (max-width: 900px) {
  .hero-copy {
    --hero-mikey-width: 170px;
    --hero-title-gap: 30px;
  }

  .step-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .step-list li,
  .step-list li:first-child,
  .step-list li:last-child {
    min-height: 0;
    padding: 30px 0;
    display: grid;
    grid-template-columns: 70px 1fr;
    border-left: 0;
    border-top: 1px solid #cfd4d1;
  }

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

  .step-number {
    margin: 5px 0 0;
  }

  .join-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 28px, 1160px);
  }

  .hero,
  .hero-grid {
    min-height: 0;
  }

  .hero {
    background-position: 58% -240px;
  }

  .hero-grid {
    padding-top: 56px;
    padding-bottom: 54px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(3,20,34,.18) 0%, rgba(3,20,34,.08) 30%, rgba(3,20,34,.74) 65%, rgba(3,20,34,.88) 100%);
  }

  .hero-copy {
    --hero-mikey-width: clamp(96px, 30vw, 132px);
    --hero-title-gap: 16px;
  }

  .hero-title-row {
    align-items: end;
  }

  .hero-details {
    margin: 28px 0 0;
  }

  h1 {
    margin-bottom: 0;
    font-size: clamp(46px, 14vw, 64px);
  }

  .hero-lead {
    font-size: 18px;
    line-height: 1.55;
  }

  .primary-button {
    width: 100%;
    padding-inline: 18px;
  }

  .steps {
    padding: 72px 0 76px;
  }

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

  .section-heading h2,
  .join-band h2 {
    font-size: 38px;
  }

  .step-list li,
  .step-list li:first-child,
  .step-list li:last-child {
    grid-template-columns: 55px 1fr;
  }

  .step-list h3 {
    font-size: 20px;
  }

  .join-band {
    padding: 65px 0;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

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

  .primary-button {
    transition: none;
  }
}
