:root {
  color-scheme: dark;
  --bg: #030405;
  --ink: #f8f3e8;
  --muted: #c9c0b2;
  --quiet: #80786c;
  --gold: #e7bd58;
  --gold-bright: #ffd978;
  --teal: #78cbc2;
  --green: #9fcf8b;
  --panel: rgba(9, 11, 12, 0.72);
  --line: rgba(231, 189, 88, 0.18);
  --white-line: rgba(255, 255, 255, 0.09);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(120, 203, 194, 0.12), transparent 28rem),
    radial-gradient(circle at 78% 4%, rgba(231, 189, 88, 0.14), transparent 26rem),
    linear-gradient(135deg, #020303 0%, #080a0b 48%, #040505 100%);
  color: var(--ink);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.82), transparent 90%);
}

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

img,
canvas {
  display: block;
}

img {
  max-width: 100%;
}

#signalField {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 0.46;
  pointer-events: none;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--gold-bright));
  box-shadow: 0 0 18px rgba(255, 217, 120, 0.45);
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  background: #000;
  animation: introExit 1s ease 2.45s forwards;
}

.intro img {
  width: min(56vw, 430px);
  filter: drop-shadow(0 0 30px rgba(231, 189, 88, 0.42));
  opacity: 0;
  transform: scale(0.94);
  animation: logoIgnite 2.1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.intro-line {
  position: absolute;
  bottom: 18%;
  left: 50%;
  width: min(46vw, 390px);
  height: 1px;
  overflow: hidden;
  transform: translateX(-50%);
  background: rgba(231, 189, 88, 0.16);
}

.intro-line::after {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  animation: lineSweep 1.5s ease 0.55s forwards;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(3, 4, 5, 0.56);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 22px rgba(231, 189, 88, 0.24);
}

nav {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
}

nav a,
.header-cta {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

nav a:hover {
  color: var(--ink);
}

.header-cta {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-bright);
  font-size: 0.86rem;
  font-weight: 800;
}

.header-cta:hover {
  border-color: rgba(231, 189, 88, 0.48);
  background: rgba(231, 189, 88, 0.09);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

#visionScene {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 73% 44%, transparent 0 18rem, rgba(0, 0, 0, 0.18) 32rem),
    linear-gradient(90deg, rgba(3, 4, 5, 0.94), rgba(3, 4, 5, 0.58) 48%, rgba(3, 4, 5, 0.2));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(190px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  min-height: 100vh;
  padding: 118px clamp(20px, 5vw, 72px) 76px;
}

.hero-logo {
  width: min(100%, 360px);
  border: 1px solid rgba(231, 189, 88, 0.18);
  border-radius: 8px;
  background: #000;
  box-shadow: var(--shadow), 0 0 80px rgba(231, 189, 88, 0.16);
}

.kicker {
  margin: 0 0 14px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 950px;
  margin-bottom: 22px;
  font-size: clamp(3.15rem, 5.55vw, 5.85rem);
  line-height: 0.96;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 5vw, 5.5rem);
  line-height: 0.95;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.08;
}

.hero-text {
  max-width: 730px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.55vw, 1.3rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button.primary {
  border-color: rgba(255, 217, 120, 0.64);
  background: linear-gradient(135deg, #ffdf83, #bd8527);
  color: #120f08;
  box-shadow: 0 14px 42px rgba(231, 189, 88, 0.22);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
  color: var(--ink);
}

.scroll-cue {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 30px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--quiet);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-cue span {
  width: 52px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.scroll-cue span::after {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--gold-bright);
  animation: scrollLine 1.8s ease-in-out infinite;
}

.narrative {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  gap: clamp(28px, 7vw, 110px);
  padding: clamp(92px, 12vw, 160px) clamp(20px, 5vw, 72px);
}

.story-pin {
  position: sticky;
  top: 112px;
  align-self: start;
}

.story-pin p {
  max-width: 600px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.chapters {
  display: grid;
  gap: 18px;
}

.chapter,
.lens-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--white-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.018)),
    rgba(8, 10, 11, 0.82);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.chapter h3,
.lens-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
}

.chapter {
  min-height: 310px;
  padding: clamp(24px, 4vw, 42px);
}

.chapter::before,
.lens-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.72;
}

