:root {
  --ivory: #fbf7f0;
  --ivory-2: #f3eadf;
  --champagne: #e8d1b7;
  --nude: #d5aa96;
  --rose: #bd8275;
  --sage: #b8c5b5;
  --ink: #2b2926;
  --muted: #746a62;
  --line: rgba(72, 57, 48, 0.13);
  --glass: rgba(255, 250, 244, 0.74);
  --shadow: 0 28px 90px rgba(88, 61, 43, 0.16);
  --soft: 0 18px 54px rgba(87, 67, 52, 0.11);
  --radius: 22px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(213,170,150,0.28), transparent 34rem),
    linear-gradient(180deg, #fffaf3 0%, var(--ivory) 44%, #f4eadf 100%);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.demo-loader {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 24px;
  padding: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 44%, rgba(45,212,191,0.16), transparent 30%),
    radial-gradient(circle at 20% 18%, rgba(62,207,142,0.10), transparent 36%),
    radial-gradient(circle at 80% 70%, rgba(80,175,255,0.08), transparent 34%),
    radial-gradient(ellipse at 50% 110%, rgba(10,42,62,0.48), transparent 58%),
    linear-gradient(145deg, #00030b 0%, #020817 46%, #03111f 100%);
  color: #ffffff;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.demo-loader::before,
.demo-loader::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.demo-loader::before {
  background-image:
    linear-gradient(rgba(130,255,240,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(130,255,240,0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 72%);
}

.demo-loader::after {
  background:
    radial-gradient(circle at 38% 39%, rgba(130,255,240,0.35) 0 2px, transparent 3px),
    radial-gradient(circle at 61% 57%, rgba(62,207,142,0.28) 0 2px, transparent 3px),
    radial-gradient(circle at 48% 66%, rgba(255,255,255,0.24) 0 1px, transparent 2px);
  background-size: 180px 180px, 220px 220px, 150px 150px;
  animation: demoLoaderStars 3.2s linear infinite;
  opacity: 0.65;
}

.demo-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.demo-loader-mark {
  position: relative;
  z-index: 1;
  width: 124px;
  height: 124px;
  display: grid;
  place-items: center;
}

.demo-loader-mark img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(130,255,240,0.36));
  animation: demoLoaderFloat 2.8s ease-in-out infinite;
}

.demo-loader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(130,255,240,0.22);
}

.demo-loader-ring--outer {
  background:
    conic-gradient(from 90deg, transparent 0 24%, rgba(130,255,240,0.94) 25%, transparent 34% 100%);
  mask: radial-gradient(circle, transparent 58%, black 60%);
  animation: demoLoaderSpin 1.6s linear infinite;
}

.demo-loader-ring--inner {
  inset: 18px;
  border-color: rgba(62,207,142,0.28);
  background:
    conic-gradient(from 270deg, transparent 0 48%, rgba(62,207,142,0.78) 50%, transparent 62% 100%);
  mask: radial-gradient(circle, transparent 56%, black 58%);
  animation: demoLoaderSpinReverse 2.2s linear infinite;
}

.demo-loader-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  text-align: center;
}

.demo-loader-copy strong {
  color: #ffffff;
  font-family: var(--sans);
  font-size: clamp(1.15rem, 3vw, 1.55rem);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.demo-loader-copy span {
  color: rgba(255,255,255,0.64);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.demo-loader-track {
  position: relative;
  z-index: 1;
  width: min(280px, 72vw);
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.11);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 0 28px rgba(45,212,191,0.16);
}

.demo-loader-track span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, #82fff0, #3ecf8e, transparent);
  animation: demoLoaderTrack 1.25s ease-in-out infinite;
}

@keyframes demoLoaderSpin { to { transform: rotate(1turn); } }
@keyframes demoLoaderSpinReverse { to { transform: rotate(-1turn); } }
@keyframes demoLoaderFloat { 50% { transform: translateY(-6px) scale(1.03); } }
@keyframes demoLoaderStars { to { background-position: 180px 180px, -220px 220px, 150px -150px; } }
@keyframes demoLoaderTrack {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(250%); }
}

