@font-face {
  font-family: "Bricolage Grotesque";
  src: url("./fonts/BricolageGrotesque-Variable.ttf") format("truetype");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nunito Sans";
  src: url("./fonts/NunitoSans-Variable.ttf") format("truetype");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --atlantic: #2f8da8;
  --sand: #f3e6d2;
  --gold: #f6b23a;
  --white: #ffffff;
  --navy: #0d2f4f;
  --lobster: #d94a3a;
  --green: #3f7d5a;
  --charcoal: #2b2b2b;
  --border: rgba(13, 47, 79, 0.15);
  --heading: "Bricolage Grotesque", system-ui, sans-serif;
  --body: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--navy);
  color: var(--charcoal);
  font-family: var(--body);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--white);
}

a {
  color: inherit;
}

p {
  margin: 0;
  line-height: 1.65;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--heading);
  line-height: 1.04;
}

.hero {
  position: relative;
  display: flex;
  min-height: 760px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 76px 20px 70px;
  background:
    radial-gradient(circle at 14% 12%, rgba(246, 178, 58, 0.22), transparent 22rem),
    radial-gradient(circle at 90% 32%, rgba(47, 141, 168, 0.22), transparent 25rem),
    linear-gradient(180deg, var(--sand) 0%, #fffaf3 54%, var(--white) 100%);
  text-align: center;
}

.hero::before,
.hero::after {
  position: absolute;
  border: 1px solid rgba(13, 47, 79, 0.08);
  border-radius: 50%;
  content: "";
}

.hero::before {
  top: -210px;
  left: -160px;
  width: 420px;
  height: 420px;
}

.hero::after {
  right: -140px;
  bottom: -240px;
  width: 500px;
  height: 500px;
}

.route-line {
  position: absolute;
  top: 34px;
  left: 50%;
  display: flex;
  width: min(560px, calc(100% - 56px));
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
}

.route-line::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 2px;
  background: rgba(13, 47, 79, 0.16);
  content: "";
}

.route-line span {
  position: relative;
  z-index: 1;
  width: 10px;
  height: 10px;
  border: 2px solid var(--sand);
  border-radius: 50%;
  background: var(--atlantic);
  box-shadow: 0 0 0 2px rgba(47, 141, 168, 0.22);
}

.route-line span:first-child,
.route-line span:last-child {
  width: 14px;
  height: 14px;
  background: var(--lobster);
}

.logo-placeholder {
  position: relative;
  display: grid;
  width: min(330px, 82vw);
  min-height: 235px;
  place-items: center;
  align-content: center;
  gap: 8px;
  margin-bottom: 28px;
  border: 2px dashed rgba(13, 47, 79, 0.23);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 24px 60px rgba(13, 47, 79, 0.13);
}

.logo-placeholder::before {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(47, 141, 168, 0.16);
  border-radius: 12px;
  content: "";
}

.logo-placeholder-label {
  color: var(--lobster);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.logo-placeholder-name {
  color: var(--navy);
  font-family: var(--heading);
  font-size: clamp(1.9rem, 7vw, 2.55rem);
  font-weight: 800;
  line-height: 0.92;
  text-transform: uppercase;
}

.logo-placeholder-route {
  color: var(--atlantic);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 12px;
  border: 1px solid rgba(13, 47, 79, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 860px;
  font-size: clamp(2.7rem, 8vw, 5.3rem);
  font-weight: 800;
}

.hero-copy {
  max-width: 700px;
  margin-top: 20px;
  color: rgba(43, 43, 43, 0.84);
  font-size: clamp(1.06rem, 2.3vw, 1.24rem);
}

.newsletter-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: rgba(43, 43, 43, 0.78);
  font-size: 0.98rem;
}

.newsletter-status strong {
  color: var(--navy);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(246, 178, 58, 0.2);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  padding: 14px 23px;
  border-radius: 10px;
  font-weight: 900;
}

.button-disabled {
  border: 2px solid rgba(13, 47, 79, 0.11);
  background: rgba(13, 47, 79, 0.08);
  color: rgba(13, 47, 79, 0.64);
  cursor: not-allowed;
}

.launch-notes {
  border-top: 1px solid rgba(13, 47, 79, 0.1);
  background: var(--white);
  padding: 76px 0 82px;
}

.launch-notes-inner {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.launch-notes-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px 70px;
  align-items: end;
}

.launch-notes-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -12px;
  background: var(--sand);
}

