/* QLT Homepage — premium personal-brand site */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--fg-2);
  background: var(--bg-1);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

/* ---------- Layout ---------- */
.wrap { width: min(1280px, 100% - 48px); margin: 0 auto; }
.wrap-narrow { width: min(960px, 100% - 48px); margin: 0 auto; }
.wrap-prose  { width: min(720px, 100% - 32px); margin: 0 auto; }

/* ---------- Header ---------- */
.qlt-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 18px 0;
  transition: padding 350ms var(--ease-quiet),
              background-color 350ms var(--ease-quiet),
              backdrop-filter 350ms var(--ease-quiet),
              box-shadow 350ms var(--ease-quiet);
}
.qlt-header.shrunk {
  padding: 10px 0;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  box-shadow: 0 1px 0 rgba(0,128,128,0.06);
}
.qlt-header .inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.qlt-header .brand img { height: 38px; transition: height 350ms var(--ease-quiet); }
.qlt-header.shrunk .brand img { height: 30px; }
.qlt-header nav {
  display: flex; align-items: center; gap: 4px;
}
.qlt-header nav a {
  font-size: 14px; font-weight: 500; color: var(--fg-2);
  padding: 10px 14px; border-radius: 999px;
  transition: color 200ms var(--ease-quiet), background 200ms var(--ease-quiet);
}
.qlt-header nav a:hover { color: var(--qlt-teal-700); background: rgba(0,128,128,0.06); }
.qlt-header nav a.cta {
  margin-left: 8px; padding: 11px 22px;
  background: var(--qlt-teal-700); color: #fff;
  font-weight: 600;
}
.qlt-header nav a.cta:hover { background: var(--qlt-teal-900); }
.menu-btn { display: none; padding: 8px; border-radius: 8px; }
@media (max-width: 880px) {
  .qlt-header nav { display: none; }
  .menu-btn { display: inline-flex; }
  .qlt-header nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 24px; right: 24px;
    background: #fff; padding: 12px;
    border-radius: 16px;
    box-shadow: var(--shadow-3);
    align-items: stretch;
  }
  .qlt-header nav.open a { padding: 14px 18px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 12px;
  font-size: 15px; font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 200ms var(--ease-quiet),
              background 200ms var(--ease-quiet),
              color 200ms var(--ease-quiet),
              box-shadow 200ms var(--ease-quiet);
  cursor: pointer;
}
.btn .arr { transition: transform 250ms var(--ease-quiet); }
.btn:hover .arr { transform: translateX(4px); }
.btn-primary {
  background: var(--qlt-teal-700);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,128,128,0.18);
}
.btn-primary:hover { background: var(--qlt-teal-900); box-shadow: 0 12px 32px rgba(0,128,128,0.26); }
.btn-secondary {
  background: transparent; color: var(--qlt-teal-700);
  box-shadow: inset 0 0 0 1.5px var(--qlt-teal);
}
.btn-secondary:hover { background: rgba(0,180,180,0.08); }
.btn-ghost {
  background: transparent; color: var(--qlt-teal-700);
  padding: 10px 0; gap: 8px;
}
.btn-ghost:hover { color: var(--qlt-teal-900); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--qlt-teal-700);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--qlt-teal); display: inline-block;
}
.eyebrow .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--qlt-teal); display: inline-block;
  position: relative;
}
.eyebrow .pulse::after {
  content: ""; position: absolute; inset: -4px;
  border-radius: 50%; border: 1.5px solid var(--qlt-teal);
  animation: pulse-ring 2.4s var(--ease-quiet) infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 800ms var(--ease-quiet), transform 800ms var(--ease-quiet);
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 168px 0 96px;
  overflow: hidden;
  background: var(--bg-1);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(46px, 6.4vw, 92px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--qlt-teal-700);
  margin: 24px 0 28px;
  text-wrap: balance;
}
.hero h1 .accent {
  font-style: italic; font-weight: 500;
  color: var(--qlt-charcoal);
  position: relative;
}
.hero h1 .accent::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: 0.06em;
  height: 0.18em;
  background: linear-gradient(180deg, transparent 60%, rgba(0,180,180,0.22) 60%);
  z-index: -1;
}
.hero .lead {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55; color: var(--fg-2);
  max-width: 560px;
  margin-bottom: 36px;
  text-wrap: pretty;
}
.hero .ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }
.hero .creds {
  display: flex; flex-wrap: wrap; gap: 18px 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border-1);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-3);
}
.hero .creds span { display: flex; align-items: center; gap: 10px; }
.hero .creds span:not(:last-child)::after {
  content: ""; width: 4px; height: 4px;
  background: var(--qlt-teal); border-radius: 50%;
  margin-left: 22px;
}
.hero .creds span:last-child { color: var(--qlt-teal-700); }