.chapter span,
.lens-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 74px;
  padding: 4px 10px;
  border: 1px solid rgba(231, 189, 88, 0.22);
  border-radius: 4px;
  background: rgba(231, 189, 88, 0.06);
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.chapter p,
.lens-card p,
.access-inner p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.72;
  letter-spacing: 0.005em;
}

.chapter,
.lens-card {
  transition: border-color 280ms ease, box-shadow 280ms ease, transform 280ms ease;
}

.chapter:hover,
.lens-card:hover {
  border-color: rgba(231, 189, 88, 0.22);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3), 0 0 40px rgba(231, 189, 88, 0.06);
  transform: translateY(-3px);
}

.cinematic-band {
  position: relative;
  min-height: 76vh;
  display: grid;
  align-items: center;
  padding: clamp(74px, 10vw, 130px) clamp(20px, 5vw, 72px);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cinematic-band::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(120, 203, 194, 0.12), transparent 38%),
    radial-gradient(circle at 76% 50%, rgba(231, 189, 88, 0.18), transparent 23rem);
  opacity: 0.86;
}

.band-copy {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
}

.band-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
}

.band-lines span {
  position: absolute;
  left: 52%;
  width: 70vw;
  height: 1px;
  transform: rotate(-18deg);
  transform-origin: left;
  background: linear-gradient(90deg, transparent, rgba(255, 217, 120, 0.42), transparent);
}

.band-lines span:nth-child(1) {
  top: 28%;
}

.band-lines span:nth-child(2) {
  top: 50%;
  left: 44%;
}

.band-lines span:nth-child(3) {
  top: 72%;
  left: 60%;
}

.lenses {
  padding: clamp(92px, 12vw, 156px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 940px;
  margin-bottom: clamp(30px, 5vw, 56px);
}

.lens-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.lens-card {
  min-height: 372px;
  padding: 28px;
}

.lens-card span {
  margin-bottom: 96px;
}

.access {
  padding: 0 clamp(20px, 5vw, 72px) clamp(76px, 9vw, 118px);
}

.access-inner {
  display: grid;
  justify-items: center;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(30px, 6vw, 62px);
  border: 1px solid rgba(231, 189, 88, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(231, 189, 88, 0.08), transparent 40%),
    rgba(6, 7, 7, 0.74);
  box-shadow: var(--shadow);
}

.access-inner img {
  width: 120px;
  margin-bottom: 26px;
  border-radius: 8px;
  background: #000;
}

.access-inner p:last-of-type {
  max-width: 690px;
  margin-bottom: 0;
}

.waitlist-form {
  width: 100%;
  max-width: 520px;
  margin-top: 12px;
}

.waitlist-fields {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.waitlist-fields input,
.waitlist-fields select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  font-family: inherit;
  font-size: 0.92rem;
  transition: border-color 180ms ease, background 180ms ease;
}

.waitlist-fields input::placeholder,
.waitlist-fields select {
  color: var(--quiet);
}

.waitlist-fields select option {
  background: #0a0c0d;
  color: var(--ink);
}

.waitlist-fields input:focus,
.waitlist-fields select:focus {
  outline: none;
  border-color: rgba(231, 189, 88, 0.44);
  background: rgba(255, 255, 255, 0.06);
}

.waitlist-btn {
  width: 100%;
  font-size: 0.94rem;
}

.waitlist-success {
  margin-top: 18px;
  padding: 16px 22px;
  border: 1px solid rgba(159, 207, 139, 0.28);
  border-radius: 6px;
  background: rgba(159, 207, 139, 0.08);
  color: var(--green);
  font-weight: 600;
  font-size: 0.94rem;
}

/* About page */

nav .nav-active {
  color: var(--gold-bright);
}

.about-hero {
  padding: clamp(140px, 16vw, 200px) clamp(20px, 5vw, 72px) clamp(60px, 8vw, 100px);
}

.about-hero-inner {
  max-width: 860px;
}

.about-hero-lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.55vw, 1.3rem);
  line-height: 1.62;
}

.about-founder {
  padding: 0 clamp(20px, 5vw, 72px) clamp(80px, 10vw, 130px);
}

.about-founder-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.about-photo-wrap {
  position: sticky;
  top: 112px;
}

