:root {
  color-scheme: light;
  --black: #060606;
  --near-black: #111111;
  --charcoal: #1b1b19;
  --ink: #20201d;
  --muted: #706d64;
  --line: rgba(17, 17, 17, 0.12);
  --line-dark: rgba(255, 255, 255, 0.14);
  --white: #ffffff;
  --soft: #f7f3ea;
  --paper: #fffdf8;
  --gold: #f5b82e;
  --gold-strong: #ffca3a;
  --gold-dark: #7a5408;
  --green: #607c67;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.14);
  --radius: 8px;
  --container: min(1160px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.no-scroll {
  overflow: hidden;
}

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

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

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

.skip-link {
  left: 16px;
  position: fixed;
  top: -80px;
  z-index: 100;
  background: var(--gold);
  color: var(--black);
  padding: 10px 14px;
  border-radius: var(--radius);
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.narrow {
  max-width: 860px;
}

.section-dark {
  background:
    linear-gradient(135deg, rgba(245, 184, 46, 0.1), transparent 36%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.07), transparent 26%),
    var(--black);
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 6, 6, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.nav {
  width: var(--container);
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
}

.brand::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-right: 10px;
  background: var(--gold);
  border-radius: 2px;
  box-shadow: 0 0 0 6px rgba(245, 184, 46, 0.12);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.76);
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--black) !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: transparent;
  color: var(--white);
  padding: 11px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

section {
  padding: 104px 0;
}

.hero {
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  padding: 48px 0 58px;
}

.hero-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  align-items: center;
  gap: clamp(34px, 6vw, 74px);
}

.audience,
.eyebrow,
.question-label {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.audience-sub {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
  font-weight: 800;
}

h1,
h2,
h3,
h4 {
  font-family: "Inter", system-ui, sans-serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.85rem, 4.2vw, 4.7rem);
  font-weight: 900;
}

h1 span {
  display: block;
}

h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.3vw, 4.6rem);
  font-weight: 900;
}

h3 {
  margin: 0;
  font-size: 1.24rem;
  font-weight: 900;
}

.hero-symptoms {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--gold-strong);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.35;
}

.hero-support {
  max-width: 640px;
  margin: 20px 0 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  max-width: 100%;
  padding: 0 24px;
  border: 0;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--gold-strong), var(--gold));
  color: var(--black);
  box-shadow: 0 14px 34px rgba(245, 184, 46, 0.2);
  cursor: pointer;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.2;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(245, 184, 46, 0.28);
}

.cta.is-loading,
.nav-cta.is-loading,
.mobile-sticky-cta.is-loading {
  pointer-events: none;
  opacity: 0.86;
}

.trust-line {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-line span {
  color: var(--gold);
  margin: 0 8px;
}

.privacy-copy {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
}

.hero-copy,
.hero-visual {
  min-width: 0;
}

.image-slot {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(245, 184, 46, 0.18), rgba(255, 255, 255, 0.04)),
    #1a1a18;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.image-slot picture {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.image-slot img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.image-placeholder {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-weight: 800;
}

.image-slot.missing .image-placeholder {
  display: flex;
}

.portrait-slot {
  aspect-ratio: 4 / 5;
  min-height: 500px;
  box-shadow: var(--shadow);
}

.portrait-slot img {
  object-position: center top;
}

.visual-note {
  position: absolute;
  right: -16px;
  bottom: 28px;
  width: min(240px, 72%);
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  color: var(--black);
  box-shadow: var(--shadow);
}

.visual-note span {
  display: block;
  color: var(--gold-dark);
  font-weight: 900;
  font-size: 0.8rem;
}

.visual-note strong {
  display: block;
  margin-top: 3px;
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  line-height: 1.05;
}

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

