/* ============================================================
   HTML EDITOR PAGE — htmleditor.css
   Terminal/code-editor aesthetic. Mint (#00D4AA) as primary accent.
   All he-* prefixed classes are local to this page.
   ============================================================ */

/* ── Font faces ── */
@font-face {
  font-family: 'Aeonik Pro';
  src: url('Aeonik/AeonikPro-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aeonik Pro';
  src: url('Aeonik/AeonikPro-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aeonik Pro';
  src: url('Aeonik/AeonikPro-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── Design tokens ── */
:root {
  --primary: #0060FF;
  --primary-hover: #0050DD;
  --accent-mint: #00D4AA;
  --accent-mint-hover: #00BF98;
  --dark-bg: #0A0A0F;
  --dark-elevated: #111118;
  --dark-card: #1A1A24;
  --dark-editor: #0D0D14;
  --surface: #FAFAFA;
  --surface-card: #FFFFFF;
  --surface-muted: #F4F4F8;
  --text-primary: #0A0A0F;
  --text-secondary: #6B7280;
  --text-on-dark: #F0F0F5;
  --text-muted-on-dark: #9CA3AF;
  --border: rgba(0, 0, 0, 0.08);
  --border-dark: rgba(255, 255, 255, 0.08);
  --font-display: 'Aeonik Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Aeonik Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Aeonik Mono', 'SF Mono', 'Fira Code', monospace;
  --sp-1: 8px; --sp-2: 16px; --sp-3: 24px; --sp-4: 32px;
  --sp-5: 48px; --sp-6: 64px; --sp-7: 96px; --sp-8: 128px;
  --radius-sm: 8px; --radius-md: 12px; --radius-lg: 16px;
  --radius-xl: 20px; --radius-pill: 99px;
  --max-w: 1280px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.14);
  --shadow-glow: 0 0 40px rgba(0, 96, 255, 0.15);
  --shadow-mint-glow: 0 0 40px rgba(0, 212, 170, 0.2);
  --transition: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-spring: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --nav-height: 58px;

  /* Syntax colors */
  --syn-tag: #00D4AA;
  --syn-attr: #5B9BFF;
  --syn-str: #F59E0B;
  --syn-keyword: #A78BFA;
  --syn-comment: rgba(255, 255, 255, 0.35);
  --syn-default: rgba(255, 255, 255, 0.82);
  --syn-number: #FB923C;
}

/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'ss01' on, 'cv01' on, 'cv11' on;
}
img, video { display: block; max-width: 100%; }

/* ── Container ── */
.he-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-3);
}

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--transition-spring), transform 0.6s var(--transition-spring);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Syntax highlight classes ── */
.he-syn-tag     { color: var(--syn-tag); }
.he-syn-attr    { color: var(--syn-attr); }
.he-syn-str     { color: var(--syn-str); }
.he-syn-keyword { color: var(--syn-keyword); }
.he-syn-comment { color: var(--syn-comment); font-style: italic; }
.he-syn-default { color: var(--syn-default); }
.he-syn-number  { color: var(--syn-number); }

/* ── Cursor blink ── */
.he-cursor-blink {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--accent-mint);
  vertical-align: text-bottom;
  margin-left: 1px;
  animation: he-cursor-blink 1s step-end infinite;
}
@keyframes he-cursor-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ── Editor dots (window controls) ── */
.he-editor-dots { display: flex; gap: 6px; align-items: center; }
.he-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: block;
}
.he-dot--red    { background: #FF5F57; }
.he-dot--yellow { background: #FFBD2E; }
.he-dot--green  { background: #28CA41; }

/* ── Shared eyebrow / section header ── */
.he-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--sp-2);
}
.he-eyebrow--mint { color: var(--accent-mint); }

.he-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--sp-6);
}
.he-section-header--dark { /* no override needed, children handle color */ }

.he-section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: var(--sp-2);
}
.he-section-title--light { color: var(--text-on-dark); }

.he-section-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-secondary);
}
.he-section-sub--muted { color: var(--text-muted-on-dark); }

