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

    :root {
      --navy: #0A1628;
      --navy-mid: #0F2044;
      --navy-light: #162A54;
      --cobalt: #1E6FFF;
      --cobalt-dim: rgba(30, 111, 255, 0.12);
      --cobalt-bright: #4D8FFF;
      --white: #FFFFFF;
      --off-white: #F0F4FF;
      --gray-100: #E8EDF8;
      --gray-400: #8A97B8;
      --gray-500: #5E6E94;
      --black: #060D1A;
      --font-display: 'Space Grotesk', sans-serif;
      --font-body: 'DM Sans', sans-serif;
      --font-mono: 'DM Mono', monospace;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--navy);
      color: var(--white);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 0 40px;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(10, 22, 40, 0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(30, 111, 255, 0.12);
      transition: background 0.3s;
    }

    .nav-logo {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 20px;
      letter-spacing: -0.5px;
      color: var(--white);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .logo-dot {
      width: 8px;
      height: 8px;
      background: var(--cobalt);
      border-radius: 50%;
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.5;
        transform: scale(0.7);
      }
    }

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

    .nav-links a {
      font-size: 14px;
      font-weight: 400;
      color: var(--gray-400);
      text-decoration: none;
      transition: color 0.2s;
      letter-spacing: 0.01em;
    }

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

    .nav-cta {
      background: var(--cobalt);
      color: var(--white) !important;
      padding: 8px 20px;
      border-radius: 6px;
      font-weight: 500 !important;
      transition: background 0.2s, transform 0.15s !important;
    }

    .nav-cta:hover {
      background: var(--cobalt-bright) !important;
      transform: translateY(-1px);
    }

    /* HERO */
    .hero {
      min-height: 100vh;
      padding: 120px 40px 80px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    .hero-eyebrow {
      font-family: var(--font-mono);
      font-size: 12px;
      font-weight: 500;
      color: var(--cobalt);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .hero-eyebrow::before {
      content: '';
      width: 32px;
      height: 1px;
      background: var(--cobalt);
      display: block;
    }

    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(36px, 4.5vw, 58px);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -1.5px;
      color: var(--white);
      margin-bottom: 24px;
    }

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

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

    .hero-sub strong {
      color: var(--off-white);
      font-weight: 500;
    }

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

    .btn-primary {
      background: var(--cobalt);
      color: var(--white);
      padding: 14px 28px;
      border-radius: 8px;
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 500;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 4px 24px rgba(30, 111, 255, 0.3);
    }

    .btn-primary:hover {
      background: var(--cobalt-bright);
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(30, 111, 255, 0.45);
    }

    .btn-secondary {
      color: var(--gray-400);
      font-size: 15px;
      font-weight: 400;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: color 0.2s;
      letter-spacing: 0.01em;
    }

    .btn-secondary:hover {
      color: var(--white);
    }

    .hero-proof {
      margin-top: 48px;
      display: flex;
      gap: 32px;
    }

    .proof-stat .num {
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 700;
      color: var(--white);
      letter-spacing: -0.5px;
    }

    .proof-stat .label {
      font-size: 12px;
      color: var(--gray-500);
      margin-top: 2px;
      font-family: var(--font-mono);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    /* WORKFLOW DIAGRAM */
    .workflow-diagram {
      background: var(--navy-mid);
      border: 1px solid rgba(30, 111, 255, 0.2);
      border-radius: 16px;
      padding: 32px;
      position: relative;
      overflow: hidden;
    }

    .workflow-diagram::before {
      content: '';
      position: absolute;
      top: -60px;
      right: -60px;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(30, 111, 255, 0.15) 0%, transparent 70%);
      pointer-events: none;
    }

    .diagram-label {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--gray-500);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .workflow-canvas {
      width: 100%;
      height: 320px;
    }

    .wf-node {
      cursor: default;
      transition: all 0.3s;
    }

    .wf-node rect {
      rx: 8;
      transition: fill 0.4s, stroke 0.4s;
    }

    .wf-node.active rect {
      fill: rgba(30, 111, 255, 0.25) !important;
      stroke: #1E6FFF !important;
    }

    .wf-node.done rect {
      fill: rgba(30, 111, 255, 0.1) !important;
      stroke: rgba(30, 111, 255, 0.5) !important;
    }

    .wf-edge {
      stroke-dasharray: 6, 4;
      stroke-dashoffset: 0;
      animation: flow 2s linear infinite;
    }

    .wf-edge.active {
      stroke: var(--cobalt) !important;
      opacity: 1 !important;
    }

    @keyframes flow {
      to {
        stroke-dashoffset: -20;
      }
    }

    /* SECTION BASE */
    section {
      padding: 100px 40px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-full {
      max-width: 100%;
      background: var(--navy-mid);
    }

    .section-full>.inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 100px 40px;
    }

    .section-tag {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 500;
      color: var(--cobalt);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .section-h2 {
      font-family: var(--font-display);
      font-size: clamp(28px, 3vw, 42px);
      font-weight: 700;
      letter-spacing: -1px;
      line-height: 1.15;
      color: var(--white);
      margin-bottom: 16px;
    }

    .section-sub {
      font-size: 17px;
      color: var(--gray-400);
      font-weight: 300;
      max-width: 560px;
      line-height: 1.7;
    }

    /* DIVIDER */
    .divider {
      border: none;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      margin: 0;
    }

    /* VALUE PROP */
    .value-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      margin-top: 60px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 12px;
      overflow: hidden;
    }

    .value-card {
      background: var(--navy-mid);
      padding: 40px 32px;
      position: relative;
      transition: background 0.3s;
    }

    .value-card:hover {
      background: var(--navy-light);
    }

    .value-card+.value-card {
      border-left: 1px solid rgba(255, 255, 255, 0.06);
    }

    .value-icon {
      width: 40px;
      height: 40px;
      background: var(--cobalt-dim);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      font-size: 18px;
    }

    .value-card h3 {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 10px;
      letter-spacing: -0.3px;
    }

    .value-card p {
      font-size: 14px;
      color: var(--gray-400);
      line-height: 1.65;
      font-weight: 300;
    }

    /* COMPARISON TABLE */
    .comparison-wrap {
      margin-top: 60px;
      overflow-x: auto;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
    }

    thead th {
      padding: 14px 20px;
      text-align: left;
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gray-500);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    thead th:first-child {
      color: var(--gray-400);
    }

    thead th.highlight-col {
      color: var(--cobalt-bright);
      background: rgba(30, 111, 255, 0.07);
      border-radius: 8px 8px 0 0;
    }

    tbody tr {
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    tbody tr:hover td {
      background: rgba(255, 255, 255, 0.02);
    }

    tbody td {
      padding: 16px 20px;
      color: var(--gray-400);
      vertical-align: middle;
    }

    tbody td:first-child {
      color: var(--white);
      font-weight: 400;
      font-size: 13px;
    }

    tbody td.highlight-col {
      background: rgba(30, 111, 255, 0.05);
      color: var(--white);
      font-weight: 500;
    }

    .check {
      color: #22C55E;
      font-size: 16px;
    }

    .cross {
      color: #EF4444;
      font-size: 16px;
    }

    .neutral {
      color: var(--gray-500);
    }

    /* WORKFLOWS */
    .workflow-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin-top: 48px;
    }

    .wf-chip {
      background: var(--navy-mid);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 8px;
      padding: 16px 18px;
      font-size: 13px;
      color: var(--gray-400);
      font-family: var(--font-body);
      font-weight: 400;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: all 0.25s;
      cursor: default;
    }

    .wf-chip:hover {
      border-color: rgba(30, 111, 255, 0.4);
      background: rgba(30, 111, 255, 0.08);
      color: var(--white);
      transform: translateY(-2px);
    }

    .wf-chip .wf-dot {
      width: 6px;
      height: 6px;
      background: var(--cobalt);
      border-radius: 50%;
      flex-shrink: 0;
      opacity: 0.6;
    }

    .wf-chip:hover .wf-dot {
      opacity: 1;
    }

    /* TECH STACK */
    .stack-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 40px;
    }

    .stack-badge {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 100px;
      padding: 8px 18px;
      font-family: var(--font-mono);
      font-size: 13px;
      color: var(--gray-400);
      letter-spacing: 0.03em;
      transition: all 0.2s;
    }

    .stack-badge:hover {
      border-color: rgba(30, 111, 255, 0.5);
      color: var(--cobalt-bright);
      background: rgba(30, 111, 255, 0.07);
    }

    /* DEPLOY OPTIONS */
    .deploy-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 48px;
    }

    .deploy-card {
      background: var(--navy);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 14px;
      padding: 36px;
      position: relative;
      overflow: hidden;
      transition: border-color 0.3s;
    }

    .deploy-card:hover {
      border-color: rgba(30, 111, 255, 0.4);
    }

    .deploy-card::after {
      content: '';
      position: absolute;
      bottom: -40px;
      right: -40px;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(30, 111, 255, 0.1) 0%, transparent 70%);
      pointer-events: none;
    }

    .deploy-badge {
      display: inline-block;
      background: var(--cobalt-dim);
      color: var(--cobalt-bright);
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 4px;
      margin-bottom: 20px;
    }

    .deploy-card h3 {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 600;
      letter-spacing: -0.3px;
      margin-bottom: 12px;
    }

    .deploy-card p {
      font-size: 14px;
      color: var(--gray-400);
      line-height: 1.65;
      font-weight: 300;
      margin-bottom: 24px;
    }

    .deploy-items {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .deploy-items li {
      font-family: var(--font-mono);
      font-size: 13px;
      color: var(--gray-500);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .deploy-items li::before {
      content: 'â†’';
      color: var(--cobalt);
      font-size: 12px;
    }

    /* PROCESS */
    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      margin-top: 60px;
      position: relative;
    }

    .process-steps::before {
      content: '';
      position: absolute;
      top: 28px;
      left: 10%;
      right: 10%;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(30, 111, 255, 0.4), rgba(30, 111, 255, 0.4), transparent);
    }

    .process-step {
      padding: 0 20px;
      text-align: center;
      position: relative;
    }

    .step-num {
      width: 56px;
      height: 56px;
      background: var(--navy-mid);
      border: 1px solid rgba(30, 111, 255, 0.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 700;
      color: var(--cobalt-bright);
      margin: 0 auto 20px;
      position: relative;
      z-index: 1;
      background: var(--navy);
    }

    .process-step h4 {
      font-family: var(--font-display);
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .process-step p {
      font-size: 13px;
      color: var(--gray-400);
      line-height: 1.6;
      font-weight: 300;
    }

    /* PRICING */
    .pricing-highlight {
      margin-top: 60px;
      background: var(--navy-mid);
      border: 1px solid rgba(30, 111, 255, 0.25);
      border-radius: 20px;
      padding: 56px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .pricing-highlight::before {
      content: '';
      position: absolute;
      top: -80px;
      right: -80px;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(30, 111, 255, 0.12) 0%, transparent 65%);
      pointer-events: none;
    }

    .price-tag {
      font-family: var(--font-display);
      font-size: 64px;
      font-weight: 700;
      letter-spacing: -3px;
      color: var(--white);
      line-height: 1;
      margin-bottom: 8px;
    }

    .price-tag span {
      font-size: 28px;
      font-weight: 400;
      letter-spacing: -0.5px;
      color: var(--gray-500);
    }

    .price-label {
      font-family: var(--font-mono);
      font-size: 12px;
      color: var(--cobalt);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .price-description {
      font-size: 16px;
      color: var(--gray-400);
      line-height: 1.7;
      font-weight: 300;
    }

    .pricing-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .pricing-features li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      font-size: 15px;
      color: var(--gray-400);
      line-height: 1.5;
    }

    .pricing-features li .pf-check {
      width: 20px;
      height: 20px;
      background: rgba(34, 197, 94, 0.12);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      flex-shrink: 0;
      margin-top: 2px;
      color: #22C55E;
    }

    .refund-note {
      margin-top: 32px;
      padding: 16px 20px;
      background: rgba(34, 197, 94, 0.07);
      border: 1px solid rgba(34, 197, 94, 0.2);
      border-radius: 8px;
      font-size: 13px;
      color: #86EFAC;
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 400;
    }

    /* OBSERVABILITY */
    .obs-section {
      margin-top: 60px;
      display: flex;
      flex-direction: column;
      gap: 60px;
    }

    .obs-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .obs-row.reverse {
      direction: rtl;
    }

    .obs-row.reverse>* {
      direction: ltr;
    }

    .obs-visual {
      background: var(--navy-mid);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 14px;
      padding: 28px;
      font-family: var(--font-mono);
      font-size: 12px;
      line-height: 2;
    }

    /* Dashboard Preview Widget */
    .dash-preview {
      background: #080b11;
      border: 1px solid rgba(13, 255, 214, 0.18);
      border-radius: 14px;
      padding: 20px;
      overflow: hidden;
      font-family: 'DM Mono', monospace;
    }

    .dash-preview-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(13, 255, 214, 0.1);
    }

    .dash-preview-title {
      font-size: 11px;
      font-weight: 600;
      color: #0dffd6;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .dash-live-dot {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 10px;
      color: #10b981;
    }

    .dash-live-dot::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #10b981;
      box-shadow: 0 0 6px #10b981;
      animation: pulse 2s ease-in-out infinite;
    }

    .dash-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin-bottom: 14px;
    }

    .dash-stat {
      background: rgba(22, 28, 45, 0.7);
      border: 1px solid rgba(13, 255, 214, 0.1);
      border-radius: 8px;
      padding: 10px;
    }

    .dash-stat-label {
      font-size: 9px;
      color: #64748b;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .dash-stat-value {
      font-size: 20px;
      font-weight: 700;
      background: linear-gradient(135deg, #ffffff, #0dffd6);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-top: 2px;
    }

    .dash-stat.alert .dash-stat-value {
      background: linear-gradient(135deg, #ffffff, #f43f5e);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .dash-table-wrap {
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 6px;
      overflow: hidden;
      margin-bottom: 10px;
    }

    .dash-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 10px;
    }

    .dash-table th {
      background: rgba(10, 14, 23, 0.8);
      color: #64748b;
      padding: 6px 10px;
      text-align: left;
      text-transform: uppercase;
      font-size: 9px;
      letter-spacing: 0.05em;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dash-table td {
      padding: 7px 10px;
      color: #94a3b8;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .dash-table tr:last-child td {
      border-bottom: none;
    }

    .dash-table tr:hover td {
      background: rgba(255, 255, 255, 0.02);
    }

    .dash-badge {
      display: inline-block;
      padding: 2px 6px;
      border-radius: 3px;
      font-size: 8px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.3px;
    }

    .dash-badge-ok {
      background: rgba(16, 185, 129, 0.1);
      color: #10b981;
      border: 1px solid rgba(16, 185, 129, 0.2);
    }

    .dash-badge-pend {
      background: rgba(245, 158, 11, 0.1);
      color: #f59e0b;
      border: 1px solid rgba(245, 158, 11, 0.2);
    }

    .dash-badge-exc {
      background: rgba(244, 63, 94, 0.1);
      color: #f43f5e;
      border: 1px solid rgba(244, 63, 94, 0.2);
    }

    .dash-exc-item {
      background: rgba(244, 63, 94, 0.05);
      border: 1px solid rgba(244, 63, 94, 0.15);
      border-left: 3px solid #f43f5e;
      border-radius: 6px;
      padding: 8px 12px;
      font-size: 10px;
      color: #94a3b8;
      margin-bottom: 6px;
    }

    .dash-exc-id {
      color: #f8fafc;
      font-weight: 600;
      margin-bottom: 2px;
    }

    .dash-exc-desc {
      font-size: 9px;
      color: #f43f5e;
      opacity: 0.8;
    }

    .log-line {
      display: flex;
      gap: 12px;
    }

    .log-ts {
      color: var(--gray-500);
    }

    .log-ok {
      color: #22C55E;
    }

    .log-warn {
      color: #F59E0B;
    }

    .log-info {
      color: var(--cobalt-bright);
    }

    .log-msg {
      color: var(--gray-400);
    }

    .human-badge {
      margin-top: 20px;
      background: rgba(245, 158, 11, 0.1);
      border: 1px solid rgba(245, 158, 11, 0.25);
      border-radius: 8px;
      padding: 12px 16px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: #FCD34D;
    }

    .human-badge .hi-dot {
      width: 8px;
      height: 8px;
      background: #F59E0B;
      border-radius: 50%;
      animation: pulse 1.5s ease-in-out infinite;
    }

    .obs-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .obs-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .obs-icon {
      width: 36px;
      height: 36px;
      background: var(--cobalt-dim);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
    }

    .obs-item h4 {
      font-family: var(--font-display);
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .obs-item p {
      font-size: 13px;
      color: var(--gray-400);
      line-height: 1.6;
      font-weight: 300;
    }

    /* CTA FINAL */
    .cta-section {
      text-align: center;
      padding: 120px 40px;
      max-width: 800px;
      margin: 0 auto;
    }

    .cta-section h2 {
      font-family: var(--font-display);
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 700;
      letter-spacing: -1.5px;
      line-height: 1.1;
      margin-bottom: 20px;
    }

    .cta-section p {
      font-size: 18px;
      color: var(--gray-400);
      font-weight: 300;
      margin-bottom: 40px;
      line-height: 1.65;
    }

    /* FOOTER */
    footer {
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding: 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-logo {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 16px;
      color: var(--white);
    }

    .footer-copy {
      font-size: 13px;
      color: var(--gray-500);
    }

    /* MODAL */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(6, 13, 26, 0.85);
      backdrop-filter: blur(8px);
      z-index: 1000;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .modal-overlay.open {
      display: flex;
    }

    .modal-box {
      background: var(--navy-mid);
      border: 1px solid rgba(30, 111, 255, 0.25);
      border-radius: 20px;
      padding: 48px;
      height: 95%;
      max-width: 480px;
      width: 100%;
      position: relative;
      animation: slideUp 0.3s ease;
      overflow-y: auto;
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .modal-close {
      position: absolute;
      top: 20px;
      right: 20px;
      background: none;
      border: none;
      color: var(--gray-500);
      font-size: 20px;
      cursor: pointer;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 6px;
      transition: color 0.2s, background 0.2s;
    }

    .modal-close:hover {
      color: var(--white);
      background: rgba(255, 255, 255, 0.07);
    }

    .modal-box h3 {
      font-family: var(--font-display);
      font-size: 26px;
      font-weight: 700;
      letter-spacing: -0.5px;
      margin-bottom: 8px;
    }

    .modal-box .modal-sub {
      font-size: 14px;
      color: var(--gray-400);
      margin-bottom: 32px;
      font-weight: 300;
    }

    .form-field {
      margin-bottom: 16px;
    }

    .form-field label {
      display: block;
      font-size: 12px;
      font-family: var(--font-mono);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--gray-500);
      margin-bottom: 6px;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
      width: 100%;
      background: var(--navy);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      padding: 12px 16px;
      font-family: var(--font-body);
      font-size: 14px;
      color: var(--white);
      outline: none;
      transition: border-color 0.2s;
    }

    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus {
      border-color: var(--cobalt);
    }

    .form-field select {
      cursor: pointer;
      appearance: none;
    }

    .form-field textarea {
      resize: vertical;
      min-height: 80px;
    }

    .form-submit {
      width: 100%;
      background: var(--cobalt);
      color: var(--white);
      border: none;
      border-radius: 8px;
      padding: 14px;
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
      margin-top: 8px;
      transition: background 0.2s;
    }

    .form-submit:hover {
      background: var(--cobalt-bright);
    }

    .form-note {
      font-size: 12px;
      color: var(--gray-500);
      text-align: center;
      margin-top: 12px;
    }

    /* Scroll reveal */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      nav {
        padding: 0 20px;
      }

      .nav-links {
        gap: 16px;
      }

      .hero {
        grid-template-columns: 1fr;
        padding: 100px 20px 60px;
        gap: 48px;
      }

      section {
        padding: 70px 20px;
      }

      .section-full>.inner {
        padding: 70px 20px;
      }

      .value-grid {
        grid-template-columns: 1fr;
      }

      .value-card+.value-card {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
      }

      .workflow-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .deploy-cards {
        grid-template-columns: 1fr;
      }

      .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
      }

      .process-steps::before {
        display: none;
      }

      .pricing-highlight {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 36px;
      }

      .obs-row {
        grid-template-columns: 1fr;
      }

      .obs-row.reverse {
        direction: ltr;
      }

      footer {
        flex-direction: column;
        gap: 12px;
        text-align: center;
      }

      .nav-links li:not(:last-child) {
        display: none;
      }

      .price-tag {
        font-size: 48px;
      }

      .modal-box {
        padding: 32px 24px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .wf-edge {
        animation: none;
      }

      .logo-dot {
        animation: none;
      }

      .human-badge .hi-dot {
        animation: none;
      }

      .reveal {
        opacity: 1;
        transform: none;
        transition: none;
      }
    }

/* ==========================================
   ESTILOS DE BLOG (INSPIRACIÓN ZOMMA LABS)
   ========================================== */

.blog-hero {
  padding: 140px 40px 60px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 12px;
}

.blog-hero-sub {
  font-size: 18px;
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 300;
}

.blog-section {
  padding: 40px 40px 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-lead {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 48px;
  text-decoration: none;
  color: var(--white);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.blog-lead:hover {
  border-color: rgba(30, 111, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.bl-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bl-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 13px;
}

.tag-chip {
  background: var(--cobalt-dim);
  color: var(--cobalt-bright);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 500;
}

.bl-meta time {
  color: var(--gray-400);
}

.bl-flag {
  background: rgba(34, 197, 94, 0.12);
  color: #22C55E;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 600;
}

.bl-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
  transition: color 0.2s;
}

.blog-lead:hover .bl-title {
  color: var(--cobalt-bright);
}

.bl-dek {
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-400);
  font-weight: 300;
  margin-bottom: 28px;
}

.bl-read {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--cobalt-bright);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.bl-read::after {
  content: '→';
  transition: transform 0.2s;
}

.blog-lead:hover .bl-read::after {
  transform: translateX(4px);
}

/* Gráfico animado del Lead Post (Estilo Zomma) */
.blogart {
  position: relative;
  background: #060d1a;
  border: 1px solid rgba(30, 111, 255, 0.15);
  border-radius: 12px;
  height: 280px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-scene {
  position: relative;
  width: 90%;
  height: 90%;
}

.ba-win {
  position: absolute;
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.ba-win.wb {
  width: 170px;
  height: 120px;
  top: 15px;
  left: 15px;
  z-index: 1;
}

.ba-win.wf {
  width: 180px;
  height: 130px;
  bottom: 15px;
  right: 15px;
  z-index: 2;
  border-color: rgba(30, 111, 255, 0.3);
}

.ba-tb {
  height: 24px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--gray-400);
}

.ba-ctrls b {
  font-weight: normal;
  margin-left: 4px;
  opacity: 0.5;
}

.ba-body {
  padding: 12px;
  height: calc(100% - 24px);
}

.ba-doc {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ba-doc span {
  display: block;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.ba-tbl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  height: 100%;
}

.ba-tbl span {
  background: rgba(30, 111, 255, 0.05);
  border-radius: 4px;
  height: 18px;
}

.ba-tbl span.n {
  background: rgba(255, 255, 255, 0.03);
}

.ba-tbl span.hl {
  background: rgba(30, 111, 255, 0.2) !important;
  border: 1px solid var(--cobalt);
  animation: cellPulse 2s infinite ease-in-out;
}

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

.ba-cur {
  position: absolute;
  width: 14px;
  height: 14px;
  z-index: 3;
  animation: curMove 4s infinite ease-in-out;
  pointer-events: none;
}

@keyframes curMove {
  0% { top: 70px; left: 180px; }
  30% { top: 35px; left: 60px; }
  45% { top: 35px; left: 60px; }
  75% { top: 95px; left: 220px; }
  100% { top: 70px; left: 180px; }
}

/* Fila de Artículos en Listado */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  color: var(--white);
  transition: background 0.25s, border-color 0.25s, padding-left 0.25s;
}

.blog-row:hover {
  background: rgba(30, 111, 255, 0.02);
  border-color: rgba(30, 111, 255, 0.3);
  padding-left: 24px;
}

.br-main {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 85%;
}

.br-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
}

.br-meta time {
  color: var(--gray-500);
}

.br-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  letter-spacing: -0.4px;
  margin: 0;
  transition: color 0.2s;
}

.blog-row:hover .br-title {
  color: var(--cobalt-bright);
}

.br-dek {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.5;
  font-weight: 300;
  margin: 0;
}

.br-arrow {
  color: var(--gray-500);
  font-size: 18px;
  transition: color 0.2s, transform 0.2s;
}

.blog-row:hover .br-arrow {
  color: var(--cobalt-bright);
  transform: translateX(4px);
}

/* Vista de Lector de Artículos Individual */
.post-header {
  padding: 140px 20px 40px;
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.post-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-400);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 32px;
  transition: color 0.2s;
}

.post-back:hover {
  color: var(--white);
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 13px;
}

.post-header h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 20px;
}

.post-header-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--gray-400);
  font-weight: 300;
  margin-bottom: 0;
}