.section-header p:not(.eyebrow) {
  margin: 18px auto 0;
  max-width: 690px;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-dark .section-header p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.dark {
  color: var(--gold-dark);
}

.problem {
  background: var(--soft);
}

.stacked-copy p:not(.eyebrow) {
  margin: 12px 0;
  color: var(--muted);
  font-size: 1.25rem;
  font-weight: 700;
}

.symptom-panel {
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
}

.symptom-grid {
  display: grid;
  gap: 12px;
}

.symptom-card {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 800;
}

.symptom-card span {
  display: block;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.symptom-card p {
  margin: 4px 0 0;
  line-height: 1.35;
}

.question-card {
  margin-top: 16px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--near-black);
  color: var(--white);
}

.question-card span,
.future-question span {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.question-card strong,
.future-question strong {
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.05;
}

.medical .narrow > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.18rem;
}

.foundation-card,
.offer-panel,
.premium-card {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.foundation-card {
  margin-top: 30px;
}

.foundation-card p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.76);
}

.foundation-card strong {
  color: var(--gold);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  line-height: 1.05;
}

.transformations,
.included,
.bonus-section,
.faq,
.why-ratan,
.application,
.bigger-picture {
  background: var(--paper);
}

.featured-grid,
.phase-grid,
.feature-grid,
.testimonial-grid,
.system-factor-grid,
.contrast-grid,
.two-cards {
  display: grid;
  gap: 22px;
}

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

.featured-grid .vikram-card {
  grid-column: span 2;
}

.featured-grid .ratan-card {
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.1);
}

.proof-privacy-note {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 750;
  text-align: center;
}

.supporting-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.transformation-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.08);
}

.transformation-card.featured {
  box-shadow: var(--shadow);
}

.transformation-image {
  aspect-ratio: 1 / 1;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: #171714;
}

.transformation-image img {
  object-fit: contain;
  background: #11110f;
}

.transformation-content {
  padding: 20px;
}

.person-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.person-row p,
.transformation-content p {
  margin: 6px 0 0;
  color: var(--muted);
}

.stat-pill {
  flex: 0 0 auto;
  min-width: 96px;
  min-height: 58px;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--black);
  text-align: center;
}

.stat-pill span,
.stat-pill small {
  display: block;
  font-weight: 900;
  line-height: 1.08;
}

.transformation-content h4 {
  margin: 22px 0 0;
  font-size: 1.52rem;
}

.transformation-content strong {
  display: block;
  margin-top: 18px;
  color: var(--gold-dark);
  font-family: "Inter", sans-serif;
  line-height: 1.15;
}

.center-cta {
  margin-top: 40px;
  text-align: center;
}

.center-cta p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.testimonial-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  max-width: 1040px;
  margin-inline: auto;
}

.testimonial-card {
  grid-column: span 2;
}

.testimonial-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.testimonial-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.testimonial-card {
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.testimonial-card span {
  color: var(--gold);
  font-weight: 900;
}

.testimonial-card small {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 700;
}

.whatsapp-shot {
  min-height: 0;
  margin-top: 14px;
  border-color: rgba(255, 255, 255, 0.12);
  background: #f1eee7;
}

.whatsapp-shot img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.whatsapp-shot picture {
  height: auto;
  min-height: 0;
}

.swipe-cue {
  display: none;
}

.testimonial-disclaimer {
  max-width: 720px;
  margin: 26px auto 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
  font-weight: 750;
  text-align: center;
}

.bridge-copy {
  max-width: 780px;
  margin: -18px auto 34px;
  color: var(--muted);
  font-size: 1.14rem;
  font-weight: 700;
  text-align: center;
}

.system-factor-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.system-factor-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.07);
}

