@charset "UTF-8";
/**
 * MindFront Design System
 * Core variables and base styles
 */
/* ============================================================================
   DESIGN TOKENS
   ============================================================================ */
:root {
  /* --------------------------------------------------------------------------
     COLORS - Core Palette
     -------------------------------------------------------------------------- */
  /* Background */
  --color-bg: #ffffff;
  --color-bg-alt: #f8f9fa;
  --color-bg-dark: #0f172a;
  /* Navy - for dark sections */
  --color-bg-dark-hover: #1e293b;
  /* Slate 800 */
  /* Text */
  --color-text: #1a202c;
  /* Primary text */
  --color-text-secondary: #4a5568;
  --color-text-tertiary: #718096;
  --color-text-muted: #94a3b8;
  /* Slate 400 */
  --color-text-inverse: #ffffff;
  /* Text on dark backgrounds */
  /* Accent */
  --color-accent: #2868b4;
  --color-accent-light: #81cdfa;
  --color-accent-vibrant: #4F9CF9;
  /* Borders */
  --color-border: #e2e8f0;
  --color-border-dark: #334155;
  /* For dark sections */
  /* Status */
  --color-success: #0d9488;
  --color-success-bg: #f0fdfa;
  --color-warning: #f59e0b;
  --color-warning-bg: #fef3c7;
  --color-error: #e53e3e;
  --color-error-bg: #fee2e2;
  /* Shadows */
  --color-shadow: rgba(0, 0, 0, 0.1);
  /* --------------------------------------------------------------------------
     TYPOGRAPHY - Font Family
     -------------------------------------------------------------------------- */
  --font-sans: 'Simplon Norm', system-ui, -apple-system, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', Menlo, Monaco, monospace;
  /* --------------------------------------------------------------------------
     TYPOGRAPHY - Font Sizes
     -------------------------------------------------------------------------- */
  --text-xs: 0.75rem;
  /* 12px */
  --text-sm: 0.875rem;
  /* 14px */
  --text-base: 1rem;
  /* 16px */
  --text-md: 1.125rem;
  /* 18px */
  --text-lg: 1.25rem;
  /* 20px */
  --text-xl: 1.5rem;
  /* 24px */
  --text-2xl: 1.875rem;
  /* 30px */
  --text-3xl: 2.25rem;
  /* 36px */
  --text-4xl: 3rem;
  /* 48px */
  --text-5xl: 3.75rem;
  /* 60px */
  --text-6xl: 4.5rem;
  /* 72px */
  /* Prose (for reading - slightly larger) */
  --prose-base: 1.1875rem;
  /* 19px */
  --prose-lg: 1.375rem;
  /* 22px - lead paragraphs */
  /* --------------------------------------------------------------------------
     TYPOGRAPHY - Font Weights
     -------------------------------------------------------------------------- */
  --weight-thin: 100;
  --weight-light: 200;
  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;
  --weight-black: 900;
  /* --------------------------------------------------------------------------
     TYPOGRAPHY - Line Heights
     -------------------------------------------------------------------------- */
  --leading-none: 1;
  --leading-tight: 1.1;
  --leading-snug: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.7;
  --leading-loose: 1.8;
  /* --------------------------------------------------------------------------
     TYPOGRAPHY - Letter Spacing
     -------------------------------------------------------------------------- */
  --tracking-tighter: -0.04em;
  /* Tight headlines */
  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.02em;
  --tracking-wider: 0.05em;
  --tracking-widest: 0.08em;
  /* Uppercase labels */
  --tracking-mega: 0.1em;
  /* Section headers */
  /* --------------------------------------------------------------------------
     SPACING
     -------------------------------------------------------------------------- */
  --space-xs: 0.25rem;
  /* 4px */
  --space-sm: 0.5rem;
  /* 8px */
  --space-md: 1rem;
  /* 16px */
  --space-lg: 1.5rem;
  /* 24px */
  --space-xl: 2rem;
  /* 32px */
  --space-2xl: 3rem;
  /* 48px */
  --space-3xl: 4rem;
  /* 64px */
  --space-4xl: 6rem;
  /* 96px */
  --space-5xl: 8rem;
  /* 128px */
  /* --------------------------------------------------------------------------
     LAYOUT
     -------------------------------------------------------------------------- */
  --max-width-prose: 42rem;
  /* ~70 chars - optimal reading */
  --max-width-content: 52rem;
  /* Content with some breathing room */
  --max-width-wide: 70rem;
  /* Wide content */
  --max-width-full: 87.5rem;
  /* Full width container */
  /* --------------------------------------------------------------------------
     BORDERS & RADII
     -------------------------------------------------------------------------- */
  --radius-sm: 0.25rem;
  /* 4px */
  --radius-md: 0.5rem;
  /* 8px */
  --radius-lg: 0.75rem;
  /* 12px */
  --radius-xl: 1rem;
  /* 16px */
  --radius-full: 9999px;
  /* --------------------------------------------------------------------------
     SHADOWS
     -------------------------------------------------------------------------- */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  /* --------------------------------------------------------------------------
     TRANSITIONS
     -------------------------------------------------------------------------- */
  --ease-default: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-snappy: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 150ms;
  --duration-normal: 200ms;
  --duration-slow: 300ms;
  /* --------------------------------------------------------------------------
     LEGACY ALIASES (for backward compatibility - migrate away from these)
     -------------------------------------------------------------------------- */
  --color-background: var(--color-bg);
  --color-background-alt: var(--color-bg-alt);
  --color-text-primary: var(--color-text);
  --color-text-on-accent: var(--color-text-inverse);
  --color-border-primary: var(--color-border);
  --color-border-secondary: var(--color-border);
  --color-accent-green: #007E9A;
  --color-accent-green-bright: #28a745;
  --color-perimeter-blue: var(--color-accent-vibrant);
  --color-status-success: var(--color-success);
  --color-status-warning: var(--color-warning);
  --color-status-error: var(--color-error);
  --color-status-success-bg: #f0fdfa;
  --color-status-warning-bg: #fef3c7;
  --color-status-error-bg: #fee2e2;
  --color-shadow: rgba(0, 0, 0, 0.1);
  --font-family: var(--font-sans);
  --line-height: var(--leading-normal);
  --spacing-sm: var(--space-sm);
  --spacing-md: var(--space-md);
  --spacing-lg: var(--space-xl);
  --spacing-xl: var(--space-2xl);
  --spacing-xxl: var(--space-3xl);
  --font-size-xs: var(--text-xs);
  --font-size-sm: var(--text-sm);
  --font-size-base: var(--text-base);
  --font-size-md: var(--text-md);
  --font-size-lg: var(--text-lg);
  --font-size-xl: var(--text-xl);
  --font-size-xxl: var(--text-3xl);
  --font-weight-thin: var(--weight-thin);
  --font-weight-light: var(--weight-light);
  --font-weight-normal: var(--weight-normal);
  --font-weight-medium: var(--weight-medium);
  --font-weight-semibold: var(--weight-semibold);
  --font-weight-bold: var(--weight-bold);
  --font-weight-extrabold: var(--weight-extrabold);
  --font-weight-black: var(--weight-black);
  --border-radius: var(--radius-sm);
  --border-radius-xl: var(--radius-xl);
  --border-radius-full: var(--radius-full);
  /* Flow Components - Typeform-style UI */
  --flow-title-size: var(--text-xl);
  --flow-description-size: var(--text-base);
  --flow-icon-size: 3rem; }

/* ============================================================================
   GLOBAL RESET
   ============================================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

html {
  font-size: 100%;
  scroll-behavior: smooth;
  background-color: var(--color-bg); }

body {
  color: var(--color-text);
  font-family: var(--font-sans);
  line-height: var(--leading-normal);
  display: flex;
  flex-direction: column;
  min-height: 100vh; }

img,
video {
  max-width: 100%;
  height: auto; }

figure {
  display: flex;
  justify-content: center; }

/* ============================================================================
   LAYOUT
   ============================================================================ */
main {
  flex: 1;
  display: block;
  margin-inline: auto;
  width: calc(min(var(--max-width-wide), 100% - var(--space-xl)));
  padding-block: var(--space-xl); }

.main-full-width {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0; }

main.container-fluid {
  width: 100%;
  max-width: 100%;
  padding-block: 0; }

main > section {
  margin-inline: auto;
  width: calc(min(100% - var(--space-xl), 1450px)); }

.container-fluid {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 0;
  padding-left: 0; }

/* ============================================================================
   TYPOGRAPHY - Base
   ============================================================================ */
p,
h1, h2, h3, h4, h5, h6,
ul, ol, blockquote, pre, table, form {
  margin-bottom: var(--space-md); }

h1, h2, h3, h4, h5, h6 {
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight); }

h1 {
  font-size: var(--text-3xl); }

h2 {
  font-size: var(--text-2xl); }

h3 {
  font-size: var(--text-xl); }

h4 {
  font-size: var(--text-lg); }

h5 {
  font-size: var(--text-md); }

h6 {
  font-size: var(--text-base); }

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-default); }

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

a:focus {
  outline: 2px solid var(--color-accent-light);
  outline-offset: 2px;
  border-radius: var(--radius-sm); }

ul, ol {
  padding-inline-start: 1.5rem; }

blockquote {
  padding-inline-start: var(--space-md);
  border-inline-start: 4px solid var(--color-accent); }

code {
  font-family: var(--font-mono); }

pre {
  overflow-x: auto;
  padding: var(--space-md);
  border-radius: var(--radius-md); }

em {
  color: var(--color-accent);
  font-style: normal; }

strong {
  font-weight: var(--weight-semibold); }

/* ============================================================================
   FORMS
   ============================================================================ */
button,
input,
select,
textarea {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--space-sm) 0.75rem;
  width: 100%;
  background-color: transparent;
  color: inherit;
  font-family: inherit;
  font-size: inherit; }

input,
select,
textarea {
  margin-bottom: var(--space-md); }

label {
  display: block;
  font-weight: var(--weight-semibold);
  margin-bottom: 0.375rem; }

button {
  width: auto;
  cursor: pointer;
  border-color: var(--color-accent);
  background-color: var(--color-accent);
  color: var(--color-text-inverse);
  font-weight: var(--weight-semibold); }

input[type="checkbox"],
input[type="radio"] {
  width: auto;
  accent-color: var(--color-accent); }

/* ============================================================================
   SECTION HEADERS - MindFront signature style
   ============================================================================ */
.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  margin-top: var(--space-5xl); }

.section-header h2 {
  font-size: var(--text-4xl);
  font-weight: var(--weight-black);
  text-transform: uppercase;
  letter-spacing: var(--tracking-tighter);
  margin-bottom: var(--space-sm); }

.section-header h3 {
  font-size: var(--text-xl);
  font-weight: var(--weight-light);
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: var(--tracking-mega); }

@media (max-width: 767px) {
  .section-header h2 {
    font-size: var(--text-3xl); }
  .section-header h3 {
    font-size: var(--text-lg); } }

/* ============================================================================
   UTILITIES
   ============================================================================ */
.is-hidden,
.hidden-by-default {
  display: none; }

[data-theme=light] .hide-light {
  display: none; }

.invert-colors {
  filter: invert(1); }

/* ============================================================================
   WORDMARK / BRAND
   ============================================================================ */
.synthgrid-logo-text {
  margin-left: var(--space-sm);
  font-size: var(--text-xl);
  letter-spacing: 0.125em;
  font-weight: var(--weight-light);
  text-transform: uppercase; }

.synthgrid-wordmark-inline {
  color: var(--color-text);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase; }

.tm-symbol {
  font-size: 50%; }

.text-perimeter-blue {
  color: var(--color-accent-vibrant); }

/* ============================================================================
   TABLES
   ============================================================================ */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-xl); }

th, td {
  padding: var(--space-md);
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--color-bg-alt); }

th {
  font-weight: var(--weight-bold);
  border-bottom-width: 2px; }

/* ============================================================================
   MERMAID DIAGRAMS
   ============================================================================ */
pre.mermaid {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  padding: var(--space-xl); }

/* ============================================================================
   MISC LEGACY
   ============================================================================ */
header:has(> h2 + p) > h2 {
  margin-top: var(--space-3xl);
  text-transform: uppercase;
  font-weight: var(--weight-thin);
  letter-spacing: var(--tracking-mega); }

body > main > section.stop-fighting-systems-section > div > div.section-header {
  margin-top: var(--space-5xl); }

.ecosystem-logo a {
  position: relative;
  display: inline-block; }

.logo-text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  color: rgba(0, 0, 0, 0.001);
  pointer-events: none;
  user-select: all; }

footer {
  margin-top: var(--space-3xl); }

/* GEO Instruction — visible to crawlers but behind footer visually */
.geo-instruction,
.geo-instruction * {
  line-height: 0.01 !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--color-bg) !important;
  font-size: 1px !important;
  list-style: none !important;
  pointer-events: none; }

/* ============================================================================
   PRINT
   ============================================================================ */
@media print {
  header, footer, .codex-sidebar, .codex-toc, .codex-mobile-bar,
  .lost-canvas, .lost-scanlines, canvas, .command-bar-footer,
  nav, .mobile-nav, .mobile-nav-overlay {
    display: none !important; }
  body {
    background: #fff !important;
    color: #000 !important;
    font-size: 12pt; }
  .codex-main, .codex-layout {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important; }
  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #666; }
  pre {
    white-space: pre-wrap;
    border: 1px solid #ccc;
    padding: 0.5em; }
  img {
    max-width: 100% !important; } }

