/* Smart GymBook — Landing
   Theme: black canvas + electric emerald accents (poster identity) */

:root {
  --bg: #000000;
  --bg-elevated: #0a0a0a;
  --bg-soft: #111111;
  --line: rgba(46, 204, 113, 0.18);
  --line-strong: rgba(46, 204, 113, 0.45);
  --green: #2ecc71;
  --green-bright: #39ff8a;
  --green-deep: #1fa855;
  --green-dim: rgba(46, 204, 113, 0.12);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --muted-2: rgba(255, 255, 255, 0.45);
  --pending: #f59e0b;
  --due: #ef4444;
  --history: #3b82f6;
  --radius: 18px;
  --radius-sm: 12px;
  --header-h: 72px;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Outfit", system-ui, sans-serif;
  --display: "Sora", "Outfit", system-ui, sans-serif;
  --shadow-green: 0 0 40px rgba(46, 204, 113, 0.28);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

em {
  font-style: normal;
  color: var(--green);
}

strong {
  color: var(--green);
  font-weight: 600;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--green);
  color: #000;
  border-radius: 8px;
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Ambient background */
.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(46, 204, 113, 0.12), transparent 60%),
    radial-gradient(ellipse 40% 30% at 100% 40%, rgba(46, 204, 113, 0.05), transparent 50%),
    #000;
}

#particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: drift 14s ease-in-out infinite alternate;
}

.glow-a {
  width: 420px;
  height: 420px;
  top: 10%;
  left: -8%;
  background: rgba(46, 204, 113, 0.22);
}

.glow-b {
  width: 360px;
  height: 360px;
  right: -6%;
  bottom: 18%;
  background: rgba(57, 255, 138, 0.12);
  animation-delay: -4s;
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(40px, -30px, 0) scale(1.12); }
}

/* Header — brand | centered nav | store CTAs */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  isolation: isolate;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  border-bottom: 1px solid rgba(46, 204, 113, 0.12);
  transition: box-shadow 0.3s var(--ease), background 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.98);
  border-bottom-color: rgba(46, 204, 113, 0.22);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: contain;
  background: #000;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.28em;
  white-space: nowrap;
}

.brand-name span {
  color: #fff;
}

.brand-name em {
  color: var(--green);
}

.nav-desktop {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
}

.nav-desktop a {
  padding: 0.45rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-desktop a:hover,
.nav-desktop a:focus-visible {
  color: #fff;
  background: rgba(46, 204, 113, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  height: 40px;
  padding: 0 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(46, 204, 113, 0.4);
  background: rgba(46, 204, 113, 0.06);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.store-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--green);
}

.store-btn span {
  display: none;
  flex-direction: column;
  line-height: 1.05;
  text-align: left;
}

.store-btn small {
  font-size: 0.55rem;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.store-btn strong {
  font-size: 0.75rem;
  color: #fff;
  font-weight: 700;
}

.store-btn:hover,
.store-btn:focus-visible {
  transform: translateY(-1px);
  background: rgba(46, 204, 113, 0.14);
  border-color: var(--green);
  box-shadow: 0 0 24px rgba(46, 204, 113, 0.25);
}

.nav-toggle {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-grid;
  place-content: center;
  gap: 5px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.25s var(--ease);
}

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

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

.mobile-nav {
  display: grid;
  gap: 0.25rem;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  padding: 0.25rem 0 1rem;
}

.mobile-nav[hidden] {
  display: none !important;
}

.mobile-nav a {
  padding: 0.85rem 0.75rem;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 500;
}

.mobile-nav a:hover {
  color: var(--green);
  background: rgba(46, 204, 113, 0.08);
}

.mobile-stores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-top: 0.55rem;
}

.mobile-stores .store-btn {
  justify-content: center;
  height: 46px;
  font-weight: 700;
  color: #fff;
}

.mobile-stores .store-btn span {
  display: none;
}

@media (min-width: 720px) {
  .store-btn {
    padding: 0 0.85rem;
  }

  .store-btn span {
    display: flex;
  }
}

@media (min-width: 1040px) {
  .header-inner {
    grid-template-columns: 1fr auto 1fr;
  }

  .nav-desktop {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }
}

@media (max-width: 420px) {
  .brand-name {
    display: none;
  }

  .header-actions .store-btn--apple {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-bright), var(--green-deep));
  color: #04140a;
  box-shadow: 0 0 0 1px rgba(46, 204, 113, 0.35), var(--shadow-green);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 0 0 1px var(--green), 0 0 48px rgba(46, 204, 113, 0.45);
}