/* ── Buttons ── */
.he-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent-mint);
  color: #0A0A0F;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  box-shadow: var(--shadow-mint-glow);
  white-space: nowrap;
}
.he-btn-primary:hover {
  background: var(--accent-mint-hover);
  box-shadow: 0 0 60px rgba(0, 212, 170, 0.35);
  transform: translateY(-1px);
}
.he-btn-primary--large {
  padding: 16px 36px;
  font-size: 16px;
}

.he-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  background: transparent;
  color: var(--text-on-dark);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-dark);
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.he-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}
.he-btn-ghost--dark { color: var(--text-on-dark); }

/* ============================================================
   S1 — HERO
   ============================================================ */
.he-hero {
  position: relative;
  min-height: 100svh;
  background: var(--dark-bg);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

/* Code grid texture */
.he-hero-code-grid {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 23px,
      rgba(255, 255, 255, 0.02) 23px,
      rgba(255, 255, 255, 0.02) 24px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 39px,
      rgba(255, 255, 255, 0.015) 39px,
      rgba(255, 255, 255, 0.015) 40px
    );
  pointer-events: none;
}

.he-hero-glow {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(0, 212, 170, 0.07) 0%, rgba(0, 96, 255, 0.05) 40%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}

.he-hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.he-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  align-items: center;
  padding-top: var(--sp-7);
  padding-bottom: var(--sp-7);
}

.he-hero-copy { display: flex; flex-direction: column; align-items: flex-start; gap: var(--sp-3); }

/* Product icon mark */
.he-hero-icon {
  display: flex;
  align-items: center;
}
.he-hero-icon img {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 0 32px rgba(0, 212, 170, 0.3),
    0 8px 24px rgba(0,0,0,0.4);
  transition: box-shadow var(--transition-smooth), transform var(--transition-smooth);
}
.he-hero-icon:hover img {
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.12),
    0 0 48px rgba(0, 212, 170, 0.45),
    0 12px 32px rgba(0,0,0,0.5);
  transform: translateY(-2px);
}

/* Badge */
.he-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(0, 212, 170, 0.08);
  border: 1px solid rgba(0, 212, 170, 0.25);
  border-radius: var(--radius-pill);
  color: var(--accent-mint);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition);
}
.he-hero-badge:hover {
  background: rgba(0, 212, 170, 0.14);
  border-color: rgba(0, 212, 170, 0.4);
}
.he-hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-mint);
  animation: he-pulse 2s ease-in-out infinite;
}
@keyframes he-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* Headline */
.he-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-on-dark);
}
.he-hero-headline-em {
  background: linear-gradient(135deg, var(--accent-mint), #0060FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.he-hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-muted-on-dark);
  max-width: 480px;
}

.he-hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.he-hero-note {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted-on-dark);
}
.he-hero-note svg { color: var(--accent-mint); flex-shrink: 0; }

/* Mock editor in hero */
.he-hero-editor-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.he-editor-window {
  background: var(--dark-editor);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  max-width: 560px;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(0, 212, 170, 0.05),
    0 0 60px rgba(0, 212, 170, 0.06);
  font-family: var(--font-mono);
}

.he-editor-titlebar {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.he-editor-filename {
  font-size: 11px;
  color: var(--text-muted-on-dark);
  margin-left: 4px;
  flex: 1;
}
.he-editor-tabs {
  display: flex;
  gap: 2px;
}
.he-editor-tab {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.35);
  cursor: default;
}
.he-editor-tab--active {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-on-dark);
  border-bottom: 2px solid var(--accent-mint);
  padding-bottom: 1px;
}

.he-editor-body {
  display: flex;
  min-height: 320px;
  max-height: 380px;
  overflow: hidden;
}

.he-editor-gutter {
  width: 44px;
  padding: 14px 10px 14px 0;
  text-align: right;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  user-select: none;
  flex-shrink: 0;
}

