:root {
  color-scheme: dark;
  --bg: #070605;
  --bg-soft: #0d0b09;
  --surface: rgba(20, 16, 13, 0.84);
  --surface-strong: rgba(29, 23, 18, 0.96);
  --surface-alt: rgba(14, 11, 9, 0.92);
  --ink: #f3eadc;
  --ink-soft: #b8ab9a;
  --ink-muted: #8c7d6b;
  --line: rgba(201, 168, 116, 0.22);
  --line-strong: rgba(201, 168, 116, 0.4);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  --radius: 28px;
  --gold: #c9a874;
  --gold-soft: rgba(201, 168, 116, 0.14);
  --gold-glow: rgba(201, 168, 116, 0.22);
  --sage: #8ca087;
  --sage-soft: rgba(140, 160, 135, 0.18);
  --terracotta: #b98a6c;
  --terracotta-soft: rgba(185, 138, 108, 0.18);
  --lavender: #9e8ab7;
  --lavender-soft: rgba(158, 138, 183, 0.18);
  --slate: #7f95b0;
  --slate-soft: rgba(127, 149, 176, 0.18);
  --amber: #c59a59;
  --amber-soft: rgba(197, 154, 89, 0.18);
  --mono: "Manrope", "Segoe UI", Arial, sans-serif;
  --body: "Manrope", "Segoe UI", Arial, sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(201, 168, 116, 0.15), transparent 26%),
    radial-gradient(circle at 88% 14%, rgba(140, 160, 135, 0.12), transparent 24%),
    linear-gradient(180deg, #0a0807 0%, #070605 36%, #090705 100%);
  color: var(--ink);
  font-family: var(--body);
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.page-glow {
  position: fixed;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.46;
  z-index: 0;
}

.page-glow--left {
  top: -12rem;
  left: -14rem;
  background: rgba(201, 168, 116, 0.15);
}

.page-glow--right {
  top: 16rem;
  right: -12rem;
  background: rgba(117, 136, 161, 0.12);
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 100% 3px, 3px 100%;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
  z-index: 0;
}

.shell {
  width: min(1180px, calc(100vw - 2.4rem));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 12;
  border-bottom: 1px solid rgba(201, 168, 116, 0.08);
  background: rgba(7, 6, 5, 0.48);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 6, 5, 0.82);
  border-color: rgba(201, 168, 116, 0.16);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.brand-mark {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(145deg, rgba(201, 168, 116, 0.2), rgba(201, 168, 116, 0.05)),
    rgba(255, 255, 255, 0.02);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 30px rgba(0, 0, 0, 0.28);
}

.brand-copy {
  display: grid;
  gap: 0.2rem;
}

.brand-kicker,
.eyebrow,
.collection-kicker,
.launch-kicker {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--gold);
}

.brand-name {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem 1.5rem;
}

.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 2.2rem;
  padding-top: 5.25rem;
  padding-bottom: 2.5rem;
}

.hero-copy,
.hero-visual,
.section,
.site-footer {
  position: relative;
  z-index: 1;
}

.hero h1,
.section-heading h2,
.cta-panel h2,
.collection-text h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero h1 {
  font-size: clamp(4rem, 8.2vw, 7.4rem);
  max-width: 11.5ch;
}

.hero-lede,
.hero-note,
.section-heading p,
.pressure-card p,
.collection-text p,
.launch-copy,
.format-list p,
.bundle-copy,
.demo-caption,
.cta-panel p {
  color: var(--ink-soft);
  line-height: 1.78;
}

.hero-lede {
  margin: 1.4rem 0 0;
  font-size: 1.08rem;
  max-width: 60ch;
}

.hero-note {
  max-width: 57ch;
  margin: 1rem 0 0;
  color: var(--ink);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin-top: 2rem;
}

.hero-actions--center {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.92rem 1.45rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  background:
    linear-gradient(135deg, rgba(224, 191, 140, 1), rgba(181, 141, 84, 1));
  color: #150f09;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34), 0 0 24px rgba(201, 168, 116, 0.16);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.02);
  color: var(--ink);
  border: 1px solid rgba(201, 168, 116, 0.22);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.25rem;
}

