:root {
  --gold: #ffd66d;
  --deep-gold: #b7751b;
  --white: #fffaf0;
  --blue: #9ddbed;
  --aqua: #7ff5d5;
  --rose: #ff8da8;
  --violet: #b9a2ff;
  --ink: #110d17;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 50% -20%, rgba(255, 232, 147, 0.42), transparent 34rem),
    linear-gradient(180deg, #233a52 0%, #171929 43%, #110d17 100%);
  font-family: "Inter", system-ui, sans-serif;
  overflow-x: hidden;
}

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

.site-shell {
  position: relative;
  isolation: isolate;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 7rem clamp(1rem, 4vw, 4rem) 4rem;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 246, 198, 0.42), transparent 23rem),
    linear-gradient(180deg, rgba(37, 88, 110, 0.9), rgba(21, 17, 33, 0.6) 72%, #110d17);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto -8vw -9rem;
  height: 23rem;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 12% 56%, rgba(255, 245, 213, 0.76) 0 10%, transparent 26%),
    radial-gradient(ellipse at 28% 44%, rgba(255, 235, 175, 0.66) 0 13%, transparent 28%),
    radial-gradient(ellipse at 48% 55%, rgba(255, 251, 228, 0.7) 0 16%, transparent 32%),
    radial-gradient(ellipse at 70% 47%, rgba(255, 235, 175, 0.58) 0 14%, transparent 30%),
    radial-gradient(ellipse at 88% 57%, rgba(255, 245, 213, 0.7) 0 11%, transparent 27%);
  filter: blur(3px);
  opacity: 0.75;
  z-index: 2;
}

.hero::after {
  bottom: -13rem;
  opacity: 0.5;
  filter: blur(12px);
}

.sky-glow {
  position: absolute;
  inset: -16rem -12rem auto;
  height: 60rem;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 249, 210, 0.9) 0 1.5%, rgba(255, 220, 94, 0.42) 10%, transparent 34%),
    conic-gradient(from 180deg at 50% 58%, rgba(255, 222, 92, 0), rgba(127, 245, 213, 0.2), rgba(255, 141, 168, 0.2), rgba(185, 162, 255, 0.18), rgba(255, 222, 92, 0));
  filter: blur(16px);
  opacity: 0.95;
  animation: breathe 7s ease-in-out infinite;
}

.particle-field {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 248, 202, 0.95) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(127, 245, 213, 0.7) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(255, 141, 168, 0.58) 0 1px, transparent 1.6px);
  background-position: 0 0, 3rem 5rem, 7rem 2rem;
  background-size: 8rem 8rem, 11rem 11rem, 13rem 13rem;
  mix-blend-mode: screen;
  opacity: 0.34;
  animation: drift 26s linear infinite;
}

.hero-art {
  position: absolute;
  left: 50%;
  top: 49%;
  width: min(118rem, 128vw);
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%);
  filter:
    saturate(1.16)
    contrast(1.08)
    drop-shadow(0 0 2.5rem rgba(255, 222, 96, 0.54))
    drop-shadow(0 0 7rem rgba(120, 240, 230, 0.32));
  z-index: 1;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(17, 13, 23, 0.3) 0%, transparent 29%, rgba(17, 13, 23, 0.28) 76%, #110d17 100%),
    radial-gradient(circle at 50% 51%, transparent 0 34%, rgba(10, 8, 20, 0.46) 78%);
  pointer-events: none;
}

.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem clamp(1rem, 4vw, 4rem);
}

.brand,
.topbar nav,
.contract-chip {
  border: 1px solid rgba(255, 246, 194, 0.28);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 1rem 3rem rgba(8, 6, 16, 0.22), inset 0 0 1.5rem rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 2.75rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  color: #201206;
  background: radial-gradient(circle, #fff9c7, var(--gold) 62%, #d18c22);
  box-shadow: 0 0 1.4rem rgba(255, 214, 109, 0.75);
}

.topbar nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 2.75rem;
  padding: 0.32rem;
  border-radius: 999px;
}

.topbar nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0 0.85rem;
  border-radius: 999px;
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.topbar nav a:hover {
  color: var(--white);
  background: rgba(255, 246, 194, 0.12);
}

.hero-content {
  position: relative;
  z-index: 4;
  width: min(72rem, 100%);
  margin-top: 4rem;
  text-align: center;
}

.kicker,
.section-label {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: clamp(0.78rem, 1.8vw, 0.94rem);
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-shadow: 0 0 1.2rem rgba(255, 214, 109, 0.95);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3.2rem, 12vw, 10.7rem);
  line-height: 0.82;
  font-weight: 900;
  text-shadow:
    0 0 0.8rem rgba(255, 255, 255, 0.45),
    0 0 2.5rem rgba(255, 214, 109, 0.72),
    0 0 7rem rgba(127, 245, 213, 0.32);
}

