:root {
  color-scheme: dark;
  --bg: #060707;
  --ink: #ffffff;
  --muted: #b7bdc8;
  --soft: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.14);
  --panel: rgba(9, 11, 14, 0.58);
  --orange: #ff9708;
  --orange-2: #f36f16;
  --blue: #4965ff;
  --violet: #9e78ce;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(6, 7, 7, 0.3), #060707 82%),
    #060707;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

#scene {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.page-shell {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  isolation: isolate;
}

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 1.12rem;
  font-weight: 850;
  line-height: 1;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
}

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

.footer-link {
  color: var(--soft);
  font-size: 0.98rem;
  font-weight: 650;
  transition: color 180ms ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--ink);
}

.hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  align-items: center;
  padding: 58px 0 72px;
}

.hero-copy {
  max-width: 940px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--orange);
  font-size: 0.86rem;
  font-weight: 850;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 940px;
  font-size: 7rem;
  line-height: 0.88;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: lowercase;
  text-wrap: balance;
  text-shadow:
    0 2px 0 rgba(73, 101, 255, 0.35),
    0 24px 80px rgba(0, 0, 0, 0.6);
}

h1 span {
  display: inline-block;
}

.gradient-text {
  background: linear-gradient(90deg, var(--orange) 0%, var(--violet) 47%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.domain {
  color: var(--ink);
}

.lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--ink);
  font-size: 1.32rem;
  line-height: 1.35;
  font-weight: 750;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.7);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.action {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  backdrop-filter: blur(16px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.action:hover,
.action:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 151, 8, 0.58);
  background: rgba(255, 255, 255, 0.09);
}

.action-primary {
  border-color: rgba(255, 151, 8, 0.72);
  background: var(--orange);
  color: #111;
  box-shadow: 0 18px 44px rgba(255, 151, 8, 0.2);
}

.action-primary:hover,
.action-primary:focus-visible {
  background: #ffab2a;
  color: #111;
}

.contact-strip {
  width: min(1180px, calc(100% - 40px));
  min-height: 70px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

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

  .hero {
    padding: 38px 0 62px;
  }

  h1 {
    font-size: 4.6rem;
  }

  .lead {
    font-size: 1.14rem;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .contact-strip {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    min-height: 106px;
  }

  .hero {
    align-items: start;
    padding: 38px 0 52px;
  }

  .eyebrow {
    margin-bottom: 16px;
  }

  h1 {
    font-size: 3.38rem;
    line-height: 0.94;
  }

  .lead {
    margin-top: 22px;
    font-size: 1.04rem;
  }

  .contact-actions {
    margin-top: 30px;
  }

  .action {
    width: 100%;
    min-height: 50px;
  }

  .contact-strip {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 18px;
    padding-top: 16px;
  }
}

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