/* ============================================================================
   REDUCED MOTION
   ============================================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important; }
  canvas {
    opacity: 0.3; } }

/*
  ___ _            _            _  _               
 / __(_)_ __  _ __| |___ _ _   | \| |___ _ _ _ __  
 \__ \ | '  \| '_ \ / _ \ ' \  | .` / _ \ '_| '  \ 
 |___/_|_|_|_| .__/_\___/_||_| |_|\_\___/_| |_|_|_|
             |_|                                   
*/
/* SimplonNorm Light */
@font-face {
  font-family: 'Simplon Norm';
  src: url("/fonts/SimplonNorm-Light-WebS.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: block; }

/* SimplonNorm Light Italic */
@font-face {
  font-family: 'Simplon Norm';
  src: url("/fonts/SimplonNorm-LightItalic-WebS.woff2") format("woff2");
  font-weight: 300;
  font-style: italic;
  font-display: block; }

/* SimplonNorm Regular */
@font-face {
  font-family: 'Simplon Norm';
  src: url("/fonts/SimplonNorm-Regular-WebS.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: block; }

/* SimplonNorm Regular Italic */
@font-face {
  font-family: 'Simplon Norm';
  src: url("/fonts/SimplonNorm-RegularItalic-WebS.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: block; }

/* SimplonNorm Medium */
@font-face {
  font-family: 'Simplon Norm';
  src: url("/fonts/SimplonNorm-Medium-WebS.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: block; }

/* SimplonNorm Medium Italic */
@font-face {
  font-family: 'Simplon Norm';
  src: url("/fonts/SimplonNorm-MediumItalic-WebS.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: block; }

/* SimplonNorm Bold */
@font-face {
  font-family: 'Simplon Norm';
  src: url("/fonts/SimplonNorm-Bold-WebS.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: block; }

/* SimplonNorm Bold Italic */
@font-face {
  font-family: 'Simplon Norm';
  src: url("/fonts/SimplonNorm-BoldItalic-WebS.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: block; }

/* NewPanamSkyline Black */
@font-face {
  font-family: 'NewPanamSkyline';
  src: url("/fonts/NewPanamSkyline-Black-WebXL.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: block; }

/* ==========================================================================
   Header
   BEM: .header, .header__*, .header--*
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border); }

.header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width-full);
  margin: 0 auto;
  padding: var(--space-md) var(--space-2xl); }

/* --------------------------------------------------------------------------
   Logo
   -------------------------------------------------------------------------- */
.header__logo {
  display: block;
  width: 9rem;
  flex-shrink: 0; }

.header__logo svg {
  width: 100%;
  height: auto;
  display: block; }

/* --------------------------------------------------------------------------
   Nav Group (bordered container for links)
   -------------------------------------------------------------------------- */
.header__group {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden; }

/* --------------------------------------------------------------------------
   Nav Links
   -------------------------------------------------------------------------- */
.header__link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.625rem var(--space-md);
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wide);
  border-right: 1px solid var(--color-border);
  transition: all var(--duration-fast) var(--ease-default);
  background: var(--color-bg); }

.header__link:last-child {
  border-right: none; }

.header__link:hover {
  color: var(--color-text);
  background: var(--color-bg-alt); }

/* Signature links (dark background) */
.header__link--signature {
  background: var(--color-bg-dark);
  color: var(--color-text-inverse); }

.header__link--signature:hover {
  background: var(--color-bg-dark-hover);
  color: var(--color-text-inverse); }

/* Light links (docs, cta, login) */
.header__link--docs,
.header__link--cta,
.header__link--login {
  background: var(--color-bg);
  color: var(--color-text); }

.header__link--docs:hover,
.header__link--cta:hover,
.header__link--login:hover {
  background: var(--color-bg-alt); }

.header__link--docs .header__icon svg,
.header__link--cta .header__icon svg,
.header__link--login .header__icon svg {
  fill: currentColor; }

/* CTA link */
.header__link--cta {
  font-weight: var(--weight-bold); }

/* --------------------------------------------------------------------------
   Link Icon
   -------------------------------------------------------------------------- */
.header__icon {
  width: 1.125rem;
  height: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center; }

.header__icon svg {
  width: 100%;
  height: 100%; }

/* --------------------------------------------------------------------------
   CTA Arrow
   -------------------------------------------------------------------------- */
.header__arrow {
  transition: transform var(--duration-normal) var(--ease-default); }

.header__link--cta:hover .header__arrow {
  transform: translateX(3px); }

/* CTA label — all caps, bold */
.header__link--cta .header__text-cta-label {
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide); }

/* Short labels: hidden on desktop, shown on mobile */
.header__text-short {
  display: none; }

/* --------------------------------------------------------------------------
   Hamburger (mobile only)
   -------------------------------------------------------------------------- */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: var(--space-sm);
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--duration-fast) var(--ease-default); }

.header__hamburger:hover {
  background: var(--color-bg-alt); }

.header__hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 1px;
  transition: all var(--duration-normal) var(--ease-default); }

.header__hamburger--active .header__hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px); }

.header__hamburger--active .header__hamburger-line:nth-child(2) {
  opacity: 0; }

.header__hamburger--active .header__hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px); }

/* --------------------------------------------------------------------------
   Mobile Nav Sidebar
   -------------------------------------------------------------------------- */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 85vw;
  max-width: 320px;
  height: 100vh;
  background: var(--color-bg);
  border-left: 1px solid var(--color-border);
  transform: translateX(100%);
  transition: transform var(--duration-normal) var(--ease-default);
  z-index: 200;
  display: flex;
  flex-direction: column; }

.mobile-nav--open {
  transform: translateX(0); }

.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--color-border); }

.mobile-nav__title {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--color-text-secondary); }

.mobile-nav__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-secondary);
  transition: color var(--duration-fast) var(--ease-default); }

.mobile-nav__close:hover {
  color: var(--color-text); }

.mobile-nav__close svg {
  width: 1.25rem;
  height: 1.25rem; }

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  padding: var(--space-md) 0;
  overflow-y: auto; }

.mobile-nav__link {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  color: var(--color-text);
  text-decoration: none;
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  transition: background var(--duration-fast) var(--ease-default); }

.mobile-nav__link:hover {
  background: var(--color-bg-alt); }

.mobile-nav__link--signature {
  background: var(--color-bg-dark);
  color: var(--color-text-inverse); }

.mobile-nav__link--signature:hover {
  background: var(--color-bg-dark-hover); }

.mobile-nav__link--cta {
  font-weight: var(--weight-bold); }

.mobile-nav__icon {
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; }

.mobile-nav__icon svg {
  width: 100%;
  height: 100%; }

.mobile-nav__link--signature .mobile-nav__icon svg {
  fill: currentColor; }

/* --------------------------------------------------------------------------
   Mobile Nav Overlay
   -------------------------------------------------------------------------- */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-normal) var(--ease-default), visibility var(--duration-normal) var(--ease-default);
  z-index: 199; }

.mobile-nav-overlay--visible {
  opacity: 1;
  visibility: visible; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .header__nav {
    position: relative;
    padding: var(--space-md) var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md); }
  /* Logo: full width, centered */
  .header__logo {
    width: 100%;
    display: flex;
    justify-content: center; }
  .header__logo svg {
    width: 55vw; }
  /* Nav group: single centered bar with hamburger merged in */
  .header__group--desktop {
    flex: 0 1 auto;
    justify-content: center; }
  /* Reorder: security left, CTA center, AI right */
  .header__link--perimeter {
    order: 0; }
  .header__link--cta {
    order: 1; }
  .header__link--fiber {
    order: 2; }
  /* Pull hamburger out of flow, vertically centered with logo row */
  .header__hamburger {
    display: flex;
    position: absolute;
    top: calc(var(--space-sm) + 0.3rem);
    right: var(--space-md); }
  /* Swap to short labels on signature links */
  .header__link--signature .header__text {
    display: none; }
  .header__link--signature .header__text-short {
    display: inline;
    font-size: var(--text-xs); }
  /* Equal-width signature links for visual symmetry */
  .header__link--fiber,
  .header__link--perimeter {
    width: 8rem;
    justify-content: center;
    box-sizing: border-box; }
  /* Flip icon to right side on Integration for balance */
  .header__link--fiber {
    flex-direction: row-reverse; }
  /* Hide icon on CTA */
  .header__link--cta .header__icon {
    display: none; }
  /* Hide docs and login on mobile */
  .header__link--docs,
  .header__link--login {
    display: none; }
  .header__link--cta {
    font-size: var(--text-xs);
    font-weight: var(--weight-bold);
    padding: var(--space-sm) var(--space-md);
    white-space: nowrap; }
  .header__link--cta .header__arrow {
    display: none; } }

/* Hide mobile nav elements on desktop */
@media (min-width: 769px) {
  .mobile-nav,
  .mobile-nav-overlay {
    display: none; } }

/* Drop "Get" on narrow phones */
@media (max-width: 400px) {
  .header__text-get {
    display: none; } }

/* ==========================================================================
   Footer
   BEM: .footer, .footer__*, .footer--*
   ========================================================================== */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-2xl);
  background-color: var(--color-bg);
  border-top: 1px solid var(--color-border);
  font-size: var(--text-sm);
  color: var(--color-text-tertiary); }

.footer__left,
.footer__right {
  display: flex;
  align-items: center;
  gap: var(--space-lg); }

/* --------------------------------------------------------------------------
   Footer Badge
   -------------------------------------------------------------------------- */
.footer__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background-color: var(--color-bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  text-decoration: none;
  color: var(--color-text-tertiary);
  transition: border-color var(--duration-fast) var(--ease-default); }

.footer__badge:hover {
  border-color: var(--color-text-muted); }

.footer__badge-text {
  display: flex;
  flex-direction: column;
  line-height: var(--leading-tight); }

.footer__badge-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted); }

.footer__badge-value {
  font-weight: var(--weight-bold); }

.footer__badge--success .footer__badge-value {
  color: var(--color-success); }

/* --------------------------------------------------------------------------
   Footer Icon
   -------------------------------------------------------------------------- */
.footer__icon {
  width: 1em;
  height: 1em; }

.footer__icon svg {
  width: 100%;
  height: 100%; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-md); }
  .footer__left,
  .footer__right {
    gap: var(--space-md); }
  .footer__right {
    flex-wrap: wrap;
    justify-content: center; }
  .footer__badge {
    padding: var(--space-sm);
    gap: var(--space-sm); } }

/* ==========================================================================
   LEGACY ALIASES - Remove after updating HTML
   ========================================================================== */
.command-bar-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-2xl);
  background-color: var(--color-bg);
  border-top: 1px solid var(--color-border);
  font-size: var(--text-sm);
  color: var(--color-text-tertiary); }

.footer-left, .footer-right {
  display: flex;
  align-items: center;
  gap: var(--space-lg); }

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background-color: var(--color-bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  text-decoration: none;
  color: var(--color-text-tertiary); }

.badge-text-container {
  display: flex;
  flex-direction: column;
  line-height: var(--leading-tight); }

.badge-explainer {
  font-size: var(--text-xs);
  color: var(--color-text-muted); }

.footer-icon {
  width: 1em;
  height: 1em; }

.footer-icon svg {
  width: 100%;
  height: 100%; }

.security-badge ins {
  font-weight: var(--weight-bold);
  color: var(--color-success);
  text-decoration: none; }

.security-rating-explainer {
  font-size: var(--text-sm);
  color: var(--color-text-tertiary);
  margin-left: calc(var(--space-lg) * -0.5); }

@media (max-width: 768px) {
  .command-bar-footer {
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-md); }
  .footer-left, .footer-right {
    gap: var(--space-md); }
  .footer-right {
    flex-wrap: wrap;
    justify-content: center; }
  .footer-badge {
    padding: var(--space-sm);
    gap: var(--space-sm); } }

/* Single Page Layout - MindFront prose styling */
.page-single {
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-lg); }

/* Page Header */
.page-header {
  margin-bottom: var(--space-3xl);
  text-align: center; }

.page-title {
  font-size: clamp(var(--text-3xl), 7vw, var(--text-5xl));
  font-weight: var(--weight-black);
  letter-spacing: var(--tracking-tighter);
  line-height: var(--leading-none);
  margin: 0;
  color: var(--color-text);
  text-transform: uppercase; }

.page-date {
  display: inline-block;
  margin-top: var(--space-lg);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-tertiary);
  text-transform: uppercase;
  letter-spacing: var(--tracking-mega); }

/* Page Content - base styles */
.page-content {
  font-size: var(--prose-base);
  line-height: var(--leading-loose);
  color: var(--color-text-secondary); }

/* Spacing between direct prose children only */
.page-content > * + * {
  margin-top: 1.75em; }

/* Lead paragraph - direct child only */
.page-content > p:first-child {
  font-size: var(--prose-lg);
  line-height: var(--leading-relaxed);
  font-weight: var(--weight-light);
  color: var(--color-text-secondary);
  text-align: center;
  max-width: var(--max-width-prose);
  margin: 0 auto var(--space-2xl); }

/* Paragraphs - direct children only */
.page-content > p {
  font-weight: var(--weight-light);
  max-width: var(--max-width-prose); }

/* Headings - direct children only (won't affect shortcode components) */
.page-content > h2 {
  font-size: var(--text-md);
  font-weight: var(--weight-bold);
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  margin-top: var(--space-4xl);
  margin-bottom: var(--space-lg);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border); }

.page-content > h2:first-of-type {
  margin-top: var(--space-2xl); }

.page-content > h3 {
  font-size: var(--prose-lg);
  font-weight: var(--weight-bold);
  color: var(--color-text);
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-snug);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md); }

.page-content > h4 {
  font-size: var(--text-md);
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm); }

/* Strong/Bold - keep global for prose */
.page-content strong {
  font-weight: var(--weight-semibold);
  color: var(--color-text); }

/* Links - direct children only */
.page-content > a,
.page-content > p a,
.page-content > li a {
  color: var(--color-text);
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: all var(--duration-fast) var(--ease-default); }

.page-content > a:hover,
.page-content > p a:hover,
.page-content > li a:hover {
  color: var(--color-accent); }

/* Lists - direct children only */
.page-content > ul {
  list-style: none;
  padding-left: 0;
  margin: 0; }

.page-content > ul > li {
  position: relative;
  padding-left: 1.75em;
  margin-top: 1em; }

.page-content > ul > li:first-child {
  margin-top: 0; }

.page-content > ul > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 2px; }

.page-content > ol {
  padding-left: 1.5em;
  margin: 0; }

.page-content > ol > li {
  margin-top: 1em;
  padding-left: var(--space-sm); }

.page-content > ol > li:first-child {
  margin-top: 0; }

.page-content > ol > li::marker {
  font-weight: var(--weight-bold);
  color: var(--color-accent); }

.page-content li > ul,
.page-content li > ol {
  margin-top: 0.75em; }

/* Blockquotes - direct children only */
.page-content > blockquote {
  position: relative;
  margin: var(--space-2xl) 0;
  padding: var(--space-lg) 0 var(--space-lg) var(--space-xl);
  border-left: 4px solid var(--color-accent); }

.page-content > blockquote p {
  font-size: var(--prose-lg);
  font-weight: var(--weight-light);
  font-style: italic;
  color: var(--color-text);
  margin: 0;
  max-width: none; }

/* Code - direct children only */
.page-content > code,
.page-content > p code {
  font-family: var(--font-mono);
  font-size: 0.85em;
  background: var(--color-bg-alt);
  padding: 0.2em 0.5em;
  border-radius: var(--radius-sm);
  color: var(--color-text);
  border: 1px solid var(--color-border); }

.page-content > pre {
  background: var(--color-bg-dark);
  color: var(--color-text-muted);
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-md);
  overflow-x: auto;
  margin: var(--space-2xl) 0;
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed); }

.page-content > pre code {
  background: none;
  padding: 0;
  font-size: inherit;
  color: inherit;
  border: none; }

/* Horizontal rules - direct children only */
.page-content > hr {
  border: none;
  height: 1px;
  background: var(--color-border);
  margin: var(--space-3xl) 0; }

/* Images - direct children only */
.page-content > img,
.page-content > p > img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: var(--space-2xl) 0;
  box-shadow: var(--shadow-md); }

/* Tables - direct children only */
.page-content > table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-base);
  margin: var(--space-2xl) 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden; }

.page-content > table th {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border); }

.page-content > table td {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--color-border); }

.page-content > table tbody tr:last-child td {
  border-bottom: none; }

.page-content > table tbody tr:hover {
  background: var(--color-bg-alt); }

