/* Sanatan marketing — colors & surfaces aligned with Flutter app (color.dart, SanatanFrostedUi, SanatanAiCta) */

:root {
  --sanatan-theme-1: #250748;
  --sanatan-theme-2: #370056;
  --sanatan-primary: #673ab7;
  --sanatan-main: #6808a8;
  --sanatan-secondary: #a685ff;
  --sanatan-green: #69f0ae;
  --sanatan-ai-start: #6d28d9;
  --sanatan-ai-mid: #9333ea;
  --sanatan-ai-end: #f0abfc;
  --sanatan-ai-glow: #d8b4fe;
  --sanatan-cyan: #80deea;
  --sanatan-frost-bg: rgba(255, 255, 255, 0.07);
  --sanatan-frost-border: rgba(255, 255, 255, 0.14);
  --sanatan-text: rgba(255, 255, 255, 0.92);
  --sanatan-text-muted: rgba(255, 255, 255, 0.72);
}

body.landing-body {
  background-color: var(--sanatan-theme-1);
  color: var(--sanatan-text);
}

body.landing-body header.landing-header {
  background: linear-gradient(
    180deg,
    rgba(37, 7, 72, 0.97) 0%,
    rgba(55, 0, 86, 0.92) 100%
  );
  border-bottom: 1px solid var(--sanatan-frost-border);
  backdrop-filter: blur(10px);
  height: auto;
  min-height: 64px;
  padding: 0;
}

body.landing-body header.landing-header .header-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 8px 12px;
  padding: 8px 12px;
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
}

.landing-header__inner {
  flex-wrap: nowrap;
  align-items: center;
}

.landing-header__inner .logo-section {
  grid-column: 1;
  justify-self: start;
  min-width: 0;
}

.landing-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  grid-column: 3;
  justify-self: end;
}

.landing-nav--desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  grid-column: 2;
  justify-self: center;
}

.landing-nav--desktop a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.landing-nav--desktop a:hover {
  color: var(--sanatan-cyan);
}

.landing-nav__mobile-only {
  display: none;
}

body.landing-body {
  overflow-x: hidden;
}

body.landing-body .site-footer {
  background: linear-gradient(180deg, rgba(37, 7, 72, 0.6), #120022);
  border-top: 1px solid var(--sanatan-frost-border);
}

.landing-page {
  padding-top: 72px;
  overflow-x: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(37, 7, 72, 0.88) 0%,
      rgba(55, 0, 86, 0.82) 35%,
      rgba(37, 0, 86, 0.9) 70%,
      rgba(21, 0, 44, 0.96) 100%
    ),
    url("../assets/marketing/background.png") center top / cover no-repeat fixed;
}

.landing-frosted {
  background: var(--sanatan-frost-bg);
  border: 1px solid var(--sanatan-frost-border);
  backdrop-filter: blur(12px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Buttons */
.landing-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--sanatan-ai-start),
    var(--sanatan-ai-mid),
    var(--sanatan-ai-end)
  );
  box-shadow:
    0 0 16px rgba(216, 180, 254, 0.45),
    0 8px 24px rgba(147, 51, 234, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.landing-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 22px rgba(216, 180, 254, 0.65),
    0 10px 28px rgba(147, 51, 234, 0.45);
  color: #fff;
}

.landing-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.landing-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--sanatan-cyan);
  color: #fff;
}

/* Hero */
.landing-hero {
  position: relative;
  padding: 72px 24px 64px;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.landing-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sanatan-cyan);
  margin-bottom: 14px;
}

.landing-hero h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.12;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
}

.landing-hero__lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--sanatan-text-muted);
  max-width: 34rem;
  margin-bottom: 28px;
}

.landing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
}

.landing-hero__actions .store-btn {
  height: 46px;
  width: auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.landing-hero__actions .store-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.landing-hero__note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.landing-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.landing-phones {
  position: relative;
  width: min(100%, 380px);
  height: 440px;
}

/* Shared phone frame for app screenshots */
.landing-phone-shot {
  border-radius: 28px;
  padding: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.5),
    0 0 48px rgba(147, 51, 234, 0.28);
  overflow: hidden;
  background-color: #0a0218;
}

