:root {
  color-scheme: dark;
  --bg: #090a10;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-border: rgba(255, 255, 255, 0.16);
  --text: #f7f3ec;
  --muted: #b7ad9f;
  --accent: #ffcf5c;
  --accent-strong: #ff9f1c;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 207, 92, 0.22), transparent 28rem),
    radial-gradient(circle at 80% 10%, rgba(255, 88, 88, 0.18), transparent 24rem),
    linear-gradient(135deg, #090a10 0%, #161421 48%, #090a10 100%);
  overflow-x: hidden;
}

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(6px);
  opacity: 0.58;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
}

.ambient-one {
  width: 36rem;
  height: 36rem;
  left: -12rem;
  top: 10vh;
  background: radial-gradient(circle, rgba(255, 207, 92, 0.22), transparent 66%);
  animation: drift-one 14s ease-in-out infinite alternate;
}

.ambient-two {
  width: 34rem;
  height: 34rem;
  right: -10rem;
  top: 4vh;
  background: radial-gradient(circle, rgba(255, 80, 126, 0.22), transparent 68%);
  animation: drift-two 16s ease-in-out infinite alternate;
}

.orbital {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.tile {
  position: absolute;
  display: block;
  width: 92px;
  height: 128px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.tile-one {
  left: 14vw;
  top: 26vh;
  animation: float-one 7s ease-in-out infinite;
}

.tile-two {
  right: 13vw;
  top: 32vh;
  width: 76px;
  height: 104px;
  animation: float-two 8s ease-in-out infinite;
}

.tile-three {
  left: 50%;
  bottom: 10vh;
  width: 66px;
  height: 88px;
  animation: float-three 9s ease-in-out infinite;
}

a {
  color: inherit;
}

.site-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
}

.logo {
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 650;
}

nav a:hover {
  color: var(--text);
}

.logo,
nav a,
.button {
  transition:
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.logo:hover,
nav a:hover,
.button:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: calc(100vh - 92px);
  place-items: center;
  padding: 32px 20px 80px;
}

.hero-card {
  width: min(880px, 100%);
  padding: clamp(32px, 6vw, 72px);
  border: 1px solid var(--panel-border);
  border-radius: 32px;
  background: var(--panel);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
  animation: card-in 720ms ease-out both;
}

.hero-card.narrow {
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
}

.lede {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  color: #171007;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 12px 34px rgba(255, 159, 28, 0.28);
}

.button.secondary {
  border: 1px solid var(--panel-border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.contact-list a {
  display: block;
  padding: 18px 20px;
  border: 1px solid var(--panel-border);
  border-radius: 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  font-weight: 750;
}

.contact-list a:hover {
  border-color: rgba(255, 207, 92, 0.55);
}

@keyframes card-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

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

@keyframes drift-one {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(6rem, 2rem, 0) scale(1.08);
  }
}

@keyframes drift-two {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-5rem, 4rem, 0) scale(1.06);
  }
}

@keyframes float-one {
  0%,
  100% {
    transform: translateY(0) rotate(-10deg);
  }

  50% {
    transform: translateY(-18px) rotate(-6deg);
  }
}

@keyframes float-two {
  0%,
  100% {
    transform: translateY(0) rotate(12deg);
  }

  50% {
    transform: translateY(16px) rotate(8deg);
  }
}

@keyframes float-three {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) rotate(7deg);
  }

  50% {
    transform: translateX(-50%) translateY(-14px) rotate(12deg);
  }
}

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

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

  .hero {
    padding-inline: 14px;
  }

  .hero-card {
    border-radius: 24px;
  }

  .tile {
    opacity: 0.48;
  }

  .tile-one {
    left: -18px;
    top: 22vh;
  }

  .tile-two {
    right: -18px;
    top: 18vh;
  }

  .tile-three {
    display: none;
  }
}