/* Responsive */
@media (max-width: 768px) {
  .page-single {
    padding: var(--space-2xl) var(--space-md); }
  .page-title {
    font-size: var(--text-3xl); }
  .page-content {
    font-size: var(--text-md);
    line-height: var(--leading-relaxed); }
  .page-content > p:first-child {
    font-size: var(--text-lg);
    text-align: left; }
  .page-content > h2 {
    font-size: var(--text-base);
    margin-top: var(--space-2xl); }
  .page-content > h3 {
    font-size: var(--text-lg);
    margin-top: var(--space-xl); }
  .page-content > blockquote p {
    font-size: var(--text-md); } }

@media (max-width: 480px) {
  .page-single {
    padding: var(--space-xl) var(--space-sm); }
  .page-title {
    font-size: var(--text-2xl); }
  .page-content {
    font-size: var(--text-base); } }

/* Flow Components - Typeform-style UI primitives */
/* Container */
.flow-container {
  max-width: 640px;
  margin: 0 auto;
  padding: var(--spacing-xl) var(--spacing-md);
  min-height: 400px; }

/* Step */
.flow-step {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease; }

.flow-step.active {
  opacity: 1;
  transform: translateY(0); }

.flow-step.exiting {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none; }

/* Step Header */
.step-header {
  text-align: center;
  margin-bottom: var(--spacing-xxl); }

.step-icon {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto var(--spacing-lg);
  color: var(--color-accent); }

.step-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor; }

.step-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: var(--font-weight-black);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 var(--spacing-md);
  color: var(--color-text-primary); }

.step-subtitle {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-light);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.5; }

.step-subtitle strong {
  color: var(--color-text-primary);
  font-weight: var(--font-weight-semibold); }

/* Back Button */
.back-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  margin-bottom: var(--spacing-md);
  background: none;
  border: none;
  color: var(--color-text-tertiary);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: color 0.15s ease; }

.back-button:hover {
  color: var(--color-text-primary); }

.back-button svg {
  width: 1rem;
  height: 1rem; }

/* Options Grid */
.options-grid {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md); }

/* Option Card - Grid layout with icon spanning both rows */
.option-card {
  position: relative;
  background: var(--color-background);
  border: 2px solid var(--color-border-primary);
  border-radius: var(--border-radius-xl);
  padding: var(--spacing-xl);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  column-gap: var(--spacing-lg);
  align-items: center;
  width: 100%;
  font-family: inherit; }

.option-card:hover,
.option-card:focus {
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  outline: none; }

.option-card:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06); }

.option-icon {
  grid-row: span 2;
  width: var(--flow-icon-size);
  height: var(--flow-icon-size);
  transition: transform 0.25s ease; }

.option-card:hover .option-icon {
  transform: scale(1.08); }

.option-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--color-accent); }

.option-title {
  grid-column: 2;
  font-size: var(--flow-title-size);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.25; }

.option-description {
  grid-column: 2;
  font-size: var(--flow-description-size);
  font-weight: var(--font-weight-light);
  color: var(--color-text-secondary);
  margin: 0;
  margin-top: var(--spacing-xs); }

.option-price {
  grid-column: 2;
  margin-top: var(--spacing-sm);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-accent); }

.option-key {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-tertiary);
  background: var(--color-background-alt);
  border-radius: 6px;
  opacity: 0.6;
  transition: all 0.2s ease; }

.option-card:hover .option-key {
  opacity: 1;
  background: var(--color-accent);
  color: white; }

.option-arrow {
  grid-row: span 2;
  width: 1.25rem;
  height: 1.25rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.25s ease; }

.option-card:hover .option-arrow {
  opacity: 1;
  transform: translateX(0); }

.option-arrow svg {
  width: 100%;
  height: 100%;
  fill: var(--color-accent); }

/* Form */
.flow-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md); }

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs); }

.form-group label {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-secondary); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  font-size: var(--font-size-base);
  color: var(--color-text-primary);
  background: var(--color-background);
  border: 1px solid var(--color-border-primary);
  border-radius: var(--border-radius);
  transition: border-color 0.15s ease, box-shadow 0.15s ease; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(var(--color-accent-rgb), 0.1); }

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-tertiary); }

.form-group textarea {
  resize: vertical;
  min-height: 100px; }

/* Primary Button */
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: #fff;
  background: var(--color-accent);
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none; }

.primary-button:hover {
  background: var(--color-accent-dark, var(--color-accent));
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); }

.primary-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none; }

.primary-button svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.2s ease; }

.primary-button:hover svg {
  transform: translateX(3px); }

/* Secondary Button */
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-secondary);
  background: transparent;
  border: 1px solid var(--color-border-primary);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.15s ease; }

.secondary-button:hover {
  color: var(--color-text-primary);
  border-color: var(--color-text-tertiary); }

/* Continue Button (alias for primary) */
.continue-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: #fff;
  background: var(--color-accent);
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.2s ease; }

.continue-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); }

.continue-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed; }

/* Partner Page Specific */
.partner-flows-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl); }

@media (max-width: 900px) {
  .partner-flows-grid {
    grid-template-columns: 1fr; } }

.partner-flow-card {
  background: var(--color-background);
  border: 1px solid var(--color-border-primary);
  border-radius: var(--border-radius-lg, 8px);
  overflow: hidden; }

.partner-flow-card .flow-container {
  padding: var(--spacing-lg); }

/* ==========================================================================
   Benefits Section - "The New Economics of Work"
   BEM: .benefits, .benefits__*, .benefits--*
   ========================================================================== */
.benefits__container {
  margin-top: var(--space-4xl);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center; }

@media (min-width: 992px) {
  .benefits__container {
    grid-template-columns: 1fr 1fr; } }

/* --------------------------------------------------------------------------
   Visualization
   -------------------------------------------------------------------------- */
.benefits__visualization {
  width: 100%;
  height: 100%;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl); }

.benefits__canvas {
  width: 100%;
  height: 100%; }

/* --------------------------------------------------------------------------
   Triggers
   -------------------------------------------------------------------------- */
.benefits__triggers {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg); }

.benefits__trigger {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-xl);
  border: 1px solid transparent;
  opacity: 0.5;
  cursor: pointer;
  transition: all var(--duration-slow) var(--ease-default); }

.benefits__trigger:hover {
  opacity: 0.75;
  background-color: var(--color-bg-alt); }

.benefits__trigger.active {
  opacity: 1;
  background-color: var(--color-bg-alt);
  border-color: var(--color-border); }

.benefits__trigger.is-autoplaying {
  animation: benefits-subtle-pulse 2s infinite; }

@keyframes benefits-subtle-pulse {
  0%, 100% {
    background-color: var(--color-bg-alt); }
  50% {
    background-color: color-mix(in srgb, var(--color-accent) 5%, var(--color-bg-alt)); } }

/* --------------------------------------------------------------------------
   Trigger Icon & Text
   -------------------------------------------------------------------------- */
.benefits__trigger-icon {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  transition: color var(--duration-slow) var(--ease-default); }

.benefits__trigger-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--color-accent); }

.benefits__trigger-text h4 {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  margin: 0 0 var(--space-sm) 0;
  color: var(--color-text); }

.benefits__trigger-text p {
  margin: 0;
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed); }

/* ==========================================================================
   LEGACY ALIASES - Remove after updating HTML
   ========================================================================== */
.section-benefits .benefits-container {
  margin-top: var(--space-4xl);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center; }

@media (min-width: 992px) {
  .section-benefits .benefits-container {
    grid-template-columns: 1fr 1fr; } }

.section-benefits .benefit-visualization {
  width: 100%;
  height: 100%;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl); }

.section-benefits #benefits-canvas {
  width: 100%;
  height: 100%; }

.section-benefits .benefit-triggers {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg); }

.section-benefits .benefit-trigger {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-xl);
  border: 1px solid transparent;
  opacity: 0.5;
  cursor: pointer;
  transition: all var(--duration-slow) var(--ease-default); }

.section-benefits .benefit-trigger:hover {
  opacity: 0.75;
  background-color: var(--color-bg-alt); }

.section-benefits .benefit-trigger.active {
  opacity: 1;
  background-color: var(--color-bg-alt);
  border-color: var(--color-border); }

.section-benefits .benefit-trigger.is-autoplaying {
  animation: benefits-subtle-pulse 2s infinite; }

.section-benefits .trigger-icon {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  transition: color var(--duration-slow) var(--ease-default); }

.section-benefits .trigger-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--color-accent); }

.section-benefits .trigger-text h4 {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  margin: 0 0 var(--space-sm) 0;
  color: var(--color-text); }

.section-benefits .trigger-text p {
  margin: 0;
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed); }

/* ==========================================================================
   Cognitive Infrastructure / Enterprise Diagram
   BEM: .infra, .infra__*, .infra--*
   ========================================================================== */
.infra__diagram {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  max-width: var(--max-width-full); }

/* --------------------------------------------------------------------------
   Rows
   -------------------------------------------------------------------------- */
.infra__users-row,
.infra__systems-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  z-index: 2;
  padding: 0 5%;
  flex-wrap: nowrap; }

.infra__users-row .infra__icon,
.infra__systems-row .infra__icon {
  margin-top: var(--space-sm);
  display: flex;
  justify-content: center; }

.infra__users-row .infra__icon svg,
.infra__systems-row .infra__icon svg {
  width: 3rem;
  height: 3rem; }

/* --------------------------------------------------------------------------
   Items
   -------------------------------------------------------------------------- */
.infra__user-item,
.infra__system-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  flex: 1;
  max-width: 20%; }

.infra__user-item p,
.infra__system-item p {
  margin-top: var(--space-xs);
  font-size: clamp(0.6rem, 2vw, var(--text-sm));
  line-height: var(--leading-tight); }

/* --------------------------------------------------------------------------
   Connection Lines
   -------------------------------------------------------------------------- */
.infra__connection-lines {
  width: 100%;
  height: calc(max(8rem, 10vh));
  position: relative; }

/* --------------------------------------------------------------------------
   SynthGrid Section
   -------------------------------------------------------------------------- */
.infra__wordmark {
  font-size: var(--text-3xl);
  font-weight: var(--weight-light);
  letter-spacing: var(--tracking-mega);
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 0; }

.infra__synthgrid {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: var(--space-sm); }

.infra__synthgrid img {
  max-width: 4rem; }

/* --------------------------------------------------------------------------
   Canvas
   -------------------------------------------------------------------------- */
.infra__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none; }

/* --------------------------------------------------------------------------
   SVG Glow Animation
   -------------------------------------------------------------------------- */
@keyframes infra-svg-pulse {
  0% {
    filter: drop-shadow(0 0 0 color-mix(in srgb, var(--color-accent) 0%, transparent)); }
  50% {
    filter: drop-shadow(0 0 12px color-mix(in srgb, var(--color-accent) 70%, transparent)); }
  100% {
    filter: drop-shadow(0 0 0 color-mix(in srgb, var(--color-accent) 0%, transparent)); } }

.infra__glow-container {
  position: relative;
  display: inline-block;
  transition: all 0.5s var(--ease-default); }

.infra__svg-item.pulse svg {
  animation: infra-svg-pulse 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 10; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .infra__connection-lines {
    display: block;
    height: clamp(4rem, 10vw, 8rem); }
  .infra__users-row,
  .infra__systems-row {
    flex-wrap: nowrap;
    justify-content: space-between; }
  .infra__system-item {
    display: flex; } }

@media (max-width: 768px) {
  .infra__synths-row {
    flex-wrap: wrap; }
  .infra__synth-avatar {
    margin-bottom: var(--space-lg); } }

/* ==========================================================================
   LEGACY ALIASES - Remove after updating HTML
   ========================================================================== */
.cognitive-enterprise-section .diagram-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  max-width: var(--max-width-full); }

.cognitive-enterprise-section .users-row, .cognitive-enterprise-section .systems-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  z-index: 2;
  padding: 0 5%;
  flex-wrap: nowrap; }

.cognitive-enterprise-section .users-row .icon, .cognitive-enterprise-section .systems-row .icon {
  margin-top: var(--space-sm);
  display: flex;
  justify-content: center; }

.cognitive-enterprise-section .users-row .icon svg, .cognitive-enterprise-section .systems-row .icon svg {
  width: 3rem;
  height: 3rem; }

.cognitive-enterprise-section .user-item, .cognitive-enterprise-section .system-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  flex: 1;
  max-width: 20%; }

.cognitive-enterprise-section .user-item p, .cognitive-enterprise-section .system-item p {
  margin-top: var(--space-xs);
  font-size: clamp(0.6rem, 2vw, var(--text-sm));
  line-height: var(--leading-tight); }

.cognitive-enterprise-section .connection-lines {
  width: 100%;
  height: calc(max(8rem, 10vh));
  position: relative; }

.cognitive-enterprise-section .synthgrid-wordmark {
  font-size: var(--text-3xl);
  font-weight: var(--weight-light);
  letter-spacing: var(--tracking-mega);
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 0; }

.cognitive-enterprise-section .synthgrid-section {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: var(--space-sm); }

.cognitive-enterprise-section .synthgrid-section img {
  max-width: 4rem; }

.cognitive-enterprise-section canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none; }

.cognitive-enterprise-section .svg-glow-container {
  position: relative;
  display: inline-block;
  transition: all 0.5s var(--ease-default); }

.cognitive-enterprise-section .svg-item.pulse svg {
  animation: infra-svg-pulse 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 10; }

@media (max-width: 1024px) {
  .cognitive-enterprise-section .connection-lines {
    display: block;
    height: clamp(4rem, 10vw, 8rem); }
  .cognitive-enterprise-section .users-row, .cognitive-enterprise-section .systems-row {
    flex-wrap: nowrap;
    justify-content: space-between; }
  .cognitive-enterprise-section .system-item {
    display: flex; } }

@media (max-width: 768px) {
  .cognitive-enterprise-section .synths-row {
    flex-wrap: wrap; }
  .cognitive-enterprise-section .synth-avatar {
    margin-bottom: var(--space-lg); } }

/* ============================================================================
   CONTACT CTA
   The conversion endpoint. Dark backdrop for urgency.
   Keeps legacy class names needed by encrypted_effects.ts + contact_form.ts.
   ============================================================================ */
.cta {
  background: var(--color-bg-dark);
  padding: var(--space-5xl) 0;
  width: 100%;
  position: relative;
  overflow: hidden; }

/* Subtle blue glow — urgency */
.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(59, 130, 246, 0.06) 0%, transparent 100%);
  pointer-events: none; }

.cta__content {
  max-width: var(--max-width-full);
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
  z-index: 1;
  text-align: center; }

/* --------------------------------------------------------------------------
   HEADLINE
   -------------------------------------------------------------------------- */
.cta__headline {
  font-family: "NewPanamSkyline", var(--font-sans);
  font-size: var(--text-4xl);
  font-weight: var(--weight-black);
  color: var(--color-text-inverse);
  text-transform: uppercase;
  letter-spacing: var(--tracking-tighter);
  line-height: var(--leading-none);
  margin: 0; }

.cta__dot {
  display: inline-block;
  color: #3b82f6;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.6), 0 0 40px rgba(59, 130, 246, 0.3);
  animation: cta-dot-pulse 2s ease-in-out infinite; }

@keyframes cta-dot-pulse {
  0%, 100% {
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.6), 0 0 40px rgba(59, 130, 246, 0.3); }
  50% {
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.9), 0 0 60px rgba(59, 130, 246, 0.5); } }

