:root {
  --text: #101418;
  --muted: #5d6870;
  --white: #ffffff;
  --line: rgba(16, 20, 24, 0.16);
  --glass: rgba(244, 247, 248, 0.78);
  --accent: #c93d4b;
  --accent-2: #101418;
  --panel: rgba(242, 246, 247, 0.86);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

body {
  background: #dfe5e8;
  color: var(--text);
  font-family: var(--font);
  margin: 0;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

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

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

.launch-screen {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}

.launch-image,
.launch-shade {
  inset: 0;
  position: absolute;
}

.launch-image {
  height: 100%;
  opacity: 0.9;
  width: 100%;
}

.launch-shade {
  background:
    linear-gradient(65deg, rgba(0, 0, 0, 0.9), rgba(226, 234, 237, 0.68), rgba(226, 234, 237, 0.28)),
    linear-gradient(180deg, rgba(226, 234, 237, 0.18), rgba(213, 221, 225, 0.9));
  z-index: 1;
}

.launch-header,
.launch-copy,
.mode-bar {
  position: relative;
  z-index: 2;
}

.launch-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 26px 32px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
}

.brand span {
  background: var(--accent);
  border-radius: 8px;
  color: var(--white);
  display: grid;
  font-weight: 950;
  height: 42px;
  place-items: center;
  width: 42px;
}

.brand strong {
  font-size: 18px;
  font-weight: 950;
}

.launch-header p,
.eyebrow,
.mode-bar span {
  font-size: 12px;
  font-weight: 950;
  margin: 0;
  text-transform: uppercase;
}

.launch-header p {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
}

.header-action {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  padding: 11px 14px;
}

.header-action:hover {
  background: var(--white);
}

.launch-copy {
  align-self: end;
  background: var(--panel);
  border: 1px solid rgba(16, 20, 24, 0.1);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(16, 20, 24, 0.16);
  display: grid;
  gap: 18px;
  margin: 0 0 44px 32px;
  max-width: 860px;
  padding: 28px;
  width: calc(100% - 64px);
}

.eyebrow {
  color: var(--accent);
}

h1 {
  font-size: 78px;
  line-height: 0.9;
  margin: 0;
  max-width: 820px;
}

.lead {
  color: var(--muted);
  font-size: 21px;
  font-weight: 720;
  line-height: 1.42;
  margin: 0;
  max-width: 720px;
}

.mode-bar {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mode-bar article {
  background: rgba(237, 243, 245, 0.9);
  border-right: 1px solid var(--line);
  display: grid;
  gap: 8px;
  min-height: 128px;
  padding: 18px 22px;
}

.mode-bar article:first-child {
  border-left: 1px solid var(--line);
}

.mode-bar span {
  color: var(--accent);
}

.mode-bar strong {
  font-size: 25px;
  line-height: 1;
}

.mode-bar p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.3;
  margin: 0;
}

.contact-section {
  background: #edf2f4;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.74fr);
  margin: 0 auto;
  padding: 62px 32px 72px;
}

.contact-copy,
.contact-form {
  border-radius: 8px;
}

.contact-copy {
  align-content: center;
  background: var(--accent-2);
  color: var(--white);
  display: grid;
  gap: 16px;
  min-height: 360px;
  padding: 34px;
}

.contact-copy .eyebrow {
  color: #f2a1aa;
}

.contact-copy h2 {
  font-size: 48px;
  line-height: 1;
  margin: 0;
  max-width: 720px;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  font-weight: 680;
  line-height: 1.55;
  margin: 0;
  max-width: 720px;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(16, 20, 24, 0.13);
  display: grid;
  gap: 14px;
  padding: 22px;
}

.form-row {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.field label {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin: 0 0 7px;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  background: #f3f6f7;
  border: 1px solid rgba(16, 20, 24, 0.18);
  border-radius: 8px;
  color: var(--text);
  min-height: 48px;
  outline: none;
  padding: 0 13px;
  width: 100%;
}

.field textarea {
  line-height: 1.5;
  min-height: 112px;
  padding: 13px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--white);
  border-color: var(--accent);
}

.fineprint {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
  margin: 0;
}

.submit-button {
  background: var(--accent);
  border: 0;
  border-radius: 8px;
  color: var(--white);
  cursor: pointer;
  font-weight: 950;
  min-height: 50px;
  padding: 0 18px;
}

.submit-button:hover {
  background: #a92f3b;
}

@media (max-width: 900px) {
  .launch-header {
    padding: 18px;
  }

  .launch-copy {
    margin: 0 18px 32px;
    padding: 22px;
    width: auto;
  }

  h1 {
    font-size: 58px;
  }

  .lead {
    font-size: 18px;
  }

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

  .mode-bar article {
    min-height: 112px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    padding: 44px 18px 54px;
  }

  .contact-copy {
    min-height: 0;
    padding: 24px;
  }

  .contact-copy h2 {
    font-size: 38px;
  }
}

@media (max-width: 560px) {
  .launch-screen {
    min-height: auto;
  }

  .launch-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .launch-copy {
    min-height: 560px;
    padding-top: 42px;
  }

  h1 {
    font-size: 46px;
  }

  .lead {
    font-size: 17px;
  }

  .mode-bar {
    grid-template-columns: 1fr;
  }

  .header-action {
    width: max-content;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 18px;
  }

  .contact-copy h2 {
    font-size: 32px;
  }
}
