@font-face {
  font-family: "Sansation Hero";
  src: url("font/Sansation-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --page-pad: 28px;
  --black: #070504;
  --line: #dedfe8;
  --accent: #2d307d;
  --accent-dark: #20235f;
  --panel-left: 58vw;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: #fff;
  color: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

body.panel-open {
  overflow: hidden;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 15px var(--page-pad) 0;
  pointer-events: none;
}

.brand,
.site-nav {
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: flex-start;
  background: #fff;
  padding: 4px 6px;
  color: inherit;
  text-decoration: none;
}

.brand img {
  display: block;
  width: clamp(212px, 23vw, 324px);
  height: auto;
}

.site-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.site-nav button,
.site-nav a {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  background: #fff;
  color: var(--black);
  padding: 6px 8px 5px;
  font: 700 14px/1 Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.site-nav button:hover,
.site-nav button:focus-visible,
.site-nav button.is-active,
.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: var(--accent);
  outline: none;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  padding: 82px var(--page-pad) 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-shell::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 8;
  opacity: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.62) 1.5px, transparent 1.7px);
  background-size: 9px 9px;
}

body.panel-open .page-shell::after {
  opacity: 1;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  margin-top: 32px;
  margin-bottom: 0;
  background: #fff;
}

.site-footer p {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 0;
  background: #fff;
  color: var(--accent);
  text-decoration: none;
}

.social-links i {
  display: block;
  color: currentColor;
  font-size: 24px;
  line-height: 1;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: #fff;
  color: var(--accent-dark);
  outline: none;
}

.hero {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: fit-content;
  max-width: min(100%, calc(100vw - var(--page-pad) * 2 - clamp(300px, 42vw, 660px) - 56px));
}

.hero h1 {
  margin: 5px 0 28px;
  max-width: 100%;
  font-family: "Sansation Hero", Arial, Helvetica, sans-serif;
  font-size: clamp(76px, 9.35vw, 152px);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: normal;
}

.hero p {
  margin: 0;
  max-width: 100%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.1vw, 68px);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: normal;
}

.announcement {
  margin-top: clamp(22px, 3vw, 42px);
  max-width: min(620px, calc(100vw - var(--page-pad) * 2 - clamp(300px, 42vw, 660px) - 56px));
  border: 2px solid var(--accent);
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  padding: clamp(16px, 2vw, 22px);
}

.announcement h2 {
  margin: 0;
  max-width: 560px;
  font-family: "Sansation Hero", Arial, Helvetica, sans-serif;
  font-size: clamp(21px, 1.9vw, 30px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: 0;
}

.announcement p {
  margin: 16px 0 0;
  max-width: 530px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.55;
  letter-spacing: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  margin-top: 24px;
  border: 1px solid var(--accent);
  border-radius: 0;
  background: var(--accent);
  color: #fff;
  padding: 0 22px;
  font: 800 13px/1 Arial, Helvetica, sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease;
}

.button::after {
  content: "→";
  font-size: 1.1em;
  line-height: 1;
}

.hero-button {
  margin-top: 28px;
  min-height: 58px;
  padding: 0 30px;
  font-size: 16px;
}

.button:hover,
.button:focus-visible {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  outline: none;
}

.aircraft-render {
  position: absolute;
  top: 10vh;
  right: clamp(18px, 3vw, 48px);
  width: clamp(300px, 42vw, 660px);
  height: auto;
  margin: 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(190px, 220px));
  gap: 10px;
  margin-top: 90px;
}

.news-card {
  min-height: 300px;
  border: 1px solid var(--line);
  padding: 13px 15px;
  background: #fff;
}

.news-card.featured {
  background: var(--accent);
  color: #fff;
}

.news-card time,
.news-card span {
  display: block;
  margin-bottom: 10px;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
}

