@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500&family=Italiana&display=swap');

:root {
  --bg: #0f0d0b;
  --bg-soft: #17130f;
  --panel: rgba(255,255,255,.035);
  --text: #f4efe7;
  --muted: #b3aa9d;
  --line: rgba(244, 239, 231, 0.12);
  --line-strong: rgba(244, 239, 231, 0.26);
  --accent: #d0bea2;
  --accent-soft: rgba(208, 190, 162, 0.16);
  --shadow: rgba(0, 0, 0, 0.38);
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(208,190,162,.10), transparent 30rem),
    radial-gradient(circle at 82% 76%, rgba(255,255,255,.05), transparent 28rem),
    linear-gradient(180deg, #13100d 0%, #0f0d0b 48%, #0b0908 100%);
  color: var(--text);
  font-family: "DM Sans", Arial, sans-serif;
}

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: .03;
  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='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.gradient,
.grid-lines {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.gradient--one {
  background: radial-gradient(circle at 34% 28%, rgba(208,190,162,.08), transparent 28%);
  filter: blur(10px);
}

.gradient--two {
  background: radial-gradient(circle at 72% 58%, rgba(255,255,255,.035), transparent 24%);
}

.grid-lines {
  z-index: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 100% 120px, 120px 100%;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.8), transparent 90%);
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 34px 44px 26px;
  position: relative;
  z-index: 2;
}

.topbar,
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  letter-spacing: .22em;
  font-size: 15px;
  font-weight: 500;
}

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

.status {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.status__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(208,190,162,.08);
  animation: pulse 2.6s infinite;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6vh 0 4vh;
}

.hero__copy {
  min-width: 0;
}

.hero__intro {
  max-width: 720px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 4vh;
}

.hero__kicker {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero__lead {
  margin: 0;
  max-width: 470px;
  color: var(--muted);
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.7;
  font-weight: 300;
}

.hero__stage {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(420px, 46vw);
  align-items: center;
  gap: 44px;
}

.hero__title {
  margin: 0;
  font-family: "Italiana", Georgia, serif;
  font-size: clamp(80px, 13.6vw, 212px);
  line-height: .76;
  letter-spacing: -.055em;
  font-weight: 400;
  text-transform: uppercase;
}

.hero__title span { display: block; }

.hero__title-outline {
  margin-left: 11vw;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244,239,231,.78);
  text-stroke: 1px rgba(244,239,231,.78);
}

.hero__text {
  margin: 3.5vh 0 0;
  max-width: 600px;
  color: var(--muted);
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.9;
  font-weight: 300;
}

.hero__detail-row {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 220px));
  gap: 14px;
}

.detail-card {
  padding: 18px 18px 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  min-width: 0;
}

.detail-card__label {
  display: block;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .18em;
  margin-bottom: 10px;
}

.detail-card__value {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
}


.detail-card--contact {
  background: linear-gradient(180deg, rgba(208,190,162,.06), rgba(255,255,255,.018));
}

.detail-card__link {
  display: block;
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 4px;
  transition: opacity .25s ease, transform .25s ease;
}

.detail-card__link:hover {
  opacity: .75;
  transform: translateX(2px);
}

.void-hero {
  position: relative;
  width: min(46vw, 640px);
  aspect-ratio: 1;
  justify-self: end;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.void-hero__halo {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208,190,162,.22), rgba(208,190,162,.08) 38%, rgba(255,255,255,.02) 55%, transparent 72%);
  filter: blur(8px);
  animation: haloPulse 5.6s ease-in-out infinite;
}

.void-hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(244,239,231,.16);
}

.void-hero__ring--outer {
  inset: 0;
  box-shadow: 0 0 80px rgba(208,190,162,.10), inset 0 0 50px rgba(255,255,255,.015);
  animation: slowRotate 32s linear infinite;
}

.void-hero__ring--mid {
  inset: 11%;
  border-color: rgba(244,239,231,.11);
  animation: reverseRotate 24s linear infinite;
}

.void-hero__ring--inner {
  inset: 23%;
  border-color: rgba(244,239,231,.09);
  animation: slowRotate 16s linear infinite;
}

.void-hero__core {
  position: relative;
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 26px;
  background: radial-gradient(circle at 50% 42%, rgba(255,255,255,.10), rgba(255,255,255,.03) 48%, rgba(255,255,255,.018) 68%, rgba(255,255,255,.008) 100%);
  border: 1px solid rgba(244,239,231,.22);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.04),
    inset 0 0 45px rgba(255,255,255,.025),
    0 30px 80px rgba(0,0,0,.30);
  backdrop-filter: blur(10px);
  z-index: 2;
  animation: coreBreath 4.8s ease-in-out infinite;
}

.void-hero__overline,
.void-hero__subline {
  color: var(--muted);
  font-size: clamp(9px, .62vw, 12px);
  letter-spacing: .28em;
  text-transform: uppercase;
}

.void-hero__word {
  display: block;
  margin: 12px 0 10px;
  font-family: "Italiana", Georgia, serif;
  font-size: clamp(76px, 8.6vw, 126px);
  line-height: .92;
  letter-spacing: .13em;
  text-shadow: 0 0 28px rgba(208,190,162,.18);
}