.system-factor-card span {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.system-factor-card h3 {
  margin: 12px 0 0;
  font-size: 1.28rem;
}

.system-factor-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.system-close {
  max-width: 860px;
  margin: 34px auto 0;
  padding: clamp(24px, 4vw, 36px);
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.system-close strong {
  color: var(--gold);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  line-height: 1.05;
}

.system-close p {
  max-width: 700px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
}

.contrast-section {
  background: var(--soft);
}

.contrast-grid {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.approach-card {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.08);
}

.approach-card ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.approach-card li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

.approach-card.foundation {
  background: var(--near-black);
  color: var(--white);
}

.approach-card.foundation p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.35rem;
  font-weight: 800;
}

.factor-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.factor-cloud span {
  padding: 9px 12px;
  border-radius: var(--radius);
  background: rgba(245, 184, 46, 0.15);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.better-question {
  margin: 24px 0;
  padding: 22px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.better-question span {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.better-question p {
  margin: 8px 0 18px !important;
  font-size: 1.05rem !important;
}

.better-question strong {
  display: block;
  margin-top: 8px;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 2.35rem);
  line-height: 1.05;
}

.offer-intro {
  background: linear-gradient(180deg, var(--paper), var(--soft));
}

.offer-panel {
  background: var(--black);
  color: var(--white);
}

.offer-panel p:not(.eyebrow) {
  max-width: 780px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.18rem;
}

.offer-panel h3 {
  max-width: 840px;
  margin: 28px 0 0;
  color: var(--gold);
  font-size: clamp(1.6rem, 3.2vw, 3.15rem);
  line-height: 1.02;
}

.mechanism-line {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  padding: 12px 14px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 900;
}

.mechanism-line span {
  color: var(--gold);
}

.phases {
  background: var(--soft);
}

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

.phase-card,
.feature-card,
.bonus-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07);
}

.phase-card {
  padding: 30px;
}

.phase-card > span,
.feature-card > span {
  color: var(--gold-dark);
  font-family: "Inter", sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
}

.phase-card ul {
  margin: 22px 0;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 700;
}

.outcome {
  margin-top: auto;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--soft);
}

.outcome small {
  color: var(--gold-dark);
  font-weight: 900;
  text-transform: uppercase;
}

.outcome p {
  margin: 5px 0 0;
  font-weight: 800;
}

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

.feature-card {
  padding: 26px;
}

.feature-card:nth-child(1),
.feature-card:nth-child(2),
.feature-card:nth-child(3) {
  grid-column: span 2;
}

.feature-card p,
.bonus-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.feature-card h4 {
  margin: 16px 0 0;
  color: var(--black);
  font-size: 1.18rem;
  line-height: 1.15;
}

.included-close {
  max-width: 720px;
  margin: 34px auto 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--black);
  color: var(--gold);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.35rem, 3vw, 2.25rem);
  font-weight: 900;
  line-height: 1.12;
  text-align: center;
}

.bonus-wrap {
  margin-top: 84px;
}

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

.bonus-card {
  padding: 22px;
}

.bonus-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: var(--radius);
  background: rgba(245, 184, 46, 0.14);
}

.future-panel {
  text-align: center;
}

.future-lines {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 36px 0;
}

