/* ============================================================
   ExternalOS docs site, Purple Diamond brand
   Cohesive with landing-page-v2.html. Warm-white surfaces,
   purple ramp, Libre Baskerville + Syne + Inter, mark rails,
   3D tilt on cards. Source of truth tokens/components live in
   brain/10-projects/externalos/landing-page-v2.html.
   Last cohesion pass: S127 (2026-04-16).
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --eos-p1: #DBC8F0; --eos-p2: #BEA0E0; --eos-p3: #9F72D0;
  --eos-p4: #8248BF; --eos-p5: #6525AB; --eos-p6: #4A1290;
  --purple-hero: #4B1196; --purple-deep: #3A0D72; --purple-rich: #5C1AB3;
  --purple-mid: #6B28C2; --purple-light: #8B4DD1; --purple-pale: #C4A8E8;
  --purple-ghost: #EDE5F9; --purple-tint: #F5F0FC;
  --warm-white: #FAF8F3; --warm-off: #F4F1EC; --warm-cream: #EDE8DF;
  --warm-sand: #D6CFBF; --warm-mid: #8C8378; --warm-dark: #3D3830;
  --ink: #1A1A1A; --body: #5C5650;
  --shadow-sm: 0 1px 3px rgba(26,26,26,0.08), 0 1px 2px rgba(26,26,26,0.04);
  --shadow-md: 0 4px 16px rgba(26,26,26,0.10), 0 2px 6px rgba(26,26,26,0.06);
  --shadow-lg: 0 12px 40px rgba(26,26,26,0.14), 0 4px 16px rgba(26,26,26,0.08);
  --shadow-purple: 0 8px 32px rgba(75,17,150,0.22), 0 2px 8px rgba(75,17,150,0.12);
  --shadow-purple-lg: 0 16px 48px rgba(75,17,150,0.28), 0 4px 16px rgba(75,17,150,0.16);
  --radius-sm: 6px; --radius-md: 12px; --radius-lg: 20px; --radius-xl: 28px;
}

html { font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  background: var(--warm-white);
  color: var(--ink);
  font-family: 'Inter', -apple-system, system-ui, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--eos-p6), var(--eos-p4), var(--eos-p2));
  z-index: 100;
}

h1, h2 { font-family: 'Libre Baskerville', Georgia, serif; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
h3 { font-family: 'Syne', sans-serif; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
h4 { font-family: 'Syne', sans-serif; font-weight: 600; color: var(--ink); }

a { color: var(--purple-hero); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; transition: color 0.15s ease; }
a:hover { color: var(--purple-deep); }
a:focus-visible { outline: 2px solid var(--purple-mid); outline-offset: 3px; border-radius: 3px; }

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

/* -- NAV -- */
.nav {
  padding: 28px 0 0;
  position: relative;
  z-index: 50;
  background: var(--warm-white);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.nav-brand-dot {
  width: 11px;
  height: 11px;
  background: var(--purple-hero);
  transform: rotate(45deg);
  display: inline-block;
  flex-shrink: 0;
}
.nav-brand-name {
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--warm-mid);
  text-decoration: none;
}
.nav-links a:hover { color: var(--purple-hero); }
.nav-links .nav-cta {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 9px 20px;
  border-radius: 100px;
  background: var(--purple-hero);
  color: #ffffff;
  transition: background 0.2s ease;
}
.nav-links .nav-cta:hover { background: var(--purple-deep); color: #ffffff; }

/* -- MARK RAILS (hero decor) -- */
.mark-rail {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50vw;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}
.mark-rail-left { left: 0; }
.mark-rail-right { right: 0; }
.mark-rail svg {
  position: absolute;
  top: 0;
  width: clamp(60px, calc((100vw - 880px) / 2), 200px);
  overflow: visible;
}
.mark-rail-left svg { left: 0; }
.mark-rail-right svg { right: 0; }
.mark-rail-left {
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 55%, transparent 100%);
  mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 55%, transparent 100%);
}
.mark-rail-right {
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 55%, transparent 100%);
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 55%, transparent 100%);
}
@media (max-width: 900px) { .mark-rail { display: none; } }

/* -- HERO -- */
.hero {
  padding: 72px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero > *:not(.mark-rail) { position: relative; z-index: 2; }
.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple-mid);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 22px;
}
.hero-eyebrow .nav-brand-dot { width: 7px; height: 7px; background: var(--purple-mid); }
.hero h1 {
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.04;
  margin: 0 auto;
  max-width: 760px;
  padding: 0 16px;
}
.hero h1 span {
  color: var(--purple-hero);
  font-style: italic;
}
.hero-lead {
  font-size: 17px;
  color: var(--warm-mid);
  line-height: 1.7;
  max-width: 620px;
  margin: 24px auto 0;
  padding: 0 16px;
}
.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 16px;
}
@media (max-width: 480px) { .hero { padding: 48px 0 48px; } }

/* -- CONTAINER / LAYOUT -- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
@media (max-width: 720px) { .container { padding: 0 22px; } .nav-inner { padding: 0 22px; } }

/* -- BUTTONS -- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--purple-hero); color: #ffffff; box-shadow: var(--shadow-purple); }
.btn-primary:hover { background: var(--purple-deep); color: #ffffff; box-shadow: var(--shadow-purple-lg); transform: translateY(1px); }
.btn-secondary, .btn-ghost {
  background: var(--warm-white);
  color: var(--purple-hero);
  border-color: var(--warm-cream);
}
.btn-secondary:hover, .btn-ghost:hover {
  background: var(--purple-tint);
  color: var(--purple-deep);
  border-color: var(--purple-pale);
}
.btn-lg { font-size: 16px; padding: 18px 32px; }

/* -- BADGES -- */
.badge {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--purple-ghost);
  color: var(--purple-hero);
}
.badge-blue { background: var(--purple-ghost); color: var(--purple-hero); }
.badge-amber { background: #F4EAD5; color: #8A6A1F; }
.badge-green { background: #E2F0E4; color: #2D6A3A; }
.badge-red { background: #F5E0DC; color: #8A2D1F; }

/* -- STAT ROW -- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 32px 0 40px;
}
.stat {
  background: var(--warm-white);
  border: 1px solid var(--warm-cream);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.stat:hover { border-color: var(--purple-pale); box-shadow: var(--shadow-md); }
.stat-value {
  font-family: 'Libre Baskerville', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--purple-hero);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-mid);
}
@media (max-width: 720px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }

/* -- DIVIDER -- */
.divider {
  height: 1px;
  background: var(--warm-cream);
  margin: 32px 0;
}

/* -- BUNDLE SECTIONS -- */
.bundle-section { padding: 32px 0 8px; }
.bundle-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--warm-cream);
}
.bundle-title {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.1;
  margin-bottom: 8px;
  max-width: 640px;
}
.bundle-desc {
  font-size: 14px;
  color: var(--warm-mid);
  line-height: 1.65;
  max-width: 580px;
}
.bundle-price {
  font-family: 'Libre Baskerville', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  text-align: right;
  white-space: nowrap;
}
.bundle-price small {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-mid);
  margin-left: 4px;
}
@media (max-width: 720px) {
  .bundle-header { flex-direction: column; align-items: flex-start; gap: 18px; }
  .bundle-price { text-align: left; }
}

/* -- CARD GRID + SKILL CARDS -- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 720px) { .card-grid { grid-template-columns: 1fr; } }

.skill-card {
  display: flex;
  flex-direction: column;
  background: var(--warm-white);
  border: 1px solid var(--warm-cream);
  border-radius: var(--radius-lg);
  padding: 26px 24px 24px;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.skill-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--eos-p5), var(--eos-p3));
  opacity: 0.85;
}
.skill-card:hover {
  border-color: var(--purple-pale);
  box-shadow: var(--shadow-md);
}
.skill-card-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 10px;
}
.skill-card-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--warm-mid);
}

/* -- FREE-TOOL BANNER (on-brand replacement for the navy inline div) -- */
.free-tool-banner {
  background: var(--warm-white);
  border: 1px solid var(--purple-pale);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.free-tool-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple-deep), var(--purple-mid), var(--eos-p3));
}
.free-tool-banner-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--purple-mid);
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.free-tool-banner-eyebrow::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--purple-mid);
}
.free-tool-banner-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.free-tool-banner-desc {
  font-size: 14.5px;
  color: var(--warm-mid);
  margin-top: 6px;
  max-width: 560px;
  line-height: 1.6;
}

