:root {
  color-scheme: light;
  --ink: #162022;
  --ink-soft: #405050;
  --paper: #f7f3eb;
  --paper-deep: #ebe4d6;
  --white: #fffdf8;
  --teal: #0e6d63;
  --teal-dark: #173f3b;
  --amber: #d39a32;
  --amber-soft: #f2d28a;
  --line: rgba(22, 32, 34, 0.16);
  --hero-shadow: rgba(5, 11, 12, 0.72);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 20;
  transform: translateY(-150%);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  min-height: 100dvh;
  background: var(--paper);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 84svh;
  overflow: hidden;
  color: var(--white);
  background: #0b1112;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  z-index: -2;
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.01);
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(9, 14, 15, 0.91) 0%,
      rgba(12, 18, 19, 0.78) 36%,
      rgba(16, 28, 28, 0.3) 66%,
      rgba(8, 13, 14, 0.18) 100%
    ),
    linear-gradient(
      0deg,
      rgba(5, 11, 12, 0.45) 0%,
      rgba(5, 11, 12, 0.08) 44%,
      rgba(5, 11, 12, 0.46) 100%
    );
}

.hero__top,
.hero__content,
.strip-grid {
  width: min(100% - 3rem, 1180px);
  margin-inline: auto;
}

.hero__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 800;
}

.brand__mark {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.42);
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.1);
  color: var(--amber-soft);
  font-size: 0.82rem;
  letter-spacing: 0;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 253, 248, 0.84);
  font-size: 0.92rem;
  font-weight: 700;
}

.availability__dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--amber-soft);
  box-shadow: 0 0 0 0 rgba(242, 210, 138, 0.62);
  animation: pulse 2.4s ease-in-out infinite;
}

.hero__content {
  position: relative;
  z-index: 1;
  align-self: center;
  padding-block: 3rem 6rem;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1.15rem;
  color: var(--amber-soft);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.kicker__line {
  display: block;
  width: 3rem;
  height: 2px;
  background: var(--amber);
}

h1,
h2,
p {
  margin-block: 0;
}

h1 {
  max-width: 14ch;
  font-size: 5rem;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.lead {
  max-width: 42rem;
  margin-top: 1.35rem;
  color: rgba(255, 253, 248, 0.86);
  font-size: 1.24rem;
  line-height: 1.7;
}

.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  margin-top: 2.1rem;
}

.button {
  display: inline-flex;
  min-height: 3.1rem;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0.85rem 1.35rem;
  text-decoration: none;
  font-weight: 800;
}

.button--primary {
  background: var(--amber-soft);
  color: #1b211c;
  box-shadow: 0 16px 40px var(--hero-shadow);
}

.button--primary:hover {
  background: #ffe0a1;
}

.button:focus-visible,
.brand:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--amber-soft);
  outline-offset: 4px;
}

.launch-note {
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.96rem;
  font-weight: 700;
}

.launch-strip {
  display: grid;
  align-items: stretch;
  min-height: 16svh;
  border-top: 1px solid rgba(255, 253, 248, 0.5);
  background:
    linear-gradient(90deg, var(--paper) 0%, #fbfaf5 54%, var(--paper-deep) 100%);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.strip-item {
  position: relative;
  min-height: 9.5rem;
  padding: 1.4rem 2rem 1.35rem;
  border-left: 1px solid var(--line);
}

.strip-item:last-child {
  border-right: 1px solid var(--line);
}

.strip-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2rem;
  width: 3.25rem;
  height: 3px;
  background: var(--teal);
}

.strip-item__number {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
}

.strip-item h2 {
  margin-top: 0.55rem;
  color: var(--teal-dark);
  font-size: 1.08rem;
  line-height: 1.2;
}

.strip-item p {
  margin-top: 0.7rem;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.55;
}

.contact-section {
  padding-block: 4.5rem;
  background: var(--white);
}

.contact-layout {
  width: min(100% - 3rem, 720px);
  margin-inline: auto;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf5;
  box-shadow: 0 18px 50px rgba(22, 32, 34, 0.08);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field label {
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(22, 32, 34, 0.22);
  border-radius: 6px;
  padding: 0.9rem 0.95rem;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.form-field textarea {
  min-height: 10rem;
  resize: vertical;
}

.hidden-field {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.button--form {
  width: fit-content;
  min-width: 12rem;
  border: 0;
  background: var(--teal);
  color: var(--white);
  cursor: pointer;
}

.button--form:hover {
  background: var(--teal-dark);
}

.response-page {
  display: grid;
  min-height: 100dvh;
  place-items: center;
  padding: 1.5rem;
  background:
    linear-gradient(135deg, rgba(14, 109, 99, 0.12), rgba(211, 154, 50, 0.16)),
    var(--paper);
}

.response-panel {
  width: min(100%, 36rem);
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(22, 32, 34, 0.1);
}

.response-brand {
  color: var(--teal-dark);
}

.response-brand .brand__mark {
  border-color: rgba(23, 63, 59, 0.25);
  background: var(--teal-dark);
}

.response-panel h1 {
  max-width: none;
  margin-top: 2rem;
  color: var(--teal-dark);
  font-size: clamp(2rem, 5vw, 3rem);
}

.response-panel p {
  margin-block: 1rem 1.5rem;
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.7;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(242, 210, 138, 0.62);
  }

  50% {
    box-shadow: 0 0 0 0.55rem rgba(242, 210, 138, 0);
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 82svh;
  }

  .hero__top,
  .hero__content,
  .strip-grid {
    width: min(100% - 2rem, 1180px);
  }

  .hero__image {
    object-position: 67% center;
  }

  h1 {
    font-size: 4rem;
  }

  .lead {
    max-width: 36rem;
    font-size: 1.12rem;
  }

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

  .strip-item,
  .strip-item:last-child {
    min-height: 8rem;
    border-right: 1px solid var(--line);
  }

  .contact-layout {
    width: min(100% - 2rem, 720px);
  }
}

@media (max-width: 600px) {
  .hero__top {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 1rem;
  }

  .hero__content {
    padding-block: 2.25rem 4rem;
  }

  h1 {
    max-width: 12ch;
    font-size: 3rem;
  }

  .lead {
    font-size: 1rem;
    line-height: 1.65;
  }

  .button {
    width: 100%;
  }

  .button--form {
    width: 100%;
  }

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

  .contact-section {
    padding-block: 3rem;
  }

  .contact-form {
    padding: 1rem;
  }

  .launch-note {
    width: 100%;
  }

  .strip-item {
    padding-inline: 1.25rem;
  }

  .strip-item::before {
    left: 1.25rem;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 2.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