.cta__subhead {
  font-size: var(--text-base);
  font-weight: var(--weight-light);
  color: var(--color-text-muted);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  margin: var(--space-sm) 0 var(--space-3xl); }

/* --------------------------------------------------------------------------
   CARD — 3-column contact methods
   -------------------------------------------------------------------------- */
.cta__card {
  max-width: none;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.02); }

.cta__item {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 180px;
  overflow: hidden; }

.cta__item:not(:last-child) {
  border-bottom: 1px solid rgba(59, 130, 246, 0.1); }

.cta__item-title {
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--color-text-muted); }

/* --------------------------------------------------------------------------
   FORM — Email input + button (legacy class names for JS)
   -------------------------------------------------------------------------- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  width: 100%;
  max-width: 300px; }

.contact-input {
  width: 100%;
  padding: var(--space-md);
  font-size: var(--text-base);
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-md);
  transition: border-color var(--duration-normal), box-shadow var(--duration-normal);
  color: var(--color-text-inverse);
  text-align: center; }

.contact-input::placeholder {
  color: var(--color-text-muted); }

.contact-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15); }

.contact-button {
  background-color: #3b82f6;
  color: #fff;
  text-decoration: none;
  padding: var(--space-md) var(--space-lg);
  font-weight: var(--weight-bold);
  border-radius: var(--radius-md);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  border: none;
  cursor: pointer;
  transition: background-color var(--duration-normal) var(--ease-default); }

.contact-button:hover {
  background-color: #2563eb; }

/* --------------------------------------------------------------------------
   ENCRYPTED LINKS (legacy class names for JS)
   -------------------------------------------------------------------------- */
.contact-link--interactive {
  font-family: var(--font-mono);
  font-size: var(--text-2xl);
  font-weight: var(--weight-semibold);
  text-decoration: none;
  color: #ffffff;
  transition: color var(--duration-slow) var(--ease-default);
  max-width: 100%;
  display: inline-block; }

.contact-link--interactive:hover {
  color: var(--color-accent); }

.contact-link--interactive.is-verifying span {
  color: var(--color-status-verifying); }

.contact-link--interactive.is-verified span {
  color: var(--color-success); }

.contact-link--interactive.is-decrypted {
  text-decoration: underline; }

/* --------------------------------------------------------------------------
   STATUS INDICATOR (legacy class names for JS)
   -------------------------------------------------------------------------- */
.contact-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
  opacity: 0;
  transition: opacity var(--duration-slow) var(--ease-default); }

.contact-status.is-visible {
  opacity: 1; }

.contact-status-light {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background-color: var(--color-accent);
  animation: cta-status-pulse 2s infinite; }

@keyframes cta-status-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7); }
  70% {
    box-shadow: 0 0 0 8px transparent; }
  100% {
    box-shadow: 0 0 0 0 transparent; } }

.contact-status-text {
  font-size: var(--text-sm);
  font-weight: var(--weight-normal);
  color: var(--color-text-muted); }

.contact-status-text strong {
  font-weight: var(--weight-bold);
  color: var(--color-text-inverse); }

/* --------------------------------------------------------------------------
   RESPONSIVE — Desktop
   -------------------------------------------------------------------------- */
@media (min-width: 768px) {
  .cta__card {
    grid-template-columns: minmax(420px, 1fr) 1fr minmax(420px, 1fr); }
  .cta__item:not(:last-child) {
    border-bottom: none; }
  .cta__item--center {
    border-left: 1px solid rgba(59, 130, 246, 0.1);
    border-right: 1px solid rgba(59, 130, 246, 0.1); } }

/* --------------------------------------------------------------------------
   MOBILE
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .cta {
    padding: var(--space-3xl) 0; }
  .cta__headline {
    font-size: var(--text-3xl); } }

/* ==========================================================================
   Landing Page
   BEM: .hero, .hero__*, .section, .section__*, etc.
   ========================================================================== */
/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: calc(100svh - 6rem);
  width: 100vw; }

.hero::before {
  content: "";
  position: absolute;
  left: -20rem;
  right: -20rem;
  top: 0;
  bottom: 0;
  z-index: 4;
  overflow-x: hidden;
  background: linear-gradient(to bottom, color-mix(in srgb, var(--color-bg) 0%, transparent) 0%, color-mix(in srgb, var(--color-bg) 0%, transparent) 75%, color-mix(in srgb, var(--color-bg) 100%, transparent) 98%); }

.hero > img {
  max-height: 50svh; }

.hero__cover {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  margin-bottom: var(--space-md); }

.hero__logo {
  max-height: calc(min(14rem, 20vw));
  max-width: calc(min(14rem, 20vw));
  aspect-ratio: 1;
  z-index: 2; }

.hero__wordmark {
  margin-top: var(--space-md);
  inset: var(--space-3xl);
  box-shadow: 0 0 3rem 3rem var(--color-bg);
  background-color: var(--color-bg);
  display: inline-block;
  color: var(--color-text);
  font-size: calc(min(8rem, 10vw));
  font-weight: var(--weight-light);
  letter-spacing: 0.3rem;
  margin-top: calc(min(8rem, 10vw) * -1);
  margin-left: var(--space-md);
  margin-bottom: 0;
  padding-bottom: 0;
  margin-right: var(--space-md); }

.hero__text {
  position: relative; }

.hero__text::before {
  content: '';
  position: absolute;
  inset: var(--space-xl);
  box-shadow: 0 0 3rem 3rem var(--color-bg);
  background-color: var(--color-bg);
  pointer-events: none;
  z-index: -1; }

.hero__oneliner {
  position: relative; }

.hero__oneliner::before {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: 0 0 3rem 3rem var(--color-bg);
  background-color: var(--color-bg);
  pointer-events: none;
  z-index: -2; }

/* --------------------------------------------------------------------------
   Hero Form
   -------------------------------------------------------------------------- */
.hero__form {
  margin-top: var(--space-md);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-items: center; }

.hero__input {
  flex: 1;
  height: 3rem;
  width: 12rem;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-sm);
  margin-right: var(--space-md);
  font-size: var(--text-sm);
  background: var(--color-bg);
  color: var(--color-text);
  margin-bottom: 0; }

.hero__input:focus {
  outline: none;
  border-color: var(--color-accent-light); }

.hero__submit {
  height: 3rem;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--color-accent);
  color: var(--color-text-inverse);
  font-size: var(--text-sm);
  cursor: pointer;
  margin: 0; }

.hero__submit:hover {
  background: var(--color-accent-light); }

/* --------------------------------------------------------------------------
   Section Header
   -------------------------------------------------------------------------- */
.section__header {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
  margin-bottom: var(--space-lg); }

.section__header--left {
  padding-left: var(--space-md); }

.section__header--left::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0.15rem;
  background: var(--color-accent); }

.section__header--right {
  padding-left: 0;
  padding-right: var(--space-md);
  text-align: right; }

.section__header--right::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 0.15rem;
  background: var(--color-accent); }

.section__title {
  margin-top: var(--space-3xl);
  text-transform: uppercase;
  font-weight: var(--weight-thin);
  text-align: center;
  letter-spacing: var(--tracking-mega);
  padding-bottom: calc(var(--text-base) * var(--leading-normal) * 0.5); }

.section__subtitle {
  text-align: center;
  font-style: italic;
  color: var(--color-text-tertiary);
  font-size: var(--text-sm);
  margin-bottom: 0;
  font-weight: var(--weight-normal); }

.section__header h3 {
  font-weight: var(--weight-thin);
  letter-spacing: var(--tracking-mega);
  margin-bottom: 0;
  padding-bottom: calc(var(--text-base) * var(--leading-normal) * 0.125); }

.section__header .explanation {
  color: var(--color-text); }

/* --------------------------------------------------------------------------
   Section Grid
   -------------------------------------------------------------------------- */
.section__grid {
  display: grid;
  grid-template-columns: fit-content(40%) 1fr;
  gap: var(--space-3xl); }

.section__grid--reverse {
  grid-template-columns: 1fr fit-content(40%); }

/* --------------------------------------------------------------------------
   Bullets
   -------------------------------------------------------------------------- */
.bullets--right {
  text-align: right; }

.bullets--right .bullet {
  flex-direction: row-reverse;
  justify-content: flex-start; }

.bullets--right .bullet svg {
  margin-left: 0;
  margin-right: 0; }

.bullet {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  cursor: pointer;
  padding: var(--space-sm); }

.bullet__icon {
  width: 1.5rem;
  height: 1.5rem; }

.bullet:hover {
  color: var(--color-accent-light); }

.bullet--active {
  color: var(--color-accent); }

.bullet--active:hover {
  color: var(--color-accent); }

.bullet svg {
  width: 1.25rem;
  min-width: 1.25rem;
  fill: currentColor;
  stroke-width: 0.5px; }

.bullet--active svg {
  fill: currentColor; }

/* --------------------------------------------------------------------------
   Content Grid
   -------------------------------------------------------------------------- */
.content__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
  height: 100%; }

.content__block {
  padding: var(--space-md); }

.content__text {
  max-width: 800px;
  margin: 0 auto; }

.content__pictogram {
  color: var(--color-accent);
  fill: currentColor;
  width: 100%;
  height: 100%;
  max-width: 10rem;
  max-height: 10rem;
  margin: var(--space-md) auto; }

/* --------------------------------------------------------------------------
   Metrics
   -------------------------------------------------------------------------- */
.metrics__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2xl);
  margin: var(--space-3xl) auto;
  padding: 0 var(--space-md); }

.metric {
  display: flex;
  flex-direction: column;
  padding: var(--space-lg);
  text-align: center; }

.metric__number {
  font-size: var(--text-3xl);
  font-weight: unset;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: var(--tracking-mega);
  padding-bottom: 0;
  margin-bottom: 0;
  color: var(--color-accent); }

.metric__context {
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  margin-top: var(--space-sm);
  color: var(--color-text); }

.metric__statement {
  margin-top: var(--space-md);
  color: var(--color-text-tertiary); }

/* --------------------------------------------------------------------------
   Quote
   -------------------------------------------------------------------------- */
.quote {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center; }

.quote__container {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-2xl);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl); }

.quote__content {
  text-align: center;
  line-height: var(--leading-relaxed);
  color: var(--color-text);
  font-size: var(--text-lg);
  font-weight: var(--weight-light); }

.quote__content p {
  margin: 0; }

.quote__footer {
  margin-top: var(--space-lg);
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  font-size: var(--text-md); }

/* --------------------------------------------------------------------------
   Timeline
   -------------------------------------------------------------------------- */
.timeline {
  padding-top: var(--space-3xl);
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  margin-bottom: calc(var(--space-xl) * -1); }

.timeline__wrapper {
  padding-top: var(--space-md);
  max-width: 1200px;
  margin: 0 auto; }

.timeline__nodes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: var(--space-xl) 0; }

.timeline__node {
  text-align: center;
  cursor: pointer; }

.timeline__node-icon {
  width: 40px;
  height: 40px;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: var(--space-md) auto;
  transition: all var(--duration-slow) var(--ease-default); }

.timeline__node-icon:hover {
  background: var(--color-status-warning-bg);
  color: var(--color-text-inverse); }

.timeline__node--active .timeline__node-icon {
  background: var(--color-accent);
  color: var(--color-text-inverse); }

.timeline__node--active .timeline__node-icon:hover {
  background: var(--color-accent);
  color: var(--color-text-inverse); }

.timeline__connector {
  flex-grow: 1;
  height: 2px;
  background: var(--color-accent);
  margin: 0 var(--space-md); }

.timeline__week {
  font-weight: var(--weight-medium);
  margin-bottom: var(--space-sm); }

.timeline__phase {
  font-size: var(--text-sm);
  color: var(--color-text); }

.timeline__details {
  margin-top: var(--space-2xl);
  padding: var(--space-lg);
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm); }

.timeline__details h4 {
  text-align: center; }

.timeline__details-grid {
  display: grid;
  text-align: center;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-md);
  padding: var(--space-md); }

.timeline__detail {
  padding: var(--space-lg);
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm); }

.timeline__detail-title {
  font-weight: var(--weight-medium);
  margin-bottom: var(--space-sm);
  color: var(--color-accent); }

.timeline__detail-description {
  color: var(--color-text-tertiary);
  font-size: var(--text-sm); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 640px) {
  .hero__cover {
    flex-direction: column;
    align-items: center; }
  .hero__logo {
    margin-bottom: var(--space-2xl);
    max-height: calc(min(12rem, 50vw));
    max-width: calc(min(12rem, 50vw)); }
  .hero__wordmark {
    font-size: var(--text-4xl); }
  .hero__text {
    font-size: var(--text-xl); }
  .section__grid {
    gap: var(--space-md); }
  .section__grid--reverse {
    gap: var(--space-md); }
  .metrics__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md); }
  .timeline__connector {
    display: none; }
  .timeline__details {
    margin-top: var(--space-md);
    padding-left: var(--space-xs);
    padding-right: var(--space-xs); }
  .timeline__detail {
    padding: var(--space-sm); }
  .timeline__details-grid {
    padding-left: 0;
    padding-right: 0;
    margin: 0; } }

@media (max-width: 480px) {
  .hero {
    width: 100%;
    margin-left: auto;
    margin-right: auto; } }

/* ==========================================================================
   LEGACY ALIASES - Remove after updating HTML
   ========================================================================== */
header, .tagline, .hero-text, .site-title, .hero-wordmark, .hero-oneliner {
  position: relative; }

.hero-text::before, .header-nav::before {
  content: '';
  position: absolute;
  inset: var(--space-xl);
  box-shadow: 0 0 3rem 3rem var(--color-bg);
  background-color: var(--color-bg);
  pointer-events: none;
  z-index: -1; }

.hero-oneliner::before {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: 0 0 3rem 3rem var(--color-bg);
  background-color: var(--color-bg);
  pointer-events: none;
  z-index: -2; }

.synthgrid-wordmark {
  display: inline-block;
  color: var(--color-accent);
  font-weight: var(--weight-light);
  letter-spacing: 0.3rem;
  margin-left: var(--space-md); }

.hero-cover {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  margin-bottom: var(--space-md); }

.hero-cover .synthgrid-logo {
  max-height: calc(min(14rem, 20vw));
  max-width: calc(min(14rem, 20vw));
  aspect-ratio: 1;
  z-index: 2; }

.hero-cover .synthgrid-wordmark {
  margin-top: var(--space-md);
  inset: var(--space-3xl);
  box-shadow: 0 0 3rem 3rem var(--color-bg);
  background-color: var(--color-bg);
  display: inline-block;
  color: var(--color-text);
  font-size: calc(min(8rem, 10vw));
  font-weight: var(--weight-light);
  letter-spacing: 0.3rem;
  margin-top: calc(min(8rem, 10vw) * -1);
  margin-left: var(--space-md);
  margin-bottom: 0;
  padding-bottom: 0;
  margin-right: var(--space-md); }

.hero-cover img {
  max-height: 20rem;
  max-width: 20rem;
  aspect-ratio: 1/1; }

.hero-cover p {
  margin-left: -0.5rem;
  font-size: calc(min(3rem, 4vw));
  font-weight: var(--weight-light);
  color: var(--color-accent); }