.stat-card,
.pressure-card,
.bundle-panel,
.format-panel,
.demo-panel,
.cta-panel,
.collection-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(201, 168, 116, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.stat-card {
  padding: 1.2rem 1.1rem;
  border-radius: 1.2rem;
}

.stat-value {
  display: block;
  font-family: var(--display);
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  line-height: 0.92;
  color: var(--ink);
}

.stat-label {
  display: block;
  margin-top: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.bundle-panel {
  position: relative;
  border-radius: 32px;
  padding: 1.45rem;
  overflow: hidden;
  min-height: 100%;
}

.bundle-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(201, 168, 116, 0.09), transparent 34%),
    radial-gradient(circle at 78% 18%, rgba(201, 168, 116, 0.12), transparent 24%);
  pointer-events: none;
}

.bundle-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 116, 0.24);
  background: rgba(201, 168, 116, 0.08);
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.bundle-stack {
  position: relative;
  min-height: 31rem;
  margin-top: 1.3rem;
}

.bundle-sheet {
  position: absolute;
  width: clamp(10.5rem, 24vw, 12.6rem);
  aspect-ratio: 0.77;
  margin: 0;
  border-radius: 1.2rem;
  padding: 0.7rem;
  background: linear-gradient(180deg, #f0e4d0, #d7c4a4);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.bundle-sheet img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.84rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.bundle-sheet::after,
.collection-preview::after {
  content: "BODHI TATTVA INC";
  position: absolute;
  right: 0.9rem;
  bottom: 1rem;
  z-index: 2;
  padding: 0.38rem 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(12, 10, 8, 0.82), rgba(39, 29, 18, 0.62));
  color: rgba(243, 234, 220, 0.82);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
}

.bundle-sheet--sage {
  left: 3%;
  top: 7.2rem;
  transform: rotate(-10deg);
}

.bundle-sheet--terracotta {
  left: 18%;
  top: 1rem;
  transform: rotate(-6deg);
}

.bundle-sheet--lavender {
  left: 38%;
  top: 8rem;
  transform: rotate(-1deg);
}

.bundle-sheet--slate {
  left: 56%;
  top: 1.9rem;
  transform: rotate(5deg);
}

.bundle-sheet--amber {
  left: 71%;
  top: 8.1rem;
  transform: rotate(9deg);
}

.bundle-copy {
  position: relative;
  margin-top: 0.8rem;
}

.bundle-kicker {
  margin: 0 0 0.85rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.bundle-points {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.7rem;
  color: var(--ink-soft);
}

.section {
  padding: 4.5rem 0;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 1.9rem;
}

.section-heading h2,
.cta-panel h2 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.pressure-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.pressure-card {
  border-radius: 1.45rem;
  padding: 1.45rem;
}

.pressure-card--lead {
  grid-column: span 2;
  background:
    linear-gradient(145deg, rgba(201, 168, 116, 0.16), rgba(201, 168, 116, 0.04)),
    rgba(24, 19, 15, 0.96);
}

.pressure-card h3,
.format-list h3 {
  margin: 0 0 0.72rem;
  font-family: var(--display);
  font-size: 1.7rem;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.pressure-card:not(.pressure-card--lead) {
  grid-column: span 2;
}

.collection-list {
  display: grid;
  gap: 1rem;
}

.collection-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.8fr);
  gap: 1.2rem;
  align-items: center;
  border-radius: 1.75rem;
  padding: 1rem;
}

.collection-item:nth-child(even) {
  grid-template-columns: minmax(290px, 0.8fr) minmax(0, 1fr);
}

.collection-item:nth-child(even) .collection-copy {
  order: 2;
}

.collection-item:nth-child(even) .collection-preview {
  order: 1;
}

.collection-copy {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.05rem;
  align-items: start;
  padding: 1rem 1.1rem 1rem 0.6rem;
}

.collection-number {
  color: rgba(201, 168, 116, 0.42);
  font-family: var(--display);
  font-size: clamp(3.2rem, 5vw, 4.6rem);
  line-height: 0.82;
}

.collection-text h3 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.collection-text p {
  margin: 0.8rem 0 0;
  max-width: 46ch;
}

.collection-preview {
  position: relative;
  margin: 0;
  padding: 1rem;
  border-radius: 1.35rem;
  min-height: 100%;
  overflow: hidden;
}

.collection-preview img {
  width: 100%;
  display: block;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.26);
}

.tone-sage {
  background:
    radial-gradient(circle at top right, rgba(140, 160, 135, 0.2), transparent 42%),
    var(--surface-alt);
}

.tone-terracotta {
  background:
    radial-gradient(circle at top right, rgba(185, 138, 108, 0.2), transparent 42%),
    var(--surface-alt);
}

.tone-lavender {
  background:
    radial-gradient(circle at top right, rgba(158, 138, 183, 0.2), transparent 42%),
    var(--surface-alt);
}