.void-hero__link {
  display: block;
  color: inherit;
  transition: transform .3s ease, opacity .3s ease, filter .3s ease;
}

.void-hero__link:hover {
  transform: scale(1.03);
  opacity: .92;
  filter: drop-shadow(0 0 12px rgba(208,190,162,.16));
}

.void-hero__orbit {
  position: absolute;
  color: rgba(244,239,231,.56);
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 3;
}

.void-hero__orbit--one { top: 6%; left: 16%; }
.void-hero__orbit--two { right: 4%; bottom: 22%; }
.void-hero__orbit--three { left: 6%; bottom: 12%; }

.progress-wrap {
  margin-top: 4.5vh;
}

.progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .18em;
}

.progress-track {
  width: 100%;
  height: 1px;
  background: var(--line);
  overflow: hidden;
}

.progress-bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(208,190,162,.55), rgba(244,239,231,.96));
  box-shadow: 0 0 16px rgba(208,190,162,.35);
  transition: width 2.4s var(--ease);
}

.footer {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.footer a {
  transition: opacity .25s ease;
}

.footer a:hover {
  opacity: .78;
}

.cursor-orb {
  position: fixed;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(208,190,162,.11), transparent 68%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .35s ease;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: reveal .95s var(--ease) forwards;
}

.topbar { animation-delay: .04s; }
.hero__intro { animation-delay: .16s; }
.hero__copy { animation-delay: .28s; }
.void-hero { animation-delay: .42s; }
.progress-wrap { animation-delay: .58s; }
.footer { animation-delay: .7s; }

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(.78); }
}

@keyframes slowRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes reverseRotate {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes haloPulse {
  0%, 100% { transform: scale(1); opacity: .95; }
  50% { transform: scale(1.04); opacity: .68; }
}

@keyframes coreBreath {
  0%, 100% {
    transform: scale(1);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), inset 0 0 45px rgba(255,255,255,.025), 0 30px 80px rgba(0,0,0,.30);
  }
  50% {
    transform: scale(1.02);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.06), inset 0 0 62px rgba(255,255,255,.04), 0 34px 95px rgba(0,0,0,.38);
  }
}

@media (max-width: 980px) {
  .hero__detail-row {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }

  .hero__intro {
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
    margin-bottom: 28px;
  }

  .hero__lead {
    max-width: 100%;
  }

  .hero__stage {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero__title-outline {
    margin-left: 0;
  }

  .void-hero {
    width: min(86vw, 620px);
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .page-shell {
    padding: 22px 20px 20px;
  }

  .topbar,
  .footer {
    gap: 12px;
    flex-wrap: wrap;
  }

  .topbar {
    align-items: flex-start;
  }

  .status {
    font-size: 10px;
    letter-spacing: .14em;
  }

  .status span:last-child {
    max-width: 220px;
    line-height: 1.45;
  }

  .hero {
    padding: 5vh 0 3.5vh;
  }

  .hero__intro {
    gap: 10px;
    margin-bottom: 22px;
  }

  .hero__kicker {
    font-size: 9px;
    letter-spacing: .18em;
  }

  .hero__lead,
  .hero__text {
    font-size: 14px;
    line-height: 1.8;
  }

  .hero__title {
    font-size: clamp(68px, 22vw, 108px);
    line-height: .78;
  }

  .hero__detail-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .detail-card {
    padding: 16px 16px 14px;
  }

  .detail-card__label {
    margin-bottom: 8px;
  }

  .detail-card__link,
  .detail-card__value {
    font-size: 15px;
  }

  .void-hero {
    width: min(92vw, 420px);
    margin-top: 8px;
  }

  .void-hero__core {
    width: 68%;
    padding: 18px;
  }

  .void-hero__word {
    font-size: clamp(54px, 15vw, 82px);
  }

  .void-hero__orbit {
    font-size: 8px;
    letter-spacing: .18em;
  }

  .void-hero__orbit--one { top: 7%; left: 10%; }
  .void-hero__orbit--two { right: 0; bottom: 19%; }
  .void-hero__orbit--three { left: 4%; bottom: 10%; }

  .progress-wrap {
    margin-top: 26px;
  }

  .footer {
    padding-top: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .page-shell {
    padding: 18px 16px 18px;
  }

  .brand {
    font-size: 14px;
  }

  .status {
    gap: 8px;
    font-size: 9px;
  }

  .hero {
    padding: 4.5vh 0 3vh;
  }

  .hero__title {
    font-size: clamp(58px, 20vw, 84px);
    line-height: .8;
  }

  .hero__text {
    margin-top: 24px;
  }

  .void-hero {
    width: min(96vw, 360px);
  }

  .void-hero__core {
    width: 70%;
    padding: 16px;
  }

  .void-hero__overline,
  .void-hero__subline {
    font-size: 8px;
    letter-spacing: .20em;
  }

  .void-hero__word {
    margin: 10px 0 8px;
    font-size: clamp(44px, 14vw, 64px);
    letter-spacing: .11em;
  }

  .void-hero__orbit--two {
    display: none;
  }

  .progress-meta,
  .footer {
    font-size: 8px;
    letter-spacing: .14em;
  }

  .footer p {
    margin: 0;
  }
}

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

  .progress-bar { width: 78%; }
}
