/* ============================================================
   GlowCheck AI — Apple-tier site styles
   White / near-white / near-black / muted gray. Gold sparingly.
   ============================================================ */

:root {
  --white: #FFFFFF;
  --near-white: #FBFBFD;
  --ink: #1D1D1F;
  --ink-strong: #1D1D1F;
  --muted: #6E6E73;
  --muted-2: #86868B;
  --hairline: #E5E5E7;
  --hairline-2: rgba(0, 0, 0, 0.06);
  --gold: #C9A96E;
  --gold-deep: #B0905A;
  --coral: #D4826A;
  --cream: #FAF7F2; /* reserved — small editorial moments only */

  --shadow-phone:
    0 1px 2px rgba(0,0,0,0.04),
    0 8px 16px rgba(0,0,0,0.04),
    0 32px 64px rgba(0,0,0,0.08);
  --shadow-card:
    0 1px 2px rgba(16, 14, 12, 0.04),
    0 6px 16px rgba(16, 14, 12, 0.05),
    0 24px 48px rgba(16, 14, 12, 0.06);
  --shadow-card-hover:
    0 2px 4px rgba(16, 14, 12, 0.05),
    0 12px 28px rgba(16, 14, 12, 0.08),
    0 40px 80px rgba(16, 14, 12, 0.10);
  --shadow-btn: 0 1px 2px rgba(0,0,0,0.06);
  --shadow-btn-hover: 0 4px 12px rgba(0,0,0,0.08);

  --radius-pill: 999px;
  --radius-card: 20px;
  --radius-lg: 28px;
  --container: 1200px;
  --container-wide: 1320px;
  --reading: 680px;

  --easing: cubic-bezier(0.4, 0, 0.2, 1);
  --t: 400ms;
}

* { box-sizing: border-box; }
*::selection { background: rgba(201, 169, 110, 0.28); color: var(--ink); }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-feature-settings: "ss01", "cv11", "kern";
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: -0.011em;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; padding: 0; }

/* ---------- type ---------- */
h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
h1 {
  font-size: clamp(48px, 8.4vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 600;
}
h2 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.022em;
}
h3 {
  font-size: clamp(20px, 1.9vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.022em;
  font-weight: 600;
}
h4 { font-size: 17px; letter-spacing: -0.01em; font-weight: 500; }

p { margin: 0; text-wrap: pretty; }

.eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.lead {
  font-size: 22px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 540px;
  letter-spacing: -0.01em;
}

/* hairline divider */
.hairline {
  width: 200px; height: 1px;
  background: rgba(201, 169, 110, 0.30);
  margin: 0 auto 32px;
}
.hairline--sm {
  width: 40px; height: 1px;
  background: var(--gold);
  margin: 0 0 28px;
  opacity: .5;
}

/* ---------- container & layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container-wide { width: 100%; max-width: var(--container-wide); margin: 0 auto; padding: 0 28px; }

section { position: relative; }
.section { padding: clamp(96px, 14vw, 180px) 0; }
.section-tight { padding: clamp(72px, 10vw, 120px) 0; }

/* hairline section divider */
.section-divider {
  height: 1px;
  background: var(--hairline);
  width: 100%;
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t) var(--easing), background var(--t) var(--easing);
}
.nav.scrolled {
  border-bottom-color: var(--hairline);
  background: rgba(255, 255, 255, 0.80);
}
.nav-inner {
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.brand-mark {
  width: 26px; height: 26px;
  border-radius: 6px;
  display: block;
  box-shadow: 0 1px 2px rgba(0,0,0,.06);
}
.nav-links {
  display: flex;
  gap: 36px;
  justify-content: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 450;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color 200ms var(--easing);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 2px;
  height: 1px;
  background: var(--ink);
  transition: right 200ms ease-out;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { right: 0; }
.nav-cta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}
.hamburger {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 999px;
}
.hamburger span {
  display: block; width: 18px; height: 1.5px;
  background: var(--ink); position: relative;
}
.hamburger span::before,
.hamburger span::after {
  content: '';
  position: absolute; left: 0;
  width: 18px; height: 1.5px;
  background: var(--ink);
}
.hamburger span::before { top: -6px; }
.hamburger span::after { top: 6px; }

/* ---------- App Store badge ---------- */
.badge-app {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px 12px 16px;
  background: var(--ink);
  color: #fff;
  border-radius: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: transform var(--t) var(--easing), box-shadow var(--t) var(--easing);
  box-shadow: var(--shadow-btn);
}
.badge-app:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-btn-hover);
}
.badge-app .b-small {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: .82;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.badge-app .b-large {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1;
  display: block;
}
.badge-app--sm { padding: 9px 14px 9px 12px; }
.badge-app--sm .b-large { font-size: 14px; }
.badge-app--sm .b-small { font-size: 9px; margin-bottom: 3px; }

/* primary gold CTA — used SPARINGLY (one per page max) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
  background: var(--gold);
  color: #fff;
  box-shadow: var(--shadow-btn);
  transition: transform var(--t) var(--easing), box-shadow var(--t) var(--easing), background var(--t) var(--easing);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-btn-hover);
  background: var(--gold-deep);
}

/* ghost / link button */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-btn);
  transition: transform var(--t) var(--easing), box-shadow var(--t) var(--easing);
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-btn-hover);
}

