/* ==========================================================================
   Aibility Design System — warm-neutral palette inspired by deel.com
   ========================================================================== */

/* --- CSS Variables --- */
:root {
  /* Colors — warm neutrals, NO cool grays */
  --color-brand-primary: #1B1B1B;
  --color-brand-accent: #5938B7;
  --color-accent-light: #A98DF6;
  --color-accent-subtle: #C4B1F9;
  --color-accent-deep: #201547;
  --color-surface: #FFFBF4;
  --color-surface-raised: #F7F5F2;
  --color-surface-warm: #F7F5F2;
  --color-text-default: #1B1B1B;
  --color-text-secondary: rgba(27, 27, 27, 0.7);
  --color-text-muted: rgba(27, 27, 27, 0.6);
  --color-border: rgba(27, 27, 27, 0.12);
  --color-border-hover: rgba(27, 27, 27, 0.35);

  /* Homepage-specific color tokens */
  --color-lime: #E6FF3A;
  --color-lime-dark: #C8E000;

  /* Archetype gradient stops */
  --color-arche-violet-start: #8B6FD6;
  --color-arche-violet-mid: #A98DF6;
  --color-arche-violet-end: #D5C3FB;
  --color-arche-rose-start: #C96A93;
  --color-arche-rose-mid: #DB7FA3;
  --color-arche-rose-end: #EFB5CC;
  --color-arche-teal-start: #3E9B96;
  --color-arche-teal-mid: #5EB9B2;
  --color-arche-teal-end: #A0DAD4;
  --color-arche-green-start: #3B9F5C;
  --color-arche-green-mid: #5EBC7B;
  --color-arche-green-end: #AFDDB8;

  /* Story card backgrounds */
  --color-story-peach: #F8DDBE;
  --color-story-blue: #C9DEF5;
  --color-story-lilac: #DCD2F5;
  --color-story-cream: #F2E7CF;
  --color-story-mint: #CDEADB;

  /* Score bar states */
  --color-score-good: #5FE19C;
  --color-score-warn: #FFC25C;
  --color-score-bad: #FF8A6B;
  --color-danger: #DC2626;

  /* Dark section text */
  --color-dark-text: #FAF4EE;
  --color-dark-text-muted: rgba(250, 244, 238, 0.65);
  --color-dark-card: rgba(255, 255, 255, 0.05);

  /* Shadows — warm dual-layer */
  --shadow-sm: rgba(27, 27, 27, 0.08) 0 2px 8px;
  --shadow-md: rgba(27, 27, 27, 0.12) 0 8px 24px, rgba(27, 27, 27, 0.04) 0 2px 16px;
  --shadow-lg: rgba(27, 27, 27, 0.16) 0 16px 32px, rgba(27, 27, 27, 0.05) 0 2px 32px;

  /* Typography */
  --font-display: 'Signika', sans-serif;
  --font-heading: 'Signika', sans-serif;
  --font-body: 'Geist', sans-serif;
  --font-mono: 'Geist Mono', monospace;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 80px;
}

/* --- Dark Mode --- */
@media (prefers-color-scheme: dark) {
  :root {
    --color-surface: #0F0F13;
    --color-surface-raised: #1A1A20;
    --color-surface-warm: #151518;
    --color-text-default: #FAF4EE;
    --color-text-secondary: rgba(250, 244, 238, 0.7);
    --color-text-muted: rgba(250, 244, 238, 0.6);
    --color-border: rgba(250, 244, 238, 0.12);
    --color-border-hover: rgba(250, 244, 238, 0.35);
  }
}

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

/* --- Base Typography --- */
body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.70;
  letter-spacing: -0.005em;
  color: var(--color-text-default);
  background-color: var(--color-surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-brand-primary);
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-brand-primary);
  margin-bottom: var(--space-2xl);
}

/* Tighter gap when description follows heading */
h2 + .s-intro,
h2 + p {
  margin-top: calc(-1 * var(--space-xl));
}

h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
  color: var(--color-brand-primary);
}

h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.30;
  color: var(--color-brand-primary);
}

p {
  margin-bottom: var(--space-md);
}

small {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.50;
}

code {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.50;
  background-color: var(--color-surface-raised);
  padding: 2px 6px;
  border-radius: 4px;
}

a {
  color: var(--color-brand-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s ease-in-out;
}

a:hover {
  color: var(--color-brand-accent);
}

/* --- Display (Signika) --- */
.display {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

/* ==========================================================================
   SITE HEADER / NAV — deel.com style
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(255, 251, 244, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.site-header.scrolled {
  box-shadow: 0 1px 0 var(--color-border);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  width: 100%;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: var(--space-2xl);
  flex-shrink: 0;
}

.site-logo img {
  height: 28px;
  width: auto;
}

/* Nav links — left-aligned next to logo */
.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  flex: 1;
}

.site-nav a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-default);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.15s ease-in-out;
}

.site-nav a:hover {
  color: var(--color-text-secondary);
}

/* CTA buttons — right-aligned */
.site-header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}

.site-header-cta .btn {
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  padding: 8px 16px;
  letter-spacing: 0.015em;
}

/* Dark header variant — transparent over photo heroes, inverts when scrolled */
.site-header--dark {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.site-header--dark .site-nav a {
  color: rgba(255, 255, 255, 0.85);
}
.site-header--dark .site-nav a:hover {
  color: #FFFFFF;
}
.site-header--dark .btn-secondary {
  border-color: rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
}
.site-header--dark .btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
}
.site-header--dark .btn-primary {
  background: #FFFFFF;
  color: var(--color-brand-primary);
}
.site-header--dark .btn-primary:hover {
  background: rgba(255, 255, 255, 0.85);
}
.site-header--dark.scrolled {
  background: rgba(32, 21, 71, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.site-header--dark.scrolled .site-nav a {
  color: rgba(255, 255, 255, 0.85);
}

/* --- Floating pill variant (BottleCap AI / scan.bottlecapai.com style) --- */
.site-header--float {
  top: clamp(10px, 1.5vw, 16px);
  left: 0;
  right: 0;
  max-width: 1312px;
  margin-left: auto;
  margin-right: auto;
  height: 64px;
  border-radius: 999px;
  background: #FFFFFF;
  box-shadow:
    rgba(27, 27, 27, 0.06) 0 2px 8px,
    rgba(27, 27, 27, 0.03) 0 0 0 1px;
  padding: 0 16px;
}
.site-header--float .wrap {
  padding: 0;
  max-width: none;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.site-header--float .site-logo {
  margin-right: 0;
  justify-self: start;
}
.site-header--float .site-logo img {
  height: 32px;
}
.site-header--float .site-nav {
  flex: none;
  justify-self: center;
}
.site-header--float .site-header-cta {
  justify-self: end;
  margin-left: 0;
}
.site-header--float .site-nav a {
  font-size: 14px;
}
.site-header--float .site-header-cta .btn {
  height: 36px;
  font-size: 13px;
  padding: 6px 16px;
}
.site-header--float.scrolled {
  box-shadow:
    rgba(27, 27, 27, 0.10) 0 4px 16px,
    rgba(27, 27, 27, 0.04) 0 0 0 1px;
}
/* Float header on dark heroes — keep light always, just deepen shadow */
.site-header--float.site-header--dark {
  background: #FFFFFF;
}
.site-header--float.site-header--dark .site-nav a {
  color: var(--color-text-default);
}
.site-header--float.site-header--dark .site-nav a:hover {
  color: var(--color-text-secondary);
}
.site-header--float.site-header--dark .btn-secondary {
  border-color: var(--color-border);
  color: var(--color-text-default);
}
.site-header--float.site-header--dark .btn-secondary:hover {
  border-color: var(--color-border-hover);
}
.site-header--float.site-header--dark .btn-primary {
  background: var(--color-brand-primary);
  color: #FFFFFF;
}
.site-header--float.site-header--dark .btn-primary:hover {
  background: #333333;
}
.site-header--float.site-header--dark.scrolled {
  background: #FFFFFF;
}

/* Float responsive */
@media (max-width: 900px) {
  .site-header--float {
    margin-left: clamp(12px, 2vw, 20px);
    margin-right: clamp(12px, 2vw, 20px);
    padding: 0 var(--space-md);
  }
  .site-header--float .site-nav { gap: var(--space-sm); }
  .site-header--float .site-header-cta .btn--secondary-hide {
    display: none;
  }
}
@media (max-width: 600px) {
  .site-header--float {
    margin-left: var(--space-sm);
    margin-right: var(--space-sm);
    height: 48px;
    padding: 0 var(--space-md);
  }
  .site-header--float .site-logo img { height: 20px; }
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */

.wrap {
  width: 100%;
  max-width: 1312px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}

.wrap--narrow {
  max-width: 800px;
}

/* --- Sections --- */
.s {
  padding: clamp(96px, 10vw, 128px) 0;
}

.s--border {
  border-top: 1px solid var(--color-border);
}

.s--warm {
  background: var(--color-surface-warm);
}

.s--white {
  background: #FFFFFF;
}

.s--dark {
  background: var(--color-brand-primary);
  color: var(--color-dark-text);
}
.s--dark h2 { color: var(--color-dark-text); }
.s--dark h3 { color: var(--color-dark-text); }
.s--dark h4 { color: var(--color-dark-text); }
.s--dark p { color: var(--color-dark-text-muted); }
.s--dark .section-num { color: var(--color-accent-light); }
.s--dark .stat-number { color: var(--color-dark-text); }
.s--dark .stat-label { color: var(--color-dark-text-muted); }

/* Dark inset — rounded dark container inside cream page */
.s--dark-inset {
  background: var(--color-brand-primary);
  color: var(--color-dark-text);
  border-radius: 20px;
  margin: 0 clamp(12px, 2vw, 24px);
  padding: clamp(64px, 8vw, 96px) clamp(32px, 5vw, 64px);
}
.s--dark-inset h2 { color: var(--color-dark-text); }
.s--dark-inset h3 { color: var(--color-dark-text); }
.s--dark-inset p { color: var(--color-dark-text-muted); }
.s--dark-inset .section-num { color: var(--color-accent-light); }
.s--dark-inset .stat-number { color: var(--color-dark-text); }
.s--dark-inset .stat-label { color: var(--color-dark-text-muted); }

.s-intro {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 55ch;
  margin-bottom: 56px;
}

/* Legacy alias */
.container { width: 100%; max-width: 1312px; margin: 0 auto; padding: 0 var(--space-lg); }
.section { padding: var(--space-3xl) 0; }

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ==========================================================================
   SECTION LABEL (mono, uppercase)
   ========================================================================== */

.section-num,
.label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-brand-accent);
  margin-bottom: 12px;
  display: block;
}
.s--dark .label,
.s--dark-inset .label { color: var(--color-accent-light); }

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  height: min(100vh, 1000px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 80px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, oklch(0.85 0.08 180 / 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 14ch;
  margin-bottom: 32px;
}

.hero h1 em {
  font-style: normal;
  color: var(--color-brand-accent);
}

.hero-body {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 540px;
  margin-bottom: 48px;
}

.hero-cta {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.015em;
  color: var(--color-surface);
  background: var(--color-brand-primary);
  border: none;
  padding: 14px 32px;
  height: 48px;
  border-radius: 200px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background 0.15s ease-in-out;
}
.hero-cta:hover {
  background: #4E4E4E;
  color: var(--color-surface);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-scroll span {
  width: 1px;
  height: 32px;
  background: var(--color-border);
  animation: pulse-line 2s ease-in-out infinite;
}
@keyframes pulse-line {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* --- Hero inset variant (deel.com dark card within white page) --- */
.hero-inset-wrap {
  padding: 12px;
  height: min(100vh, 1000px);
  display: flex;
  background: #FFFFFF;
}

.hero--inset {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color-accent-deep);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: clamp(48px, 6vw, 80px) 0;
}

.hero--inset .wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero--inset::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, oklch(0.4 0.15 290 / 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero--inset h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 16ch;
  margin-bottom: 24px;
  color: var(--color-dark-text);
}

.hero--inset h1 em {
  font-style: normal;
  color: var(--color-accent-light);
}

.hero--inset .section-num {
  color: var(--color-accent-light);
  margin-bottom: var(--space-lg);
}

.hero--inset .hero-body {
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.7;
  color: var(--color-dark-text-muted);
  max-width: 50ch;
  margin-bottom: 40px;
}

.hero--inset .hero-cta {
  background: var(--color-accent-light);
  color: var(--color-accent-deep);
  display: inline-flex;
  width: auto;
  align-self: flex-start;
}
.hero--inset .hero-cta:hover {
  background: var(--color-accent-subtle);
  color: var(--color-accent-deep);
}

.hero--inset .hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-dark-text-muted);
}
.hero--inset .hero-scroll span {
  background: rgba(250, 244, 238, 0.2);
}

/* hero-inset optional secondary CTA + proof row (for landings like Vibe Coding Summer) */
.hero--inset .hero-inset-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 32px;
}
.hero--inset .hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 200px;
  border: 1px solid rgba(250, 244, 238, 0.3);
  color: var(--color-dark-text);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.015em;
  text-decoration: none;
  transition: background 0.15s ease-in-out, border-color 0.15s ease-in-out, color 0.15s ease-in-out;
}
.hero--inset .hero-cta-secondary:hover {
  background: rgba(250, 244, 238, 0.08);
  border-color: rgba(250, 244, 238, 0.5);
  color: var(--color-dark-text);
}
.hero--inset .hero-inset-proof {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--color-dark-text-muted);
  margin: 0;
}
.hero--inset .hero-inset-proof strong { color: var(--color-dark-text); font-weight: 600; }

/* --- Hero inset split variant (text left + image right, deel.com use-case style) --- */
.hero--inset-split .wrap {
  flex-direction: row;
  align-items: center;
  gap: clamp(40px, 5vw, 80px);
}

.hero-inset-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-inset-media {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-inset-media img,
.hero-inset-media picture {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.hero-inset-media picture img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Split variant: smaller heading to fit beside image */
.hero--inset-split h1 {
  font-size: clamp(32px, 5vw, 56px);
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
  .hero--inset-split .wrap {
    flex-direction: column;
  }
  .hero-inset-media {
    order: -1;
    max-width: 80%;
  }
  .hero--inset-split h1 {
    font-size: clamp(28px, 7vw, 40px);
  }
}

/* --- Hero inset background effects (purple gradients + stars, matches .hp-hero feel) --- */
.hero--inset::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 10% 100%, rgba(169,141,246,0.22), transparent 70%),
    radial-gradient(ellipse 40% 35% at 95% 20%, rgba(89,56,183,0.35), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-inset-stars {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 15% 20%, rgba(250,244,238,0.7), transparent),
    radial-gradient(1px 1px at 82% 12%, rgba(169,141,246,0.75), transparent),
    radial-gradient(1.5px 1.5px at 44% 68%, rgba(250,244,238,0.55), transparent),
    radial-gradient(1px 1px at 68% 40%, rgba(250,244,238,0.45), transparent),
    radial-gradient(1px 1px at 22% 78%, rgba(169,141,246,0.55), transparent),
    radial-gradient(1.5px 1.5px at 91% 76%, rgba(250,244,238,0.6), transparent),
    radial-gradient(1px 1px at 6% 42%, rgba(250,244,238,0.4), transparent),
    radial-gradient(1px 1px at 55% 8%, rgba(169,141,246,0.6), transparent);
}
.hero--inset .wrap { position: relative; z-index: 1; }

/* Animated particle canvas overlay (matches homepage .hp-hero-canvas blinking stars) */
.hero-inset-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* H1 em in hero--inset: italic (matches homepage .hp-hero h1 em) */
.hero--inset h1 em {
  font-style: italic;
  font-weight: 600;
  color: var(--color-accent-light);
}

/* --- Hero video placeholder (right side of .hero--inset-split) --- */
.hero-video-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  cursor: pointer;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(169,141,246,0.28), transparent 70%),
    linear-gradient(135deg, rgba(89,56,183,0.35) 0%, rgba(32,21,71,0.85) 100%);
  border: 1px solid rgba(250,244,238,0.12);
  box-shadow:
    0 20px 60px -20px rgba(0,0,0,0.55),
    0 0 0 1px rgba(169,141,246,0.08) inset;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.hero-video-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(250,244,238,0.5), transparent),
    radial-gradient(1px 1px at 78% 22%, rgba(169,141,246,0.55), transparent),
    radial-gradient(1.5px 1.5px at 40% 72%, rgba(250,244,238,0.4), transparent),
    radial-gradient(1px 1px at 88% 80%, rgba(250,244,238,0.45), transparent);
  opacity: 0.55;
  pointer-events: none;
}
.hero-video-placeholder:hover {
  transform: translateY(-2px);
  border-color: rgba(169,141,246,0.35);
  box-shadow:
    0 28px 70px -20px rgba(0,0,0,0.6),
    0 0 0 1px rgba(169,141,246,0.2) inset;
}
.hero-video-play {
  position: relative;
  color: var(--color-accent-light);
  filter: drop-shadow(0 6px 24px rgba(169,141,246,0.45));
  transition: transform 0.2s ease, color 0.2s ease;
}
.hero-video-placeholder:hover .hero-video-play {
  transform: scale(1.06);
  color: var(--color-accent-subtle);
}
.hero-video-label {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-video-eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  opacity: 0.9;
}
.hero-video-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-dark-text);
  opacity: 0.85;
}

/* --- Stories head row: right-column intro paragraph (was inline style) --- */
.stories-head-intro {
  max-width: 36ch;
  font-size: 16px;
  color: var(--color-text-secondary);
  margin: 0;
}

/* --- Hero photo variant (full-bleed background photo + centered text, nexos.ai style) --- */
.hero--photo {
  position: relative;
  min-height: min(100vh, 960px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(120px, 14vw, 180px) 0 clamp(80px, 10vw, 120px);
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  background: var(--color-brand-primary);
}

.hero-photo-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: block;
  overflow: hidden;
}

.hero-photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero--photo .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero--photo .section-num {
  color: #FFFFFF;
  opacity: 0.75;
  margin-bottom: var(--space-lg);
}

.hero--photo h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 18ch;
  margin: 0 auto var(--space-lg);
  color: #FFFFFF;
  text-wrap: balance;
}

.hero--photo h1 em {
  font-style: normal;
  color: #FFFFFF;
}

.hero--photo .hero-body {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
  color: #FFFFFF;
  opacity: 0.88;
  max-width: 52ch;
  margin: 0 auto var(--space-2xl);
  text-wrap: pretty;
}

.hero--photo .hero-cta {
  background: var(--color-brand-accent);
  color: #FFFFFF;
  align-self: center;
}
.hero--photo .hero-cta:hover {
  background: var(--color-accent-deep);
  color: #FFFFFF;
}

.hero-photo-note {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  opacity: 0.7;
  margin-top: var(--space-md);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-photo-note svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

/* ==========================================================================
   STATS BAR
   ========================================================================== */

.stats-bar {
  text-align: center;
  padding: clamp(64px, 8vw, 96px) 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(40px, 8vw, 120px);
}

/* When stats-bar has .wrap child, reset flex and let grid handle layout */
.stats-bar:has(.wrap) {
  display: block;
}

.stats-bar-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 28ch;
  margin: 0 auto 48px;
}

.stats-bar-grid {
  display: flex;
  justify-content: center;
  gap: clamp(40px, 8vw, 120px);
}

