:root {
  --bg: #070707;
  --white: #f6f3eb;
  --white-muted: rgba(246, 243, 235, 0.7);
  --gold: #c9a84c;
  --gold-bright: #e8d5a3;
  --gold-deep: #8a6f2a;
  --glass-bg: rgba(16, 16, 16, 0.62);
  --glass-border: rgba(201, 168, 76, 0.26);
  --error: #e8a0a0;
  --radius: 16px;
  --nav-h: 66px;
  --content: min(1200px, calc(100% - 48px));
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--white);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(201, 168, 76, 0.35);
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

strong {
  font-weight: 500;
  color: var(--gold-bright);
}

/* ——— Atmosphere ——— */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}

.bg-orb--1 {
  width: 560px;
  height: 560px;
  opacity: 0.48;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.5), transparent 70%);
  top: -160px;
  right: -40px;
}

.bg-orb--2 {
  width: 360px;
  height: 360px;
  opacity: 0.2;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 70%);
  bottom: 12%;
  left: -90px;
}

.bg-orb--3 {
  width: 260px;
  height: 260px;
  opacity: 0.22;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.3), transparent 70%);
  top: 55%;
  right: 20%;
}

.bg-orb--4 {
  display: none;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.028;
  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");
}

.sparkles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  opacity: 0.4;
}

.sparkle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(232, 213, 163, 0.65);
  box-shadow: 0 0 5px rgba(201, 168, 76, 0.35);
  animation: twinkle var(--dur, 5s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  opacity: 0;
}

@keyframes twinkle {
  0%, 100% { opacity: 0; }
  50% { opacity: 0.65; }
}

@keyframes pulse-soft {
  0%, 100% { opacity: 0.32; transform: scale(1); }
  50% { opacity: 0.48; transform: scale(1.03); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes success-pop {
  0% { transform: scale(0.7); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* ——— Glass ——— */
.glass,
.glass-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.09) 0%,
    rgba(255, 255, 255, 0.02) 50%,
    rgba(201, 168, 76, 0.04) 100%
  );
  background-color: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px) saturate(145%);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.glass::before,
.glass-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.glass > *,
.glass-panel > * {
  position: relative;
  z-index: 2;
}

/* ——— Nav ——— */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: var(--content);
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.35rem;
  border-radius: 999px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  white-space: nowrap;
}

.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.35), 0 0 16px rgba(201, 168, 76, 0.15);
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.5);
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1rem;
  background: rgba(201, 168, 76, 0.1);
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.logo-text em {
  font-style: normal;
  color: var(--gold);
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--white-muted);
}

.nav-links a {
  position: relative;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold-bright);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--gold);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: calc(var(--nav-h) + 28px);
  left: 50%;
  transform: translateX(-50%);
  width: var(--content);
  z-index: 99;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.15rem;
  border-radius: var(--radius);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a:not(.btn) {
  padding: 0.7rem 0.5rem;
  color: var(--white-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.95rem;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.88rem 1.55rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.015em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, border-color 0.25s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.52rem 1.1rem;
  font-size: 0.8rem;
}

.btn-block {
  width: 100%;
}

.btn-gold {
  background: linear-gradient(135deg, #f0e2b8 0%, var(--gold) 48%, var(--gold-deep));
  color: #1a1508;
  box-shadow: 0 6px 22px rgba(201, 168, 76, 0.28);
}

.btn-gold:hover {
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.4);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(201, 168, 76, 0.38);
  color: var(--gold-bright);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
}

/* ——— Hero ——— */
.hero {
  position: relative;
  z-index: 2;
  min-height: min(100vh, 820px);
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 36px) 0 3.5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 78% 42%, rgba(201, 168, 76, 0.16), transparent 60%),
    radial-gradient(ellipse 50% 40% at 12% 70%, rgba(255, 255, 255, 0.04), transparent 55%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, transparent 35%, rgba(7, 7, 7, 0.85) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 1.5rem 2.5rem;
  width: var(--content);
  margin: 0 auto;
}

.brand-hero {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-bright);
  margin-bottom: 0.85rem;
  text-shadow: 0 0 40px rgba(201, 168, 76, 0.25);
}

