@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/space-grotesk-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
}

:root {
  --canvas: #090c10;
  --text: #f6f8fb;
  --text-muted: #b8c2ce;
  --border: rgb(210 224 238 / 18%);
  --accent: #ff842b;
  --accent-strong: #ff7417;
  --on-accent: #111318;
  --focus: #ffad70;
  --content-width: 1480px;
  --page-gutter: clamp(1.25rem, 4vw, 4.75rem);
  --radius-control: 10px;
  --layer-media: 0;
  --layer-shade: 1;
  --layer-content: 2;
  --layer-skip: 3;
}

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

html {
  min-width: 320px;
  background: var(--canvas);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
  min-height: 100dvh;
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: var(--layer-skip);
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-control);
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 750;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 180ms ease-out;
}

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

.page-shell {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: 100dvh;
  overflow: hidden;
}

.backdrop,
.backdrop-shade,
.texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.backdrop {
  z-index: var(--layer-media);
  background: #0c1015;
}

.backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.04);
}

.backdrop-shade {
  z-index: var(--layer-shade);
  background:
    linear-gradient(90deg, rgb(7 9 12 / 96%) 0%, rgb(7 9 12 / 86%) 30%, rgb(7 9 12 / 32%) 60%, rgb(7 9 12 / 18%) 100%),
    linear-gradient(180deg, rgb(7 9 12 / 58%) 0%, transparent 25%, transparent 68%, rgb(7 9 12 / 78%) 100%);
}

.texture {
  z-index: var(--layer-shade);
  opacity: 0.16;
  background-image: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 3px,
    rgb(255 255 255 / 2%) 4px
  );
  mix-blend-mode: soft-light;
}

.masthead,
.hero,
.site-footer {
  position: relative;
  z-index: var(--layer-content);
  width: min(100%, var(--content-width));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.masthead {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--border);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.6vw, 1.35rem);
}

.hosted-label {
  color: var(--text-muted);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-link {
  display: flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 180ms ease-out;
}

.brand-link img {
  width: clamp(8.5rem, 12vw, 10.75rem);
  height: auto;
}

.brand-link:hover {
  opacity: 0.82;
}

.company-label {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 42rem) minmax(0, 1fr);
  align-items: center;
  padding-block: clamp(2.25rem, 6vh, 5rem);
}

.hero-copy {
  grid-column: 1;
  max-width: 42rem;
}

.domain-line {
  min-height: 1.5em;
  margin: 0 0 clamp(1.5rem, 3.5vh, 2.75rem);
  color: var(--accent);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(0.95rem, 1.35vw, 1.15rem);
  font-weight: 650;
  letter-spacing: 0.03em;
  overflow-wrap: anywhere;
}

.domain-value[hidden] {
  display: none;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(3.55rem, 6.35vw, 6.2rem);
  font-weight: 580;
  letter-spacing: -0.058em;
  line-height: 0.96;
  text-wrap: balance;
}

h1 span {
  display: block;
}

.hero-text {
  max-width: 34rem;
  margin: clamp(1.5rem, 3.2vh, 2.35rem) 0 0;
  color: var(--text-muted);
  font-size: clamp(1.05rem, 1.55vw, 1.25rem);
  font-weight: 450;
  line-height: 1.65;
}

.primary-action {
  display: inline-flex;
  min-height: 54px;
  margin-top: clamp(2rem, 4.5vh, 3rem);
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.85rem 1.05rem 0.85rem 1.25rem;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: var(--radius-control);
  background: var(--accent);
  box-shadow: 0 18px 45px rgb(255 116 23 / 16%);
  color: var(--on-accent);
  font-size: 0.98rem;
  font-weight: 780;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color 180ms ease-out,
    box-shadow 220ms ease-out,
    transform 180ms ease-out;
}

.action-mark {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 7px;
  background: rgb(17 19 24 / 11%);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.1rem;
}

.primary-action:hover {
  background: var(--accent-strong);
  box-shadow: 0 22px 54px rgb(255 116 23 / 22%);
  transform: translateY(-2px);
}

.primary-action:active {
  transform: translateY(0) scale(0.98);
}

.brand-link:focus-visible,
.primary-action:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.site-footer {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.75rem;
}

.site-footer nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.75rem);
}

.site-footer a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  text-underline-offset: 0.25em;
  text-decoration-color: transparent;
  transition:
    color 180ms ease-out,
    text-decoration-color 180ms ease-out;
}

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

@media (prefers-reduced-motion: no-preference) {
  .backdrop img {
    animation: image-settle 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .masthead,
  .hero-copy > *,
  .site-footer {
    animation: content-rise 380ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .masthead {
    animation-delay: 80ms;
  }

  .domain-line {
    animation-delay: 130ms;
  }

  h1 {
    animation-delay: 190ms;
  }

  .hero-text {
    animation-delay: 250ms;
  }

  .primary-action {
    animation-delay: 310ms;
  }

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

@keyframes image-settle {
  from {
    opacity: 0;
    transform: scale(1.035);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes content-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  :root {
    --page-gutter: clamp(1.1rem, 5.5vw, 1.6rem);
  }

  .page-shell {
    min-height: 100dvh;
  }

  .backdrop img {
    object-position: 72% center;
  }

  .backdrop-shade {
    background:
      linear-gradient(180deg, rgb(7 9 12 / 22%) 0%, rgb(7 9 12 / 28%) 28%, rgb(7 9 12 / 72%) 50%, rgb(7 9 12 / 90%) 100%),
      linear-gradient(90deg, rgb(7 9 12 / 72%) 0%, rgb(7 9 12 / 24%) 66%, rgb(7 9 12 / 42%) 100%);
  }

  .masthead {
    min-height: 68px;
    gap: 1rem;
  }

  .hosted-label {
    font-size: 0.65rem;
  }

  .brand-link img {
    width: clamp(7.35rem, 35vw, 9rem);
  }

  .company-label {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    align-items: center;
    padding-block: clamp(2.35rem, 8vh, 4.5rem);
  }

  .hero-copy {
    grid-column: 1;
    width: 100%;
  }

  .domain-line {
    margin-bottom: 1.4rem;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.65rem, 13.4vw, 4.5rem);
    line-height: 0.98;
  }

  .hero-text {
    max-width: 26rem;
    margin-top: 1.35rem;
    font-size: 1rem;
  }

  .primary-action {
    min-height: 56px;
    margin-top: 2rem;
  }

  .site-footer {
    min-height: 78px;
    padding-block: 0.75rem;
  }

  .site-footer nav {
    width: 100%;
    justify-content: space-between;
    gap: 0.75rem;
  }
}

@media (max-width: 410px) {
  .hosted-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .site-footer nav {
    font-size: 0.75rem;
  }
}

@media (max-height: 700px) and (min-width: 768px) {
  .masthead {
    min-height: 66px;
  }

  .hero {
    padding-block: 1.5rem;
  }

  .domain-line {
    margin-bottom: 1.25rem;
  }

  h1 {
    font-size: clamp(3.25rem, 7.5vh, 4.6rem);
  }

  .hero-text {
    margin-top: 1.25rem;
  }

  .primary-action {
    margin-top: 1.5rem;
  }

  .site-footer {
    min-height: 58px;
  }
}

@media (max-height: 580px) and (orientation: landscape) {
  .page-shell {
    min-height: 580px;
  }
}

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

@media (prefers-reduced-transparency: reduce) {
  .backdrop-shade {
    background: rgb(9 12 16 / 94%);
  }

  .texture {
    display: none;
  }
}
