:root {
  --saffron: #ff8c42;
  --saffron-dark: #e96f20;
  --cream: #fff8ee;
  --white: #ffffff;
  --gold: #d4af37;
  --purple: #5e35b1;
  --purple-dark: #321a68;
  --ink: #211a2d;
  --muted: #6f657c;
  --line: rgba(94, 53, 177, 0.13);
  --shadow: 0 22px 70px rgba(94, 53, 177, 0.13);
  --soft-shadow: 0 12px 35px rgba(255, 140, 66, 0.16);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 6%, rgba(255, 140, 66, 0.2), transparent 28rem),
    radial-gradient(circle at 92% 18%, rgba(94, 53, 177, 0.16), transparent 26rem),
    linear-gradient(180deg, var(--cream) 0%, #fff 42%, var(--cream) 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  min-width: 320px;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

img,
svg {
  max-width: 100%;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 92px 0;
  position: relative;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 999;
  top: 14px;
  left: 14px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 14px;
  background: var(--purple);
  color: var(--white);
  border-radius: 999px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 238, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 30px rgba(94, 53, 177, 0.08);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--purple-dark);
  font-weight: 800;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--saffron), var(--purple));
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(255, 140, 66, 0.28);
  font-weight: 700;
}

.logo-mark {
  overflow: hidden;
  background: #fff8ee;
  border: 2px solid rgba(212, 175, 55, 0.42);
  box-shadow: 0 12px 28px rgba(212, 128, 35, 0.22);
  padding: 4px;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu a {
  padding: 10px 14px;
  color: #433654;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.94rem;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--purple);
  background: rgba(94, 53, 177, 0.08);
  transform: translateY(-1px);
}

.nav-menu .nav-cta {
  color: var(--white);
  background: linear-gradient(135deg, var(--purple), var(--saffron));
  box-shadow: var(--soft-shadow);
  margin-left: 6px;
}

.nav-menu .nav-cta:hover,
.nav-menu .nav-cta:focus-visible {
  color: var(--white);
  background: linear-gradient(135deg, var(--purple-dark), var(--saffron-dark));
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  cursor: pointer;
  padding: 11px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--purple);
  border-radius: 999px;
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: 88px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 12% auto auto -120px;
  width: 300px;
  height: 300px;
  background: repeating-conic-gradient(from 0deg, rgba(212, 175, 55, 0.16) 0 10deg, transparent 10deg 20deg);
  border-radius: 999px;
  opacity: 0.55;
  pointer-events: none;
}

.hero-grid,
.split-grid,
.waitlist-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--saffron-dark);
  background: rgba(255, 140, 66, 0.12);
  border: 1px solid rgba(255, 140, 66, 0.22);
  border-radius: 999px;
  padding: 8px 13px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.76rem;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.16);
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--purple-dark);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(4.1rem, 14vw, 8rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 6vw, 4rem);
}

h3 {
  color: var(--purple-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

p {
  color: var(--muted);
}

.hero-subtitle {
  margin-bottom: 20px;
  color: var(--saffron-dark);
  font-size: clamp(1.35rem, 4vw, 2rem);
  font-weight: 800;
}

.hero-text,
.section-copy p,
.section-heading p {
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 24px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  padding: 14px 22px;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--saffron), var(--purple));
  box-shadow: 0 18px 38px rgba(255, 140, 66, 0.26);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 24px 48px rgba(94, 53, 177, 0.22);
}

.btn-secondary {
  color: var(--purple);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: 0 16px 38px rgba(94, 53, 177, 0.08);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof span {
  color: #5c506d;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(94, 53, 177, 0.12);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
}

.temple-card {
  min-height: 560px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 238, 0.72)),
    radial-gradient(circle at 50% 28%, rgba(255, 140, 66, 0.36), transparent 20rem);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.logo-hero-card {
  display: grid;
  place-items: center;
  min-height: 560px;
  padding: clamp(32px, 5vw, 58px);
}

.logo-hero-card::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(74%, 390px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.92) 0 45%, rgba(255, 140, 66, 0.16) 46% 66%, transparent 67%),
    conic-gradient(from 18deg, rgba(212, 175, 55, 0.18), rgba(94, 53, 177, 0.1), rgba(255, 140, 66, 0.18));
  border-radius: 42px;
  filter: blur(0.3px);
  pointer-events: none;
}

.hero-logo-art {
  position: relative;
  z-index: 2;
  width: min(72%, 345px);
  max-height: 365px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 32px;
  box-shadow:
    0 26px 54px rgba(94, 53, 177, 0.14),
    0 0 0 12px rgba(255, 255, 255, 0.54);
  filter: drop-shadow(0 18px 30px rgba(255, 140, 66, 0.14));
}

.temple-card::before,
.pattern-card::before,
.app-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, rgba(94, 53, 177, 0.05) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(94, 53, 177, 0.05) 25%, transparent 25%);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent);
  pointer-events: none;
}