.landing-phone-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 22px;
}

.landing-phone-shot--back {
  position: absolute;
  width: 46%;
  height: 88%;
  right: 0;
  top: 28px;
  transform: rotate(7deg);
  z-index: 0;
  opacity: 0.94;
}

.landing-phone-shot--front {
  position: absolute;
  width: 50%;
  height: 92%;
  left: 0;
  top: 0;
  transform: rotate(-5deg);
  z-index: 1;
}

.landing-phone-shot--solo {
  width: min(100%, 200px);
  flex-shrink: 0;
  aspect-ratio: 9 / 19.5;
}

.landing-phone-shot--gallery {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  max-width: 200px;
  margin: 0 auto;
}

.landing-phone-shot--banner {
  width: 140px;
  flex-shrink: 0;
  aspect-ratio: 9 / 19.5;
  margin: 0 auto;
}

.landing-phone-shot--showcase {
  width: min(100%, 240px);
  flex-shrink: 0;
  aspect-ratio: 9 / 19.5;
}

.landing-phone-shot--insight {
  width: 120px;
  flex-shrink: 0;
  aspect-ratio: 9 / 19.5;
}

.landing-phones__back,
.landing-phones__front {
  display: none;
}

/* Sections */
.landing-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 24px;
}

.landing-section--narrow {
  max-width: 820px;
}

.landing-section__header {
  text-align: center;
  margin-bottom: 40px;
}

.landing-section__header h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  text-align: center;
}

.landing-section__header p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--sanatan-text-muted);
  max-width: 40rem;
  margin: 0 auto;
}

.landing-subheading {
  text-align: center;
  width: 100%;
  margin: 36px 0 24px;
}

.landing-subheading h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 6px;
  text-align: center;
}

.landing-subheading p {
  font-size: 0.92rem;
  color: var(--sanatan-text-muted);
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
}

/* Profile band */
.landing-profile-band {
  border-radius: 20px;
  padding: 28px;
}

.landing-profile-band__layout {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.landing-profile-band__copy {
  flex: 1 1 280px;
  text-align: center;
  max-width: 420px;
}

.landing-profile-band__icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  margin: 0 auto 16px;
  box-shadow: 0 8px 24px rgba(147, 51, 234, 0.4);
}

.landing-profile-band p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  max-width: 36rem;
  margin: 0 auto 20px;
}

.landing-profile-band ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  margin: 0;
  padding: 0;
}

.landing-profile-band li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.landing-profile-band li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--sanatan-ai-start), var(--sanatan-ai-mid));
  color: #fff;
}

/* Feature grid */
.landing-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.landing-feature {
  border-radius: 18px;
  padding: 0 0 20px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.landing-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 180, 254, 0.35);
}

.landing-feature__media {
  overflow: hidden;
  background: #0a0218;
  border-bottom: 1px solid var(--sanatan-frost-border);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.landing-feature__media--screenshot {
  height: 320px;
  padding: 12px 12px 0;
}

.landing-feature__media--screenshot img {
  width: auto;
  max-width: 168px;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  border-radius: 20px 20px 0 0;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-bottom: none;
  box-shadow: 0 -8px 32px rgba(147, 51, 234, 0.25);
}

.landing-feature__media:not(.landing-feature__media--screenshot) img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.landing-feature h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 16px 16px 8px;
  text-align: center;
}

.landing-feature p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--sanatan-text-muted);
  margin: 0 16px 4px;
  text-align: center;
}

/* AI section */
.landing-ai-section {
  padding-top: 24px;
}

#ai-experts .landing-section__header {
  text-align: center;
  width: 100%;
}

#ai-experts .landing-section__header h2,
#ai-experts .landing-section__header p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.landing-ai-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  border-radius: 20px;
  padding: 24px 28px;
  margin-bottom: 8px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.landing-ai-banner__copy {
  width: 100%;
  max-width: 36rem;
  text-align: center;
}

.landing-ai-banner__gif {
  display: none;
}