.brand-hero::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  margin-top: 0.85rem;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 5.5vw, 4rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
}

.hero h1 .hindi {
  display: block;
  font-size: 0.48em;
  font-weight: 400;
  font-style: italic;
  color: var(--gold-bright);
  margin-top: 0.5rem;
  letter-spacing: 0.04em;
  opacity: 0.95;
}

.hero-sub {
  max-width: 28rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--white-muted);
  margin-bottom: 1.75rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.hero-meta {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: rgba(246, 243, 235, 0.45);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 380px;
}

.yantra-ring {
  position: relative;
  width: min(400px, 92%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 68%);
  border: 1px solid rgba(201, 168, 76, 0.18);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 80px rgba(201, 168, 76, 0.12),
    inset 0 0 60px rgba(201, 168, 76, 0.06);
}

.yantra-ring::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.12);
  pointer-events: none;
}

.yantra-glow {
  position: absolute;
  width: 75%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.35), transparent 68%);
  animation: pulse-soft 9s ease-in-out infinite;
  filter: blur(2px);
}

.yantra {
  position: relative;
  width: 78%;
  animation: spin-slow 150s linear infinite;
  filter: drop-shadow(0 0 22px rgba(201, 168, 76, 0.4));
}

/* ——— Sections ——— */
.section {
  position: relative;
  z-index: 2;
  padding: 3.5rem 0;
}

.section-alt {
  background: linear-gradient(
    180deg,
    transparent,
    rgba(201, 168, 76, 0.035),
    transparent
  );
}

.section-inner {
  width: var(--content);
  margin: 0 auto;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-header {
  text-align: center;
  max-width: 100%;
  margin: 0 auto 2rem;
}

.section-header .section-lead {
  margin: 0 auto;
  max-width: 28rem;
}

.section-header h2 {
  max-width: none;
  margin: 0 auto 0.55rem;
  white-space: nowrap;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 0.55rem;
}

.section-lead {
  color: var(--white-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.pillars .glass-panel {
  padding: 1.5rem 1.35rem;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}

.pillars .glass-panel:hover {
  border-color: rgba(201, 168, 76, 0.48);
  transform: translateY(-3px);
}

.pillar-icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 0.9rem;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.45);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.1rem;
  background: rgba(201, 168, 76, 0.08);
}

.pillars h3,
.includes-list h3,
.form-step h3,
.step-header h3,
.success-state h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.pillars p {
  color: var(--white-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* Includes — compact 2-col */
.includes-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.includes-list li:last-child {
  grid-column: 1 / -1;
  max-width: calc(50% - 0.425rem);
  justify-self: center;
  width: 100%;
}

.includes-list li {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 1.1rem 1.2rem;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}

.includes-list li:hover {
  border-color: rgba(201, 168, 76, 0.48);
  transform: translateY(-2px);
}

.inc-num {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold);
  line-height: 1.3;
}

.includes-list h3 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.includes-list h3 small {
  display: inline;
  font-size: 0.78em;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-bright);
  opacity: 0.85;
  margin-left: 0.3rem;
}

.includes-list p {
  color: var(--white-muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

/* Guide */
.guide-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.guide-copy h2 {
  max-width: 14ch;
}

.guide-copy p {
  color: var(--white-muted);
  margin-bottom: 1.15rem;
  max-width: 32rem;
  font-size: 0.96rem;
  line-height: 1.7;
}

.guide-copy blockquote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold-bright);
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
  line-height: 1.45;
}

.guide-video {
  padding: 0.6rem;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid rgba(201, 168, 76, 0.22);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background:
    radial-gradient(circle at center, rgba(201, 168, 76, 0.16), transparent 55%),
    linear-gradient(160deg, rgba(18, 16, 12, 0.88), rgba(8, 8, 8, 0.94));
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.video-cover.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-cover p {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.video-play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.5);
  background: linear-gradient(145deg, rgba(240, 226, 184, 0.95), var(--gold));
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 26px rgba(201, 168, 76, 0.32);
  transition: transform 0.25s var(--ease);
}

.video-play:hover {
  transform: scale(1.05);
}

.video-play span {
  display: block;
  width: 0;
  height: 0;
  margin-left: 3px;
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent #1a1508;
}

/* Join */
.section-join {
  padding-bottom: 4.5rem;
}

.join-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.join-intro .section-lead {
  margin-bottom: 1.25rem;
  max-width: 28rem;
}

.price-tag {
  color: var(--gold-bright);
}

.join-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.join-perks li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--white-muted);
  font-size: 0.92rem;
}

