/* ============================================================
   Phiora Marketing Site — Web Adaptation of the Design System
   Source of truth: docs/DESIGN.md
   Tokens are duplicated here so the site ships with no build step.
   ============================================================ */

:root {
  /* Brand */
  --rose:        #BE185D;
  --rose-deep:   #831843;
  --rose-soft:   #FCE7F3;

  /* Neutrals */
  --ink:         #0F172A;
  --slate:       #475569;
  --slate-mid:   #64748B;
  --slate-light: #94A3B8;
  --border:      #E2E8F0;
  --surface:     #F8FAFC;
  --surface-2:   #F1F5F9;
  --bg:          #FFFFFF;

  /* Cover / CTA gradient */
  --gradient-cover: linear-gradient(135deg, #0F172A 0%, #1E1B4B 45%, #831843 100%);

  /* KPI lift */
  --kpi-rose-bg: #FCE7F3;
  --kpi-green-bg: #D1FAE5;

  /* Spacing */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  24px;
  --space-6:  32px;
  --space-7:  48px;
  --space-8:  64px;
  --space-9:  80px;
  --space-10: 96px;

  /* Radius */
  --radius-card:  8px;
  --radius-badge: 4px;
  --radius-pill:  9999px;

  /* Typography */
  --font-display: 'Playfair Display', 'Iowan Old Style', Georgia, serif;
  --font-sans:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --container-max: 1120px;
  --content-max:   760px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--slate);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--rose); text-decoration: underline; text-decoration-color: rgba(190, 24, 93, 0.35); text-underline-offset: 3px; }
a:hover { color: var(--rose-deep); text-decoration-color: var(--rose-deep); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.2;
  font-weight: 600;
}

p { margin: 0; }

button { font-family: inherit; cursor: pointer; }

/* ============================================================
   Skip link & focus
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-4);
  background: var(--ink);
  color: #fff;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-card);
  z-index: 999;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: top 0.15s ease-out;
}
.skip-link:focus { top: var(--space-4); outline: 3px solid var(--rose); outline-offset: 2px; }

:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ============================================================
   Layout
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-5);
  width: 100%;
}
@media (min-width: 800px) { .container { padding: 0 var(--space-7); } }

.narrow {
  max-width: var(--content-max);
  margin: 0 auto;
}

main { display: block; }

section { padding: var(--space-9) 0; }
@media (max-width: 800px) { section { padding: var(--space-8) 0; } }

/* ============================================================
   Header / Top nav
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-3) 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.brand:hover { color: var(--ink); }
.brand svg { width: 28px; height: 28px; flex-shrink: 0; }
.brand-label { display: inline; }

.nav {
  display: none;
  align-items: center;
  gap: var(--space-6);
}
@media (min-width: 900px) { .nav { display: flex; } }

.nav a {
  color: var(--slate);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.15s ease-out;
}
.nav a:hover { color: var(--ink); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--ink);
  transition: background 0.15s ease-out, color 0.15s ease-out, border-color 0.15s ease-out;
  white-space: nowrap;
}
.nav .nav-cta,
.mobile-nav .nav-cta {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}
.nav .nav-cta:hover,
.mobile-nav .nav-cta:hover {
  background: var(--slate);
  border-color: var(--slate);
}
.nav-cta:hover {
  background: var(--slate);
  color: #fff;
  border-color: var(--slate);
}
.nav-cta svg { width: 16px; height: 16px; }

/* Mobile nav toggle (CSS-only via hidden checkbox) */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: none;
  border: 1px solid var(--border);
  color: var(--ink);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
}
.nav-toggle svg { width: 16px; height: 16px; }
@media (min-width: 900px) {
  .nav-toggle,
  .nav-toggle__input {
    display: none;
  }
}

#nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
#nav-toggle:focus-visible ~ .site-header__inner .nav-toggle {
  outline: 3px solid var(--rose);
  outline-offset: 2px;
}
#nav-toggle:checked ~ .mobile-nav { display: block; }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  padding: var(--space-4) 0;
  background: #fff;
}
.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.mobile-nav a {
  display: block;
  padding: var(--space-3) var(--space-2);
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  border-radius: var(--radius-card);
}
.mobile-nav a:hover { background: var(--surface); }
.mobile-nav .nav-cta {
  margin-top: var(--space-3);
  width: 100%;
  justify-content: center;
  color: #fff;
  background: var(--ink);
}
.mobile-nav .nav-cta:hover {
  background: var(--slate);
  color: #fff;
  border-color: var(--slate);
}
@media (min-width: 900px) { .mobile-nav { display: none !important; } }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  background: var(--gradient-cover);
  color: #fff;
  padding: var(--space-9) 0 var(--space-10);
  overflow: hidden;
  isolation: isolate;
}