/* -- PAIN/SOLUTION + FEATURE LIST + CTA + PROSE (skill pages) -- */
.pain-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}
.pain-solution > div {
  background: var(--warm-white);
  border: 1px solid var(--warm-cream);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
}
.pain-solution .col-pain { background: var(--warm-off); }
.pain-solution .col-solution { border-color: var(--purple-pale); position: relative; overflow: hidden; }
.pain-solution .col-solution::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--eos-p3), var(--eos-p5));
}
.pain-solution h3 {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--purple-hero);
}
.pain-solution .col-pain h3 { color: var(--warm-mid); }
.pain-solution ul { list-style: none; padding: 0; }
.pain-solution li {
  font-size: 14px;
  line-height: 1.6;
  padding: 8px 0 8px 22px;
  color: var(--warm-dark);
  position: relative;
}
.pain-solution .col-pain li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 14px;
  width: 10px;
  height: 2px;
  background: var(--warm-mid);
}
.pain-solution .col-solution li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  background: var(--purple-hero);
  transform: rotate(45deg);
}
@media (max-width: 720px) { .pain-solution { grid-template-columns: 1fr; } }

.feature-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}
.feature-list li {
  font-size: 15px;
  line-height: 1.7;
  padding: 12px 0 12px 26px;
  border-bottom: 1px solid var(--warm-cream);
  color: var(--warm-dark);
  position: relative;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 18px;
  width: 8px;
  height: 8px;
  background: var(--purple-hero);
  transform: rotate(45deg);
}
.feature-list li:last-child { border-bottom: none; }

.cta-block {
  background: var(--warm-off);
  border: 1px solid var(--warm-cream);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin: 40px 0;
  text-align: center;
}
.cta-block h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 28px;
  margin-bottom: 12px;
}
.cta-block p {
  color: var(--warm-mid);
  margin-bottom: 22px;
  font-size: 15px;
}

.prose {
  max-width: 720px;
  margin: 24px auto;
  font-size: 16px;
  line-height: 1.75;
  color: var(--warm-dark);
}
.prose h2 { font-size: 28px; margin: 32px 0 14px; }
.prose h3 { font-size: 20px; margin: 26px 0 10px; }
.prose p { margin-bottom: 16px; }
.prose ul, .prose ol { margin: 0 0 16px 22px; }
.prose li { margin-bottom: 6px; }

/* -- BREADCRUMB -- */
.breadcrumb {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--warm-mid);
  margin: 24px 0;
}
.breadcrumb a {
  color: var(--warm-mid);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--purple-hero); }
.breadcrumb .sep { margin: 0 8px; color: var(--warm-sand); }

/* -- NOTICE -- */
.notice {
  background: var(--purple-tint);
  border-left: 3px solid var(--purple-hero);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 14px;
  color: var(--warm-dark);
  line-height: 1.6;
}

/* -- FOOTER (canonical, shared across landing + tool + skill pages) -- */
.footer { padding: 56px 0 40px; border-top: 1px solid var(--warm-cream); margin-top: 24px; }
.footer .wrap { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; align-items: flex-start; }
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand-logo { display: flex; align-items: center; gap: 10px; }
.footer-brand .mark-wrap { width: 26px; height: 30px; display: flex; align-items: center; justify-content: center; position: relative; top: -1px; }
.footer-brand .wordmark { font-family: 'Libre Baskerville', serif; font-weight: 700; font-size: 18px; color: var(--ink); }
.footer-brand p { font-size: 12px; color: var(--warm-mid); line-height: 1.6; max-width: 260px; }
.footer-brand .footer-refund { font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.04em; color: var(--purple-hero); margin-top: 4px; }
.footer h5 { font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); margin-bottom: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 8px; }
.footer ul li a { font-size: 13px; color: var(--warm-mid); text-decoration: none; }
.footer ul li a:hover { color: var(--purple-hero); }
.footer-bottom { margin-top: 48px; padding-top: 20px; border-top: 1px solid var(--warm-cream); display: flex; justify-content: space-between; align-items: center; font-size: 11px; letter-spacing: 0.06em; color: var(--warm-mid); }
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: var(--purple-hero); }
.footer-bottom .full-stop { display: inline-block; width: 7px; height: 7px; border-radius: 0; background: var(--eos-p6); vertical-align: middle; margin: 0 6px; transform: rotate(45deg); }
@media (max-width: 760px) { .footer .wrap { padding: 0 22px; } .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; } .footer-bottom { flex-direction: column; gap: 12px; text-align: center; } }
@media (max-width: 480px) { .footer-inner { grid-template-columns: 1fr; } }

/* -- REDUCED MOTION -- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .skill-card { transform: none !important; }
}

/* ============================================================
   EMAIL CAPTURE COMPONENT (.eos-card-*)
   Editorial card, Purple Diamond design system. Source of truth:
   brain/10-projects/skills-pipeline/email-capture.html
   Integrated S127 (2026-04-16) into index.html (Issue 01 Generic)
   and ir35-checker.html (Issue 02 IR35).
   Site is now warm-white throughout, the card sits on it as a
   raised editorial plate rather than a contrast card.
   ============================================================ */

.eos-card {
  --eos-p1: #DBC8F0;
  --eos-p2: #BEA0E0;
  --eos-p3: #9F72D0;
  --eos-p4: #8248BF;
  --eos-p5: #6525AB;
  --eos-p6: #4A1290;
  --eos-purple-hero: #4B1196;
  --eos-purple-deep: #3A0D72;
  --eos-purple-rich: #5C1AB3;
  --eos-purple-mid: #6B28C2;
  --eos-purple-ghost: #EDE5F9;
  --eos-purple-tint: #F5F0FC;
  --eos-warm-white: #FAF8F5;
  --eos-warm-off: #F4F1EC;
  --eos-warm-cream: #EDE8DF;
  --eos-warm-sand: #D6CFBF;
  --eos-warm-mid: #8C8378;
  --eos-warm-dark: #3D3830;
  --eos-ink: #1E1A16;
  --eos-body: #5C5650;
  --eos-shadow-sm: 0 1px 3px rgba(30,26,22,0.06), 0 1px 2px rgba(30,26,22,0.04);
  --eos-shadow-md: 0 4px 16px rgba(30,26,22,0.08), 0 2px 6px rgba(30,26,22,0.04);
  --eos-shadow-lg: 0 20px 56px rgba(30,26,22,0.10), 0 6px 20px rgba(30,26,22,0.06);
  --eos-shadow-purple: 0 8px 28px rgba(75,17,150,0.22), inset 0 1px 0 rgba(255,255,255,0.14);

  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--eos-warm-white);
  color: var(--eos-ink);
  border: 1px solid var(--eos-warm-cream);
  border-radius: 20px;
  box-shadow: var(--eos-shadow-lg);
  max-width: 820px;
  margin: 64px auto;
  padding: 0;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
}
.eos-card *,
.eos-card *::before,
.eos-card *::after { box-sizing: border-box; }

.eos-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--eos-purple-deep) 0%, var(--eos-purple-mid) 50%, var(--eos-p2) 100%);
  z-index: 3;
}

.eos-card-masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 40px 18px;
  border-bottom: 1px solid var(--eos-warm-cream);
  background: var(--eos-warm-off);
}
.eos-card-issue {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--eos-purple-mid);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eos-card-issue::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--eos-purple-mid);
}
.eos-card-issue-sep { color: var(--eos-warm-sand); font-weight: 400; padding: 0 4px; }
.eos-card-issue-pub { color: var(--eos-warm-mid); }

.eos-card-mark { width: 22px; height: 22px; flex-shrink: 0; display: block; }

.eos-card-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 48px;
  padding: 44px 40px 40px;
  align-items: start;
  position: relative;
}