body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
:focus-visible { outline: 3px solid rgba(189,130,117,0.72); outline-offset: 4px; }
.container { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }
.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
}
.skip-link:focus { top: 14px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(251,247,240,0.84);
  border-color: var(--line);
  box-shadow: 0 16px 48px rgba(68, 49, 36, 0.08);
  backdrop-filter: blur(20px);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fffaf4;
  background: linear-gradient(145deg, var(--ink), #5f4c42);
  font-size: .78rem;
  letter-spacing: .08em;
  box-shadow: 0 12px 28px rgba(43,41,38,0.18);
}
.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(43,41,38,0.72);
  font-size: .9rem;
  font-weight: 700;
}
.nav a { transition: color .2s ease, transform .2s ease; }
.nav a:hover { color: var(--ink); transform: translateY(-1px); }
.nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid rgba(189,130,117,0.28);
  border-radius: 999px;
  color: var(--ink);
  background: linear-gradient(135deg, rgba(255,255,255,0.74), rgba(232,209,183,0.46));
  box-shadow: 0 12px 32px rgba(189,130,117,0.14);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,250,244,0.78);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--ink);
  transition: transform .22s ease, opacity .22s ease;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  padding: 72px 0 92px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 16%, rgba(232,209,183,0.62), transparent 28rem),
    radial-gradient(circle at 18% 72%, rgba(184,197,181,0.36), transparent 24rem),
    linear-gradient(135deg, rgba(255,250,244,0.92), rgba(243,234,223,0.82));
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(480px, 1.12fr);
  align-items: center;
  gap: 58px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--rose);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: .98;
  letter-spacing: 0;
}
h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5.8vw, 5.6rem);
}
h2 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 4.8vw, 4.8rem);
}
h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.2;
}
.hero-copy p,
.section-head p,
.results-copy p,
.editorial-copy p,
.experience-copy p,
.faq-intro p,
.cta-panel p {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
}
.hero-copy p { max-width: 580px; margin-bottom: 30px; font-size: clamp(.96rem, 1.22vw, 1.04rem); }
.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fffaf4;
  background: linear-gradient(135deg, #2f2c28, #8d6257);
  box-shadow: 0 18px 44px rgba(92,62,52,0.22);
}
.btn-secondary {
  color: var(--ink);
  background: rgba(255,250,244,0.62);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(96,73,56,0.08);
}

.hero-visual {
  position: relative;
  min-height: 640px;
}
.hero-main-card,
.hero-secondary-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #efe1d2;
  box-shadow: var(--shadow);
}
.hero-main-card {
  right: 0;
  top: 0;
  width: min(82%, 560px);
  height: 620px;
  border-radius: 44px 44px 180px 44px;
  padding: 12px;
}
.hero-main-card::after,
.results-image::after,
.portrait-wrap::after,
.experience-image::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,0.46);
  border-radius: inherit;
  pointer-events: none;
}
.hero-main-card img,
.hero-secondary-card img,
.results-image img,
.portrait-wrap img,
.experience-image img,
.treatment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-main-card img {
  object-position: 68% center;
}
.hero-secondary-card {
  left: 0;
  bottom: 34px;
  width: 270px;
  height: 360px;
  border: 10px solid rgba(255,250,244,0.82);
  border-radius: 150px 150px 24px 24px;
}
.floating-note,
.benefit-strip {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255,255,255,0.52);
  background: rgba(255,250,244,0.78);
  box-shadow: var(--soft);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.floating-note {
  display: grid;
  gap: 2px;
  max-width: 232px;
  padding: 16px 18px;
  border-radius: 20px;
}
.floating-note strong { font-size: .92rem; }
.floating-note span { color: var(--muted); font-size: .82rem; }
.note-one { right: -10px; top: 420px; }
.note-two { left: 86px; top: 460px; }
.benefit-strip {
  right: 34px;
  bottom: 42px;
  display: flex;
  gap: 10px;
  padding: 12px;
  border-radius: 999px;
}
.benefit-strip span {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(232,209,183,0.46);
  font-size: .78rem;
  font-weight: 850;
}