/* inline link with animated underline */
.link-inline {
  position: relative;
  color: var(--ink);
  font-weight: 500;
  display: inline-block;
  padding-bottom: 2px;
}
.link-inline::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right 200ms ease-out;
}
.link-inline:hover::after { right: 0; }
.link-inline:hover { color: var(--coral); }

/* ---------- mobile drawer ---------- */
.drawer { position: fixed; inset: 0; z-index: 110; pointer-events: none; }
.drawer-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity var(--t) var(--easing);
}
.drawer-panel {
  position: absolute;
  top: 0; right: 0;
  width: min(86vw, 380px);
  height: 100%;
  background: var(--white);
  padding: 32px 28px;
  transform: translateX(100%);
  transition: transform 500ms var(--easing);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--hairline);
}
.drawer.open { pointer-events: auto; }
.drawer.open .drawer-overlay { opacity: 1; }
.drawer.open .drawer-panel { transform: translateX(0); }
.drawer-panel-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 56px;
}
.drawer-close {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px;
}
.drawer-links { display: flex; flex-direction: column; gap: 4px; }
.drawer-links a {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.022em;
  padding: 14px 0;
  color: var(--ink);
  border-bottom: 1px solid var(--hairline);
}
.drawer-bottom { margin-top: auto; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: clamp(120px, 16vh, 180px) 0 clamp(60px, 9vw, 100px);
  overflow: hidden;
  background: var(--white);
}
.hero-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(22px, 4vw, 40px);
}
.hero-copy { max-width: 560px; }
.hero-copy h1 {
  font-size: clamp(48px, 6.4vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 0;
}
.hero-sub {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--muted);
  max-width: 480px;
  margin: 28px 0 40px;
  letter-spacing: -0.012em;
}
.hero-cta { display: inline-flex; }

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}
.hero-glow {
  position: absolute;
  width: 1200px; height: 1200px;
  left: 50%; top: -300px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(201, 169, 110, 0.10), rgba(201, 169, 110, 0.04) 45%, transparent 70%);
  filter: blur(40px);
}

/* hero phone */
.hero-phone-wrap {
  margin: 0;
  max-width: 380px;
  width: 100%;
  justify-self: center;
  position: relative;
  will-change: transform;
}
.phone-img {
  width: 100%;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.04)) drop-shadow(0 8px 16px rgba(0,0,0,0.04)) drop-shadow(0 32px 64px rgba(0,0,0,0.08));
}

/* ---------- split / scan moment ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }
.split-copy { max-width: 460px; }
.split-copy .eyebrow { margin-bottom: 20px; display: block; }
.split-copy h2 { margin-bottom: 28px; }
.split-copy p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
  letter-spacing: -0.005em;
}

.scan-phone {
  position: relative;
  max-width: 520px;
  height: 60vh;
  min-height: 600px;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
}
.scan-phone::before {
  content: '';
  position: absolute;
  inset: -8% -10% -4% -10%;
  background: radial-gradient(closest-side, rgba(201, 169, 110, 0.08), transparent 65%);
  filter: blur(80px);
  z-index: 0;
}
.scan-phone img {
  position: relative;
  z-index: 1;
  height: 100%;
  width: auto;
  max-width: 100%;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.04)) drop-shadow(0 8px 16px rgba(0,0,0,0.04)) drop-shadow(0 32px 64px rgba(0,0,0,0.08));
}

/* ---------- how it works (symmetric 3-up) ---------- */
.how-intro {
  max-width: 760px;
  margin: 0 auto clamp(80px, 9vw, 120px);
  text-align: center;
}
.how-intro .eyebrow { display: block; margin-bottom: 24px; }
.three-up {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 64px);
  position: relative;
  align-items: stretch;
}
.three-up.four-up {
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
.three-up.four-up .tu-item + .tu-item::before {
  left: calc(clamp(24px, 3vw, 48px) / -2 - 0.5px);
}
.tu-item {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 40px;
  text-align: center;
  position: relative;
  padding: 0 8px;
}
.tu-item + .tu-item::before {
  content: '';
  position: absolute;
  left: calc(clamp(32px, 4vw, 64px) / -2 - 0.5px);
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--hairline);
}
.tu-phone-wrap {
  position: relative;
  display: flex; align-items: flex-end; justify-content: center;
  aspect-ratio: 1056 / 2140;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}