.eos-card-copy { position: relative; z-index: 2; min-width: 0; }
.eos-card-eyebrow {
  font-family: 'Syne', 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--eos-warm-mid);
  margin: 0 0 18px;
  display: block;
}
.eos-card-headline {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(30px, 4.2vw, 44px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.022em;
  color: var(--eos-ink);
  margin: 0 0 20px;
}
.eos-card-headline .accent {
  color: var(--eos-purple-hero);
  position: relative;
  display: inline-block;
}
.eos-card-headline .accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.16em;
  background: var(--eos-p1);
  opacity: 0.55;
  z-index: -1;
}
.eos-card-lede {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.72;
  color: var(--eos-body);
  margin: 0 0 12px;
  max-width: 440px;
}
.eos-card-lede em {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  color: var(--eos-warm-dark);
}
.eos-card-meta {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--eos-warm-mid);
  margin: 0 0 32px;
  line-height: 1.55;
}

.eos-card-ornament {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 260px;
}
.eos-card-numeral {
  position: absolute;
  inset: 0;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 700;
  font-size: clamp(180px, 22vw, 260px);
  line-height: 0.78;
  color: var(--eos-purple-ghost);
  letter-spacing: -0.05em;
  user-select: none;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  opacity: 0.9;
}
.eos-card-diamond {
  position: relative;
  width: clamp(150px, 18vw, 210px);
  height: clamp(150px, 18vw, 210px);
  z-index: 2;
}

.eos-card-pencil {
  grid-column: 1 / -1;
  display: block;
  width: 100%;
  height: 10px;
  margin: 4px 0 28px;
  color: var(--eos-warm-sand);
}

.eos-card-form { grid-column: 1 / -1; margin: 0; position: relative; z-index: 2; }
.eos-card-field { display: block; margin-bottom: 18px; }
.eos-card-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--eos-warm-mid);
  margin-bottom: 8px;
}
.eos-card-row { display: flex; gap: 12px; flex-wrap: wrap; }
.eos-card-input {
  flex: 1 1 260px;
  min-width: 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  padding: 14px 16px;
  border: 1px solid var(--eos-warm-cream);
  border-radius: 10px;
  background: var(--eos-warm-white);
  color: var(--eos-ink);
  line-height: 1.3;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: var(--eos-shadow-sm);
}
.eos-card-input::placeholder { color: var(--eos-warm-mid); font-style: italic; opacity: 0.7; }
.eos-card-input:focus {
  outline: none;
  border-color: var(--eos-purple-mid);
  box-shadow: 0 0 0 3px var(--eos-purple-ghost);
  background: #FFFFFF;
}
.eos-card-input[aria-invalid="true"] {
  border-color: #C23B2B;
  box-shadow: 0 0 0 3px rgba(194, 59, 43, 0.12);
}

.eos-card-btn {
  flex: 0 0 auto;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 14px 26px;
  background: linear-gradient(160deg, var(--eos-purple-rich) 0%, var(--eos-purple-deep) 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: var(--eos-shadow-purple);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eos-card-btn::after {
  content: '\2192';
  font-family: 'Libre Baskerville', serif;
  font-weight: 400;
  transition: transform 0.2s ease;
}
.eos-card-btn:hover:not(:disabled) {
  background: linear-gradient(160deg, var(--eos-purple-deep) 0%, #2F0E6B 100%);
}
.eos-card-btn:hover:not(:disabled)::after { transform: translateX(3px); }
.eos-card-btn:active:not(:disabled) {
  transform: translateY(1px);
  box-shadow: 0 2px 8px rgba(75, 17, 150, 0.22), inset 0 2px 4px rgba(0, 0, 0, 0.18);
}
.eos-card-btn:focus-visible { outline: 3px solid var(--eos-purple-ghost); outline-offset: 2px; }
.eos-card-btn:disabled { opacity: 0.55; cursor: wait; }

.eos-card-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 13px;
  line-height: 1.6;
  color: var(--eos-body);
  margin-top: 6px;
  max-width: 560px;
}
.eos-card-consent input[type="checkbox"] {
  flex-shrink: 0;
  margin: 4px 0 0;
  width: 14px;
  height: 14px;
  accent-color: var(--eos-purple-hero);
  cursor: pointer;
}
.eos-card-consent label { cursor: pointer; }
.eos-card-consent a {
  color: var(--eos-purple-hero);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.eos-card-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.eos-card-status {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.55;
  min-height: 0;
  font-family: 'Inter', sans-serif;
}
.eos-card-status.is-error {
  color: #8A1F12;
  padding: 10px 14px;
  background: rgba(194, 59, 43, 0.06);
  border-left: 3px solid #C23B2B;
  border-radius: 0 6px 6px 0;
}
.eos-card-success { grid-column: 1 / -1; padding: 12px 0 0; }
.eos-card-success-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--eos-purple-mid);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.eos-card-success-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--eos-purple-mid);
}
.eos-card-success-head {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--eos-ink);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  line-height: 1.2;
}
.eos-card-success-detail {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: var(--eos-body);
  margin: 0;
  max-width: 520px;
}

.eos-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 40px 22px;
  border-top: 1px solid var(--eos-warm-cream);
  background: var(--eos-warm-off);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--eos-warm-mid);
}
.eos-card-footer-meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.eos-card-footer-meta span.sep { color: var(--eos-warm-sand); font-weight: 400; }
.eos-card-footer-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--eos-purple-deep);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--eos-purple-ghost);
}

