:root {
  --bg-deep: #070707;
  --bg-panel: #101010;
  --bg-panel-soft: #141414;
  --gold: #c1a35e;
  --gold-hi: #e2c57a;
  --gold-mid: #c5a059;
  --gold-lo: #8f6f2e;
  --gold-ink: #1a1408;
  --text: #f4f1e8;
  --text-muted: #8f8a7e;
  --border: rgba(193, 163, 94, 0.28);
  --font: "Satoshi", "Segoe UI", sans-serif;
  --display: "Cabinet Grotesk", "Satoshi", sans-serif;
  --tagline: "Montserrat", "Satoshi", sans-serif;
  --max: 680px;
  --wide: 1040px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-deep);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* —— Atmosphere —— */
.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background:
    linear-gradient(180deg, #0d0d0d 0%, var(--bg-deep) 42%, #050505 100%);
}

.atmosphere__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.atmosphere__glow--top {
  top: -18%;
  left: 50%;
  width: min(900px, 120vw);
  height: 420px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(193, 163, 94, 0.22) 0%, transparent 70%);
  animation: glow-breathe 8s ease-in-out infinite;
}

.atmosphere__glow--mid {
  top: 42%;
  left: 50%;
  width: min(520px, 80vw);
  height: 320px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(193, 163, 94, 0.06) 0%, transparent 70%);
}

.atmosphere__grain {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: overlay;
}

.atmosphere__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
}

/* —— Cursor gold glow —— */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(
    circle,
    rgba(242, 220, 160, 0.95) 0%,
    rgba(193, 163, 94, 0.55) 45%,
    transparent 72%
  );
  box-shadow:
    0 0 12px rgba(193, 163, 94, 0.65),
    0 0 28px rgba(193, 163, 94, 0.35);
  mix-blend-mode: screen;
  transition: opacity 0.35s ease;
  will-change: transform;
}

.cursor-glow.is-on {
  opacity: 1;
}

@media (hover: none) {
  .cursor-glow {
    display: none;
  }
}

/* —— Header —— */
.site-header {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.75rem 1.75rem 0.75rem;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid rgba(193, 163, 94, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  text-decoration: none;
  animation: reveal-down 0.9s var(--ease) both;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(193, 163, 94, 0.18), rgba(193, 163, 94, 0.02));
  box-shadow:
    0 0 0 1px rgba(193, 163, 94, 0.35),
    0 12px 40px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 220, 150, 0.12);
}

.brand-logo {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 12px;
}

.brand-name {
  font-family: var(--tagline);
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.05;
  background: linear-gradient(
    180deg,
    #f0d891 0%,
    #e2c57a 18%,
    #c1a35e 48%,
    #a8883f 78%,
    #d4b56a 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 18px rgba(193, 163, 94, 0.25));
}

/* —— Hero —— */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.25rem 1.5rem 2.25rem;
  text-align: center;
}

.hero-title {
  margin: 0 0 1.15rem;
  font-family: var(--tagline);
  font-size: clamp(1.85rem, 5vw, 2.85rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-transform: none;
  animation: reveal-up 1s var(--ease) 0.16s both;
}

.hero-title span {
  display: block;
  background: linear-gradient(
    180deg,
    #f3dc98 0%,
    #e2c57a 16%,
    #c1a35e 45%,
    #9a7a35 72%,
    #d0b468 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 32px rgba(193, 163, 94, 0.22));
}

.hero-support {
  margin: 0 auto 1.85rem;
  max-width: 34rem;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-muted);
  animation: reveal-up 1s var(--ease) 0.22s both;
}

.cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  overflow: hidden;
  padding: 1rem 1.65rem;
  border-radius: 999px;
  border: 1px solid rgba(242, 220, 160, 0.45);
  background:
    linear-gradient(180deg, #edd59a 0%, #c9a85a 42%, #a8883a 78%, #8f6f2e 100%);
  color: var(--gold-ink);
  font-family: var(--font);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow:
    0 1px 0 rgba(255, 240, 200, 0.55) inset,
    0 -1px 0 rgba(80, 55, 10, 0.35) inset,
    0 10px 36px rgba(193, 163, 94, 0.38),
    0 2px 0 rgba(0, 0, 0, 0.35);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), filter 0.35s ease;
  animation: reveal-up 1s var(--ease) 0.28s both;
}

.cta--compact {
  animation: none;
}

.cta__sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 255, 255, 0.35) 45%,
    transparent 70%
  );
  transform: translateX(-120%);
  animation: sheen 2.6s ease-in-out infinite;
  pointer-events: none;
}

.cta__icon {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.cta > span:last-child {
  position: relative;
  z-index: 1;
}

.cta:hover {
  transform: translateY(-3px) scale(1.01);
  filter: brightness(1.06);
  box-shadow:
    0 1px 0 rgba(255, 240, 200, 0.65) inset,
    0 -1px 0 rgba(80, 55, 10, 0.35) inset,
    0 16px 44px rgba(193, 163, 94, 0.5),
    0 2px 0 rgba(0, 0, 0, 0.35);
}

.cta:focus-visible {
  outline: 2px solid var(--gold-hi);
  outline-offset: 4px;
}

/* —— Ornament —— */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  max-width: 280px;
  margin: 0.5rem auto 0;
  padding: 0 1.5rem;
}

