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

  :root {
    --bg:        #0d0f12;
    --surface-1: #141720;
    --surface-2: #1c2030;
    --surface-3: #232840;
    --border:    rgba(255,255,255,0.07);
    --border-hi: rgba(255,255,255,0.12);
    --text:      #e8eaf0;
    --text-muted:#8891a8;
    --text-dim:  #4a5168;
    --accent:    #2563EB;
    --accent-2:  #3B82F6;
    --green:     #3ecf8e;
    --amber:     #f59e0b;
    --red:       #f87171;
    --font-serif:'Lato', sans-serif;
    --font-mono: 'Lato', sans-serif;
    --font-sans: 'Lato', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* ── NOISE OVERLAY ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    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)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
    z-index: 1000;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 60px;
    background: rgba(13,15,18,0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .nav-logo-dot {
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent);
    animation: pulse-dot 2.5s ease-in-out infinite;
  }

  @keyframes pulse-dot {
    0%,100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(0.8); }
  }

  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
  }

  .nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 400;
    transition: color 0.2s;
  }

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

  .nav-cta {
    background: var(--surface-2);
    border: 1px solid var(--border-hi);
    color: var(--text);
    padding: 7px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-family: var(--font-mono);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
  }

  .nav-cta:hover {
    background: var(--surface-3);
    border-color: rgba(255,255,255,0.2);
  }

  /* ── SECTIONS ── */
  section { position: relative; }

  .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 40px;
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 60px;
    overflow: hidden;
  }

  .hero-glow {
    position: absolute;
    top: -200px; left: 0; right: 0;
    width: 100%; height: 700px;
    background:
      radial-gradient(ellipse at 35% 40%, rgba(37,99,235,0.25) 0%, transparent 55%),
      radial-gradient(ellipse at 65% 50%, rgba(139,92,246,0.2) 0%, transparent 50%),
      radial-gradient(ellipse at 50% 30%, rgba(59,130,246,0.15) 0%, transparent 60%);
    pointer-events: none;
    animation: glow-shift 8s ease-in-out infinite alternate;
  }

  @keyframes glow-shift {
    0%   { opacity: 0.8; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
  }

  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
    padding: 120px 40px;
    max-width: 1140px;
    margin: 0 auto;
  }

  .hero-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .hero-label::before {
    content: '';
    width: 20px; height: 1px;
    background: var(--accent);
    opacity: 0.6;
  }

  .hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(48px, 6vw, 76px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 24px;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--text-muted);
  }

  .hero-sub {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 400px;
    font-weight: 300;
  }

  .hero-actions {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .btn-primary {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 11px 24px;
    border-radius: 9px;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 0 24px rgba(37,99,235,0.25);
  }

  .btn-primary:hover {
    background: #3B82F6;
    box-shadow: 0 0 32px rgba(37,99,235,0.4);
    transform: translateY(-1px);
  }

  .btn-ghost {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    font-family: var(--font-mono);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
  }

  .btn-ghost:hover { color: var(--text); }

  /* ── HERO DASHBOARD ── */
  .hero-dashboard {
    position: relative;
  }

  .dashboard-card {
    background: var(--surface-1);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px var(--border);
  }

  .dashboard-topbar {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .db-dot { width: 8px; height: 8px; border-radius: 50%; }
  .db-dot-r { background: #ff5f57; }
  .db-dot-y { background: #ffbd2e; }
  .db-dot-g { background: #28c840; }

  .dashboard-title {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-dim);
    margin-left: 4px;
  }

  .dashboard-body { padding: 20px; }

  .db-section-label {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    margin-bottom: 10px;
  }

  .metric-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 16px;
  }

  .metric-card {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px;
  }

  .metric-label {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
  }

  .metric-value {
    font-family: var(--font-mono);
    font-size: 22px;
    font-weight: 300;
    color: var(--text);
    line-height: 1;
  }

  .metric-sub {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--green);
    margin-top: 4px;
  }

  .attention-box {
    background: rgba(248, 113, 113, 0.06);
    border: 1px solid rgba(248,113,113,0.2);
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 12px;
  }

  .attention-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--red);
    margin-bottom: 8px;
  }

  .attention-dot { width: 5px; height: 5px; background: var(--red); border-radius: 50%; }

  .attention-item {
    font-size: 11.5px;
    color: var(--text-muted);
    padding: 4px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .attention-item:last-child { border-bottom: none; }

  .attention-tag {
    font-family: var(--font-mono);
    font-size: 9px;
    background: rgba(248,113,113,0.15);
    color: var(--red);
    padding: 2px 6px;
    border-radius: 4px;
  }

  .velocity-bar {
    height: 3px;
    background: var(--surface-3);
    border-radius: 4px;
    margin-top: 12px;
    overflow: hidden;
  }

  .velocity-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    width: 72%;
    transition: width 1.5s ease;
  }

  /* ── LOGOS STRIP ── */
  .logos-strip {
    padding: 32px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    position: relative;
  }

  .logos-scroll {
    display: flex;
    gap: 60px;
    animation: scroll-logos 22s linear infinite;
    width: max-content;
  }

  .logos-strip::before, .logos-strip::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
  }

  .logos-strip::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
  .logos-strip::after  { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }

  @keyframes scroll-logos {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  .logo-item {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  /* ── STATEMENT ── */
  .statement-section {
    padding: 140px 0;
  }

  .statement-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
  }

  .statement-section.flip .container {
    direction: rtl;
  }

  .statement-section.flip .container > * {
    direction: ltr;
  }

  .section-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-dim);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .section-tag::before {
    content: '';
    width: 14px; height: 1px;
    background: var(--text-dim);
  }

  .statement-text h2 {
    font-family: var(--font-serif);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
  }

  .statement-text h2 em { font-style: italic; color: var(--text-muted); }

  .statement-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 28px;
  }

  .statement-points li {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 300;
  }

  .statement-points li::before {
    content: '–';
    color: var(--text-dim);
    flex-shrink: 0;
    margin-top: 1px;
  }

  .statement-note {
    margin-top: 32px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-dim);
    line-height: 1.6;
  }

  /* ── LAYER PANELS ── */
  .layers-section {
    padding: 140px 0;
    background: var(--surface-1);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .layers-header {
    text-align: center;
    margin-bottom: 80px;
  }

  .layers-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 300;
    letter-spacing: -2px;
    line-height: 80px;
    margin-bottom: 16px;
  }

  .layers-header p {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 300;
  }

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

  .layer-panel {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
  }

  .layer-panel:hover {
    border-color: var(--border-hi);
    transform: translateY(-4px);
  }

  .layer-panel-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .layer-panel-title {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .layer-badge {
    font-family: var(--font-mono);
    font-size: 9px;
    padding: 2px 7px;
    border-radius: 20px;
    border: 1px solid;
  }

  .badge-blue  { color: var(--accent);  border-color: rgba(37,99,235,0.3);  background: rgba(37,99,235,0.08); }
  .badge-green { color: var(--green);   border-color: rgba(62,207,142,0.3);  background: rgba(62,207,142,0.08); }
  .badge-amber { color: var(--amber);   border-color: rgba(245,158,11,0.3);  background: rgba(245,158,11,0.08); }

  .layer-panel-body { padding: 16px 20px; }

  /* CEO panel */
  .ceo-metric-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
  }

  .mini-metric {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px;
  }

  .mini-metric-label {
    font-family: var(--font-mono);
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    margin-bottom: 4px;
  }

  .mini-metric-val {
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 300;
    color: var(--text);
    line-height: 1;
  }

  .mini-metric-trend {
    font-family: var(--font-mono);
    font-size: 8px;
    color: var(--green);
    margin-top: 3px;
  }

  .mini-metric-trend.down { color: var(--red); }

  .ceo-blocker {
    background: rgba(245,158,11,0.06);
    border: 1px solid rgba(245,158,11,0.18);
    border-radius: 8px;
    padding: 10px;
  }

  .ceo-blocker-label {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--amber);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .blocker-item {
    font-size: 11px;
    color: var(--text-muted);
    padding: 4px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    display: flex;
    justify-content: space-between;
  }

  .blocker-item:last-child { border-bottom: none; }

  /* Dev panel */
  .board-col {
    margin-bottom: 10px;
  }

  .board-col-label {
    font-family: var(--font-mono);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .board-col-count {
    background: var(--surface-2);
    border: 1px solid var(--border);
    color: var(--text-dim);
    width: 16px; height: 16px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
  }

  .board-task {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 7px;
    padding: 8px 10px;
    margin-bottom: 5px;
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 7px;
    transition: border-color 0.2s;
  }

  .board-task:hover { border-color: var(--border-hi); }

  .task-priority {
    width: 4px; height: 4px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .p-high   { background: var(--red); }
  .p-medium { background: var(--amber); }
  .p-low    { background: var(--text-dim); }

  /* CS panel */
  .cs-customer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
  }

  .cs-customer:last-child { border-bottom: none; }

  .cs-name {
    font-size: 11.5px;
    color: var(--text);
    font-weight: 400;
  }

  .cs-stage {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--text-dim);
    margin-top: 2px;
  }

  .cs-progress {
    width: 60px;
    height: 3px;
    background: var(--surface-3);
    border-radius: 4px;
    overflow: hidden;
  }

  .cs-progress-fill {
    height: 100%;
    border-radius: 4px;
  }

  .cs-risk {
    font-family: var(--font-mono);
    font-size: 9px;
    padding: 2px 7px;
    border-radius: 20px;
  }

  .risk-ok  { color: var(--green); background: rgba(62,207,142,0.1); border: 1px solid rgba(62,207,142,0.25); }
  .risk-warn{ color: var(--amber); background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.25); }
  .risk-high{ color: var(--red);   background: rgba(248,113,113,0.1); border: 1px solid rgba(248,113,113,0.25); }

  /* ── FLOW SECTION ── */
  .flow-section {
    padding: 140px 0;
  }

  .flow-header {
    margin-bottom: 72px;
  }

  .flow-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(36px, 4.5vw, 60px);
    font-weight: 300;
    letter-spacing: -2px;
    line-height: 80px;
    max-width: 600px;
    margin-bottom: 16px;
  }

  .flow-header p {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 400px;
  }

  .flow-diagram {
    display: flex;
    align-items: center;
    gap: 0;
  }

  .flow-node {
    flex: 1;
    position: relative;
  }

  .flow-node-inner {
    background: var(--surface-1);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
    transition: border-color 0.3s, background 0.3s;
  }

  .flow-node-inner:hover {
    border-color: var(--accent);
    background: var(--surface-2);
  }

  .flow-node-num {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-dim);
    margin-bottom: 10px;
  }

  .flow-node-title {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 6px;
  }

  .flow-node-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    font-weight: 300;
  }

  .flow-arrow {
    width: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .flow-arrow svg {
    opacity: 0.25;
  }

  /* ── AUTOMATION SECTION ── */
  .automation-section {
    padding: 140px 0;
    background: var(--surface-1);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .automation-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
  }

  .automation-blocks {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .auto-block {
    display: flex;
    align-items: stretch;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
  }

  .auto-trigger {
    background: var(--surface-3);
    padding: 14px 16px;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .auto-trigger-label {
    font-family: var(--font-mono);
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    margin-bottom: 4px;
  }

  .auto-trigger-val {
    font-size: 12px;
    color: var(--text);
    font-weight: 400;
  }

  .auto-arrow-cell {
    background: var(--surface-2);
    display: flex;
    align-items: center;
    padding: 0 12px;
    color: var(--text-dim);
    font-size: 12px;
    font-family: var(--font-mono);
  }

  .auto-action {
    background: var(--surface-1);
    flex: 1;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .auto-action-label {
    font-family: var(--font-mono);
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    margin-bottom: 4px;
  }

  .auto-action-val {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 300;
  }

  /* ── AI SECTION ── */
  .ai-section {
    padding: 140px 0;
  }

  .ai-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
  }

  .ai-features {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .ai-feature {
    border-radius: 12px;
    border: 1px solid transparent;
    padding: 16px 20px;
    transition: all 0.2s;
    cursor: default;
  }

  .ai-feature:hover {
    background: var(--surface-1);
    border-color: var(--border);
  }

  .ai-feature-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .ai-inline-badge {
    font-family: var(--font-mono);
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(37,99,235,0.12);
    color: var(--accent);
    border: 1px solid rgba(37,99,235,0.25);
    padding: 2px 6px;
    border-radius: 4px;
  }

  .ai-feature-desc {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.5;
  }

  .ai-visual {
    background: var(--surface-1);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
  }

  .ai-visual-bar {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .ai-search-box {
    background: var(--surface-2);
    border: 1px solid var(--border-hi);
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
  }

  .ai-search-icon {
    color: var(--text-dim);
    font-size: 12px;
    font-family: var(--font-mono);
  }

  .ai-search-text {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
  }

  .ai-search-cursor {
    width: 1px; height: 14px;
    background: var(--accent);
    animation: blink 1s step-end infinite;
  }

  @keyframes blink {
    0%,100% { opacity: 1; }
    50%      { opacity: 0; }
  }

  .ai-results {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .ai-result-item {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .ai-result-tag {
    font-family: var(--font-mono);
    font-size: 8px;
    color: var(--text-dim);
    background: var(--surface-3);
    padding: 2px 7px;
    border-radius: 4px;
  }

  .ai-highlight { color: var(--accent); }

  /* ── PRICING ── */
  .pricing-section {
    padding: 140px 0;
  }

  .pricing-header {
    text-align: center;
    margin-bottom: 64px;
  }

  .pricing-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 300;
    letter-spacing: -2px;
    line-height: 80px;
    margin-bottom: 12px;
  }

  .pricing-header h2 em { font-style: italic; color: var(--text-muted); }

  .pricing-header p {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 300;
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 680px;
    margin: 0 auto;
  }

  .pricing-card {
    background: var(--surface-1);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    transition: border-color 0.3s, transform 0.3s;
  }

  .pricing-card:hover {
    border-color: var(--border-hi);
    transform: translateY(-4px);
  }

  .pricing-card.featured {
    border-color: rgba(37,99,235,0.3);
    background: linear-gradient(135deg, var(--surface-1), rgba(37,99,235,0.04));
    position: relative;
  }

  .pricing-card-badge {
    position: absolute;
    top: -11px; left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--accent);
    color: #fff;
    padding: 3px 12px;
    border-radius: 20px;
    white-space: nowrap;
  }

  .pricing-plan {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-dim);
    margin-bottom: 16px;
  }

  .pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 4px;
  }

  .pricing-amount {
    font-family: var(--font-mono);
    font-size: 40px;
    font-weight: 300;
    color: var(--text);
    line-height: 1;
  }

  .pricing-period {
    font-size: 13px;
    color: var(--text-dim);
  }

  .pricing-desc {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 24px;
  }

  .pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
  }

  .pricing-features li {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .pricing-features li::before {
    content: '✓';
    color: var(--green);
    font-size: 11px;
    flex-shrink: 0;
  }

  .pricing-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 11px;
    border-radius: 9px;
    font-family: var(--font-mono);
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
  }

  .pricing-cta-ghost {
    background: var(--surface-2);
    border: 1px solid var(--border-hi);
    color: var(--text);
  }

  .pricing-cta-ghost:hover {
    background: var(--surface-3);
  }

  .pricing-cta-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 0 24px rgba(37,99,235,0.25);
  }

  .pricing-cta-primary:hover {
    background: #3B82F6;
    box-shadow: 0 0 32px rgba(37,99,235,0.4);
    transform: translateY(-1px);
  }

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

  /* ── CLOSING ── */
  .closing-section {
    padding: 200px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .closing-glow {
    position: absolute;
    bottom: -100px; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 400px;
    background: radial-gradient(ellipse, rgba(37,99,235,0.1) 0%, transparent 65%);
    pointer-events: none;
  }

  .closing-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 300;
    letter-spacing: -2px;
    line-height: 80px;
    margin-bottom: 32px;
    position: relative;
  }

  .closing-section h2 em { font-style: italic; color: var(--text-muted); }

  .closing-sub {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 48px;
    font-weight: 300;
  }

  /* ── FOOTER ── */
  footer {
    border-top: 1px solid var(--border);
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
  }

  .footer-logo {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
  }

  .footer-note {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-dim);
  }

  /* ── DIVIDERS ── */
  .divider {
    height: 1px;
    background: var(--border);
  }

  /* ── SCROLL REVEAL ── */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .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; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 60px; }
    .statement-section .container { grid-template-columns: 1fr; gap: 60px; }
    .statement-section.flip .container { direction: ltr; }
    .layers-grid { grid-template-columns: 1fr; }
    .flow-diagram { flex-direction: column; }
    .flow-arrow { transform: rotate(90deg); }
    .automation-inner { grid-template-columns: 1fr; gap: 60px; }
    .ai-inner { grid-template-columns: 1fr; gap: 60px; }
    nav { padding: 0 20px; }
    .nav-links { display: none; }
    .hero-inner, .container { padding: 80px 24px; }
  }