.he-editor-code {
  flex: 1;
  padding: 14px 14px 14px 14px;
  font-size: 13px;
  line-height: 1.7;
  overflow: hidden;
  white-space: pre;
  color: var(--syn-default);
}

.he-editor-statusbar {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 5px 14px;
  background: rgba(0, 212, 170, 0.06);
  border-top: 1px solid rgba(0, 212, 170, 0.1);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
}
.he-statusbar-right { margin-left: auto; color: var(--accent-mint); opacity: 0.7; }

/* Scroll hint */
.he-hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 38px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.he-hero-scroll-bar {
  width: 2px;
  height: 8px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-pill);
  animation: he-scroll-hint 2s ease-in-out infinite;
}
@keyframes he-scroll-hint {
  0%, 100% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(10px); opacity: 0; }
}

/* ============================================================
   S2 — STATS BAR
   ============================================================ */
.he-stats {
  background: var(--dark-elevated);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.he-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: var(--sp-5) var(--sp-3);
}

.he-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 var(--sp-5);
  flex: 1;
  min-width: 140px;
}

.he-stat-div {
  width: 1px;
  height: 40px;
  background: var(--border-dark);
  flex-shrink: 0;
}

.he-stat-n {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--accent-mint);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.he-stat-unit {
  font-size: 20px;
  font-weight: 500;
  color: var(--accent-mint);
}
.he-stat-plus {
  font-size: 24px;
  color: var(--accent-mint);
  font-weight: 500;
}

.he-stat-l {
  font-size: 13px;
  color: var(--text-muted-on-dark);
  text-align: center;
  font-weight: 400;
}

/* ============================================================
   S3 — BENTO GRID
   ============================================================ */
.he-bento {
  background: var(--surface);
  padding: var(--sp-8) 0;
}

/* Mock line styles (code mockups) */
.he-mock-line {
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 1.8;
  white-space: nowrap;
  color: var(--syn-default);
}
.he-mock-indent  { padding-left: 20px; }
.he-mock-indent-2 { padding-left: 40px; }

.he-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.he-bento-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--sp-4);
  overflow: hidden;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.he-bento-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.he-bento-card--wide {
  grid-column: span 2;
}
.he-bento-card--tall {
  grid-row: span 1;
}
.he-bento-card--dark {
  background: var(--dark-card);
  border-color: var(--border-dark);
}
.he-bento-card--wide-bottom {
  grid-column: span 2;
}
.he-bento-card--publish {}

.he-bento-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}
.he-bento-eyebrow--light { color: var(--accent-mint); }

.he-bento-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  line-height: 1.2;
}
.he-bento-title--light { color: var(--text-on-dark); }

.he-bento-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}
.he-bento-desc--light { color: var(--text-muted-on-dark); }

.he-bento-visual {
  flex: 1;
  display: flex;
  align-items: flex-end;
}

/* Split preview mockup */
.he-split-mock {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 4px 1fr;
  gap: 0;
  background: var(--dark-editor);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 160px;
}

.he-split-code,
.he-split-preview {
  padding: 12px;
  overflow: hidden;
}

.he-split-divider {
  background: rgba(255, 255, 255, 0.08);
  width: 1px;
  align-self: stretch;
}

.he-preview-browser {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  height: 100%;
}
.he-preview-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: #f0f0f0;
  border-bottom: 1px solid #e0e0e0;
}
.he-preview-dots { display: flex; gap: 4px; }
.he-preview-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d0d0d0;
}
.he-preview-url {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #888;
  background: #fff;
  padding: 2px 8px;
  border-radius: 3px;
  border: 1px solid #ddd;
}
.he-preview-content { padding: 10px; }
.he-preview-h1 { font-size: 12px; font-weight: 700; color: #111; margin-bottom: 4px; }
.he-preview-p { font-size: 10px; color: #555; margin-bottom: 8px; }
.he-preview-btn {
  display: inline-block;
  font-size: 10px;
  padding: 4px 10px;
  background: #0060ff;
  color: #fff;
  border-radius: 4px;
}

/* Autocomplete mockup */
.he-autocomplete-mock {
  width: 100%;
  background: var(--dark-editor);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-mono);
}
.he-autocomplete-input {
  padding: 10px 12px;
  font-size: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  white-space: nowrap;
  overflow: hidden;
}
.he-autocomplete-dropdown {}
.he-ac-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--syn-default);
  transition: background 0.15s;
}
.he-ac-item--active {
  background: rgba(0, 212, 170, 0.12);
  color: var(--accent-mint);
}
.he-ac-icon {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: rgba(0, 212, 170, 0.2);
  color: var(--accent-mint);
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.he-ac-type {
  margin-left: auto;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.25);
}