.landing-ai-banner h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 6px;
  text-align: center;
  width: 100%;
  background: linear-gradient(90deg, #f5f3ff, #e9d5ff, #e879f9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.landing-ai-banner p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--sanatan-text-muted);
  margin: 0 auto;
  max-width: 36rem;
  text-align: center;
}

.landing-sanatan-ai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.landing-sanatan-ai-card {
  border-radius: 16px;
  padding: 14px 14px 16px;
}

.landing-sanatan-ai-card__thumb {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
  background: #0a0218;
  border: 1px solid var(--sanatan-frost-border);
  display: flex;
  justify-content: center;
}

.landing-sanatan-ai-card__thumb--screenshot {
  height: 200px;
  padding: 10px 10px 0;
}

.landing-sanatan-ai-card__thumb--screenshot img {
  width: auto;
  max-width: 108px;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  border-radius: 14px 14px 0 0;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
}

.landing-sanatan-ai-card__thumb:not(.landing-sanatan-ai-card__thumb--screenshot) {
  height: 72px;
}

.landing-sanatan-ai-card__thumb:not(.landing-sanatan-ai-card__thumb--screenshot) img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-sanatan-ai-card__where {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sanatan-cyan);
  margin-bottom: 6px;
}

.landing-sanatan-ai-card h3 {
  font-size: 0.98rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.landing-sanatan-ai-card p {
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--sanatan-text-muted);
  margin: 0;
}

.landing-experts-heading {
  text-align: center;
  width: 100%;
  margin: 8px 0 28px;
}

.landing-experts-heading h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 8px;
  text-align: center;
  width: 100%;
}

.landing-experts-heading p {
  font-size: 0.95rem;
  color: var(--sanatan-text-muted);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.55;
}

.landing-experts-showcase {
  display: flex;
  align-items: center;
  gap: 28px;
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 32px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
  justify-content: center;
}

.landing-experts-showcase__copy {
  flex: 1 1 240px;
}

.landing-experts-showcase__copy p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--sanatan-text-muted);
  margin: 0;
  text-align: center;
}

.landing-screenshot-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.landing-screenshot-gallery__item {
  border-radius: 16px;
  padding: 16px 12px 14px;
  margin: 0;
  text-align: center;
}

.landing-screenshot-gallery__item figcaption {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
}

.landing-experts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.landing-expert-card {
  border-radius: 18px;
  padding: 18px 16px 16px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.landing-expert-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--expert-accent, #a78bfa) 45%, white);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25), 0 0 24px color-mix(in srgb, var(--expert-accent, #9333ea) 25%, transparent);
}

.landing-expert-card__head {
  position: relative;
  width: fit-content;
  margin-bottom: 12px;
}

.landing-expert-card__portrait {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--expert-accent, var(--sanatan-ai-mid));
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.landing-expert-card__badge {
  position: absolute;
  right: -10px;
  bottom: -4px;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--sanatan-theme-2);
  border: 1px solid var(--sanatan-frost-border);
  padding: 4px;
  object-fit: contain;
}

.landing-expert-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.landing-expert-card__title {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  line-height: 1.35;
}

.landing-expert-card__topics {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--sanatan-cyan);
  margin-bottom: 10px;
  line-height: 1.4;
}

.landing-expert-card p {
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--sanatan-text-muted);
  margin: 0;
}

.landing-expert-card__modes {
  margin-top: 12px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
}

.landing-ai-trust {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 12px;
}

.landing-ai-cta {
  text-align: center;
  margin-top: 36px;
}

/* Insight strip */
.landing-insight {
  border-radius: 20px;
  padding: 28px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.landing-insight__art {
  display: none;
}

.landing-insight h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.landing-insight p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--sanatan-text-muted);
  max-width: 32rem;
  margin: 0;
}

.landing-insight__tag {
  display: inline-block;
  margin-top: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--sanatan-cyan);
  background: rgba(128, 222, 234, 0.12);
  border: 1px solid rgba(128, 222, 234, 0.25);
}