.section { padding: 104px 0; }
.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}
.section-head.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head.centered .eyebrow { justify-content: center; }
.treatment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.treatment-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.62);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,250,244,0.78), rgba(242,229,217,0.78));
  box-shadow: var(--soft);
  transition: transform .22s ease, box-shadow .22s ease;
}
.treatment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 76px rgba(94, 69, 52, 0.16);
}
.treatment-card img {
  height: 255px;
  border-bottom: 1px solid rgba(72, 57, 48, 0.08);
}
.card-body { padding: 22px; }
.badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #704d45;
  background: rgba(232,209,183,0.62);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.card-body p { color: var(--muted); font-size: .94rem; }
.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.card-foot span { color: var(--muted); font-weight: 800; }
.card-foot a { color: #7f554d; font-weight: 900; }

.results {
  background:
    linear-gradient(135deg, rgba(232,209,183,0.33), rgba(184,197,181,0.18)),
    rgba(255,250,244,0.36);
}
.results-grid,
.split-grid,
.faq-grid {
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  align-items: center;
  gap: 58px;
}
.results-image,
.portrait-wrap,
.experience-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
}
.results-image { height: 560px; border-radius: 42px 42px 42px 140px; }
.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,250,244,0.62);
  font-weight: 850;
}
.check-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 6px rgba(189,130,117,0.12);
}

.process {
  background: linear-gradient(180deg, rgba(255,250,244,0.18), rgba(232,209,183,0.24));
}
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 38px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(189,130,117,0.44), transparent);
}
.step-card {
  position: relative;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,250,244,0.68);
  box-shadow: var(--soft);
}
.step-card span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  color: #fffaf4;
  background: linear-gradient(145deg, var(--rose), #6d5147);
  font-family: var(--serif);
  font-size: 1.1rem;
}
.step-card p { color: var(--muted); margin-bottom: 0; }

.portrait-wrap {
  height: 640px;
  border-radius: 180px 180px 34px 34px;
}
.editorial-copy { max-width: 620px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.trust-grid span {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,250,244,0.62);
  font-weight: 850;
}

.experience-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: stretch;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.62);
  border-radius: 38px;
  background:
    radial-gradient(circle at 12% 0%, rgba(232,209,183,0.54), transparent 22rem),
    linear-gradient(135deg, rgba(255,250,244,0.76), rgba(235,220,205,0.64));
  box-shadow: var(--shadow);
}
.experience-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 8px 26px 18px;
}
.experience-image { min-height: 520px; border-radius: 30px; }
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.pill-list li {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,250,244,0.64);
  font-size: .88rem;
  font-weight: 850;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.testimonial-card {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,250,244,0.68);
  box-shadow: var(--soft);
}
.testimonial-card span { color: #b78358; letter-spacing: .1em; }
.testimonial-card p {
  color: #4a4039;
  font-family: var(--serif);
  font-size: 1.28rem;
  line-height: 1.35;
}
.testimonial-card strong { color: var(--muted); }

.faq {
  background:
    radial-gradient(circle at 80% 20%, rgba(184,197,181,0.28), transparent 24rem),
    linear-gradient(180deg, rgba(245,236,225,0.44), rgba(255,250,244,0.22));
}
.faq-grid { align-items: start; }
.faq-list {
  display: grid;
  gap: 12px;
}
details {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,250,244,0.72);
  box-shadow: 0 10px 28px rgba(88, 61, 43, 0.07);
  overflow: hidden;
}
summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 900;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  float: right;
  color: var(--rose);
}
details[open] summary::after { content: "-"; }
details p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

.final-cta { padding: 28px 0 104px; }
.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 7vw, 82px);
  border: 1px solid rgba(255,255,255,0.62);
  border-radius: 42px;
  background:
    radial-gradient(circle at 86% 16%, rgba(255,250,244,0.76), transparent 18rem),
    linear-gradient(135deg, #e8d1b7, #cfa293 58%, #f6ebdf);
  box-shadow: var(--shadow);
}
.cta-panel::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255,255,255,0.42);
  border-radius: 50%;
}
.cta-panel h2,
.cta-panel p,
.cta-panel .eyebrow,
.cta-panel .cta-actions { position: relative; z-index: 1; }
.cta-panel h2 { max-width: 760px; }
.cta-panel p { max-width: 610px; color: rgba(43,41,38,0.78); }