.stat { text-align: center; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 600;
  line-height: 1;
  color: var(--color-brand-primary);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-secondary);
  letter-spacing: 0;
  color: var(--color-text-muted);
  margin-top: 8px;
}

/* ==========================================================================
   PRINCIPLE ROWS (two-column with borders)
   ========================================================================== */

.principles { display: grid; gap: 0; }

.principle-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 280px;
  border-top: 1px solid var(--color-border);
}
.principle-row:last-child { border-bottom: 1px solid var(--color-border); }

.principle-label {
  padding: 40px;
  display: flex;
  align-items: flex-start;
}

.principle-label h3 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.principle-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--color-border);
}

.principle-content p {
  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 1.7;
  max-width: 50ch;
}

.principle-content strong { color: var(--color-text-default); }

/* --- Sub-principles (4-column strip) --- */
.sub-principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-top: 64px;
}

.sub-principle {
  padding: 32px 24px;
  border-right: 1px solid var(--color-border);
}
.sub-principle:last-child { border-right: none; }

.sub-principle h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.sub-principle p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* ==========================================================================
   TABS (pill-shaped)
   ========================================================================== */

.tab-nav {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-bottom: 48px;
}
.tab-nav::-webkit-scrollbar { display: none; }

.tab-btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border: 1px solid var(--color-border);
  border-radius: 200px;
  background: transparent;
  color: var(--color-text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease-in-out;
}
.tab-btn:hover {
  color: var(--color-text-default);
  border-color: var(--color-border-hover);
}
.tab-btn[aria-selected="true"] {
  background: var(--color-brand-primary);
  color: var(--color-surface);
  border-color: var(--color-brand-primary);
}

.s--dark .tab-btn {
  border-color: rgba(250, 244, 238, 0.16);
  color: var(--color-dark-text-muted);
}
.s--dark .tab-btn:hover {
  color: var(--color-dark-text);
  border-color: rgba(250, 244, 238, 0.35);
}
.s--dark .tab-btn[aria-selected="true"] {
  background: var(--color-accent-light);
  color: var(--color-brand-primary);
  border-color: var(--color-accent-light);
}

/* Accent colors on dark backgrounds — always use lighter variant */
.s--dark .scenario .time,
.s--dark .rule-label,
.s--dark .challenge-card .number,
.s--dark-inset .scenario .time,
.s--dark-inset .rule-label,
.s--dark-inset .challenge-card .number {
  color: var(--color-accent-light);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ==========================================================================
   SCENARIO CARDS — no border, shadow on hover
   ========================================================================== */

.scenarios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
}

.scenario {
  padding: 28px;
  border-radius: 12px;
  border: none;
  background: var(--color-surface-raised);
  transition: box-shadow 0.15s cubic-bezier(0, 0, 0.2, 1);
}
.scenario:hover {
  box-shadow: var(--shadow-lg);
}

.s--dark .scenario {
  background: var(--color-dark-card);
  border: none;
}
.s--dark .scenario:hover {
  box-shadow: rgba(0, 0, 0, 0.3) 0 16px 32px, rgba(0, 0, 0, 0.15) 0 2px 32px;
}

.scenario h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.scenario .time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-brand-accent);
  margin-bottom: 10px;
}

.scenario p:not(.time) {
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin-bottom: 0;
}
.s--dark .scenario p:not(.time) {
  color: var(--color-dark-text-muted);
}

/* ==========================================================================
   TRAITS GRID — deel.com style (no borders, icon circles)
   ========================================================================== */

.traits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(40px, 5vw, 64px) clamp(32px, 4vw, 56px);
}

.trait {
  padding: 0;
}

/* Icon with colored circle background — deel style */
.trait-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trait-icon img { width: 32px; height: 32px; object-fit: contain; }

/* Pastel icon backgrounds — assign per-trait via inline style or nth-child */
.trait-icon--peach    { background: #FDE8D8; }
.trait-icon--blue     { background: #D8EBFF; }
.trait-icon--purple   { background: #E0D4F7; }
.trait-icon--green    { background: #D4F0D4; }
.trait-icon--pink     { background: #F5D5E0; }
.trait-icon--yellow   { background: #FFF3D4; }
.trait-icon--slate    { background: #E2E4E8; }

/* Fallback if no color class — subtle surface */
.trait-icon--svg {
  background: var(--color-surface-raised);
}

.trait h3 {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.25;
}

.trait p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

/* ==========================================================================
   CHALLENGE CARDS — no border, shadow on hover
   ========================================================================== */

.challenges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.challenge-card {
  padding: clamp(28px, 3vw, 40px);
  border-radius: 12px;
  border: none;
  background: var(--color-surface-raised);
  transition: box-shadow 0.15s cubic-bezier(0, 0, 0.2, 1);
}
.challenge-card:hover {
  box-shadow: var(--shadow-lg);
}

.challenge-card .number {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 600;
  color: var(--color-brand-accent);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.challenge-card h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.25;
}

.challenge-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

/* ==========================================================================
   RULES BOX
   ========================================================================== */

.rules-box {
  margin-top: 56px;
  padding: clamp(32px, 4vw, 48px);
  border-radius: 16px;
  background: var(--color-surface-raised);
  border: none;
}

.rules-box h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
}

.rules-list { display: grid; gap: 16px; }

.rule {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
}

.rule-label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-brand-accent);
  padding-top: 3px;
}

.rule-value { color: var(--color-text-secondary); }
.rule-value a {
  color: var(--color-brand-accent);
  text-decoration: none;
  font-weight: 600;
}
.rule-value a:hover { text-decoration: underline; }

/* ==========================================================================
   TESTIMONIAL INSET (deel.com style — dark card, photo + quote)
   ========================================================================== */

.testimonial-inset {
  background: var(--color-brand-primary);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  align-items: stretch;
}

.testimonial-inset-photo {
  border-radius: 12px;
  overflow: hidden;
  min-height: 320px;
}

.testimonial-inset-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-inset-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 48px) clamp(32px, 5vw, 64px);
}

.testimonial-inset-logo {
  margin-bottom: 32px;
}

.testimonial-inset-logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}
/* PNG loga s bielym pozadim: blend mode odstrani biele bg na dark karte */
.testimonial-inset-logo img[src$=".png"] {
  filter: none;
  mix-blend-mode: screen;
}

.testimonial-inset-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--color-dark-text);
  margin-bottom: 24px;
}

.testimonial-inset-author {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-dark-text-muted);
  line-height: 1.5;
}

.testimonial-inset-author strong {
  color: var(--color-dark-text);
  font-weight: 500;
}

/* Photo on right variant */
.testimonial-inset--photo-right {
  direction: rtl;
}
.testimonial-inset--photo-right > * {
  direction: ltr;
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
  .testimonial-inset {
    grid-template-columns: 1fr;
  }
  .testimonial-inset-photo {
    min-height: 240px;
    border-radius: 12px;
  }
  .testimonial-inset-content {
    padding: 32px 8px 8px;
  }
  .testimonial-inset--photo-right {
    direction: ltr;
  }
}

/* ==========================================================================
   TESTIMONIALS CAROUSEL (nexos.ai style — badge + avatar + quote + scroll-snap)
   ========================================================================== */

.testimonials-carousel {
  position: relative;
  background: var(--color-surface-raised);
  border-radius: 24px;
  padding: clamp(40px, 5vw, 64px) clamp(24px, 4vw, 48px);
}

/* Client logos row above cards */
.testimonials-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4vw, 56px);
  margin-bottom: clamp(32px, 4vw, 48px);
}
.testimonials-logos img {
  height: 20px;
  width: auto;
  filter: grayscale(100%) opacity(0.5);
  transition: filter 0.2s ease-in-out;
}
.testimonials-logos img:hover {
  filter: grayscale(0%) opacity(1);
}
/* Text logos (student project names) inside the testimonials panel.
   Overrides the dark-bg default color of .lm-logo so names are visible
   against the panel's cream background. */
.testimonials-logos .lm-logo {
  color: rgba(20, 20, 20, 0.45);
  opacity: 1;
  transition: color 0.2s ease;
}
.testimonials-logos .lm-logo:hover { color: rgba(20, 20, 20, 0.85); }

/* Scrollable card track — CSS scroll-snap, JS only drives arrows + progress */
.testimonials-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 40px) / 3);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.testimonials-track::-webkit-scrollbar { display: none; }

/* Individual card — sits on the panel background, no hover shadow (the panel
   already provides separation, and shadows would clip against the scroll
   container's overflow-x). */
.testimonial-card {
  scroll-snap-align: start;
  background: #FFFFFF;
  border-radius: 16px;
  padding: clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

/* Category badge — pastel, inline-flex */
.testimonial-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 200px;
  align-self: flex-start;
  background: var(--color-accent-subtle);
  color: var(--color-accent-deep);
}
.testimonial-badge svg {
  width: 14px;
  height: 14px;
}
.testimonial-badge--marketing { background: #D4F0D4; color: #1B5E20; }
.testimonial-badge--hr        { background: #D8EBFF; color: #1A4E85; }
.testimonial-badge--sales     { background: #E0D4F7; color: #3B2178; }
.testimonial-badge--product   { background: #FDE8D8; color: #7A3F16; }

/* Author row: avatar + name + role */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--color-accent-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent-deep);
}
.testimonial-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-author-info {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.4;
  color: var(--color-text-muted);
  min-width: 0;
}
.testimonial-author-info strong {
  display: block;
  color: var(--color-text-default);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 2px;
}

/* Quote */
.testimonial-quote {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text-secondary);
  margin: 0;
  max-width: none;
}

/* Controls: progress bar + arrow buttons */
.testimonials-controls {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-top: clamp(32px, 4vw, 48px);
}
.testimonials-progress {
  flex: 1;
  height: 3px;
  background: var(--color-border);
  border-radius: 200px;
  overflow: hidden;
}
.testimonials-progress-bar {
  height: 100%;
  width: 33.33%;
  background: var(--color-brand-accent);
  border-radius: 200px;
  transition: width 0.3s ease-out;
}
.testimonials-arrows {
  display: flex;
  gap: 8px;
}
.testimonials-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--color-surface);
  color: var(--color-text-default);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease-in-out, color 0.15s ease-in-out, opacity 0.15s ease-in-out;
}
.testimonials-arrow:hover {
  background: var(--color-brand-accent);
  color: var(--color-dark-text);
}
.testimonials-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.testimonials-arrow svg {
  width: 18px;
  height: 18px;
}

/* Responsive: 2 cards on tablet, 1.1 cards on mobile */
@media (max-width: 1024px) {
  .testimonials-track {
    grid-auto-columns: calc((100% - 20px) / 2);
  }
}
@media (max-width: 640px) {
  .testimonials-track {
    grid-auto-columns: 85%;
  }
  .testimonials-logos {
    gap: 28px;
  }
  .testimonials-logos img {
    height: 24px;
  }
}

/* ==========================================================================
   PRODUCT PREVIEW CARD (deel.com feature card s UI mockupom)
   ========================================================================== */

.product-card {
  background: var(--color-surface-raised);
  border-radius: 16px;
  padding: clamp(20px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.15s cubic-bezier(0, 0, 0.2, 1);
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
}

/* Preview area — the mini UI mockup */
.product-card-preview {
  background: #FFFFFF;
  border-radius: 12px;
  padding: clamp(16px, 2.5vw, 24px);
  box-shadow: var(--shadow-sm);
  margin-bottom: clamp(24px, 3vw, 32px);
}

/* Text area below preview */
.product-card-body h3 {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-text-default);
  margin-bottom: 8px;
}
.product-card-body p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  max-width: 38ch;
}

/* ---- Mini UI components inside preview ---- */

/* Profile row: avatar + name + role */
.mini-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.mini-profile-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent-subtle);
  flex-shrink: 0;
  overflow: hidden;
}
.mini-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mini-profile-info {
  flex: 1;
  min-width: 0;
}
.mini-profile-name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-default);
  line-height: 1.3;
}
.mini-profile-role {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.3;
}
.mini-profile-action {
  color: var(--color-text-muted);
  font-size: 18px;
  letter-spacing: 2px;
  flex-shrink: 0;
}