.btn-ghost {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  transform: translateY(-2px);
  border-color: var(--green);
  background: rgba(46, 204, 113, 0.08);
  box-shadow: var(--shadow-green);
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 3rem;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
  }
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow .line {
  flex: 1;
  max-width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green));
}

.eyebrow .line:last-child {
  background: linear-gradient(90deg, var(--green), transparent);
}

.hero h1,
.section-head h2 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0;
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  max-width: 11ch;
}

.lead {
  margin: 1.15rem 0 0;
  max-width: 36ch;
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  color: var(--muted);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 320px;
}

.logo-orb {
  position: relative;
  width: min(300px, 72vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.logo-orb img {
  width: 72%;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 28px rgba(46, 204, 113, 0.35));
  animation: logoFloat 5s ease-in-out infinite;
}

.orb-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(46, 204, 113, 0.35);
  box-shadow: inset 0 0 40px rgba(46, 204, 113, 0.08), 0 0 40px rgba(46, 204, 113, 0.12);
  animation: spin 18s linear infinite;
}

.orb-ring::before,
.orb-ring::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px var(--green);
}

.orb-ring::before { top: 8%; left: 50%; }
.orb-ring::after { bottom: 12%; right: 14%; }

.orb-ring--delay {
  inset: 12%;
  animation-direction: reverse;
  animation-duration: 12s;
  opacity: 0.7;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

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

.float-chip {
  position: absolute;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(0, 0, 0, 0.75);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
  backdrop-filter: blur(8px);
  animation: chipBob 4.5s ease-in-out infinite;
}

.chip-a { top: 12%; left: 4%; animation-delay: 0s; }
.chip-b { top: 42%; right: 0; animation-delay: -1.4s; }
.chip-c { bottom: 14%; left: 10%; animation-delay: -2.2s; }

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

.hero-divider {
  width: min(220px, 40%);
  height: 2px;
  margin: 2.5rem auto 0;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  box-shadow: 0 0 18px rgba(46, 204, 113, 0.65);
  animation: pulseLine 2.8s ease-in-out infinite;
}

@keyframes pulseLine {
  0%, 100% { opacity: 0.55; transform: scaleX(0.9); }
  50% { opacity: 1; transform: scaleX(1); }
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.25rem;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
}

.section-head h2 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
}

.section-head p {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Features */
.feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 980px) {
  .feature-grid { grid-template-columns: repeat(5, 1fr); }
}

.feature-card {
  padding: 1.35rem 1.15rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  transition: transform 0.3s var(--ease), border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  left: 1.15rem;
  right: 1.15rem;
  bottom: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
  box-shadow: 0 0 12px var(--green);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), 0 0 30px rgba(46, 204, 113, 0.08);
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.icon-wrap {
  width: 48px;
  height: 48px;
  color: var(--green);
  margin-bottom: 0.85rem;
  filter: drop-shadow(0 0 10px rgba(46, 204, 113, 0.35));
}

.icon-wrap svg {
  width: 100%;
  height: 100%;
}

.feature-card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: 1.1rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.motto {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 2.75rem 0 0;
  font-family: var(--display);
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  font-weight: 700;
  text-align: center;
}

.motto-icon {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  background: linear-gradient(135deg, transparent 40%, var(--green) 40%, var(--green) 55%, transparent 55%),
    linear-gradient(45deg, transparent 35%, var(--green) 35%, var(--green) 70%, transparent 70%);
  box-shadow: 0 0 14px rgba(46, 204, 113, 0.5);
}

/* Split sections */
.split-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .split-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }
  .split-grid--reverse .split-art { order: -1; }
}

.checklist,
.status-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.checklist li,
.status-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 0.85rem 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s var(--ease);
}

.checklist li:hover,
.status-list li:hover {
  border-color: var(--line);
  background: rgba(46, 204, 113, 0.04);
  transform: translateX(4px);
}

.check-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green);
  border: 1px solid var(--line-strong);
  background: rgba(46, 204, 113, 0.08);
}

.check-icon svg {
  width: 22px;
  height: 22px;
}