.subheadline {
  width: min(45rem, 100%);
  margin: 1.35rem auto 0;
  color: rgba(255, 250, 240, 0.88);
  font-size: clamp(1.05rem, 2.4vw, 1.55rem);
  font-weight: 700;
  line-height: 1.45;
  text-shadow: 0 0 1.5rem rgba(20, 10, 5, 0.75);
}

.hero-actions,
.final-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10.5rem;
  min-height: 3.25rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #1f1307;
  background: linear-gradient(135deg, #fff7b9, var(--gold) 45%, #e6a540 76%, #fff0a5);
  box-shadow: 0 0 2.2rem rgba(255, 214, 109, 0.72), inset 0 0 1.3rem rgba(255, 255, 255, 0.42);
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 246, 194, 0.35);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(127, 245, 213, 0.12), rgba(255, 141, 168, 0.12));
  box-shadow: 0 0 2rem rgba(127, 245, 213, 0.2), inset 0 0 1.3rem rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.contract-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  min-height: 2.4rem;
  padding: 0 1.1rem;
  border-radius: 999px;
  color: rgba(255, 250, 240, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  bottom: 1.5rem;
  left: 50%;
  width: 1.8rem;
  height: 2.9rem;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 246, 194, 0.35);
  border-radius: 999px;
}

.scroll-cue span {
  position: absolute;
  top: 0.55rem;
  left: 50%;
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 1rem rgba(255, 214, 109, 0.9);
  transform: translateX(-50%);
  animation: scrollDot 1.9s ease-in-out infinite;
}

.manifesto,
.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 9rem) clamp(1rem, 5vw, 5rem);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 214, 109, 0.2), transparent 35rem),
    linear-gradient(180deg, #110d17 0%, #182139 100%);
}

.manifesto {
  display: grid;
  min-height: 62svh;
  place-items: center;
  text-align: center;
}

.section-orb {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(36rem, 80vw);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 214, 109, 0.3);
  background:
    radial-gradient(circle, rgba(255, 250, 221, 0.22), transparent 45%),
    conic-gradient(from 90deg, rgba(255, 214, 109, 0.06), rgba(127, 245, 213, 0.24), rgba(255, 141, 168, 0.22), rgba(185, 162, 255, 0.2), rgba(255, 214, 109, 0.06));
  filter: blur(0.5px);
  transform: translate(-50%, -50%);
  opacity: 0.72;
}

.manifesto > *:not(.section-orb) {
  position: relative;
  z-index: 1;
}

.manifesto h2,
.final-cta h2 {
  width: min(68rem, 100%);
  font-size: clamp(2.2rem, 6vw, 6.1rem);
  line-height: 0.96;
  text-shadow: 0 0 2rem rgba(255, 214, 109, 0.5), 0 0 5rem rgba(127, 245, 213, 0.22);
}

.final-cta {
  min-height: 70svh;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 246, 198, 0.26), transparent 23rem),
    radial-gradient(circle at 50% 100%, rgba(127, 245, 213, 0.16), transparent 24rem),
    linear-gradient(180deg, #11101d, #1d2138 46%, #100b15);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 9% 50% auto auto;
  width: min(48rem, 92vw);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 214, 109, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 250, 221, 0.18), transparent 42%),
    repeating-radial-gradient(circle, rgba(255, 214, 109, 0.2) 0 1px, transparent 1px 3.2rem);
  transform: translateX(50%);
  opacity: 0.7;
}

.final-cta > * {
  position: relative;
  z-index: 1;
}

@keyframes breathe {
  0%,
  100% {
    opacity: 0.8;
    transform: scale(0.985);
  }
  50% {
    opacity: 1;
    transform: scale(1.025);
  }
}

@keyframes drift {
  to {
    background-position: 8rem 13rem, 14rem 19rem, 20rem 12rem;
  }
}

@keyframes scrollDot {
  0%,
  100% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  35% {
    opacity: 1;
  }
  70% {
    opacity: 0;
    transform: translate(-50%, 1.25rem);
  }
}

@media (max-width: 820px) {
  .hero {
    padding-top: 6rem;
  }

  .hero-art {
    top: 42%;
    width: 210vw;
  }

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

  .topbar nav {
    gap: 0.1rem;
  }

  .topbar nav a {
    padding: 0 0.58rem;
    font-size: 0.68rem;
  }

  .brand {
    justify-content: center;
    width: 3.05rem;
    padding: 0.55rem;
    gap: 0;
  }

  .brand span:last-child {
    display: none;
  }

  .hero-content {
    margin-top: 9rem;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 100svh;
    padding-inline: 1rem;
  }

  .hero-art {
    top: 39%;
    width: 260vw;
  }

  h1 {
    font-size: clamp(3.1rem, 18vw, 5.2rem);
  }

  .subheadline {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .contract-chip {
    width: 100%;
  }
}