.join-perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.form-shell {
  padding: 1.6rem 1.4rem 1.35rem;
  position: sticky;
  top: calc(var(--nav-h) + 28px);
}

.step-header {
  margin-bottom: 1.15rem;
}

.step-header h3 {
  font-size: 1.35rem;
  margin-bottom: 0.3rem;
}

.form-price {
  font-size: 0.88rem;
  color: var(--white-muted);
}

#formPanel.hidden,
.success-state.hidden {
  display: none;
}

.field {
  margin-bottom: 0.95rem;
}

.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--white-muted);
  margin-bottom: 0.35rem;
}

.field input {
  width: 100%;
  padding: 0.82rem 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.94rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  backdrop-filter: blur(6px);
}

.field input::placeholder {
  color: rgba(246, 243, 235, 0.32);
}

.field input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.field-error {
  display: block;
  min-height: 1em;
  font-size: 0.72rem;
  color: var(--error);
  margin-top: 0.2rem;
}

.field.has-error input {
  border-color: var(--error);
}

.form-note {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(246, 243, 235, 0.38);
  margin-top: 0.8rem;
}

.success-state {
  text-align: center;
  padding: 1.25rem 0.25rem 0.25rem;
  animation: fade-up 0.45s var(--ease);
}

.success-ring {
  width: 68px;
  height: 68px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: #1a1508;
  background: linear-gradient(145deg, var(--gold-bright), var(--gold));
  box-shadow: 0 0 0 5px rgba(201, 168, 76, 0.14);
  animation: success-pop 0.5s var(--ease);
}

.success-state p {
  color: var(--white-muted);
  margin-bottom: 1.35rem;
  font-size: 0.95rem;
}

/* Footer */
.footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(201, 168, 76, 0.18);
  padding: 2.5rem 0 1.35rem;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.5), rgba(0, 0, 0, 0.9));
}

.footer-inner {
  width: var(--content);
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
  display: flex;
  gap: 0.95rem;
  align-items: center;
  max-width: 24rem;
}

.footer-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.4), 0 0 24px rgba(201, 168, 76, 0.18);
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--white-muted);
}

.footer-motto {
  margin-top: 0.25rem !important;
  font-family: var(--font-display);
  font-size: 0.88rem !important;
  color: var(--gold-bright) !important;
  font-style: italic;
}

.footer-links {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 7.5rem;
}

.footer-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.footer-col a {
  font-size: 0.88rem;
  color: var(--white-muted);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--gold-bright);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.15rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(246, 243, 235, 0.38);
}

.footer-cta {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold-bright);
  border: 1px solid rgba(201, 168, 76, 0.38);
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  transition: background 0.25s, border-color 0.25s;
}

.footer-cta:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: var(--gold);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

/* ——— Responsive ——— */
@media (max-width: 900px) {
  .nav-links,
  .nav .btn-sm {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-h) + 32px);
    padding-bottom: 2.5rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .hero-visual {
    order: -1;
    min-height: 260px;
  }

  .yantra-ring {
    width: min(280px, 78%);
  }

  .pillars,
  .guide-grid,
  .join-layout,
  .includes-list {
    grid-template-columns: 1fr;
  }

  .includes-list li:last-child {
    grid-column: auto;
    max-width: none;
  }

  .form-shell {
    position: static;
  }

  .section-header h2 {
    white-space: normal;
  }

  .section-header {
    text-align: left;
  }

  .section-header .section-lead {
    margin-left: 0;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  :root {
    --content: min(1200px, calc(100% - 28px));
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .section {
    padding: 2.75rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .sparkles,
  .yantra {
    animation: none !important;
  }
}