/* Download */
.landing-download {
  text-align: center;
  padding: 64px 24px 72px;
  background: linear-gradient(180deg, transparent, rgba(109, 40, 217, 0.22));
}

.landing-download__icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  margin: 0 auto 20px;
  box-shadow: 0 12px 40px rgba(147, 51, 234, 0.45);
}

.landing-download h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.landing-download p {
  color: var(--sanatan-text-muted);
  margin-bottom: 28px;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.landing-download .app-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.landing-download .store-btn {
  height: 50px;
}

/* Contact overrides */
.landing-contact {
  background: transparent !important;
}

.landing-contact .section-title {
  color: #fff;
}

.landing-contact .contact-info,
.landing-contact .contact-form {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 18px;
}

.landing-contact-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  margin-bottom: 12px;
}

.landing-contact .contact-info h3,
.landing-contact .contact-form h3 {
  color: var(--sanatan-ai-end);
}

.landing-contact .contact-form button,
.landing-submit {
  background: linear-gradient(135deg, var(--sanatan-ai-start), var(--sanatan-ai-mid)) !important;
  color: #fff !important;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.landing-checkbox {
  color: #ddd;
  margin-bottom: 10px;
  display: block;
}

.landing-success-msg {
  background-color: var(--sanatan-green);
  color: #120022;
  padding: 15px;
  border-radius: 8px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .landing-page {
    background-attachment: scroll;
    padding-top: 112px;
  }

  body.landing-body header.landing-header .header-container {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
  }

  body.landing-body header.landing-header .logo-section {
    grid-column: 1;
    grid-row: 1;
  }

  body.landing-body header.landing-header .landing-header__actions {
    grid-column: 2;
    grid-row: 1;
  }

  .landing-nav--desktop {
    display: flex !important;
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 14px;
    width: 100%;
    padding: 2px 0 6px;
  }

  .landing-nav--desktop a {
    font-size: 13px;
    white-space: nowrap;
  }

  .landing-nav__mobile-only {
    display: inline;
  }

  .landing-header__stores .store-btn {
    height: 40px;
  }

  .site-title__tagline {
    display: none;
  }

  .site-title h1 {
    font-size: 18px !important;
  }

  .logo-section img {
    width: 38px;
    height: 38px;
  }

  .landing-section {
    padding: 40px 16px;
  }

  .landing-hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 16px 40px;
    text-align: center;
  }

  .landing-hero__copy {
    order: 2;
  }

  .landing-hero__visual {
    order: 1;
    margin-bottom: 12px;
  }

  .landing-hero__lead {
    margin-left: auto;
    margin-right: auto;
  }

  .landing-hero__actions {
    justify-content: center;
  }

  .landing-hero__actions .landing-btn-primary,
  .landing-hero__actions .landing-btn-secondary {
    flex: 1 1 100%;
    max-width: 280px;
    min-height: 48px;
  }

  .landing-phones {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
    width: 100%;
    max-width: 300px;
    height: auto;
    min-height: 0;
    margin: 0 auto;
    padding-bottom: 4px;
  }

  .landing-phone-shot--back,
  .landing-phone-shot--front {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
    width: 46%;
    height: auto;
    aspect-ratio: 9 / 19.5;
    flex-shrink: 0;
  }

  .landing-phone-shot--back {
    display: block;
    opacity: 1;
    order: 2;
    margin-top: 16px;
  }

  .landing-phone-shot--front {
    order: 1;
    width: 50%;
    z-index: 1;
  }

  .landing-screenshot-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .landing-features,
  .landing-sanatan-ai-grid,
  .landing-experts-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .landing-insight {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 20px 16px;
    gap: 16px;
  }

  .landing-insight .landing-btn-primary {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    min-height: 48px;
  }

  .landing-phone-shot--insight {
    margin: 0 auto;
    width: 140px;
  }

  .landing-ai-banner {
    padding: 20px 16px;
    gap: 16px;
  }

  .landing-phone-shot--banner {
    width: 140px;
  }

  .landing-experts-showcase {
    flex-direction: column;
    text-align: center;
    padding: 20px 16px;
  }

  .landing-profile-band {
    padding: 20px 16px;
  }

  .landing-profile-band__layout {
    flex-direction: column;
    gap: 20px;
  }

  .landing-phone-shot--solo {
    width: min(100%, 180px);
    margin: 0 auto;
  }

  .landing-download {
    padding: 48px 16px 56px;
  }

  .landing-download p {
    padding: 0 4px;
  }

  .landing-contact {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .landing-contact .section-title {
    font-size: 1.5rem;
    max-width: 100%;
  }

  .landing-contact .contact-container {
    gap: 20px;
    padding: 0;
  }

  .landing-contact .contact-info,
  .landing-contact .contact-form {
    flex: 1 1 100%;
    min-width: 0;
    padding: 20px 16px !important;
  }

  .landing-contact .contact-form input,
  .landing-contact .contact-form textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .landing-contact .contact-form button,
  .landing-submit {
    width: 100%;
    min-height: 48px;
    padding: 14px !important;
  }

  body.landing-body .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    gap: 8px;
  }

  body.landing-body .footer-column {
    flex: 1 1 auto;
    margin: 12px 0;
    width: 100%;
    max-width: 280px;
  }

  body.landing-body .footer-column .dwnlod {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .landing-ai-cta .landing-btn-primary {
    width: 100%;
    max-width: 320px;
    min-height: 48px;
  }

  .landing-section__header {
    margin-bottom: 28px;
  }

  .landing-section__header p {
    font-size: 0.95rem;
    padding: 0 4px;
  }

  .landing-feature__media--screenshot {
    height: 300px;
  }

  .landing-sanatan-ai-card__thumb--screenshot {
    height: 220px;
  }

  .landing-sanatan-ai-card__thumb--screenshot img {
    max-width: 120px;
  }

  .landing-profile-band ol {
    flex-direction: column;
    align-items: center;
  }

  .landing-legal-page {
    padding: 88px 16px 48px;
  }
}