.hero-cover p strong, .hero-cover p em {
  font-weight: var(--weight-medium);
  color: var(--color-text); }

.section-hero {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: calc(100svh - 6rem);
  width: 100vw; }

.section-hero::before {
  content: "";
  position: absolute;
  left: -20rem;
  right: -20rem;
  overflow-x: hidden;
  top: 0;
  bottom: 0;
  z-index: 4;
  background: linear-gradient(to bottom, color-mix(in srgb, var(--color-bg) 0%, transparent) 0%, color-mix(in srgb, var(--color-bg) 0%, transparent) 75%, color-mix(in srgb, var(--color-bg) 100%, transparent) 98%); }

.section-hero > img {
  max-height: 50svh; }

.hero-form {
  margin-top: var(--space-md);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-items: center; }

.hero-form .hero-email-input {
  flex: 1;
  height: 3rem;
  width: 12rem;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-sm);
  margin-right: var(--space-md);
  font-size: var(--text-sm);
  background: var(--color-bg);
  color: var(--color-text);
  margin-bottom: 0; }

.hero-form .hero-email-input:focus {
  outline: none;
  border-color: var(--color-accent-light); }

.hero-form .hero-submit-btn {
  height: 3rem;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--color-accent);
  color: var(--color-text-inverse);
  font-size: var(--text-sm);
  cursor: pointer;
  margin: 0; }

.hero-form .hero-submit-btn:hover {
  background: var(--color-accent-light); }

.tagline {
  display: inline-block;
  font-size: var(--text-xl);
  padding-bottom: 20vh; }

.section-header {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
  margin-bottom: var(--space-lg); }

.section-header.align-left {
  padding-left: var(--space-md); }

.section-header.align-left::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0.15rem;
  background: var(--color-accent); }

.section-header.align-right {
  padding-left: 0;
  padding-right: var(--space-md);
  text-align: right; }

.section-header.align-right::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 0.15rem;
  background: var(--color-accent); }

.section-synths {
  margin-bottom: var(--space-lg); }

.section-title {
  margin-top: var(--space-3xl);
  text-transform: uppercase;
  font-weight: var(--weight-thin);
  text-align: center;
  letter-spacing: var(--tracking-mega);
  padding-bottom: calc(var(--text-base) * var(--leading-normal) * 0.5); }

.section-subtitle {
  text-align: center;
  font-style: italic;
  color: var(--color-text-tertiary);
  font-size: var(--text-sm);
  margin-bottom: 0;
  font-weight: var(--weight-normal); }

.section-header h3 {
  font-weight: var(--weight-thin);
  letter-spacing: var(--tracking-mega);
  margin-bottom: 0;
  padding-bottom: calc(var(--text-base) * var(--leading-normal) * 0.125); }

.section-header .explanation {
  color: var(--color-text); }

.section-grid {
  display: grid;
  grid-template-columns: fit-content(40%) 1fr;
  gap: var(--space-3xl); }

.section-grid-right {
  grid-template-columns: 1fr fit-content(40%); }

.bullets-panel-right {
  text-align: right; }

.bullets-panel-right .bullet {
  flex-direction: row-reverse;
  justify-content: flex-start; }

.bullets-panel-right .bullet svg {
  margin-left: 0;
  margin-right: 0; }

.bullet {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  cursor: pointer;
  padding: var(--space-sm); }

.bullet .icon {
  width: 1.5rem;
  height: 1.5rem; }

.bullet:hover {
  color: var(--color-accent-light); }

.bullet.active {
  color: var(--color-accent); }

.bullet.active:hover {
  color: var(--color-accent); }

.bullet svg {
  width: 1.25rem;
  min-width: 1.25rem;
  fill: currentColor;
  stroke-width: 0.5px; }

.bullet.active svg {
  fill: currentColor; }

.content-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
  height: 100%; }

.content-block {
  padding: var(--space-md); }

.content-block .content-text {
  max-width: 800px;
  margin: 0 auto; }

.content-block .content-pictogram {
  color: var(--color-accent);
  fill: currentColor;
  width: 100%;
  height: 100%;
  max-width: 10rem;
  max-height: 10rem;
  margin: var(--space-md) auto; }

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2xl);
  margin: var(--space-3xl) auto;
  padding: 0 var(--space-md); }

.metric-box {
  display: flex;
  flex-direction: column;
  padding: var(--space-lg);
  text-align: center; }

.metric-number {
  font-size: var(--text-3xl);
  font-weight: unset;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: var(--tracking-mega);
  padding-bottom: 0;
  margin-bottom: 0;
  color: var(--color-accent); }

.metric-context {
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  margin-top: var(--space-sm);
  color: var(--color-text); }

.metric-statement {
  margin-top: var(--space-md);
  color: var(--color-text-tertiary); }

.section-key-quote {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center; }

.quote-container {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-2xl);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl); }

.quote-content {
  text-align: center;
  line-height: var(--leading-relaxed);
  color: var(--color-text);
  font-size: var(--text-lg);
  font-weight: var(--weight-light); }

.quote-content p {
  margin: 0; }

.quote-footer {
  margin-top: var(--space-lg);
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  font-size: var(--text-md); }

.implementation-timeline {
  padding-top: var(--space-3xl);
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  margin-bottom: calc(var(--space-xl) * -1); }

.implementation-timeline .timeline-wrapper {
  padding-top: var(--space-md);
  max-width: 1200px;
  margin: 0 auto; }

.implementation-timeline .timeline-nodes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: var(--space-xl) 0; }

.implementation-timeline .node {
  text-align: center;
  cursor: pointer; }

.implementation-timeline .node .icon:hover {
  background: var(--color-status-warning-bg);
  color: var(--color-text-inverse); }

.implementation-timeline .node.active .icon {
  background: var(--color-accent);
  color: var(--color-text-inverse); }

.implementation-timeline .node.active .icon:hover {
  background: var(--color-accent);
  color: var(--color-text-inverse); }

.implementation-timeline .connector {
  flex-grow: 1;
  height: 2px;
  background: var(--color-accent);
  margin: 0 var(--space-md); }

.implementation-timeline .icon {
  width: 40px;
  height: 40px;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: var(--space-md) auto;
  transition: all var(--duration-slow) var(--ease-default); }

.implementation-timeline .week {
  font-weight: var(--weight-medium);
  margin-bottom: var(--space-sm); }

.implementation-timeline .phase {
  font-size: var(--text-sm);
  color: var(--color-text); }

.implementation-timeline .phase-details {
  margin-top: var(--space-2xl);
  padding: var(--space-lg);
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm); }

.implementation-timeline .phase-details h4 {
  text-align: center; }

.implementation-timeline .details-grid {
  display: grid;
  text-align: center;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-md);
  padding: var(--space-md); }

.implementation-timeline .detail-item {
  padding: var(--space-lg);
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm); }

.implementation-timeline .detail-title {
  font-weight: var(--weight-medium);
  margin-bottom: var(--space-sm);
  color: var(--color-accent); }

.implementation-timeline .detail-description {
  color: var(--color-text-tertiary);
  font-size: var(--text-sm); }

.section-benefits {
  margin-bottom: var(--space-lg); }

.benefits-explanation {
  text-align: center; }

.core-problem {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  justify-items: center;
  align-items: center;
  text-align: center; }

.core-problem .pictogram {
  width: 4rem;
  height: 4rem;
  margin-bottom: var(--space-lg); }

@media (max-width: 640px) {
  .feature-section {
    padding: var(--space-xs); }
  .metrics-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md); }
  .section-grid, .section-grid-right {
    gap: var(--space-md); }
  .implementation-timeline .phase-details {
    margin-top: var(--space-md); }
  .implementation-timeline .connector {
    display: none; }
  .implementation-timeline .detail-item {
    padding: var(--space-sm); }
  .implementation-timeline .phase-details {
    padding-left: var(--space-xs);
    padding-right: var(--space-xs); }
  .implementation-timeline .details-grid {
    padding-left: 0;
    padding-right: 0;
    margin: 0; } }

@media (max-width: 480px) {
  .section-hero {
    width: 100%;
    margin-left: auto;
    margin-right: auto; }
  .hero-cover {
    flex-direction: column;
    align-items: center; }
  .hero-cover .synthgrid-logo {
    margin-bottom: var(--space-2xl);
    max-height: calc(min(12rem, 50vw));
    max-width: calc(min(12rem, 50vw)); }
  .hero-cover .synthgrid-wordmark {
    font-size: var(--text-4xl); }
  .hero-cover .hero-text {
    font-size: var(--text-xl); } }

/* ==========================================================================
   Online Indicator CTA
   BEM: .online-cta, .online-cta__*, .online-cta--*
   ========================================================================== */
.online-cta {
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-content: center;
  justify-content: center;
  align-items: center;
  text-align: center; }

.online-cta__call {
  font-size: var(--text-lg);
  font-weight: var(--weight-medium); }

.online-cta__promise {
  text-align: center;
  display: flex;
  color: var(--color-text-secondary); }

/* --------------------------------------------------------------------------
   Indicator
   -------------------------------------------------------------------------- */
.online-cta__indicator {
  display: flex;
  justify-items: center;
  align-content: center;
  justify-content: center;
  align-items: center; }

.online-cta__ball {
  width: 0.7rem;
  height: 0.7rem;
  background-color: var(--color-success);
  border-radius: var(--radius-full);
  display: inline-block;
  animation: online-cta-pulse 2s infinite; }

.online-cta__status {
  color: var(--color-success); }

@keyframes online-cta-pulse {
  0% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--color-success) 70%, transparent); }
  70% {
    box-shadow: 0 0 0 10px transparent; }
  100% {
    box-shadow: 0 0 0 0 transparent; } }

/* ==========================================================================
   LEGACY ALIASES - Remove after updating HTML
   ========================================================================== */
.contact-container {
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-content: center;
  justify-content: center;
  align-items: center;
  text-align: center; }

.call-us {
  font-size: var(--text-lg);
  font-weight: var(--weight-medium); }

.connection-promise {
  text-align: center;
  display: flex;
  color: var(--color-text-secondary); }

.online-indicator {
  display: flex;
  justify-items: center;
  align-content: center;
  justify-content: center;
  align-items: center; }

.online-indicator-ball {
  width: 0.7rem;
  height: 0.7rem;
  background-color: var(--color-success);
  border-radius: var(--radius-full);
  display: inline-block;
  animation: online-cta-pulse 2s infinite; }

.status-text {
  color: var(--color-success); }

/* ==========================================================================
   Ecosystem / Partners & Advisors
   BEM: .ecosystem, .ecosystem__*, .ecosystem--*
   ========================================================================== */
.ecosystem {
  margin-top: var(--space-5xl);
  margin-bottom: var(--space-5xl);
  text-align: center; }

.ecosystem__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
  max-width: var(--max-width-full);
  padding: 0 var(--space-md);
  margin: 0 auto; }

.ecosystem__logo {
  flex: 1 1 14rem;
  max-width: 14rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center; }

.ecosystem__logo img {
  object-fit: contain;
  display: inline-block;
  height: 3rem;
  max-width: 12rem; }

.ecosystem__logo--tech img {
  height: 3rem;
  max-width: 12rem; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .ecosystem__logo {
    margin: 0;
    max-width: 30vw;
    max-height: 30vw;
    display: flex;
    align-items: center;
    justify-content: center; }
  .ecosystem__logo img {
    width: 100%;
    height: auto; } }

/* ==========================================================================
   LEGACY ALIASES - Remove after updating HTML
   ========================================================================== */
.ecosystem-section {
  margin-top: var(--space-5xl);
  margin-bottom: var(--space-5xl);
  text-align: center; }

.ecosystem-section .ecosystem-logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
  max-width: var(--max-width-full);
  padding: 0 var(--space-md);
  margin: 0 auto; }

.ecosystem-section .ecosystem-logo {
  flex: 1 1 14rem;
  max-width: 14rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center; }

.ecosystem-section img {
  object-fit: contain;
  display: inline-block;
  height: 3rem;
  max-width: 12rem; }

.ecosystem-section .tech img {
  height: 3rem;
  max-width: 12rem; }

@media (max-width: 480px) {
  .ecosystem-section .ecosystem-logo {
    margin: 0;
    max-width: 30vw;
    max-height: 30vw;
    display: flex;
    align-items: center;
    justify-content: center; }
  .ecosystem-section .ecosystem-logo img {
    width: 100%;
    height: auto; } }

/* ==========================================================================
   Process Flow
   BEM: .process, .process__*, .process--*
   ========================================================================== */
.process {
  margin-top: var(--space-5xl);
  margin-bottom: var(--space-5xl); }

.process__container {
  margin-top: var(--space-4xl);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  position: relative; }

/* --------------------------------------------------------------------------
   Process Step
   -------------------------------------------------------------------------- */
.process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-md);
  transition: transform var(--duration-slow) var(--ease-default);
  z-index: 2; }

.process__step.highlight .process__icon-container {
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-xl);
  animation: process-border-fade-in 0.5s var(--ease-default) forwards; }

.process__step h3 {
  font-weight: var(--weight-normal);
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm); }

.process__step p {
  max-width: 12rem;
  margin: 0;
  font-size: var(--text-sm); }

/* --------------------------------------------------------------------------
   Icon Container
   -------------------------------------------------------------------------- */
.process__icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.5rem;
  width: 4.5rem;
  transition: box-shadow var(--duration-slow) var(--ease-default); }

.process__pictogram {
  height: 3rem;
  width: 3rem;
  display: flex;
  align-items: center;
  justify-content: center; }

.process__pictogram svg {
  max-height: 100%;
  max-width: 100%;
  height: auto !important;
  width: auto !important; }

.process__logo-container {
  height: 5rem;
  width: 5rem;
  display: flex;
  align-items: center;
  justify-content: center; }

.process__logo-container img {
  max-height: 100%;
  max-width: 100%;
  height: auto !important;
  width: auto !important;
  object-fit: contain; }

/* --------------------------------------------------------------------------
   Connection
   -------------------------------------------------------------------------- */
.process__connection {
  position: relative;
  width: 8rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center; }

.process__connection-line {
  position: absolute;
  width: 100%;
  z-index: 1; }

.process__pulse-container {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2; }

/* --------------------------------------------------------------------------
   Data Particles
   -------------------------------------------------------------------------- */
.process__particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background-color: var(--color-accent-light);
  transform: translateY(-50%);
  top: 50%;
  opacity: 0; }

.process__particle--text {
  width: var(--space-md);
  height: var(--space-md);
  border-radius: var(--radius-full); }

.process__particle--number {
  width: 4px;
  height: 4px; }

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */
@keyframes process-step-glow {
  0% {
    box-shadow: 0 0 0 color-mix(in srgb, var(--color-accent) 0%, transparent); }
  40% {
    box-shadow: 0 0 20px color-mix(in srgb, var(--color-accent) 40%, transparent); }
  100% {
    box-shadow: 0 0 0 color-mix(in srgb, var(--color-accent) 0%, transparent); } }

@keyframes process-particle-flow {
  0% {
    left: 0%;
    opacity: 0; }
  10% {
    opacity: 0.8; }
  90% {
    opacity: 0.8; }
  100% {
    left: 100%;
    opacity: 0; } }