.sun-glow {
  position: absolute;
  top: 76px;
  left: 50%;
  width: 230px;
  height: 230px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 185, 94, 0.9), rgba(255, 140, 66, 0.08) 68%);
  border-radius: 999px;
  filter: blur(2px);
}

.temple {
  position: absolute;
  left: 50%;
  bottom: 128px;
  width: min(78%, 360px);
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
}

.temple-dome {
  width: 78px;
  height: 78px;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  border-radius: 50% 50% 10px 10px;
  clip-path: polygon(50% 0, 76% 24%, 86% 64%, 100% 100%, 0 100%, 14% 64%, 24% 24%);
}

.temple-roof {
  width: 100%;
  height: 84px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  filter: drop-shadow(0 18px 24px rgba(94, 53, 177, 0.18));
}

.temple-body {
  width: 78%;
  height: 170px;
  display: flex;
  justify-content: center;
  gap: 22px;
  padding: 34px 26px 0;
  background: linear-gradient(180deg, #fffdf8, #ffe9cc);
  border: 1px solid rgba(94, 53, 177, 0.1);
  border-radius: 18px 18px 8px 8px;
}

.temple-body span {
  width: 48px;
  height: 136px;
  background: linear-gradient(180deg, var(--saffron), var(--gold));
  border-radius: 999px 999px 8px 8px;
}

.temple-base {
  width: 94%;
  height: 28px;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  border-radius: 999px;
}

.lotus {
  position: absolute;
  right: 34px;
  bottom: 98px;
  width: 90px;
  height: 58px;
}

.lotus span {
  position: absolute;
  bottom: 0;
  width: 48px;
  height: 54px;
  background: linear-gradient(180deg, #ffba7c, var(--saffron));
  border-radius: 80% 10% 80% 10%;
  transform-origin: bottom center;
}

.lotus span:nth-child(1) {
  left: 0;
  transform: rotate(-28deg);
}

.lotus span:nth-child(2) {
  left: 22px;
  transform: rotate(0deg);
}

.lotus span:nth-child(3) {
  right: 0;
  transform: rotate(28deg) scaleX(-1);
}

.diya {
  position: absolute;
  left: 34px;
  bottom: 82px;
  width: 118px;
  height: 104px;
}

.flame {
  width: 38px;
  height: 58px;
  margin: 0 auto -6px;
  background: radial-gradient(circle at 50% 70%, #fff8b9 0 18%, #ffd166 20% 48%, var(--saffron) 50% 100%);
  border-radius: 60% 10% 60% 60%;
  transform: rotate(45deg);
  filter: drop-shadow(0 0 24px rgba(255, 140, 66, 0.85));
  animation: flicker 2.4s ease-in-out infinite;
}

.bowl {
  width: 118px;
  height: 44px;
  background: linear-gradient(135deg, var(--purple), var(--saffron));
  border-radius: 10px 10px 80px 80px;
}

.floating-chip {
  position: absolute;
  z-index: 4;
  color: var(--purple-dark);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(94, 53, 177, 0.12);
  padding: 11px 15px;
  font-weight: 800;
  backdrop-filter: blur(12px);
  animation: float 5s ease-in-out infinite;
}

.chip-one {
  top: 78px;
  right: 34px;
}

.chip-two {
  left: 34px;
  bottom: 86px;
  animation-delay: -1.8s;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-copy {
  max-width: 640px;
}

.about {
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  inset: 14% auto auto 5%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}

.about-showcase {
  display: grid;
  gap: 20px;
}

.about-intro {
  max-width: none;
  padding: clamp(26px, 5vw, 46px);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-intro h2 {
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.about-detail-grid {
  display: grid;
  gap: 14px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 24px;
  box-shadow: 0 12px 34px rgba(94, 53, 177, 0.07);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.about-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 140, 66, 0.34);
  box-shadow: 0 20px 46px rgba(94, 53, 177, 0.12);
}

.about-icon {
  width: 54px;
  height: 54px;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--purple);
  background: linear-gradient(135deg, rgba(94, 53, 177, 0.09), rgba(255, 140, 66, 0.14));
  border-radius: 18px;
  font-size: 1.35rem;
}

.about-feature h3 {
  margin-bottom: 4px;
  font-size: 1.08rem;
}

.about-feature p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.about-credit-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 244, 255, 0.86)),
    var(--white);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-credit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 140, 66, 0.08), transparent);
  pointer-events: none;
}

.credit-label {
  display: block;
  margin-bottom: 16px;
  color: var(--saffron-dark);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
  font-weight: 900;
}

.developer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.developer-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 20px;
  background: rgba(94, 53, 177, 0.08);
  border: 1px solid rgba(94, 53, 177, 0.08);
  border-radius: 22px;
  text-align: center;
}