.hero__grid {
  display: grid;
  gap: var(--space-8);
  align-items: center;
}
@media (min-width: 1000px) {
  .hero__grid { grid-template-columns: 1.05fr 1fr; gap: var(--space-9); }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  border-left: 3px solid var(--rose);
  padding-left: var(--space-3);
}
.hero__eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 4px rgba(190, 24, 93, 0.25);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 7vw, 64px);
  line-height: 0.98;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin: var(--space-5) 0 var(--space-5);
}
.hero__title em {
  font-style: italic;
  color: #FBE7F3;
  font-weight: 600;
}
.hero__title .accent {
  position: relative;
  display: inline-block;
}
.hero__title .accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 2px;
  background: var(--rose);
}

.hero__sub {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  margin-bottom: var(--space-6);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-7);
  padding: var(--space-5) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.hero__stat .num {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 600;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero__stat .lbl {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-top: var(--space-2);
  line-height: 1.4;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: #fff;
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  padding: 16px 26px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: 1px solid #fff;
  transition: transform 0.15s ease-out, background 0.15s ease-out, color 0.15s ease-out;
  box-shadow: 0 12px 32px -12px rgba(0, 0, 0, 0.55);
}
.hero__cta:hover {
  transform: translateY(-1px);
  background: var(--slate);
  color: #fff;
  border-color: var(--slate);
}
.hero__cta svg { width: 18px; height: 18px; }

.hero__secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  white-space: nowrap;
  margin-left: var(--space-4);
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 2px;
  transition: color 0.15s ease-out, border-color 0.15s ease-out;
}
.hero__secondary:hover {
  color: #fff;
  border-color: var(--rose);
}
@media (max-width: 540px) {
  .hero__secondary { display: none; }
}

.hero__reversal {
  margin-top: var(--space-6);
  padding: var(--space-4) var(--space-5);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-card);
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  max-width: 580px;
}
.hero__reversal-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--rose);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}
.hero__reversal p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}
.hero__reversal strong { color: #fff; font-weight: 600; }

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
@media (min-width: 1000px) {
  .hero__visual { min-height: 480px; }
}

/* Floating chip labels around hero diagram */
.hero__chip {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
}
.hero__chip--rose { color: var(--rose-deep); border-color: var(--rose-soft); background: var(--rose-soft); }
.hero__chip--ink { background: var(--ink); color: #fff; border-color: var(--ink); }

.hero__chip-1 { top: 6%; left: 4%; }
.hero__chip-2 { top: 12%; right: 6%; }
.hero__chip-3 { bottom: 14%; left: 0; }
.hero__chip-4 { bottom: 6%; right: 8%; }
@media (max-width: 999px) { .hero__chip { display: none; } }

/* ============================================================
   Sections
   ============================================================ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: var(--space-3);
}
.section-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--rose);
}

.section-heading {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  color: var(--ink);
  padding-left: var(--space-4);
  border-left: 4px solid var(--rose);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-5);
}

.section-lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--slate);
  max-width: 640px;
  margin-bottom: var(--space-7);
}

/* ============================================================
   Problem / Buyer cards
   ============================================================ */
.buyer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
@media (min-width: 700px) { .buyer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .buyer-grid { grid-template-columns: repeat(3, 1fr); } }

.buyer-card {
  background: var(--rose-soft);
  border-radius: var(--radius-card);
  padding: var(--space-5);
  border: 1px solid #FBCFE8;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}
.buyer-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -12px rgba(190, 24, 93, 0.25);
}
.buyer-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  color: var(--rose-deep);
  margin-bottom: var(--space-2);
  line-height: 1.25;
}
.buyer-card__body {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
}

.not-built-for {
  margin-top: var(--space-7);
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--slate-light);
  border-radius: var(--radius-card);
  padding: var(--space-5) var(--space-6);
}
.not-built-for__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-mid);
  margin-bottom: var(--space-2);
}
.not-built-for__body {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.65;
}

/* ============================================================
   Ownership contrast
   ============================================================ */
.ownership {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 900px) { .ownership { grid-template-columns: 1fr 1fr; } }