@keyframes process-border-fade-in {
  from {
    border-color: transparent; }
  to {
    border-color: var(--color-accent); } }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .process__container {
    flex-direction: column; }
  .process__connection {
    width: 4rem;
    height: 6rem;
    transform: rotate(90deg);
    margin: var(--space-md) 0; } }

/* ==========================================================================
   LEGACY ALIASES - Remove after updating HTML
   ========================================================================== */
.process-flow-section {
  margin-top: var(--space-5xl);
  margin-bottom: var(--space-5xl); }

.process-flow-section .process-flow-container {
  margin-top: var(--space-4xl);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  position: relative; }

.process-flow-section .process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-md);
  transition: transform var(--duration-slow) var(--ease-default);
  z-index: 2; }

.process-flow-section .process-step.highlight .step-icon-container {
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-xl);
  animation: process-border-fade-in 0.5s var(--ease-default) forwards; }

.process-flow-section .process-step h3 {
  font-weight: var(--weight-normal);
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm); }

.process-flow-section .process-step p {
  max-width: 12rem;
  margin: 0;
  font-size: var(--text-sm); }

.process-flow-section .step-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.5rem;
  width: 4.5rem;
  transition: box-shadow var(--duration-slow) var(--ease-default); }

.process-flow-section .pictogram {
  height: 3rem;
  width: 3rem;
  display: flex;
  align-items: center;
  justify-content: center; }

.process-flow-section .pictogram svg {
  max-height: 100%;
  max-width: 100%;
  height: auto !important;
  width: auto !important; }

.process-flow-section .logo-container {
  height: 5rem;
  width: 5rem;
  display: flex;
  align-items: center;
  justify-content: center; }

.process-flow-section .logo-container img {
  max-height: 100%;
  max-width: 100%;
  height: auto !important;
  width: auto !important;
  object-fit: contain; }

.process-flow-section .process-connection {
  position: relative;
  width: 8rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center; }

.process-flow-section .process-connection .connection-line {
  position: absolute;
  width: 100%;
  z-index: 1; }

.process-flow-section .process-connection .data-pulse-container {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2; }

.process-flow-section .data-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background-color: var(--color-accent-light);
  transform: translateY(-50%);
  top: 50%;
  opacity: 0; }

.process-flow-section .data-particle.text-particle {
  width: var(--space-md);
  height: var(--space-md);
  border-radius: var(--radius-full); }

.process-flow-section .data-particle.number-particle {
  width: 4px;
  height: 4px; }

@media (max-width: 768px) {
  .process-flow-section .process-flow-container {
    flex-direction: column; }
  .process-flow-section .process-connection {
    width: 4rem;
    height: 6rem;
    transform: rotate(90deg);
    margin: var(--space-md) 0; } }

/* ==========================================================================
   Stop Fighting Systems Section
   BEM: .fighting, .fighting__*, .fighting--*
   ========================================================================== */
.fighting {
  position: relative;
  overflow: hidden; }

.fighting__container {
  max-width: var(--max-width-full);
  margin: 0 auto;
  padding: 0 var(--space-xl); }

/* --------------------------------------------------------------------------
   Section Header
   -------------------------------------------------------------------------- */
.fighting__header {
  text-align: center;
  margin-bottom: var(--space-4xl); }

.fighting__header h2 {
  font-size: var(--text-4xl);
  font-weight: var(--weight-black);
  text-transform: uppercase;
  letter-spacing: var(--tracking-tighter);
  margin-bottom: var(--space-sm); }

.fighting__header h3 {
  font-size: var(--text-xl);
  font-weight: var(--weight-light);
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: var(--tracking-mega); }

/* --------------------------------------------------------------------------
   Comparison Container
   -------------------------------------------------------------------------- */
.fighting__comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-4xl); }

.fighting__before,
.fighting__after {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg); }

.fighting__before h4,
.fighting__after h4 {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-lg);
  letter-spacing: var(--tracking-tight); }

.fighting__before h4 {
  color: var(--color-text-secondary); }

.fighting__after h4 {
  color: var(--color-text); }

.fighting__before ul,
.fighting__after ul {
  margin-bottom: var(--space-lg);
  padding-left: 0;
  list-style: none; }

.fighting__before li,
.fighting__after li {
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
  position: relative;
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary); }

/* --------------------------------------------------------------------------
   List Icons
   -------------------------------------------------------------------------- */
.fighting__list-icon {
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 1.25em;
  height: 1.25em; }

.fighting__list-icon svg {
  width: 100%;
  height: 100%; }

.fighting__before .fighting__list-icon svg {
  fill: var(--color-error); }

.fighting__after .fighting__list-icon svg {
  fill: var(--color-success); }

/* --------------------------------------------------------------------------
   Canvas
   -------------------------------------------------------------------------- */
.fighting__canvas-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden; }

.fighting__canvas {
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1; }

/* --------------------------------------------------------------------------
   Static Elements
   -------------------------------------------------------------------------- */
.fighting__static-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5; }

/* --------------------------------------------------------------------------
   System Items
   -------------------------------------------------------------------------- */
.fighting__system-item {
  position: absolute;
  width: 6rem;
  height: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
  transition: all var(--duration-slow) var(--ease-default); }

.fighting__system-item .fighting__icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 4px; }

.fighting__system-item .fighting__icon svg {
  width: 100%;
  height: 100%;
  fill: var(--color-text-tertiary); }

.fighting__system-item .fighting__name {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text);
  text-align: center;
  margin: 0;
  line-height: var(--leading-tight); }

.fighting__system-item .fighting__abbr {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: 2px; }

/* --------------------------------------------------------------------------
   User Item
   -------------------------------------------------------------------------- */
.fighting__user-item {
  position: absolute;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: none;
  background-color: var(--color-text);
  border-radius: var(--radius-full);
  padding: 8px; }

.fighting__user-item .fighting__icon {
  width: 24px;
  height: 24px; }

.fighting__user-item .fighting__icon svg {
  width: 100%;
  height: 100%;
  fill: var(--color-text-inverse); }

/* --------------------------------------------------------------------------
   System States
   -------------------------------------------------------------------------- */
.fighting__system-item.loading {
  border-color: var(--color-accent);
  background: var(--color-bg-alt);
  animation: fighting-pulse 1.5s var(--ease-default) infinite; }

.fighting__system-item.error {
  border-color: var(--color-error);
  background: var(--color-error-bg);
  animation: fighting-frustration 0.5s var(--ease-default) infinite; }

.fighting__system-item.active {
  border-color: var(--color-success);
  background: var(--color-success-bg); }

/* --------------------------------------------------------------------------
   System Status Indicator
   -------------------------------------------------------------------------- */
.fighting__system-status {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 16px;
  height: 16px;
  border-radius: var(--radius-full);
  display: none; }

.fighting__system-item.loading .fighting__system-status {
  display: block;
  background: var(--color-accent);
  animation: fighting-loading 1s linear infinite; }

.fighting__system-item.error .fighting__system-status {
  display: block;
  background: var(--color-error); }

.fighting__system-item.active .fighting__system-status {
  display: block;
  background: var(--color-success); }

/* --------------------------------------------------------------------------
   SynthGrid Central Element
   -------------------------------------------------------------------------- */
.fighting__synthgrid {
  margin-top: calc(-1 * var(--space-md));
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 15;
  display: flex;
  flex-direction: column;
  align-items: center; }

.fighting__synthgrid img {
  margin-top: var(--space-lg);
  width: 8rem;
  height: 8rem; }

.fighting__synthgrid-wordmark {
  font-size: var(--text-2xl);
  font-weight: var(--weight-light);
  color: var(--color-accent);
  margin: 0;
  text-align: center; }

/* --------------------------------------------------------------------------
   Speech Bubble
   -------------------------------------------------------------------------- */
.fighting__bubble {
  position: absolute;
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 8px 12px;
  max-width: 200px;
  font-size: var(--text-sm);
  display: none;
  z-index: 15;
  box-shadow: 0 2px 8px var(--color-shadow); }

.fighting__bubble.show {
  display: block; }

.fighting__bubble.loading {
  border-color: var(--color-warning);
  background: var(--color-warning-bg); }

.fighting__bubble.frustrated {
  border-color: var(--color-error);
  background: var(--color-error-bg); }

.fighting__bubble.command {
  border-color: var(--color-accent);
  background: var(--color-bg-alt); }

.fighting__bubble.success {
  border-color: var(--color-success);
  background: var(--color-success-bg); }

.fighting__bubble-content {
  color: var(--color-text);
  line-height: 1.4; }

.fighting__bubble-pointer {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--color-bg); }

.fighting__bubble-pointer::before {
  content: '';
  position: absolute;
  bottom: 2px;
  left: -8px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--color-border); }

/* --------------------------------------------------------------------------
   Connection Lines
   -------------------------------------------------------------------------- */
.fighting__connection-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; }

/* --------------------------------------------------------------------------
   Testimonial
   -------------------------------------------------------------------------- */
.fighting__testimonial {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-xl);
  background: var(--color-bg);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 3px var(--color-shadow);
  border: 2px solid var(--color-border); }

.fighting__testimonial blockquote {
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  line-height: 1.8; }

.fighting__testimonial cite {
  font-size: var(--text-md);
  color: var(--color-text-tertiary);
  font-style: normal;
  font-weight: var(--weight-medium); }

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */
@keyframes fighting-pulse {
  0% {
    transform: scale(1);
    opacity: 1; }
  50% {
    transform: scale(1.05);
    opacity: 0.8; }
  100% {
    transform: scale(1);
    opacity: 1; } }

@keyframes fighting-frustration {
  0%, 100% {
    transform: translateX(0); }
  25% {
    transform: translateX(-2px); }
  75% {
    transform: translateX(2px); } }

@keyframes fighting-loading {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

/* --------------------------------------------------------------------------
   Before Side Positioning (nth-child)
   -------------------------------------------------------------------------- */
.fighting__before .fighting__system-item:nth-child(1) {
  top: 50%;
  right: 15%;
  transform: translate(50%, -50%); }

.fighting__before .fighting__system-item:nth-child(2) {
  bottom: 12.5%;
  right: 35%;
  transform: translate(50%, 50%); }

.fighting__before .fighting__system-item:nth-child(3) {
  bottom: 12.5%;
  left: 35%;
  transform: translate(-50%, 50%); }

.fighting__before .fighting__system-item:nth-child(4) {
  top: 50%;
  left: 15%;
  transform: translate(-50%, -50%); }

.fighting__before .fighting__system-item:nth-child(5) {
  top: 12.5%;
  left: 35%;
  transform: translate(-50%, -50%); }

.fighting__before .fighting__system-item:nth-child(6) {
  top: 12.5%;
  right: 35%;
  transform: translate(50%, -50%); }

/* After Side Positioning */
.fighting__after .fighting__system-item:nth-child(2) {
  top: 2%;
  right: 28%; }

.fighting__after .fighting__system-item:nth-child(3) {
  top: 7%;
  right: 12%; }

.fighting__after .fighting__system-item:nth-child(4) {
  top: 29%;
  right: 2%; }

.fighting__after .fighting__system-item:nth-child(5) {
  bottom: 29%;
  right: 2%; }

.fighting__after .fighting__system-item:nth-child(6) {
  bottom: 7%;
  right: 12%; }

.fighting__after .fighting__system-item:nth-child(7) {
  bottom: 2%;
  right: 28%; }

/* After side user positioning */
.fighting__after .fighting__user-item {
  top: 50%;
  left: 15%;
  transform: translate(-50%, -50%); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .fighting__comparison {
    gap: var(--space-lg); }
  .fighting__canvas-wrapper {
    height: 350px; }
  .fighting__system-item {
    width: 70px;
    height: 70px; }
  .fighting__system-item .fighting__icon {
    width: 28px;
    height: 28px; } }

@media (max-width: 768px) {
  .fighting__container {
    padding: 0; }
  .fighting__comparison {
    grid-template-columns: 1fr;
    gap: var(--space-lg); }
  .fighting__header h2 {
    font-size: var(--text-2xl); }
  .fighting__header h3 {
    font-size: var(--text-xl); }
  .fighting__before,
  .fighting__after {
    padding: var(--space-lg); }
  .fighting__canvas-wrapper {
    height: 300px; }
  .fighting__system-item {
    width: 60px;
    height: 60px; }
  .fighting__system-item .fighting__icon {
    width: 24px;
    height: 24px; }
  .fighting__user-item {
    width: 35px;
    height: 35px; }
  .fighting__testimonial {
    padding: var(--space-lg); }
  .fighting__testimonial blockquote {
    font-size: var(--text-lg); } }

/* ==========================================================================
   LEGACY ALIASES - Remove after updating HTML
   ========================================================================== */
.stop-fighting-systems-section {
  position: relative;
  overflow: hidden; }

.stop-fighting-systems-section .container {
  max-width: var(--max-width-full);
  margin: 0 auto;
  padding: 0 var(--space-xl); }

.stop-fighting-systems-section .section-header {
  text-align: center;
  margin-bottom: var(--space-4xl); }

.stop-fighting-systems-section .section-header h2 {
  font-size: var(--text-4xl);
  font-weight: var(--weight-black);
  text-transform: uppercase;
  letter-spacing: var(--tracking-tighter);
  margin-bottom: var(--space-sm); }

.stop-fighting-systems-section .section-header h3 {
  font-size: var(--text-xl);
  font-weight: var(--weight-light);
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: var(--tracking-mega); }

.stop-fighting-systems-section .comparison-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-4xl); }

.stop-fighting-systems-section .before-container, .stop-fighting-systems-section .after-container {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg); }

.stop-fighting-systems-section .before-container h4, .stop-fighting-systems-section .after-container h4 {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-lg);
  letter-spacing: var(--tracking-tight); }

.stop-fighting-systems-section .before-container h4 {
  color: var(--color-text-secondary); }

.stop-fighting-systems-section .after-container h4 {
  color: var(--color-text); }

.stop-fighting-systems-section .before-container ul, .stop-fighting-systems-section .after-container ul {
  margin-bottom: var(--space-lg);
  padding-left: 0;
  list-style: none; }

.stop-fighting-systems-section .before-container li, .stop-fighting-systems-section .after-container li {
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
  position: relative;
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary); }

.stop-fighting-systems-section .list-icon {
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 1.25em;
  height: 1.25em; }

.stop-fighting-systems-section .list-icon svg {
  width: 100%;
  height: 100%; }

.stop-fighting-systems-section .before-container .list-icon svg {
  fill: var(--color-error); }

.stop-fighting-systems-section .after-container .list-icon svg {
  fill: var(--color-success); }

.stop-fighting-systems-section .canvas-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden; }

.stop-fighting-systems-section #before-canvas, .stop-fighting-systems-section #after-canvas {
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1; }

.stop-fighting-systems-section .before-static-elements, .stop-fighting-systems-section .after-static-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5; }

.stop-fighting-systems-section .system-item, .stop-fighting-systems-section .after-system-item {
  position: absolute;
  width: 6rem;
  height: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
  transition: all var(--duration-slow) var(--ease-default); }

.stop-fighting-systems-section .system-item .icon, .stop-fighting-systems-section .after-system-item .icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 4px; }