/* Language chips */
.he-lang-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.he-lang-chip {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted-on-dark);
}
.he-lang-chip--mint {
  background: rgba(0, 212, 170, 0.12);
  border-color: rgba(0, 212, 170, 0.3);
  color: var(--accent-mint);
}
.he-lang-chip--blue {
  background: rgba(91, 155, 255, 0.12);
  border-color: rgba(91, 155, 255, 0.25);
  color: var(--syn-attr);
}

/* Code block */
.he-bento-visual--code { align-items: stretch; }
.he-code-block {
  width: 100%;
  background: var(--dark-editor);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.he-code-block-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.he-code-block-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}
.he-code-block-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted-on-dark);
  flex: 1;
}
.he-code-block-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 2px 8px;
  background: rgba(0, 212, 170, 0.12);
  border: 1px solid rgba(0, 212, 170, 0.25);
  border-radius: var(--radius-pill);
  color: var(--accent-mint);
}
.he-code-block-body {
  padding: 12px 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.75;
  overflow: hidden;
  color: var(--syn-default);
}

/* Publish flow */
.he-bento-visual--publish { align-items: center; justify-content: center; }
.he-publish-flow {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.he-publish-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}
.he-publish-step--done { color: rgba(255, 255, 255, 0.65); }
.he-publish-step--active { color: var(--accent-mint); }
.he-publish-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
}
.he-publish-icon--mint {
  border-color: var(--accent-mint);
  background: rgba(0, 212, 170, 0.1);
  color: var(--accent-mint);
  animation: he-publish-pulse 1.5s ease-in-out infinite;
}
@keyframes he-publish-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 212, 170, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(0, 212, 170, 0); }
}
.he-publish-arrow { color: rgba(255, 255, 255, 0.2); font-size: 16px; }

/* ============================================================
   S4 — FEATURE TABS
   ============================================================ */
.he-tabs-section {
  background: var(--dark-bg);
  padding: var(--sp-8) 0;
  border-top: 1px solid var(--border-dark);
}

.he-tabs-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: var(--sp-5);
  align-items: start;
}

.he-tabs-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.he-tab-btn {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 16px 18px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-align: left;
  transition: background var(--transition), border-color var(--transition);
  width: 100%;
  color: inherit;
}
.he-tab-btn:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-dark);
}
.he-tab-btn--active {
  background: rgba(0, 212, 170, 0.07);
  border-color: rgba(0, 212, 170, 0.2);
}

.he-tab-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted-on-dark);
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition);
}
.he-tab-btn--active .he-tab-icon {
  background: rgba(0, 212, 170, 0.15);
  color: var(--accent-mint);
}

.he-tab-label { display: flex; flex-direction: column; gap: 2px; }
.he-tab-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted-on-dark);
}
.he-tab-btn--active .he-tab-eyebrow { color: var(--accent-mint); }
.he-tab-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted-on-dark);
}
.he-tab-btn--active .he-tab-title { color: var(--text-on-dark); }

/* Tab panels */
.he-tabs-panel { position: relative; }
.he-tab-panel { display: none; }
.he-tab-panel--active { display: block; }