@media (max-width: 720px) {
  .eos-card { margin: 40px 16px; border-radius: 16px; }
  .eos-card-masthead { padding: 18px 24px 16px; flex-wrap: wrap; gap: 12px; }
  .eos-card-grid { grid-template-columns: 1fr; gap: 28px; padding: 32px 24px 28px; }
  .eos-card-ornament { order: -1; min-height: 160px; justify-content: flex-start; }
  .eos-card-numeral { font-size: clamp(140px, 40vw, 190px); justify-content: flex-start; padding-left: 0; }
  .eos-card-diamond { width: 140px; height: 140px; margin-left: auto; }
  .eos-card-footer { padding: 16px 24px 20px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .eos-card-row { flex-direction: column; }
  .eos-card-input { flex: 0 0 auto; width: 100%; }
  .eos-card-btn { flex: 0 0 auto; width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .eos-card-headline { font-size: 28px; }
  .eos-card-issue-pub { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .eos-card-input,
  .eos-card-btn,
  .eos-card-btn::after { transition: none; }
}

/* -----------------------------------------------------
   MIGRATED FROM LANDING PAGE INLINE CSS (for page cohesion)
   Added S129, 2026-04-17, landing-parity for skill pages + ir35-checker
   ----------------------------------------------------- */
<style>
 /* RESET AND TOKENS */
 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 :root {
  --eos-p1: #DBC8F0; --eos-p2: #BEA0E0; --eos-p3: #9F72D0;
  --eos-p4: #8248BF; --eos-p5: #6525AB; --eos-p6: #4A1290;
  --purple-hero: #4B1196; --purple-deep: #3A0D72; --purple-rich: #5C1AB3;
  --purple-mid: #6B28C2; --purple-light: #8B4DD1; --purple-pale: #C4A8E8;
  --purple-ghost: #EDE5F9; --purple-tint: #F5F0FC;
  --warm-white: #FAF8F3; --warm-off: #F4F1EC; --warm-cream: #EDE8DF;
  --warm-sand: #D6CFBF; --warm-mid: #6E665C; --warm-dark: #3D3830;
  --ink: #1A1A1A; --body: #5C5650;
  --shadow-sm: 0 1px 3px rgba(26,26,26,0.08), 0 1px 2px rgba(26,26,26,0.04);
  --shadow-md: 0 4px 16px rgba(26,26,26,0.10), 0 2px 6px rgba(26,26,26,0.06);
  --shadow-lg: 0 12px 40px rgba(26,26,26,0.14), 0 4px 16px rgba(26,26,26,0.08);
  --shadow-purple: 0 8px 32px rgba(75,17,150,0.22), 0 2px 8px rgba(75,17,150,0.12);
  --shadow-purple-lg: 0 16px 48px rgba(75,17,150,0.28), 0 4px 16px rgba(75,17,150,0.16);
  --radius-sm: 6px; --radius-md: 12px; --radius-lg: 20px; --radius-xl: 28px;
  --type-h1: clamp(44px, 6vw, 80px); --type-h2: clamp(32px, 4vw, 53px);
  --type-h3: clamp(22px, 2.4vw, 32px); --type-lede: 18px; --type-body: 16px;
 }
 html { font-size: 16px; -webkit-font-smoothing: antialiased; }
 body { background: var(--warm-white); color: var(--ink); font-family: 'Inter', -apple-system, system-ui, sans-serif; font-size: var(--type-body); line-height: 1.6; overflow-x: hidden; }
 body::before { content: ''; position: fixed; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--eos-p6), var(--eos-p4), var(--eos-p2)); z-index: 100; }
 h1, h2 { font-family: 'Libre Baskerville', Georgia, serif; font-weight: 700; letter-spacing: -0.02em; }
 h3 { font-family: 'Syne', sans-serif; font-weight: 600; letter-spacing: -0.01em; }
 h4 { font-family: 'Syne', sans-serif; font-weight: 600; }
 a { color: var(--purple-hero); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
 a:hover { color: var(--purple-deep); }
 a:focus-visible { outline: 2px solid var(--purple-mid); outline-offset: 3px; border-radius: 3px; }
 .wrap { max-width: 1100px; margin: 0 auto; padding: 0 40px; position: relative; z-index: 2; }
 @media (max-width: 720px) { .wrap { padding: 0 22px; } }
 .eyebrow { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--purple-mid); display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; }
 .eyebrow::before { content: ''; display: inline-block; width: 20px; height: 2px; background: var(--purple-mid); }
 .hero-copy .eyebrow::before, .how-inner .eyebrow::before { display: none; }
 .hero-copy .eyebrow, .how-inner .eyebrow { gap: 0; justify-content: center; }
 .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

 /* MASTHEAD */
 .masthead { padding: 32px 0 0; position: relative; z-index: 10; }
 .masthead-inner { display: flex; justify-content: space-between; align-items: center; }
 .masthead-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
 .masthead-brand .mark-wrap { width: 24px; height: 28px; display: flex; align-items: center; justify-content: center; position: relative; top: -1px; }
 .masthead-brand .wordmark { font-family: 'Libre Baskerville', serif; font-weight: 700; font-size: 17px; letter-spacing: -0.02em; color: var(--ink); }
 .masthead-brand .wordmark span { color: var(--warm-sand); }
 .masthead-nav { display: flex; align-items: center; gap: 28px; }
 .masthead-nav a { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500; color: var(--warm-mid); text-decoration: none; transition: color 0.15s ease; }
 .masthead-nav a:hover { color: var(--purple-hero); }
 .masthead-nav .btn-nav { font-family: 'Syne', sans-serif; font-weight: 600; font-size: 13px; padding: 9px 20px; border-radius: 100px; background: var(--purple-hero); color: #fff; text-decoration: none; transition: background 0.2s ease; }
 .masthead-nav .btn-nav:hover { background: var(--purple-deep); color: #fff; }
 @media (max-width: 640px) { .masthead-nav > a:not(.btn-nav) { display: none; } .masthead-nav .skills-dropdown { display: none; } .masthead-nav .btn-nav { font-size: 12px; padding: 8px 14px; white-space: nowrap; } .masthead-brand .wordmark { font-size: 15px; } .masthead { padding: 20px 0 0; } }

 /* ---------------------------------------------------------------
    MARK RAILS - static, hero-only decor. No scroll animation.
    Rails live inside the hero so they scroll away naturally
    as the user moves down. Diamond cluster centered on the H1.
    --------------------------------------------------------------- */
 .mark-rail {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50vw;
  z-index: 110;
  pointer-events: none;
  overflow: visible;
 }
 .mark-rail-left { left: 0; }
 .mark-rail-right { right: 0; }
 .mark-rail svg {
  position: absolute;
  top: 0;
  /* Scales with viewport; never wider than the gap between hero text and screen edge.
     Hero text caps at 700px wide; we keep an ~80px breathing buffer on each side. */
  width: clamp(60px, calc((100vw - 960px) / 2), 200px);
  overflow: visible;
 }
 .mark-rail-left svg { left: 0; }
 .mark-rail-right svg { right: 0; }
 /* Solid at screen edge, fading toward content center */
 .mark-rail-left {
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 55%, transparent 100%);
  mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 55%, transparent 100%);
 }
 .mark-rail-right {
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 55%, transparent 100%);
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 55%, transparent 100%);
 }
 @media (max-width: 900px) {
  .mark-rail { display: none; }
 }


 /* HERO */
 .hero { padding: 80px 0 88px; position: relative; }
 .hero-inner { max-width: 880px; margin: 0 auto; text-align: center; }
 .hero-copy { position: relative; z-index: 2; }
 .hero h1 { font-size: var(--type-h1); line-height: 1.04; color: var(--ink); }
 .hero h1 .accent { color: var(--purple-hero); }
 .hero p.lede { font-size: var(--type-lede); color: var(--warm-mid); max-width: 680px; margin: 40px auto 0; line-height: 1.75; }
 .hero p.lede strong { color: var(--warm-dark); font-weight: 500; }
 .hero .divider { width: 120px; height: 3px; background: linear-gradient(90deg, var(--purple-hero), var(--purple-mid), var(--purple-pale)); border-radius: 2px; margin: 0 auto 26px; }
 .hero .cta-row { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; justify-content: center; }
 .hero .proof-line { margin-top: 20px; font-size: 13px; color: var(--warm-mid); display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: center; }
 .hero .proof-line .proof-item { display: inline-flex; align-items: center; gap: 6px; }
 .hero .proof-line .proof-dot { width: 6px; height: 6px; border-radius: 0; background: var(--purple-mid); transform: rotate(45deg); }
 @media (max-width: 480px) { .hero { padding: 56px 0 64px; } .hero h1 { font-size: 38px; line-height: 1.06; } .hero p.lede { font-size: 16px; } }

 /* HERO TRUST (in-hero, under CTAs and proof-line) */
 .hero-trust { margin: 28px auto 0; max-width: 640px; padding: 16px 22px; background: var(--warm-off); border: 1px solid var(--warm-cream); border-radius: var(--radius-md); display: flex; flex-direction: column; gap: 10px; align-items: flex-start; text-align: left; }
 .hero-trust-item { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--warm-dark); display: flex; align-items: flex-start; gap: 12px; line-height: 1.55; }
 .hero-trust-item .ht-text { flex: 1 1 auto; min-width: 0; }
 .hero-trust-item strong { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--purple-hero); letter-spacing: 0.01em; }
 .hero-trust-item a { color: var(--purple-hero); }
 .hero-trust-item .ht-dot { width: 8px; height: 8px; background: var(--purple-hero); transform: rotate(45deg); display: inline-block; flex-shrink: 0; margin-top: 7px; }
 @media (max-width: 720px) { .hero-trust { padding: 14px 16px; margin-top: 22px; } .hero-trust-item { font-size: 12.5px; } }

 /* BUTTONS */
 .btn { display: inline-flex; align-items: center; gap: 10px; font-family: 'Syne', sans-serif; font-weight: 600; font-size: 14px; letter-spacing: 0.02em; text-decoration: none; padding: 14px 24px; border-radius: 100px; border: 1px solid transparent; cursor: pointer; transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease; }
 .btn-primary { background: var(--purple-hero); color: #ffffff; box-shadow: var(--shadow-purple); }
 .btn-primary:hover { background: var(--purple-deep); color: #ffffff; box-shadow: var(--shadow-purple-lg); transform: translateY(1px); }
 .btn-secondary { background: var(--warm-white); color: var(--purple-hero); border-color: var(--warm-cream); }
 .btn-secondary:hover { background: var(--purple-tint); color: var(--purple-deep); border-color: var(--purple-pale); }
 .btn-lg { font-size: 16px; padding: 18px 36px; }
 .btn svg { width: 14px; height: 14px; }

 /* HOW IT WORKS */
 .how { padding: 64px 0 56px; border-top: 1px solid var(--warm-cream); position: relative; }
 .how-inner { max-width: 720px; margin: 0 auto; text-align: center; }
 .how h2 { font-size: var(--type-h2); line-height: 1.08; color: var(--ink); margin-bottom: 20px; }
 .how h2 em { font-style: italic; color: var(--purple-hero); }
 .how-inner > p { font-size: var(--type-lede); line-height: 1.75; color: var(--warm-dark); max-width: 600px; margin: 0 auto 14px; }
 .how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; max-width: 960px; margin-left: auto; margin-right: auto; }
 .how-step { position: relative; padding: 32px 24px 28px; background: var(--warm-white); border: 1px solid var(--warm-cream); border-radius: var(--radius-lg); text-align: center; }
 .how-step-num { font-family: 'Libre Baskerville', serif; font-size: 44px; font-weight: 700; color: var(--eos-p3); line-height: 1; margin-bottom: 14px; }
 .how-step h4 { font-size: 15px; letter-spacing: 0.02em; color: var(--purple-hero); margin-bottom: 10px; }
 .how-step p { font-size: 14px; line-height: 1.65; color: var(--warm-mid); }
 @media (max-width: 720px) { .how-steps { grid-template-columns: 1fr; max-width: 520px; gap: 16px; } }

 /* FEATURED PRODUCT */
 .featured-product { padding: 48px 0 0; position: relative; }
 .featured-card { background: linear-gradient(135deg, #1A0A38 0%, #0F0523 60%, #1A0A38 100%); border-radius: var(--radius-xl); padding: 52px 48px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; position: relative; overflow: hidden; transform-style: preserve-3d; z-index: 5; }
 .featured-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--eos-p1), var(--eos-p3), var(--eos-p5)); }
 .featured-card .glow { position: absolute; inset: 0; border-radius: inherit; opacity: 0; transition: opacity 0.4s ease; background: radial-gradient(600px circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(101, 37, 171, 0.12), transparent 60%); pointer-events: none; z-index: 1; }
 .featured-card:hover .glow { opacity: 1; }
 .featured-copy { position: relative; z-index: 2; }
 .featured-copy .product-label { font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--eos-p2); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
 .featured-copy .product-label-dot { width: 7px; height: 7px; border-radius: 0; background: var(--eos-p2); transform: rotate(45deg); }
 .featured-copy h3 { font-family: 'Libre Baskerville', serif; font-size: clamp(28px, 3.5vw, 40px); font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 16px; }
 .featured-copy .product-type-badge { display: inline-block; font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; background: var(--eos-p5); color: #fff; padding: 4px 12px; border-radius: 100px; margin-bottom: 18px; }
 .featured-copy p { font-size: 15px; line-height: 1.7; color: var(--purple-pale); max-width: 420px; margin-bottom: 28px; }
 .featured-pricing { display: flex; align-items: baseline; gap: 16px; margin-bottom: 24px; }
 .featured-pricing .price { font-family: 'Libre Baskerville', serif; font-size: 48px; font-weight: 700; color: #fff; line-height: 1; }
 .featured-pricing .price-meta { font-size: 13px; color: var(--purple-pale); line-height: 1.5; }
 .featured-copy .buy-links a { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 600; color: var(--eos-p1); text-decoration: none; display: inline-flex; align-items: center; gap: 5px; transition: color 0.15s ease; }
 .featured-copy .buy-links a:hover { color: #fff; }
 .featured-copy .buy-links .sep { width: 1px; height: 14px; background: var(--eos-p5); }
 .featured-visual { position: relative; z-index: 2; }
 .featured-skill-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
 .featured-skill-list li { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 500; color: var(--purple-pale); padding: 10px 14px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-sm); display: flex; align-items: center; gap: 8px; }
 .featured-skill-list li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--eos-p3); flex-shrink: 0; }
 @media (max-width: 800px) { .featured-card { grid-template-columns: 1fr; padding: 40px 28px; gap: 32px; } }
 @media (max-width: 480px) { .featured-card { padding: 32px 22px; } .featured-skill-list { grid-template-columns: 1fr; } }

 /* PRODUCTS GRID */
 .products { padding: 32px 0 64px; position: relative; }
 .products-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--warm-cream); }
 .products-head h2 { font-size: var(--type-h3); color: var(--ink); max-width: 520px; }
 .products-head h2 em { font-style: italic; color: var(--purple-hero); }
 .products-head p { font-size: 13px; color: var(--warm-mid); text-align: right; line-height: 1.6; }
 @media (max-width: 720px) { .products-head { flex-direction: column; align-items: flex-start; } .products-head p { text-align: left; } }
 .product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
 @media (max-width: 560px) { .product-grid { grid-template-columns: 1fr; } }
 .product-card { background: var(--warm-white); border: 1px solid var(--warm-cream); border-radius: var(--radius-lg); padding: 28px 24px 24px; display: flex; flex-direction: column; position: relative; overflow: hidden; transform-style: preserve-3d; will-change: transform; z-index: 5; }
 .product-card-featured { padding-top: 48px; }
 .product-card-badge { position: absolute; top: 14px; right: 14px; font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; background: var(--purple-hero); color: #fff; padding: 5px 14px; border-radius: 100px; box-shadow: 0 2px 8px rgba(75,17,150,0.2); z-index: 6; }
 @media (max-width: 720px) { .product-card-featured { padding-top: 56px; } .product-card-badge { top: 14px; right: 14px; } }
 .product-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--eos-p5), var(--eos-p3)); }
 .product-label { font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--purple-mid); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
 .product-label-dot { width: 7px; height: 7px; border-radius: 0; background: var(--eos-p6); transform: rotate(45deg); }
 .product-name { font-family: 'Libre Baskerville', serif; font-size: 21px; font-weight: 700; line-height: 1.15; color: var(--ink); margin-bottom: 12px; }
 .product-type-badge { display: inline-block; font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; background: var(--purple-ghost); color: var(--purple-hero); padding: 4px 10px; border-radius: 100px; margin-bottom: 14px; }
 .product-desc { font-size: 13px; line-height: 1.65; color: var(--warm-mid); margin-bottom: 24px; flex: 1 1 auto; }
 .product-price { font-family: 'Libre Baskerville', serif; font-size: 32px; font-weight: 700; color: var(--ink); line-height: 1; margin-bottom: 4px; }
 .product-price small { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--warm-mid); margin-left: 6px; }
 .buy-links { margin-top: 18px; display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
 .buy-links a { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.02em; color: var(--purple-hero); text-decoration: none; display: inline-flex; align-items: center; gap: 5px; transition: color 0.15s ease; }
 .buy-links a:hover { color: var(--purple-deep); }
 .buy-links a svg { width: 12px; height: 12px; }
 .buy-links .sep { width: 1px; height: 14px; background: var(--warm-sand); }

 /* LAUNCH PRICING */
 .launch-pricing { padding: 24px 0 40px; text-align: center; }
 .launch-pricing-inner { display: inline-flex; align-items: center; gap: 10px; font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--purple-hero); background: var(--purple-ghost); padding: 10px 22px; border-radius: 100px; border: 1px solid var(--purple-pale); }
 .launch-pricing-inner span.dot { width: 6px; height: 6px; background: var(--purple-hero); border-radius: 0; transform: rotate(45deg); display: inline-block; }
 .launch-pricing-inner strong { font-family: 'Syne', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink); font-size: 12px; }
 @media (max-width: 560px) { .launch-pricing-inner { font-size: 11px; padding: 8px 16px; letter-spacing: 0.1em; } }

 /* WHY NOT CHATGPT */
 .why-not { padding: 72px 0 56px; border-top: 1px solid var(--warm-cream); }
 .why-not-head { text-align: center; max-width: 620px; margin: 0 auto 44px; }
 .why-not-head h2 { font-size: var(--type-h2); line-height: 1.08; color: var(--ink); margin-bottom: 14px; }
 .why-not-head h2 em { font-style: italic; color: var(--purple-hero); }
 .why-not-head p { font-size: 15px; color: var(--warm-mid); line-height: 1.7; }
 .why-not-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 960px; margin: 0 auto; }
 .why-not-col { padding: 32px 28px; border-radius: var(--radius-lg); position: relative; overflow: hidden; }
 .why-not-col.col-chatgpt { background: var(--warm-off); border: 1px solid var(--warm-sand); }
 .why-not-col.col-eos { background: var(--warm-white); border: 1px solid var(--purple-pale); }
 .why-not-col.col-eos::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--eos-p3), var(--eos-p5)); }
 .why-not-col h3 { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 22px; }
 .why-not-col.col-chatgpt h3 { color: var(--warm-mid); }
 .why-not-col.col-eos h3 { color: var(--purple-hero); }
 .why-not-col ul { list-style: none; }
 .why-not-col li { font-size: 14px; line-height: 1.6; padding: 10px 0 10px 24px; border-bottom: 1px solid var(--warm-cream); color: var(--warm-dark); position: relative; }
 .why-not-col li:last-child { border-bottom: none; }
 .why-not-col.col-chatgpt li::before { content: ''; position: absolute; left: 2px; top: 16px; width: 10px; height: 2px; background: var(--warm-mid); }
 .why-not-col.col-eos li::before { content: ''; position: absolute; left: 0; top: 14px; width: 8px; height: 8px; background: var(--purple-hero); transform: rotate(45deg); }
 @media (max-width: 720px) { .why-not-grid { grid-template-columns: 1fr; } }

 /* FOUNDER NOTE */
 .founder { padding: 72px 0 40px; border-top: 1px solid var(--warm-cream); }
 .founder-inner { max-width: 720px; margin: 0 auto; text-align: center; }
 .founder-eyebrow { font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--purple-mid); margin-bottom: 18px; }
 .founder-inner h3 { font-family: 'Libre Baskerville', serif; font-size: clamp(24px, 2.6vw, 32px); line-height: 1.25; color: var(--ink); margin-bottom: 22px; font-weight: 400; font-style: italic; }
 .founder-inner p { font-size: 15px; line-height: 1.8; color: var(--warm-dark); margin-bottom: 14px; text-align: left; }
 .founder-pull { margin: 28px auto; padding: 18px 22px; background: var(--purple-tint); border-left: 3px solid var(--purple-hero); border-radius: 0 var(--radius-md) var(--radius-md) 0; font-family: 'Libre Baskerville', serif; font-style: italic; font-size: 17px; line-height: 1.5; color: var(--ink); max-width: 580px; text-align: left; }
 .founder-sig { margin-top: 22px; font-family: 'Libre Baskerville', serif; font-style: italic; font-size: 15px; color: var(--purple-hero); }
 .founder-sig a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
 .founder-sig a:hover { color: var(--purple-deep); }

 /* FILE PREVIEW */
 .file-preview { padding: 24px 0 56px; }
 .file-preview-head { text-align: center; max-width: 620px; margin: 0 auto 32px; }
 .file-preview-head h2 { font-size: var(--type-h3); line-height: 1.1; color: var(--ink); margin-bottom: 12px; }
 .file-preview-head h2 em { font-style: italic; color: var(--purple-hero); }
 .file-preview-head p { font-size: 14px; line-height: 1.7; color: var(--warm-dark); }
 .file-preview-window { max-width: 880px; margin: 0 auto; border: 1px solid var(--warm-cream); border-radius: var(--radius-lg); overflow: hidden; background: var(--warm-white); box-shadow: var(--shadow-md); }
 .file-preview-bar { background: var(--warm-off); border-bottom: 1px solid var(--warm-cream); padding: 12px 18px; display: flex; align-items: center; gap: 12px; font-family: 'Inter', sans-serif; font-size: 12px; color: var(--warm-mid); }
 .file-preview-bar-dots { display: inline-flex; gap: 6px; }
 .file-preview-bar-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--warm-sand); }
 .file-preview-bar-name { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--warm-dark); font-weight: 500; }
 .file-preview-bar-meta { margin-left: auto; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--warm-mid); }
 .file-preview-body { padding: 28px 32px; font-family: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace; font-size: 13px; line-height: 1.75; color: var(--warm-dark); background: var(--warm-white); }
 .file-preview-body .fp-h1 { font-family: 'Libre Baskerville', serif; font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.01em; }
 .file-preview-body .fp-meta { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--warm-mid); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--warm-cream); }
 .file-preview-body .fp-h2 { font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--purple-hero); margin: 18px 0 10px; }
 .file-preview-body .fp-h2:first-of-type { margin-top: 0; }
 .file-preview-body .fp-h3 { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 600; color: var(--ink); margin: 12px 0 6px; }
 .file-preview-body p { font-family: 'JetBrains Mono', monospace; font-size: 13px; line-height: 1.75; color: var(--warm-dark); margin-bottom: 8px; }
 .file-preview-body code { background: var(--purple-tint); color: var(--purple-deep); padding: 1px 6px; border-radius: 4px; font-size: 12.5px; }
 .file-preview-body ul { list-style: none; padding-left: 0; margin-bottom: 10px; }
 .file-preview-body ul li { padding-left: 18px; position: relative; margin-bottom: 4px; font-size: 13px; }
 .file-preview-body ul li::before { content: '\2192'; position: absolute; left: 0; color: var(--purple-hero); }
 .file-preview-body .fp-cite { background: var(--purple-tint); border-left: 3px solid var(--purple-hero); padding: 10px 14px; margin: 12px 0; font-family: 'Inter', sans-serif; font-size: 12.5px; color: var(--warm-dark); border-radius: 0 6px 6px 0; }
 .file-preview-body .fp-cite strong { color: var(--purple-hero); font-weight: 700; }
 .file-preview-foot { padding: 16px 22px; background: var(--warm-off); border-top: 1px solid var(--warm-cream); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-family: 'Inter', sans-serif; font-size: 12px; color: var(--warm-mid); }
 .file-preview-foot a { color: var(--purple-hero); }
 @media (max-width: 720px) { .file-preview-body { padding: 22px 22px; font-size: 12.5px; } .file-preview-bar-meta { display: none; } }
 @media (max-width: 480px) { .file-preview-window { max-width: 100%; } .file-preview-body { padding: 18px 16px; font-size: 12px; overflow-x: auto; -webkit-overflow-scrolling: touch; } .file-preview-body .fp-h1 { font-size: 18px; } .file-preview-body pre, .file-preview-body code { white-space: pre-wrap; word-break: break-word; } }

 /* BEHIND EXTERNALOS */
 .behind { padding: 32px 0 72px; }
 .behind-head { text-align: center; max-width: 620px; margin: 0 auto 36px; }
 .behind-head h2 { font-size: var(--type-h3); line-height: 1.1; color: var(--ink); margin: 14px 0 12px; }
 .behind-head h2 em { font-style: italic; color: var(--purple-hero); }
 .behind-head p { font-size: 14px; line-height: 1.7; color: var(--warm-dark); }
 .behind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1000px; margin: 0 auto; }
 .behind-card { background: var(--warm-white); border: 1px solid var(--warm-cream); border-radius: var(--radius-lg); padding: 22px 20px 20px; text-align: left; position: relative; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
 .behind-card:hover { border-color: var(--purple-pale); box-shadow: var(--shadow-md); }
 .behind-card-num { font-family: 'Libre Baskerville', serif; font-size: 32px; font-weight: 700; color: var(--purple-pale); line-height: 1; margin-bottom: 14px; opacity: 0.7; letter-spacing: -0.02em; }
 .behind-card h4 { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 0.02em; color: var(--purple-hero); margin-bottom: 8px; text-transform: uppercase; }
 .behind-card p { font-size: 13px; line-height: 1.55; color: var(--warm-dark); margin-bottom: 12px; }
 .behind-card-stat { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--warm-cream); font-family: 'Inter', sans-serif; font-size: 12px; color: var(--warm-mid); }
 .behind-card-stat strong { font-family: 'Libre Baskerville', serif; font-weight: 700; color: var(--purple-hero); font-size: 16px; }
 .behind-disclosure { max-width: 720px; margin: 32px auto 0; padding: 14px 18px; background: var(--warm-off); border-radius: var(--radius-md); font-size: 12px; line-height: 1.65; color: var(--warm-dark); text-align: center; font-family: 'Inter', sans-serif; }
 .behind-disclosure a { color: var(--purple-hero); }
 @media (max-width: 720px) { .behind-grid { grid-template-columns: repeat(2, 1fr); } }
 @media (max-width: 480px) { .behind-grid { grid-template-columns: 1fr; } }

 /* FAQ */
 .faq { padding: 72px 0 56px; border-top: 1px solid var(--warm-cream); }
 .faq-head { text-align: center; margin-bottom: 40px; }
 .faq-head h2 { font-size: var(--type-h2); color: var(--ink); line-height: 1.08; }
 .faq-head h2 em { font-style: italic; color: var(--purple-hero); }
 .faq-list { max-width: 720px; margin: 0 auto; }
 .faq-item { border-bottom: 1px solid var(--warm-cream); padding: 4px 0; transition: background 0.25s ease; border-radius: var(--radius-md); }
 .faq-item:last-child { border-bottom: none; }
 .faq-item:hover { background: var(--purple-tint); }
 .faq-item summary { font-family: 'Syne', sans-serif; font-weight: 600; font-size: 16px; color: var(--ink); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 18px; transition: color 0.2s ease; }
 .faq-item summary::-webkit-details-marker { display: none; }
 .faq-chevron { width: 18px; height: 18px; flex-shrink: 0; color: var(--purple-hero); transition: transform 0.35s cubic-bezier(0.32, 0.72, 0.24, 1); transform-origin: center; }
 .faq-item[open] .faq-chevron { transform: rotate(180deg); }
 .faq-item summary:hover { color: var(--purple-hero); }
 .faq-body { overflow: hidden; height: 0; opacity: 0; transition: height 0.4s cubic-bezier(0.32, 0.72, 0.24, 1), opacity 0.3s ease; }
 .faq-item[open] .faq-body { opacity: 1; }
 .faq-body-inner { padding: 0 18px 22px; }
 .faq-item p { font-size: 14px; line-height: 1.75; color: var(--warm-dark); padding-right: 36px; margin: 0; }
 @media (prefers-reduced-motion: reduce) {
  .faq-body { transition: none; }
  .faq-chevron { transition: none; }
 }

 /* FREE TOOL - gift box */
 .free-tool { padding: 72px 0 56px; border-top: 1px solid var(--warm-cream); position: relative; }
 .free-tool-gift { max-width: 760px; margin: 0 auto; background: var(--purple-tint); border: 1px solid var(--purple-pale); border-radius: var(--radius-xl); padding: 48px 48px 44px; position: relative; overflow: hidden; text-align: center; box-shadow: var(--shadow-md); z-index: 5; }
 .free-tool-gift::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--purple-deep), var(--purple-mid), var(--eos-p3)); }
 .free-tool-gift .eyebrow { display: inline-flex; justify-content: center; margin-bottom: 20px; gap: 0; color: var(--purple-mid); }
 .free-tool-gift .eyebrow::before { display: none; }
 .free-tool-gift h2 { font-family: 'Libre Baskerville', serif; font-weight: 700; letter-spacing: -0.02em; font-size: var(--type-h2); color: var(--ink); margin-bottom: 18px; line-height: 1.1; }
 .free-tool-gift > p { font-size: 15px; line-height: 1.75; color: var(--warm-dark); max-width: 540px; margin: 0 auto 26px; }
 .free-tool-gift .gift-price { font-family: 'Libre Baskerville', serif; font-size: 64px; font-weight: 700; color: var(--purple-hero); line-height: 1; margin-bottom: 22px; letter-spacing: -0.03em; }
 .free-tool-gift .btn-primary { background: var(--purple-hero); color: #fff; font-size: 16px; padding: 18px 40px; box-shadow: var(--shadow-purple); }
 .free-tool-gift .btn-primary:hover { background: var(--purple-deep); color: #fff; }
 @media (max-width: 720px) { .free-tool-gift { padding: 36px 28px 32px; } .free-tool-gift .gift-price { font-size: 52px; } }

 /* EMAIL CAPTURE */
 .email-capture { padding: 80px 0 72px; position: relative; overflow: hidden; border-top: 1px solid var(--warm-cream); }
 .email-capture .wrap { position: relative; z-index: 2; }
 .email-inner { max-width: 560px; text-align: center; margin: 0 auto; }
 .email-capture h2 { font-size: clamp(28px, 3.5vw, 42px); color: var(--ink); margin-bottom: 18px; line-height: 1.08; }
 .email-capture h2 em { font-style: italic; color: var(--purple-hero); }
 .email-capture .email-desc { font-size: var(--type-lede); line-height: 1.75; color: var(--warm-mid); max-width: 460px; margin: 0 auto 40px; }
 .email-reveal-btn { display: inline-flex; align-items: center; gap: 10px; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 17px; letter-spacing: 0.02em; padding: 18px 40px; border-radius: 100px; border: none; background: var(--purple-hero); color: #fff; cursor: pointer; transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease; box-shadow: 0 8px 32px rgba(75,17,150,0.2); }
 .email-reveal-btn:hover { background: var(--purple-deep); transform: translateY(1px); box-shadow: 0 12px 40px rgba(75,17,150,0.3); }
 .email-reveal-btn svg { width: 16px; height: 16px; }
 .email-reveal-btn.hidden { display: none; }
 .email-step2 { max-width: 440px; margin: 0 auto; }
 .email-step2.hidden { display: none; }
 .email-step2-nudge { font-family: 'Libre Baskerville', serif; font-size: 14px; font-style: italic; color: var(--purple-mid); margin-bottom: 20px; }
 .email-form { display: flex; gap: 10px; }
 .email-form input[type="email"] { flex: 1; font-family: 'Inter', sans-serif; font-size: 15px; padding: 15px 20px; border: 2px solid var(--warm-cream); border-radius: 100px; background: var(--warm-white); color: var(--ink); outline: none; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
 .email-form input[type="email"]::placeholder { color: var(--warm-mid); opacity: 0.6; }
 .email-form input[type="email"]:focus { border-color: var(--purple-mid); box-shadow: 0 0 0 4px rgba(159,114,208,0.15); }
 .email-form button { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 15px; padding: 15px 28px; border-radius: 100px; border: none; background: var(--purple-hero); color: #fff; cursor: pointer; transition: background 0.2s ease, transform 0.15s ease; white-space: nowrap; }
 .email-form button:hover { background: var(--purple-deep); transform: translateY(1px); }
 .email-privacy { font-size: 12px; color: var(--warm-mid); margin-top: 24px; letter-spacing: 0.02em; }
 @media (max-width: 480px) { .email-capture { padding: 56px 0 48px; } .email-form { flex-direction: column; } }

 /* MID-PAGE NUDGE */
 .mid-nudge { padding: 36px 0 40px; border-top: 1px solid var(--warm-cream); border-bottom: 1px solid var(--warm-cream); background: var(--warm-off); }
 .mid-nudge-inner { max-width: 780px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
 .mid-nudge-copy { font-size: 15px; line-height: 1.6; color: var(--warm-dark); margin: 0; flex: 1 1 320px; }
 .mid-nudge-copy strong { color: var(--ink); }
 @media (max-width: 600px) { .mid-nudge { padding: 28px 0 28px; } .mid-nudge-inner { flex-direction: column; align-items: stretch; gap: 18px; } .mid-nudge-copy { flex: 0 0 auto; font-size: 15px; } .mid-nudge-inner .btn-secondary { width: 100%; justify-content: center; } }

 /* FOOTER */
 .footer { padding: 56px 0 40px; border-top: 1px solid var(--warm-cream); margin-top: 24px; }
 .footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; align-items: flex-start; }
 .footer-brand { display: flex; flex-direction: column; gap: 14px; }
 .footer-brand-logo { display: flex; align-items: center; gap: 10px; }
 .footer-brand .mark-wrap { width: 26px; height: 30px; display: flex; align-items: center; justify-content: center; position: relative; top: -1px; }
 .footer-brand .wordmark { font-family: 'Libre Baskerville', serif; font-weight: 700; font-size: 18px; color: var(--ink); }
 .footer-brand p { font-size: 12px; color: var(--warm-mid); line-height: 1.6; max-width: 260px; }
 .footer-brand .footer-refund { font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.04em; color: var(--purple-hero); margin-top: 4px; }
 .footer h5 { font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); margin-bottom: 14px; }
 .footer ul { list-style: none; }
 .footer ul li { margin-bottom: 8px; }
 .footer ul li a { font-size: 13px; color: var(--warm-mid); text-decoration: none; }
 .footer ul li a:hover { color: var(--purple-hero); }
 .footer-bottom { margin-top: 48px; padding-top: 20px; border-top: 1px solid var(--warm-cream); display: flex; justify-content: space-between; align-items: center; font-size: 11px; letter-spacing: 0.06em; color: var(--warm-mid); }
 .footer-bottom .full-stop { display: inline-block; width: 7px; height: 7px; border-radius: 0; background: var(--eos-p6); vertical-align: middle; margin: 0 6px; transform: rotate(45deg); }
 @media (max-width: 760px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; } .footer-bottom { flex-direction: column; gap: 12px; text-align: center; } }
 @media (max-width: 480px) { .footer-inner { grid-template-columns: 1fr; } }

 /* STICKY MOBILE CTA */
 .sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: var(--warm-white); border-top: 1px solid var(--warm-cream); padding: 12px 22px; box-shadow: 0 -4px 24px rgba(26,26,26,0.10); }
 .sticky-cta-inner { display: flex; gap: 10px; align-items: center; justify-content: center; }
 .sticky-cta .btn { flex: 1; justify-content: center; font-size: 13px; padding: 12px 16px; }
 @media (max-width: 720px) { .sticky-cta { display: block; } body { padding-bottom: 72px; } }

 /* REVEAL ANIMATIONS */
 /* Reveal: visible by default; only the JS-marked .js-reveal hides for animation.
    Prevents content from appearing blank when IntersectionObserver hasn't fired
    (slow connections, fast scrollers, mid-page anchor landings). */
 .reveal { opacity: 1; transform: none; transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
 .js-reveal { opacity: 0; transform: translateY(32px); }
 .js-reveal.visible { opacity: 1; transform: translateY(0); }
 .reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.1s; }
 .reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.2s; }
 .reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.3s; }

 @media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; } }