.ownership__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.ownership__card--rent {
  background: var(--surface);
  border-color: var(--border);
}
.ownership__card--own {
  background: var(--rose-soft);
  border-color: var(--rose-soft);
  border-top: 4px solid var(--rose);
}
.ownership__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-mid);
  margin-bottom: var(--space-3);
}
.ownership__card--own .ownership__label { color: var(--rose); }
.ownership__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}
.ownership__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.ownership__list li {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
}
.ownership__list svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 4px;
}
.ownership__card--rent .ownership__list svg { color: var(--slate-light); }
.ownership__card--own .ownership__list svg { color: var(--rose); }

.ownership__stamp {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  background: var(--ink);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}
.ownership__card--own .ownership__stamp { background: var(--rose); }

/* ============================================================
   Three modules (M1/M2/M3)
   ============================================================ */
.modules {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 760px) { .modules { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .modules { grid-template-columns: repeat(3, 1fr); } }

.module-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 4px solid var(--rose);
  border-radius: var(--radius-card);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}
.module-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -18px rgba(15, 23, 42, 0.18);
}
.module-card__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: var(--space-3);
}
.module-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--space-3);
  line-height: 1.2;
}
.module-card__days {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-mid);
  margin-bottom: var(--space-4);
}
.module-card__body {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: var(--space-5);
  flex-grow: 1;
}
.module-card__deliverables {
  font-size: 11px;
  font-weight: 500;
  color: var(--rose);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
}
.module-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
  font-size: 13px;
  font-weight: 500;
  color: var(--rose);
  text-decoration: none;
  border-bottom: 1px solid var(--rose-soft);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: border-color 0.15s ease-out;
}
.module-card__link:hover {
  border-color: var(--rose);
}
.module-card__link svg { width: 12px; height: 12px; }

/* ============================================================
   CTA dark block
   ============================================================ */
.cta-block {
  background: var(--gradient-cover);
  color: #fff;
  border-radius: var(--radius-card);
  padding: var(--space-7) var(--space-7);
  position: relative;
  overflow: hidden;
}
.cta-block__pre {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: var(--space-3);
}
.cta-block__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  color: #fff;
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.cta-block__body {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  max-width: 580px;
  margin-bottom: var(--space-5);
}
.cta-block__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: #fff;
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: 1px solid #fff;
  transition: transform 0.15s ease-out, background 0.15s ease-out, color 0.15s ease-out;
}
.cta-block__btn:hover {
  transform: translateY(-1px);
  background: var(--slate);
  color: #fff;
  border-color: var(--slate);
}
.cta-block__btn svg { width: 18px; height: 18px; }
.cta-block__support {
  display: inline-block;
  margin-left: var(--space-4);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 540px) { .cta-block__support { display: block; margin: var(--space-3) 0 0; } }

/* ============================================================
   Info box / surfaces
   ============================================================ */
.info-box {
  background: var(--rose-soft);
  border-left: 4px solid var(--rose);
  border-radius: var(--radius-card);
  padding: var(--space-5) var(--space-6);
}
.info-box__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: var(--space-3);
}
.info-box__body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
}

.neutral-box {
  background: var(--surface);
  border-left: 4px solid var(--slate-light);
  border-radius: var(--radius-card);
  padding: var(--space-5) var(--space-6);
}
.neutral-box__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-mid);
  margin-bottom: var(--space-2);
}
.neutral-box__body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink);
}

/* ============================================================
   Pull quote
   ============================================================ */
.pull-quote {
  border-left: 4px solid var(--rose);
  padding: var(--space-2) 0 var(--space-2) var(--space-5);
  margin: var(--space-7) 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-style: italic;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* ============================================================
   Engine diagram
   ============================================================ */
.engine {
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: var(--space-7) var(--space-6);
  border: 1px solid var(--border);
}
.engine__head {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  text-align: center;
  align-items: center;
}
.engine__head .label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-mid);
}
.engine__head h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.engine svg { margin: 0 auto; }
.engine__caption {
  margin-top: var(--space-5);
  font-size: 14px;
  color: var(--slate);
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ============================================================
   Process steps
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 700px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .process { grid-template-columns: repeat(5, 1fr); } }

.step {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--rose);
  border-radius: var(--radius-card);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  height: 100%;
  position: relative;
  transition: transform 0.2s ease-out;
}
.step:hover { transform: translateY(-2px); }
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--rose);
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-sans);
  flex-shrink: 0;
}
.step__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.step__body {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.6;
  margin-top: auto;
}