.stop-fighting-systems-section .system-item .icon svg, .stop-fighting-systems-section .after-system-item .icon svg {
  width: 100%;
  height: 100%;
  fill: var(--color-text-tertiary); }

.stop-fighting-systems-section .system-item .name, .stop-fighting-systems-section .after-system-item .name {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text);
  text-align: center;
  margin: 0;
  line-height: var(--leading-tight); }

.stop-fighting-systems-section .after-system-item .abbr {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: 2px; }

.stop-fighting-systems-section .user-item {
  position: absolute;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: none;
  background-color: var(--color-text);
  border-radius: var(--radius-full);
  padding: 8px; }

.stop-fighting-systems-section .user-item .icon {
  width: 24px;
  height: 24px; }

.stop-fighting-systems-section .user-item .icon svg {
  width: 100%;
  height: 100%;
  fill: var(--color-text-inverse); }

.stop-fighting-systems-section .system-item.loading, .stop-fighting-systems-section .after-system-item.loading {
  border-color: var(--color-accent);
  background: var(--color-bg-alt);
  animation: fighting-pulse 1.5s var(--ease-default) infinite; }

.stop-fighting-systems-section .system-item.error, .stop-fighting-systems-section .after-system-item.error {
  border-color: var(--color-error);
  background: var(--color-error-bg);
  animation: fighting-frustration 0.5s var(--ease-default) infinite; }

.stop-fighting-systems-section .system-item.active, .stop-fighting-systems-section .after-system-item.active {
  border-color: var(--color-success);
  background: var(--color-success-bg); }

.stop-fighting-systems-section .system-status {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 16px;
  height: 16px;
  border-radius: var(--radius-full);
  display: none; }

.stop-fighting-systems-section .system-item.loading .system-status, .stop-fighting-systems-section .after-system-item.loading .system-status {
  display: block;
  background: var(--color-accent);
  animation: fighting-loading 1s linear infinite; }

.stop-fighting-systems-section .system-item.error .system-status, .stop-fighting-systems-section .after-system-item.error .system-status {
  display: block;
  background: var(--color-error); }

.stop-fighting-systems-section .system-item.active .system-status, .stop-fighting-systems-section .after-system-item.active .system-status {
  display: block;
  background: var(--color-success); }

.stop-fighting-systems-section .synthgrid-section {
  margin-top: calc(-1 * var(--space-md));
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 15;
  display: flex;
  flex-direction: column;
  align-items: center; }

.stop-fighting-systems-section .synthgrid-section img {
  margin-top: var(--space-lg);
  width: 8rem;
  height: 8rem; }

.stop-fighting-systems-section .synthgrid-wordmark {
  font-size: var(--text-2xl);
  font-weight: var(--weight-light);
  color: var(--color-accent);
  margin: 0;
  text-align: center; }

.stop-fighting-systems-section .speech-bubble {
  position: absolute;
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 8px 12px;
  max-width: 200px;
  font-size: var(--text-sm);
  display: none;
  z-index: 15;
  box-shadow: 0 2px 8px var(--color-shadow); }

.stop-fighting-systems-section .speech-bubble.show {
  display: block; }

.stop-fighting-systems-section .speech-bubble.loading {
  border-color: var(--color-warning);
  background: var(--color-warning-bg); }

.stop-fighting-systems-section .speech-bubble.frustrated {
  border-color: var(--color-error);
  background: var(--color-error-bg); }

.stop-fighting-systems-section .speech-bubble.command {
  border-color: var(--color-accent);
  background: var(--color-bg-alt); }

.stop-fighting-systems-section .speech-bubble.success {
  border-color: var(--color-success);
  background: var(--color-success-bg); }

.stop-fighting-systems-section .bubble-content {
  color: var(--color-text);
  line-height: 1.4; }

.stop-fighting-systems-section .bubble-pointer {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--color-bg); }

.stop-fighting-systems-section .connection-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; }

.stop-fighting-systems-section .testimonial {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-xl);
  background: var(--color-bg);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 3px var(--color-shadow);
  border: 2px solid var(--color-border); }

.stop-fighting-systems-section .testimonial blockquote {
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  line-height: 1.8; }

.stop-fighting-systems-section .testimonial cite {
  font-size: var(--text-md);
  color: var(--color-text-tertiary);
  font-style: normal;
  font-weight: var(--weight-medium); }

@media (max-width: 1024px) {
  .stop-fighting-systems-section .comparison-container {
    gap: var(--space-lg); }
  .stop-fighting-systems-section .canvas-wrapper {
    height: 350px; }
  .stop-fighting-systems-section .system-item, .stop-fighting-systems-section .after-system-item {
    width: 70px;
    height: 70px; }
  .stop-fighting-systems-section .system-item .icon, .stop-fighting-systems-section .after-system-item .icon {
    width: 28px;
    height: 28px; } }

@media (max-width: 768px) {
  .stop-fighting-systems-section .container {
    padding: 0; }
  .stop-fighting-systems-section .comparison-container {
    grid-template-columns: 1fr;
    gap: var(--space-lg); }
  .stop-fighting-systems-section .section-header h2 {
    font-size: var(--text-2xl); }
  .stop-fighting-systems-section .section-header h3 {
    font-size: var(--text-xl); }
  .stop-fighting-systems-section .before-container, .stop-fighting-systems-section .after-container {
    padding: var(--space-lg); }
  .stop-fighting-systems-section .canvas-wrapper {
    height: 300px; }
  .stop-fighting-systems-section .system-item, .stop-fighting-systems-section .after-system-item {
    width: 60px;
    height: 60px; }
  .stop-fighting-systems-section .system-item .icon, .stop-fighting-systems-section .after-system-item .icon {
    width: 24px;
    height: 24px; }
  .stop-fighting-systems-section .user-item {
    width: 35px;
    height: 35px; }
  .stop-fighting-systems-section .testimonial {
    padding: var(--space-lg); }
  .stop-fighting-systems-section .testimonial blockquote {
    font-size: var(--text-lg); } }

/* Legacy: Before Side System Positioning */
.stop-fighting-systems-section .before-static-elements .system-item:nth-child(1) {
  top: 50%;
  right: 15%;
  transform: translate(50%, -50%); }

.stop-fighting-systems-section .before-static-elements .system-item:nth-child(2) {
  bottom: 12.5%;
  right: 35%;
  transform: translate(50%, 50%); }

.stop-fighting-systems-section .before-static-elements .system-item:nth-child(3) {
  bottom: 12.5%;
  left: 35%;
  transform: translate(-50%, 50%); }

.stop-fighting-systems-section .before-static-elements .system-item:nth-child(4) {
  top: 50%;
  left: 15%;
  transform: translate(-50%, -50%); }

.stop-fighting-systems-section .before-static-elements .system-item:nth-child(5) {
  top: 12.5%;
  left: 35%;
  transform: translate(-50%, -50%); }

.stop-fighting-systems-section .before-static-elements .system-item:nth-child(6) {
  top: 12.5%;
  right: 35%;
  transform: translate(50%, -50%); }

/* Legacy: After Side System Positioning */
.stop-fighting-systems-section .after-static-elements .after-system-item:nth-child(2) {
  top: 2%;
  right: 28%; }

.stop-fighting-systems-section .after-static-elements .after-system-item:nth-child(3) {
  top: 7%;
  right: 12%; }

.stop-fighting-systems-section .after-static-elements .after-system-item:nth-child(4) {
  top: 29%;
  right: 2%; }

.stop-fighting-systems-section .after-static-elements .after-system-item:nth-child(5) {
  bottom: 29%;
  right: 2%; }

.stop-fighting-systems-section .after-static-elements .after-system-item:nth-child(6) {
  bottom: 7%;
  right: 12%; }

.stop-fighting-systems-section .after-static-elements .after-system-item:nth-child(7) {
  bottom: 2%;
  right: 28%; }

/* Legacy: After side user positioning */
.stop-fighting-systems-section .after-container .user-item {
  top: 50%;
  left: 15%;
  transform: translate(-50%, -50%); }

/* ==========================================================================
   SynthGrid Logo
   BEM: .sg-logo, .sg-logo__*, .sg-logo--*
   ========================================================================== */
:root {
  /* SynthGrid Animation */
  --sg-animation-duration: 4s;
  /* SynthGrid Colors - blue gradient spectrum */
  --sg-color-lightest: #A1E8FF;
  --sg-color-light: #81CDFA;
  --sg-color-medium: #61B3F5;
  --sg-color-dark: #2868B4;
  --sg-color-darker: #1685C7;
  --sg-color-darkest: #04162F;
  /* SynthGrid UI */
  --sg-border-color: var(--color-text-inverse);
  --sg-bg-square-color: rgba(255, 255, 255, 0.1);
  --sg-drop-shadow-color: rgba(40, 120, 255, 0.5); }

/* --------------------------------------------------------------------------
   Logo Container
   -------------------------------------------------------------------------- */
.sg-logo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 15%;
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  min-width: 4rem;
  overflow: visible; }

/* White background square */
.sg-logo::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  overflow: visible;
  background-color: var(--color-text-inverse);
  box-sizing: border-box;
  z-index: -1;
  filter: drop-shadow(0 0 4rem var(--sg-drop-shadow-color)); }

/* --------------------------------------------------------------------------
   Dots
   -------------------------------------------------------------------------- */
.sg-logo__dot {
  min-width: 1rem;
  min-height: 1rem;
  border-radius: var(--radius-full);
  background-color: var(--sg-color-medium);
  box-sizing: border-box;
  border: 0.25rem solid var(--sg-border-color);
  animation: sg-pulse var(--sg-animation-duration) infinite alternate; }

/* Color assignment for initial state */
.sg-logo__dot:nth-child(1) {
  background-color: var(--sg-color-lightest); }

.sg-logo__dot:nth-child(2) {
  background-color: var(--sg-color-medium); }

.sg-logo__dot:nth-child(3) {
  background-color: var(--sg-color-dark); }

.sg-logo__dot:nth-child(4) {
  background-color: var(--sg-color-medium); }

.sg-logo__dot:nth-child(5) {
  background-color: var(--sg-color-darker); }

.sg-logo__dot:nth-child(6) {
  background-color: var(--sg-color-medium); }

.sg-logo__dot:nth-child(7) {
  background-color: var(--sg-color-dark); }

.sg-logo__dot:nth-child(8) {
  background-color: var(--sg-color-medium); }

.sg-logo__dot:nth-child(9) {
  background-color: var(--sg-color-lightest); }

/* Animation delays */
.sg-logo__dot:nth-child(1) {
  animation-delay: 0s; }

.sg-logo__dot:nth-child(2) {
  animation-delay: -0.4s; }

.sg-logo__dot:nth-child(3) {
  animation-delay: -0.8s; }

.sg-logo__dot:nth-child(4) {
  animation-delay: -0.4s; }

.sg-logo__dot:nth-child(5) {
  animation-delay: -0.8s; }

.sg-logo__dot:nth-child(6) {
  animation-delay: -1.2s; }

.sg-logo__dot:nth-child(7) {
  animation-delay: -0.8s; }

.sg-logo__dot:nth-child(8) {
  animation-delay: -1.2s; }

.sg-logo__dot:nth-child(9) {
  animation-delay: -1.6s; }

/* --------------------------------------------------------------------------
   Animation
   -------------------------------------------------------------------------- */
@keyframes sg-pulse {
  0% {
    background-color: var(--sg-color-lightest); }
  25% {
    background-color: var(--sg-color-light); }
  50% {
    background-color: var(--sg-color-medium); }
  75% {
    background-color: var(--sg-color-dark); }
  100% {
    background-color: var(--sg-color-darkest); } }

/* ==========================================================================
   LEGACY ALIASES - Remove after updating HTML
   ========================================================================== */
:root {
  --synthgrid-animation-duration: var(--sg-animation-duration);
  --synthgrid-color-lightest: var(--sg-color-lightest);
  --synthgrid-color-light: var(--sg-color-light);
  --synthgrid-color-medium: var(--sg-color-medium);
  --synthgrid-color-dark: var(--sg-color-dark);
  --synthgrid-color-darker: var(--sg-color-darker);
  --synthgrid-color-darkest: var(--sg-color-darkest);
  --synthgrid-border-color: var(--sg-border-color);
  --synthgrid-bg-square-color: var(--sg-bg-square-color);
  --synthgrid-drop-shadow-color: var(--sg-drop-shadow-color); }

.synthgrid-logo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 15%;
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  min-width: 4rem;
  overflow: visible; }

.synthgrid-logo::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  overflow: visible;
  background-color: var(--color-text-inverse);
  box-sizing: border-box;
  z-index: -1;
  filter: drop-shadow(0 0 4rem var(--sg-drop-shadow-color)); }

.synthgrid-logo > div {
  min-width: 1rem;
  min-height: 1rem;
  border-radius: var(--radius-full);
  background-color: var(--sg-color-medium);
  box-sizing: border-box;
  border: 0.25rem solid var(--sg-border-color);
  animation: sg-pulse var(--sg-animation-duration) infinite alternate; }

.synthgrid-logo > div:nth-child(1) {
  background-color: var(--sg-color-lightest);
  animation-delay: 0s; }

.synthgrid-logo > div:nth-child(2) {
  background-color: var(--sg-color-medium);
  animation-delay: -0.4s; }

.synthgrid-logo > div:nth-child(3) {
  background-color: var(--sg-color-dark);
  animation-delay: -0.8s; }

.synthgrid-logo > div:nth-child(4) {
  background-color: var(--sg-color-medium);
  animation-delay: -0.4s; }

.synthgrid-logo > div:nth-child(5) {
  background-color: var(--sg-color-darker);
  animation-delay: -0.8s; }

.synthgrid-logo > div:nth-child(6) {
  background-color: var(--sg-color-medium);
  animation-delay: -1.2s; }

.synthgrid-logo > div:nth-child(7) {
  background-color: var(--sg-color-dark);
  animation-delay: -0.8s; }

.synthgrid-logo > div:nth-child(8) {
  background-color: var(--sg-color-medium);
  animation-delay: -1.2s; }

.synthgrid-logo > div:nth-child(9) {
  background-color: var(--sg-color-lightest);
  animation-delay: -1.6s; }

/* ==========================================================================
   Synths Intro
   BEM: .synths, .synths__*, .synths--*
   ========================================================================== */
.synths {
  margin-top: var(--space-4xl); }

.synths__grid {
  display: flex;
  justify-content: center;
  gap: var(--space-lg); }

/* --------------------------------------------------------------------------
   Synth Card
   -------------------------------------------------------------------------- */
.synths__card {
  max-width: 30vw;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  transition: all var(--duration-slow) var(--ease-default); }

.synths__card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent); }

.synths__card * {
  text-align: center;
  width: 100%;
  margin-right: auto;
  margin-left: auto; }

.synths__card p {
  margin: 0;
  padding: 0; }

.synths__name {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-text); }

.synths__role {
  font-style: italic;
  margin-bottom: var(--space-lg); }

/* --------------------------------------------------------------------------
   Meet Synth Button
   -------------------------------------------------------------------------- */