/* Data row: label + value (key-value pair) */
.mini-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid var(--color-border);
}
.mini-row:last-child {
  padding-bottom: 0;
}
.mini-row-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}
.mini-row-value {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-default);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Status badge */
.mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 200px;
  border: 1px solid var(--color-border);
  color: var(--color-text-default);
}
.mini-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22C55E;
  flex-shrink: 0;
}
.mini-badge--pending::before { background: #F59E0B; }
.mini-badge--inactive::before { background: var(--color-text-muted); }

/* Product card grid (2 or 3 col) */
.product-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-cards--2col {
  grid-template-columns: repeat(2, 1fr);
}

/* Dark section variant */
.s--dark .product-card {
  background: var(--color-dark-card);
}
.s--dark .product-card-preview {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}
.s--dark .product-card-body h3 { color: var(--color-dark-text); }
.s--dark .product-card-body p { color: var(--color-dark-text-muted); }
.s--dark .mini-profile-name { color: var(--color-dark-text); }
.s--dark .mini-profile-role { color: var(--color-dark-text-muted); }
.s--dark .mini-row { border-color: rgba(255, 255, 255, 0.1); }
.s--dark .mini-row-label { color: var(--color-dark-text-muted); }
.s--dark .mini-row-value { color: var(--color-dark-text); }
.s--dark .mini-badge { border-color: rgba(255, 255, 255, 0.15); color: var(--color-dark-text); }

@media (max-width: 1024px) {
  .product-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .product-cards,
  .product-cards--2col { grid-template-columns: 1fr; }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.015em;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease-in-out;
  text-decoration: none;
}
.btn:hover { opacity: 0.9; }
.btn:active { opacity: 1; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-primary {
  background-color: var(--color-brand-primary);
  color: #FFFFFF;
}
.btn-primary:hover {
  background-color: #333333;
  color: #FFFFFF;
  opacity: 1;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-default);
}
.btn-secondary:hover {
  border-color: var(--color-border-hover);
  color: var(--color-text-default);
  opacity: 1;
}

.btn-accent {
  background-color: var(--color-brand-accent);
  color: #FFFFFF;
}
.btn-accent:hover {
  color: #FFFFFF;
}

.btn--pill { border-radius: 200px; }
.btn--lg { height: 48px; padding: 14px 32px; font-size: 16px; }

/* ---------- Homepage v3 pill header ---------- */
.site-header-pill {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 100;
  pointer-events: none;
}
.site-header-pill-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
  padding: 8px 10px 8px 22px;
  background: rgba(32, 21, 71, 0.72);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border: 1px solid rgba(250, 244, 238, 0.1);
  border-radius: 999px;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.site-header-pill.scrolled .site-header-pill-inner {
  background: rgba(27, 27, 27, 0.88);
  border-color: rgba(250, 244, 238, 0.08);
}
.site-header-pill-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-dark-text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.site-header-pill-orb {
  display: inline-block;
  width: 28px; height: 28px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #E4D5FF 0%, #A98DF6 40%, #5938B7 80%, #2C1666 100%);
  box-shadow: 0 2px 8px rgba(89, 56, 183, 0.5);
}
.site-header-pill-nav {
  display: flex;
  gap: 28px;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(250, 244, 238, 0.78);
}
.site-header-pill-nav a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}
.site-header-pill-nav a:hover { color: var(--color-dark-text); }
.nav-caret { font-size: 9px; margin-left: 2px; opacity: 0.6; }
.site-header-pill-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.site-header-pill .lang-switch {
  display: flex;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-header-pill .lang-switch .active { color: var(--color-dark-text); font-weight: 600; }
.site-header-pill .lang-switch span:not(.active) { color: rgba(250, 244, 238, 0.5); }
.site-header-pill .btn {
  background: var(--color-brand-accent);
  color: #fff;
  height: auto;
  padding: 14px 24px;
  font-size: 14px;
  line-height: 1.4;
  border-radius: 999px;
}
.site-header-pill-logo-img {
  height: 40px;
  width: auto;
  display: block;
}
.site-header-pill .btn:hover { background: var(--color-accent-deep); color: #fff; }
@media (max-width: 980px) {
  .site-header-pill-nav,
  .site-header-pill .lang-switch { display: none; }
}

/* ---- Hamburger button ---- */
.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  pointer-events: auto;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(250,244,238,0.9);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 980px) {
  .nav-burger { display: flex; }
}

/* ---- Mobile nav overlay ---- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 11, 50, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 98;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 80px 24px 60px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.nav-overlay-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.nav-overlay-links a {
  color: rgba(250,244,238,0.88);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: clamp(26px, 7vw, 34px);
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 0.15s ease;
}
.nav-overlay-links a:hover,
.nav-overlay-links a:focus { color: var(--color-accent-light); }
.nav-overlay .nav-overlay-cta {
  border-radius: 999px;
  background: var(--color-brand-accent);
  color: #fff;
  padding: 14px 28px;
  font-size: 15px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
}
.nav-overlay .nav-overlay-cta:hover { background: var(--color-accent-deep); color: #fff; }

/* ---------- Pill buttons: all .btn fully rounded (v3 look) ---------- */
.btn { border-radius: 999px; }

/* ---------- Problem section H2 em accent ---------- */
.s--white h2 em,
.s h2 em {
  color: var(--color-brand-accent);
  font-style: italic;
  font-weight: 600;
}
/* But preserve dark-section em color (accent-light) */
.s--dark h2 em, .s--dark-inset h2 em, .hp-hero h1 em {
  color: var(--color-accent-light);
}

/* ---------- Signals section spacing ---------- */
.signals-grid { margin-top: 20px; }
.section-head { margin-bottom: clamp(40px, 5vw, 64px); }
.section-head h2 { margin-bottom: 20px; max-width: 22ch; }
.section-head.t-center h2 { margin-left: auto; margin-right: auto; }
.section-head .label,
.section-head .section-label { margin-bottom: 16px; display: inline-block; }
.section-head .s-intro { max-width: 54ch; margin-top: 16px; }
.section-head.t-center .s-intro { margin-left: auto; margin-right: auto; }

/* ---------- Full v3 footer — dark (Deel-inspired) ---------- */
.hp-footer {
  background: #0D0D0D;
  color: #F7F2EA;
  padding: 0;
  border-top: none;
  /* Override global `footer { text-align: center; }` — hp-footer content is left-aligned;
     the middle newsletter block opts back into center via `.footer-newsletter-text`. */
  text-align: left;
}
.hp-footer .wrap { max-width: 1312px; padding: 0 clamp(20px, 4vw, 40px); }

.footer-reviews {
  padding: 72px 0;
  border-bottom: 1px solid rgba(247,242,234,0.08);
}
.footer-reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-reviews-badge { display: flex; align-items: center; gap: 18px; }
.footer-reviews-badge-mark {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 30%, #FFC29B 0%, rgba(255,194,155,0) 42%),
    radial-gradient(circle at 68% 42%, #8EC5FF 0%, rgba(142,197,255,0) 48%),
    radial-gradient(circle at 48% 72%, #C58BFF 0%, rgba(197,139,255,0) 52%),
    radial-gradient(circle at 50% 50%, #6B5CF3 0%, #1E2E8F 100%);
  box-shadow: 0 0 24px rgba(167,155,247,0.35);
}
.footer-reviews-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: #F7F2EA;
  margin: 0 0 6px;
}
.footer-reviews-meta {
  font-size: 14px;
  color: rgba(247,242,234,0.55);
  margin-top: 0;
}
.footer-reviews-meta a { color: rgba(247,242,234,0.8); text-decoration: underline; text-underline-offset: 3px; }
.footer-reviews-arrows { display: flex; gap: 12px; flex-shrink: 0; }
.footer-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(247,242,234,0.22);
  background: transparent;
  color: #F7F2EA;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, opacity 0.2s;
}
.footer-arrow:hover:not(:disabled) { background: rgba(247,242,234,0.08); border-color: rgba(247,242,234,0.4); }
.footer-arrow:disabled { opacity: 0.35; cursor: not-allowed; }
.footer-reviews-viewport { overflow: hidden; }
.footer-reviews-viewport::-webkit-scrollbar { display: none; }
.footer-reviews-track {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.footer-reviews-track::-webkit-scrollbar { display: none; }
.footer-review-sm {
  flex: 0 0 calc((100% - 96px) / 4);
  min-width: 240px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-review-sm-name { font-size: 14px; font-weight: 600; color: #F7F2EA; }
.footer-review-sm-stars { color: #F5A623; font-size: 14px; letter-spacing: 3px; }
.footer-review-sm-quote { font-size: 14px; line-height: 1.55; color: rgba(247,242,234,0.72); margin: 0; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  padding: 56px 0 64px;
  border-top: 1px solid rgba(247,242,234,0.08);
}
@media (max-width: 900px) { .footer-links { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
.footer-links-col h4 {
  font-size: 15px;
  font-weight: 600;
  color: #F7F2EA;
  margin-bottom: 20px;
}
.footer-links-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-links-col ul a {
  font-size: 14px;
  color: rgba(247,242,234,0.6);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links-col ul a:hover { color: #F7F2EA; }

.footer-links-col ul .footer-link-disabled {
  font-size: 14px;
  color: rgba(247, 242, 234, 0.25);
  cursor: default;
  text-decoration: none;
}

.status-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  margin-left: 6px;
  vertical-align: middle;
}

.footer-brand {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) minmax(280px, 1.3fr) minmax(340px, 1.4fr);
  gap: 48px;
  align-items: start;
  padding: 64px 0;
  border-top: 1px solid rgba(247,242,234,0.08);
}
@media (max-width: 900px) { .footer-brand { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand-left { display: flex; flex-direction: column; gap: 24px; }
.footer-brand-logo { display: inline-flex; align-items: center; gap: 10px; }
.footer-brand-logo img { height: 40px; width: auto; }
.footer-brand-middle { display: flex; align-items: flex-start; padding-top: 2px; }
.footer-brand-right { display: flex; flex-direction: column; gap: 10px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(247,242,234,0.08);
  display: grid;
  place-items: center;
  color: #F7F2EA;
  transition: background 0.2s;
  font-size: 14px;
  text-decoration: none;
}
.footer-social:hover { background: rgba(247,242,234,0.18); color: #F7F2EA; }
.footer-newsletter-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.25;
  color: #F7F2EA;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0;
  text-align: center;
}
.footer-newsletter-form { display: flex; flex-direction: column; gap: 8px; }
.footer-newsletter-input-wrap {
  position: relative;
  width: 100%;
}
.footer-newsletter-input {
  width: 100%;
  border: none;
  background: #F7F2EA;
  color: #141414;
  font-size: 15px;
  font-family: inherit;
  padding: 18px 62px 18px 24px;
  border-radius: 999px;
  outline: none;
}
.footer-newsletter-input::placeholder { color: rgba(20,20,20,0.45); }
.footer-newsletter-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 0;
  background: #141414;
  color: #F7F2EA;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s;
}
.footer-newsletter-btn:hover { background: var(--color-brand-accent); }
.footer-newsletter-privacy {
  font-size: 12px;
  color: rgba(247,242,234,0.5);
  margin: 0;
  line-height: 1.5;
}
.footer-newsletter-privacy a { color: rgba(247,242,234,0.75); text-decoration: underline; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 28px 0 36px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(247,242,234,0.5);
  border-top: 1px solid rgba(247,242,234,0.08);
}
.footer-bottom-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(247,242,234,0.55); text-decoration: none; transition: color 0.15s; }
.footer-bottom-links a:hover { color: #F7F2EA; }
@media (max-width: 900px) {
  .footer-reviews-head { flex-direction: column; }
  .footer-review-sm { flex: 0 0 80%; }
  .footer-brand { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* v3 button aliases */
.btn--primary { background-color: var(--color-brand-primary); color: #FFFFFF; }
.btn--primary:hover { background-color: #333; color: #FFFFFF; }
.btn--accent { background-color: var(--color-brand-accent); color: #FFFFFF; }
.btn--accent:hover { background-color: #6e4bce; color: #FFFFFF; }
.btn--secondary { background: transparent; border: 1px solid var(--color-border); color: var(--color-text-default); }
.btn--secondary:hover { border-color: var(--color-border-hover); color: var(--color-text-default); }

/* Hero buttons: light accent on dark bg; ghost for secondary */
.btn--accent-light {
  background: var(--color-accent-light);
  color: var(--color-accent-deep);
  border: 1px solid var(--color-accent-light);
}
.btn--accent-light:hover { background: #c4b1f9; color: var(--color-accent-deep); }
.btn--dark-ghost {
  background: transparent;
  color: var(--color-dark-text);
  border: 1px solid rgba(250,244,238,0.25);
}
.btn--dark-ghost:hover { border-color: rgba(250,244,238,0.55); color: var(--color-dark-text); background: transparent; }

/* Utility */
.t-center { text-align: center; }
.signals-cta-row { margin-top: 48px; }
.arche-label { display: block; margin-bottom: 20px; }
.b2b-card-spaced { margin-top: 64px; }

/* ==========================================================================
   SOCIAL PROOF (proof-marquee + proof-head + proof-stats) — under B2B card
   ========================================================================== */

.proof-marquee-wrap { margin-top: 80px; }

/* Light-bg marquee override (dark logos on cream/white) */
.logo-marquee--light .lm-logo {
  color: rgba(20, 20, 20, 0.65);
  opacity: 1;
}
.logo-marquee--light .lm-logo:hover {
  color: #141414;
  opacity: 1;
}

.proof-head {
  text-align: center;
  max-width: 780px;
  margin: 72px auto 48px;
}
.proof-head h2 {
  font-size: clamp(34px, 4.2vw, 52px);
  max-width: none;
}
.proof-head h2 em { color: var(--color-brand-accent); font-style: italic; font-weight: 600; }

.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
  margin-bottom: 0;
}
.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.proof-stat-num {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
  color: #141414;
}
.proof-stat-num em { color: var(--color-brand-accent); font-style: normal; }
.proof-stat-label {
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.4;
  color: var(--color-text-default);
  font-weight: 500;
  max-width: 280px;
}
@media (max-width: 900px) {
  .proof-stats { grid-template-columns: 1fr; gap: 32px; }
  .proof-stat-label { margin: 0 auto; }
}

/* ==========================================================================
   BENEFITS
   ========================================================================== */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.benefit { position: relative; padding-left: 20px; }
.benefit::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-brand-accent);
}
.benefit p { font-size: 17px; line-height: 1.7; margin-bottom: 0; }

/* ==========================================================================
   LEGACY COMPONENTS (person card, client logo, superpower card)
   ========================================================================== */

.card {
  padding: var(--space-xl);
  border-radius: 12px;
  border: none;
  background-color: var(--color-surface-raised);
  transition: box-shadow 0.15s cubic-bezier(0, 0, 0.2, 1);
}
.card:hover {
  box-shadow: var(--shadow-lg);
}

/* Dark card variant */
.s--dark .card,
.s--dark-inset .card {
  background: var(--color-dark-card);
}

.person-card { text-align: center; }
.person-card img { aspect-ratio: 1 / 1; border-radius: 50%; object-fit: cover; width: 100%; max-width: 200px; }
.person-card h3 { margin-top: var(--space-md); }
.person-card .role { color: var(--color-text-muted); font-size: 14px; }

.client-logo { display: inline-flex; align-items: center; }
.client-logo img { filter: grayscale(100%) opacity(0.6); transition: filter 200ms ease; max-height: 40px; width: auto; }
.client-logo img:hover { filter: none; }

/* --- Logo Marquee (auto-scrolling logo strip with fade edges) --- */
.logo-marquee { position: relative; overflow: hidden; padding: var(--space-2xl) 0; }
.logo-marquee::before,
.logo-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(80px, 12vw, 200px);
  z-index: 2;
  pointer-events: none;
}
.logo-marquee::before { left: 0; background: linear-gradient(to right, var(--color-surface), transparent); }
.logo-marquee::after { right: 0; background: linear-gradient(to left, var(--color-surface), transparent); }
.s--dark .logo-marquee::before { background: linear-gradient(to right, var(--color-brand-primary), transparent); }
.s--dark .logo-marquee::after { background: linear-gradient(to left, var(--color-brand-primary), transparent); }
.s--warm .logo-marquee::before { background: linear-gradient(to right, var(--color-surface-warm), transparent); }
.s--warm .logo-marquee::after { background: linear-gradient(to left, var(--color-surface-warm), transparent); }
.s--white .logo-marquee::before { background: linear-gradient(to right, #fff, transparent); }
.s--white .logo-marquee::after { background: linear-gradient(to left, #fff, transparent); }

.logo-marquee-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}
.s--dark .logo-marquee-label { color: var(--color-dark-text-muted); }

.logo-marquee-track {
  display: flex;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}
.logo-marquee:hover .logo-marquee-track { animation-play-state: paused; }

.logo-marquee-track img {
  height: clamp(24px, 3vw, 24px);
  width: auto;
  flex-shrink: 0;
  filter: grayscale(100%) opacity(0.7);
  transition: filter 200ms ease;
}
.logo-marquee-track img:hover { filter: grayscale(0%) opacity(1); }
.s--dark .logo-marquee-track img { filter: grayscale(100%) brightness(2) opacity(0.4); }
.s--dark .logo-marquee-track img:hover { filter: grayscale(0%) brightness(1) opacity(1); }

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.superpower-card { display: flex; gap: var(--space-md); align-items: flex-start; }
.superpower-card img { width: 64px; height: 64px; flex-shrink: 0; }

.input {
  height: 40px;
  padding: 10px 14px;
  border-radius: 200px;
  border: 1px solid var(--color-border);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text-default);
  background-color: var(--color-surface);
  outline: none;
  transition: border-color 0.15s ease-in-out;
}
.input:focus {
  outline: 2px solid var(--color-brand-accent);
  border-color: transparent;
}

/* ==========================================================================
   UTILITY
   ========================================================================== */

.text-muted { color: var(--color-text-muted); }
.text-secondary { color: var(--color-text-secondary); }
.surface-raised { background-color: var(--color-surface-raised); }
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 900px) {
  .principle-row { grid-template-columns: 1fr; min-height: auto; }
  .principle-content { border-left: none; border-top: 1px solid var(--color-border); }
  .sub-principles { grid-template-columns: repeat(2, 1fr); }
  .sub-principle:nth-child(2) { border-right: none; }
  .sub-principle:nth-child(n+3) { border-top: 1px solid var(--color-border); }
  .traits { grid-template-columns: repeat(2, 1fr); }
  .challenges { grid-template-columns: 1fr; }
  .site-nav { gap: var(--space-md); }
}

@media (max-width: 600px) {
  .sub-principles { grid-template-columns: 1fr; }
  .sub-principle { border-right: none; }
  .sub-principle + .sub-principle { border-top: 1px solid var(--color-border); }
  .traits { grid-template-columns: 1fr; }
  .stats-bar-grid { flex-direction: column; gap: 32px; }
  .scenarios { grid-template-columns: 1fr; }
  .hero-scroll { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .rule { grid-template-columns: 1fr; }
  .site-nav { display: none; }
}

/* ==========================================================================
   PROCESS STEPS (horizontal timeline)
   ========================================================================== */

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
  position: relative;
}

.process-step {
  padding: clamp(24px, 3vw, 40px);
  position: relative;
  counter-increment: step;
}

.process-step + .process-step {
  border-left: 1px solid var(--color-border);
}

.process-step-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 600;
  color: var(--color-brand-accent);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.process-step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.process-step p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(3) { border-left: none; }
  .process-step:nth-child(n+3) { border-top: 1px solid var(--color-border); }
}
@media (max-width: 600px) {
  .process-steps { grid-template-columns: 1fr; }
  .process-step + .process-step { border-left: none; border-top: 1px solid var(--color-border); }
}

/* ==========================================================================
   TESTIMONIAL QUOTES GRID (compact quotes without photos)
   ========================================================================== */

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.quote-card {
  padding: clamp(24px, 3vw, 36px);
  border-radius: 12px;
  background: var(--color-surface-raised);
  transition: box-shadow 0.15s cubic-bezier(0, 0, 0.2, 1);
}
.quote-card:hover {
  box-shadow: none;
}

.quote-card blockquote {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--color-text-default);
  margin-bottom: 20px;
}

.quote-card-author {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-muted);
}

/* Dark variant */
.s--dark .quote-card {
  background: var(--color-dark-card);
}
.s--dark .quote-card blockquote {
  color: var(--color-dark-text);
}
.s--dark .quote-card-author {
  color: var(--color-dark-text-muted);
}

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

/* ==========================================================================
   SERVICE FEATURE CARD (large card with tag pills and image placeholder)
   ========================================================================== */

.service-cards {
  display: grid;
  gap: 48px;
}

.service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "media content";
  gap: 0;
  border-radius: 16px;
  background: var(--color-surface-raised);
  overflow: hidden;
  transition: box-shadow 0.15s cubic-bezier(0, 0, 0.2, 1);
}
.service-card:hover {
  box-shadow: none;
}

.service-card-content {
  grid-area: content;
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card-content h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.2;
}

.service-card-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
  max-width: 40ch;
}

.service-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-card-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 200px;
  background: var(--color-surface);
  color: var(--color-text-muted);
}

/* Optional inline CTA link inside service-card (nexos.ai "Explore AI Agents →" style) */
.service-card-link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-brand-accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--space-md);
  align-self: flex-start;
}
.service-card-link::after {
  content: "→";
  font-size: 16px;
  transition: transform 0.15s ease-in-out;
}
.service-card-link:hover {
  color: var(--color-brand-accent);
}
.service-card-link:hover::after {
  transform: translateX(4px);
}

.service-card-outcome {
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--color-text-default);
}
.service-card-outcome strong {
  color: var(--color-brand-accent);
  font-weight: 600;
}

/* Per-card pull quote inside a .service-card (VCS personas) */
.service-card-quote {
  margin: 20px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--color-border);
}
.service-card-quote blockquote {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 17px;
  line-height: 1.45;
  color: var(--color-text-default);
  font-style: italic;
}
.service-card-quote figcaption {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--color-text-secondary);
}
.service-card-quote figcaption strong {
  color: var(--color-text-default);
  font-weight: 600;
}

.service-card-media {
  grid-area: media;
  min-height: 320px;
  background: var(--color-surface);
  overflow: hidden;
  position: relative;
}

.service-card-media picture,
.service-card-media picture > img {
  display: block;
  width: 100%;
  height: 100%;
}
.service-card-media img {
  object-fit: cover;
}

/* Image placeholder */
.service-card-placeholder {
  width: 100%;
  height: 100%;
  min-height: 320px;
  background: linear-gradient(135deg, var(--color-accent-deep) 0%, var(--color-brand-accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-placeholder svg {
  width: 64px;
  height: 64px;
  opacity: 0.3;
  color: #FFFFFF;
}

/* Reverse layout — swap the two named grid areas. HTML source order is
   irrelevant: .service-card-media always lands in the "media" area and
   .service-card-content always lands in the "content" area. */
.service-card--reverse {
  grid-template-areas: "content media";
}

/* Bare variant — no card wrapper. Photo and text sit directly on the section
   background. Photo keeps a pronounced 24px radius and the gap between photo
   and content is intentionally tight so the pair reads as one unit. */
.service-card--bare {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  gap: clamp(20px, 2.5vw, 40px);
  align-items: center;
}
.service-card--bare:hover {
  box-shadow: none;
}
.service-card--bare .service-card-media {
  background: transparent;
  min-height: 0;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
/* Make <picture> fill the media box so the img's height: 100% resolves to
   the container, not to picture's intrinsic inline height. */
.service-card--bare .service-card-media picture {
  display: block;
  width: 100%;
  height: 100%;
}
.service-card--bare .service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
  display: block;
}
.service-card--bare .service-card-content {
  padding: 0;
}

@media (max-width: 768px) {
  /* Stack media on top of content regardless of --reverse */
  .service-card,
  .service-card--reverse {
    grid-template-columns: 1fr;
    grid-template-areas: "media" "content";
  }
  .service-card-media { min-height: 220px; }
  .service-card--bare { gap: var(--space-md); }
  .service-card--bare .service-card-media { min-height: 0; border-radius: 20px; }
}

/* ==========================================================================
   BLOG
   ========================================================================== */

/* --- Blog page sections — tighter spacing than default .s --- */
.blog-section {
  padding: clamp(48px, 5vw, 64px) 0;
}
.blog-section + .blog-section {
  padding-top: 0;
}

/* --- Blog Hero (centered, simple) --- */
.blog-hero {
  padding: clamp(120px, 12vw, 160px) 0 clamp(40px, 4vw, 56px);
  text-align: center;
}

.blog-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin: 0 auto var(--space-lg);
}

.blog-hero .s-intro {
  max-width: 50ch;
  margin: 0 auto;
  text-align: center;
}

/* --- Blog Grid (4 columns) --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* --- Blog Card --- */
.blog-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-surface-raised);
  transition: box-shadow 0.15s cubic-bezier(0, 0, 0.2, 1);
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  color: inherit;
}

.blog-card-image {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Gradient placeholders for prototype */
.blog-card-image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-body {
  padding: 20px 24px 24px;
}

.blog-card-date {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 8px;
  display: block;
}

.blog-card-body h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
  color: var(--color-text-default);
  margin-bottom: 8px;
}

.blog-card-body p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --- Newsletter CTA Card --- */
.newsletter-card {
  background: var(--color-brand-primary);
  border-radius: 20px;
  padding: clamp(40px, 5vw, 64px) clamp(32px, 5vw, 64px);
  text-align: center;
  color: var(--color-dark-text);
}

.newsletter-card .section-num {
  color: var(--color-accent-light);
}

.newsletter-card h2 {
  font-size: clamp(24px, 3vw, 36px);
  color: var(--color-dark-text);
  margin-bottom: var(--space-md);
}

.newsletter-card p {
  color: var(--color-dark-text-muted);
  max-width: 45ch;
  margin: 0 auto var(--space-xl);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form .input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border-color: rgba(250, 244, 238, 0.2);
  color: var(--color-dark-text);
}
.newsletter-form .input::placeholder {
  color: var(--color-dark-text-muted);
}
.newsletter-form .input:focus {
  border-color: transparent;
  outline: 2px solid var(--color-accent-light);
}

.newsletter-form .btn-primary {
  background: var(--color-accent-light);
  color: var(--color-accent-deep);
}
.newsletter-form .btn-primary:hover {
  background: var(--color-accent-subtle);
  color: var(--color-accent-deep);
}

/* Gradient variant */
.newsletter-card--gradient {
  background: linear-gradient(135deg, var(--color-accent-deep) 0%, var(--color-brand-accent) 60%, #7C5CBF 100%);
}

.newsletter-card .newsletter-msg {
  margin: var(--space-sm) auto 0;
  min-height: 1.4em;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.35s;
}
.newsletter-card .newsletter-msg:not(:empty) { opacity: 1; }
.newsletter-msg--ok  { color: #86efac; }
.newsletter-msg--err { color: #fca5a5; }

/* --- Blog Post (article detail) --- */
.blog-post-header {
  padding: clamp(120px, 12vw, 160px) 0 clamp(32px, 4vw, 48px);
  text-align: center;
}

.blog-post-header .section-num {
  margin-bottom: var(--space-md);
}
.blog-post-header .section-num a {
  color: inherit;
  text-decoration: none;
}
.blog-post-header .section-num a:hover {
  color: var(--color-brand-accent);
}

.blog-post-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  display: block;
}

.blog-post-header h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin: 0 auto var(--space-lg);
  padding: 0 clamp(20px, 4vw, 64px);
}

.blog-post-header .blog-post-lead {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}

/* Blog post body (includes cover) */
.blog-post {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px) clamp(64px, 8vw, 96px);
}

/* Blog post cover image — inside .blog-post for same width */
.blog-post-cover {
  margin-bottom: var(--space-2xl);
}
.blog-post-cover img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}
.blog-post-cover--placeholder {
  aspect-ratio: 16 / 9;
  border-radius: 12px;
}

.blog-post p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.blog-post h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-top: 48px;
}

