    :root {
      --max: 1200px;
      --section-pad: 110px;

      --bg: #ffffff;
      --text: #0B1220;
      --muted: #64748B;
      --line: rgba(15, 23, 42, .10);

      --dark: #0b1020;
      --dark2: #050814;
      --darkText: #eef2ff;
      --darkMuted: rgba(238, 242, 255, .72);
      --darkLine: rgba(255, 255, 255, .12);

      --graphite: #273244;
      --graphiteText: #f8fafc;
      --graphiteMuted: rgba(248, 250, 252, .72);
      --graphiteLine: rgba(255, 255, 255, .12);

      --accent: #2563EB;
      --accent2: #22C55E;
      --accent3: #F59E0B;
      --accent4: #0EA5E9;
      --alert: #EF4444;
      --brandBlue: #0065F5;

      --shadow: 0 18px 60px rgba(2, 6, 23, .16);

      --r16: 10px;
      --r20: 16px;
      --r28: 16px;
    }

    * {
      box-sizing: border-box;
    }

    html,
    body {
      margin: 0;
      padding: 0;
    }

    body {
      font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.65;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .icon-sprite {
      position: absolute;
      width: 0;
      height: 0;
      overflow: hidden;
    }

    .container {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 22px;
    }

        .nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, .78);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--line);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 14px 0;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: 900;
      letter-spacing: -.2px;
    }

    .brand img {
      height: 22px;
      width: auto;
      display: block;
    }

    .brand-footer {
      margin-bottom: 4px;
    }

    .brand-dark {
      color: var(--text);
    }

    .brand-accent {
      color: var(--brandBlue);
    }

    .nav-links {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .nav-links a {
      font-size: 13px;
      color: var(--muted);
      padding: 8px 10px;
      border-radius: 10px;
    }

    .nav-links a:hover {
      background: rgba(15, 23, 42, .04);
      color: var(--text);
    }

    .nav-cta {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .nav-menu {
      display: none;
      position: relative;
    }

    .nav-toggle {
      list-style: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 10px 14px;
      border-radius: 999px;
      border: 1px solid rgba(15, 23, 42, .12);
      background: #fff;
      font-weight: 600;
      font-size: 13px;
      color: var(--text);
    }

    .nav-toggle-icon {
      width: 18px;
      height: 12px;
      position: relative;
    }

    .nav-toggle-icon::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 2px;
      border-radius: 2px;
      background: var(--text);
      box-shadow: 0 5px 0 var(--text), 0 10px 0 var(--text);
    }

    .nav-toggle::-webkit-details-marker {
      display: none;
    }

    .nav-panel {
      position: absolute;
      right: 0;
      top: calc(100% + 12px);
      min-width: 240px;
      background: #fff;
      border: 1px solid rgba(15, 23, 42, .12);
      border-radius: 16px;
      padding: 14px;
      box-shadow: 0 24px 60px rgba(2, 6, 23, .14);
      display: grid;
      gap: 8px;
      z-index: 20;
    }

    .nav-panel > a {
      font-size: 14px;
      color: var(--text);
      padding: 8px 10px;
      border-radius: 10px;
    }

    .nav-panel > a:hover {
      background: rgba(15, 23, 42, .05);
    }

    .nav-panel-cta {
      margin-top: 6px;
      display: grid;
      gap: 10px;
    }

    .nav-panel-cta .btn {
      width: 100%;
      box-shadow: none;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 11px 14px;
      border-radius: 999px;
      font-weight: 600;
      font-size: 13px;
      border: 1px solid rgba(15, 23, 42, .12);
      background: #fff;
      transform: translateZ(0);
      box-shadow: 0 0 0 rgba(2, 6, 23, 0);
    }

    .btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 8px 20px rgba(2, 6, 23, .08);
    }

    .btn-primary {
      border-color: transparent;
      color: #fff;
      background: var(--accent);
      box-shadow: 0 10px 26px rgba(37, 99, 235, .20);
    }

    .btn-primary:hover {
      box-shadow: 0 12px 28px rgba(37, 99, 235, .24);
    }

        section {
      padding: var(--section-pad) 0;
    }

    .bg-soft {
      background: #F7F8FB;
    }

    .bg-graphite {
      background: linear-gradient(180deg, var(--graphite), #1b2533);
      color: var(--graphiteText);
      border-top: 1px solid var(--graphiteLine);
      border-bottom: 1px solid var(--graphiteLine);
    }

    .bg-graphite .lead,
    .bg-graphite .muted,
    .bg-graphite .caption,
    .bg-graphite .quote-author,
    .bg-graphite .quote-conclusion {
      color: var(--graphiteMuted);
    }

    .bg-mist {
      background: linear-gradient(180deg, rgba(37, 99, 235, .08), rgba(37, 99, 235, .02));
      border-top: 1px solid rgba(37, 99, 235, .12);
      border-bottom: 1px solid rgba(37, 99, 235, .12);
    }

    .bg-ice {
      background: linear-gradient(180deg, rgba(14, 165, 233, .10), rgba(37, 99, 235, .03));
      border-top: 1px solid rgba(14, 165, 233, .16);
      border-bottom: 1px solid rgba(14, 165, 233, .16);
    }

    .bg-gray {
      background: rgba(37, 99, 235, .06);
      border-top: 1px solid rgba(37, 99, 235, .10);
      border-bottom: 1px solid rgba(37, 99, 235, .10);
    }

    .bg-tint-green {
      background: rgba(34, 197, 94, .08);
      border-top: 1px solid rgba(34, 197, 94, .14);
      border-bottom: 1px solid rgba(34, 197, 94, .14);
    }

    .bg-dark {
      color: var(--darkText);
      background:
        radial-gradient(900px 520px at 20% 0%, rgba(37, 99, 235, .22), transparent 55%),
        radial-gradient(900px 520px at 90% 10%, rgba(34, 197, 94, .12), transparent 55%),
        radial-gradient(900px 520px at 60% 70%, rgba(245, 158, 11, .10), transparent 55%),
        linear-gradient(180deg, var(--dark), var(--dark2));
      border-top: 1px solid rgba(255, 255, 255, .05);
      border-bottom: 1px solid rgba(255, 255, 255, .05);
    }

        h1 {
      font-size: 56px;
      line-height: 1.05;
      margin: 14px 0 14px;
      letter-spacing: -1px;
    }

    h2 {
      font-size: 38px;
      line-height: 1.15;
      margin: 0 0 14px;
      letter-spacing: -.6px;
    }

    h3 {
      font-size: 18px;
      margin: 0 0 8px;
      letter-spacing: -.2px;
    }

    .lead {
      font-size: 16px;
      color: var(--muted);
      max-width: 78ch;
    }

    .bg-dark .lead {
      color: var(--darkMuted);
    }

    .muted {
      color: var(--muted);
    }

    .muted-spaced {
      margin-top: 28px;
    }

    .bg-dark .muted {
      color: var(--darkMuted);
    }

    .mono {
      font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    }

    .hero-lead {
      color: rgba(15, 23, 42, .68);
      max-width: 68ch;
      line-height: 1.6;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 56px;
      row-gap: 14px;
      align-items: start;
      grid-template-areas:
        "copy media"
        "actions media";
    }

    .hero-copy {
      grid-area: copy;
    }

    .hero-actions {
      grid-area: actions;
    }

    .hero-media {
      grid-area: media;
    }

        .grid-2 {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 56px;
      align-items: center;
    }

    .grid-2.align-top {
      align-items: flex-start;
    }

    .split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }

    .divider {
      height: 1px;
      background: var(--line);
      margin: 28px 0;
    }

    .bg-dark .divider {
      background: rgba(255, 255, 255, .10);
    }

        .feature-rows {
      margin-top: 28px;
      display: grid;
      gap: 18px;
    }

    .feature-row {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 6px 0;
      border-bottom: 1px solid var(--line);
    }

    .bg-dark .feature-row {
      border-bottom: 1px solid rgba(255, 255, 255, .10);
    }

    .feature-row:last-child {
      border-bottom: none;
    }

    .icon {
      width: 20px;
      height: 20px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .icon-muted {
      opacity: .7;
      filter: grayscale(1);
    }

    .bg-dark .icon-muted {
      opacity: .6;
      filter: invert(1) grayscale(1) brightness(.9);
    }

    .icon-lg {
      width: 22px;
      height: 22px;
    }

    .i {
      width: 38px;
      height: 38px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(37, 99, 235, .22);
      background: rgba(37, 99, 235, .10);
      color: var(--accent);
      flex: 0 0 auto;
    }

    .i.sm {
      width: 32px;
      height: 32px;
      border-radius: 12px;
    }

    .i.green {
      border-color: rgba(34, 197, 94, .24);
      background: rgba(34, 197, 94, .12);
      color: var(--accent2);
    }

    .i.amber {
      border-color: rgba(245, 158, 11, .28);
      background: rgba(245, 158, 11, .14);
      color: var(--accent3);
    }

    .i.blue-soft {
      border-color: rgba(14, 165, 233, .28);
      background: rgba(14, 165, 233, .12);
      color: var(--accent4);
    }

    .i.red {
      border-color: rgba(239, 68, 68, .30);
      background: rgba(239, 68, 68, .12);
      color: var(--alert);
    }

        .frame {
      border-radius: var(--r20);
      border: 1px solid rgba(2, 6, 23, .08);
      overflow: hidden;
      box-shadow: var(--shadow);
      background: rgba(2, 6, 23, .04);
    }

    .frame.cover {
      aspect-ratio: 4 / 3;
    }

    .frame.cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .bg-dark .frame {
      border: 1px solid rgba(255, 255, 255, .10);
      box-shadow: 0 18px 60px rgba(0, 0, 0, .45);
      background: rgba(255, 255, 255, .04);
    }

    .frame img {
      width: 100%;
      height: auto;
      display: block;
    }

    .caption {
      font-size: 12px;
      margin-top: 10px;
      color: var(--muted);
    }

    .bg-dark .caption {
      color: var(--darkMuted);
    }

    .hero-highlights {
      margin-top: 34px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .hero-lead span {
      display: block;
      margin-top: 10px;
    }

    .hero-tags {
      margin-top: 0px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      color: rgba(15, 23, 42, .45);
      letter-spacing: .1px;
      line-height: 1.4;
    }

    .hero-tags::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: rgba(14, 165, 233, .55);
      flex: 0 0 auto;
    }

    .hero-audience {
      margin-top: 30px;
      max-width: 70ch;
      font-size: 12px;
    }

    .hero-cta {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 32px;
      margin-bottom: 32px;
    }

    .hero-caption {
      font-size: 11px;
      color: rgba(15, 23, 42, .45);
      opacity: 0;
      transform: translateY(4px);
      transition: opacity .2s ease, transform .2s ease;
    }

    .hero-media:hover .hero-caption {
      opacity: 1;
      transform: translateY(0);
    }

    .hero-media:focus-within .hero-caption {
      opacity: 1;
      transform: translateY(0);
    }

    .hero-media {
      margin-top: 14px;
    }


    .highlights-meta {
      margin: 0 0 16px;
      font-size: 12px;
      color: var(--muted);
    }

    .highlights-lead {
      margin: 0 0 22px;
    }

    .highlights-section .hero-highlights {
      margin-top: 18px;
      gap: 28px;
    }

    .highlights-section .hero-highlight {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 0;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
    }

    .highlights-section .hero-highlight:not(:first-child) {
      border-left: 1px solid rgba(15, 23, 42, .08);
      padding-left: 22px;
    }

    .highlights-section .hero-highlight h3 {
      margin: 0 0 6px;
      font-size: 16px;
    }

    .highlights-section .hero-highlight p {
      margin: 0;
      font-size: 13px;
      color: var(--muted);
      line-height: 1.6;
    }

    .highlights-section .i {
      width: 26px;
      height: 26px;
      border-radius: 9px;
      border: 1px solid rgba(15, 23, 42, .08);
      background: rgba(15, 23, 42, .03);
      color: rgba(15, 23, 42, .55);
    }

    .highlights-section .i.green,
    .highlights-section .i.amber {
      border-color: rgba(15, 23, 42, .10);
      background: rgba(15, 23, 42, .04);
      color: var(--muted);
    }

    .highlights-section .icon {
      width: 15px;
      height: 15px;
      stroke-width: 1.7;
    }

    .quote-band {
      padding: 96px 0;
    }

    .quote-grid {
      max-width: 960px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 3fr 2fr;
      gap: 48px;
      align-items: start;
    }

    .quote-text {
      margin: 0 0 10px;
      font-size: 30px;
      line-height: 1.35;
      font-weight: 600;
      letter-spacing: -.3px;
      color: var(--text);
    }

    .bg-graphite .quote-text {
      color: var(--graphiteText);
    }

    .quote-author {
      margin: 0;
      font-size: 13px;
      color: var(--muted);
      font-weight: 600;
    }

    .quote-right {
      border-left: 1px solid rgba(14, 165, 233, .18);
      padding-left: 28px;
    }

    .bg-graphite .quote-right {
      border-left-color: var(--graphiteLine);
    }

    .quote-conclusion {
      margin: 0;
      font-size: 15px;
      line-height: 1.7;
      color: var(--muted);
    }

    .collage-head {
      max-width: 70ch;
      display: grid;
      gap: 10px;
    }

    .collage-grid {
      margin-top: 28px;
      display: grid;
      grid-template-columns: repeat(12, minmax(0, 1fr));
      grid-template-rows: repeat(12, minmax(0, 1fr));
      aspect-ratio: 1 / 1;
      gap: 12px;
    }

    .collage-item {
      border-radius: var(--r16);
      overflow: hidden;
      border: 1px solid rgba(2, 6, 23, .10);
      background: #0b1020;
      box-shadow: 0 14px 30px rgba(2, 6, 23, .12);
    }

    .collage-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .collage-item:nth-child(1) {
      grid-column: 1 / span 6;
      grid-row: 1 / span 6;
    }

    .collage-item:nth-child(2) {
      grid-column: 7 / span 6;
      grid-row: 1 / span 4;
    }

    .collage-item:nth-child(3) {
      grid-column: 7 / span 3;
      grid-row: 5 / span 4;
    }

    .collage-item:nth-child(4) {
      grid-column: 10 / span 3;
      grid-row: 5 / span 4;
    }

    .collage-item:nth-child(5) {
      grid-column: 1 / span 4;
      grid-row: 7 / span 3;
    }

    .collage-item:nth-child(6) {
      grid-column: 5 / span 2;
      grid-row: 7 / span 3;
    }

    .collage-item:nth-child(7) {
      grid-column: 1 / span 6;
      grid-row: 10 / span 3;
    }

    .collage-item:nth-child(8) {
      grid-column: 7 / span 3;
      grid-row: 9 / span 4;
    }

    .collage-item:nth-child(9) {
      grid-column: 10 / span 3;
      grid-row: 9 / span 4;
    }

    .audience-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 16px;
    }

    .audience-track {
      margin-top: 22px;
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: minmax(260px, 1fr);
      gap: 18px;
      overflow-x: auto;
      padding-bottom: 12px;
      scroll-snap-type: x mandatory;
      scroll-padding: 10px;
      scrollbar-width: none;
    }

    .audience-track::-webkit-scrollbar {
      display: none;
    }

    .audience-card {
      scroll-snap-align: start;
      border-radius: var(--r20);
      border: 1px solid var(--line);
      background: #fff;
      box-shadow: 0 12px 32px rgba(2, 6, 23, .08);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      min-width: 260px;
    }

    .audience-media {
      background: rgba(2, 6, 23, .04);
      aspect-ratio: 16 / 10;
      overflow: hidden;
    }

    .audience-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .audience-body {
      padding: 16px;
      display: grid;
      gap: 8px;
    }

    .audience-kicker {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .18px;
      text-transform: uppercase;
      color: var(--muted);
    }

    .audience-body h3 {
      margin: 0;
      font-size: 17px;
    }

    .audience-body p {
      margin: 0;
      font-size: 13px;
      color: var(--muted);
    }

    .audience-dots {
      margin-top: 14px;
      display: flex;
      justify-content: center;
      gap: 8px;
    }

    .audience-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      border: 0;
      background: rgba(15, 23, 42, .18);
      cursor: pointer;
    }

    .audience-dot.active {
      background: var(--accent);
      box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);
    }

    .cadence-grid {
      margin-top: 24px;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 20px;
    }

    .cadence-card {
      position: relative;
      padding: 18px 20px 20px;
      border-radius: var(--r16);
      border: 1px solid rgba(15, 23, 42, .12);
      background: #fff;
      box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
    }

    .cadence-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 6px;
      border-radius: var(--r16) var(--r16) 0 0;
      background: var(--accent);
    }

    .cadence-card.green::before {
      background: var(--accent2);
    }

    .cadence-card.amber::before {
      background: var(--accent3);
    }

    .cadence-card.blue-soft::before {
      background: var(--accent4);
    }

    .cadence-label {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .22px;
      text-transform: uppercase;
      color: var(--muted);
    }

    .cadence-value {
      margin-top: 10px;
      font-size: 24px;
      font-weight: 700;
      letter-spacing: -0.2px;
      color: var(--text);
    }

    .cadence-note {
      margin-top: 12px;
      font-size: 14px;
      color: var(--muted);
      line-height: 1.5;
    }

    .service-copy {
      display: grid;
      gap: 14px;
    }

    .service-text {
      margin: 0;
      font-size: 16px;
      color: var(--text);
      max-width: 70ch;
    }

    .service-bullets {
      list-style: none;
      padding: 0;
      margin: 8px 0 0;
      display: grid;
      gap: 10px;
    }

    .service-bullets li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      font-size: 14px;
      color: var(--text);
    }

    .service-bullets li::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: rgba(37, 99, 235, .45);
      margin-top: 7px;
      flex: 0 0 auto;
    }

    .contact-layout {
      align-items: stretch;
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
      gap: 56px;
    }

    .contact-card {
      padding: 28px 30px;
      border-radius: var(--r20);
      border: 1px solid rgba(15, 23, 42, .12);
      background: #fff;
      box-shadow: 0 24px 70px rgba(15, 23, 42, .12);
      width: 100%;
      max-width: none;
      justify-self: stretch;
      align-self: stretch;
    }

    .contact-title {
      margin: 0 0 6px;
      font-size: 15px;
    }

    .contact-sub {
      margin: 0 0 16px;
      font-size: 12px;
      color: var(--muted);
    }

    .contact-form {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 14px;
    }

    .contact-field {
      display: grid;
      gap: 6px;
    }

    .contact-span {
      grid-column: 1 / -1;
    }

    .contact-label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .16px;
      color: var(--muted);
      text-transform: uppercase;
    }

    .contact-input {
      width: 100%;
      padding: 14px 16px;
      border-radius: 14px;
      border: 1px solid rgba(15, 23, 42, .20);
      font: inherit;
      font-size: 14px;
      color: var(--text);
      background: #fff;
    }

    .contact-input.textarea {
      min-height: 120px;
      resize: vertical;
    }

    .contact-input:focus {
      outline: none;
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(37, 99, 235, .18);
    }

    .contact-input::placeholder {
      color: rgba(15, 23, 42, .42);
    }

    .contact-submit {
      width: 100%;
      padding: 14px 0;
      font-size: 15px;
    }

    .contact-legal {
      margin: -4px 0 6px;
      font-size: 12px;
      color: var(--muted);
    }

    .contact-legal a {
      color: inherit;
      text-decoration: underline;
      text-decoration-thickness: 1px;
      text-underline-offset: 3px;
    }

    .contact-status {
      margin: 2px 0 8px;
      font-size: 13px;
      color: var(--muted);
    }

    .contact-status.success {
      color: #1d7a4b;
    }

    .contact-status.error {
      color: #b42318;
    }

    .contact-honeypot {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      opacity: 0;
      pointer-events: none;
    }

    .impact-cards {
      margin-top: 34px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .impact-card {
      padding: 16px;
      border-radius: var(--r20);
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, .75);
      box-shadow: none;
    }

    .bg-dark .impact-card {
      border-color: rgba(255, 255, 255, .08);
      background: rgba(255, 255, 255, .02);
      box-shadow: none;
    }

    .impact-card .i {
      width: 32px;
      height: 32px;
      border-radius: 12px;
    }

    .impact-card h3 {
      margin: 10px 0 6px;
    }

    .impact-card p {
      margin: 0;
      font-size: 14px;
      color: var(--muted);
    }

    .bg-dark .impact-card p {
      color: var(--darkMuted);
    }

    .impact-media {
      margin-top: 26px;
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 18px;
      align-items: start;
    }

    .impact-media.single {
      grid-template-columns: 1fr;
    }

    .impact-media .frame {
      max-width: 100%;
    }

    .impact-media .frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .impact-media .frame.wide {
      aspect-ratio: 16 / 9;
    }

    .impact-media .frame.tall {
      aspect-ratio: 4 / 5;
    }

    .impact-close {
      margin-top: 36px;
      max-width: 78ch;
    }

    .problem-layout {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 48px;
      align-items: start;
    }

    .problem-content { max-width: 55ch; }


    .problem-points {
      margin-top: 24px;
      display: grid;
      gap: 12px;
    }

    .problem-point {
      display: flex;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .problem-point:last-child {
      border-bottom: none;
    }

    .problem-point .i {
      width: 28px;
      height: 28px;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, .10);
      background: rgba(255, 255, 255, .04);
      color: rgba(255, 255, 255, .75);
    }

    .problem-point .icon {
      width: 16px;
      height: 16px;
      stroke-width: 1.8;
    }

    .problem-point h3 {
      margin: 0 0 6px;
      font-size: 15px;
      letter-spacing: -.2px;
    }

    .problem-point p {
      margin: 0;
      font-size: 13px;
      color: var(--darkMuted);
    }

    .problem-collage {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .problem-collage-item {
      border-radius: var(--r20);
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, .08);
      background: rgba(255, 255, 255, .04);
      aspect-ratio: 4 / 3;
    }

    .problem-collage-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: saturate(.88) contrast(.92);
    }

    .ai-layout {
      margin-top: 0;
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 52px;
      align-items: start;
    }

    .ai-text .lead {
      margin: 0 0 18px;
      max-width: 58ch;
    }

    .ai-points {
      margin-top: 6px;
      display: grid;
      gap: 18px;
      position: relative;
      padding-left: 22px;
    }

    .ai-points::before {
      content: "";
      position: absolute;
      left: 6px;
      top: 4px;
      bottom: 4px;
      width: 1px;
      background: rgba(15, 23, 42, .12);
    }

    .ai-point {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 4px 0;
    }

    .ai-step {
      width: 22px;
      height: 22px;
      border-radius: 8px;
      border: 1px solid rgba(15, 23, 42, .18);
      background: rgba(15, 23, 42, .04);
      color: var(--muted);
      font-weight: 700;
      font-size: 11px;
      letter-spacing: .2px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 22px;
      margin-left: -2px;
    }

    .ai-point b {
      display: block;
      font-size: 16px;
      letter-spacing: -.2px;
    }

    .ai-point span {
      display: block;
      margin-top: 6px;
      font-size: 13px;
      color: var(--muted);
      line-height: 1.55;
    }

    .ai-visual {
      position: relative;
      border-radius: 16px;
      border: 1px solid rgba(15, 23, 42, .08);
      background:
        radial-gradient(280px 220px at 90% 10%, rgba(37, 99, 235, .14), transparent 60%),
        radial-gradient(240px 200px at 10% 90%, rgba(34, 197, 94, .12), transparent 65%),
        linear-gradient(180deg, #fff, #f7f9fc);
      min-height: 320px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .ai-visual::before {
      content: "";
      position: absolute;
      inset: 16px;
      border-radius: 6px;
      background:
        repeating-linear-gradient(90deg, rgba(15, 23, 42, .05), rgba(15, 23, 42, .05) 1px, transparent 1px, transparent 24px),
        repeating-linear-gradient(0deg, rgba(15, 23, 42, .05), rgba(15, 23, 42, .05) 1px, transparent 1px, transparent 24px);
      opacity: .35;
    }

    .ai-visual-svg {
      width: 78%;
      max-width: 360px;
      height: auto;
      position: relative;
    }

    .ai-visual-svg .loop-ring {
      fill: none;
      stroke: rgba(15, 23, 42, .10);
      stroke-width: 1;
    }

    .ai-visual-svg .loop {
      fill: none;
      stroke: rgba(37, 99, 235, .28);
      stroke-width: 1.4;
      color: rgba(37, 99, 235, .35);
    }

    .ai-visual-svg .loop.return {
      stroke: rgba(34, 197, 94, .30);
      color: rgba(34, 197, 94, .38);
    }

    .ai-visual-svg .node {
      fill: rgba(37, 99, 235, .78);
    }

    .ai-visual-svg .node.alt {
      fill: rgba(56, 189, 248, .70);
    }

    .ai-visual-svg .node.dark {
      fill: rgba(15, 23, 42, .55);
    }

    .ai-visual-svg .node-ring {
      fill: none;
      stroke: rgba(15, 23, 42, .16);
      stroke-width: 1;
    }

    .roles-grid {
      margin-top: 34px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 22px;
    }

    .role-card {
      padding: 22px 24px;
      border-radius: var(--r20);
      border: 1px solid var(--line);
      background: #fff;
    }

    .role-title {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .role-title .icon {
      width: 18px;
      height: 18px;
      color: rgba(15, 23, 42, .55);
      stroke-width: 1.8;
    }

    .role-card h3 {
      margin: 0;
      font-size: 16px;
      letter-spacing: -.2px;
    }

    .role-kicker {
      margin: 10px 0 6px;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: .2px;
      color: var(--muted);
      font-weight: 600;
    }

    .role-text {
      margin: 0;
      font-size: 13px;
      color: var(--muted);
      line-height: 1.6;
    }

    .flow {
      margin-top: 28px;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .flow-step {
      padding: 16px;
      border-radius: var(--r20);
      border: 1px solid var(--line);
      background: #fff;
      position: relative;
    }

    .flow-step::after {
      content: "";
      position: absolute;
      right: -8px;
      top: 50%;
      width: 16px;
      height: 2px;
      background: linear-gradient(90deg, rgba(37, 99, 235, .35), rgba(34, 197, 94, .30));
    }

    .flow-step:last-child::after {
      display: none;
    }

    .flow-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      border-radius: 12px;
      border: 1px solid rgba(37, 99, 235, .25);
      background: rgba(37, 99, 235, .12);
      font-weight: 800;
      font-size: 12px;
      color: var(--text);
    }

    .flow-step h3 {
      margin: 10px 0 6px;
      font-size: 16px;
    }

    .flow-step p {
      margin: 0;
      font-size: 13px;
      color: var(--muted);
    }

        .scroll-shell {
      margin-top: 40px;
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 44px;
      align-items: start;
      position: relative;
      --platform-scale: 1;
      --steps-opacity: 1;
      --steps-slide: 0px;
      --steps-shift: 0px;
    }

    .platform-visual-wrap {
      grid-column: 1 / 2;
      grid-row: 1;
      position: relative;
    }

    .platform-visual {
      position: sticky;
      top: 92px;
      overflow: visible;
      z-index: 2;
      width: 100%;
    }

    .platform-screen {
      width: 100%;
      transform: scale(var(--platform-scale));
      transform-origin: top left;
      will-change: transform;
      position: relative;
      overflow: hidden;
    }

    .platform-steps-wrap {
      grid-column: 2 / 3;
      grid-row: 1;
      position: relative;
    }

    .platform-steps {
      position: sticky;
      top: 92px;
      align-self: start;
      z-index: 1;
      opacity: var(--steps-opacity);
      transform: translateX(var(--steps-slide));
      transition: opacity .35s ease, transform .35s ease;
    }

    .screen {
      position: relative;
      border-radius: var(--r16);
      overflow: hidden;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, .95);
      box-shadow: var(--shadow);
    }

    .screen .topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 8px 14px;
      border-bottom: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(2, 6, 23, .04), rgba(2, 6, 23, .02));
      font-size: 12px;
      color: var(--muted);
      letter-spacing: .2px;
    }

    .screen .crumb {
      display: flex;
      gap: 10px;
      align-items: center;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .screen .crumb .platform-crumb {
      opacity: .8;
    }

    .screen .crumb .platform-crumb-strong {
      opacity: .95;
      font-weight: 900;
      color: var(--text);
    }

    .screen .dots {
      display: flex;
      gap: 6px;
    }

    .screen .dots i {
      width: 8px;
      height: 8px;
      border-radius: 99px;
      background: rgba(15, 23, 42, .18);
    }

    .screen .imgwrap {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 10;
      overflow: hidden;
      background: rgba(2, 6, 23, .04);
    }

    .screen img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transform: scale(1.02);
      transition: opacity .55s ease, transform .75s ease;
      filter: contrast(1.03) saturate(1.05);
      z-index: 1;
    }

    .screen img.active {
      opacity: 1;
      transform: scale(1);
    }

    .steps {
      display: grid;
      gap: 24px;
      padding-top: 6px;
      transform: translateY(var(--steps-shift));
      will-change: transform;
    }

    .step {
      padding: 16px;
      border: 1px solid transparent;
      border-top-color: var(--line);
      border-radius: 16px;
    }

    .step:first-child {
      border-top-color: transparent;
    }

    .step .kicker {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      color: var(--muted);
      font-weight: 800;
      letter-spacing: .18px;
      text-transform: uppercase;
    }

    .step .kicker .num {
      width: 28px;
      height: 28px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(37, 99, 235, .25);
      background: rgba(37, 99, 235, .10);
      color: var(--text);
    }

    .step h3 {
      margin: 10px 0 8px;
      font-size: 18px;
    }

    .step p {
      margin: 0;
      color: var(--muted);
    }

    .step.active {
      background: rgba(37, 99, 235, .06);
      border-color: rgba(37, 99, 235, .18);
    }

    .step.active h3 {
      color: var(--text);
    }

    .step.active .kicker .num {
      border-color: rgba(34, 197, 94, .35);
      background: rgba(34, 197, 94, .12);
    }

    .platform-mobile {
      display: none;
      margin-top: 32px;
      gap: 26px;
    }

    .platform-card {
      border-radius: var(--r16);
      border: 1px solid var(--line);
      background: #fff;
      overflow: hidden;
      box-shadow: 0 18px 40px rgba(15, 23, 42, .10);
    }

    .platform-card-media {
      width: 100%;
      aspect-ratio: 16 / 10;
      overflow: hidden;
      background: rgba(2, 6, 23, .04);
    }

    .platform-card-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .platform-card-body {
      padding: 16px 18px 18px;
    }

    .platform-card .kicker {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      color: var(--muted);
      font-weight: 800;
      letter-spacing: .18px;
      text-transform: uppercase;
    }

    .platform-card .kicker .num {
      width: 28px;
      height: 28px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(37, 99, 235, .25);
      background: rgba(37, 99, 235, .10);
      color: var(--text);
    }

    .platform-card h3 {
      margin: 10px 0 8px;
      font-size: 17px;
    }

    .platform-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

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

    .stat {
      padding: 12px 0;
      border-top: 1px solid var(--line);
    }

    .bg-dark .stat {
      border-top: 1px solid rgba(255, 255, 255, .12);
    }

    .stat b {
      display: block;
      font-size: 40px;
      letter-spacing: -1px;
      line-height: 1.05;
      font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    }

    .stat span {
      display: block;
      margin-top: 8px;
      font-size: 13px;
      color: var(--muted);
    }

    .bg-dark .stat span {
      color: rgba(238, 242, 255, .70);
    }

    .fade-stack {
      position: relative;
      border-radius: var(--r16);
      border: 1px solid rgba(255, 255, 255, .10);
      overflow: hidden;
      background: rgba(255, 255, 255, .04);
      box-shadow: 0 22px 80px rgba(0, 0, 0, .55);
      aspect-ratio: 16 / 10;
    }

    .fade-stack img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      animation: fadeStack 16s infinite;
      filter: contrast(1.03) saturate(1.05);
    }

    .fade-stack img:nth-child(1) {
      animation-delay: 0s;
    }

    .fade-stack img:nth-child(2) {
      animation-delay: 4s;
    }

    .fade-stack img:nth-child(3) {
      animation-delay: 8s;
    }

    .fade-stack img:nth-child(4) {
      animation-delay: 12s;
    }

    @keyframes fadeStack {

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

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

        footer {
      padding: 52px 0 40px;
      border-top: 1px solid var(--line);
      background: #F7F8FB;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
      gap: 56px;
      align-items: start;
    }

    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .footer-links-blocks {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 32px;
      justify-items: end;
      align-items: start;
    }

    .footer-heading {
      margin: 0 0 6px;
      font-weight: 600;
      letter-spacing: .18px;
      font-size: 13px;
      color: rgba(15, 23, 42, .7);
      text-transform: uppercase;
    }

    .small {
      font-size: 13px;
      color: var(--muted);
    }

    .footer-links {
      display: grid;
    }

    .footer-links a {
      display: block;
      padding: 4px 0;
      color: var(--muted);
      font-size: 13px;
      letter-spacing: .01em;
    }

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

        @media (max-width: 980px) {
      h1 {
        font-size: 42px;
      }

      h2 {
        font-size: 30px;
      }

      .grid-2,
      .split,
      .ai-layout,
      .scroll-shell,
      .impact-media,
      .problem-layout {
        grid-template-columns: 1fr;
      }

      .hero-highlights,
      .impact-cards,
      .flow,
      .cadence-grid {
        grid-template-columns: 1fr;
      }

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

      .quote-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .quote-text {
        font-size: 22px;
      }

      .quote-right {
        border-left: 0;
        border-top: 1px solid rgba(14, 165, 233, .18);
        padding-left: 0;
        padding-top: 16px;
      }

      .bg-graphite .quote-right {
        border-top-color: var(--graphiteLine);
      }

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

      .highlights-section .hero-highlight {
        padding-top: 16px;
        border-top: 1px solid rgba(15, 23, 42, .08);
      }

      .highlights-section .hero-highlight:not(:first-child) {
        border-left: 0;
        padding-left: 0;
      }

      .highlights-section .hero-highlight:first-child {
        padding-top: 0;
        border-top: 0;
      }

      .collage-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
        grid-auto-rows: 170px;
        aspect-ratio: auto;
      }

      .collage-grid .collage-item {
        grid-column: auto;
        grid-row: auto;
      }

      .audience-head {
        flex-direction: column;
        align-items: flex-start;
      }

      .nav-links {
        display: none;
      }

      .nav-cta {
        display: none;
      }

      .nav-menu {
        display: block;
      }

            .ai-visual {
        
        padding: 0px 0px 0px 0px;
      }

      .ai-visual::before { inset: 8px; } 
      .ai-visual-svg {
        width: 86%;
      }

      .ai-visual img {
        width: 120%;
        max-width: none;
        margin-left: 10%; 
      }

      .ai-points {
        padding-left: 0;
      }

      .ai-points::before {
        display: none;
      }

      .ai-step {
        margin-left: 0;
      }

      .flow-step::after {
        display: none;
      }

      .scroll-shell {
        display: none;
        --platform-scale: 1;
        --steps-opacity: 1;
        --steps-slide: 0px;
        --steps-shift: 0px;
      }

      .platform-visual-wrap,
      .platform-steps-wrap {
        grid-column: 1 / -1;
      }

      .platform-visual {
        position: relative;
        top: 0;
      }

      .platform-steps {
        padding-top: 24px;
        position: relative;
        top: 0;
      }

      .platform-mobile {
        display: grid;
      }

      .contact-layout {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .contact-card {
        max-width: 100%;
        justify-self: stretch;
      }

      .contact-form {
        grid-template-columns: 1fr;
      }

      .platform-screen {
        transform: none;
      }

      .problem-collage {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 24px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .footer-links-blocks {
        grid-template-columns: 1fr;
        justify-items: start;
        gap: 18px;
      }

      .hero-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
          "copy"
          "media"
          "actions";
        gap: 14px;
      }

      .hero-tags {
        margin-top: 6px;
      }

      .hero-cta {
        margin-top: 10px;
        margin-bottom: 8px;
      }

      .hero-audience {
        margin-top: 8px;
      }

      .hero-actions {
        margin-top: -8px;
      }

      .hero-media {
        margin-top: 0;
      }
    }

    @media (max-width: 640px) {
      .collage-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 190px;
      }

      .problem-collage {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
      }

      .nav .container {
        padding-left: 24px;
        padding-right: 24px;
      }
    }

    @media (max-width: 440px) {
      .problem-collage {
        grid-template-columns: 1fr;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .fade-stack img {
        animation: none;
        opacity: 0;
      }

      .fade-stack img:first-child {
        opacity: 1;
      }

      .screen img {
        transition: none;
      }
    }
  