.tu-phone-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.04)) drop-shadow(0 8px 16px rgba(0,0,0,0.04)) drop-shadow(0 32px 64px rgba(0,0,0,0.08));
}
.tu-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 320px;
  margin: 0 auto;
}
.tu-step {
  font-family: 'Inter', ui-monospace, SFMono-Regular, monospace;
  font-feature-settings: "tnum";
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.tu-title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.022em;
  margin-bottom: 12px;
  color: var(--ink);
}
.tu-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: -0.005em;
  text-wrap: pretty;
}

/* ---------- Built-In feature cards ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.card {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  padding: 36px 32px 32px;
  border: 0;
  box-shadow: var(--shadow-card);
  transition: transform var(--t) var(--easing), box-shadow var(--t) var(--easing);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(201,169,110,0.04) 100%);
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  transition: opacity var(--t) var(--easing);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.card:hover::before { opacity: 1; }
.card-glyph {
  width: 56px; height: 56px;
  margin-bottom: 28px;
  border-radius: 14px;
  background: linear-gradient(180deg, #FBF8F1 0%, #F5EDDD 100%);
  color: #B89255;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(201,169,110,0.18), 0 1px 2px rgba(176, 144, 90, 0.08);
}
.card-glyph svg { width: 28px; height: 28px; }
.card-body { margin-top: auto; }
.card-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
  color: var(--ink);
  line-height: 1.2;
}
.card-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
  letter-spacing: -0.005em;
  text-wrap: pretty;
}

/* ---------- privacy promise ---------- */
.privacy-section {
  background: var(--near-white);
  padding: clamp(120px, 16vw, 200px) 0;
  text-align: center;
}
.privacy-block { max-width: 720px; margin: 0 auto; }
.privacy-icon {
  width: 24px; height: 24px;
  color: var(--gold);
  margin: 0 auto 28px;
}
.privacy-block p {
  font-size: 28px;
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.022em;
  font-weight: 500;
  max-width: 640px;
  margin: 0 auto 36px;
}

/* ---------- closing CTA ---------- */
.closing {
  text-align: center;
  padding: 240px 0;
  background: var(--white);
}
.closing h2 {
  font-size: clamp(48px, 7vw, 80px);
  letter-spacing: -0.04em;
  line-height: 1.05;
  max-width: 780px;
  margin: 0 auto 32px;
}
.closing p {
  color: var(--muted);
  margin: 0 auto 56px;
  max-width: 480px;
  font-size: 19px;
  letter-spacing: -0.005em;
}

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--hairline);
  padding: 56px 0 56px;
  background: var(--white);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
}
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p {
  font-size: 12px;
  color: var(--muted-2);
  max-width: 360px;
  line-height: 1.55;
}
.footer-links {
  display: flex;
  gap: 36px;
  font-size: 13px;
}
.footer-links a {
  color: var(--muted);
  transition: color 200ms var(--easing);
}
.footer-links a:hover { color: var(--ink); }
.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted-2);
}

/* ---------- reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 900ms var(--easing), transform 900ms var(--easing);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

/* ============================================================
   BLOG INDEX — editorial photography
   ============================================================ */

/* Page masthead — sets the tone before the hero */
.blog-masthead {
  padding: clamp(120px, 16vh, 180px) 0 clamp(48px, 6vw, 80px);
  text-align: center;
  background: #fff;
}
.blog-masthead-eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 28px;
}
.blog-masthead-title {
  font-size: clamp(40px, 5.6vw, 64px);
  letter-spacing: -0.035em;
  line-height: 1.08;
  max-width: 920px;
  margin: 0 auto 20px;
  color: var(--ink);
  font-weight: 600;
  text-wrap: balance;
}
.blog-masthead-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  letter-spacing: -0.005em;
}