.he-tab-editor {
  background: var(--dark-editor);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.he-tab-editor-bar {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.he-tab-editor-body {
  display: flex;
  min-height: 300px;
  position: relative;
}
.he-tab-editor-gutter {
  width: 40px;
  padding: 14px 8px 14px 0;
  text-align: right;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.18);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  user-select: none;
  flex-shrink: 0;
}
.he-tab-editor-code {
  flex: 1;
  padding: 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.7;
  color: var(--syn-default);
  overflow: auto;
  white-space: pre;
}
.he-tab-autocomplete {
  position: absolute;
  top: 80px;
  left: 60px;
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  font-family: var(--font-mono);
}

/* Split tab */
.he-tab-editor-body--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.he-tab-split-code, .he-tab-split-preview {
  padding: 14px;
  overflow: hidden;
}
.he-tab-split-code {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.he-tab-split-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 8px;
}
.he-tab-preview-nav {
  display: flex;
  gap: 16px;
  padding: 8px 0;
  font-size: 13px;
  color: var(--text-on-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 500;
}

/* File tree tab */
.he-tab-editor-body--files { padding: 14px; display: block; }
.he-filetree { font-family: var(--font-mono); font-size: 12.5px; }
.he-filetree-root {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  color: var(--text-muted-on-dark);
  font-weight: 600;
}
.he-filetree-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0 4px 16px;
  color: rgba(255, 255, 255, 0.5);
  cursor: default;
  border-radius: 4px;
  transition: background 0.15s;
}
.he-filetree-item:hover { background: rgba(255, 255, 255, 0.04); }
.he-filetree-item--active {
  color: var(--accent-mint);
  background: rgba(0, 212, 170, 0.08);
}
.he-filetree-item--nested { padding-left: 32px; }
.he-filetree-folder {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0 4px 16px;
  color: var(--syn-str);
  cursor: default;
  margin-top: 4px;
}

/* Publish tab */
.he-tab-editor-body--publish { padding: 24px; display: block; }
.he-publish-panel { display: flex; flex-direction: column; gap: 14px; }
.he-publish-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-mono);
  font-size: 13px;
}
.he-publish-label { color: rgba(255, 255, 255, 0.4); }
.he-publish-value { color: var(--text-on-dark); }
.he-publish-value--mint { color: var(--accent-mint); }
.he-publish-status { display: flex; align-items: center; gap: 6px; }
.he-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.he-status-dot--green { background: #28CA41; animation: he-publish-pulse 2s infinite; }
.he-publish-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--accent-mint);
  color: #0A0A0F;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: background var(--transition), box-shadow var(--transition);
}
.he-publish-btn:hover {
  background: var(--accent-mint-hover);
  box-shadow: 0 0 20px rgba(0, 212, 170, 0.3);
}

/* ============================================================
   S5 — CODE QUALITY SHOWCASE
   ============================================================ */
.he-showcase {
  background: var(--surface);
  padding: var(--sp-8) 0;
}

.he-showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-7);
  align-items: center;
  margin-bottom: var(--sp-8);
}
.he-showcase-row:last-child { margin-bottom: 0; }
.he-showcase-row--flip { direction: rtl; }
.he-showcase-row--flip > * { direction: ltr; }

.he-showcase-copy { display: flex; flex-direction: column; gap: var(--sp-3); }
.he-showcase-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text-primary);
}
.he-showcase-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}
.he-showcase-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.he-showcase-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 500;
}
.he-showcase-list li svg { color: var(--accent-mint); flex-shrink: 0; }

/* Showcase editor visual */
.he-showcase-editor {
  background: var(--dark-editor);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}
.he-showcase-editor-bar {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.he-showcase-editor-body {
  display: flex;
  min-height: 200px;
  position: relative;
}
.he-showcase-gutter {
  width: 40px;
  padding: 14px 8px 14px 0;
  text-align: right;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.18);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  user-select: none;
  flex-shrink: 0;
}
.he-showcase-editor-code {
  flex: 1;
  padding: 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.8;
  position: relative;
}
.he-ac-popup {
  position: absolute;
  top: 76px;
  left: 14px;
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  font-family: var(--font-mono);
}