.hero-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--qlt-teal-100) 0%, var(--qlt-cream) 60%, #fff 100%);
  box-shadow: 0 30px 80px rgba(0,80,80,0.14), 0 8px 24px rgba(0,80,80,0.08);
}
.hero-portrait .frame-mark {
  position: absolute; top: 24px; right: 24px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--qlt-teal-700);
  background: rgba(255,255,255,0.7);
  padding: 8px 12px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}
.hero-portrait .corner-3dot {
  position: absolute; bottom: 24px; left: 24px;
  display: flex; gap: 6px;
}
.hero-portrait .corner-3dot i {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--qlt-teal);
}
.hero-portrait image-slot {
  width: 100%; height: 100%;
  display: block;
}
.hero-currently {
  position: absolute; bottom: -20px; left: -20px;
  background: #fff; padding: 18px 22px;
  border-radius: 16px;
  box-shadow: var(--shadow-3);
  display: flex; align-items: center; gap: 14px;
  max-width: 280px;
}
.hero-currently .ring {
  width: 36px; height: 36px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--qlt-teal-300), var(--qlt-teal-700));
  position: relative; flex-shrink: 0;
}
.hero-currently .ring::after {
  content: ""; position: absolute; inset: 4px;
  border-radius: 50%;
  background: #fff;
}
.hero-currently .ring::before {
  content: ""; position: absolute; inset: -3px;
  border-radius: 50%;
  border: 1.5px solid var(--qlt-teal);
  opacity: 0.4;
  animation: pulse-ring 2.4s var(--ease-quiet) infinite;
}
.hero-currently h6 { margin: 0 0 2px; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--qlt-teal-700); }
.hero-currently p { margin: 0; font-size: 13px; line-height: 1.4; color: var(--fg-2); }

.hero-bg {
  position: absolute; pointer-events: none;
  inset: 0; z-index: -1;
}
.hero-bg::before, .hero-bg::after {
  content: ""; position: absolute;
  border-radius: 50%; filter: blur(80px);
  opacity: 0.5;
}
.hero-bg::before {
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--qlt-teal-200) 0%, transparent 60%);
  top: -120px; right: -120px;
}
.hero-bg::after {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--qlt-teal-100) 0%, transparent 60%);
  bottom: -200px; left: -150px;
}

@media (max-width: 980px) {
  .hero { padding: 136px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-portrait { max-width: 480px; margin: 0 auto; }
  .hero-currently { left: 0; }
}

/* ---------- AUTHORITY ---------- */
.authority {
  padding: 56px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
}
.authority .label {
  text-align: center;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg-4);
  margin-bottom: 32px;
}
.authority-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  align-items: center;
}
.authority-grid .stat {
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid var(--border-1);
}
.authority-grid .stat:last-child { border-right: 0; }
.authority-grid .num {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  color: var(--qlt-teal-700);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.authority-grid .desc {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--fg-3);
  line-height: 1.4;
}
@media (max-width: 880px) {
  .authority-grid { grid-template-columns: repeat(2, 1fr); }
  .authority-grid .stat { border-right: 0; padding: 12px; }
}