/* Featured editorial hero — full-bleed 64vh, generous */
.featured-hero {
  position: relative;
  width: 100%;
  height: 64vh;
  min-height: 520px;
  max-height: 720px;
  margin: 0;
  overflow: hidden;
  background: #1D1D1F;
}
.featured-hero-link { position: absolute; inset: 0; display: block; color: inherit; text-decoration: none; }
.featured-hero-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.78) saturate(0.92);
  transition: transform 800ms var(--easing), filter 600ms var(--easing);
}
.featured-hero-link:hover .featured-hero-img {
  transform: scale(1.025);
  filter: brightness(0.85) saturate(1);
}
.featured-hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0.45) 70%, rgba(0,0,0,0.82) 100%);
  pointer-events: none;
}
.featured-hero-inner {
  position: absolute; inset: auto 0 0 0;
  padding: 0 0 clamp(56px, 7vw, 96px);
  color: #fff;
}
.featured-hero-flag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 28px;
  padding: 8px 14px;
  border: 1px solid rgba(201, 169, 110, 0.55);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  background: rgba(0,0,0,0.18);
  white-space: nowrap;
}
.featured-hero-title {
  color: #fff;
  font-size: clamp(40px, 5.6vw, 68px);
  letter-spacing: -0.035em;
  line-height: 1.04;
  max-width: 920px;
  margin: 0 0 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
  font-weight: 600;
  text-wrap: balance;
}
.featured-hero-sub {
  color: rgba(255,255,255,0.92);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.5;
  max-width: 640px;
  margin: 0 0 24px;
  letter-spacing: -0.005em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.25);
}
.featured-hero-meta {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.04em;
}

/* Section label above the grid */
.ed-section-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 32px;
  margin-bottom: clamp(48px, 6vw, 80px);
  border-bottom: 1px solid var(--hairline);
}
.ed-section-label-text {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.ed-section-label-count {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  white-space: nowrap;
}

/* Editorial section spacing */
.editorial-section {
  padding: clamp(96px, 12vw, 140px) 0 clamp(96px, 12vw, 160px);
}

/* Asymmetric editorial rows */
.ed-row {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  margin-bottom: 80px;
  align-items: start;
}
.ed-row--reverse { grid-template-columns: 1fr 1.45fr; }
.ed-row--reverse .ed-card--big { order: 2; }
.ed-row--reverse .ed-stack { order: 1; }
.ed-row--even { grid-template-columns: 1fr 1fr; }
.ed-row--single { grid-template-columns: 1fr; max-width: 840px; margin-left: auto; margin-right: auto; }
.ed-stack { display: flex; flex-direction: column; gap: 56px; }

/* Cards */
.ed-card {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 400ms var(--easing);
}
.ed-card:hover { transform: translateY(-3px); }

.ed-cover {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  background: var(--near-white);
  margin-bottom: 24px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 12px 32px rgba(0,0,0,0.06);
  transition: box-shadow 400ms var(--easing);
}
.ed-card:hover .ed-cover { box-shadow: 0 2px 6px rgba(0,0,0,0.06), 0 22px 48px rgba(0,0,0,0.10); }
.ed-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 800ms var(--easing);
  filter: saturate(0.92);
}
.ed-card:hover .ed-cover img { transform: scale(1.025); }

.ed-cover--big   { aspect-ratio: 16 / 10; }
.ed-cover--med   { aspect-ratio: 16 / 10; }
.ed-cover--small { aspect-ratio: 16 / 10; }

.ed-meta-row { display: flex; align-items: center; margin-bottom: 14px; }
.ed-cat {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}
.ed-title {
  letter-spacing: -0.028em;
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 14px;
  font-weight: 600;
  text-wrap: pretty;
}
.ed-title--big   { font-size: clamp(30px, 3.4vw, 40px); }
.ed-title--med   { font-size: 30px; }
.ed-title--small { font-size: 22px; line-height: 1.2; }

.ed-sub {
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 18px;
  letter-spacing: -0.005em;
  max-width: 520px;
}
.ed-foot {
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: 0.03em;
}