.about-photo {
  width: 100%;
  max-width: 340px;
  border-radius: 8px;
  border: 1px solid rgba(231, 189, 88, 0.18);
  box-shadow: var(--shadow), 0 0 60px rgba(231, 189, 88, 0.1);
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.about-photo-caption {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-photo-caption strong {
  font-size: 1.15rem;
  font-weight: 700;
}

.about-photo-caption > span {
  color: var(--muted);
  font-size: 0.88rem;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.linkedin-link:hover {
  color: var(--ink);
  border-color: rgba(231, 189, 88, 0.36);
  background: rgba(231, 189, 88, 0.06);
}

.linkedin-link svg {
  flex-shrink: 0;
}

.about-bio h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  margin-bottom: 28px;
}

.about-bio h3 {
  margin-top: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.about-bio p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
  margin-bottom: 20px;
}

.about-divider {
  width: 64px;
  height: 1px;
  margin: 36px 0;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.5;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.about-values {
  padding: clamp(80px, 10vw, 130px) clamp(20px, 5vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.value-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--white-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.018)),
    rgba(8, 10, 11, 0.82);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  transition: border-color 280ms ease, box-shadow 280ms ease, transform 280ms ease;
}

.value-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.72;
}

.value-card:hover {
  border-color: rgba(231, 189, 88, 0.22);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3), 0 0 40px rgba(231, 189, 88, 0.06);
  transform: translateY(-3px);
}

.value-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  padding: 4px 10px;
  border: 1px solid rgba(231, 189, 88, 0.22);
  border-radius: 4px;
  background: rgba(231, 189, 88, 0.06);
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.value-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.value-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.72;
  letter-spacing: 0.005em;
}

@media (max-width: 1120px) {
  .about-founder-inner {
    grid-template-columns: 1fr;
  }

  .about-photo-wrap {
    position: relative;
    top: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .about-photo {
    max-width: 280px;
  }

  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .about-hero {
    padding-top: 110px;
  }

  .about-photo {
    max-width: 200px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: auto;
  }

  .value-card span {
    margin-bottom: 36px;
  }
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(20px, 5vw, 72px) 36px;
  color: var(--quiet);
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 760ms ease, transform 760ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes logoIgnite {
  0% {
    opacity: 0;
    transform: scale(0.92);
    filter: brightness(0.5) drop-shadow(0 0 0 rgba(231, 189, 88, 0));
  }
  46% {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1.25) drop-shadow(0 0 42px rgba(231, 189, 88, 0.42));
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1) drop-shadow(0 0 30px rgba(231, 189, 88, 0.24));
  }
}

@keyframes introExit {
  to {
    visibility: hidden;
    opacity: 0;
  }
}

@keyframes lineSweep {
  to {
    transform: translateX(100%);
  }
}

@keyframes scrollLine {
  0% {
    transform: translateX(-110%);
  }
  55%,
  100% {
    transform: translateX(110%);
  }
}

@media (max-width: 1120px) {
  .hero-content,
  .narrative {
    grid-template-columns: 1fr;
  }

  .hero-logo {
    width: min(72vw, 300px);
  }

  .story-pin {
    position: relative;
    top: auto;
  }

  .lens-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 13px 18px;
  }

  .brand span,
  .header-cta {
    display: none;
  }

  nav {
    gap: 14px;
    font-size: 0.82rem;
  }

  .hero-content {
    min-height: 100svh;
    gap: 18px;
    padding: 88px 20px 58px;
  }

  .hero-logo {
    width: min(54vw, 190px);
  }

  h1 {
    margin-bottom: 16px;
    font-size: clamp(2.45rem, 10.4vw, 3.35rem);
  }

  .kicker {
    margin-bottom: 10px;
    font-size: 0.7rem;
  }

  .hero-text {
    margin-bottom: 22px;
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .hero-actions .button {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .narrative,
  .lenses {
    padding-top: 76px;
    padding-bottom: 84px;
  }

  .chapter,
  .lens-card {
    min-height: auto;
  }

  .chapter span,
  .lens-card span {
    margin-bottom: 44px;
  }

  .cinematic-band {
    min-height: 62vh;
  }

  .lens-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}

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

  .intro {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