.blog-post h3 {
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 12px;
}

.blog-post ul,
.blog-post ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.blog-post li {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.blog-post blockquote {
  border-left: 3px solid var(--color-brand-accent);
  padding-left: 24px;
  margin: 32px 0;
  font-style: italic;
  color: var(--color-text-secondary);
}
.blog-post blockquote p {
  margin-bottom: 0;
}

.blog-post img {
  width: 100%;
  border-radius: 12px;
  margin: 32px 0;
}

.blog-post a {
  color: var(--color-brand-accent);
}

/* Author card */
.blog-post-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  border-top: 1px solid var(--color-border);
  padding-top: 32px;
  margin-top: 48px;
}

.blog-post-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent-subtle);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--color-accent-deep);
}

.blog-post-author-info {
  flex: 1;
}

.blog-post-author-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-default);
  line-height: 1.3;
}

.blog-post-author-role {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.3;
}

/* --- Blog Responsive --- */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form .input { width: 100%; }
}

/* --- Footer --- */
footer {
  padding: clamp(32px, 4vw, 48px) 0;
  text-align: center;
}
footer .brand {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  margin-bottom: 8px;
}
footer .tagline {
  color: var(--color-text-secondary);
  margin-bottom: 16px;
}
footer .built {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* ==========================================================================
   HOMEPAGE v3 — 1:1 port of newspweb/site from claude design (Apr 2026)
   All classes scoped to homepage sections below. Do not reuse on other pages.
   ========================================================================== */

/* ----- Homepage-only section base (shared with other pages but harmless) --- */

/* --- Language switcher in header ---------------------------------------- */
.lang-switch {
  display: flex;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lang-switch .active { color: var(--color-brand-primary); font-weight: 600; }
.lang-switch span:not(.active) { color: var(--color-text-muted); }
@media (max-width: 980px) { .lang-switch { display: none; } }

.site-header--dark .lang-switch .active { color: var(--color-dark-text); }
.site-header--dark .lang-switch span:not(.active) { color: rgba(250,244,238,0.5); }

.nav-caret { font-size: 9px; margin-left: 2px; opacity: 0.6; }

/* --- Homepage hero (dark, star particles) -------------------------------- */
.hp-hero {
  position: relative;
  background: var(--color-accent-deep);
  color: var(--color-dark-text);
  padding: clamp(140px, 14vw, 180px) 0 clamp(80px, 8vw, 120px);
  overflow: hidden;
}
.hp-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(169,141,246,0.25), transparent 70%),
    radial-gradient(ellipse 70% 50% at 80% 100%, rgba(89,56,183,0.35), transparent 70%),
    radial-gradient(ellipse 40% 30% at 10% 60%, rgba(169,141,246,0.12), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hp-hero-stars {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.55;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 15% 20%, rgba(250,244,238,0.6), transparent),
    radial-gradient(1px 1px at 82% 12%, rgba(169,141,246,0.7), transparent),
    radial-gradient(1.5px 1.5px at 44% 68%, rgba(250,244,238,0.5), transparent),
    radial-gradient(1px 1px at 68% 40%, rgba(250,244,238,0.4), transparent),
    radial-gradient(1px 1px at 22% 78%, rgba(169,141,246,0.5), transparent),
    radial-gradient(1.5px 1.5px at 91% 76%, rgba(250,244,238,0.6), transparent),
    radial-gradient(1px 1px at 6% 42%, rgba(250,244,238,0.4), transparent),
    radial-gradient(1px 1px at 55% 8%, rgba(169,141,246,0.6), transparent);
}
.hp-hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hp-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 20px;
}
.hp-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.6vw, 76px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0 auto 28px;
  max-width: 18ch;
  color: var(--color-dark-text);
}
.hp-hero h1 em {
  color: var(--color-accent-light);
  font-style: italic;
  font-weight: 600;
}
.hp-hero-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: rgba(250,244,238,0.78);
  max-width: 58ch;
  margin: 0 auto 40px;
}
.hp-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 auto 32px;
  justify-content: center;
}
.hp-hero-trust {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(250,244,238,0.55);
  line-height: 1.8;
  max-width: 68ch;
  margin: 0 auto;
}
.hp-hero-trust strong {
  color: var(--color-dark-text);
  font-weight: 700;
}

/* Hero report card wrapper */
.hp-hero-card-wrap {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: clamp(56px, 6vw, 80px) auto 0;
  padding: 0 clamp(20px, 4vw, 32px);
}

/* --- Logo marquee (v3) --------------------------------------------------- */
.lm {
  position: relative;
  z-index: 1;
  margin-top: 40px;
  overflow: hidden;
  padding-top: 20px;
}
.lm-track {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.lm-row {
  display: flex;
  gap: clamp(48px, 6vw, 88px);
  align-items: center;
  width: max-content;
  animation: lm-scroll 44s linear infinite;
  white-space: nowrap;
  padding: 8px 0;
}
.lm:hover .lm-row { animation-play-state: paused; }
@keyframes lm-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.lm-logo {
  font-size: clamp(20px, 1.9vw, 26px);
  line-height: 1;
  color: rgba(250,244,238,0.78);
  letter-spacing: -0.015em;
  transition: color 0.2s ease, opacity 0.2s ease;
  opacity: 0.85;
}
.lm-logo:hover { color: rgba(250,244,238,1); opacity: 1; }
.lm-logo.lm-1  { font-family: 'Signika', serif; font-weight: 700; letter-spacing: -0.02em; }
.lm-logo.lm-2  { font-family: 'Geist', sans-serif; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; font-size: clamp(18px, 1.7vw, 23px); }
.lm-logo.lm-3  { font-family: 'Signika', sans-serif; font-weight: 600; font-style: italic; }
.lm-logo.lm-4  { font-family: 'Geist', sans-serif; font-weight: 500; letter-spacing: -0.01em; }
.lm-logo.lm-5  { font-family: 'Geist', sans-serif; font-weight: 900; letter-spacing: 0.02em; font-size: clamp(24px, 2.3vw, 32px); }
.lm-logo.lm-6  { font-family: 'Geist Mono', monospace; font-weight: 500; letter-spacing: -0.02em; text-transform: lowercase; }
.lm-logo.lm-7  { font-family: 'Signika', sans-serif; font-weight: 700; letter-spacing: 0; }
.lm-logo.lm-8  { font-family: 'Geist', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: clamp(17px, 1.6vw, 22px); }
.lm-logo.lm-9  { font-family: 'Signika', sans-serif; font-weight: 500; letter-spacing: 0.02em; }
.lm-logo.lm-10 { font-family: 'Geist', sans-serif; font-weight: 600; font-style: italic; letter-spacing: -0.02em; }
@media (prefers-reduced-motion: reduce) { .lm-row { animation: none; } }

/* --- Hero Report v2 (dark card with 3 tabs) ------------------------------ */
.hero-report-v2 {
  background: #1A1A1F;
  color: #F5F1EC;
  border-radius: 20px;
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.06);
}
.hr-tabs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: rgba(255,255,255,0.05);
  border-radius: 999px;
  align-self: flex-start;
}
.hr-tab {
  background: transparent;
  border: 0;
  padding: 7px 16px;
  border-radius: 999px;
  color: rgba(245,241,236,0.55);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  font-family: inherit;
}
.hr-tab:hover { color: rgba(245,241,236,0.85); }
.hr-tab.active,
.hr-tab[aria-selected="true"] {
  background: rgba(255,255,255,0.1);
  color: #F5F1EC;
}
.hr-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}
.hr-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #F5F1EC;
  margin: 0;
}
.hr-head-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,241,236,0.4);
}
.hr-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 0 -4px;
}
.hr-body { display: grid; gap: 40px; padding-top: 4px; }
.hr-body--two { grid-template-columns: minmax(0,1fr) minmax(0,1.1fr); }
.hr-body[hidden] { display: none; }
@media (max-width: 900px) { .hr-body--two { grid-template-columns: 1fr; gap: 32px; } }
.hr-col { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.hr-mono-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,241,236,0.45);
}
.hr-section-gap { margin-top: 14px; }