</style>

/* -----------------------------------------------------
   SKILL PAGE BODY SECTIONS (canonical, matches landing rhythm)
   ----------------------------------------------------- */
.page-body { max-width: 820px; margin: 0 auto; padding: 0 40px; text-align: center; }
.content-section { padding: 64px 0 56px; border-top: 1px solid var(--warm-cream); text-align: center; }
.content-section:first-child { border-top: none; padding-top: 72px; }
.content-section h2 { font-family: 'Libre Baskerville', serif; font-size: var(--type-h2); line-height: 1.08; color: var(--ink); margin-bottom: 24px; font-weight: 700; }
.content-section p { font-size: var(--type-lede); line-height: 1.75; color: var(--warm-dark); max-width: 620px; margin: 0 auto 16px; }
.content-section p:last-child { margin-bottom: 0; }
.content-section .bullet-list,
.content-section .feature-list { max-width: 620px; margin: 28px auto 0; text-align: left; }
.content-section .bullet-list li { font-size: 15px; line-height: 1.7; color: var(--warm-dark); padding: 10px 0 10px 26px; position: relative; border-bottom: 1px solid var(--warm-cream); }
.content-section .bullet-list li:last-child { border-bottom: none; }
.content-section .bullet-list li::before { content: ''; position: absolute; left: 4px; top: 18px; width: 8px; height: 8px; background: var(--purple-hero); transform: rotate(45deg); }
.content-section .stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 720px; margin: 36px auto 0; }
.content-section .stat { background: var(--warm-white); border: 1px solid var(--warm-cream); border-radius: var(--radius-lg); padding: 28px 20px; text-align: center; }
.content-section .stat-value { font-family: 'Libre Baskerville', serif; font-size: 40px; font-weight: 700; color: var(--purple-hero); line-height: 1; margin-bottom: 10px; }
.content-section .stat-label { font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--warm-mid); line-height: 1.4; }
.page-body .notice { max-width: 720px; margin: 0 auto; padding: 22px 28px; background: var(--purple-tint); border-left: 3px solid var(--purple-hero); border-radius: 0 var(--radius-md) var(--radius-md) 0; font-size: 13px; line-height: 1.7; color: var(--warm-dark); text-align: left; }
@media (max-width: 720px) {
 .page-body { padding: 0 22px; }
 .content-section { padding: 48px 0 40px; }
 .content-section .stat-row { grid-template-columns: 1fr; max-width: 400px; }
}

