
  :root {
    --bg: #070e17;
    --bg-2: #0a1420;
    --bg-3: #0f1a28;
    --surface: #101a2a;
    --surface-2: #16223a;
    --border: #1f2c3e;
    --border-soft: rgba(255,255,255,.06);
    --text: #e9eff8;
    --text-dim: #9aabc4;
    --text-mute: #6b7c95;
    --teal: #2AAFA5;
    --teal-bright: #3ed3c6;
    --teal-soft: rgba(42,175,165,.12);
    --orange: #FF6B2C;
    --orange-soft: rgba(255,107,44,.12);
    --red: #ef5a5a;
    --amber: #f5b441;
    --green: #4ad295;
    --light: #ffffff;
    --light-2: #f6f8fc;
    --light-3: #eef2f8;
    --ink: #0a1420;
    --ink-2: #1c2a3e;
    --ink-3: #4b5b76;
    --border-light: #e4eaf3;
    --radius: 14px;
    --radius-lg: 20px;
    --shadow-card: 0 1px 0 rgba(255,255,255,.04) inset, 0 20px 40px -20px rgba(0,0,0,.5);
    --shadow-lift: 0 30px 60px -30px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.05) inset;
    --ease: cubic-bezier(.22,.61,.36,1);
  }

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--light);
    color: var(--ink);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
  img { display: block; max-width: 100%; }

  /* -------- NAV -------- */
  .nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(7,14,23,.78);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border-bottom: 1px solid rgba(255,255,255,.06);
    color: var(--text);
    height: 60px
  }
  .nav-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 18px 32px;
    display: flex; align-items: center; justify-content: space-between; 
    gap: 32px;
  }
  .logo {
    font-weight: 700; letter-spacing: .14em;
    font-size: 18px; display: inline-flex; align-items: center;
  }
  .logo .b { color: var(--text); }
  .logo .a { color: var(--teal-bright); }
  .nav-links { display: flex; gap: 28px; flex: 1; justify-content: center; }
  .nav-links a {
    font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
    color: var(--text-dim); padding: 6px 2px;
    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s;
    cursor: pointer;
  }
  .nav-links a:hover { color: var(--text); }
  .nav-links a.active { color: var(--text); border-bottom-color: var(--teal-bright); }
  .menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.04);
    color: var(--text);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    flex-shrink: 0;
  }
  .menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform .2s var(--ease), opacity .2s var(--ease);
  }
  .nav.is-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .nav.is-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 22px; border-radius: 999px;
    font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
    cursor: pointer;
  }
  .btn-primary {
    background: var(--teal); color: #02201e;
    box-shadow: 0 10px 28px -10px var(--teal);
  }
  .btn-primary:hover { background: var(--teal-bright); transform: translateY(-1px); }
  .btn-ghost {
    background: transparent; color: var(--text);
    border: 1px solid rgba(255,255,255,.18);
  }
  .btn-ghost:hover { border-color: var(--text); }
  .btn-light {
    background: var(--ink); color: var(--light);
  }
  .btn-light:hover { background: #1a2740; }
  .btn .arrow { transition: transform .25s var(--ease); }
  .btn:hover .arrow { transform: translateX(3px); }

  /* -------- PAGE -------- */
  .page { display: block; animation: fadeUp .5s var(--ease); }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: none; }
  }

  /* -------- HERO -------- */
  .hero {
    background: radial-gradient(1200px 600px at 80% -10%, rgba(42,175,165,.18), transparent 60%),
                radial-gradient(900px 500px at -10% 30%, rgba(58,111,168,.16), transparent 60%),
                linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
    color: var(--text);
    padding: 88px 0 120px;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: ""; position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent 80%);
    pointer-events: none;
  }
  .container {
    max-width: 1200px; margin: 0 auto; padding: 0 32px;
    position: relative; z-index: 1;
    padding-top: 8px;
  }
  .hero-grid {
    display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center;
  }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 6px 14px; border-radius: 999px;
    background: var(--teal-soft); color: var(--teal-bright);
    font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
    border: 1px solid rgba(62,211,198,.2);
    margin-bottom: 24px;
  }
  .eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal-bright); box-shadow: 0 0 12px var(--teal-bright); }
  h1.hero-title {
    font-size: clamp(40px, 5.2vw, 64px);
    line-height: 1.04; letter-spacing: -.02em; font-weight: 700;
    margin: 0 0 22px;
  }
  h1 .accent { color: var(--teal-bright); display: block; }
  .hero-sub {
    font-size: 18px; color: var(--text-dim); max-width: 520px; margin: 0 0 36px;
  }
  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
  .hero-meta {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 28px; max-width: 540px;
  }
  .meta {
    display: flex; gap: 14px; align-items: flex-start;
  }
  .meta-icon {
    width: 38px; height: 38px; border-radius: 10px;
    display: grid; place-items: center; flex-shrink: 0;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    color: var(--teal-bright);
  }
  .meta-label { font-size: 14px; font-weight: 600; color: var(--text); }
  .meta-sub { font-size: 13px; color: var(--text-mute); margin-top: 2px; }

  /* -------- DASHBOARD MOCK -------- */
  .dash {
    background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 22px;
    box-shadow: var(--shadow-lift);
    backdrop-filter: blur(20px);
    position: relative;
    transform: perspective(1600px) rotateY(-3deg) rotateX(2deg);
    transition: transform .6s var(--ease);
  }
  .dash:hover { transform: perspective(1600px) rotateY(-1deg) rotateX(0deg); }
  .dash-bar {
    display: flex; gap: 6px; margin-bottom: 16px;
  }
  .dash-bar span {
    width: 9px; height: 9px; border-radius: 50%;
    background: rgba(255,255,255,.18);
  }
  .dash-title {
    font-size: 13px; color: var(--text-dim); letter-spacing: .04em;
    margin-bottom: 14px;
  }
  .dash-stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 18px;
  }
  .dash-stat {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 10px; padding: 12px;
  }
  .dash-stat .l { font-size: 10px; color: var(--text-mute); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
  .dash-stat .v { font-size: 22px; font-weight: 700; color: var(--text); }
  .dash-stat.accent .v { color: var(--teal-bright); }
  .dash-stat.warn .v { color: var(--orange); }
  .dash-stat.danger .v { color: var(--red); }
  .dash-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  }
  .dash-panel {
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 10px; padding: 14px;
  }
  .dash-panel-title {
    font-size: 11px; color: var(--text-mute); text-transform: uppercase;
    letter-spacing: .1em; margin-bottom: 10px;
  }
  .heatmap {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px;
  }
  .heatmap .cell { aspect-ratio: 1; border-radius: 3px; }
  .top-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
  .top-row .k { font-size: 12px; color: var(--text-dim); }
  .top-row .v { font-size: 13px; font-weight: 600; color: var(--text); }
  .top-row .v.teal { color: var(--teal-bright); }
  .top-row .v.amber { color: var(--amber); }
  .top-row .v.green { color: var(--green); }
  .top-row .v.red { color: var(--red); }
  .dash-panel hr { border: 0; border-top: 1px solid rgba(255,255,255,.06); margin: 8px 0; }

  /* -------- SECTIONS -------- */
  section.block { padding: 100px 0; }
  section[id] { scroll-margin-top: 88px; }
  section.block.alt { background: var(--light-2); }
  .section-head { max-width: 720px; margin-bottom: 56px; }
  h2.section-title {
    font-size: clamp(28px, 3.6vw, 40px); font-weight: 700;
    letter-spacing: -.015em; line-height: 1.15; margin: 0 0 6px;
  }
  h2 .accent { color: var(--teal); display: block; }
  .section-lead { color: var(--ink-3); font-size: 17px; margin: 0; }

  /* Pain cards */
  .two-col {
    display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px;
    align-items: start;
  }
  .pain-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  }
  .card {
    background: var(--light); border: 1px solid var(--border-light);
    border-radius: var(--radius); padding: 22px;
    transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
  }
  .card:hover {
    transform: translateY(-3px);
    border-color: var(--teal);
    box-shadow: 0 20px 40px -25px rgba(42,175,165,.4);
  }
  .card .icon {
    width: 38px; height: 38px; border-radius: 10px;
    background: var(--teal-soft); color: var(--teal);
    display: grid; place-items: center; margin-bottom: 14px;
  }
  .card h4 { margin: 0 0 8px; font-size: 16px; font-weight: 600; }
  .card p { margin: 0; color: var(--ink-3); font-size: 14px; }

  .audience {
    background: var(--light); border: 1px solid var(--border-light);
    border-radius: var(--radius-lg); padding: 32px;
  }
  .audience h3 { margin: 0 0 22px; font-size: 22px; line-height: 1.25; font-weight: 700; max-width: 360px; }
  .roles {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-bottom: 22px;
  }
  .role {
    text-align: center; font-size: 12px; color: var(--ink-2); font-weight: 500;
  }
  .role-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, #e8f6f4, #d3ece8);
    color: var(--teal); margin: 0 auto 10px;
    display: grid; place-items: center;
  }
  .audience-body { font-size: 14px; color: var(--ink-3); }
  .audience-body .sector { color: var(--teal); border-bottom: 1px solid var(--teal-soft); }

  /* Process */
  .process {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    position: relative;
  }
  .step { position: relative; }
  .step-head { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; }
  .step-num {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--ink); color: var(--light);
    display: grid; place-items: center;
    font-size: 14px; font-weight: 600;
  }
  .step:nth-child(2) .step-num { background: var(--teal); color: #02201e; }
  .step:nth-child(3) .step-num { background: var(--ink); }
  .step-icon {
    width: 36px; height: 36px; border-radius: 10px;
    background: var(--teal-soft); color: var(--teal);
    display: grid; place-items: center;
  }
  .step-label { font-size: 12px; color: var(--ink-3); text-transform: uppercase; letter-spacing: .12em; font-weight: 600; }
  .step h4 { margin: 2px 0 14px; font-size: 17px; }
  .step ul { margin: 0; padding-left: 0; list-style: none; }
  .step li {
    font-size: 14px; color: var(--ink-2); padding: 6px 0 6px 18px; position: relative;
  }
  .step li::before {
    content: ""; position: absolute; left: 0; top: 13px;
    width: 6px; height: 6px; border-radius: 50%; background: var(--teal);
  }
  .step-arrow {
    position: absolute; top: 14px; right: -16px;
    color: var(--ink-3); font-size: 20px;
  }
  .outcome {
    background: var(--teal-soft);
    border: 1px solid rgba(42,175,165,.25);
    border-radius: var(--radius); padding: 22px;
  }
  .outcome-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
  .outcome-head .tick {
    width: 24px; height: 24px; border-radius: 50%; background: var(--teal); color: #fff;
    display: grid; place-items: center; font-size: 13px;
  }
  .outcome-head span { color: var(--teal); font-weight: 600; font-size: 14px; }
  .outcome p { font-size: 14px; color: var(--ink-2); margin: 0; }

  /* What you receive */
  .receive {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start;
  }
  .booklet {
    position: relative; aspect-ratio: 4 / 5;
    background: linear-gradient(135deg, #0d1d34, #16243d);
    border-radius: 12px; box-shadow: 0 40px 80px -30px rgba(0,0,0,.4);
    padding: 28px; color: var(--light);
    overflow: hidden;
  }
  .booklet::after {
    content: ""; position: absolute; right: -40px; bottom: -40px;
    width: 75%; aspect-ratio: 4 / 5; border-radius: 6px;
    background: var(--light);
    border: 1px solid var(--border-light);
    box-shadow: -20px 0 40px rgba(0,0,0,.15);
    background-image:
      linear-gradient(180deg, transparent 16px, var(--border-light) 16px, var(--border-light) 17px, transparent 17px),
      repeating-linear-gradient(180deg, transparent 0, transparent 24px, var(--light-3) 24px, var(--light-3) 28px);
    background-size: 100% 100%;
  }
  .booklet .b-logo {
    font-size: 11px; letter-spacing: .2em; opacity: .6; margin-bottom: 14px;
  }
  .booklet h5 {
    font-size: 22px; line-height: 1.15; margin: 80px 0 0; font-weight: 700;
    max-width: 60%;
  }
  .booklet .b-foot {
    position: absolute; left: 28px; bottom: 24px;
    font-size: 10px; letter-spacing: .25em; color: var(--teal-bright);
  }
  .receive-list h4 { margin: 0 0 6px; font-size: 22px; font-weight: 700; }
  .receive-list .sub { margin: 0 0 22px; color: var(--ink-3); }
  .receive-list ul { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: 28px; }
  .receive-list li {
    padding: 10px 0 10px 28px; position: relative; font-size: 14px; break-inside: avoid;
    border-top: 1px solid var(--border-light);
  }
  .receive-list li:first-child, .receive-list li:nth-child(5) { border-top: 0; }
  .receive-list li::before {
    content: "✓"; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 18px; height: 18px; border-radius: 50%; background: var(--teal); color: #fff;
    display: grid; place-items: center; font-size: 11px; font-weight: 700;
  }

  /* Reality table */
  .reality { margin-top: 56px; }
  .reality h3 { font-size: 26px; font-weight: 700; margin: 0 0 4px; line-height: 1.2; }
  .reality h3 .accent { color: var(--teal); display: block; }
  .reality table {
    width: 100%; border-collapse: collapse; margin-top: 22px;
    background: var(--light); border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--border-light);
  }
  .reality th {
    text-align: left; padding: 16px 22px;
    background: var(--ink); color: var(--light); font-weight: 600; font-size: 14px;
  }
  .reality td {
    padding: 16px 22px; font-size: 14px; color: var(--ink-2);
    border-top: 1px solid var(--border-light);
  }
  .reality tr:hover td { background: var(--light-2); }

  /* What it's not */
  .nots {
    display: grid; grid-template-columns: repeat(5, 1fr) 1.6fr; gap: 18px;
    align-items: center;
  }
  .not {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    gap: 10px; padding: 14px 6px;
  }
  .not-x {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--light-3); display: grid; place-items: center;
    color: var(--ink-3);
  }
  .not-text { font-size: 12px; color: var(--ink-3); font-weight: 500; line-height: 1.4; }
  .nots-final {
    display: flex; gap: 14px; align-items: flex-start;
  }
  .nots-final .shield {
    flex-shrink: 0; width: 38px; height: 38px; border-radius: 10px;
    background: var(--teal-soft); color: var(--teal); display: grid; place-items: center;
  }
  .nots-final p { margin: 0; font-size: 14px; color: var(--ink); font-weight: 500; line-height: 1.55; }

  /* CTA band */
  .cta-band {
    background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
    color: var(--text); padding: 56px 0;
    position: relative; overflow: hidden;
  }
  .cta-band::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(800px 300px at 20% 50%, rgba(42,175,165,.15), transparent 60%);
  }
  .cta-grid {
    display: grid; grid-template-columns: auto 1fr auto auto; gap: 40px; align-items: center;
    position: relative;
  }
  .tag-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--teal-soft); color: var(--teal-bright);
    display: grid; place-items: center;
  }
  .cta-headline { font-size: 22px; font-weight: 700; line-height: 1.35; }
  .cta-price { text-align: center; }
  .cta-price .p { font-size: 42px; font-weight: 700; color: var(--teal-bright); line-height: 1; }
  .cta-price .ps { font-size: 12px; color: var(--text-dim); margin-top: 6px; }
  .cta-list { font-size: 13px; color: var(--text-dim); }
  .cta-list .ci { display: flex; gap: 8px; align-items: center; margin: 4px 0; }
  .cta-list .check { color: var(--teal-bright); }
  .cta-final { text-align: right; }
  .cta-final-wide {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 8px;
  }
  .cta-final .note { font-size: 12px; color: var(--text-mute); max-width: 220px; margin-top: 14px; line-height: 1.5; }

  /* Footer */
  footer.foot {
    background: var(--bg); color: var(--text-dim); padding: 28px 0;
  }
  .foot-grid {
    display: flex; justify-content: space-between; align-items: center; font-size: 13px;
  }

  /* responsive */
  @media (max-width: 980px) {
    .hero-grid, .two-col, .receive { grid-template-columns: 1fr; gap: 40px; }
    .process { grid-template-columns: 1fr 1fr; }
    .step-arrow { display: none; }
    .nots { grid-template-columns: repeat(2, 1fr); }
    .nots-final { grid-column: span 2; }
    .dash { transform: none; }
    .receive-list ul { columns: 1; }
    .cta-grid { grid-template-columns: 1fr; text-align: center; }
    .cta-final { text-align: center; }
    .cta-final-wide { justify-content: center; }
    .nav-inner {
      position: relative;
      gap: 18px;
    }
    .menu-toggle {
      display: inline-flex;
      order: 3;
    }
    .nav-cta {
      display: none;
    }
    .nav-links {
      position: absolute;
      left: 32px;
      right: 32px;
      top: calc(100% + 12px);
      display: grid;
      gap: 4px;
      flex: none;
      justify-content: stretch;
      padding: 14px;
      border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--radius);
      background: rgba(7,14,23,.96);
      box-shadow: var(--shadow-lift);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-8px);
      transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
      pointer-events: none;
    }
    .nav.is-open .nav-links {
      opacity: 1;
      visibility: visible;
      transform: none;
      pointer-events: auto;
    }
    .nav-links a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 44px;
      padding: 12px 14px;
      border-bottom: 0;
      border-radius: 10px;
    }
    .nav-links a:hover,
    .nav-links a.active {
      background: rgba(255,255,255,.05);
      color: var(--text);
    }
    .nav-links a.active {
      box-shadow: inset 3px 0 0 var(--teal-bright);
    }
    section.block { padding: 72px 0; }
  }
  @media (max-width: 600px) {
    .pain-grid, .roles, .dash-stats { grid-template-columns: 1fr 1fr; }
    .process { grid-template-columns: 1fr; }
    .nav-inner { padding: 14px 20px; }
    .nav-links {
      left: 20px;
      right: 20px;
      top: calc(100% + 8px);
    }
    .container { padding: 0 20px;padding-top: 8px; }
    .receive table, .reality table { font-size: 12px; }
    .reality th, .reality td { padding: 12px 14px; }
    .foot-grid {
      display: grid;
      gap: 14px;
      text-align: left;
      align-items: start;
    }
    .foot-grid .logo {
      font-size: 16px;
    }
  }

  /* Reveal on scroll */
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }


  .about-hero { max-width: 760px; }
  .about-grid { display:grid; grid-template-columns: 1.1fr .9fr; gap:48px; align-items:start; }
  .about-copy p { font-size:17px; color:var(--ink-3); margin:0 0 18px; }
  .about-list { display:grid; gap:14px; }
  .about-item { background:var(--light); border:1px solid var(--border-light); border-radius:var(--radius); padding:20px; }
  .about-item h3 { margin:0 0 8px; font-size:18px; }
  .about-item p { margin:0; color:var(--ink-3); font-size:14px; }
  .principles { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
  .principle { background:var(--light); border:1px solid var(--border-light); border-radius:var(--radius); padding:22px; }
  .principle h3 { margin:0 0 8px; font-size:18px; }
  .principle p { margin:0; color:var(--ink-3); font-size:14px; }
  .contact-block { background: var(--light-2); }
  .contact-grid { display:grid; grid-template-columns: 1fr 1.1fr; gap:34px; align-items:start; }
  .contact-copy p { color: var(--ink-3); font-size: 16px; margin: 0 0 12px; }
  .contact-copy a { color: var(--teal); border-bottom: 1px solid rgba(42,175,165,.25); }
  .contact-form {
    background: var(--light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 24px 42px -36px rgba(0,0,0,.35);
  }
  .contact-row { margin-bottom: 16px; }
  .contact-row label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--ink-2);
    margin-bottom: 8px;
    text-transform: uppercase;
  }
  .contact-row input,
  .contact-row textarea,
  .contact-row select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    font: inherit;
    color: var(--ink);
    background: #fff;
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  }
  .contact-row input:focus,
  .contact-row textarea:focus,
  .contact-row select:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(42,175,165,.16);
  }
  .contact-row textarea { resize: vertical; min-height: 130px; }
  .contact-split { display:grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .contact-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  .contact-check label {
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
    font-size: 14px;
    font-weight: 500;
  }
  .contact-check input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--teal);
  }
  .hp-wrap {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }
  .contact-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
  }
  .contact-status {
    margin: 0;
    font-size: 14px;
    color: var(--ink-3);
  }
  .contact-status.is-error { color: #a22525; }
  .contact-status.is-success { color: #1b7a53; }
  @media (max-width: 980px) { .about-grid, .principles { grid-template-columns:1fr; } }
  @media (max-width: 980px) {
    .contact-grid,
    .contact-split { grid-template-columns: 1fr; }
    .contact-form { padding: 22px; }
  }

  /* Landing page based on the LinkedIn banner */
  .landing-hero {
    min-height: calc(100vh - 76px);
    background:
      radial-gradient(900px 520px at 72% 14%, rgba(42,175,165,.16), transparent 62%),
      radial-gradient(700px 420px at 30% 72%, rgba(42,175,165,.08), transparent 64%),
      linear-gradient(180deg, var(--bg-2), var(--bg));
    color: var(--text);
    padding: 72px 0 76px;
    position: relative;
    overflow: hidden;
  }
  .landing-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle, rgba(62,211,198,.34) 1px, transparent 1.5px),
      linear-gradient(rgba(62,211,198,.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(62,211,198,.03) 1px, transparent 1px);
    background-size: 18px 18px, 72px 72px, 72px 72px;
    background-position: 0 0, 8px 8px, 8px 8px;
    mask-image: radial-gradient(ellipse 76% 62% at 68% 48%, black, transparent 82%);
    -webkit-mask-image: radial-gradient(ellipse 76% 62% at 68% 48%, black, transparent 82%);
    opacity: .55;
    pointer-events: none;
  }
  .landing-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(7,14,23,.78), rgba(7,14,23,.22) 52%, rgba(7,14,23,.34)),
      radial-gradient(circle at 49% 43%, rgba(62,211,198,.2) 0 2px, transparent 3px);
    pointer-events: none;
  }
  .landing-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }
  .landing-copy {
    position: relative;
    z-index: 2;
  }
  .wordmark-mobile {
    display: none;
    font-weight: 700;
    letter-spacing: .22em;
    font-size: 15px;
    margin-bottom: 28px;
  }
  .wordmark-mobile .b { color: var(--text); }
  .wordmark-mobile .a { color: var(--teal-bright); }
  .landing-title {
    margin: 0;
    font-size: clamp(48px, 4.45vw, 64px);
    line-height: 1.03;
    letter-spacing: -.035em;
    font-weight: 700;
  }
  .landing-title span {
    color: var(--teal-bright);
    text-shadow: 0 0 34px rgba(62,211,198,.28);
  }
  .landing-sub {
    margin: 24px 0 26px;
    color: rgba(233,239,248,.82);
    font-size: clamp(18px, 2.2vw, 25px);
    line-height: 1.45;
    max-width: 680px;
  }
  .landing-service-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    max-width: 650px;
    margin-top: 30px;
  }
  .landing-service-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: center;
    padding: 20px;
    border: 1px solid rgba(233,239,248,.18);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01));
    box-shadow: 0 22px 44px -34px rgba(0,0,0,.75);
    transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  }
  .landing-service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(62,211,198,.56);
    box-shadow: 0 26px 54px -34px rgba(62,211,198,.45);
  }
  .landing-card-icon {
    color: var(--teal-bright);
    width: 64px;
    height: 64px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    border: 2px solid rgba(62,211,198,.78);
    background: rgba(42,175,165,.08);
  }
  .landing-service-card h2 {
    margin: 0 0 12px;
    font-size: 17px;
    line-height: 1.18;
    color: var(--text);
  }
  .landing-service-card p {
    margin: 4px 0 0;
    color: rgba(233,239,248,.78);
    font-size: 16px;
  }
  .landing-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
  }
  .readiness-panel {
    position: relative;
    z-index: 2;
    padding: 30px;
    border-radius: 18px;
    border: 1px solid rgba(62,211,198,.28);
    background:
      linear-gradient(180deg, rgba(13,28,46,.9), rgba(9,19,31,.82)),
      radial-gradient(700px 360px at 55% -10%, rgba(42,175,165,.14), transparent 64%);
    box-shadow: 0 30px 80px -36px rgba(0,0,0,.86), inset 0 1px 0 rgba(255,255,255,.05);
  }
  .panel-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
  }
  .panel-title {
    display: inline-flex;
    gap: 14px;
    align-items: center;
    color: var(--teal-bright);
    font-size: 23px;
    font-weight: 700;
  }
  .panel-title span {
    color: var(--text);
  }
  .panel-dots {
    display: flex;
    gap: 10px;
  }
  .panel-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal-bright);
    box-shadow: 0 0 12px rgba(62,211,198,.5);
  }
  .metric-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 22px;
  }
  .metric-card {
    min-height: 142px;
    padding: 18px;
    border-radius: 10px;
    border: 1px solid rgba(233,239,248,.16);
    background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  }
  .metric-label {
    color: var(--text);
    font-size: 16px;
    margin-bottom: 16px;
  }
  .metric-icon {
    color: var(--teal-bright);
    font-size: 34px;
    line-height: 1;
    margin-bottom: 10px;
  }
  .metric-icon.amber {
    color: var(--amber);
  }
  .metric-value {
    font-size: 43px;
    line-height: 1;
    font-weight: 700;
  }
  .metric-value.teal,
  .metric-value.word {
    color: var(--teal-bright);
  }
  .metric-value.amber {
    color: var(--amber);
  }
  .metric-value span {
    font-size: 18px;
    color: rgba(233,239,248,.78);
    margin-left: 4px;
    font-weight: 500;
  }
  .metric-value.word {
    font-size: 32px;
    margin-top: 24px;
  }
  .risk-matrix {
    border: 1px solid rgba(233,239,248,.14);
    border-radius: 10px;
    padding: 22px;
    background: rgba(255,255,255,.018);
  }
  .risk-matrix h2 {
    margin: 0 0 22px;
    font-size: 19px;
    font-weight: 500;
  }
  .matrix-labels {
    display: grid;
    grid-template-columns: 160px repeat(5, 1fr);
    gap: 0;
    margin-bottom: 8px;
    color: var(--text);
    font-size: 13px;
    text-align: center;
  }
  .matrix-grid {
    display: grid;
    grid-template-columns: 160px repeat(5, 1fr);
    border-top: 1px solid rgba(233,239,248,.1);
  }
  .matrix-grid span {
    min-height: 44px;
    display: flex;
    align-items: center;
    color: var(--text);
    font-size: 14px;
    border-bottom: 1px solid rgba(233,239,248,.1);
  }
  .matrix-grid i {
    min-height: 44px;
    display: block;
    border-left: 1px solid rgba(7,14,23,.46);
    border-bottom: 1px solid rgba(7,14,23,.42);
  }
  .matrix-grid i:nth-of-type(5n+1) { background: linear-gradient(135deg, rgba(42,175,165,.9), rgba(21,82,91,.9)); }
  .matrix-grid i:nth-of-type(5n+2) { background: linear-gradient(135deg, rgba(79,178,127,.88), rgba(36,105,79,.9)); }
  .matrix-grid i:nth-of-type(5n+3) { background: linear-gradient(135deg, rgba(245,180,65,.95), rgba(131,94,34,.92)); }
  .matrix-grid i:nth-of-type(5n+4) { background: linear-gradient(135deg, rgba(255,107,44,.95), rgba(123,66,34,.92)); }
  .matrix-grid i:nth-of-type(5n+5) { background: linear-gradient(135deg, rgba(220,38,38,.94), rgba(104,42,46,.92)); }
  .landing-offers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .offer-panel {
    position: relative;
    overflow: hidden;
    background: var(--light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 34px;
    box-shadow: 0 22px 46px -38px rgba(0,0,0,.5);
  }
  .offer-panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: var(--teal);
  }
  .offer-kicker {
    color: var(--teal);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .offer-panel h3 {
    margin: 0 0 14px;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.12;
  }
  .offer-panel p {
    margin: 0 0 20px;
    color: var(--ink-3);
    font-size: 16px;
  }
  .offer-facts {
    display: grid;
    gap: 8px;
    margin: 26px 0;
  }
  .offer-facts span {
    position: relative;
    padding-left: 24px;
    color: var(--ink-2);
    font-size: 14px;
  }
  .offer-facts span::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 700;
  }
  .offer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .1em;
    text-transform: uppercase;
  }
  .offer-link span {
    transition: transform .2s var(--ease);
  }
  .offer-link:hover span {
    transform: translateX(3px);
  }
  .split-statement {
    display: grid;
    grid-template-columns: .95fr 1fr;
    gap: 56px;
    align-items: end;
    margin-bottom: 42px;
  }
  .statement-copy p {
    color: var(--ink-3);
    font-size: 18px;
    margin: 0 0 16px;
  }
  .proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .proof-card {
    background: var(--light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 26px;
  }
  .proof-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
  }
  .proof-card p {
    margin: 0;
    color: var(--ink-3);
    font-size: 15px;
  }
  .landing-final {
    grid-template-columns: auto 1fr auto auto;
  }

  .cookie-banner {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 100;
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 22px;
    align-items: center;
    padding: 20px;
    background: rgba(7,14,23,.96);
    color: var(--text);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    box-shadow: 0 24px 70px -34px rgba(0,0,0,.9);
  }
  .cookie-copy h2 {
    margin: 0 0 6px;
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: 0;
  }
  .cookie-copy p {
    margin: 0;
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.45;
    max-width: 660px;
  }
  .cookie-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
  .cookie-actions .btn {
    white-space: nowrap;
  }
  .cookie-settings {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 80;
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(7,14,23,.82);
    color: var(--text-dim);
    border: 1px solid rgba(255,255,255,.12);
    font-size: 12px;
    line-height: 1;
    box-shadow: 0 14px 30px -20px rgba(0,0,0,.8);
  }
  .cookie-settings:hover {
    color: var(--text);
    border-color: rgba(62,211,198,.35);
  }

  @media (max-width: 1120px) {
    .landing-hero-grid {
      grid-template-columns: 1fr;
    }
    .readiness-panel {
      max-width: 900px;
    }
  }
  @media (max-width: 980px) {
    .landing-hero {
      min-height: auto;
      padding: 64px 0;
    }
    .wordmark-mobile {
      display: inline-flex;
    }
    .landing-offers,
    .split-statement,
    .proof-grid {
      grid-template-columns: 1fr;
    }
    .landing-final {
      grid-template-columns: 1fr;
    }
  }
  @media (max-width: 760px) {
    .cookie-banner {
      grid-template-columns: 1fr;
      left: 14px;
      right: 14px;
      bottom: 14px;
      padding: 18px;
    }
    .cookie-actions {
      justify-content: stretch;
    }
    .cookie-actions .btn {
      flex: 1 1 180px;
      justify-content: center;
    }
    .landing-service-cards,
    .metric-grid {
      grid-template-columns: 1fr;
    }
    .landing-service-card {
      padding: 20px;
    }
    .readiness-panel {
      padding: 18px;
    }
    .panel-top {
      align-items: flex-start;
      gap: 18px;
    }
    .panel-title {
      font-size: 18px;
    }
    .matrix-labels {
      display: none;
    }
    .matrix-grid {
      grid-template-columns: 118px repeat(5, 1fr);
    }
    .matrix-grid span {
      font-size: 11px;
      min-height: 34px;
    }
    .matrix-grid i {
      min-height: 34px;
    }
  }
  @media (max-width: 480px) {
    .nav-inner {
      gap: 14px;
    }
    .nav .btn {
      padding: 10px 14px;
      font-size: 10px;
      line-height: 1.25;
      letter-spacing: .12em;
      justify-content: center;
      text-align: center;
    }
    .landing-title {
      font-size: 43px;
    }
    .landing-sub {
      font-size: 18px;
    }
    .landing-card-icon {
      width: 56px;
      height: 56px;
    }
    .landing-service-card {
      grid-template-columns: 1fr;
    }
    .metric-value {
      font-size: 36px;
    }
  }