.post-content-wrap {
  padding: 20px 20px 100px;
  max-width: 720px;
  margin: 0 auto;
}

.post-content {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  color: var(--off-white);
  font-weight: 300;
}

.post-content p {
  margin-bottom: 24px;
}

.post-content h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-top: 48px;
  margin-bottom: 16px;
}

.post-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--white);
  margin-top: 32px;
  margin-bottom: 12px;
}

.post-content ul, .post-content ol {
  margin-left: 24px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.post-content li {
  color: var(--off-white);
}

.post-content blockquote {
  border-left: 3px solid var(--cobalt);
  padding: 8px 0 8px 24px;
  margin: 32px 0;
  font-style: italic;
  color: var(--gray-400);
}

.post-content strong {
  color: var(--white);
  font-weight: 500;
}

.post-content pre {
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 20px;
  overflow-x: auto;
  margin-bottom: 24px;
}

.post-content code {
  font-family: var(--font-mono);
  font-size: 14px;
  background: rgba(255, 255, 255, 0.04);
  padding: 2px 6px;
  border-radius: 4px;
}

.post-content pre code {
  background: none;
  padding: 0;
  border-radius: 0;
}

/* Adaptabilidad para Móviles */
@media (max-width: 900px) {
  .blog-hero {
    padding: 100px 20px 40px;
  }
  
  .blog-section {
    padding: 20px 20px 60px;
  }
  
  .blog-lead {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }
  
  .blogart {
    height: 200px;
  }
  
  .blog-row {
    padding: 24px 8px;
  }
  
  .br-main {
    max-width: 90%;
  }
  
  .post-header {
    padding: 100px 20px 30px;
  }
  
  .post-content-wrap {
    padding-bottom: 60px;
  }
}