/* ---------- SECTION SCAFFOLD ---------- */
section.bleed { padding: 128px 0; position: relative; }
section.bleed.compact { padding: 96px 0; }
section.bleed.tight { padding: 72px 0; }
section.tinted { background: var(--qlt-teal-50); }
section.tinted-deeper { background: var(--qlt-teal-100); }
section.dark { background: var(--qlt-teal-700); color: #fff; }
section.dark h2 { color: #fff !important; }
section.cream { background: var(--qlt-cream); }

.section-head { max-width: 800px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 60px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.022em;
  color: var(--qlt-teal-700);
  margin: 16px 0 20px;
  text-wrap: balance;
}
.section-head h2 em { font-style: italic; font-weight: 500; color: var(--qlt-charcoal); }
.section-head .lead {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55; color: var(--fg-2);
  text-wrap: pretty;
}
section.dark .section-head h2 { color: #fff; }
section.dark .section-head h2 em { color: var(--qlt-teal-200); }
section.dark .section-head .lead { color: rgba(255,255,255,0.85); }
section.dark .eyebrow { color: var(--qlt-teal-200); }
section.dark .eyebrow .dot, section.dark .eyebrow .pulse { background: var(--qlt-teal-200); }

/* ---------- FRAMEWORK (interactive) ---------- */
.framework-shell {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.framework-steps {
  display: flex; flex-direction: column;
  gap: 12px;
}
.fw-step {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 28px 28px 28px 88px;
  cursor: pointer;
  transition: all 350ms var(--ease-quiet);
  border: 1px solid var(--border-1);
}
.fw-step::before {
  content: ""; position: absolute;
  left: 28px; top: 28px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--qlt-teal-100);
  transition: all 350ms var(--ease-quiet);
}
.fw-step .num {
  position: absolute; left: 28px; top: 28px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  color: var(--qlt-teal-700);
  letter-spacing: 0.04em;
  z-index: 1;
}
.fw-step h3 {
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--qlt-teal-700);
  margin: 4px 0;
  transition: color 250ms var(--ease-quiet);
}
.fw-step .summary {
  font-size: 14px; color: var(--fg-3); line-height: 1.5;
  margin: 4px 0 0;
}
.fw-step .detail {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 450ms var(--ease-quiet),
              margin 450ms var(--ease-quiet);
  margin-top: 0;
}
.fw-step .detail-inner { overflow: hidden; }
.fw-step .detail-inner > * { transform: translateY(-8px); opacity: 0; transition: all 350ms var(--ease-quiet); }
.fw-step.open {
  background: var(--qlt-teal-700); color: #fff;
  border-color: var(--qlt-teal-700);
  box-shadow: 0 24px 56px rgba(0,128,128,0.22);
}
.fw-step.open::before { background: rgba(255,255,255,0.18); }
.fw-step.open .num { color: #fff; }
.fw-step.open h3 { color: #fff; }
.fw-step.open .summary { color: rgba(255,255,255,0.78); }
.fw-step.open .detail { grid-template-rows: 1fr; margin-top: 20px; }
.fw-step.open .detail-inner > * { transform: none; opacity: 1; transition-delay: 200ms; }
.fw-step.open .tool {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.14);
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff;
  margin-top: 16px;
}
.fw-step .body-text {
  font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,0.92);
  margin-bottom: 14px;
}
.fw-step ul {
  margin: 0; padding: 0; list-style: none;
}
.fw-step ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 13.5px; line-height: 1.5;
  color: rgba(255,255,255,0.86);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.fw-step ul li:first-child { border-top: 0; }
.fw-step ul li::before {
  content: ""; position: absolute;
  left: 4px; top: 16px;
  width: 8px; height: 1.5px;
  background: var(--qlt-teal-200);
}

.framework-visual {
  position: relative;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.fw-orbit {
  position: relative; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.fw-orbit svg { width: 100%; height: 100%; }
.fw-orbit-center {
  position: absolute;
  text-align: center;
  max-width: 240px;
}
.fw-orbit-center .week {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--qlt-teal-700); margin-bottom: 8px;
}
.fw-orbit-center .arrow-num {
  font-size: 64px; font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--qlt-charcoal);
  line-height: 1;
  margin-bottom: 8px;
}
.fw-orbit-center .arrow-num em { font-style: italic; font-weight: 500; color: var(--qlt-teal-700); }
.fw-orbit-center .label {
  font-size: 13px; color: var(--fg-3); line-height: 1.4;
}

@media (max-width: 980px) {
  .framework-shell { grid-template-columns: 1fr; gap: 48px; }
  .framework-visual { max-width: 480px; margin: 0 auto; }
}

/* ---------- TRANSFORMATION ---------- */
.transform-pair {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: stretch;
}
.transform-card {
  padding: 40px 36px;
  border-radius: 24px;
  position: relative;
}
.transform-card.before {
  background: #fff;
  border: 1px solid var(--border-1);
}
.transform-card.after {
  background: var(--qlt-teal-700); color: #fff;
  box-shadow: 0 24px 56px rgba(0,128,128,0.22);
}
.transform-card .stage {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 10px;
}
.transform-card.before .stage { color: var(--fg-4); }
.transform-card.after .stage { color: var(--qlt-teal-200); }
.transform-card .stage-line {
  flex: 1; height: 1px; background: currentColor; opacity: 0.3;
}
.transform-card h3 {
  font-size: 28px; font-weight: 700;
  line-height: 1.15; letter-spacing: -0.015em;
  margin: 0 0 24px;
}
.transform-card.before h3 { color: var(--fg-1); }
.transform-card .feels {
  display: flex; flex-direction: column; gap: 14px;
}
.transform-card .feel {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15px; line-height: 1.45;
}
.transform-card .feel .icon {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.transform-card.before .feel .icon { color: var(--fg-4); }
.transform-card.before .feel { color: var(--fg-2); }
.transform-card.after .feel .icon { color: var(--qlt-teal-200); }
.transform-card.after .feel { color: rgba(255,255,255,0.92); }

.transform-arrow {
  display: flex; align-items: center; justify-content: center;
  width: 80px;
}
.transform-arrow .arrow-line {
  position: relative; width: 56px; height: 2px;
  background: linear-gradient(90deg, var(--border-2) 0%, var(--qlt-teal) 100%);
}
.transform-arrow .arrow-line::after {
  content: ""; position: absolute; right: -1px; top: -5px;
  width: 12px; height: 12px;
  border: 2px solid var(--qlt-teal);
  border-bottom: 0; border-left: 0;
  transform: rotate(45deg);
}
.transform-arrow .arrow-label {
  position: absolute;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--qlt-teal-700);
  background: var(--bg-3);
  padding: 6px 14px; border-radius: 999px;
  white-space: nowrap;
  transform: translateY(-32px);
}

@media (max-width: 880px) {
  .transform-pair { grid-template-columns: 1fr; }
  .transform-arrow { width: 100%; height: 80px; transform: rotate(90deg); }
}

/* ---------- PERSONAS ---------- */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.persona {
  position: relative;
  background: #fff;
  padding: 36px 32px 32px;
  border-radius: 20px;
  border: 1px solid var(--border-1);
  transition: all 400ms var(--ease-quiet);
}
.persona::before {
  content: ""; position: absolute;
  left: 0; top: 36px; bottom: 36px;
  width: 4px;
  background: var(--qlt-teal);
  border-radius: 0 4px 4px 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 500ms var(--ease-quiet);
}
.persona:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0,80,80,0.10);
  border-color: transparent;
}
.persona:hover::before { transform: scaleY(1); }
.persona .num {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--qlt-teal-700);
  margin-bottom: 16px;
}
.persona h4 {
  font-size: 24px; font-weight: 700; line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--fg-1);
  margin: 0 0 16px;
}
.persona .voice {
  font-style: italic;
  color: var(--qlt-teal-700);
  font-size: 16px; line-height: 1.5;
  padding: 16px 0;
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
  margin-bottom: 20px;
}
.persona p {
  font-size: 14.5px; line-height: 1.6;
  color: var(--fg-2);
  margin: 0 0 20px;
}
.persona .stake {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--qlt-teal-700);
  display: flex; align-items: center; gap: 8px;
}