/* ============================================================
   BLOG GRID — uniform 2-column card grid (10 articles)
   ============================================================ */
.blog-grid-section {
  padding: clamp(48px, 6vw, 80px) 0 clamp(96px, 12vw, 140px);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(40px, 4vw, 64px) clamp(28px, 3vw, 48px);
}
@media (max-width: 760px) {
  .blog-grid { grid-template-columns: 1fr; gap: 48px; }
}

.bcard {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  transition: transform 400ms var(--easing);
}
.bcard:hover { transform: translateY(-3px); }

.bcard-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 14px;
  background: #F4EFE8;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 12px 32px rgba(0,0,0,0.06);
  transition: box-shadow 400ms var(--easing);
  margin-bottom: 24px;
}
.bcard:hover .bcard-cover {
  box-shadow: 0 2px 6px rgba(0,0,0,0.06), 0 22px 48px rgba(0,0,0,0.10);
}
.bcard-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms var(--easing);
  filter: saturate(0.94);
}
.bcard:hover .bcard-cover img { transform: scale(1.03); }

.bcard-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.bcard-cat {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 14px;
}
.bcard-title {
  font-size: clamp(22px, 2.1vw, 28px);
  letter-spacing: -0.025em;
  line-height: 1.18;
  color: var(--ink);
  margin: 0 0 12px;
  font-weight: 600;
  text-wrap: pretty;
}
.bcard-sub {
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 18px;
  letter-spacing: -0.005em;
  flex: 1;
}
.bcard-foot {
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: 0.04em;
}

/* ============================================================
   BLOG POST — editorial article (full-bleed hero)
   ============================================================ */
.article-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 520px;
  overflow: hidden;
  margin: 0;
  background: #1D1D1F;
}
.article-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.94);
}
.article-hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 60%, rgba(255,255,255,0.4) 100%);
}

.article-header {
  padding: clamp(72px, 9vw, 110px) 28px clamp(36px, 4.5vw, 56px);
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}
.article-cat {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 28px;
  font-weight: 500;
}
.article-title {
  font-size: clamp(40px, 6.5vw, 72px);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0 auto 0;
  max-width: 900px;
  color: var(--ink);
  font-weight: 600;
  text-wrap: balance;
}
.article-divider {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 36px auto 28px;
}
.article-byline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.article-avatar {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #C9A96E, #D4826A);
  flex-shrink: 0;
}
.article-byline-text {
  text-align: left;
  font-size: 13px;
  line-height: 1.3;
}
.article-byline-text .name { color: var(--ink); font-weight: 500; }
.article-byline-text .when { color: var(--muted); font-size: 12px; }

/* Body — reading column */
.post-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 28px clamp(80px, 10vw, 140px);
}
.post-body p, .post-body li {
  font-size: 20px;
  line-height: 1.75;
  color: var(--ink);
  margin: 0 0 24px;
  letter-spacing: -0.005em;
}
.post-body h2 {
  font-size: 32px;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 80px 0 24px;
  font-weight: 600;
}
.post-body h3 {
  font-size: 22px;
  margin: 40px 0 14px;
  letter-spacing: -0.018em;
}
.post-body blockquote {
  margin: 48px 0;
  padding: 6px 0 6px 40px;
  border-left: 2px solid var(--gold);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: -0.012em;
  color: var(--ink);
  font-weight: 500;
  font-style: italic;
}
.post-body img,
.post-body .post-inline-img {
  display: block;
  width: 100%;
  height: auto;
  margin: 40px 0;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  box-shadow: none;
}
/* drop cap on opening paragraph */
.post-body .lead-p {
  font-size: 22px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 32px;
  letter-spacing: -0.012em;
}
.post-body .lead-p::first-letter {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 76px;
  font-weight: 600;
  color: var(--gold);
  float: left;
  line-height: 0.85;
  margin: 8px 14px 0 -8px;
  letter-spacing: -0.04em;
}
.post-body ul, .post-body ol { padding-left: 22px; margin: 0 0 24px; }