/* ============================================================
   SKILLS NAV DROPDOWN (masthead "All skills" menu)
   Injected by skills-nav.js into any element with data-skills-nav.
   ============================================================ */
.skills-dropdown { position: relative; display: inline-flex; align-items: center; }
.skills-dropdown-trigger {
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500;
  color: var(--warm-mid); background: transparent; border: 0; cursor: pointer;
  padding: 0; display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.15s ease;
}
.skills-dropdown-trigger:hover,
.skills-dropdown.is-open .skills-dropdown-trigger { color: var(--purple-hero); }
.skills-dropdown-trigger svg { transition: transform 0.15s ease; }
.skills-dropdown.is-open .skills-dropdown-trigger svg { transform: rotate(180deg); }
.skills-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(-6px);
  background: var(--warm-white); border: 1px solid var(--warm-cream); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px 28px; min-width: 820px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  z-index: 200;
}
.skills-dropdown.is-open .skills-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.skills-menu::before {
  content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px; background: var(--warm-white);
  border-left: 1px solid var(--warm-cream); border-top: 1px solid var(--warm-cream);
}
.skills-menu-col { min-width: 0; }
.skills-menu-title {
  font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--purple-hero);
  padding-bottom: 10px; margin-bottom: 8px; border-bottom: 1px solid var(--warm-cream);
}
.skills-menu-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.skills-menu-list a {
  font-family: 'Inter', sans-serif; font-size: 13px; color: var(--ink);
  text-decoration: none; padding: 7px 10px; margin: 0 -10px; border-radius: var(--radius-sm);
  display: flex; align-items: center; gap: 8px; line-height: 1.4;
  transition: background 0.12s ease, color 0.12s ease;
}
.skills-menu-list a:hover { background: var(--purple-tint); color: var(--purple-hero); }
.skills-menu-badge {
  font-family: 'Syne', sans-serif; font-size: 9px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: #F4EAD5; color: #8A6A1F; padding: 2px 7px; border-radius: 100px;
  margin-left: auto; flex-shrink: 0;
}
.skills-menu-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #d97706; margin-left: auto; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.12);
}