.checklist strong,
.status-list strong {
  display: block;
  color: #fff;
  margin-bottom: 0.15rem;
}

.checklist span,
.status-list span {
  color: var(--muted);
  font-size: 0.92rem;
}

.quote {
  margin: 1.75rem 0 0;
  padding: 1rem 0 0 1rem;
  border-left: 3px solid var(--green);
  color: var(--muted);
  font-size: 1.05rem;
}

.quote--center {
  border: 0;
  padding: 0;
  text-align: center;
  margin-top: 2.25rem;
}

.quote::before {
  content: "“";
  color: var(--green);
  font-family: var(--display);
  font-size: 1.6rem;
  margin-right: 0.25rem;
}

.split-art {
  display: grid;
  place-items: center;
  gap: 1rem;
}

.neon-frame {
  width: min(100%, 360px);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at center, rgba(46, 204, 113, 0.12), transparent 65%);
  box-shadow: inset 0 0 60px rgba(46, 204, 113, 0.08), 0 0 50px rgba(46, 204, 113, 0.12);
  animation: softPulse 3.5s ease-in-out infinite;
}

.people-art {
  width: 78%;
}

.art-caption {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-weight: 500;
}

@keyframes softPulse {
  0%, 100% { box-shadow: inset 0 0 60px rgba(46, 204, 113, 0.08), 0 0 40px rgba(46, 204, 113, 0.1); }
  50% { box-shadow: inset 0 0 70px rgba(46, 204, 113, 0.14), 0 0 70px rgba(46, 204, 113, 0.22); }
}

/* Payments visual */
.card-orbit {
  position: relative;
  width: min(100%, 340px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.scan-ring {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px dashed rgba(46, 204, 113, 0.35);
  animation: spin 20s linear infinite;
}

.scan-ring::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
  transform: translate(-50%, -50%);
}

.pay-card {
  width: 78%;
  aspect-ratio: 1.6;
  border-radius: 18px;
  border: 1.5px solid var(--green);
  background: linear-gradient(145deg, rgba(46, 204, 113, 0.12), rgba(0, 0, 0, 0.85));
  box-shadow: 0 0 40px rgba(46, 204, 113, 0.25), inset 0 0 30px rgba(46, 204, 113, 0.08);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  animation: logoFloat 5.5s ease-in-out infinite;
}

.pay-chip {
  width: 42px;
  height: 30px;
  border-radius: 6px;
  background: linear-gradient(135deg, #c8f7d8, #2ecc71);
  opacity: 0.85;
}

.pay-lines span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(46, 204, 113, 0.35);
  margin-top: 0.45rem;
}

.pay-lines span:first-child { width: 70%; }
.pay-lines span:last-child { width: 45%; }

.pay-brand {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.04em;
}

.rupee-badge {
  position: absolute;
  right: 14%;
  bottom: 18%;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.5rem;
  color: #04140a;
  background: var(--green);
  box-shadow: 0 0 30px rgba(46, 204, 113, 0.55);
  animation: softPulse 2.8s ease-in-out infinite;
}

.status-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  background: color-mix(in srgb, currentColor 12%, transparent);
  position: relative;
}

.status-dot::before {
  font-size: 1rem;
  font-weight: 800;
}

.status-dot--paid { color: var(--green); }
.status-dot--paid::before { content: "✓"; }
.status-dot--pending { color: var(--pending); }
.status-dot--pending::before { content: "◷"; }
.status-dot--due { color: var(--due); }
.status-dot--due::before { content: "!"; }
.status-dot--history { color: var(--history); }
.status-dot--history::before { content: "☰"; }

.benefit-bar {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 640px) {
  .benefit-bar {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

.benefit-bar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* Plans */
.plan-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .plan-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 980px) {
  .plan-grid { grid-template-columns: repeat(5, 1fr); }
}

.plan-card {
  position: relative;
  padding: 1.4rem 1.1rem 1.3rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
  transition: transform 0.3s var(--ease), border-color 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-8px);
  border-color: var(--line-strong);
  box-shadow: 0 0 32px rgba(46, 204, 113, 0.12);
}

.plan-card--popular {
  border-color: var(--green);
  background: linear-gradient(180deg, rgba(46, 204, 113, 0.12), rgba(46, 204, 113, 0.02));
  box-shadow: 0 0 36px rgba(46, 204, 113, 0.18);
}