@media (max-width: 880px) {
  .persona-grid { grid-template-columns: 1fr; }
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid var(--border-1);
  display: flex; flex-direction: column;
}
.testimonial .quote-mark {
  font-family: Georgia, serif;
  font-size: 60px; line-height: 0.5;
  color: var(--qlt-teal-200);
  margin-bottom: 16px;
}
.testimonial .body {
  font-size: 17px; line-height: 1.5;
  color: var(--fg-1);
  margin: 0 0 28px;
  flex: 1;
  letter-spacing: -0.005em;
  text-wrap: pretty;
}
.testimonial .body em { color: var(--qlt-teal-700); font-style: italic; font-weight: 500; }
.testimonial .person {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border-1);
}
.testimonial .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--qlt-teal-200), var(--qlt-teal-500));
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  color: var(--qlt-teal-900);
  flex-shrink: 0;
}
.testimonial .meta-name { font-size: 14px; font-weight: 600; color: var(--fg-1); margin-bottom: 2px; }
.testimonial .meta-role { font-size: 12px; color: var(--fg-3); }

@media (max-width: 980px) {
  .testimonials { grid-template-columns: 1fr; }
}

/* ---------- BIG QUOTE ---------- */
.bigquote {
  text-align: center;
  padding: 0 24px;
}
.bigquote .mark {
  font-size: 80px;
  font-family: Georgia, serif;
  color: var(--qlt-teal-200);
  line-height: 0.5;
  margin-bottom: 24px;
}
.bigquote blockquote {
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 auto 32px;
  max-width: 920px;
  text-wrap: balance;
}
.bigquote blockquote em { color: var(--qlt-teal-200); font-style: italic; }
.bigquote cite {
  font-style: normal;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--qlt-teal-200);
}