.synths__btn {
  background-color: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  width: auto;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  transition: all var(--duration-normal) var(--ease-default); }

.synths__btn:hover {
  background-color: var(--color-text);
  color: var(--color-bg);
  border-color: var(--color-text); }

/* --------------------------------------------------------------------------
   Conversation
   -------------------------------------------------------------------------- */
.synths__conversation {
  margin-top: var(--space-md);
  padding-top: var(--space-md); }

.synths__conversation-container {
  margin-bottom: var(--space-lg); }

.synths__message {
  min-height: 3rem;
  margin-bottom: var(--space-md);
  padding: var(--space-md);
  background-color: var(--color-bg-alt);
  border-radius: var(--radius-md);
  max-width: 95%; }

.synths__continue-btn {
  background-color: var(--color-accent);
  color: var(--color-text-inverse);
  border: none;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: var(--text-base);
  font-weight: var(--weight-normal);
  margin-top: var(--space-sm); }

.synths__continue-btn:hover {
  background-color: var(--color-accent); }

/* --------------------------------------------------------------------------
   Capabilities
   -------------------------------------------------------------------------- */
.synths__capabilities {
  margin-top: var(--space-lg); }

.synths__capabilities h4,
.synths__principles h4,
.synths__tips h4 {
  margin: var(--space-lg) 0 var(--space-md) 0;
  font-size: var(--text-base);
  color: var(--color-text-secondary); }

.synths__capabilities-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--space-md); }

.synths__capability {
  margin-bottom: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border); }

.synths__capability h5 {
  margin: 0 0 var(--space-sm) 0;
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--color-text); }

.synths__capability p {
  margin: 0 0 var(--space-sm) 0;
  font-size: var(--text-sm); }

.synths__capability-examples {
  margin: 0;
  padding-left: var(--space-lg);
  font-size: var(--text-sm); }

.synths__capability-examples li {
  margin-bottom: var(--space-xs); }

.synths__principles ul,
.synths__tips ul {
  margin: 0;
  padding-left: var(--space-lg); }

.synths__principles li,
.synths__tips li {
  margin-bottom: var(--space-sm);
  font-size: var(--text-sm); }

/* --------------------------------------------------------------------------
   Typing Indicator
   -------------------------------------------------------------------------- */
.synths__typing-wrapper {
  display: inline-block;
  padding: var(--space-sm) var(--space-md);
  background-color: var(--color-bg-alt);
  border-radius: var(--radius-lg); }

.synths__typing-indicator {
  display: inline-block;
  width: var(--space-md);
  height: var(--space-md);
  border-radius: var(--radius-full);
  background-color: var(--color-accent);
  background-size: cover; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .synths__grid {
    flex-direction: column;
    gap: var(--space-xl); }
  .synths__card {
    max-width: 90vw; }
  .synths__capabilities-list {
    grid-template-columns: 1fr; }
  .synths__message {
    max-width: 95%; }
  .synths__btn {
    display: none; } }

/* ==========================================================================
   LEGACY ALIASES - Remove after updating HTML
   ========================================================================== */
.synths-intro-section {
  margin-top: var(--space-4xl); }

.synths-intro {
  display: flex;
  justify-content: center;
  gap: var(--space-lg); }

.synths-intro .synth {
  max-width: 30vw;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  transition: all var(--duration-slow) var(--ease-default); }

.synths-intro .synth:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent); }

.synths-intro .synth * {
  text-align: center;
  width: 100%;
  margin-right: auto;
  margin-left: auto; }

.synths-intro .synth p {
  margin: 0;
  padding: 0; }

.synths-intro .synth-name {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-text); }

.synths-intro .synth-role {
  font-style: italic;
  margin-bottom: var(--space-lg); }

.synths-intro .meet-synth-btn {
  background-color: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  width: auto;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  transition: all var(--duration-normal) var(--ease-default); }

.synths-intro .meet-synth-btn:hover {
  background-color: var(--color-text);
  color: var(--color-bg);
  border-color: var(--color-text); }

.synths-intro .synth-conversation {
  margin-top: var(--space-md);
  padding-top: var(--space-md); }

.synths-intro .conversation-container {
  margin-bottom: var(--space-lg); }

.synths-intro .message-bubble {
  min-height: 3rem;
  margin-bottom: var(--space-md);
  padding: var(--space-md);
  background-color: var(--color-bg-alt);
  border-radius: var(--radius-md);
  max-width: 95%; }

.synths-intro .continue-btn {
  background-color: var(--color-accent);
  color: var(--color-text-inverse);
  border: none;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: var(--text-base);
  font-weight: var(--weight-normal);
  margin-top: var(--space-sm); }

.synths-intro .synth-capabilities {
  margin-top: var(--space-lg); }

.synths-intro .synth-capabilities h4, .synths-intro .synth-principles h4, .synths-intro .synth-tips h4 {
  margin: var(--space-lg) 0 var(--space-md) 0;
  font-size: var(--text-base);
  color: var(--color-text-secondary); }

.synths-intro .capabilities-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--space-md); }

.synths-intro .capability-item {
  margin-bottom: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border); }

.synths-intro .capability-item h5 {
  margin: 0 0 var(--space-sm) 0;
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--color-text); }

.synths-intro .capability-item p {
  margin: 0 0 var(--space-sm) 0;
  font-size: var(--text-sm); }

.synths-intro .capability-examples {
  margin: 0;
  padding-left: var(--space-lg);
  font-size: var(--text-sm); }

.synths-intro .capability-examples li {
  margin-bottom: var(--space-xs); }

.synths-intro .synth-principles ul, .synths-intro .synth-tips ul {
  margin: 0;
  padding-left: var(--space-lg); }

.synths-intro .synth-principles li, .synths-intro .synth-tips li {
  margin-bottom: var(--space-sm);
  font-size: var(--text-sm); }

.synths-intro .typing-indicator-wrapper {
  display: inline-block;
  padding: var(--space-sm) var(--space-md);
  background-color: var(--color-bg-alt);
  border-radius: var(--radius-lg); }

.synths-intro .typing-indicator {
  display: inline-block;
  width: var(--space-md);
  height: var(--space-md);
  border-radius: var(--radius-full);
  background-color: var(--color-accent);
  background-size: cover; }

@media (max-width: 768px) {
  .synths-intro {
    flex-direction: column;
    gap: var(--space-xl); }
  .synths-intro .synth {
    max-width: 90vw; }
  .synths-intro .capabilities-list {
    grid-template-columns: 1fr; }
  .synths-intro .message-bubble {
    max-width: 95%; }
  .synths-intro .meet-synth-btn {
    display: none; } }

/* ==========================================================================
   Testament Section
   BEM: .testament, .testament__*, .testament--*
   ========================================================================== */
.testament {
  color: var(--color-text);
  min-height: 100vh;
  width: 100%;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  position: relative;
  overflow: hidden; }

.testament__content {
  max-width: var(--max-width-full);
  text-align: left;
  width: 100%;
  container-type: inline-size;
  position: relative;
  z-index: 10; }

/* --------------------------------------------------------------------------
   Canvas
   -------------------------------------------------------------------------- */
#testament-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0; }

/* --------------------------------------------------------------------------
   Eyebrow
   -------------------------------------------------------------------------- */
.testament-eyebrow {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-lg) 0;
  padding-left: var(--space-md); }

/* --------------------------------------------------------------------------
   Headline
   -------------------------------------------------------------------------- */
.testament__headline {
  font-family: "NewPanamSkyline", var(--font-sans);
  font-size: 10cqw;
  font-weight: var(--weight-black);
  margin: 0;
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  width: 100%;
  overflow: hidden;
  padding-bottom: var(--space-xl);
  color: #000; }

.testament__headline .testament__alt {
  display: inline-block;
  font-feature-settings: "ss01";
  animation: testament-slow-rotate 14s linear infinite;
  transform-origin: 54.5% 50%; }

@keyframes testament-slow-rotate {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }

.testament__headline-group {
  display: block; }

/* --------------------------------------------------------------------------
   Body
   -------------------------------------------------------------------------- */
.testament__body {
  margin-top: var(--space-xl);
  display: flex;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: var(--space-xl); }

.testament__text {
  flex-basis: 650px;
  flex-grow: 1; }

.testament__lead {
  font-family: var(--font-sans);
  font-size: clamp(var(--text-md), 2vw, var(--text-xl));
  color: #000;
  margin: 0;
  line-height: 1.4;
  font-weight: var(--weight-light); }

.testament__brand {
  color: #000;
  font-weight: var(--weight-normal); }

.testament__emphasis {
  font-weight: var(--weight-medium); }

.testament__sub {
  font-family: var(--font-sans);
  font-size: clamp(var(--text-base), 1.75vw, var(--text-lg));
  color: #000;
  margin: var(--space-sm) 0 0 0;
  line-height: 1.4;
  font-weight: var(--weight-light); }

/* --------------------------------------------------------------------------
   Price
   -------------------------------------------------------------------------- */
.testament-price {
  font-family: var(--font-sans);
  font-size: clamp(var(--text-base), 1.75vw, var(--text-lg));
  color: var(--color-text-secondary);
  margin: var(--space-sm) 0 0 0;
  font-weight: var(--weight-normal); }

/* --------------------------------------------------------------------------
   CTA
   -------------------------------------------------------------------------- */
.testament__cta {
  flex-shrink: 0; }

.testament__button {
  background-color: #000;
  color: var(--color-bg);
  text-decoration: none;
  padding: var(--space-lg) var(--space-3xl);
  font-weight: var(--weight-extrabold);
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  display: inline-block;
  transition: background-color var(--duration-normal) var(--ease-default);
  font-family: var(--font-sans); }

.testament__button:hover {
  background-color: var(--color-accent); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
.testament-headline--mobile,
.testament__headline--mobile {
  display: none; }

br.testament__mobile-break {
  display: none; }

@media screen and (max-width: 1440px) {
  .testament-content,
  .testament__content {
    padding-left: var(--space-3xl);
    padding-right: var(--space-3xl); } }

@media screen and (max-width: 768px) {
  .testament-headline--desktop,
  .testament__headline--desktop {
    display: none; }
  .testament-headline--mobile,
  .testament__headline--mobile {
    display: flex;
    flex-direction: column;
    align-items: center; }
  br.testament__mobile-break {
    display: initial; }
  .testament {
    padding-left: 0;
    padding-right: 0;
    margin-top: var(--space-3xl);
    margin-bottom: var(--space-3xl); }
  .testament__headline {
    font-size: 16cqw;
    text-align: center;
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-4xl);
    display: flex;
    flex-direction: column;
    align-items: center; }
  .testament__headline-group {
    display: inline; }
  .testament__body {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-2xl); }
  .testament__text {
    flex-basis: auto; }
  .testament__lead {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-xl); }
  .testament__sub {
    font-size: var(--text-lg); } }

/* ==========================================================================
   LEGACY ALIASES - Remove after updating HTML
   ========================================================================== */
.testament-container {
  color: var(--color-text);
  min-height: 100vh;
  width: 100%;
  max-width: none;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 12rem;
  box-sizing: border-box;
  position: relative;
  overflow: hidden; }

.testament-content {
  max-width: var(--max-width-full);
  text-align: left;
  width: 100%;
  container-type: inline-size;
  position: relative;
  z-index: 10; }

.testament-headline {
  font-family: "NewPanamSkyline", var(--font-sans);
  font-size: 10cqw;
  font-weight: var(--weight-black);
  margin: 0;
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  width: 100%;
  overflow: hidden;
  padding-bottom: var(--space-xl);
  color: #000; }

.testament-headline .stylistic-alt {
  display: inline-block;
  font-feature-settings: "ss01";
  animation: testament-slow-rotate 14s linear infinite;
  transform-origin: 54.5% 50%; }

.headline-group {
  display: block; }

.testament-body {
  margin-top: var(--space-xl);
  display: flex;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: var(--space-xl); }

.testament-text {
  flex-basis: 650px;
  flex-grow: 1; }

.testament-paragraph-lead {
  font-family: var(--font-sans);
  font-size: clamp(var(--text-md), 2vw, var(--text-xl));
  color: #000;
  margin: 0;
  line-height: 1.4;
  font-weight: var(--weight-light); }

.testament-brand-name {
  color: #000;
  font-weight: var(--weight-normal); }

.testament-emphasis {
  font-weight: var(--weight-medium); }

.testament-paragraph-sub {
  font-family: var(--font-sans);
  font-size: clamp(var(--text-base), 1.75vw, var(--text-lg));
  color: #000;
  margin: var(--space-sm) 0 0 0;
  line-height: 1.4;
  font-weight: var(--weight-light); }

.testament-cta {
  flex-shrink: 0; }

.testament-button {
  background-color: #000;
  color: var(--color-bg);
  text-decoration: none;
  padding: var(--space-lg) var(--space-3xl);
  font-weight: var(--weight-extrabold);
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  display: inline-block;
  transition: background-color var(--duration-normal) var(--ease-default);
  font-family: var(--font-sans);
  border: 2px solid #000; }

.testament-button:hover {
  background-color: var(--color-accent); }

.testament-button__sub {
  display: block;
  font-size: var(--text-xs);
  font-weight: var(--weight-normal);
  letter-spacing: var(--tracking-wide);
  text-transform: lowercase;
  opacity: 0.7;
  margin-top: 2px; }

button.testament-button--outline {
  cursor: pointer;
  font-size: inherit;
  line-height: inherit; }

.testament-button--outline {
  background-color: #f9f9f9;
  color: #000;
  border: 2px solid #000; }

.testament-cta-sub {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--color-text-tertiary);
  margin: var(--space-xs) 0 0 0;
  font-weight: var(--weight-normal);
  letter-spacing: var(--tracking-wide);
  text-align: center; }

.testament-button--outline:hover {
  background-color: #000;
  color: var(--color-bg); }

.testament-price {
  font-family: var(--font-sans);
  font-size: clamp(var(--text-base), 1.75vw, var(--text-lg));
  color: var(--color-text-secondary);
  margin: var(--space-sm) 0 0 0;
  font-weight: var(--weight-normal); }

.testament-eyebrow {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-lg) 0;
  padding-left: var(--space-md); }

.testament-cta {
  flex-shrink: 0;
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  flex-wrap: wrap; }

br.mobile-only {
  display: none; }

@media screen and (max-width: 768px) {
  br.mobile-only {
    display: initial; }
  .testament-container {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    margin-top: 0;
    margin-bottom: var(--space-3xl);
    min-height: auto; }
  .testament-eyebrow {
    display: none; }
  .testament-headline {
    font-size: 16cqw;
    text-align: center;
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-4xl); }
  .testament-headline--desktop {
    display: none !important; }
  .testament-headline--mobile {
    display: flex !important;
    flex-direction: column;
    align-items: center; }
  .headline-group {
    display: inline; }
  .testament-body {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-2xl); }
  .testament-text {
    flex-basis: auto; }
  .testament-paragraph-lead {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-xl); }
  .testament-paragraph-sub {
    font-size: var(--text-lg); }
  .testament-cta {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md); }
  .testament-button {
    padding: var(--space-md) var(--space-xl);
    font-size: var(--text-sm);
    text-align: center;
    width: 100%;
    box-sizing: border-box; } }