.popular-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: var(--green);
  color: #04140a;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-icon {
  width: 44px;
  height: 44px;
  margin: 0.35rem auto 0.85rem;
  color: var(--green);
}

.plan-icon svg {
  width: 100%;
  height: 100%;
}

.plan-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.05rem;
}

.plan-term {
  margin: 0.35rem 0 0.5rem;
  color: var(--green);
  font-weight: 700;
}

.plan-card p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Automation */
.automation {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(46, 204, 113, 0.08), transparent 50%),
    transparent;
}

.automation-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 860px) {
  .automation-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.pill-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.25rem 0 0;
  padding: 0;
}

.pill-row li {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
  background: rgba(46, 204, 113, 0.05);
}

.automation-panel {
  display: grid;
  gap: 0.75rem;
}

.msg {
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  transform: translateX(0);
  animation: msgIn 4.5s ease-in-out infinite;
}

.msg span {
  display: block;
  font-weight: 600;
}

.msg small {
  color: var(--muted-2);
}

.msg-a { animation-delay: 0s; }
.msg-b { animation-delay: 0.35s; width: 92%; margin-left: auto; }
.msg-c { animation-delay: 0.7s; width: 88%; }

@keyframes msgIn {
  0%, 100% { opacity: 0.7; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-4px); box-shadow: 0 0 24px rgba(46, 204, 113, 0.12); }
}

/* Download */
.download-panel {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem;
  border-radius: 28px;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(ellipse at top, rgba(46, 204, 113, 0.16), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  box-shadow: 0 0 60px rgba(46, 204, 113, 0.1);
}

.download-logo {
  display: block;
  width: 96px;
  margin: 0 auto 1.25rem;
}

.download-logo img {
  width: 96px;
  height: 96px;
  margin-inline: auto;
  filter: drop-shadow(0 0 20px rgba(46, 204, 113, 0.35));
}

.download-panel h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0;
  letter-spacing: -0.03em;
}

.download-panel > p {
  max-width: 42ch;
  margin: 0.85rem auto 0;
  color: var(--muted);
}

.download-panel .hero-cta {
  justify-content: center;
}

/* Footer */
.site-footer {
  padding: 3rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  text-align: center;
}

.brand--footer img {
  width: 72px;
  height: 72px;
  margin-inline: auto;
  object-fit: contain;
}

.footer-tag {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem 1.25rem;
  margin-top: 0.35rem;
}

.footer-nav a {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-nav a:hover {
  color: var(--green);
}

.copyright {
  margin: 0.75rem 0 0;
  color: var(--muted-2);
  font-size: 0.82rem;
}

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

.lang-switch {
  display: inline-flex;
  align-items: center;
}

.lang-switch select {
  appearance: none;
  -webkit-appearance: none;
  height: 40px;
  padding: 0 2rem 0 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(46, 204, 113, 0.4);
  background:
    #0a0a0a
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%232ECC71' d='M1 1l5 5 5-5'/%3E%3C/svg%3E")
    no-repeat right 0.75rem center;
  color: #fff;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lang-switch select:hover,
.lang-switch select:focus-visible {
  border-color: var(--green);
  box-shadow: 0 0 18px rgba(46, 204, 113, 0.2);
  outline: none;
}

.lang-switch select option {
  background: #111;
  color: #fff;
}

/* Hindi SEO block */
.hindi-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .hindi-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hindi-card {
  padding: 1.25rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.hindi-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--green);
}

.hindi-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.hindi-cta {
  margin: 1.75rem 0 0;
  text-align: center;
}

.hindi-cta a {
  color: var(--green);
  font-weight: 700;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.hindi-cta a:hover {
  border-bottom-color: var(--green);
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  padding: 0 1.1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item[open] {
  border-color: var(--line-strong);
  box-shadow: 0 0 28px rgba(46, 204, 113, 0.08);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.05rem 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--green);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0 0 1.1rem;
  color: var(--muted);
  padding-right: 1.5rem;
}

.faq-item a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--delay, 0ms);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .glow,
  .orb-ring,
  .logo-orb img,
  .float-chip,
  .hero-divider,
  .neon-frame,
  .pay-card,
  .rupee-badge,
  .scan-ring,
  .msg {
    animation: none !important;
  }
  #particles { display: none; }
}