.hr-archetype-row { display: flex; align-items: center; gap: 14px; }
.hr-archetype-badge {
  width: 52px; height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hr-archetype-badge img { width: 100%; height: 100%; object-fit: contain; display: block; }
.hr-archetype-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-top: 2px;
}
.hr-score-block { display: flex; flex-direction: column; gap: 4px; margin-top: 6px; }
.hr-score-row { display: flex; align-items: baseline; gap: 12px; font-weight: 600; }
.hr-score-pctile { font-family: var(--font-mono); font-size: 11px; color: rgba(245,241,236,0.55); }
.hr-score-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #F5F1EC;
}
.hr-quote {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(245,241,236,0.8);
  font-style: italic;
  padding-left: 12px;
  border-left: 2px solid #6B5CF3;
}
.hr-barlist { display: flex; flex-direction: column; gap: 10px; }
.hr-barrow {
  display: grid;
  grid-template-columns: 90px 1fr 28px;
  align-items: center;
  gap: 12px;
}
.hr-barrow-name { font-size: 13px; color: rgba(245,241,236,0.85); }
.hr-barrow-val  { font-size: 13px; color: rgba(245,241,236,0.9); text-align: right; font-variant-numeric: tabular-nums; }
.hr-bar {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
}
.hr-bar-fill { height: 100%; border-radius: 999px; transition: width 0.4s ease; }
.hr-tone-violet  { background: #8B7CF6; }
.hr-tone-good    { background: #4ADE80; }
.hr-tone-warn    { background: #F5A524; }
.hr-tone-bad     { background: #EF7374; }
.hr-tone-neutral { background: rgba(245,241,236,0.8); }

.hr-findings { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.hr-findings li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(245,241,236,0.88);
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hr-findings li:first-child { border-top: 0; }
.hr-arrow { color: #8B7CF6; font-weight: 500; flex-shrink: 0; }

.hr-team-row { display: flex; align-items: center; gap: 12px; margin-top: 2px; }
.hr-delta-pill {
  background: rgba(74,222,128,0.15);
  color: #4ADE80;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  letter-spacing: -0.005em;
}

.hr-heat-head { display: flex; justify-content: space-between; align-items: baseline; }
.hr-heat-avg { color: rgba(245,241,236,0.4); }
.hr-heatmap { display: flex; flex-direction: column; gap: 4px; margin-top: 6px; }
.hr-heat-cols, .hr-heat-row {
  display: grid;
  grid-template-columns: 70px repeat(5, minmax(0,1fr));
  gap: 4px;
  align-items: center;
}
.hr-heat-col-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(245,241,236,0.4);
  text-align: center;
  padding-bottom: 2px;
}
.hr-heat-rowhead-sp { display: block; }
.hr-heat-rowhead {
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(245,241,236,0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hr-heat-cell { aspect-ratio: 1.15/1; border-radius: 6px; background: rgba(139,124,246,0.18); }
.hr-heat-cell[data-l="1"] { background: rgba(139,124,246,0.12); }
.hr-heat-cell[data-l="2"] { background: rgba(139,124,246,0.28); }
.hr-heat-cell[data-l="3"] { background: rgba(139,124,246,0.46); }
.hr-heat-cell[data-l="4"] { background: rgba(139,124,246,0.70); }
.hr-heat-cell[data-l="5"] { background: rgba(139,124,246,0.95); }
.hr-heat-scale {
  display: flex;
  justify-content: space-between;
  padding: 6px 4px 0 74px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(245,241,236,0.35);
}

.hr-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hr-stat-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hr-stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #F5F1EC;
}
.hr-stat-box.hr-tone-good .hr-stat-num { color: #4ADE80; }
.hr-stat-box.hr-tone-warn .hr-stat-num { color: #F5A524; }
.hr-stat-box.hr-tone-bad  .hr-stat-num { color: #EF7374; }

/* --- Problem cards (v3) --------------------------------------------------- */
.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 1080px) { .problem-cards { grid-template-columns: 1fr; gap: 18px; } }

.pcard {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 480px;
  border: 1px solid transparent;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.pcard:hover { transform: translateY(-4px); }
.pcard--charcoal {
  background: linear-gradient(165deg, #1a1a1a 0%, #242424 100%);
  color: #F5F1EC;
  border-color: rgba(255,255,255,0.06);
}
.pcard--lime {
  background: #E6FF3A;
  color: #141414;
  border-color: rgba(0,0,0,0.08);
}
.pcard--cream {
  background: linear-gradient(165deg, #FAF6F1 0%, #F3EDE3 100%);
  color: #1a1a1a;
  border-color: rgba(0,0,0,0.05);
}
.pcard-flag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 4;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: #141414;
  color: #E6FF3A;
  padding: 6px 10px;
  border-radius: 999px;
}
.pcard-viz {
  position: relative;
  flex: 1 1 auto;
  min-height: 170px;
  padding: 22px 20px 8px;
  overflow: hidden;
  zoom: 0.8;
}
.pcard-body {
  padding: 18px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pcard-num {
  font-family: var(--font-display);
  font-size: clamp(44px, 4.4vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 500;
  font-feature-settings: "ss01","tnum";
}
.pcard-num--white { color: #F5F1EC; }
.pcard-num--dark  { color: #141414; }
.pcard-num--green { color: #2A8C4B; }
.pcard-text {
  font-size: 16px;
  line-height: 1.5;
  max-width: 36ch;
  color: inherit;
  opacity: 0.92;
}
.pcard--charcoal .pcard-text { color: rgba(245,241,236,0.8); }
.pcard-text em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  opacity: 1;
}
.pcard-source {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-top: 4px;
}

/* --- Mockup 1: Dashboard (no-data) --------------------------------------- */
.m-dash {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px 18px 14px;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.6);
  transform: rotate(-1.5deg);
  margin: 10px 8px 0 0;
}
.m-dash-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.m-dash-title { font-size: 13px; font-weight: 600; color: #F5F1EC; letter-spacing: -0.01em; }
.m-dash-sub { font-family: var(--font-mono); font-size: 10px; color: rgba(245,241,236,0.45); margin-top: 3px; }
.m-dash-pill {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(230,255,58,0.15);
  color: #E6FF3A;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(230,255,58,0.3);
}
.m-dash-stat { display: flex; align-items: baseline; gap: 10px; margin-bottom: 8px; }
.m-dash-num {
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
  color: rgba(245,241,236,0.35);
  letter-spacing: -0.02em;
}
.m-dash-delta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,241,236,0.4);
  padding: 3px 7px;
  border: 1px dashed rgba(245,241,236,0.25);
  border-radius: 4px;
}
.m-dash-chart { width: 100%; height: 44px; opacity: 0.5; }

.m-chip {
  position: absolute;
  top: 22px;
  right: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #3a1a1a;
  color: #ff8a6e;
  border: 1px solid rgba(255,138,110,0.3);
  box-shadow: 0 10px 20px -10px rgba(0,0,0,0.5);
  transform: rotate(3deg);
}
.m-chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff8a6e;
  animation: mchip-blink 1.4s ease-in-out infinite;
}
@keyframes mchip-blink { 50% { opacity: 0.3; } }

.m-mgr {
  position: absolute;
  bottom: 4px;
  left: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 10px;
  border-radius: 14px;
  background: #F5F1EC;
  color: #1a1a1a;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.7);
  transform: rotate(-2deg);
  max-width: 220px;
}
.m-mgr-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #E6FF3A;
  color: #141414;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
}
.m-mgr-name { font-size: 11px; font-weight: 600; opacity: 0.6; }
.m-mgr-q {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-top: 1px;
}

/* --- Mockup 2: Chat iteration -------------------------------------------- */
.m-chat-col { display: flex; flex-direction: column; gap: 6px; height: 100%; }
.m-chat {
  background: #FAFAF8;
  border-radius: 12px;
  padding: 10px 12px 12px;
  box-shadow: 0 14px 30px -14px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.m-chat--single  { transform: rotate(-1deg);  max-width: 78%; align-self: flex-start; margin-top: 4px; }
.m-chat--iterate { transform: rotate(1.2deg); max-width: 84%; align-self: flex-end;  background: #141414; color: #F5F1EC; }
.m-chat-head { display: flex; align-items: center; margin-bottom: 4px; }
.m-chat-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(20,20,20,0.45);
}
.m-chat--iterate .m-chat-label { color: rgba(230,255,58,0.9); }
.m-chat-bubble {
  font-size: 11.5px;
  line-height: 1.35;
  padding: 5px 9px;
  border-radius: 10px;
  max-width: 90%;
}
.m-chat-ai   { background: rgba(20,20,20,0.06); color: #141414; align-self: flex-start; }
.m-chat-user { background: #141414; color: #F5F1EC; align-self: flex-end; }
.m-chat--iterate .m-chat-ai   { background: rgba(245,241,236,0.08); color: rgba(245,241,236,0.9); }
.m-chat--iterate .m-chat-user { background: #E6FF3A; color: #141414; }
.m-chat-typing { display: inline-flex; gap: 3px; padding: 8px 10px; }
.m-chat-typing span {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(245,241,236,0.5);
  animation: m-typing 1.2s infinite ease-in-out;
}
.m-chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.m-chat-typing span:nth-child(3) { animation-delay: 0.30s; }
@keyframes m-typing {
  0%,60%,100% { transform: translateY(0);    opacity: 0.4; }
  30%         { transform: translateY(-3px); opacity: 1;   }
}
.m-chat-stamp {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(20,20,20,0.5);
  margin-top: 4px;
  padding-top: 4px;
  border-top: 1px dashed rgba(20,20,20,0.15);
}
.m-chat-stamp--good { color: #E6FF3A; border-top-color: rgba(230,255,58,0.3); }
.m-chat--iterate .m-chat-stamp { color: rgba(230,255,58,0.9); border-top-color: rgba(230,255,58,0.25); }

/* --- Mockup 3: Job posting + pills --------------------------------------- */
.m-job {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  border-radius: 14px;
  padding: 18px 18px 16px;
  box-shadow: 0 20px 40px -20px rgba(50,40,30,0.2);
  transform: rotate(-1.2deg);
  margin: 8px 6px 0 4px;
  border: 1px solid rgba(0,0,0,0.04);
}
.m-job-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.m-job-co { display: flex; align-items: center; gap: 10px; }
.m-job-logo {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, #2A8C4B, #1d6938);
  color: #FFF;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
}
.m-job-name { font-size: 12px; font-weight: 600; color: #1a1a1a; }
.m-job-meta {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  color: rgba(20,20,20,0.5);
  margin-top: 1px;
}
.m-job-pin { font-size: 14px; color: #D4A017; }
.m-job-title {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: #141414;
  margin-bottom: 14px;
  max-width: 18ch;
}
.m-job-section-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(20,20,20,0.4);
  margin-bottom: 8px;
}
.m-job-skills { display: flex; flex-wrap: wrap; gap: 6px; }
.m-skill {
  font-size: 10.5px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(20,20,20,0.06);
  color: rgba(20,20,20,0.75);
  white-space: nowrap;
}
.m-skill--hot {
  background: #141414;
  color: #E6FF3A;
  font-weight: 600;
}
.m-skill--hot em { font-style: normal; color: #E6FF3A; margin-left: 2px; }
.m-skill--more {
  background: transparent;
  border: 1px dashed rgba(20,20,20,0.2);
  color: rgba(20,20,20,0.45);
}
.m-pill {
  position: absolute;
  z-index: 3;
  background: #FFFFFF;
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 20px 40px -16px rgba(50,40,30,0.25);
  border: 1px solid rgba(0,0,0,0.05);
}
.m-pill--rank {
  top: 28px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: rotate(3deg);
}
.m-pill-num {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 0.9;
  color: #2A8C4B;
  letter-spacing: -0.03em;
  font-weight: 600;
}
.m-pill-lbl { font-size: 10px; font-weight: 600; color: #1a1a1a; }
.m-pill-src {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(20,20,20,0.5);
  margin-top: 1px;
}
.m-pill--count {
  bottom: 4px;
  left: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  transform: rotate(-2.5deg);
  background: #141414;
  color: #F5F1EC;
  border-color: rgba(255,255,255,0.08);
}
.m-pill-count {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: #E6FF3A;
  line-height: 1;
  letter-spacing: -0.02em;
}
.m-pill-count-lbl {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,241,236,0.6);
}

/* --- Signals 3-col (v3) --------------------------------------------------- */
.signals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 48px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 1000px) { .signals-grid { grid-template-columns: repeat(2, 1fr); gap: 48px 36px; } }
@media (max-width: 640px)  { .signals-grid { grid-template-columns: 1fr; gap: 40px; } }
.signal-item { display: flex; flex-direction: column; gap: 14px; }
.signal-ico {
  position: relative;
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  color: #141414;
  flex-shrink: 0;
}
.signal-ico--img { background: transparent !important; border-radius: 0; padding: 0; width: 64px; height: 64px; }
.signal-ico--img img { width: 64px; height: 64px; object-fit: contain; display: block; }
.signal-ico-star {
  position: absolute;
  top: -4px; right: -4px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #141414;
  color: #E6FF3A;
  display: grid; place-items: center;
  font-size: 11px;
  line-height: 1;
  box-shadow: 0 4px 10px -2px rgba(0,0,0,0.25);
}
.signal-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-text-default);
  margin: 0;
}
.signal-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  max-width: 34ch;
  margin: 0;
}
.signal-desc em { color: var(--color-text-default); font-style: italic; font-weight: 600; }

/* --- Archetype showcase (Co zjistíš) ------------------------------------- */
.arche-showcase {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1.15fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 1000px) { .arche-showcase { grid-template-columns: 1fr; gap: 48px; } }

.arche-showcase-left { padding-right: 8px; }
.arche-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.2vw, 44px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  max-width: 14ch;
}
.arche-title em { color: var(--color-brand-accent); font-style: italic; font-weight: 600; }

.arche-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 12px;
}
.arche-benefits li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: center;
  font-size: 15px;
  color: var(--color-text-default);
}
.arche-benefits .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(89,56,183,0.12);
  color: var(--color-brand-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.arche-cta { align-self: start; }
.arche-meta {
  margin-top: 16px;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.arche-showcase-right {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 560px;
}
.arche-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 36px 36px 30px;
  display: none;
  flex-direction: column;
  gap: 20px;
  color: #FFFFFF;
  box-shadow: 0 24px 60px -18px rgba(27,27,27,0.35), 0 8px 20px rgba(27,27,27,0.08);
  min-height: 560px;
}
.arche-hero-card.is-current {
  display: flex;
  animation: archeFadeIn 0.55s cubic-bezier(.2,.7,.2,1);
}
@keyframes archeFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0);   }
}
.arche-hero-card.tone-violet { background: linear-gradient(160deg, #8B6FD6 0%, #A98DF6 50%, #D5C3FB 100%); }
.arche-hero-card.tone-rose   { background: linear-gradient(160deg, #C96A93 0%, #DB7FA3 50%, #EFB5CC 100%); }
.arche-hero-card.tone-teal   { background: linear-gradient(160deg, #3E9B96 0%, #5EB9B2 50%, #A0DAD4 100%); }
.arche-hero-card.tone-green  { background: linear-gradient(160deg, #3B9F5C 0%, #5EBC7B 50%, #AFDDB8 100%); }
.arche-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 0%,  rgba(255,255,255,0.22), transparent 60%),
    radial-gradient(ellipse 60% 40% at 10% 100%, rgba(0,0,0,0.08),      transparent 70%);
  pointer-events: none;
}

.arche-card-top {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 180px;
}
.arche-card-hex {
  width: 180px; height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 16px 28px rgba(0,0,0,0.2));
}
.arche-card-hex img { width: 100%; height: 100%; object-fit: contain; }

.arche-card-pct {
  position: absolute;
  top: 4px;
  right: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 8px 14px 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: var(--color-text-default);
  box-shadow: 0 6px 14px rgba(27,27,27,0.12);
}
.arche-card-pct .pct-num {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
.arche-card-pct .pct-lbl {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.arche-card-pct.tone-violet .pct-num { color: #5938B7; }
.arche-card-pct.tone-rose   .pct-num { color: #C23368; }
.arche-card-pct.tone-teal   .pct-num { color: #1F7A73; }
.arche-card-pct.tone-green  .pct-num { color: #2A8C4B; }

.arche-card-body { position: relative; display: flex; flex-direction: column; gap: 16px; }
.arche-card-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}
.arche-card-name {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.2vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: -4px 0 0;
  color: #FFFFFF;
  text-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.arche-card-desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
  max-width: 42ch;
  margin: 0;
}
.arche-card-strengths {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.25);
  display: grid;
  gap: 8px;
}
.str-heading {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-bottom: 4px;
}
.str-row {
  display: grid;
  grid-template-columns: 64px 1fr 28px;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.92);
}
.str-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.22);
  overflow: hidden;
}
.str-fill {
  height: 100%;
  background: rgba(255,255,255,0.9);
  border-radius: 999px;
  transition: width 0.6s cubic-bezier(.2,.7,.2,1);
}
.str-val {
  font-family: var(--font-mono);
  font-size: 12px;
  text-align: right;
  color: rgba(255,255,255,0.95);
}
.arche-card-score {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.25);
}
.sp-heading {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-bottom: 6px;
}
.sp-big {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #FFFFFF;
}
.sp-big .sp-den {
  font-size: 22px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0;
}

.arche-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}
.arche-dot {
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px 4px;
}
.arche-dot .dot-inner {
  display: block;
  width: 24px;
  height: 4px;
  border-radius: 999px;
  background: var(--color-border);
  transition: background 0.2s ease, width 0.2s ease;
}
.arche-dot:hover .dot-inner { background: var(--color-border-hover); }
.arche-dot.active .dot-inner {
  background: var(--color-brand-primary);
  width: 40px;
}

/* --- Testimonial carousel (stories) --------------------------------------- */
.s--stories .wrap { padding-bottom: 0; }
.s--stories > .wrap.stories-head-row { padding-bottom: 36px; }
.tcarousel { display: flex; flex-direction: column; gap: 28px; }

.stories-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.stories-head-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  max-width: 720px;
}
.stories-head-left .label { margin-bottom: 4px; }
.stories-head-left h2 { margin: 0; }
.stories-head-right { flex-shrink: 0; }
.stories-foot { display: flex; justify-content: center; padding-top: 28px; }
.stories-cta { border-radius: 999px; padding: 14px 26px; font-size: 14px; }

.tcarousel-nav { display: flex; gap: 12px; }
.tcarousel-arrow {
  width: 44px; height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, opacity 0.15s;
}
.tcarousel-arrow--ghost {
  border: 1px solid rgba(20,20,20,0.18);
  background: transparent;
  color: #1B1B1B;
}
.tcarousel-arrow--ghost:hover:not(:disabled) { background: rgba(20,20,20,0.06); }
.tcarousel-arrow--solid {
  border: 1px solid #141414;
  background: #141414;
  color: #F5F1EC;
}
.tcarousel-arrow--solid:hover:not(:disabled) { background: #000; }
.tcarousel-arrow:disabled { opacity: 0.28; cursor: default; }

.tcarousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(420px, calc((100vw - 1312px) / 2 + 420px));
  gap: 24px;
  overflow-x: auto;
  padding: 4px calc((100vw - 1312px) / 2 + 24px) 22px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tcarousel-track::-webkit-scrollbar { display: none; }
@media (max-width: 1360px) {
  .tcarousel-track { padding-left: 24px; padding-right: 24px; grid-auto-columns: minmax(360px, 420px); }
}
.tcarousel-end-gap { width: 1px; }
.tcarousel-progress {
  height: 3px;
  background: rgba(20,20,20,0.1);
  border-radius: 3px;
  overflow: hidden;
  max-width: 100%;
}
.tcarousel-progress-fill {
  height: 100%;
  background: #141414;
  border-radius: 2px;
  transform-origin: left center;
  transform: scaleX(0.08);
  transition: transform 0.25s ease;
}

.tcard {
  scroll-snap-align: start;
  border-radius: 18px;
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-height: 400px;
  transition: transform 0.2s ease;
}
.tcard:hover { transform: translateY(-2px); }
.tcard--peach { background: #F8DDBE; color: #1B1B1B; }
.tcard--blue  { background: #C9DEF5; color: #1B1B1B; }
.tcard--lilac { background: #DCD2F5; color: #1B1B1B; }
.tcard--cream { background: #F2E7CF; color: #1B1B1B; }
.tcard--mint  { background: #CDEADB; color: #1B1B1B; }

.tcard-head  { display: flex; flex-direction: column; gap: 8px; }
.tcard-logo  { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; font-size: 22px; letter-spacing: -0.01em; }
.tcard-logo-mark { font-size: 18px; opacity: 0.9; }
.tcard-logo-sub  { font-family: var(--font-mono); font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.55; }
.tcard-quote {
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  margin: 0;
  flex: 1;
}
.tcard-result {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 12px;
  background: rgba(0,0,0,0.06);
  border-radius: 6px;
  margin-top: -16px;
}
.tcard-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-align: left;
}
.tcard-person { display: flex; align-items: center; gap: 12px; }
.tcard-avatar {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(20,20,20,0.12);
  color: #1B1B1B;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.tcard-name { font-size: 14px; font-weight: 600; line-height: 1.25; }
.tcard-role { font-size: 12px; line-height: 1.35; opacity: 0.6; margin-top: 2px; }
.tcard-cta {
  font-size: 13px;
  font-weight: 600;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.75;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.tcard-cta:hover { opacity: 1; }

/* --- Programs (v3) --------------------------------------------------------- */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.programs-grid--three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1000px) { .programs-grid--three { grid-template-columns: 1fr; } }
@media (max-width: 800px)  { .programs-grid { grid-template-columns: 1fr; } }
.program-card {
  background: var(--color-surface-raised);
  border-radius: 16px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow 0.15s cubic-bezier(0,0,0.2,1);
}
.program-card:hover { box-shadow: var(--shadow-lg); }
.plan-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-brand-accent);
}
.program-card h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.prog-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}
.program-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.program-features li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-default);
}
.program-features .fi { color: var(--color-brand-accent); font-weight: 700; }
.program-footer { margin-top: auto; }

/* --- B2B dark card (Deel-inspired) --------------------------------------- */
.b2b-card {
  background: #141414;
  border-radius: 24px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
  color: #F7F2EA;
}
.b2b-card-left { max-width: 460px; }
.b2b-card-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #A79BF7;
  margin-bottom: 18px;
}
.b2b-card-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: #F7F2EA;
  margin-bottom: 24px;
  font-weight: 600;
}
/* Higher specificity: beats `.s--white h2 em` on light sections containing a dark b2b-card. */
.b2b-card .b2b-card-title em,
h2.b2b-card-title em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  color: var(--color-accent-light);
}
.b2b-card-sub {
  margin-top: 0;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(247,242,234,0.9);
  margin-bottom: 28px;
}
.b2b-card-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.b2b-card-bullets li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15.5px;
  line-height: 1.5;
  color: rgba(247,242,234,0.9);
}
.b2b-card-bullets li strong { color: #F7F2EA; font-weight: 600; }
.b2b-card-bullets .check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #6B5CF3;
  color: #fff;
  display: grid;
  place-items: center;
  margin-top: 2px;
}
.b2b-card-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.b2b-photo-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}
.b2b-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.b2b-float {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.25), 0 4px 12px -4px rgba(0,0,0,0.15);
  padding: 14px 18px;
  font-family: var(--font-body);
  color: #141414;
}
.b2b-float--score { top: 24px; left: 24px; min-width: 220px; }
.b2b-float-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(20,20,20,0.55);
  margin-bottom: 6px;
}
.b2b-float-title { font-size: 13px; font-weight: 600; color: #141414; margin-bottom: 8px; }
.b2b-float-score { display: flex; align-items: baseline; gap: 10px; }
.b2b-float-score .n {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #141414;
}
.b2b-float-score .delta {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: #0a8a3e;
  padding: 3px 7px;
  background: rgba(10,138,62,0.12);
  border-radius: 4px;
  letter-spacing: 0;
}
.b2b-float--distro {
  bottom: 24px; left: 24px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.b2b-distro-row {
  display: grid;
  grid-template-columns: 80px 1fr 24px;
  gap: 10px;
  align-items: center;
  font-size: 11.5px;
}
.b2b-distro-row .lbl { color: rgba(20,20,20,0.85); }
.b2b-distro-row .track {
  height: 5px;
  background: rgba(20,20,20,0.08);
  border-radius: 999px;
  overflow: hidden;
}
.b2b-distro-row .fill { height: 100%; background: #6B5CF3; border-radius: 999px; }
.b2b-distro-row .val {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  color: rgba(20,20,20,0.6);
  text-align: right;
}
.b2b-float--compliance {
  top: 40%;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
}
.b2b-float--compliance .check-circle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #0a8a3e;
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.b2b-float--compliance .t1 { font-size: 13px; font-weight: 600; color: #141414; line-height: 1.2; }
.b2b-float--compliance .t2 {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(20,20,20,0.55);
  margin-top: 2px;
  line-height: 1.2;
}
@media (max-width: 900px) {
  .b2b-card { grid-template-columns: 1fr; padding: 32px 24px; gap: 32px; }
  .b2b-float--compliance { right: 12px; top: auto; bottom: 30%; }
  .b2b-float--score { min-width: 180px; padding: 10px 14px; }
  .b2b-float--distro { min-width: 200px; padding: 10px 14px; }
}
@media (max-width: 600px) {
  .b2b-float--compliance,
  .b2b-float--score { display: none; }
  .b2b-float--distro { bottom: 12px; left: 12px; min-width: 160px; padding: 8px 12px; }
}

/* --- Footer v3 legacy grid (unused, kept for reference) ------------------- */
/* .hp-footer override removed — dark theme defined above */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  padding-bottom: 48px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 38ch;
  margin-top: 16px;
}
.footer-col p em { font-family: var(--font-display); font-style: italic; color: var(--color-text-default); }
.footer-col h4 { font-size: 13px; font-weight: 600; margin-bottom: 14px; color: var(--color-text-default); }
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 14px; color: var(--color-text-secondary); transition: color 0.15s; }
.footer-col ul a:hover { color: var(--color-text-default); }
.footer-col .link-arrow { font-size: 14px; display: inline-block; margin-top: 12px; color: var(--color-brand-accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-text-muted);
}
.footer-bottom .right { display: flex; gap: 20px; }
.footer-bottom .right a { color: var(--color-text-muted); transition: color 0.15s; }
.footer-bottom .right a:hover { color: var(--color-text-default); }

/* --- Reveal on scroll (v3 uses .in, compat with existing .visible) --- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in, .reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ============================================================
   Vibe Coding Summer — landing-specific components
   Uses Aibility design tokens (Signika, purple accent, warm cream).
   Scoped to body.vcs-landing. All classes prefixed .vcs-*.
   ============================================================ */

body.vcs-landing { scroll-padding-top: 88px; }
html:has(body.vcs-landing) { scroll-padding-top: 88px; }

body.vcs-landing h2 em {
  font-style: italic;
  font-weight: 600;
  color: var(--color-brand-accent);
}
/* H1 em lives in .hero--inset (dark bg) — use accent-light, not brand-accent */
body.vcs-landing h1 em {
  font-style: italic;
  font-weight: 600;
  color: var(--color-accent-light);
}
body.vcs-landing .s--dark h2 em,
body.vcs-landing .s--dark-inset h2 em { color: var(--color-accent-light); }

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  body.vcs-landing .vcs-dot,
  body.vcs-landing .vcs-early-badge::before { animation: none; }
  body.vcs-landing .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  body.vcs-landing .vcs-vcard,
  body.vcs-landing .vcs-play-circle,
  body.vcs-landing .vcs-faq-item summary::after,
  body.vcs-landing .vcs-persona-card,
  body.vcs-landing .vcs-case { transition: none !important; }
}

/* NOTE: Hero uses `.hero--inset` (shared component). Hero-specific extras
   (`.hero-inset-ctas`, `.hero-cta-secondary`, `.hero-inset-proof`) are defined
   in the shared Hero section above, not here. */

/* ----- Proof strip ----- */
.vcs-proof-strip {
  padding: 36px 0;
  background: #FFFFFF;
}
.vcs-proof-row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}
.vcs-proof-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.vcs-proof-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 600;
  line-height: 1;
  color: var(--color-text-default);
  letter-spacing: -0.02em;
}
.vcs-proof-num em { color: var(--color-brand-accent); font-style: normal; font-weight: 600; }
.vcs-proof-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--color-text-secondary);
  line-height: 1.35;
  max-width: 20ch;
}
@media (max-width: 720px) { .vcs-proof-row { flex-direction: column; gap: 20px; } }

/* ----- Vision ----- */
.vcs-vision-quote {
  max-width: 900px;
  margin: 0 auto clamp(48px, 6vw, 80px);
  text-align: center;
}
.vcs-vision-quote blockquote {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.22;
  color: var(--color-text-default);
  letter-spacing: -0.01em;
  margin: 0;
}
.vcs-vision-quote blockquote::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 3.6rem;
  color: var(--color-brand-accent);
  line-height: 0;
  position: relative;
  top: 0.2em;
  margin-right: 4px;
}
.vcs-vision-quote cite,
.vcs-vision-quote figcaption {
  display: block;
  margin: 22px 0 0;
  font-family: var(--font-mono);
  font-size: 12px;
  font-style: normal;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vcs-vision-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: clamp(56px, 6vw, 88px);
}
@media (max-width: 840px) { .vcs-vision-cards { grid-template-columns: 1fr; } }

.vcs-vcard {
  background: var(--color-surface-raised);
  border-radius: 20px;
  padding: clamp(32px, 3.5vw, 48px) clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.15s ease-in-out;
}
.vcs-vcard:hover { box-shadow: var(--shadow-md); }
.vcs-vcard-icon { margin-bottom: 20px; font-size: 32px; line-height: 1; color: var(--color-brand-accent); }
.vcs-vcard-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.vcs-vcard--charcoal .vcs-vcard-eyebrow { color: #E6FF3A; }
.vcs-vcard--lime .vcs-vcard-eyebrow { color: rgba(20, 20, 20, 0.65); }
.vcs-vcard h3 {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  color: inherit;
}
.vcs-vcard > p {
  font-size: 15.5px;
  line-height: 1.6;
  margin: 0 0 24px;
  color: var(--color-text-secondary);
}
.vcs-vcard-list { list-style: none; margin: 0 0 28px; padding: 0; }
.vcs-vcard--dark { background: var(--color-brand-primary); color: var(--color-dark-text); }
.vcs-vcard--dark > p { color: rgba(250, 244, 238, 0.85); }
.vcs-vcard--dark h3 { color: var(--color-dark-text); }
.vcs-vcard--dark .section-num { color: var(--color-accent-light); }
.vcs-vcard--dark .vcs-vcard-icon { color: var(--color-accent-light); }
.vcs-vcard--dark .vcs-punch { color: #fff; border-top-color: rgba(255,255,255,0.15); }
.vcs-vcard--dark .vcs-vcard-list li { border-bottom-color: rgba(255,255,255,0.1); color: rgba(250, 244, 238, 0.88); }
.vcs-vcard--dark .vcs-vcard-list li::before { background: var(--color-accent-light); }
.vcs-vcard--charcoal { background: #141414; color: #F5F1EC; }
.vcs-vcard--charcoal h3 { color: #F5F1EC; }
.vcs-vcard--charcoal > p { color: rgba(245, 241, 236, 0.88); }
.vcs-vcard--charcoal .vcs-vcard-icon { color: #E6FF3A; }
.vcs-vcard--charcoal .vcs-punch { color: #fff; border-top-color: rgba(255,255,255,0.14); }
.vcs-vcard--charcoal .vcs-vcard-list li { border-bottom-color: rgba(255,255,255,0.14); color: rgba(245, 241, 236, 0.92); }
.vcs-vcard--charcoal .vcs-vcard-list li::before { background: rgba(245, 241, 236, 0.5); }
.vcs-vcard--lime { background: #E6FF3A; color: #141414; }
.vcs-vcard--lime h3 { color: #141414; }
.vcs-vcard--lime > p { color: rgba(20, 20, 20, 0.82); }
.vcs-vcard--lime .vcs-vcard-icon { color: #141414; }
.vcs-vcard--lime .vcs-punch { color: #141414; border-top-color: rgba(20, 20, 20, 0.2); }
.vcs-vcard--lime .vcs-vcard-list li { border-bottom-color: rgba(20, 20, 20, 0.14); color: rgba(20, 20, 20, 0.92); }
.vcs-vcard--lime .vcs-vcard-list li::before { background: rgba(20, 20, 20, 0.55); }
.vcs-vcard-list li {
  padding: 10px 0 10px 24px;
  font-size: 15.5px;
  line-height: 1.45;
  position: relative;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-default);
}
.vcs-vcard-list li:last-child { border-bottom: none; }
.vcs-vcard-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 12px; height: 1px;
  background: var(--color-text-muted);
}
.vcs-punch {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-default);
}
.vcs-vision-bridge { text-align: center; max-width: 800px; margin: 0 auto; }
.vcs-vision-bridge h2 { font-size: clamp(32px, 3.8vw, 56px); line-height: 1.08; margin: 0; }
.vcs-vision-close {
  text-align: center;
  max-width: 800px;
  margin: clamp(40px, 5vw, 64px) auto 0;
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-text-default);
}

/* ----- Personas ----- */
.vcs-persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
@media (max-width: 1000px) { .vcs-persona-grid { grid-template-columns: 1fr; } }
.vcs-persona-card {
  background: var(--color-surface-raised);
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.15s ease-in-out;
}
.vcs-persona-card:hover { box-shadow: var(--shadow-md); }
.vcs-persona-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 14px 0;
  letter-spacing: -0.01em;
  color: var(--color-text-default);
}
.vcs-persona-card > p {
  font-size: 15.5px;
  line-height: 1.6;
  margin: 0 0 18px;
  color: var(--color-text-secondary);
}
.vcs-persona-outcome {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--color-text-default);
  margin: 0 0 26px;
}
.vcs-persona-quote { margin: auto 0 0; padding-top: 22px; border-top: 1px solid var(--color-border); }
.vcs-persona-quote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 15.5px;
  line-height: 1.45;
  color: var(--color-text-default);
  margin: 0 0 12px;
}
.vcs-persona-attrib {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}
.vcs-persona-attrib strong { color: var(--color-text-default); font-weight: 600; }

/* ----- Gate (single cream card) ----- */
.vcs-gate {
  background: var(--color-surface-raised);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 40px) clamp(24px, 4vw, 48px);
}
.vcs-gate-lede {
  font-size: 17px;
  margin: 0 0 20px;
  color: var(--color-text-default);
}
.vcs-gate-lede strong { font-weight: 600; }
.vcs-gate-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vcs-gate-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-default);
}
.vcs-gate-list .check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--color-brand-accent);
  color: #fff;
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.vcs-gate-fallback {
  font-size: 15px;
  color: var(--color-text-secondary);
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(20, 20, 20, 0.08);
}
.vcs-gate-fallback strong { color: var(--color-text-default); font-weight: 600; }
.vcs-gate-fallback a { color: var(--color-brand-accent); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* NOTE: Case studies use the shared `.tcarousel` + `.tcard--{color}` pattern
   (same as homepage stories). No local case-card styles needed. */

/* ----- Outcomes (dark 5-col) ----- */
.vcs-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(250, 244, 238, 0.1);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(250, 244, 238, 0.1);
  margin-top: 48px;
}
@media (max-width: 1000px) { .vcs-outcomes-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px)  { .vcs-outcomes-grid { grid-template-columns: 1fr; } }
.vcs-oc {
  background: var(--color-brand-primary);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vcs-oc-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  font-weight: 600;
  color: var(--color-accent-light);
  line-height: 1;
}
.vcs-oc h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-dark-text);
  margin: 0;
}
.vcs-oc p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(250, 244, 238, 0.72);
  margin: 0;
}

