@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --ink: #f7f5ef;
  --muted: rgba(247, 245, 239, 0.68);
  --line: rgba(247, 245, 239, 0.22);
  --glass: rgba(10, 10, 10, 0.18);
  --glass-hover: rgba(10, 10, 10, 0.34);
  --serif: "Manrope", sans-serif;
  --sans: "DM Sans", sans-serif;
}

* { box-sizing: border-box; }

html { min-height: 100%; background: #080808; }

body {
  min-height: 100%;
  margin: 0;
  background: #080808;
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.landing {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.background-video,
.video-fallback,
.video-overlay,
.grain {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.background-video {
  z-index: -4;
  overflow: hidden;
}

.background-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100vh;
  border: 0;
  transform: translate(-50%, -50%) scale(1.08);
  filter: saturate(0.72) contrast(1.08);
}

.video-fallback {
  z-index: -5;
  background:
    radial-gradient(circle at 25% 35%, rgba(116, 86, 55, 0.5), transparent 36%),
    radial-gradient(circle at 75% 65%, rgba(36, 65, 82, 0.46), transparent 38%),
    linear-gradient(135deg, #191714, #070808 65%, #121416);
}

.video-overlay {
  z-index: -3;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.12) 30%, rgba(0, 0, 0, 0.48) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.34));
}

.grain {
  z-index: -2;
  opacity: 0.08;
  mix-blend-mode: soft-light;
  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='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.brand {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: clamp(1.4rem, 3vw, 2.6rem) clamp(1.4rem, 4vw, 4rem);
}

.brand a {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
  text-decoration: none;
}

.brand-mark {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: 700;
  letter-spacing: 0.22em;
}

.brand-subtitle {
  font-size: 0.53rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  opacity: 0.64;
  padding-left: 0.04em;
}

.video-play-button {
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--glass);
  color: var(--ink);
  font: 500 0.68rem var(--sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0.82;
}

.video-play-button:hover,
.video-play-button:focus-visible { opacity: 1; }

.video-play-button:disabled { cursor: default; }

.video-play-button[hidden] { display: none; }

.choice {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: clamp(2rem, 5vh, 4.5rem) clamp(1.4rem, 4vw, 4rem) clamp(3rem, 7vh, 6rem);
  align-self: center;
}

.choice-heading {
  margin-bottom: clamp(2.4rem, 5vh, 4rem);
  text-align: center;
}

.eyebrow,
.path-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.66rem;
  font-weight: 500;
}

.eyebrow {
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.choice-heading h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 600;
}

.paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.path {
  position: relative;
  min-height: clamp(260px, 34vh, 380px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.4rem, 3vw, 2.6rem);
  text-decoration: none;
  background: var(--glass);
  transition: background 300ms ease, transform 300ms ease;
}

.path + .path { border-left: 1px solid var(--line); }

.path:hover,
.path:focus-visible {
  z-index: 1;
  background: var(--glass-hover);
  outline: none;
}

.path:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(247, 245, 239, 0.82);
}

.path-number {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.path-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.path-kicker {
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.path-title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
  font-weight: 500;
}

.path-description {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.86rem;
  letter-spacing: 0.015em;
}

.path-arrow {
  position: absolute;
  right: clamp(1.4rem, 3vw, 2.6rem);
  bottom: clamp(1.3rem, 3vw, 2.4rem);
  font-size: 1.45rem;
  line-height: 1;
  transition: transform 300ms ease;
}

.path:hover .path-arrow,
.path:focus-visible .path-arrow {
  transform: translate(0.25rem, -0.25rem);
}

.footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem clamp(1.4rem, 4vw, 4rem) 1.5rem;
  color: rgba(247, 245, 239, 0.48);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-line {
  flex: 1;
  height: 1px;
  max-width: 7rem;
  background: rgba(247, 245, 239, 0.18);
}

.coming-soon[hidden] { display: none; }

.coming-soon {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.coming-soon-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.64);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.coming-soon-card {
  position: relative;
  width: min(100%, 430px);
  padding: 2.4rem;
  background: rgba(16, 16, 16, 0.9);
  border: 1px solid var(--line);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.35);
}

.coming-soon-card h2 {
  margin: 0 0 0.8rem;
  font-family: var(--serif);
  font-size: 2.2rem;
  letter-spacing: -0.04em;
}

.coming-soon-card p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.close {
  position: absolute;
  top: 0.8rem;
  right: 0.9rem;
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.72;
}

.close:hover,
.close:focus-visible { opacity: 1; }

@media (max-width: 700px) {
  .choice {
    padding-top: 1rem;
    padding-bottom: 2.5rem;
  }

  .choice-heading { margin-bottom: 2rem; }

  .choice-heading h1 { font-size: clamp(2.2rem, 11vw, 3.5rem); }

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

  .path { min-height: 25vh; }

  .path + .path {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .path-title { font-size: clamp(3rem, 15vw, 4.8rem); }

  .footer {
    padding-top: 0.8rem;
    font-size: 0.56rem;
  }

  .footer-line { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .background-video:not(.is-playing) { display: none; }
  .path, .path-arrow { transition: none; }
}