.developer-avatar {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--purple), var(--saffron));
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(94, 53, 177, 0.16);
  font-weight: 900;
}

.developer-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.image-avatar {
  background: var(--white);
}

.about-panel,
.pattern-card,
.app-card,
.waitlist-form,
.legal-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.pattern-card {
  padding: clamp(28px, 5vw, 48px);
}

.panel-icon {
  width: 70px;
  height: 70px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 28px;
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.14), rgba(94, 53, 177, 0.12));
  border-radius: 24px;
  font-size: 2rem;
}

.pattern-card h3 {
  max-width: 420px;
  margin-bottom: 14px;
  font-size: 1.8rem;
}

.card-grid {
  display: grid;
  gap: 20px;
}

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

.feature-card,
.trust-card,
.step {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(94, 53, 177, 0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 40px rgba(94, 53, 177, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card {
  padding: 26px;
  min-height: 238px;
}

.ai-feature {
  background:
    linear-gradient(135deg, rgba(94, 53, 177, 0.92), rgba(255, 140, 66, 0.86)),
    var(--purple);
}

.ai-feature h3,
.ai-feature p {
  color: var(--white);
}

.ai-feature p {
  opacity: 0.86;
}

.ai-feature .card-icon {
  color: var(--purple-dark);
  background: linear-gradient(135deg, #fff8ee, #f4d46d);
}

.feature-card::after,
.trust-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -50% 18%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 140, 66, 0.15), transparent 70%);
  pointer-events: none;
}

.feature-card:hover,
.trust-card:hover,
.step:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 60px rgba(94, 53, 177, 0.14);
  border-color: rgba(255, 140, 66, 0.28);
}

.card-icon {
  width: 50px;
  height: 50px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--saffron), var(--purple));
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(255, 140, 66, 0.2);
  font-weight: 900;
}

.feature-card h3,
.trust-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.feature-card p,
.trust-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.trust-card {
  padding: 24px;
}

.sponsor-panel {
  margin-top: 28px;
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 238, 0.84)),
    radial-gradient(circle at 20% 0%, rgba(212, 175, 55, 0.18), transparent 24rem);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.sponsor-heading {
  max-width: 720px;
  margin: 0 auto 24px;
  text-align: center;
}

.sponsor-heading .eyebrow {
  margin-bottom: 12px;
}

.sponsor-heading h3 {
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.sponsor-heading p:last-child {
  margin-bottom: 0;
}

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

.sponsor-card {
  min-height: 172px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 24px 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(94, 53, 177, 0.09);
  border-radius: 22px;
  box-shadow: 0 12px 34px rgba(94, 53, 177, 0.07);
  text-align: center;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.sponsor-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 140, 66, 0.28);
  box-shadow: 0 20px 48px rgba(94, 53, 177, 0.12);
}

.sponsor-card img {
  width: min(220px, 86%);
  height: 88px;
  object-fit: contain;
  object-position: center;
}

.sponsor-card strong {
  color: var(--purple-dark);
  font-size: 0.95rem;
  line-height: 1.25;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: steps;
}

.step {
  padding: 28px;
}

.step span {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--white);
  background: var(--purple);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(94, 53, 177, 0.1);
  font-weight: 900;
}

.step h3 {
  margin-bottom: 0;
  font-size: 1.15rem;
}

.coming-soon {
  padding-top: 40px;
}

.app-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: clamp(28px, 5vw, 52px);
  background:
    linear-gradient(135deg, rgba(94, 53, 177, 0.95), rgba(255, 140, 66, 0.9)),
    var(--purple);
}

.app-card h2,
.app-card p,
.app-card .eyebrow {
  color: var(--white);
}

.app-card .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.2);
}

.app-card p {
  max-width: 560px;
  margin-bottom: 0;
  opacity: 0.88;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.store-badge {
  min-width: 180px;
  text-align: left;
  color: var(--white);
  background: rgba(20, 14, 31, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 13px 18px;
  cursor: not-allowed;
  opacity: 0.72;
}

.store-badge span,
.store-badge strong {
  display: block;
  line-height: 1.15;
}

.store-badge span {
  font-size: 0.8rem;
}

.store-badge strong {
  margin-top: 2px;
  font-size: 1.3rem;
}

.waitlist-grid {
  align-items: start;
}

.waitlist-note {
  margin-top: 28px;
  padding: 18px;
  color: #4f4261;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.waitlist-form {
  padding: clamp(24px, 4vw, 36px);
}

.form-field {
  margin-bottom: 18px;
}

label {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--purple-dark);
  font-weight: 800;
}

label span {
  color: var(--muted);
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  color: var(--ink);
  background: rgba(255, 248, 238, 0.82);
  border: 1px solid rgba(94, 53, 177, 0.16);
  border-radius: 16px;
  outline: 0;
  padding: 12px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  background: var(--white);
  border-color: rgba(255, 140, 66, 0.75);
  box-shadow: 0 0 0 4px rgba(255, 140, 66, 0.12);
}

.form-field small {
  display: block;
  min-height: 20px;
  margin-top: 5px;
  color: #bb2c2c;
  font-weight: 700;
  font-size: 0.82rem;
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: #bb2c2c;
}

.form-submit {
  width: 100%;
}

.form-success {
  min-height: 24px;
  margin: 16px 0 0;
  color: #137a3a;
  font-weight: 800;
}

.accordion {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(94, 53, 177, 0.12);
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(94, 53, 177, 0.07);
}

.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  color: var(--purple-dark);
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 22px 24px;
  text-align: left;
  font-weight: 900;
}