/* ONE continue-reading card */
.continue-one {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 28px clamp(80px, 10vw, 140px);
}
.continue-one-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 32px;
  font-weight: 500;
  padding-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--hairline);
}
.continue-one-card {
  display: block;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--hairline);
  transition: box-shadow 400ms var(--easing), transform 400ms var(--easing);
}
.continue-one-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.05), 0 24px 56px rgba(0,0,0,0.10);
}
.continue-one-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  filter: saturate(0.94);
  transition: transform 600ms var(--easing);
}
.continue-one-card:hover .continue-one-img { transform: scale(1.02); }
.continue-one-body { padding: 36px 40px 40px; }
.continue-one-cat {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 14px;
}
.continue-one-title {
  font-size: 28px;
  letter-spacing: -0.025em;
  line-height: 1.18;
  color: var(--ink);
  margin: 0 0 12px;
  font-weight: 600;
}
.continue-one-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 18px;
  letter-spacing: -0.005em;
}
.continue-one-foot {
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: 0.03em;
}

/* ============================================================
   PRIVACY / TERMS
   ============================================================ */
.legal-wrap {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(140px, 18vh, 180px) 28px clamp(80px, 10vw, 140px);
}
.legal-toc {
  position: sticky;
  top: 100px;
  align-self: start;
  font-size: 13px;
}
.legal-toc-title {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 16px;
}
.legal-toc a {
  display: block;
  padding: 6px 0;
  color: var(--muted);
  transition: color 200ms var(--easing);
  border-left: 1px solid transparent;
  padding-left: 14px;
  margin-left: -14px;
  line-height: 1.45;
}
.legal-toc a:hover, .legal-toc a.active {
  color: var(--ink);
  border-left-color: var(--gold);
}
.legal-content { max-width: 720px; }
.legal-content h1 {
  font-size: clamp(40px, 5vw, 56px);
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}
.legal-content > p:first-of-type {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 56px;
}
.legal-content section {
  scroll-margin-top: 100px;
  padding: 32px 0 24px;
  border-top: 1px solid var(--hairline);
}
.legal-content section:first-of-type { border-top: 0; padding-top: 0; }
.legal-content h2 {
  font-size: 26px;
  letter-spacing: -0.022em;
  margin-bottom: 18px;
  font-weight: 600;
}
.legal-content h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 24px 0 10px;
}
.legal-content p, .legal-content li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 16px;
}
.legal-content ul, .legal-content ol { padding-left: 22px; margin: 0 0 16px; }
.legal-content a {
  color: var(--gold-deep);
  border-bottom: 1px solid rgba(201,169,110,0.4);
  transition: border-color 200ms var(--easing), color 200ms var(--easing);
}
.legal-content a:hover { color: var(--coral); border-color: var(--coral); }
.legal-content strong { color: var(--ink); font-weight: 600; }
.updated {
  display: inline-block;
  padding: 6px 12px;
  background: var(--near-white);
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .three-up.four-up { grid-template-columns: repeat(2, 1fr); gap: 48px 32px; }
  .three-up.four-up .tu-item + .tu-item::before { display: none; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid .card:nth-child(2),
  .cards-grid .card:nth-child(4) { transform: none; }
  .three-up { grid-template-columns: 1fr; gap: 96px; }
  .three-up.four-up { grid-template-columns: 1fr; gap: 96px; }
  .tu-phone-wrap { max-width: 320px; margin: 0 auto; }
  .tu-item { text-align: center; padding: 0; }
  .tu-item + .tu-item::before { display: none; }
  .tu-desc { margin: 0 auto; }
  .blog-row, .blog-row--reverse { grid-template-columns: 1fr; gap: 48px; }
  .blog-stack { gap: 48px; }
  .legal-wrap { grid-template-columns: 1fr; gap: 32px; }
  .legal-toc { position: static; display: none; }
}

@media (max-width: 820px) {
  body { font-size: 16px; }
  .nav-links, .nav-cta .badge-app { display: none; }
  .hamburger { display: flex; }
  .nav-inner { grid-template-columns: 1fr auto; }
  .nav-cta { gap: 8px; }

  .split { grid-template-columns: 1fr; gap: 56px; }
  .split-reverse { direction: ltr; }
  .scan-phone { height: auto; min-height: 0; max-width: 360px; }
  .scan-phone img { height: auto; width: 100%; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }

  .post-cover-full { height: 50vh; min-height: 360px; margin-top: 0; }
  .feature-hero-overlay { padding: 32px 28px; }
  .post-body .lead-p::first-letter { font-size: 48px; }
}

@media (max-width: 560px) {
  .cards-grid { grid-template-columns: 1fr; }
  .container, .container-wide { padding: 0 22px; }
  .hero { padding-top: 120px; }
  .post-body { padding: 0 22px clamp(60px, 8vw, 100px); font-size: 18px; }
  .post-body p, .post-body li { font-size: 18px; }
  .closing { padding: 140px 0; }
  .privacy-block p { font-size: 22px; }
}

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


/* ============================================================
   BLOG GRID (3-column editorial)
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(48px, 5vw, 72px) clamp(28px, 3vw, 40px);
}
.continue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 32px;
}
@media (max-width: 980px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 56px 24px; }
  .continue-grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; gap: 56px; }
}

/* ============================================================
   INTERACTIVE WIDGETS
   ============================================================ */
.iw {
  background: #FBFBFD;
  border: 1px solid #E5E5E7;
  border-radius: 18px;
  padding: 32px;
  margin: 40px 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}
.iw-title {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E5E5E7;
}
.iw-grid { display: grid; gap: 20px; }
.iw-grid-2 { grid-template-columns: repeat(2, 1fr); }
.iw-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 720px) {
  .iw-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .iw-grid-2, .iw-grid-4 { grid-template-columns: 1fr; }
  .iw { padding: 24px; }
}
.iw-field { display: flex; flex-direction: column; gap: 8px; }
.iw-field label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Segmented control */
.iw-seg {
  display: inline-flex;
  background: #fff;
  border: 1px solid #E5E5E7;
  border-radius: 10px;
  padding: 3px;
  flex-wrap: wrap;
  gap: 2px;
}
.iw-seg-wide { display: flex; width: 100%; }
.iw-seg-btn {
  flex: 1;
  appearance: none;
  background: transparent;
  border: 0;
  padding: 9px 14px;
  font: inherit;
  font-size: 13px;
  color: var(--ink);
  border-radius: 7px;
  cursor: pointer;
  transition: background 200ms, color 200ms;
  text-transform: capitalize;
  white-space: nowrap;
}
.iw-seg-btn:hover { background: #F5F5F7; }
.iw-seg-btn.is-active {
  background: var(--ink);
  color: #fff;
}
.iw-seg-btn.is-active:hover { background: var(--ink); }

/* Sliders */
.iw-slider-row { margin-bottom: 24px; }
.iw-slider-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--muted);
}
.iw-slider-val { color: var(--ink); font-weight: 500; font-variant-numeric: tabular-nums; }
.iw-slider {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: #E5E5E7;
  border-radius: 2px;
  outline: none;
}
.iw-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  background: #fff;
  border: 1px solid #D6D6D8;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 150ms;
}
.iw-slider::-webkit-slider-thumb:hover { transform: scale(1.08); }
.iw-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  background: #fff;
  border: 1px solid #D6D6D8;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.08);
}

