:root {
  --navy: #0e1930;
  --navy-light: #172743;
  --cream: #f8f4e9;
  --gold: #d9ad56;
  --gold-light: #f0d28f;
  --muted: #aab4c7;
  --line: rgba(255, 255, 255, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--navy);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--cream);
  background:
    radial-gradient(circle at 78% 47%, rgba(71, 88, 126, 0.24), transparent 34%),
    linear-gradient(120deg, #0b152a 0%, #101d37 48%, #0e1b33 100%);
  font-family: "Manrope", Arial, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  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='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.14'/%3E%3C/svg%3E");
}

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

.page-shell {
  width: min(100% - 64px, 1320px);
  min-height: 100vh;
  margin: auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
  position: relative;
  z-index: 1;
}

.site-header {
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  position: relative;
  border: 1px solid rgba(217, 173, 86, 0.7);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark i {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(217, 173, 86, 0.28);
  transform: rotate(45deg);
}

.brand-mark::after {
  transform: rotate(90deg);
}

.brand-mark i {
  transform: rotate(135deg);
}

.brand-mark span {
  position: relative;
  z-index: 2;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  letter-spacing: 0.16em;
  font-size: 16px;
}

.brand-copy small {
  color: var(--muted);
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.06em;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d7ddea;
  font-size: 14px;
  font-weight: 600;
  transition: color 180ms ease;
}

.contact-link:hover {
  color: var(--gold-light);
}

.contact-link svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  align-items: center;
  gap: 64px;
  padding: 72px 0 64px;
}

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

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid rgba(217, 173, 86, 0.3);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(217, 173, 86, 0.07);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(217, 173, 86, 0.13);
  animation: pulse 2s ease-in-out infinite;
}

.eyebrow {
  margin: 35px 0 10px;
  color: #ccd3df;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(52px, 5.2vw, 80px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

h1 em {
  color: var(--gold-light);
  font-weight: 600;
}

.description {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.progress-block {
  max-width: 520px;
  margin-top: 38px;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 11px;
  color: #c7cfdd;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.progress-meta strong {
  color: var(--gold-light);
}

.progress-track {
  height: 3px;
  overflow: hidden;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.12);
}

.progress-track span {
  display: block;
  width: 75%;
  height: 100%;
  background: linear-gradient(90deg, #b68835, var(--gold-light));
  box-shadow: 0 0 18px rgba(240, 210, 143, 0.5);
  animation: grow 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.primary-button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex: none;
  background: var(--gold);
  color: #111a2c;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 180ms ease, background 180ms ease;
}

.primary-button:hover {
  transform: translateY(-2px);
  background: var(--gold-light);
}

.primary-button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.actions p {
  max-width: 210px;
  margin: 0;
  color: #7f8aa1;
  font-size: 11px;
  line-height: 1.65;
}

.cosmos {
  width: min(44vw, 560px);
  aspect-ratio: 1;
  justify-self: center;
  position: relative;
  border-radius: 50%;
}

.cosmos::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 173, 86, 0.08), transparent 63%);
}

.orbit {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(210, 184, 126, 0.22);
  border-radius: 50%;
}

.orbit-one {
  transform: rotate(-14deg) scaleY(0.44);
}

.orbit-two {
  inset: 22%;
  border-style: dashed;
  border-color: rgba(240, 210, 143, 0.32);
  animation: spin 28s linear infinite;
}

.orbit-three {
  inset: 3%;
  transform: rotate(58deg) scaleY(0.68);
  border-color: rgba(164, 179, 207, 0.12);
}

.planet {
  width: 8px;
  height: 8px;
  position: absolute;
  top: 49%;
  left: -4px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 16px var(--gold);
}

.halo {
  position: absolute;
  width: 52%;
  height: 52%;
  left: 24%;
  top: 24%;
  border-radius: 50%;
  background: rgba(215, 186, 125, 0.05);
  box-shadow: 0 0 90px 20px rgba(210, 174, 99, 0.08);
}

.moon {
  width: 31%;
  height: 31%;
  position: absolute;
  left: 34.5%;
  top: 34.5%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(246, 221, 164, 0.85);
  border-radius: 50%;
  background: radial-gradient(circle at 37% 31%, #fbebc7, #d4a950 52%, #7e5925 100%);
  box-shadow: 0 0 42px rgba(217, 173, 86, 0.32), inset -14px -12px 25px rgba(80, 47, 14, 0.4);
}

.moon::before,
.moon::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(121, 80, 28, 0.17);
}

.moon::before {
  width: 22%;
  height: 15%;
  left: 19%;
  top: 23%;
}

.moon::after {
  width: 13%;
  height: 13%;
  right: 17%;
  bottom: 23%;
}

.moon-core {
  position: relative;
  z-index: 2;
  color: rgba(43, 34, 28, 0.78);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(48px, 6vw, 86px);
  text-shadow: 0 1px rgba(255, 255, 255, 0.2);
}

.number {
  position: absolute;
  color: rgba(240, 210, 143, 0.56);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  text-shadow: 0 0 18px rgba(240, 210, 143, 0.28);
}

.number-3 { top: 14%; left: 23%; }
.number-7 { right: 8%; top: 41%; }
.number-9 { left: 10%; bottom: 21%; }

.spark {
  position: absolute;
  color: var(--gold-light);
  animation: twinkle 2.8s ease-in-out infinite;
}

.spark-one { right: 24%; top: 14%; font-size: 18px; }
.spark-two { left: 19%; top: 48%; font-size: 11px; animation-delay: 0.8s; }
.spark-three { right: 27%; bottom: 14%; font-size: 13px; animation-delay: 1.4s; }

.stars {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-image:
    radial-gradient(circle at 16% 31%, rgba(255,255,255,.8) 0 1px, transparent 1.5px),
    radial-gradient(circle at 71% 18%, rgba(255,255,255,.65) 0 1px, transparent 1.4px),
    radial-gradient(circle at 84% 67%, rgba(255,255,255,.75) 0 1px, transparent 1.6px),
    radial-gradient(circle at 38% 84%, rgba(255,255,255,.55) 0 1px, transparent 1.4px);
}

.stars-two {
  transform: rotate(41deg) scale(0.82);
  opacity: 0.6;
}

footer {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: #78849a;
  font-size: 10px;
  letter-spacing: 0.06em;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-links a {
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-links span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #657188;
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 8px rgba(217, 173, 86, 0.04); }
}

@keyframes grow {
  from { width: 0; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes twinkle {
  50% { opacity: 0.25; transform: scale(0.7); }
}

@media (max-width: 900px) {
  .page-shell { width: min(100% - 40px, 700px); }
  .hero { grid-template-columns: 1fr; gap: 24px; padding-top: 54px; }
  .hero-copy { max-width: none; }
  .cosmos { width: min(88vw, 480px); margin-top: 4px; }
}

@media (max-width: 560px) {
  .page-shell { width: min(100% - 32px, 520px); }
  .site-header { min-height: 92px; }
  .contact-link span { display: none; }
  .contact-link { width: 42px; height: 42px; justify-content: center; border: 1px solid var(--line); border-radius: 50%; }
  .hero { padding: 42px 0; }
  .status-pill { font-size: 9px; }
  .eyebrow { margin-top: 27px; }
  h1 { font-size: clamp(42px, 13vw, 61px); }
  .description { font-size: 14px; line-height: 1.75; }
  .actions { align-items: flex-start; flex-direction: column; gap: 16px; }
  .actions p { max-width: none; }
  .cosmos { width: min(94vw, 400px); }
  footer { padding: 24px 0; gap: 14px; flex-direction: column; align-items: flex-start; }
}

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