.faq-item button span:last-child {
  width: 30px;
  height: 30px;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--saffron);
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.faq-item button[aria-expanded="true"] span:last-child {
  transform: rotate(45deg);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.24s ease;
}

.faq-panel > p {
  overflow: hidden;
  margin: 0;
  padding: 0 24px;
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-panel > p {
  padding-bottom: 22px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 140, 66, 0.28), transparent 28rem),
    linear-gradient(135deg, var(--purple-dark), #1d123d);
  padding: 64px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.8fr;
  gap: 42px;
}

.site-footer .brand,
.site-footer h2,
.site-footer a {
  color: var(--white);
}

.site-footer h2 {
  margin-bottom: 16px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
  letter-spacing: 0;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a:not(.brand) {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease;
}

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

.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.legal-hero {
  padding: 74px 0 34px;
}

.legal-hero h1 {
  font-size: clamp(2.75rem, 8vw, 5.4rem);
}

.legal-hero .section-heading {
  margin-bottom: 0;
}

.legal-section {
  padding-top: 32px;
}

.legal-card {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 48px);
}

.legal-card h2 {
  margin-top: 34px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.4rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card ul {
  padding-left: 1.2rem;
  color: var(--muted);
}

.legal-card li {
  margin-bottom: 8px;
}

.delete-form {
  margin-top: 28px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@keyframes flicker {
  0%,
  100% {
    transform: rotate(45deg) scale(1);
  }
  50% {
    transform: rotate(45deg) scale(1.08);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

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

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

@media (max-width: 1060px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .sponsor-card:last-child {
    grid-column: 1 / -1;
  }

  .trust-card:last-child {
    grid-column: 1 / -1;
  }

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

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: 78px 16px auto;
    display: grid;
    gap: 6px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(94, 53, 177, 0.12);
    border-radius: 24px;
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    padding: 13px 14px;
  }

  .nav-menu .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero-grid,
  .split-grid,
  .waitlist-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    order: -1;
  }

  .temple-card {
    min-height: 460px;
  }

  .app-card {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: 70px 0;
  }

  .nav {
    min-height: 70px;
  }

  .nav-menu {
    top: 70px;
  }

  .hero {
    padding-top: 38px;
  }

  .hero-actions,
  .store-badges {
    flex-direction: column;
  }

  .btn,
  .store-badge {
    width: 100%;
  }

  .features-grid,
  .trust-grid,
  .sponsor-grid,
  .steps,
  .developer-grid {
    grid-template-columns: 1fr;
  }

  .sponsor-card:last-child {
    grid-column: auto;
  }

  .trust-card:last-child {
    grid-column: auto;
  }

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

  .temple-card {
    min-height: 380px;
    border-radius: 30px;
  }

  .logo-hero-card {
    min-height: 430px;
    padding: 28px 18px;
  }

  .logo-hero-card::after {
    width: min(86%, 300px);
    border-radius: 30px;
  }

  .hero-logo-art {
    width: min(70%, 260px);
    max-height: 285px;
    border-radius: 24px;
    box-shadow:
      0 20px 40px rgba(94, 53, 177, 0.13),
      0 0 0 8px rgba(255, 255, 255, 0.52);
  }

  .temple {
    bottom: 94px;
    width: 78%;
  }

  .temple-body {
    height: 124px;
    gap: 14px;
    padding-top: 24px;
  }

  .temple-body span {
    width: 34px;
    height: 98px;
  }

  .diya {
    transform: scale(0.78);
    transform-origin: bottom left;
  }

  .lotus {
    transform: scale(0.76);
    transform-origin: bottom right;
  }

  .floating-chip {
    font-size: 0.82rem;
  }

  .sponsor-card img {
    width: min(240px, 92%);
    height: 78px;
  }

  .chip-one {
    top: 34px;
    right: 16px;
  }

  .chip-two {
    left: 16px;
    top: auto;
    bottom: 34px;
  }

  .faq-item button {
    padding: 18px;
  }

  .faq-panel > p {
    padding-inline: 18px;
  }
}