/* Showcase split mockup */
.he-showcase-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: var(--shadow-hover);
  min-height: 280px;
}
.he-showcase-split-panel--code {
  background: var(--dark-editor);
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.he-showcase-split-panel--preview {
  background: #f8f8fa;
  padding: 16px;
}
.he-split-label-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 10px;
}
.he-split-label-bar--preview { color: #888; }
.he-split-label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-mint);
}
.he-split-label-dot--blue { background: var(--primary); }
.he-showcase-split-code {
  font-family: var(--font-mono);
  font-size: 11.5px;
  line-height: 1.75;
  color: var(--syn-default);
}
.he-showcase-preview-content { padding-top: 4px; }
.he-preview-header-mock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.he-preview-logo-box {
  width: 60px;
  height: 18px;
  background: #ddd;
  border-radius: 3px;
}
.he-preview-nav-mock { display: flex; gap: 10px; }
.he-preview-nav-mock span {
  width: 36px;
  height: 8px;
  background: #ccc;
  border-radius: 2px;
}
.he-preview-body-mock { display: flex; flex-direction: column; gap: 8px; }
.he-preview-block {
  height: 12px;
  background: #e0e0e0;
  border-radius: 2px;
}
.he-preview-block--wide { width: 80%; }
.he-preview-block--narrow { width: 50%; }

/* ============================================================
   S6 — PRICING
   ============================================================ */
.he-pricing {
  background: var(--dark-bg);
  padding: var(--sp-8) 0;
  border-top: 1px solid var(--border-dark);
}

.he-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  max-width: 900px;
  margin: 0 auto;
}

.he-plan-card {
  background: var(--dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}
.he-plan-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.he-plan-card--featured {
  border-color: rgba(0, 212, 170, 0.3);
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.04), rgba(0, 96, 255, 0.04));
  box-shadow: 0 0 60px rgba(0, 212, 170, 0.1), inset 0 0 0 1px rgba(0, 212, 170, 0.15);
}

.he-plan-badge-top {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  background: var(--accent-mint);
  color: #0A0A0F;
  border-radius: var(--radius-pill);
}

.he-plan-header { display: flex; flex-direction: column; gap: 8px; }
.he-plan-name {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted-on-dark);
  font-family: var(--font-mono);
}
.he-plan-card--featured .he-plan-name { color: var(--accent-mint); }
.he-plan-price { display: flex; align-items: baseline; gap: 6px; }
.he-plan-amount {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text-on-dark);
  line-height: 1;
}
.he-plan-period {
  font-size: 14px;
  color: var(--text-muted-on-dark);
}
.he-plan-desc {
  font-size: 14px;
  color: var(--text-muted-on-dark);
  line-height: 1.55;
}

.he-plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.he-plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-on-dark);
}
.he-plan-features li svg { color: var(--accent-mint); flex-shrink: 0; }

.he-plan-cta {
  display: block;
  text-align: center;
  padding: 13px 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-pill);
  color: var(--text-on-dark);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition);
}
.he-plan-cta:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}
.he-plan-cta--featured {
  background: var(--accent-mint);
  border-color: var(--accent-mint);
  color: #0A0A0F;
  box-shadow: var(--shadow-mint-glow);
}
.he-plan-cta--featured:hover {
  background: var(--accent-mint-hover);
  border-color: var(--accent-mint-hover);
  box-shadow: 0 0 60px rgba(0, 212, 170, 0.35);
}

.he-plan-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted-on-dark);
  font-family: var(--font-mono);
}

.he-pricing-compare {
  text-align: center;
  margin-top: var(--sp-4);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted-on-dark);
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-pill);
  display: inline-block;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
  max-width: 520px;
}

/* ============================================================
   S7 — FAQ
   ============================================================ */
.he-faq {
  background: var(--surface);
  padding: var(--sp-8) 0;
}

.he-faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