.future-lines p {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.future-question {
  max-width: 720px;
  margin: 0 auto 28px;
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.future-panel > p {
  color: rgba(255, 255, 255, 0.74);
}

.future-panel h3 {
  margin: 22px 0 28px;
  color: var(--gold);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.ratan-story-grid {
  background: transparent;
}

.ratan-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  align-items: center;
  gap: clamp(34px, 6vw, 74px);
}

.ratan-transformation-image {
  aspect-ratio: 1 / 1;
  min-height: 0;
  box-shadow: var(--shadow);
}

.ratan-transformation-image img {
  object-fit: contain;
  background: #11110f;
}

.ratan-copy .credential-block {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.ratan-copy .credential-block span {
  padding: 9px 11px;
  border: 1px solid rgba(122, 84, 8, 0.26);
  border-radius: var(--radius);
  background: rgba(245, 184, 46, 0.13);
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.2;
}

.ratan-copy .credential-block small {
  flex-basis: 100%;
  color: var(--muted);
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ratan-copy p,
.ratan-copy li {
  color: var(--muted);
  font-size: 1.08rem;
}

.ratan-copy ul {
  margin: 0 0 20px;
  padding-left: 20px;
}

.ratan-copy strong {
  color: var(--black);
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
}

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

.premium-card p {
  color: rgba(255, 255, 255, 0.76);
}

.premium-card small {
  display: block;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 800;
}

.premium-card strong {
  display: block;
  margin: 18px 0;
  color: var(--gold);
  font-weight: 900;
  line-height: 1.35;
}

.private-strip {
  display: inline-flex;
  margin-top: 20px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--gold);
  font-weight: 900;
}

.application-cta-panel {
  padding: clamp(28px, 6vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.application-cta-panel p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.application-cta-panel .private-strip {
  margin: 24px auto;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.05);
}

.faq-item summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 900;
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.final-cta {
  text-align: center;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.1rem;
}

.final-cta h3 {
  max-width: 820px;
  margin: 28px auto;
  color: var(--gold);
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.final-cta small {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 900;
}

.footer {
  padding: 44px 0 98px;
  background: var(--black);
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid var(--line-dark);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 26px;
}

.footer strong {
  color: var(--white);
  font-family: "Inter", sans-serif;
}

.footer p {
  margin: 7px 0 0;
}

.footer nav {
  display: flex;
  gap: 18px;
  font-weight: 800;
}

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

.legal-page {
  min-height: 100vh;
  background: var(--black);
  color: var(--white);
}

.legal-shell {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0;
}

.legal-brand {
  margin-bottom: 54px;
}

.legal-shell h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
}

.legal-shell p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.legal-shell a:not(.brand):not(.cta) {
  color: var(--gold);
  font-weight: 800;
}

.disclaimer {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

.mobile-sticky-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

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

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

  .reveal,
  .cta {
    transition: none;
  }
}

@media (max-width: 1080px) {
  .featured-grid,
  .testimonial-grid,
  .supporting-grid,
  .system-factor-grid,
  .bonus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-card,
  .testimonial-card:nth-child(4),
  .testimonial-card:nth-child(5) {
    grid-column: auto;
  }

  .featured-grid .vikram-card {
    grid-column: span 2;
  }

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

  .feature-card:nth-child(1),
  .feature-card:nth-child(2),
  .feature-card:nth-child(3) {
    grid-column: auto;
  }

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

@media (max-width: 860px) {
  :root {
    --container: min(720px, calc(100% - 28px));
  }

  section {
    padding: 76px 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    background: rgba(6, 6, 6, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 12px;
  }

  .hero-grid,
  .split,
  .ratan-story-grid,
  .system-factor-grid,
  .contrast-grid,
  .two-cards {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .portrait-slot {
    min-height: 360px;
  }

  .visual-note {
    right: 14px;
  }

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

  .footer-grid {
    flex-direction: column;
  }

  .footer nav {
    flex-wrap: wrap;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 14px;
    background: linear-gradient(180deg, var(--gold-strong), var(--gold));
    color: var(--black);
    box-shadow: 0 -14px 32px rgba(0, 0, 0, 0.18);
    font-size: 0.86rem;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
  }
}

@media (max-width: 620px) {
  .nav {
    min-height: 68px;
  }

  h1 {
    font-size: clamp(2.2rem, 10vw, 2.6rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .cta {
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
    font-size: 0.86rem;
  }

  .trust-line {
    line-height: 1.7;
  }

  .featured-grid,
  .bonus-grid,
  .feature-grid,
  .future-lines {
    grid-template-columns: 1fr;
  }

  .bridge-copy {
    margin: -8px auto 24px;
    font-size: 1.02rem;
  }

  .system-factor-card,
  .feature-card {
    padding: 20px;
  }

  .system-close {
    margin-top: 24px;
    text-align: left;
  }

  .offer-panel h3 {
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .mechanism-line {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .carousel-mobile {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(286px, 84%);
    grid-template-columns: none;
    gap: 14px;
    width: 100%;
    min-width: 0;
    padding: 0 0 10px;
    overflow-x: auto;
    contain: layout paint;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .carousel-mobile > * {
    grid-column: auto;
    scroll-snap-align: start;
  }

  .swipe-cue {
    display: block;
    margin: 10px 0 0;
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .section-dark .swipe-cue {
    color: var(--gold);
  }

  .featured-grid .vikram-card {
    grid-column: auto;
  }

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

  .person-row {
    flex-direction: column;
  }

  .stat-pill {
    width: 100%;
  }

  .visual-note {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .portrait-slot {
    min-height: 300px;
  }

  .hero-visual {
    display: none;
  }

  .ratan-transformation-image {
    min-height: 0;
  }

  .footer {
    padding-bottom: 116px;
  }
}
