:root {
  --blue: #103ee9;
  --blue-dark: #08259f;
  --acid: #c8ff19;
  --white: #ffffff;
  --ice: #edf2ff;
  --ink: #081643;
  --line: #8ba2fb;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Archivo", Arial, sans-serif;
}

a {
  color: inherit;
}

.utility-header {
  position: relative;
  z-index: 3;
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 10px clamp(18px, 3.4vw, 56px);
  border-bottom: 2px solid var(--ink);
  background: var(--white);
}

.logo {
  width: max-content;
  display: inline-flex;
  align-items: baseline;
  color: var(--blue);
  font-size: 1.24rem;
  font-weight: 900;
  letter-spacing: -0.07em;
  text-decoration: none;
}

.logo > span {
  color: var(--ink);
}

.logo small {
  margin-left: 7px;
  padding-left: 7px;
  border-left: 2px solid var(--ink);
  color: var(--ink);
  font-family: "Roboto Mono", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.08em;
}

.utility-header > p {
  margin: 0;
  font-family: "Roboto Mono", monospace;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.header-actions a {
  padding: 12px 14px;
  font-family: "Roboto Mono", monospace;
  font-size: 0.68rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.header-actions .phone-button {
  background: var(--acid);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.34fr);
  background: var(--blue);
  color: var(--white);
}

.hero-main {
  padding: clamp(55px, 8vw, 115px) clamp(20px, 5vw, 78px) clamp(65px, 8vw, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 2px solid var(--white);
}

.status {
  width: max-content;
  margin: 0 0 clamp(45px, 8vh, 90px);
  padding: 9px 12px;
  border: 1px solid var(--white);
  font-family: "Roboto Mono", monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status span {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 3px rgba(200, 255, 25, 0.25);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Archivo", Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(4.2rem, 9.3vw, 10rem);
  letter-spacing: -0.085em;
  line-height: 0.79;
}

mark {
  padding: 0;
  color: var(--acid);
  background: transparent;
}

.tagline {
  margin: 35px 0 0;
  color: var(--acid);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 800;
}

.hero-description {
  max-width: 670px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.55;
}

.primary-cta {
  width: min(100%, 670px);
  min-height: 68px;
  margin-top: 34px;
  padding: 0 7px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--acid);
  border: 2px solid var(--ink);
  color: var(--ink);
  font-family: "Roboto Mono", monospace;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 7px 7px 0 var(--ink);
}

.primary-cta b {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  font-size: 1.3rem;
}

.dispatch-card {
  min-width: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--acid);
  color: var(--ink);
}

.dispatch-top {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
  font-family: "Roboto Mono", monospace;
  font-size: 0.58rem;
  font-weight: 700;
}

.sparkle {
  position: relative;
  width: min(18vw, 220px);
  aspect-ratio: 1;
  margin: 45px auto;
}

.sparkle i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 18%;
  border: 3px solid var(--ink);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.sparkle i:nth-child(2) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.sparkle i:nth-child(3) {
  transform: translate(-50%, -50%) rotate(90deg);
}

.sparkle i:nth-child(4) {
  transform: translate(-50%, -50%) rotate(135deg);
}

.dispatch-bottom p {
  margin: 0 0 24px;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
}

.dispatch-bottom a {
  display: block;
  padding: 11px 0;
  border-top: 1px solid var(--ink);
  font-family: "Roboto Mono", monospace;
  font-size: clamp(0.62rem, 0.8vw, 0.75rem);
  font-weight: 700;
  text-decoration: none;
}

.dispatch-bottom a:last-child {
  border-bottom: 1px solid var(--ink);
  overflow-wrap: anywhere;
}

.ticker {
  min-height: 66px;
  padding: 0 clamp(18px, 3.3vw, 52px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  overflow: hidden;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--white);
  font-family: "Roboto Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.ticker b {
  color: var(--blue);
  font-size: 1.5rem;
}

.service-menu {
  padding: clamp(80px, 11vw, 155px) clamp(18px, 4vw, 64px);
}

.menu-header {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  gap: clamp(35px, 8vw, 120px);
  align-items: end;
  padding-bottom: 48px;
}

.section-code {
  margin: 0 0 24px;
  color: var(--blue);
  font-family: "Roboto Mono", monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.menu-header h2,
.scope-title h2,
.headspace-layout h2 {
  max-width: 900px;
  font-size: clamp(3rem, 6vw, 6.7rem);
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.menu-header > p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.menu-list {
  border-top: 3px solid var(--ink);
}

.menu-list article {
  min-height: 150px;
  display: grid;
  grid-template-columns: 70px minmax(190px, 0.7fr) minmax(280px, 1fr) auto;
  gap: 30px;
  align-items: center;
  border-bottom: 1px solid var(--ink);
}

.number {
  font-family: "Roboto Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
}

.menu-list h3 {
  color: var(--blue);
  font-size: clamp(1.55rem, 3vw, 3.1rem);
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.menu-list p {
  margin: 0;
  line-height: 1.55;
}

.menu-list a {
  padding: 13px 15px;
  border: 2px solid var(--ink);
  font-family: "Roboto Mono", monospace;
  font-size: 0.65rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 3px 3px 0 var(--ink);
}

.menu-list article:hover {
  background: var(--ice);
}

.menu-list article:hover a {
  background: var(--acid);
}

.scope-band {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 700px;
  background: var(--acid);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.scope-title {
  padding: clamp(45px, 6vw, 90px);
  border-right: 2px solid var(--ink);
}

.scope-title .section-code {
  color: var(--ink);
}

.scope-band ol {
  margin: 0;
  padding: 0;
  display: grid;
  list-style: none;
}

.scope-band li {
  padding: clamp(30px, 4vw, 55px);
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 25px;
  align-items: center;
  border-bottom: 2px solid var(--ink);
}

.scope-band li:last-child {
  border: 0;
}

.scope-band li > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--blue);
  border: 2px solid var(--ink);
  color: var(--white);
  font-family: "Roboto Mono", monospace;
  font-weight: 700;
  box-shadow: 4px 4px 0 var(--ink);
}

.scope-band strong {
  font-size: clamp(1.25rem, 2.25vw, 2rem);
  letter-spacing: -0.035em;
}

.scope-band p {
  margin: 9px 0 0;
  line-height: 1.5;
}

.quote-block {
  padding: clamp(70px, 9vw, 125px) clamp(20px, 5vw, 76px);
  background: var(--blue);
  color: var(--white);
}

.quote-label {
  display: flex;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  font-family: "Roboto Mono", monospace;
  font-size: 0.65rem;
  font-weight: 700;
}

.quote-block h2 {
  margin: clamp(60px, 9vw, 130px) 0;
  font-size: clamp(4rem, 11vw, 11.7rem);
  letter-spacing: -0.09em;
  line-height: 0.77;
}

.quote-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: end;
}

.quote-footer > p {
  max-width: 470px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
  line-height: 1.55;
}

.quote-footer a {
  display: block;
  padding: 17px 20px;
  border: 2px solid var(--white);
  font-family: "Roboto Mono", monospace;
  font-size: clamp(0.68rem, 1vw, 0.85rem);
  font-weight: 700;
  text-decoration: none;
}

.quote-footer a:first-child {
  background: var(--acid);
  border-color: var(--acid);
  color: var(--ink);
}

.headspace-extension {
  padding: clamp(85px, 11vw, 150px) clamp(20px, 5vw, 76px);
  background: var(--ice);
}

.headspace-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(50px, 10vw, 150px);
  align-items: end;
}

.plus {
  width: 62px;
  height: 62px;
  margin-bottom: 50px;
  display: grid;
  place-items: center;
  background: var(--acid);
  border: 2px solid var(--ink);
  color: var(--blue);
  font-family: "Roboto Mono", monospace;
  font-size: 2.6rem;
  font-weight: 700;
  box-shadow: 5px 5px 0 var(--ink);
}

.headspace-layout h2 {
  color: var(--blue);
}

.headspace-copy > p:first-child {
  margin: 0 0 30px;
  font-size: 1.07rem;
  line-height: 1.65;
}

.headspace-copy > a {
  display: block;
  padding: 16px;
  background: var(--blue);
  color: var(--white);
  font-family: "Roboto Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.disclaimer {
  margin: 38px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(8, 22, 67, 0.35);
  font-family: "Roboto Mono", monospace;
  font-size: 0.65rem;
  line-height: 1.55;
}

footer {
  min-height: 130px;
  padding: 25px clamp(20px, 5vw, 76px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: var(--ink);
  color: var(--white);
}

footer .logo,
footer .logo > span,
footer .logo small {
  color: var(--white);
  border-color: var(--white);
}

footer p {
  margin: 0;
  font-family: "Roboto Mono", monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
}

footer div {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
}

footer div a {
  font-family: "Roboto Mono", monospace;
  font-size: 0.65rem;
}

@media (max-width: 980px) {
  .utility-header {
    grid-template-columns: 1fr auto;
  }

  .utility-header > p {
    display: none;
  }

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

  .hero-main {
    min-height: calc(100vh - 76px);
    border-right: 0;
  }

  .dispatch-card {
    min-height: 490px;
  }

  .sparkle {
    width: 190px;
  }

  .menu-list article {
    grid-template-columns: 50px 0.75fr 1.25fr;
    padding: 25px 0;
  }

  .menu-list a {
    grid-column: 2;
    width: max-content;
  }

  .scope-band {
    grid-template-columns: 1fr;
  }

  .scope-title {
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }

  .headspace-layout {
    grid-template-columns: 1fr;
  }

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

  footer > p {
    text-align: right;
  }

  footer div {
    grid-column: 1 / -1;
    justify-content: space-between;
  }
}

@media (max-width: 680px) {
  .utility-header {
    min-height: 110px;
    align-content: center;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .header-actions {
    justify-content: space-between;
  }

  .header-actions a:first-child {
    padding-left: 0;
  }

  .hero-main {
    min-height: calc(100vh - 110px);
  }

  .status {
    max-width: 100%;
    margin-bottom: 55px;
    white-space: normal;
  }

  h1 {
    font-size: clamp(3.8rem, 20vw, 6.2rem);
  }

  .primary-cta {
    padding-left: 16px;
    font-size: 0.67rem;
  }

  .ticker {
    justify-content: flex-start;
  }

  .menu-header,
  .quote-footer {
    grid-template-columns: 1fr;
  }

  .menu-list article {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .menu-list p {
    grid-column: 2;
  }

  .menu-list a {
    grid-column: 2;
  }

  .scope-band li {
    grid-template-columns: 54px 1fr;
    gap: 18px;
  }

  .scope-band li > span {
    width: 46px;
    height: 46px;
  }

  .quote-label {
    gap: 15px;
  }

  .quote-block h2 {
    font-size: clamp(3.7rem, 19vw, 6.6rem);
  }

  .quote-footer a {
    overflow-wrap: anywhere;
  }

  .headspace-layout h2 {
    font-size: clamp(2.7rem, 14vw, 4.8rem);
  }

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

  footer > p {
    text-align: left;
  }

  footer div {
    grid-column: auto;
    flex-direction: column;
    gap: 9px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .primary-cta,
  .menu-list article,
  .menu-list a,
  .headspace-copy > a {
    transition: background-color 140ms ease, color 140ms ease, transform 140ms ease;
  }

  .primary-cta:hover,
  .menu-list a:hover {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0 var(--ink);
  }

  .headspace-copy > a:hover {
    background: var(--acid);
    color: var(--ink);
  }
}