/* ---------- CTA ---------- */
.cta-card {
  background: linear-gradient(160deg, var(--qlt-cream) 0%, var(--qlt-teal-50) 100%);
  border-radius: 32px;
  padding: 80px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before, .cta-card::after {
  content: ""; position: absolute;
  border-radius: 50%; filter: blur(60px); opacity: 0.4;
}
.cta-card::before {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--qlt-teal-200), transparent 70%);
  top: -150px; right: -100px;
}
.cta-card::after {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--qlt-teal-100), transparent 70%);
  bottom: -150px; left: -100px;
}
.cta-card > * { position: relative; }
.cta-card h2 {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--qlt-teal-700);
  margin: 16px 0 20px;
  text-wrap: balance;
}
.cta-card h2 em { font-style: italic; font-weight: 500; color: var(--qlt-charcoal); }
.cta-card .lead {
  font-size: 18px; line-height: 1.5;
  color: var(--fg-2);
  margin: 0 auto 36px;
  max-width: 560px;
}
.cta-card .ctas { display: inline-flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-card .reassure {
  margin-top: 32px;
  font-size: 13px;
  color: var(--fg-3);
  display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap;
}
.cta-card .reassure span { display: inline-flex; align-items: center; gap: 6px; }

@media (max-width: 720px) {
  .cta-card { padding: 56px 28px; border-radius: 24px; }
}

/* ---------- LEAD MAGNET ---------- */
.lead-magnet {
  background: #fff;
  border-radius: 20px;
  padding: 32px 36px;
  display: flex; align-items: center; gap: 28px;
  box-shadow: var(--shadow-3);
  border: 1px solid var(--border-1);
}
.lead-magnet .icon-cell {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--qlt-teal-100);
  color: var(--qlt-teal-700);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lead-magnet .body { flex: 1; }
.lead-magnet h4 { margin: 0 0 4px; font-size: 18px; font-weight: 700; color: var(--fg-1); }
.lead-magnet p { margin: 0; font-size: 14px; line-height: 1.5; color: var(--fg-3); }
@media (max-width: 720px) {
  .lead-magnet { flex-direction: column; align-items: flex-start; padding: 24px; }
}

/* ---------- FOOTER ---------- */
.qlt-footer {
  background: #0F2424;
  color: rgba(255,255,255,0.7);
  padding: 80px 0 40px;
}
.qlt-footer .grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 56px;
}
.qlt-footer .brand-mark { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.qlt-footer .dots { display: flex; gap: 6px; }
.qlt-footer .dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--qlt-teal); }
.qlt-footer .brand-name { font-size: 22px; font-weight: 700; color: #fff; letter-spacing: -0.01em; }
.qlt-footer .desc { font-size: 14px; line-height: 1.6; max-width: 320px; }
.qlt-footer h5 {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--qlt-teal-200);
  margin: 0 0 18px;
}
.qlt-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.qlt-footer a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color 200ms; }
.qlt-footer a:hover { color: #fff; }
.qlt-footer .meta {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px; color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}
.qlt-footer .meta a { font-size: 12px; color: rgba(255,255,255,0.5); }
@media (max-width: 880px) {
  .qlt-footer .grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ---------- IMAGE SLOT defaults ---------- */
image-slot {
  --slot-bg: var(--qlt-teal-100);
  --slot-fg: var(--qlt-teal-700);
}

/* ---------- HERO portrait image ---------- */
.hero-portrait .portrait-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,80,80,0.14), 0 8px 24px rgba(0,80,80,0.08);
}
.about-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%;
  display: block;
}
.about-photo-tag {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--qlt-teal-700);
}
.about-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.022em;
  color: var(--qlt-teal-700);
  margin: 16px 0 24px;
  text-wrap: balance;
}
.about-copy h2 em { font-style: italic; font-weight: 500; color: var(--qlt-charcoal); }
.about-copy .lead {
  font-size: 18px; line-height: 1.6;
  color: var(--fg-2);
  margin: 0 0 18px;
  text-wrap: pretty;
}
.about-copy p {
  font-size: 15.5px; line-height: 1.65;
  color: var(--fg-2);
  margin: 0 0 24px;
  text-wrap: pretty;
}
.about-list {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  border-top: 1px solid var(--border-1);
  padding-top: 24px;
}
.about-list li {
  display: flex; align-items: baseline; gap: 12px;
  font-size: 13.5px; color: var(--fg-3);
}
.about-list li span {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--qlt-teal-700);
  min-width: 88px;
}
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photo { max-width: 480px; margin: 0 auto; }
  .about-list { grid-template-columns: 1fr; }
}

/* ---------- LIFESTYLE STRIP ---------- */
.lifestyle-strip-section { background: var(--qlt-cream); }
.lifestyle-head {
  display: flex; align-items: baseline; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  margin-bottom: 32px;
}
.lifestyle-head h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 600;
  font-style: italic;
  color: var(--qlt-charcoal);
  margin: 0;
  letter-spacing: -0.01em;
}
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.lifestyle-shot {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  background: var(--qlt-teal-100);
  transition: transform 400ms var(--ease-quiet), box-shadow 400ms var(--ease-quiet);
}
.lifestyle-shot:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0,80,80,0.12);
}
.lifestyle-shot img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 800ms var(--ease-quiet);
}
.lifestyle-shot:hover img { transform: scale(1.04); }
.lifestyle-shot figcaption {
  position: absolute; left: 12px; right: 12px; bottom: 12px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--qlt-teal-700);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 880px) {
  .lifestyle-grid { grid-template-columns: repeat(2, 1fr); }
}
