:root {
  --charcoal: #303030;
  --orange: #fc641f;
  --silver: #b2b2b2;
  --white: #fafafa;
  --amber: #f9ab21;
  --graphite: #515151;
  --black: #101010;
  --line: rgba(250, 250, 250, 0.2);
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  color: var(--black);
  background: var(--white);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.home-page {
  min-height: 100svh;
  overflow-x: hidden;
}

.home-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(16, 16, 16, 0.35) 0%, rgba(16, 16, 16, 0.04) 38%, rgba(16, 16, 16, 0.88) 100%),
    linear-gradient(90deg, rgba(16, 16, 16, 0.48) 0%, rgba(16, 16, 16, 0.04) 58%),
    url("assets/coming-soon-bg.jpg") center 48% / cover no-repeat;
  transform: scale(1.015);
}

.home-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(250, 250, 250, 0.06) 0.7px, transparent 0.7px);
  background-size: 5px 5px;
  opacity: 0.16;
  pointer-events: none;
}

.home-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100svh;
  padding-inline: clamp(1.25rem, 4vw, 5rem);
}

.site-header {
  display: flex;
  align-items: flex-start;
  padding-top: clamp(1.5rem, 4vw, 3.75rem);
}

.brand-logo {
  display: block;
  width: clamp(15.5rem, 27vw, 31.5rem);
  height: auto;
}

.hero-main {
  display: flex;
  align-items: flex-end;
  padding-block: clamp(4rem, 11vh, 8rem) clamp(2rem, 5vh, 4rem);
}

.hero-copy {
  width: min(100%, 49rem);
  padding: clamp(1.35rem, 2.4vw, 2rem);
  border: 1px solid rgba(250, 250, 250, 0.22);
  border-radius: 2rem;
  background:
    linear-gradient(135deg, rgba(16, 16, 16, 0.8), rgba(48, 48, 48, 0.5)),
    radial-gradient(circle at 100% 0%, rgba(252, 100, 31, 0.16), transparent 45%);
  box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.22em;
  margin: 0 0 0.9rem;
  color: var(--white);
  font-size: clamp(2.6rem, 4.6vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.hero-heading span:last-child {
  color: var(--orange);
}

.hero-text {
  max-width: 43rem;
  margin: 0;
  color: rgba(250, 250, 250, 0.92);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  font-weight: 420;
  line-height: 1.58;
  text-wrap: pretty;
}

.coming-teaser {
  margin: 1.2rem 0 0;
  padding-top: 1.05rem;
  border-top: 1px solid rgba(250, 250, 250, 0.18);
  color: rgba(250, 250, 250, 0.8);
  font-size: 0.875rem;
  line-height: 1.55;
}

.coming-label {
  color: var(--orange);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.coming-text {
  margin-left: 0.25rem;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: fit-content;
  max-width: 100%;
  margin-top: 1.25rem;
  padding: 0.9rem 1.1rem 0.9rem 1.2rem;
  border: 1px solid var(--orange);
  border-radius: 999px;
  color: var(--black);
  background: var(--orange);
  font-size: 0.95rem;
  font-weight: 750;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 0.85rem 2.5rem rgba(252, 100, 31, 0.24);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.contact-button:hover {
  color: var(--white);
  background: rgba(252, 100, 31, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 1rem 3rem rgba(252, 100, 31, 0.2);
}

.button-arrow {
  font-size: 1.25rem;
  line-height: 1;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding-block: 1.35rem 1.75rem;
  border-top: 1px solid var(--line);
  color: rgba(250, 250, 250, 0.72);
  font-size: 0.82rem;
  letter-spacing: 0.025em;
}

.site-footer p {
  margin: 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.footer-nav a {
  text-decoration-color: transparent;
  text-underline-offset: 0.3em;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.footer-nav a:hover {
  color: var(--orange);
  text-decoration-color: currentColor;
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

.legal-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 90% 0%, rgba(252, 100, 31, 0.14), transparent 28rem),
    var(--charcoal);
}

.legal-shell {
  width: min(100% - 2.5rem, 74rem);
  margin-inline: auto;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1.75rem;
  border-bottom: 1px solid var(--line);
}

.legal-logo {
  display: block;
  width: clamp(13rem, 22vw, 20rem);
  height: auto;
}

.back-link {
  color: var(--silver);
  font-size: 0.92rem;
  text-decoration: none;
}

.back-link:hover {
  color: var(--orange);
}

.legal-content {
  width: min(100%, 52rem);
  padding-block: clamp(4rem, 9vw, 8rem);
}

.legal-kicker {
  margin: 0 0 0.8rem;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.legal-content h1 {
  margin: 0 0 3rem;
  color: var(--white);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.legal-content h2 {
  margin: 2.75rem 0 0.75rem;
  color: var(--white);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.25;
}

.legal-content h3 {
  margin: 1.8rem 0 0.5rem;
  color: var(--white);
  font-size: 1.05rem;
}

.legal-content p,
.legal-content li {
  color: rgba(250, 250, 250, 0.76);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-content p {
  margin: 0.55rem 0 1rem;
}

.legal-content ul {
  padding-left: 1.2rem;
}

.legal-content a {
  color: var(--white);
  text-decoration-color: var(--orange);
  text-underline-offset: 0.22em;
}

.legal-content address {
  color: rgba(250, 250, 250, 0.8);
  font-style: normal;
  line-height: 1.7;
}

.legal-note {
  margin-top: 3.5rem;
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--orange);
  background: rgba(16, 16, 16, 0.3);
  color: var(--silver);
  font-size: 0.88rem;
  line-height: 1.6;
}

.legal-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.5rem 2rem;
  border-top: 1px solid var(--line);
  color: var(--silver);
  font-size: 0.82rem;
}

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

.legal-footer a:hover {
  color: var(--orange);
}

@media (max-width: 700px) {
  .home-background {
    background:
      linear-gradient(180deg, rgba(16, 16, 16, 0.28) 0%, rgba(16, 16, 16, 0.1) 28%, rgba(16, 16, 16, 0.94) 78%),
      url("assets/coming-soon-bg.jpg") 60% center / cover no-repeat;
  }

  .brand-logo {
    width: min(79vw, 21rem);
  }

  .hero-main {
    padding-bottom: 1.6rem;
  }

  .hero-copy {
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .hero-heading {
    display: block;
  }

  .hero-heading span {
    display: block;
  }

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

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

@media (min-width: 850px) {
  .coming-teaser {
    white-space: nowrap;
  }
}

@media (max-height: 680px) and (min-width: 701px) {
  .site-header {
    padding-top: 1.5rem;
  }

  .brand-logo {
    width: 18rem;
  }

  .hero-main {
    padding-block: 2rem 1.5rem;
  }

  .hero-copy {
    padding: 1.25rem 1.4rem;
  }

  .contact-button {
    margin-top: 1.1rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .brand-logo,
  .hero-copy,
  .site-footer {
    animation: reveal 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .hero-copy {
    animation-delay: 100ms;
  }

  .site-footer {
    animation-delay: 180ms;
  }

  @keyframes reveal {
    from {
      opacity: 0;
      transform: translateY(12px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