.ornament__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(193, 163, 94, 0.55), transparent);
}

.ornament__diamond {
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  background: var(--gold);
  box-shadow: 0 0 12px rgba(193, 163, 94, 0.45);
}

/* —— Pillars —— */
.pillars {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 1rem;
  text-align: center;
}

.section-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  margin: 0 0 0.85rem;
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text);
}

.section-lead {
  margin: 0 auto 2.5rem;
  max-width: 32rem;
  color: var(--text-muted);
  font-size: 1rem;
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
}

.pillar {
  position: relative;
  padding: 1.6rem 1.35rem 1.5rem;
  border-top: 1px solid rgba(193, 163, 94, 0.45);
  background: linear-gradient(180deg, rgba(193, 163, 94, 0.06), transparent 55%);
}

.pillar__index {
  display: block;
  margin-bottom: 1rem;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--gold);
}

.pillar__title {
  margin: 0 0 0.65rem;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text);
}

.pillar__text {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* —— Coming soon —— */
.coming-soon {
  max-width: 920px;
  margin: 0 auto;
  padding: 1.75rem 1.5rem 2.5rem;
  animation: reveal-up 1.05s var(--ease) 0.35s both;
}

.coming-soon__panel {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 3.5rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(193, 163, 94, 0.28);
  background:
    linear-gradient(180deg, rgba(24, 22, 16, 0.98) 0%, rgba(10, 10, 10, 0.99) 100%);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.5),
    0 0 50px rgba(193, 163, 94, 0.08);
}

.coming-soon__glow {
  position: absolute;
  top: -40%;
  left: 50%;
  width: min(520px, 90vw);
  height: 280px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(193, 163, 94, 0.22) 0%, transparent 70%);
  pointer-events: none;
  animation: glow-breathe 8s ease-in-out infinite;
}

.coming-soon__eyebrow {
  position: relative;
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.coming-soon__title {
  position: relative;
  margin: 0 0 1.1rem;
  font-family: var(--tagline);
  font-size: clamp(1.75rem, 4.5vw, 2.65rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.15;
  background: linear-gradient(
    180deg,
    #f3dc98 0%,
    #e2c57a 16%,
    #c1a35e 45%,
    #9a7a35 72%,
    #d0b468 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 28px rgba(193, 163, 94, 0.25));
}

.coming-soon__text {
  position: relative;
  margin: 0 auto 1.75rem;
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.coming-soon__divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin: 0 auto 1.15rem;
  max-width: 180px;
}

.coming-soon__divider span:nth-child(1),
.coming-soon__divider span:nth-child(3) {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(193, 163, 94, 0.7), transparent);
}

.coming-soon__divider span:nth-child(2) {
  width: 6px;
  height: 6px;
  border-radius: 1px;
  transform: rotate(45deg);
  background: var(--gold);
  box-shadow: 0 0 10px rgba(193, 163, 94, 0.45);
}

.coming-soon__note {
  position: relative;
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #cfc8b8;
}

/* —— Invite —— */
.invite {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.invite__panel {
  text-align: center;
  padding: 2.75rem 1.75rem;
  border-radius: 20px;
  border: 1px solid rgba(193, 163, 94, 0.22);
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(193, 163, 94, 0.14), transparent 55%),
    linear-gradient(180deg, rgba(20, 20, 20, 0.95), rgba(10, 10, 10, 0.98));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.invite__eyebrow {
  margin: 0 0 0.7rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.invite__title {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.invite__text {
  margin: 0 auto 1.6rem;
  max-width: 28rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* —— Footer —— */
.site-footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.75rem 1.75rem 2.75rem;
  border-top: 1px solid rgba(193, 163, 94, 0.12);
}

.disclaimer {
  margin: 0 0 1.1rem;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  text-align: center;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1.25rem;
}

.copyright {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* —— Motion —— */
@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes reveal-down {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sheen {
  0%,
  5% {
    transform: translateX(-120%);
  }
  90%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes glow-breathe {
  0%,
  100% {
    opacity: 0.85;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.06);
  }
}

@media (max-width: 800px) {
  .pillars__grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 1.25rem 1.15rem 0.25rem;
  }

  .brand-mark {
    width: 68px;
    height: 68px;
    border-radius: 14px;
  }

  .brand-logo {
    width: 58px;
    height: 58px;
  }

  .hero {
    padding: 2.5rem 1.15rem 1.75rem;
  }

  .cta {
    width: 100%;
    font-size: 0.68rem;
    padding: 0.95rem 1rem;
    letter-spacing: 0.05em;
  }

  .coming-soon,
  .invite,
  .pillars {
    padding-inline: 1.15rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .cursor-glow {
    display: none !important;
  }
}