.launch-notes-heading h2 {
  font-size: clamp(2.15rem, 5vw, 3.65rem);
}

.launch-notes-heading > p:last-child {
  color: rgba(43, 43, 43, 0.76);
  font-size: 1.08rem;
}

.launch-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 46px;
}

.launch-pillar {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--sand);
}

.pillar-blue {
  border-top: 5px solid var(--atlantic);
}

.pillar-gold {
  border-top: 5px solid var(--gold);
}

.pillar-green {
  border-top: 5px solid var(--green);
}

.pillar-number {
  display: block;
  margin-bottom: 35px;
  color: rgba(13, 47, 79, 0.5);
  font-family: var(--heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.launch-pillar h3 {
  font-size: 1.35rem;
}

.launch-pillar p {
  margin-top: 12px;
  color: rgba(43, 43, 43, 0.75);
}

.coverage-band {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  padding: 30px 34px;
  border-radius: 14px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
}

.coverage-band .coverage-kicker {
  color: var(--white);
  font-family: var(--heading);
  font-size: 1.3rem;
  font-weight: 750;
  line-height: 1.15;
}

.site-footer {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px max(20px, calc((100% - 1080px) / 2));
  background: var(--navy);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  font-weight: 800;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.site-footer a {
  text-decoration-color: rgba(255, 255, 255, 0.34);
  text-underline-offset: 4px;
}

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

.site-header {
  display: flex;
  width: min(1080px, calc(100% - 32px));
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 22px 0;
}

.brand-placeholder {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-family: var(--heading);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
}

.brand-placeholder-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 2px dashed rgba(13, 47, 79, 0.28);
  border-radius: 10px;
  color: var(--atlantic);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
}

.site-nav,
.legal-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  color: var(--navy);
  font-weight: 800;
}

.site-nav a,
.legal-footer a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.legal-footer a:hover,
.legal-footer a:focus-visible {
  color: var(--lobster);
}

.legal-page {
  padding: 42px 0 78px;
  background: linear-gradient(180deg, rgba(243, 230, 210, 0.82), var(--white) 330px);
}

.legal-shell {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 46px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 22px 60px rgba(13, 47, 79, 0.11);
}

.legal-shell h1 {
  font-size: clamp(2.3rem, 7vw, 4.2rem);
}

.legal-shell h2 {
  margin-top: 38px;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
}

.legal-shell h3 {
  margin-top: 28px;
  font-size: 1.15rem;
}

.legal-shell p,
.legal-shell li {
  color: rgba(43, 43, 43, 0.84);
  line-height: 1.7;
}

.legal-shell p,
.legal-shell ul,
.legal-shell ol,
.legal-shell blockquote {
  margin: 17px 0 0;
}

.legal-shell ul,
.legal-shell ol {
  padding-left: 1.4rem;
}

.legal-shell li + li {
  margin-top: 8px;
}

.legal-shell hr {
  height: 1px;
  margin: 30px 0;
  border: 0;
  background: var(--border);
}

.legal-shell blockquote {
  padding: 18px 20px;
  border-left: 4px solid var(--lobster);
  background: var(--sand);
}

.legal-shell code {
  padding: 0.1em 0.3em;
  border-radius: 4px;
  background: var(--sand);
  color: var(--navy);
}

.legal-footer {
  display: flex;
  width: min(1080px, calc(100% - 32px));
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 30px 0;
  color: var(--navy);
  font-weight: 800;
}

@media (max-width: 820px) {
  .launch-notes-heading,
  .coverage-band {
    grid-template-columns: 1fr;
  }

  .launch-pillars {
    grid-template-columns: 1fr;
  }

  .launch-pillar {
    min-height: auto;
  }

  .pillar-number {
    margin-bottom: 22px;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: auto;
    padding-top: 68px;
  }

  .logo-placeholder {
    min-height: 210px;
  }

  .newsletter-status {
    align-items: flex-start;
    text-align: left;
  }

  .status-dot {
    flex: 0 0 auto;
    margin-top: 8px;
  }

  .button {
    width: 100%;
    max-width: 360px;
  }

  .launch-notes {
    padding: 54px 0 58px;
  }

  .launch-notes-heading .eyebrow {
    margin-bottom: -6px;
  }

  .site-footer,
  .site-header,
  .legal-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-shell {
    padding: 30px 21px;
  }
}

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