/* Mobile: anchor to viewport edges, single column, accordion style */
@media (max-width: 880px) {
  .skills-menu {
    position: fixed; top: 68px; left: 16px; right: 16px; transform: none;
    min-width: 0; width: auto; grid-template-columns: 1fr; gap: 18px;
    padding: 20px; max-height: calc(100vh - 100px); overflow-y: auto;
  }
  .skills-dropdown.is-open .skills-menu { transform: none; }
  .skills-menu::before { display: none; }
}

/* =============================================================
   Free tools dropdown (mirrors skills-dropdown pattern, single column).
   Injected by free-tools-nav.js into [data-free-tools-nav] placeholder.
   ============================================================= */
.free-tools-dropdown { position: relative; display: inline-flex; align-items: center; }
.free-tools-dropdown-trigger {
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500;
  color: var(--warm-mid); background: transparent; border: 0; cursor: pointer;
  padding: 0; display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.15s ease;
}
.free-tools-dropdown-trigger:hover,
.free-tools-dropdown.is-open .free-tools-dropdown-trigger { color: var(--purple-hero); }
.free-tools-dropdown-trigger svg { transition: transform 0.15s ease; }
.free-tools-dropdown.is-open .free-tools-dropdown-trigger svg { transform: rotate(180deg); }
.free-tools-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(-6px);
  background: var(--warm-white); border: 1px solid var(--warm-cream); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 18px 22px; min-width: 360px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  z-index: 200;
}
.free-tools-dropdown.is-open .free-tools-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.free-tools-menu::before {
  content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px; background: var(--warm-white);
  border-left: 1px solid var(--warm-cream); border-top: 1px solid var(--warm-cream);
}
.free-tools-menu-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.free-tools-menu-item {
  font-family: 'Inter', sans-serif; text-decoration: none; color: var(--ink);
  padding: 12px 14px; margin: 0 -6px; border-radius: var(--radius-sm);
  display: flex; flex-direction: column; gap: 4px; line-height: 1.4;
  transition: background 0.12s ease, color 0.12s ease;
}
.free-tools-menu-item:hover { background: var(--purple-tint); color: var(--purple-hero); }
.free-tools-menu-name {
  font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 600;
  color: inherit; letter-spacing: -0.01em;
}
.free-tools-menu-blurb {
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 400;
  color: var(--warm-mid);
}
.free-tools-menu-foot {
  font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--purple-hero);
  margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--warm-cream);
  text-align: center;
}
@media (max-width: 880px) {
  .free-tools-menu {
    position: fixed; top: 68px; left: 16px; right: 16px; transform: none;
    min-width: 0; width: auto; padding: 18px;
  }
  .free-tools-dropdown.is-open .free-tools-menu { transform: none; }
  .free-tools-menu::before { display: none; }
}
@media (max-width: 640px) {
  .masthead-nav .free-tools-dropdown { display: none; }
}