/* Select */
.iw-select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  background: #fff;
  border: 1px solid #E5E5E7;
  border-radius: 10px;
  padding: 12px 36px 12px 14px;
  font: inherit;
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'><path d='M1 1l4 4 4-4' stroke='%23999' stroke-width='1.2' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.iw-select:focus { outline: none; border-color: var(--gold); }

/* Textarea */
.iw-textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #E5E5E7;
  border-radius: 10px;
  padding: 14px;
  font: inherit;
  font-size: 14px;
  color: var(--ink);
  resize: vertical;
  margin-bottom: 12px;
}
.iw-textarea:focus { outline: none; border-color: var(--gold); }

/* Buttons */
.iw-btn-primary {
  appearance: none;
  background: var(--ink);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 11px 22px;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 200ms;
}
.iw-btn-primary:hover { opacity: 0.85; }
.iw-reset {
  display: inline-flex;
  appearance: none;
  background: transparent;
  border: 1px solid #E5E5E7;
  border-radius: 999px;
  padding: 9px 18px;
  font: inherit; font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  margin-top: 16px;
}
.iw-reset:hover { color: var(--ink); border-color: var(--ink); }

/* Result blocks */
.iw-result { margin-top: 28px; }
.iw-note {
  margin-top: 20px;
  padding: 16px 20px;
  background: #fff;
  border-left: 2px solid var(--gold);
  border-radius: 0 10px 10px 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-strong);
}