/* ----- Program weeks + extras ----- */
.vcs-program-intro { max-width: 700px; margin-bottom: 48px; }
.vcs-program-intro h2 { margin: 0; }
.vcs-program-intro .s-intro { margin-top: 16px; max-width: 58ch; }
.vcs-meta-row { margin-top: 28px; display: flex; gap: 40px; flex-wrap: wrap; }
.vcs-meta-row > div {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.vcs-meta-row strong {
  display: block;
  color: var(--color-text-default);
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  text-transform: none;
  letter-spacing: -0.01em;
  margin-top: 4px;
}
.vcs-weeks { border-top: 1px solid var(--color-border); }
.vcs-week {
  display: grid;
  grid-template-columns: 130px 1fr 220px;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--color-border);
  align-items: baseline;
}
@media (max-width: 860px) { .vcs-week { grid-template-columns: 1fr; gap: 10px; padding: 24px 0; } }
.vcs-week-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-brand-accent);
}
.vcs-week-main h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  color: var(--color-text-default);
}
.vcs-week-main p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0;
  max-width: 58ch;
}
.vcs-week-ship {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 15px;
  line-height: 1.4;
  color: var(--color-text-secondary);
  padding-left: 18px;
  position: relative;
}
.vcs-week-ship::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-brand-accent);
}
.vcs-week-ship strong {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-brand-accent);
  display: block;
  margin-bottom: 4px;
}
.vcs-platform-callout {
  margin-top: 104px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(59, 130, 246, 0.08));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 24px;
}
.vcs-platform-callout > .label { color: #8B5CF6; }
.vcs-platform-callout h3 {
  margin-top: 8px;
  font-size: 1.6em;
  line-height: 1.3;
}
.vcs-platform-callout p:not(.label) {
  margin-top: 16px;
  max-width: 820px;
}

.vcs-program-extras {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 860px) { .vcs-program-extras { grid-template-columns: 1fr; } }
.vcs-extra-block { padding: 32px; background: var(--color-surface-raised); border-radius: 16px; }
.vcs-extra-block h4 {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  color: var(--color-brand-accent);
  margin: 0 0 10px;
}
.vcs-extra-block p { font-size: 15px; line-height: 1.6; color: var(--color-text-secondary); margin: 0; }
.vcs-extra-block p.vcs-extras-foot {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  line-height: 1.8;
  color: var(--color-text-secondary);
}
.vcs-extra-list { list-style: none; margin: 14px 0 0; padding: 0; }
.vcs-extra-list li {
  padding: 10px 0;
  font-size: 14.5px;
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border);
}
.vcs-extra-list li:last-child { border-bottom: none; }
.vcs-extra-list li strong {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--color-brand-accent);
  letter-spacing: 0.08em;
  margin-right: 12px;
}

/* ----- About Tom ----- */
.vcs-about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
  margin-top: 32px;
}
@media (max-width: 900px) { .vcs-about-grid { grid-template-columns: 1fr; gap: 32px; } }
.vcs-about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 24px;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.vcs-about-photo span { position: relative; z-index: 1; }
.vcs-about-photo picture { position: absolute; inset: 0; }
.vcs-about-photo picture img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.vcs-about-content h2 { margin: 0 0 22px; max-width: 18ch; }
.vcs-about-content > p {
  margin: 0 0 18px;
  max-width: 60ch;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--color-text-secondary);
}
.vcs-about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 14px;
  background: var(--color-surface);
  border: 1px solid var(--color-brand-accent);
  border-radius: 999px;
  color: var(--color-text-default);
  margin-bottom: 22px;
}
.vcs-about-badge::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--color-brand-accent);
  border-radius: 50%;
}
.vcs-about-content > p.vcs-about-sign {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 20px;
  color: var(--color-text-default);
  margin-top: 8px;
}
.vcs-about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--color-border);
}
.vcs-stat-big {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-text-default);
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.vcs-stat-big em { color: var(--color-brand-accent); font-style: normal; font-weight: 600; }
.vcs-stat-label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* ----- Offer ----- */
.vcs-offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
  margin-top: 48px;
}
.vcs-offer-side { padding-top: 8px; }
.vcs-offer-side .label { margin-bottom: 12px; }
.vcs-offer-side h3 { margin: 0 0 24px; }
@media (max-width: 900px) { .vcs-offer-grid { grid-template-columns: 1fr; } }

.vcs-pricing {
  background: #fff;
  border-radius: 24px;
  padding: clamp(28px, 3vw, 40px);
  box-shadow: 0 2px 0 rgba(20, 20, 20, 0.04);
}
.vcs-pricing-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
}
.vcs-pricing-meta > div { display: flex; flex-direction: column; gap: 4px; }
.vcs-pricing-meta .mono {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.vcs-pricing-meta strong {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text-default);
}
.vcs-pricing-main { text-align: center; margin-bottom: 32px; }
.vcs-pricing-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-brand-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.vcs-pricing-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 88px);
  font-weight: 600;
  color: var(--color-text-default);
  line-height: 1;
  letter-spacing: -0.025em;
}
.vcs-pricing-note {
  margin-top: 8px;
  font-size: 15px;
  color: var(--color-text-secondary);
}
.vcs-pricing-note .mono {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
}
.vcs-pricing-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.vcs-pricing-ctas .btn { width: 100%; justify-content: center; }
.vcs-pricing-guarantee {
  margin: 0;
  font-size: 13px;
  text-align: center;
  color: var(--color-text-muted);
  line-height: 1.55;
}
@media (max-width: 700px) {
  .vcs-pricing { padding: 32px 24px; }
  .vcs-pricing-meta { grid-template-columns: 1fr; gap: 16px; }
  .vcs-pricing-ctas { flex-direction: column; }
  .vcs-pricing-ctas .btn { width: 100%; justify-content: center; }
}

.vcs-offer-side h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--color-text-default);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.vcs-offer {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.vcs-offer li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--color-text-default);
}
.vcs-offer .fi {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--color-brand-accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}
@media (max-width: 700px) { .vcs-offer { grid-template-columns: 1fr; } }
.vcs-prompt-box {
  background: #141414;
  border-radius: 24px;
  padding: clamp(32px, 4vw, 40px);
  margin-top: clamp(48px, 6vw, 72px);
  color: #F7F2EA;
}
.vcs-prompt-box h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  line-height: 1.2;
  margin: 0 0 12px;
  color: #F7F2EA;
}
.vcs-prompt-box > p {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(247, 242, 234, 0.7);
  margin: 0 0 24px;
}
.vcs-prompt-box > p.vcs-prompt-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-light, #A98DF6);
  margin: 0 0 12px;
}
.vcs-prompt-text {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(247, 242, 234, 0.85);
  white-space: pre-wrap;
  margin: 0 0 20px;
  overflow-x: auto;
}

/* ----- FAQ ----- */
.vcs-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 900px) { .vcs-faq-grid { grid-template-columns: 1fr; gap: 32px; } }
.vcs-faq-item { border-bottom: 1px solid var(--color-border); }
.vcs-faq-item summary {
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.005em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  list-style: none;
  color: var(--color-text-default);
}
.vcs-faq-item summary::-webkit-details-marker { display: none; }
.vcs-faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 22px;
  color: var(--color-brand-accent);
  font-weight: 300;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.vcs-faq-item[open] summary::after { transform: rotate(45deg); }
.vcs-faq-body {
  padding: 0 0 22px 0;
  font-size: 15px;
  color: var(--color-text-secondary);
  max-width: 64ch;
  line-height: 1.6;
}

/* ----- Final CTA ----- */
.vcs-final {
  text-align: center;
  padding: clamp(96px, 11vw, 140px) 0;
  position: relative;
}
.vcs-final h2 {
  color: var(--color-dark-text);
  max-width: 20ch;
  margin: 0 auto 32px;
  font-weight: 500;
  font-size: clamp(34px, 4.6vw, 60px);
  letter-spacing: -0.02em;
  line-height: 1.08;
}
.vcs-final-cta { display: inline-flex; }
.vcs-final-fine {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(250, 244, 238, 0.55);
  letter-spacing: 0.06em;
}

/* NOTE: Footer uses the shared `.hp-footer` pattern (same as homepage).
   No local footer styles needed. */
.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;
}

/* =========================================================================
   LEGAL PROSE — used on legal/*.html pages
   Reader-friendly long-form text: constrained measure, clear hierarchy.
   ========================================================================= */
.legal-prose {
  max-width: 860px;
  margin-inline: auto;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-default);
}
.legal-prose > p,
.legal-prose > ul,
.legal-prose > ol,
.legal-prose > blockquote,
.legal-prose > table {
  max-width: 72ch;
}
.legal-prose h1 {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.15;
  margin-bottom: 8px;
}
.legal-prose .legal-meta {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  margin: 0 0 40px;
}
.legal-prose h2 {
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.2;
  margin-top: 48px;
  margin-bottom: 16px;
}
.legal-prose h2:first-child {
  margin-top: 0;
}
.legal-prose h3 {
  font-size: 20px;
  line-height: 1.3;
  margin-top: 32px;
  margin-bottom: 12px;
  font-weight: 700;
}
.legal-prose p {
  margin: 0 0 16px;
}
.legal-prose h2 + p,
.legal-prose h3 + p {
  margin-top: 0;
}
.legal-prose ul,
.legal-prose ol {
  padding-left: 24px;
  margin: 0 0 16px;
}
.legal-prose ul { list-style: disc; }
.legal-prose ol { list-style: decimal; }
.legal-prose li {
  margin-bottom: 8px;
  max-width: 72ch;
}
.legal-prose li > ul,
.legal-prose li > ol {
  margin-top: 8px;
  margin-bottom: 0;
}
.legal-prose a {
  color: var(--color-brand-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-prose a:hover {
  color: var(--color-brand-primary);
}
.legal-prose blockquote {
  margin: 16px 0 24px;
  padding: 8px 0 8px 20px;
  border-left: 3px solid var(--color-brand-accent);
  color: var(--color-text-muted);
  font-style: normal;
}
.legal-prose blockquote p {
  margin-bottom: 8px;
}
.legal-prose blockquote p:last-child {
  margin-bottom: 0;
}
.legal-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 15px;
}
.legal-prose th,
.legal-prose td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}
.legal-prose th {
  font-weight: 700;
  background: var(--color-surface-raised);
}
.legal-prose tbody tr:nth-child(even) td {
  background: var(--color-surface-raised);
}
.legal-prose code {
  font-family: var(--font-mono);
  font-size: 0.92em;
  padding: 2px 6px;
  border-radius: 6px;
  background: var(--color-surface-raised);
}

/* =========================================================================
   YSOFT nabídka — comparison + timeline tables (scoped to nabidky/ysoft.html)
   ========================================================================= */
.ysoft-compare,
.ysoft-timeline {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  font-size: 16px;
  background: var(--color-surface);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.ysoft-compare th,
.ysoft-compare td,
.ysoft-timeline th,
.ysoft-timeline td {
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
  line-height: 1.5;
}
.ysoft-compare thead th {
  font-weight: 700;
  background: var(--color-brand-primary);
  color: var(--color-text-inverse, #fff);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ysoft-compare thead th:last-child {
  background: var(--color-brand-accent);
  color: #fff;
}
.ysoft-compare tbody th {
  font-weight: 700;
  width: 20%;
  background: var(--color-surface-raised);
}
.ysoft-compare tbody td:last-child {
  background: color-mix(in srgb, var(--color-brand-accent) 8%, transparent);
  font-weight: 500;
}
.ysoft-timeline thead th {
  font-weight: 700;
  background: var(--color-surface-raised);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ysoft-timeline tbody th {
  font-weight: 700;
  width: 30%;
  color: var(--color-brand-accent);
  background: var(--color-surface-raised);
}
.ysoft-compare tbody tr:last-child th,
.ysoft-compare tbody tr:last-child td,
.ysoft-timeline tbody tr:last-child th,
.ysoft-timeline tbody tr:last-child td {
  border-bottom: 0;
}
.ysoft-logos {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.9;
  max-width: 900px;
  margin: 0 auto;
  color: var(--color-text-default);
}
.ysoft-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ysoft-card--raised { background: var(--color-surface-raised); }
.ysoft-card-icon { font-size: 28px; line-height: 1; }
.ysoft-card-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0;
}
.ysoft-card h3,
.ysoft-card h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
}
.ysoft-card p {
  margin: 0;
  color: var(--color-text-secondary);
  line-height: 1.5;
  font-size: 15px;
}
.ysoft-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.ysoft-card ul li {
  padding-left: 18px;
  position: relative;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-secondary);
}
.ysoft-card ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-brand-accent);
}
.ysoft-card-meta {
  margin-top: auto;
  padding-top: 8px;
  font-size: 12px;
  color: var(--color-text-muted);
  font-weight: 500;
}
@media (max-width: 720px) {
  .ysoft-compare,
  .ysoft-timeline {
    font-size: 14px;
  }
  .ysoft-compare th,
  .ysoft-compare td,
  .ysoft-timeline th,
  .ysoft-timeline td {
    padding: 12px 14px;
  }
}