/* ============================================================
   Reversals (M1/M2/M3 floors)
   ============================================================ */
.reversals {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 760px) { .reversals { grid-template-columns: repeat(3, 1fr); } }

.reversal {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--rose);
  border-radius: var(--radius-card);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.reversal__head {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.reversal__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--rose);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: var(--radius-badge);
  text-transform: uppercase;
}
.reversal__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}
.reversal__body {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
}
.reversal__cond {
  font-size: 12px;
  color: var(--slate-mid);
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: var(--space-3);
  margin-top: auto;
}

/* ============================================================
   Demo / honest proof section
   ============================================================ */
.demo {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: var(--space-7) var(--space-7);
  display: grid;
  gap: var(--space-6);
}
@media (min-width: 900px) { .demo { grid-template-columns: 1fr 1fr; align-items: center; } }
.demo__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: var(--space-3);
}
.demo__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.demo__body {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: var(--space-5);
}
.demo__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-5) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.demo__list li {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  font-size: 14px;
  color: var(--slate);
  line-height: 1.55;
}
.demo__list svg { flex-shrink: 0; width: 16px; height: 16px; color: var(--rose); margin-top: 4px; }
.demo__figure {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: var(--space-5);
  box-shadow: 0 18px 36px -20px rgba(15, 23, 42, 0.18);
}
.demo__figure-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  background: var(--rose-soft);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-4);
}
.demo__live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
}

/* ============================================================
   Stats / KPI row
   ============================================================ */
.kpis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-6);
}
@media (min-width: 700px) { .kpis { grid-template-columns: repeat(4, 1fr); } }

.kpi {
  background: var(--rose-soft);
  border-radius: var(--radius-card);
  padding: var(--space-4) var(--space-5);
  text-align: left;
  color: var(--rose-deep);
}
.kpi--green { background: var(--kpi-green-bg); color: #047857; }
.kpi--rose { background: var(--kpi-rose-bg); color: var(--rose-deep); }
.kpi--rose .kpi__value { color: var(--rose-deep); }
.kpi--green .kpi__value { color: #047857; }
.kpi__label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
  color: var(--rose-deep);
}
.kpi--green .kpi__label { color: #047857; }
.kpi__value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 0;
  overflow: hidden;
  transition: border-color 0.15s ease-out;
}
.faq details[open] { border-color: var(--rose); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  letter-spacing: -0.01em;
  transition: background 0.15s ease-out;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: var(--surface); }
.faq summary::after {
  content: "+";
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 400;
  color: var(--rose);
  flex-shrink: 0;
  transition: transform 0.2s ease-out;
  line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq__answer {
  padding: 0 var(--space-6) var(--space-5);
  font-size: 14px;
  color: var(--slate);
  line-height: 1.65;
}
.faq__answer p + p { margin-top: var(--space-3); }
.faq__answer ul { margin: var(--space-3) 0 0; padding-left: var(--space-5); }
.faq__answer li { margin-bottom: var(--space-2); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-8) 0 var(--space-6);
  margin-top: var(--space-9);
}
.site-footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 1px;
}
.site-footer a:hover {
  color: #fff;
  border-color: var(--rose);
}
.site-footer__inner {
  display: grid;
  gap: var(--space-6);
}
@media (min-width: 760px) { .site-footer__inner { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }

.site-footer h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: var(--space-4);
  font-family: var(--font-sans);
}
.site-footer .brand {
  color: #fff;
  margin-bottom: var(--space-3);
}
.site-footer .brand svg { color: var(--rose); }
.site-footer__tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  max-width: 320px;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  font-size: 13px;
}
.site-footer__bottom {
  margin-top: var(--space-7);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
.site-footer__bottom em {
  font-family: var(--font-display);
  color: #F9A8D4;
  font-style: italic;
  font-size: 13px;
}

/* ============================================================
   Section: utility helpers
   ============================================================ */
.mt-7 { margin-top: var(--space-7); }

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   Very small screens
   ============================================================ */
@media (max-width: 380px) {
  .container { padding: 0 var(--space-4); }
  .hero { padding: var(--space-7) 0 var(--space-8); }
  .hero__title { font-size: 34px; }
  .hero__stats { grid-template-columns: 1fr; gap: var(--space-3); }
  .kpis { grid-template-columns: 1fr; }
}