/* Stat row */
.iw-stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}
.iw-stat {
  background: #fff;
  border: 1px solid #E5E5E7;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
}
.iw-stat-num {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  margin-bottom: 4px;
}
.iw-stat-lbl {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* Verdict card */
.iw-verdict {
  background: #fff;
  border: 1px solid #E5E5E7;
  border-left-width: 3px;
  border-radius: 12px;
  padding: 20px 24px;
}
.iw-verdict-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.012em;
  margin-bottom: 6px;
}
.iw-verdict-note {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

/* Routine columns */
.iw-routine-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 540px) { .iw-routine-cols { grid-template-columns: 1fr; } }
.iw-routine-col {
  background: #fff;
  border: 1px solid #E5E5E7;
  border-radius: 12px;
  padding: 20px 22px;
}
.iw-routine-head {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
}
.iw-routine-list {
  margin: 0; padding-left: 22px;
  font-size: 14px;
  line-height: 1.7;
}

/* Retinoid ramp */
.iw-ramp { margin: 24px 0 12px; }
.iw-ramp-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 6px;
}
.iw-ramp-col {
  background: #fff;
  border: 1px solid #E5E5E7;
  border-radius: 8px;
  padding: 10px 4px;
  text-align: center;
}
.iw-ramp-week {
  font-size: 10px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.iw-ramp-dots {
  display: flex; flex-direction: column; gap: 3px; align-items: center;
  margin-bottom: 8px;
}
.iw-ramp-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #E5E5E7;
}
.iw-ramp-dot.is-on { background: var(--gold); }
.iw-ramp-count {
  font-size: 9px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
@media (max-width: 720px) {
  .iw-ramp-grid { grid-template-columns: repeat(6, 1fr); gap: 6px; }
}

/* SVG containers */
.iw-svg {
  background: #fff;
  border: 1px solid #E5E5E7;
  border-radius: 12px;
  padding: 16px;
  margin: 8px 0;
}
.iw-timeline-labels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.iw-tl {
  background: #fff;
  border: 1px solid #E5E5E7;
  border-radius: 10px;
  padding: 12px 14px;
}
.iw-tl-w { font-size: 11px; color: var(--gold-deep); letter-spacing: 0.1em; margin-bottom: 4px; }
.iw-tl-d { font-size: 13px; color: var(--ink); }
@media (max-width: 600px) { .iw-timeline-labels { grid-template-columns: repeat(2, 1fr); } }

/* Quiz */
.iw-q { margin-bottom: 18px; }
.iw-q-text { font-size: 14px; color: var(--ink); margin-bottom: 10px; font-weight: 500; }

/* Decoder */
.iw-decoder-list { display: flex; flex-direction: column; gap: 10px; }
.iw-decoder-row {
  display: grid;
  grid-template-columns: 160px 140px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid #E5E5E7;
  border-left: 3px solid #E5E5E7;
  border-radius: 0 10px 10px 0;
}
.iw-decoder-name { font-weight: 500; text-transform: capitalize; font-size: 14px; }
.iw-decoder-tag { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }
.iw-decoder-note { font-size: 13px; color: var(--muted); line-height: 1.5; }
@media (max-width: 600px) {
  .iw-decoder-row { grid-template-columns: 1fr; gap: 4px; }
}


/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section { padding: clamp(80px, 10vw, 140px) 0; }
.reviews-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(56px, 6vw, 80px);
}
.reviews-head .eyebrow { display: block; margin-bottom: 20px; }
.reviews-head h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.reviews-stars { display: flex; justify-content: center; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}
.review {
  background: #FBFBFD;
  border: 1px solid #EAEAEC;
  border-radius: 22px;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow var(--t) var(--easing), transform var(--t) var(--easing);
}
.review:hover {
  box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 12px 32px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.review-stars {
  font-size: 14px;
  letter-spacing: 0.18em;
  color: #C9A96E;
}
.review-quote {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-strong);
  letter-spacing: -0.005em;
  margin: 0;
  flex: 1;
  text-wrap: pretty;
}
.review-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #EAEAEC;
}
.review-name { font-size: 14px; font-weight: 500; color: var(--ink); line-height: 1.3; }
.review-when { font-size: 12px; color: var(--muted-2); letter-spacing: 0.01em; }
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 8px 14px;
  background: #FBF8F1;
  border: 1px solid #EFE6D2;
  border-radius: 999px;
}
.rating-stars {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #C9A96E;
}
.rating-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}
@media (max-width: 980px) {
  .reviews-grid { grid-template-columns: 1fr; gap: 20px; max-width: 560px; }
  .hero-split { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { max-width: 600px; margin: 0 auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-phone-wrap { max-width: 320px; }
}
