:root {
  --ink: #090909;
  --ink-soft: #121212;
  --paper: #f4f0e8;
  --muted: #aaa59b;
  --orange: #ff7315;
  --orange-light: #ff9a4d;
  --line: rgba(255, 255, 255, .13);
  --display: "Archivo Black", sans-serif;
  --body: "Manrope", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
.skip-link {
  position: fixed;
  top: -4rem;
  left: 1rem;
  z-index: 100;
  padding: .75rem 1rem;
  color: var(--ink);
  background: var(--orange);
  border-radius: 0 0 .5rem .5rem;
  font-weight: 700;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

.atmosphere,
.grain { position: fixed; inset: 0; pointer-events: none; }
.atmosphere { z-index: -1; overflow: hidden; }
.atmosphere::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(255,255,255,.035) 50%, transparent 50.1%),
    linear-gradient(0deg, transparent 49.9%, rgba(255,255,255,.025) 50%, transparent 50.1%);
  background-size: 7rem 7rem;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.grain {
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
.spotlight { position: absolute; filter: blur(2px); }
.spotlight--left {
  width: 46rem;
  height: 46rem;
  left: -30rem;
  top: 4rem;
  background: radial-gradient(circle, rgba(255,115,21,.19), transparent 68%);
}
.spotlight--right {
  width: 54rem;
  height: 54rem;
  right: -21rem;
  top: -18rem;
  background: radial-gradient(circle, rgba(255,115,21,.23), transparent 66%);
}
.orbit {
  position: absolute;
  border: 1px solid rgba(255, 115, 21, .18);
  border-radius: 50%;
}
.orbit--one { width: 42rem; height: 42rem; right: -10rem; top: 4rem; }
.orbit--two { width: 25rem; height: 25rem; right: -2rem; top: 12.5rem; }

.topbar {
  width: min(100% - 3rem, 1380px);
  height: 8.5rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  width: 7.4rem;
  padding: .45rem .6rem;
  overflow: hidden;
  background: var(--paper);
  border-radius: .45rem;
}
.brand img { width: 100%; height: auto; display: block; }
.topbar__contact {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  color: var(--paper);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.topbar__contact svg {
  width: 1.25rem;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.8;
  transition: transform .25s ease;
}
.topbar__contact:hover svg,
.topbar__contact:focus-visible svg { transform: translateX(.35rem); }

.hero {
  width: min(100% - 3rem, 1380px);
  min-height: calc(100vh - 12.5rem);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(24rem, .85fr);
  align-items: center;
  gap: 4rem;
  padding: 4rem 0 5rem;
}
.hero__content { position: relative; z-index: 2; min-width: 0; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 0 0 1.8rem;
  color: var(--orange-light);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow span {
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 .35rem rgba(255,115,21,.12);
  animation: pulse 2.5s ease-out infinite;
}
h1 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.35rem, 6.3vw, 7.1rem);
  line-height: .92;
  letter-spacing: -.065em;
  text-transform: uppercase;
}
h1 span {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--orange);
  text-shadow: 0 0 45px rgba(255,115,21,.08);
}
.hero__copy {
  max-width: 36rem;
  margin: 2rem 0 2.4rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
}
.contacts { display: flex; flex-wrap: wrap; gap: .85rem; }
.contact-card {
  min-width: 17rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .8rem;
  padding: .95rem 1rem;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  text-decoration: none;
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.contact-card:first-child { min-width: min(100%, 24rem); }
.contact-card:hover,
.contact-card:focus-visible {
  border-color: rgba(255,115,21,.65);
  background: rgba(255,115,21,.08);
  transform: translateY(-3px);
}
.contact-card__icon {
  width: 2.45rem;
  height: 2.45rem;
  display: grid;
  place-items: center;
  color: var(--orange);
  background: rgba(255,115,21,.11);
  border-radius: 50%;
}
.contact-card__icon svg {
  width: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-card__text { min-width: 0; display: flex; flex-direction: column; gap: .1rem; }
.contact-card small { color: var(--muted); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.contact-card strong { overflow-wrap: anywhere; font-size: .82rem; font-weight: 600; }
.contact-card__arrow { color: var(--orange); font-size: 1.15rem; }

.hero__stage {
  position: relative;
  min-width: 0;
  min-height: 33rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.hero__stage::before,
.hero__stage::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
}
.hero__stage::before {
  width: 25rem;
  height: 25rem;
  border: 1px solid rgba(255,255,255,.09);
  background: radial-gradient(circle at 45% 42%, rgba(255,115,21,.2), rgba(255,255,255,.025) 48%, transparent 72%);
  box-shadow: inset 0 0 6rem rgba(255,115,21,.04), 0 0 8rem rgba(255,115,21,.08);
}
.hero__stage::after {
  width: 19rem;
  height: 19rem;
  border: 1px dashed rgba(255,115,21,.25);
  animation: rotate 28s linear infinite;
}
.hero__stage img {
  width: min(85%, 25rem);
  height: auto;
  aspect-ratio: 1;
  padding: clamp(1.75rem, 4vw, 3rem) clamp(1.2rem, 3vw, 2.25rem);
  object-fit: contain;
  background: var(--paper);
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50%;
  filter: drop-shadow(0 2rem 3rem rgba(0,0,0,.6));
  transform: translateY(-.5rem);
}
.stage__halo {
  position: absolute;
  z-index: -2;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: var(--orange);
  filter: blur(6rem);
  opacity: .25;
}

.footer {
  width: min(100% - 3rem, 1380px);
  margin: -4rem auto 0;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #77736b;
  border-top: 1px solid var(--line);
  font-size: .72rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.footer__line { width: 2rem; height: 1px; background: #393733; }

.reveal { opacity: 0; transform: translateY(1.25rem); animation: reveal .85s cubic-bezier(.2,.75,.2,1) forwards; }
.reveal--one { animation-delay: .08s; }
.reveal--two { animation-delay: .18s; }
.reveal--three { animation-delay: .32s; }
.reveal--four { animation-delay: .46s; }

@keyframes reveal { to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 70% { box-shadow: 0 0 0 .8rem rgba(255,115,21,0); } }
@keyframes rotate { to { transform: rotate(360deg); } }

@media (max-width: 960px) {
  .topbar { height: 7rem; }
  .hero { grid-template-columns: 1fr; gap: 0; padding-top: 4.5rem; }
  .hero__content { text-align: center; }
  .eyebrow, .contacts { justify-content: center; }
  h1, .hero__copy { margin-left: auto; margin-right: auto; }
  .hero__stage { min-height: 27rem; }
  .footer { margin-top: 0; justify-content: center; }
}

@media (max-width: 620px) {
  .topbar, .hero, .footer { width: min(100% - 2rem, 1380px); }
  .topbar { height: 6rem; }
  .brand { width: 5.8rem; }
  .topbar__contact span { display: none; }
  .hero { min-height: auto; padding: 3.5rem 0 2rem; }
  h1 { max-width: 100%; font-size: clamp(2.5rem, 12vw, 4rem); line-height: .96; }
  .hero__copy { margin-top: 1.5rem; }
  .contacts { flex-direction: column; }
  .contact-card, .contact-card:first-child { width: 100%; min-width: 0; text-align: left; }
  .hero__stage { min-height: 23rem; }
  .hero__stage::before { width: 20rem; height: 20rem; }
  .hero__stage::after { width: 15rem; height: 15rem; }
  .footer { flex-wrap: wrap; }
}

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