@media (max-width: 520px) {
  .landing-header__stores .store-btn {
    height: 36px;
  }

  .landing-nav--desktop a {
    font-size: 12px;
  }

  .landing-page {
    padding-top: 118px;
  }

  .landing-phones {
    max-width: 260px;
    gap: 8px;
  }

  .landing-phone-shot--back {
    margin-top: 12px;
  }

  .landing-screenshot-gallery {
    grid-template-columns: 1fr;
  }

  .landing-hero h2 {
    font-size: 1.75rem;
  }

  .landing-hero__actions .store-btn {
    height: 44px;
  }
}

@media (min-width: 769px) and (max-width: 900px) {
  .landing-hero {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 48px;
  }

  .landing-hero__visual {
    order: -1;
    margin-bottom: 12px;
  }

  .landing-phones {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
    width: 100%;
    max-width: 320px;
    height: auto;
    min-height: 0;
    margin: 0 auto;
  }

  .landing-phone-shot--back,
  .landing-phone-shot--front {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
    height: auto;
    aspect-ratio: 9 / 19.5;
    flex-shrink: 0;
  }

  .landing-phone-shot--back {
    display: block;
    opacity: 1;
    order: 2;
    width: 46%;
    margin-top: 16px;
  }

  .landing-phone-shot--front {
    order: 1;
    width: 50%;
    z-index: 1;
  }

  .landing-screenshot-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .landing-features,
  .landing-sanatan-ai-grid,
  .landing-experts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.landing-legal-page {
  padding: 100px 24px 64px;
  max-width: 760px;
  margin: 0 auto;
  min-height: 60vh;
}

.landing-legal-page h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.landing-legal-page h2 {
  font-size: 1.15rem;
  margin: 28px 0 10px;
  color: var(--sanatan-ai-end);
  font-weight: 800;
}

.landing-legal-page p,
.landing-legal-page li {
  line-height: 1.65;
  color: var(--sanatan-text-muted);
  font-size: 15px;
}

.landing-legal-page ul,
.landing-legal-page ol {
  padding-left: 1.25rem;
  margin: 10px 0 16px;
}

.landing-legal-page a {
  color: var(--sanatan-cyan);
}