.footer {
  padding: 56px 0;
  color: rgba(255,250,244,0.76);
  background: #2b2926;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .9fr .9fr .7fr;
  gap: 28px;
}
.footer strong,
.footer span {
  display: block;
  margin-bottom: 12px;
  color: #fffaf4;
  font-weight: 900;
}
.footer p { margin: 0; color: rgba(255,250,244,0.62); }
.footer nav {
  display: grid;
  gap: 9px;
}
.footer a { color: rgba(255,250,244,0.72); }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .hero-grid,
  .results-grid,
  .split-grid,
  .faq-grid,
  .experience-panel {
    grid-template-columns: 1fr;
  }
  .hero-grid { gap: 34px; }
  .hero-visual { min-height: 580px; }
  .treatment-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .timeline::before { display: none; }
  .portrait-wrap { max-width: 620px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 32px), var(--max)); }
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 86px;
    display: grid;
    gap: 6px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(251,247,240,0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .nav.is-open {
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 14px;
  }
  .nav-cta { justify-content: center; margin-top: 6px; }
  .hero { padding-top: 42px; }
  .hero-visual { min-height: 500px; }
  .hero-main-card {
    width: 82%;
    height: 480px;
    border-radius: 32px 32px 120px 32px;
  }
  .hero-secondary-card {
    width: 210px;
    height: 280px;
  }
  .note-one { right: 8px; top: 300px; }
  .note-two { left: 26px; top: 360px; }
  .benefit-strip {
    left: 16px;
    right: auto;
    bottom: 8px;
    border-radius: 22px;
    flex-wrap: wrap;
  }
  .section { padding: 78px 0; }
  .results-image,
  .portrait-wrap,
  .experience-image {
    height: 460px;
  }
  .experience-panel { padding: 18px; border-radius: 30px; }
  .experience-copy { padding: 18px 4px; }
}

@media (max-width: 620px) {
  .header-inner { min-height: 68px; }
  .brand { font-size: .94rem; }
  .brand-mark { width: 38px; height: 38px; }
  h1 { font-size: clamp(2.25rem, 11.5vw, 3.35rem); }
  h2 { font-size: clamp(2rem, 11vw, 3.25rem); }
  .hero-copy p { font-size: .96rem; }
  .hero-actions,
  .cta-actions {
    display: grid;
  }
  .btn { width: 100%; }
  .hero-visual { min-height: 430px; }
  .hero-main-card {
    width: 88%;
    height: 386px;
    padding: 8px;
  }

  .hero-main-card img {
    object-position: 72% center;
  }
  .hero-secondary-card {
    width: 150px;
    height: 210px;
    border-width: 7px;
    bottom: 42px;
  }
  .floating-note {
    max-width: 190px;
    padding: 12px 14px;
  }
  .floating-note span { display: none; }
  .note-one { top: 252px; }
  .note-two { top: 302px; left: 18px; }
  .benefit-strip { display: none; }
  .treatment-grid,
  .timeline,
  .testimonial-grid,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .treatment-card img { height: 232px; }
  .results-image,
  .portrait-wrap,
  .experience-image {
    height: 360px;
    border-radius: 26px;
  }
  .portrait-wrap { border-radius: 130px 130px 28px 28px; }
  .testimonial-card { min-height: 0; }
  .testimonial-card p { font-size: 1.14rem; }
  .cta-panel { border-radius: 30px; }
}