/* =========================================================================
   CONSENT BANNER / PANEL — rendered by assets/consent-manager.js
   All DOM is created by JS; styles here delegate to Aibility tokens.
   No glassmorphism, no raw hex — solid backgrounds with token-based shadow.
   ========================================================================= */
.aibility-consent-root {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 2147483000;
  pointer-events: none;
  font-family: var(--font-body);
  color: var(--color-text-default);
}
.aibility-consent-banner {
  pointer-events: auto;
  max-width: 1180px;
  margin: 0 auto 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  border-radius: 16px;
  padding: 20px 24px 22px;
}
.aibility-consent-banner[hidden],
.aibility-consent-panel[hidden] {
  display: none;
}
.aibility-consent-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  font-family: var(--font-display);
}
.aibility-consent-text {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 72ch;
}
.aibility-consent-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.aibility-consent-button {
  appearance: none;
  border: 1px solid var(--color-brand-primary);
  background: var(--color-surface);
  color: var(--color-brand-primary);
  border-radius: 999px;
  padding: 12px 20px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  min-height: 46px;
}
.aibility-consent-button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.aibility-consent-button:focus-visible,
.aibility-consent-close:focus-visible,
.aibility-consent-toggle input:focus-visible + span {
  outline: 3px solid var(--color-brand-accent);
  outline-offset: 2px;
}
.aibility-consent-button-primary {
  background: var(--color-brand-accent);
  border-color: var(--color-brand-accent);
  color: #fff;
}
.aibility-consent-button-primary:hover {
  color: #fff;
}
.aibility-consent-button-quiet {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-text-muted);
}
.aibility-consent-panel {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: auto;
}
.aibility-consent-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 17, 40, 0.45);
}
.aibility-consent-sheet {
  position: relative;
  width: min(760px, calc(100vw - 24px));
  max-height: min(88vh, 820px);
  overflow: auto;
  background: var(--color-surface);
  border-radius: 24px 24px 0 0;
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-lg);
}
.aibility-consent-close {
  position: absolute;
  top: 18px;
  right: 18px;
  border: 0;
  background: transparent;
  color: var(--color-text-muted);
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 999px;
}
.aibility-consent-panel-text {
  margin: 0 0 24px;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.65;
  max-width: 66ch;
}
.aibility-consent-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--color-border);
}
.aibility-consent-card:first-of-type {
  border-top: 0;
  padding-top: 0;
}
.aibility-consent-card-copy {
  flex: 1;
  min-width: 0;
}
.aibility-consent-card-title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}
.aibility-consent-card-text {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.55;
}
.aibility-consent-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 999px;
  padding: 8px 14px;
  background: var(--color-surface-raised);
  color: var(--color-brand-primary);
  font-size: 13px;
  font-weight: 700;
}
.aibility-consent-toggle {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
}
.aibility-consent-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.aibility-consent-toggle span {
  position: relative;
  display: inline-flex;
  width: 48px;
  height: 28px;
  background: var(--color-border);
  border-radius: 999px;
  transition: background .18s ease;
}
.aibility-consent-toggle span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(25, 18, 46, 0.18);
  transition: transform .18s ease;
}
.aibility-consent-toggle input:checked + span {
  background: var(--color-brand-accent);
}
.aibility-consent-toggle input:checked + span::after {
  transform: translateX(20px);
}
.aibility-consent-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}
.aibility-consent-legal {
  margin-top: 14px;
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.6;
}
.aibility-consent-legal a {
  color: var(--color-brand-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 767px) {
  .aibility-consent-root {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .aibility-consent-banner {
    margin: 0;
    border-radius: 16px;
    padding: 18px 16px 18px;
  }
  .aibility-consent-actions,
  .aibility-consent-panel-actions {
    flex-direction: column;
  }
  .aibility-consent-button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .aibility-consent-sheet {
    width: calc(100vw - 12px);
    padding: 24px 16px 20px;
  }
  .aibility-consent-card {
    align-items: flex-start;
    flex-direction: column;
  }
  .aibility-consent-close {
    top: 14px;
    right: 14px;
  }
}

.tcard-head,
.tcard-cta { display: none; }

/* ============================================================
   SP LANDING — /aidovednosti (scoped under body.sp-landing)
   Superpowered Professional™ landing page. Styles follow the
   VCS precedent: scoped under body class so they can't leak.
   ============================================================ */

/* -- Centered section heads: auto-margin s-intro so it
   respects text-align:center on its parent wrapper. Global
   .s-intro has max-width:55ch without auto margins. -------- */
.sp-landing .section-head > .s-intro {
  margin-left: auto;
  margin-right: auto;
}

/* -- Hero mockup: radar + archetype card ------------------- */
.sp-landing .hero-inset-media#archeShowcase {
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
}
.sp-landing .sp-hero-arche-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  min-height: 540px;
}
.sp-landing .sp-hero-arche {
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  padding: 28px 28px 26px;
  min-height: 0;
  gap: 18px;
}
.sp-landing .sp-hero-arche .arche-card-top { min-height: 150px; }
.sp-landing .sp-hero-arche .arche-card-hex { width: 150px; height: 150px; }
.sp-landing .sp-hero-arche .arche-card-name { font-size: clamp(30px, 2.6vw, 36px); }
.sp-landing .sp-hero-arche .arche-card-desc { font-size: 13.5px; }
.sp-landing .sp-hero-arche .sp-big { font-size: 38px; }
.sp-landing .sp-hero-arche-dots {
  margin: 16px 0 0 auto;
  width: 100%;
  max-width: 420px;
}
.sp-landing .sp-hero-arche-dots .dot-inner { background: rgba(255, 255, 255, 0.22); }
.sp-landing .sp-hero-arche-dots .arche-dot:hover .dot-inner { background: rgba(255, 255, 255, 0.45); }
.sp-landing .sp-hero-arche-dots .arche-dot.active .dot-inner { background: rgba(255, 255, 255, 0.95); }

/* -- Problem framing: 3 scenario cards --------------------- */
.sp-landing .sp-pcards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.sp-landing .sp-pcard {
  background: var(--color-surface-raised);
  border: 1px solid rgba(27, 27, 27, 0.06);
  border-radius: 20px;
  padding: 28px 26px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sp-landing .sp-pcard-mark {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--color-brand-accent);
  font-weight: 500;
}
.sp-landing .sp-pcard h3 {
  font-family: 'Signika', serif;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--color-brand-primary);
}
.sp-landing .sp-pcard > p {
  margin: 0;
  color: rgba(27, 27, 27, 0.75);
  font-size: 15.5px;
  line-height: 1.55;
}
.sp-landing .sp-pcards-close {
  margin-top: 48px;
  text-align: center;
  font-size: 20px;
  line-height: 1.4;
  color: var(--color-brand-primary);
}
.sp-landing .sp-pcards-close strong {
  font-weight: 500;
  font-family: 'Signika', serif;
  font-size: 26px;
}

/* -- Feature cards (6 "Čo dostaneš") ----------------------- */
.sp-landing .sp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.sp-landing .sp-card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 1px solid rgba(27, 27, 27, 0.08);
  border-radius: 22px;
  padding: 28px 26px;
  gap: 20px;
  transition: box-shadow 180ms ease, transform 180ms ease;
}
.sp-landing .sp-card:hover {
  box-shadow: 0 18px 40px -22px rgba(27, 27, 27, 0.2);
  transform: translateY(-2px);
}
.sp-landing .sp-card-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sp-landing .sp-card-mikro {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--color-brand-accent);
  text-transform: uppercase;
  font-weight: 500;
}
.sp-landing .sp-card h3 {
  font-family: 'Signika', serif;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--color-brand-primary);
}
.sp-landing .sp-card-head > p {
  margin: 0;
  color: rgba(27, 27, 27, 0.72);
  font-size: 14.5px;
  line-height: 1.55;
}
.sp-landing .sp-card-visual {
  flex: 1;
  min-height: 180px;
  border-radius: 14px;
  background: linear-gradient(155deg, #F7F3EE 0%, #ECE5DB 100%);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.sp-landing .sp-card-foot {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(27, 27, 27, 0.55);
  text-transform: uppercase;
  padding-top: 12px;
  border-top: 1px dashed rgba(27, 27, 27, 0.12);
}
/* Card visual variants */
.sp-landing .sp-card-visual-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #FFFFFF;
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid rgba(27, 27, 27, 0.06);
  box-shadow: 0 8px 24px -10px rgba(27, 27, 27, 0.15);
}
.sp-landing .sp-card-visual-eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--color-brand-accent);
  text-transform: uppercase;
}
.sp-landing .sp-card-visual-score {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.sp-landing .sp-card-visual-score b {
  font-family: 'Signika', serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-brand-primary);
}
.sp-landing .sp-card-visual-score span {
  font-size: 11px;
  color: rgba(27, 27, 27, 0.55);
}
.sp-landing .sp-card-visual-rank {
  font-size: 12px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(169, 141, 246, 0.15);
  color: #6E55C0;
}
.sp-landing .sp-card-visual--radar { padding: 12px; }
.sp-landing .sp-card-visual--evidence {
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  justify-content: center;
  padding: 20px;
}
.sp-landing .sp-evidence-chip {
  background: #FFFFFF;
  border: 1px solid rgba(27, 27, 27, 0.08);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-style: italic;
  color: var(--color-brand-primary);
  box-shadow: 0 4px 14px -6px rgba(27, 27, 27, 0.1);
}
.sp-landing .sp-evidence-chip:nth-child(1) { align-self: flex-start; }
.sp-landing .sp-evidence-chip:nth-child(2) { align-self: flex-end; }
.sp-landing .sp-evidence-chip:nth-child(3) { align-self: center; }
.sp-landing .sp-card-visual--ops {
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
}
.sp-landing .sp-op-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  background: #FFFFFF;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(27, 27, 27, 0.06);
  color: var(--color-brand-primary);
}
.sp-landing .sp-op-row b {
  margin-left: auto;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: var(--color-brand-accent);
  font-weight: 500;
}
.sp-landing .sp-op-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #A98DF6;
  flex-shrink: 0;
}
.sp-landing .sp-card-visual--prompts {
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 8px;
  font-family: 'Geist Mono', monospace;
}
.sp-landing .sp-prompt-line {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(27, 27, 27, 0.06);
  font-size: 12px;
  color: var(--color-brand-primary);
}
.sp-landing .sp-prompt-line > span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sp-landing .sp-prompt-tag {
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(169, 141, 246, 0.15);
  color: #6E55C0;
  letter-spacing: 0.04em;
  font-weight: 500;
  flex-shrink: 0;
}
.sp-landing .sp-prompt-tag--alt { background: rgba(255, 193, 102, 0.22); color: #8A5A1A; }
.sp-landing .sp-card-visual--cert { padding: 14px; }
.sp-landing .sp-cert-card {
  width: 100%;
  background: linear-gradient(145deg, #FFFFFF 0%, #F7F3EE 100%);
  border: 1px solid rgba(27, 27, 27, 0.1);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 12px 28px -14px rgba(27, 27, 27, 0.2);
}
.sp-landing .sp-cert-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sp-landing .sp-cert-eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--color-brand-accent);
  text-transform: uppercase;
}
.sp-landing .sp-cert-qr {
  font-size: 22px;
  color: var(--color-brand-primary);
  line-height: 1;
}
.sp-landing .sp-cert-name {
  font-family: 'Signika', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-brand-primary);
}
.sp-landing .sp-cert-archetype {
  font-size: 11.5px;
  color: rgba(27, 27, 27, 0.65);
}
.sp-landing .sp-cert-valid {
  margin-top: 4px;
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(27, 27, 27, 0.45);
  text-transform: uppercase;
}

/* -- Phase mockups (section 04) ---------------------------- */
.sp-landing .sp-phase-time {
  display: inline-block;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--color-brand-accent);
  background: rgba(169, 141, 246, 0.12);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 500;
}
.sp-landing .sp-phase-mockup {
  width: 100%;
  height: 100%;
  min-height: 320px;
  background: linear-gradient(165deg, #F1EBE2 0%, #E4DACA 100%);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
.sp-landing .sp-phase-bar {
  height: 6px;
  background: rgba(27, 27, 27, 0.08);
  border-radius: 999px;
  overflow: hidden;
}
.sp-landing .sp-phase-bar > span {
  display: block;
  height: 100%;
  background: var(--color-brand-accent);
  border-radius: 999px;
}
.sp-landing .sp-phase-q {
  background: #FFFFFF;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid rgba(27, 27, 27, 0.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 30px -14px rgba(27, 27, 27, 0.18);
}
.sp-landing .sp-phase-q-num {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--color-brand-accent);
  text-transform: uppercase;
}
.sp-landing .sp-phase-q-title {
  font-family: 'Signika', serif;
  font-size: 18px;
  line-height: 1.3;
  color: var(--color-brand-primary);
}
.sp-landing .sp-phase-q-choices {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sp-landing .sp-phase-q-choice {
  padding: 10px 14px;
  border: 1px solid rgba(27, 27, 27, 0.1);
  border-radius: 10px;
  font-size: 13.5px;
  color: rgba(27, 27, 27, 0.75);
  background: #FFFFFF;
}
.sp-landing .sp-phase-q-choice--on {
  border-color: var(--color-brand-accent);
  background: rgba(169, 141, 246, 0.08);
  color: var(--color-brand-primary);
  font-weight: 500;
}
.sp-landing .sp-phase-mockup--chat {
  background: linear-gradient(165deg, #EEF0F5 0%, #DDE2EC 100%);
  gap: 10px;
}
.sp-landing .sp-chat-msg {
  padding: 10px 14px;
  max-width: 82%;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.45;
}
.sp-landing .sp-chat-msg--bot {
  background: #FFFFFF;
  border: 1px solid rgba(27, 27, 27, 0.06);
  color: var(--color-brand-primary);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.sp-landing .sp-chat-msg--me {
  background: var(--color-brand-accent);
  color: #FFFFFF;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.sp-landing .sp-chat-msg--typing {
  display: inline-flex;
  gap: 4px;
  padding: 14px 18px;
  align-items: center;
}
.sp-landing .sp-chat-msg--typing span {
  width: 6px; height: 6px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  animation: spChatDot 1.1s infinite ease-in-out;
}
.sp-landing .sp-chat-msg--typing span:nth-child(2) { animation-delay: 0.15s; }
.sp-landing .sp-chat-msg--typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes spChatDot {
  0%, 60%, 100% { opacity: 0.35; transform: translateY(0); }
  30%           { opacity: 1;    transform: translateY(-3px); }
}
.sp-landing .service-card-media:has(.sp-phase-mockup) {
  background: transparent;
  padding: 0;
  aspect-ratio: auto;
  min-height: 360px;
}

/* -- Methodology tables (section 05) ----------------------- */
.sp-landing .sp-measure {
  margin-top: 48px;
  padding: 32px;
  background: #FFFFFF;
  border: 1px solid rgba(27, 27, 27, 0.08);
  border-radius: 22px;
}
.sp-landing .sp-measure:first-of-type { margin-top: 56px; }
.sp-landing .sp-measure-head {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sp-landing .sp-measure-eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--color-brand-accent);
  text-transform: uppercase;
  font-weight: 500;
}
.sp-landing .sp-measure-head h3 {
  font-family: 'Signika', serif;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--color-brand-primary);
  margin: 0;
}
.sp-landing .sp-measure-head > p {
  margin: 0;
  color: rgba(27, 27, 27, 0.7);
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 68ch;
}
.sp-landing .sp-measure-table {
  display: grid;
  grid-template-columns: 1fr 1.2fr 2fr;
  border-top: 1px solid rgba(27, 27, 27, 0.08);
}
.sp-landing .sp-measure-table--2col {
  grid-template-columns: 1fr 2.4fr;
}
.sp-landing .sp-measure-row {
  display: contents;
}
.sp-landing .sp-measure-row > div {
  padding: 16px 14px;
  border-bottom: 1px solid rgba(27, 27, 27, 0.08);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--color-brand-primary);
}
.sp-landing .sp-measure-row--head > div {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(27, 27, 27, 0.55);
  font-weight: 500;
  padding-top: 12px;
  padding-bottom: 12px;
}
.sp-landing .sp-measure-row:last-child > div { border-bottom: none; }
.sp-landing .sp-measure-row > div:nth-child(1) { padding-left: 0; }
.sp-landing .sp-measure-row > div:last-child { padding-right: 0; }
.sp-landing .sp-measure-row > div strong {
  color: var(--color-brand-primary);
  font-weight: 500;
}
.sp-landing .sp-measure-foot {
  margin: 20px 0 0;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(27, 27, 27, 0.6);
}

/* -- Report carousel (section 06) — edge-bleed scroller,
   aligns first card with .wrap content-edge but lets the
   track extend fully to viewport edges (same pattern as
   .tcarousel-track). ---------------------------------------- */
.sp-landing .sp-report-scroller {
  margin-top: 56px;
}
.sp-landing .sp-report-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, calc((100vw - 1312px) / 2 + 320px));
  gap: 20px;
  overflow-x: auto;
  padding: 8px calc((100vw - 1312px) / 2 + clamp(40px, 4vw, 64px)) 22px;
  scroll-padding-left: calc((100vw - 1312px) / 2 + clamp(40px, 4vw, 64px));
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.sp-landing .sp-report-track::-webkit-scrollbar { display: none; }
@media (max-width: 1400px) {
  .sp-landing .sp-report-track {
    grid-auto-columns: minmax(280px, 320px);
    padding-left: clamp(40px, 4vw, 64px);
    padding-right: clamp(40px, 4vw, 64px);
    scroll-padding-left: clamp(40px, 4vw, 64px);
  }
}
.sp-landing .sp-report-slide {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
}
.sp-landing .sp-report-cta {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}
.sp-landing .sp-report-mock {
  height: 380px;
  background: #FFFFFF;
  border: 1px solid rgba(27, 27, 27, 0.08);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 14px 34px -18px rgba(27, 27, 27, 0.2);
  overflow: hidden;
}
.sp-landing .sp-report-slide figcaption {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(27, 27, 27, 0.6);
  padding: 0 6px;
}
.sp-landing .sp-report-mock-eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--color-brand-accent);
  text-transform: uppercase;
  font-weight: 500;
}
.sp-landing .sp-report-mock-title {
  font-family: 'Signika', serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--color-brand-primary);
  line-height: 1;
}
.sp-landing .sp-report-mock-score {
  font-family: 'Signika', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--color-brand-accent);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.sp-landing .sp-report-mock-score span {
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: rgba(27, 27, 27, 0.55);
  letter-spacing: 0.04em;
}
.sp-landing .sp-report-mock-dims {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: rgba(27, 27, 27, 0.6);
  padding-top: 12px;
  border-top: 1px dashed rgba(27, 27, 27, 0.12);
  margin-top: auto;
}
.sp-landing .sp-report-mock--radar {
  align-items: center;
  justify-content: center;
}
.sp-landing .sp-report-mock-legend {
  display: flex;
  gap: 18px;
  font-size: 11px;
  color: rgba(27, 27, 27, 0.6);
  font-family: 'Geist Mono', monospace;
}
.sp-landing .sp-report-mock-legend em {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 2px;
  margin-right: 5px;
  vertical-align: middle;
}
.sp-landing .sp-report-mock-line {
  height: 9px;
  background: rgba(27, 27, 27, 0.08);
  border-radius: 999px;
  width: 100%;
}
.sp-landing .sp-report-mock-line--short { width: 48%; }
.sp-landing .sp-report-mock-line--mid   { width: 72%; }
.sp-landing .sp-report-mock-highlight {
  margin-top: auto;
  padding: 14px;
  background: rgba(169, 141, 246, 0.12);
  border-left: 3px solid var(--color-brand-accent);
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--color-brand-primary);
}
.sp-landing .sp-report-ops-item {
  padding: 12px 0;
  border-top: 1px solid rgba(27, 27, 27, 0.08);
}
.sp-landing .sp-report-ops-item:first-of-type { border-top: none; padding-top: 0; }
.sp-landing .sp-report-ops-title {
  font-family: 'Signika', serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-brand-primary);
  margin-bottom: 3px;
}
.sp-landing .sp-report-ops-meta {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: rgba(27, 27, 27, 0.55);
}
.sp-landing .sp-report-mock--evid blockquote {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-style: italic;
  color: var(--color-brand-primary);
  line-height: 1.5;
}
.sp-landing .sp-report-mock-tag {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--color-brand-accent);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.sp-landing .sp-report-mock-tag--warn { color: #C87A1A; }

/* Archetype card reused inside the report carousel — size-scoped to match sibling slides */
.sp-landing .sp-report-slide--arche .arche-hero-card {
  height: 380px;
  min-height: 0;
  padding: 22px;
  gap: 10px;
  border-radius: 16px;
  box-shadow: 0 14px 34px -18px rgba(27, 27, 27, 0.25);
  overflow: hidden;
}
.sp-landing .sp-report-slide--arche .arche-card-top {
  min-height: 0;
  justify-content: center;
  padding-top: 8px;
  padding-bottom: 4px;
}
.sp-landing .sp-report-slide--arche .arche-card-hex {
  width: 132px; height: 132px;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
}
.sp-landing .sp-report-slide--arche .arche-card-body {
  gap: 8px;
  margin-top: 6px;
  text-align: center;
  align-items: center;
}
.sp-landing .sp-report-slide--arche .arche-card-label {
  font-size: 10px;
  letter-spacing: 0.14em;
}
.sp-landing .sp-report-slide--arche .arche-card-name {
  font-size: 22px;
  line-height: 1.15;
  margin: 0;
}
.sp-landing .sp-report-slide--arche .arche-card-desc {
  font-size: 14px;
  line-height: 1.45;
  max-width: none;
}
.sp-landing .sp-learn-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid rgba(27, 27, 27, 0.08);
}
.sp-landing .sp-learn-item:first-of-type { border-top: none; padding-top: 0; }
.sp-landing .sp-learn-num {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: var(--color-brand-accent);
  font-weight: 500;
  letter-spacing: 0.06em;
}
.sp-landing .sp-learn-item strong {
  display: block;
  font-family: 'Signika', serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-brand-primary);
}
.sp-landing .sp-learn-item span {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: rgba(27, 27, 27, 0.5);
}
.sp-landing .sp-report-prompt-quote {
  margin-top: auto;
  margin-bottom: auto;
  padding: 16px;
  background: rgba(169, 141, 246, 0.1);
  border-left: 3px solid var(--color-brand-accent);
  border-radius: 6px;
  font-family: 'Signika', serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-brand-primary);
  font-style: italic;
}
.sp-landing .sp-report-mock--coach .sp-report-mock-tag,
.sp-landing .sp-report-mock--context .sp-report-mock-tag {
  margin-top: auto;
  margin-bottom: 0;
}
.sp-landing .sp-report-context-head {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--color-brand-accent);
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(27, 27, 27, 0.12);
}
.sp-landing .sp-report-mock--context .sp-report-mock-line:first-of-type {
  margin-top: 4px;
}
.sp-landing .sp-report-prompt-more {
  margin-top: auto;
  padding: 10px 12px;
  background: rgba(169, 141, 246, 0.12);
  border-radius: 6px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--color-brand-accent);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}