.tone-slate {
  background:
    radial-gradient(circle at top right, rgba(127, 149, 176, 0.2), transparent 42%),
    var(--surface-alt);
}

.tone-amber {
  background:
    radial-gradient(circle at top right, rgba(197, 154, 89, 0.2), transparent 42%),
    var(--surface-alt);
}

.section--accent {
  padding-top: 4.9rem;
}

.format-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1.08fr);
  gap: 1rem;
}

.format-panel,
.demo-panel,
.cta-panel {
  border-radius: 1.8rem;
  padding: 1.45rem;
}

.format-list {
  display: grid;
  gap: 1rem;
}

.format-list article {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201, 168, 116, 0.1);
}

.format-list article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.launch-panel {
  margin-top: 1.45rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(201, 168, 116, 0.12);
}

.launch-copy {
  margin: 0.45rem 0 1rem;
}

.demo-panel {
  display: grid;
  align-content: start;
}

.demo-frame {
  overflow: hidden;
  border-radius: 1.35rem;
  background: rgba(12, 10, 8, 1);
  border: 1px solid rgba(201, 168, 116, 0.12);
}

.demo-frame video {
  width: 100%;
  background: #0b0908;
}

.demo-caption {
  margin: 0.95rem 0 0;
  font-size: 0.94rem;
}

.cta-panel {
  padding: 2.8rem;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(201, 168, 116, 0.12), rgba(201, 168, 116, 0.04)),
    var(--surface-strong);
  border-color: rgba(201, 168, 116, 0.22);
}

.cta-panel p {
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  padding: 0 0 3.2rem;
}

.footer-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.footer-shell p {
  margin: 0;
}

.footer-shell a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
  transition-delay: calc(var(--delay, 0) * 120ms);
}

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

[data-delay="1"] {
  --delay: 1;
}

[data-delay="2"] {
  --delay: 2;
}

@media (max-width: 1120px) {
  .hero,
  .format-layout,
  .collection-item,
  .collection-item:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .collection-item:nth-child(even) .collection-copy,
  .collection-item:nth-child(even) .collection-preview {
    order: initial;
  }

  .pressure-card--lead,
  .pressure-card:not(.pressure-card--lead) {
    grid-column: span 3;
  }

  .bundle-stack {
    min-height: 26rem;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(1180px, calc(100vw - 1.25rem));
  }

  .nav-shell,
  .footer-shell {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-shell {
    gap: 0.7rem;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
  }

  .brand {
    gap: 0.75rem;
    align-items: flex-start;
  }

  .brand-copy {
    gap: 0.12rem;
  }

  .brand-name {
    font-size: 1.05rem;
    line-height: 1.05;
    max-width: 14ch;
  }

  .site-nav {
    justify-content: flex-start;
    gap: 0.6rem 1rem;
  }

  .site-nav a {
    font-size: 0.88rem;
  }

  .hero {
    padding-top: 3.7rem;
    gap: 1.35rem;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 15vw, 4.8rem);
  }

  .hero-lede,
  .hero-note {
    font-size: 0.98rem;
  }

  .hero-actions {
    gap: 0.75rem;
  }

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

  .hero-stats,
  .pressure-grid {
    grid-template-columns: 1fr;
  }

  .pressure-card--lead,
  .pressure-card:not(.pressure-card--lead) {
    grid-column: span 1;
  }

  .collection-copy {
    grid-template-columns: 1fr;
    padding: 0.9rem 0.4rem 0.2rem;
  }

  .collection-number {
    font-size: 2.8rem;
  }

  .bundle-stack {
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .bundle-sheet {
    position: static;
    width: 100%;
    transform: none !important;
    padding: 0.45rem;
  }

  .bundle-sheet::after,
  .collection-preview::after {
    right: 0.7rem;
    bottom: 0.72rem;
    padding: 0.34rem 0.56rem;
    font-size: 0.54rem;
    letter-spacing: 0.22em;
  }

  .bundle-sheet--sage {
    left: auto;
    top: auto;
  }

  .bundle-sheet--terracotta {
    left: auto;
  }

  .bundle-sheet--lavender {
    left: auto;
  }

  .bundle-sheet--slate {
    left: auto;
  }

  .bundle-sheet--amber {
    left: auto;
    grid-column: span 2;
  }

  .cta-panel {
    padding: 2rem 1.3rem;
  }

  .collection-item,
  .format-panel,
  .demo-panel {
    padding: 0.85rem;
  }

  .section {
    padding: 3.5rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .js .reveal,
  .site-header {
    transition: none;
  }

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