/* ── FAQ — canonical pattern (matches index.html exactly) ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface-card);
}

.faq-item {
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background var(--transition);
}
.faq-item:last-child { border-bottom: none; }

.faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary);
  opacity: 0;
  transition: opacity 0.2s ease;
  border-radius: 0 2px 2px 0;
}
.faq-item.open::before { opacity: 1; }
.faq-item.open { background: rgba(0, 96, 255, 0.025); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  width: 100%;
  padding: 20px 24px;
  min-height: 64px;
  background: none;
  border: none;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  letter-spacing: -0.02em;
  font-family: var(--font-body);
  transition: color var(--transition);
  touch-action: manipulation;
}
.faq-question:hover { color: var(--primary); }
.faq-item.open .faq-question { color: var(--primary); font-weight: 600; }
.faq-question:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
}

.faq-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.14);
  color: var(--text-secondary);
  background: transparent;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-answer > div { overflow: hidden; }
.faq-answer p {
  padding: 0 24px 22px 27px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}

/* ============================================================
   S8 — CTA FINAL
   ============================================================ */
.he-cta-final {
  background: var(--dark-bg);
  padding: var(--sp-8) 0 calc(var(--sp-8) + 32px);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-dark);
}

.he-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(0, 212, 170, 0.12) 0%, rgba(0, 96, 255, 0.07) 50%, transparent 70%);
  pointer-events: none;
  filter: blur(60px);
}

.he-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}

.he-cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text-on-dark);
  max-width: 700px;
}

.he-cta-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted-on-dark);
  max-width: 500px;
}

.he-cta-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-2);
  justify-content: center;
}

.he-cta-reassurance {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
  margin-top: var(--sp-1);
}
.he-cta-reassurance span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted-on-dark);
  font-family: var(--font-mono);
}
.he-cta-reassurance svg { color: var(--accent-mint); flex-shrink: 0; }

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

/* Tablet — ≤ 1024px */
@media (max-width: 1024px) {
  .he-hero-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
    padding-top: var(--sp-6);
  }
  .he-hero-editor-wrap {
    justify-content: center;
  }
  .he-editor-window { max-width: 100%; }

  .he-tabs-layout {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }
  .he-tabs-nav { flex-direction: row; flex-wrap: wrap; }
  .he-tab-btn { flex: 1; min-width: 140px; }

  .he-bento-grid {
    grid-template-columns: 1fr 1fr;
  }
  .he-bento-card--wide,
  .he-bento-card--wide-bottom { grid-column: span 2; }

  .he-showcase-row { grid-template-columns: 1fr; gap: var(--sp-5); }
  .he-showcase-row--flip { direction: ltr; }

  .he-pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
}

/* Mobile — ≤ 640px */
@media (max-width: 640px) {
  .he-hero { min-height: 100svh; }
  .he-hero-copy { gap: var(--sp-2); }
  .he-hero-ctas { flex-direction: column; width: 100%; }
  .he-btn-primary, .he-btn-ghost { justify-content: center; text-align: center; width: 100%; }

  .he-stats-inner { gap: var(--sp-3); flex-wrap: wrap; }
  .he-stat { min-width: calc(50% - var(--sp-3)); }
  .he-stat-div { display: none; }

  .he-bento-grid { grid-template-columns: 1fr; }
  .he-bento-card--wide,
  .he-bento-card--wide-bottom { grid-column: span 1; }

  .he-split-mock { grid-template-columns: 1fr; }
  .he-split-preview { display: none; }

  .he-tabs-nav { flex-direction: column; }
  .he-tab-btn { flex: none; }

  .he-showcase-row,
  .he-showcase-row--flip { grid-template-columns: 1fr; }

  .he-pricing-grid { grid-template-columns: 1fr; }
  .he-plan-card { padding: var(--sp-4); }

  .he-cta-title { font-size: clamp(28px, 8vw, 40px); }
  .he-cta-actions { flex-direction: column; width: 100%; }
  .he-btn-primary--large { width: 100%; justify-content: center; }
  .he-cta-reassurance { flex-direction: column; gap: var(--sp-2); }
}

/* Small mobile — ≤ 380px */
@media (max-width: 380px) {
  .he-hero-headline { font-size: 38px; }
  .he-editor-tabs { display: none; }
}