.sp-landing .sp-report-prompt-more span {
  color: rgba(27, 27, 27, 0.5);
}
.sp-landing .sp-report-slide--clone {
  pointer-events: none;
}

/* -- Stats strip (section 07) — no card chrome, separator-
   driven columns; matches .vcs-proof-strip silhouette ------ */
.sp-landing .sp-proof-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  padding: 32px 0;
  border-top: 1px solid rgba(27, 27, 27, 0.08);
  border-bottom: 1px solid rgba(27, 27, 27, 0.08);
}
.sp-landing .sp-proof-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 24px;
  border-left: 1px solid rgba(27, 27, 27, 0.08);
}
.sp-landing .sp-proof-item:first-child { border-left: none; padding-left: 0; }
.sp-landing .sp-proof-item:last-child  { padding-right: 0; }
.sp-landing .sp-proof-num {
  font-family: 'Signika', serif;
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 600;
  line-height: 1;
  color: var(--color-brand-primary);
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.sp-landing .sp-proof-num em {
  color: var(--color-brand-accent);
  font-style: normal;
  font-weight: 500;
  font-size: 0.55em;
}
.sp-landing .sp-proof-label {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(27, 27, 27, 0.7);
}
.sp-landing .sp-proof-label strong {
  color: var(--color-brand-primary);
  font-weight: 500;
}
.sp-landing .sp-proof-source {
  margin: 16px 0 0;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(27, 27, 27, 0.55);
  text-align: center;
}

/* -- Testimonials use the shared .tcarousel swiper (homepage/VCS pattern).
   Re-enable tcard head here — a trailing global rule later in this file
   hides .tcard-head with display:none; we override with higher specificity
   scoped to sp-landing so all testimonial cards show their topic label. */
.sp-landing .tcard-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sp-landing .sp-stories-head {
  margin-top: 80px;
}

/* -- Pro koho uses the shared .vcs-gate component.
   No local styles needed — text-align:center on parent
   .section-head + s-intro handled by the centered-s-intro
   auto-margin rule earlier in this file. ------------------- */

/* -- Pricing: Spark vs Full -------------------------------- */
.sp-landing .sp-pricing {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 28px;
  align-items: start;
  margin-top: 48px;
}
.sp-landing .sp-price-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(27, 27, 27, 0.08);
  border-radius: 22px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sp-landing .sp-price-card--full {
  background: #FFFFFF;
  border-color: rgba(169, 141, 246, 0.4);
  box-shadow: 0 30px 60px -30px rgba(169, 141, 246, 0.35);
}
.sp-landing .sp-price-badge {
  position: absolute;
  top: -14px;
  left: 32px;
  padding: 6px 14px;
  background: var(--color-brand-accent);
  color: #FFFFFF;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  font-weight: 500;
}
.sp-landing .sp-price-head h3 {
  font-family: 'Signika', serif;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--color-brand-primary);
  margin: 0 0 6px;
}
.sp-landing .sp-price-sub {
  font-size: 14.5px;
  color: rgba(27, 27, 27, 0.65);
  margin-bottom: 20px;
}
.sp-landing .sp-price-num {
  font-family: 'Signika', serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-brand-primary);
  letter-spacing: -0.02em;
}
.sp-landing .sp-price-num--lg {
  font-size: 72px;
  color: var(--color-brand-primary);
}
.sp-landing .sp-price-foot-note {
  margin-top: 10px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(27, 27, 27, 0.55);
}
.sp-landing .sp-price-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(27, 27, 27, 0.08);
  padding-top: 20px;
}
.sp-landing .sp-price-list li {
  position: relative;
  padding-left: 28px;
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(27, 27, 27, 0.8);
}
.sp-landing .sp-price-list li.is-on::before,
.sp-landing .sp-price-list li.is-off::before {
  content: '';
  position: absolute;
  left: 0; top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-landing .sp-price-list li.is-on::before {
  background: rgba(169, 141, 246, 0.18);
  content: '✓';
  color: var(--color-brand-accent);
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
}
.sp-landing .sp-price-list li.is-off {
  color: rgba(27, 27, 27, 0.35);
  text-decoration: line-through;
}
.sp-landing .sp-price-list li.is-off::before {
  background: rgba(27, 27, 27, 0.06);
  content: '×';
  color: rgba(27, 27, 27, 0.35);
  font-size: 13px;
  line-height: 18px;
  text-align: center;
}
.sp-landing .sp-price-card--full .sp-price-list li { color: rgba(27, 27, 27, 0.82); }
.sp-landing .sp-price-cta {
  align-self: stretch;
  justify-content: center;
}
.sp-landing .sp-price-fine {
  margin: 0;
  text-align: center;
  font-size: 12.5px;
  color: rgba(27, 27, 27, 0.55);
}
.sp-landing .sp-pricing-tagline {
  margin: 32px 0 0;
  text-align: center;
  font-size: 16px;
  color: rgba(27, 27, 27, 0.72);
  font-family: 'Signika', serif;
}

/* Early-bird progress pill (above pricing cards) */
.sp-landing .sp-pricing-earlybird {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 720px;
  margin: 36px auto 0;
  padding: 14px 22px;
  background: #1B1B1B;
  border-radius: 999px;
  color: #FFFFFF;
}
.sp-landing .sp-pricing-earlybird-dot {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #FF4D4D;
  box-shadow: 0 0 0 4px rgba(255, 77, 77, 0.18);
  animation: sp-eb-pulse 2.4s ease-in-out infinite;
}
@keyframes sp-eb-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255, 77, 77, 0.18); }
  50% { box-shadow: 0 0 0 7px rgba(255, 77, 77, 0.08); }
}
.sp-landing .sp-pricing-earlybird-label {
  flex: 0 1 auto;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
  white-space: nowrap;
}
.sp-landing .sp-pricing-earlybird-label strong {
  color: #FFFFFF;
  font-weight: 600;
}
.sp-landing .sp-pricing-earlybird-bar {
  flex: 1 1 auto;
  display: block;
  height: 6px;
  min-width: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
}
.sp-landing .sp-pricing-earlybird-bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #FF4D4D 0%, #FFA040 100%);
  border-radius: 999px;
}
.sp-landing .sp-pricing-earlybird-pct {
  flex: 0 0 auto;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

/* Pricing card refinements */
.sp-landing .sp-price-head .sp-price-sub { margin-bottom: 6px; }
.sp-landing .sp-price-tagline {
  margin: 0 0 24px;
  font-family: 'Signika', serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(27, 27, 27, 0.5);
}
.sp-landing .sp-price-meta {
  margin-top: 14px;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(27, 27, 27, 0.55);
}
.sp-landing .sp-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 14px;
}
.sp-landing .sp-price-strike {
  font-family: 'Signika', serif;
  font-size: 22px;
  font-weight: 500;
  color: rgba(27, 27, 27, 0.32);
  text-decoration: line-through;
}
.sp-landing .sp-price-strike--below {
  display: block;
  margin-top: 8px;
}
.sp-landing .sp-price-discount {
  align-self: center;
  display: inline-block;
  padding: 4px 10px;
  background: #1B1B1B;
  color: #FFFFFF;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  border-radius: 999px;
}
.sp-landing .sp-price-list-wrap {
  border-top: 1px solid rgba(27, 27, 27, 0.08);
  padding-top: 20px;
}
.sp-landing .sp-price-list-wrap .sp-price-list--bare {
  border-top: none;
  padding-top: 0;
}
.sp-landing .sp-price-list-label {
  margin: 0 0 14px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-brand-accent);
}
.sp-landing .sp-price-guarantee {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(27, 27, 27, 0.6);
}
.sp-landing .sp-price-guarantee-check {
  flex: 0 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid #2EA464;
  color: #2EA464;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

/* -- Final CTA tweaks -------------------------------------- */
.sp-landing .vcs-final h2 em { color: var(--color-accent-light); }

/* -- Responsive -------------------------------------------- */
@media (max-width: 1060px) {
  .sp-landing .sp-cards { grid-template-columns: repeat(2, 1fr); }
  .sp-landing .sp-pcards { grid-template-columns: 1fr; gap: 20px; }
  .sp-landing .sp-proof-row { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .sp-landing .sp-proof-item:nth-child(3) { border-left: none; padding-left: 0; }
  .sp-landing .sp-pricing { grid-template-columns: 1fr; gap: 24px; }
  .sp-landing .sp-hero-arche { max-width: 380px; padding: 24px 24px 22px; }
}
@media (max-width: 720px) {
  .sp-landing .sp-cards { grid-template-columns: 1fr; }
  .sp-landing .sp-proof-row {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 0;
  }
  .sp-landing .sp-proof-item {
    border-left: none;
    padding: 0;
    border-top: 1px solid rgba(27, 27, 27, 0.08);
    padding-top: 24px;
  }
  .sp-landing .sp-proof-item:first-child { border-top: none; padding-top: 0; }
  .sp-landing .sp-measure { padding: 24px 20px; }
  .sp-landing .sp-measure-table,
  .sp-landing .sp-measure-table--2col {
    grid-template-columns: 1fr;
  }
  .sp-landing .sp-measure-row > div {
    padding: 10px 0;
    border-bottom: none;
  }
  .sp-landing .sp-measure-row {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(27, 27, 27, 0.08);
  }
  .sp-landing .sp-measure-row--head { display: none; }
  .sp-landing .sp-price-card { padding: 30px 24px; }
  .sp-landing .sp-price-num--lg { font-size: 56px; }
  .sp-landing .sp-pricing-earlybird {
    flex-wrap: wrap;
    gap: 10px 14px;
    border-radius: 20px;
    padding: 14px 18px;
  }
  .sp-landing .sp-pricing-earlybird-label {
    flex: 1 1 auto;
    white-space: normal;
  }
  .sp-landing .sp-pricing-earlybird-bar {
    flex: 1 1 100%;
    order: 3;
  }
  .sp-landing .sp-pricing-earlybird-pct {
    flex: 0 0 100%;
    order: 4;
    text-align: right;
  }
  .sp-landing .sp-price-row { gap: 10px; }
  .sp-landing .sp-report-slide { flex: 0 0 260px; }
  .sp-landing .sp-hero-arche {
    margin: 24px auto 0;
    max-width: 380px;
  }
}

/* ===== Thank-you page ===== */
.thankyou-sub {
  margin-top: 16px;
}

.product-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.product-name,
.product-variant,
.product-price {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-text-secondary);
  background: var(--color-surface);
}

/* ==========================================================================
   SP OUTCOMES — mini UI mockups for "Co pro tebe uděláme" (aidovednosti)
   ========================================================================== */

.sp-outcome-preview {
  position: relative;
  padding: 28px 22px;
  min-height: 280px;
  background: transparent;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

/* Card 1 — Profile / Score hero */
.sp-outcome-score {
  background: #fff;
  border-radius: 14px;
  padding: 22px 34px 18px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(27, 27, 27, 0.08);
  min-width: 180px;
  position: relative;
  z-index: 2;
}
.sp-outcome-score-number {
  font-family: var(--font-heading);
  font-size: 54px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-accent-light);
}
.sp-outcome-score-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 6px;
}
.sp-outcome-score-bar {
  height: 6px;
  border-radius: 100px;
  background: #EFEAFE;
  margin-top: 14px;
  overflow: hidden;
}
.sp-outcome-score-bar span {
  display: block;
  height: 100%;
  background: var(--color-accent-light);
  border-radius: 100px;
}
.sp-outcome-archetype {
  position: absolute;
  left: 20px;
  bottom: 26px;
  background: #fff;
  border-radius: 12px;
  padding: 9px 14px 9px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 18px rgba(27, 27, 27, 0.1);
  z-index: 3;
}
.sp-outcome-archetype-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent-light);
  flex-shrink: 0;
}
.sp-outcome-archetype-name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-default);
  line-height: 1.2;
}
.sp-outcome-archetype-role {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--color-text-muted);
  line-height: 1.2;
}
.sp-outcome-rank {
  position: absolute;
  right: 18px;
  bottom: 38px;
  background: #FFF5CF;
  color: #8A6D00;
  border-radius: 100px;
  padding: 6px 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(27, 27, 27, 0.06);
  z-index: 3;
}

/* Card 2 — Signals */
.sp-outcome-preview--signals {
  padding-bottom: 62px;
}
.sp-outcome-signals {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 6px 18px rgba(27, 27, 27, 0.08);
  width: 100%;
  max-width: 320px;
}
.sp-outcome-signals-head {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}
.sp-outcome-signal {
  display: grid;
  grid-template-columns: 1fr 68px 28px;
  gap: 10px;
  align-items: center;
  padding: 5px 0;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-default);
}
.sp-outcome-bar {
  height: 6px;
  border-radius: 100px;
  background: #F0EDF8;
  overflow: hidden;
}
.sp-outcome-bar span {
  display: block;
  height: 100%;
  background: var(--color-accent-light);
  border-radius: 100px;
}
.sp-outcome-signal b {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  text-align: right;
}
.sp-outcome-leap {
  position: absolute;
  right: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 12px;
  padding: 8px 14px 8px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 18px rgba(27, 27, 27, 0.1);
  z-index: 3;
}
.sp-outcome-leap-icon {
  font-size: 18px;
  line-height: 1;
}
.sp-outcome-leap-eyebrow {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #16A34A;
  font-weight: 600;
  line-height: 1.2;
}
.sp-outcome-leap-name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-default);
  line-height: 1.2;
}

/* Card 3 — Stack */
.sp-outcome-preview--stack {
  justify-content: flex-start;
  align-items: stretch;
  padding: 16px 14px;
  gap: 8px;
}
.sp-outcome-step {
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 3px 10px rgba(27, 27, 27, 0.06);
}
.sp-outcome-step-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 14px;
  flex-shrink: 0;
  color: #fff;
}
.sp-outcome-step-icon--prompt { background: #A98DF6; }
.sp-outcome-step-icon--map { background: #8DB6F6; }
.sp-outcome-step-icon--coach { background: #F6C88D; }
.sp-outcome-step-body {
  flex: 1;
  min-width: 0;
}
.sp-outcome-step-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-default);
  line-height: 1.3;
}
.sp-outcome-step-sub {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--color-text-muted);
  line-height: 1.3;
  margin-top: 2px;
}
.sp-outcome-step-pill {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 100px;
  flex-shrink: 0;
}
.sp-outcome-step-pill--prompt { background: #DCFCE7; color: #166534; }
.sp-outcome-step-pill--map { background: #EFE8FE; color: #5B21B6; }
.sp-outcome-step-pill--coach { background: #FEF3C7; color: #92400E; }
.sp-outcome-cta {
  background: var(--color-accent-light);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 11px;
  border-radius: 10px;
  margin-top: 4px;
  box-shadow: 0 4px 12px rgba(169, 141, 246, 0.35);
}

@media (max-width: 640px) {
  .sp-outcome-preview { min-height: 260px; }
  .sp-outcome-signals { max-width: 100%; }
}