.news-card h2 {
  margin: 0;
  max-width: 195px;
  font-size: 27px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.waitlist-shell {
  padding-top: clamp(116px, 13vw, 164px);
}

.waitlist-page {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.86fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: start;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.waitlist-intro h1 {
  margin: 0 0 24px;
  font-family: "Sansation Hero", Arial, Helvetica, sans-serif;
  font-size: clamp(58px, 8vw, 124px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: 0;
}

.waitlist-intro p {
  margin: 0;
  max-width: 560px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

.waitlist-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  border: 2px solid var(--accent);
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  padding: clamp(20px, 3vw, 32px);
}

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

.form-row-wide,
.form-submit,
.form-status {
  grid-column: 1 / -1;
}

.form-row label {
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.form-row label span {
  color: #646464;
  font-weight: 700;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid #cfcfd8;
  border-radius: 0;
  background: #fff;
  color: var(--black);
  padding: 13px 14px;
  font: 16px/1.3 Arial, Helvetica, sans-serif;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--accent);
  outline: 2px solid rgba(45, 48, 125, 0.14);
  outline-offset: 1px;
}

.form-row input[aria-invalid="true"],
.form-row textarea[aria-invalid="true"] {
  border-color: #9a1b1b;
}

.field-error {
  min-height: 17px;
  color: #9a1b1b;
  font-size: 13px;
  line-height: 1.3;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-submit[disabled] {
  cursor: wait;
  opacity: 0.76;
}

.form-status {
  min-height: 20px;
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.form-status.is-success {
  color: #195b2c;
}

.form-status.is-error {
  color: #9a1b1b;
}

.panel {
  position: fixed;
  z-index: 12;
  top: 52px;
  right: 0;
  bottom: 0;
  left: var(--panel-left);
  border: 1px solid var(--line);
  border-right: 0;
  background: #fff;
  padding: 18px 16px;
  display: none;
  overflow: auto;
}

body.panel-open .panel {
  display: block;
}

.panel-content {
  display: none;
  max-width: 460px;
}

.panel-content.is-active {
  display: block;
}

.panel h2 {
  margin: 0 0 4px;
  font-family: "Sansation Hero", Arial, Helvetica, sans-serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.panel .location {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 35px;
  line-height: 1.05;
}

.panel .email {
  display: inline-block;
  margin: 0 0 28px;
  color: var(--black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.75;
  text-decoration: none;
}

.panel p {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.75;
  max-width: 470px;
}

.panel h3 {
  margin: 0 0 8px;
  font-size: 8px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.panel li {
  font-size: 18px;
  line-height: 1.48;
}

@media (min-width: 2200px) {
  .hero-copy {
    max-width: calc(50vw - var(--page-pad) - 36px);
  }

  .announcement {
    max-width: min(620px, calc(50vw - var(--page-pad) - 36px));
  }

  .aircraft-render {
    right: clamp(48px, 4vw, 96px);
    width: calc(50vw - var(--page-pad) - clamp(48px, 4vw, 96px));
  }
}

@media (max-width: 1440px) {
  .announcement {
    margin-bottom: 48px;
  }
}

@media (max-width: 1120px) {
  :root {
    --page-pad: 20px;
    --panel-left: 42vw;
  }

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

@media (max-width: 760px) {
  body.panel-open {
    overflow: hidden;
  }

  .site-header {
    position: fixed;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 8px;
    background: #fff;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    row-gap: 2px;
    column-gap: 8px;
  }

  .site-nav button,
  .site-nav a {
    padding: 3px 6px 2px;
    line-height: 0.95;
  }

  .brand img {
    width: clamp(176px, 52vw, 236px);
  }

  .page-shell {
    min-height: 100vh;
    padding-top: clamp(90px, 17vw, 118px);
    padding-bottom: 26px;
  }

  body.panel-open .page-shell::after {
    inset: 0;
  }

  .hero h1 {
    font-size: clamp(58px, 18vw, 95px);
    letter-spacing: 0;
  }

  .hero p {
    font-size: clamp(34px, 10vw, 52px);
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .announcement {
    margin-top: 24px;
    margin-bottom: 48px;
    max-width: 100%;
  }

  .announcement h2 {
    font-size: clamp(20px, 6vw, 28px);
  }

  .announcement p {
    font-size: 16px;
    line-height: 1.45;
  }

  .aircraft-render {
    position: static;
    display: block;
    width: min(86vw, 430px);
    margin: 34px 0 0;
  }

  .social-links a {
    width: 30px;
    height: 30px;
  }

  .social-links i {
    font-size: 20px;
  }

  .waitlist-shell {
    padding-top: 108px;
  }

  .waitlist-page,
  .waitlist-form {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr;
    margin-top: 70px;
  }

  .news-card {
    min-height: 210px;
  }

  .panel {
    top: 110px;
    left: 14vw;
    height: auto;
    border-left: 0;
  }

}