@media (max-width: 380px) {
  .container { width: min(calc(100% - 24px), var(--max)); }
  .hero-main-card { height: 350px; }
  .hero-secondary-card { width: 136px; height: 190px; }
  .note-two { top: 282px; }
  .card-body,
  .step-card,
  .testimonial-card { padding: 20px; }
}
/* Unified LineUp loader */
.demo-loader,
.sequence-loader {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 24px;
  padding: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 44%, rgba(45,212,191,0.16), transparent 30%),
    radial-gradient(circle at 20% 18%, rgba(62,207,142,0.10), transparent 36%),
    radial-gradient(circle at 80% 70%, rgba(80,175,255,0.08), transparent 34%),
    radial-gradient(ellipse at 50% 110%, rgba(10,42,62,0.48), transparent 58%),
    linear-gradient(145deg, #00030b 0%, #020817 46%, #03111f 100%);
  color: #ffffff;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.demo-loader::before,
.demo-loader::after,
.sequence-loader::before,
.sequence-loader::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.demo-loader::before,
.sequence-loader::before {
  background-image:
    linear-gradient(rgba(130,255,240,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(130,255,240,0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 72%);
}

.demo-loader::after,
.sequence-loader::after {
  background:
    radial-gradient(circle at 38% 39%, rgba(130,255,240,0.38) 0 1px, transparent 2px),
    radial-gradient(circle at 61% 57%, rgba(62,207,142,0.30) 0 1.4px, transparent 2.4px),
    radial-gradient(circle at 48% 66%, rgba(255,255,255,0.28) 0 1px, transparent 2px),
    radial-gradient(circle at 22% 76%, rgba(170,205,255,0.34) 0 1px, transparent 2px);
  background-size: 180px 180px, 220px 220px, 150px 150px, 280px 260px;
  animation: demoLoaderStars 3.2s linear infinite;
  opacity: 0.74;
}

.demo-loader.is-hidden,
.sequence-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.demo-loader-mark {
  position: relative;
  z-index: 1;
  width: 124px;
  height: 124px;
  display: grid;
  place-items: center;
}

.demo-loader-mark img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(130,255,240,0.36));
  animation: demoLoaderFloat 2.8s ease-in-out infinite;
}

.demo-loader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(130,255,240,0.22);
}

.demo-loader-ring--outer {
  background:
    conic-gradient(from 90deg, transparent 0 24%, rgba(130,255,240,0.94) 25%, transparent 34% 100%);
  mask: radial-gradient(circle, transparent 58%, black 60%);
  -webkit-mask: radial-gradient(circle, transparent 58%, black 60%);
  animation: demoLoaderSpin 1.6s linear infinite;
}

.demo-loader-ring--inner {
  inset: 18px;
  border-color: rgba(62,207,142,0.28);
  background:
    conic-gradient(from 270deg, transparent 0 48%, rgba(62,207,142,0.78) 50%, transparent 62% 100%);
  mask: radial-gradient(circle, transparent 56%, black 58%);
  -webkit-mask: radial-gradient(circle, transparent 56%, black 58%);
  animation: demoLoaderSpinReverse 2.2s linear infinite;
}

.demo-loader-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  text-align: center;
}

.demo-loader-copy strong,
.sequence-loader .demo-loader-copy strong {
  color: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.15rem, 3vw, 1.55rem);
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.demo-loader-copy span,
.sequence-loader .demo-loader-copy span {
  color: rgba(255,255,255,0.64);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.demo-loader-track {
  position: relative;
  z-index: 1;
  width: min(280px, 72vw);
  height: 5px;
  overflow: visible;
  border-radius: 999px;
  background: rgba(255,255,255,0.11);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 0 28px rgba(45,212,191,0.16);
}

.demo-loader-track span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, #82fff0, #3ecf8e, transparent);
  animation: demoLoaderTrack 1.25s ease-in-out infinite;
}

.sequence-loader .demo-loader-track i {
  display: none;
}

@keyframes demoLoaderStars { to { background-position: 180px 180px, -220px 220px, 150px -150px, 280px -260px; } }
@keyframes demoLoaderTrack {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(250%); }
}

@media (prefers-reduced-motion: reduce) {
  .demo-loader::after,
  .sequence-loader::after,
  .demo-loader-mark img,
  .demo-loader-ring--outer,
  .demo-loader-ring--inner,
  .demo-loader-track span {
    animation: none;
  }
}
