    :root {
      --ivory: #f7f4ec;
      --ivory-2: #eee9dc;
      --paper: #fffdf7;
      --ink: #181817;
      --muted: #68665f;
      --line: rgba(24, 24, 23, 0.16);
      --line-soft: rgba(24, 24, 23, 0.08);
      --clay: #d97757;
      --clay-dark: #b95f43;
      --lavender: #c8c4df;
      --sage: #c8d0b8;
      --yellow: #e8dca7;
      --dark: #242321;
      --radius: 18px;
      --container: 1240px;
      --ease: cubic-bezier(.16, 1, .3, 1);
    }

    * { box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
      background: var(--ivory);
    }

    body {
      margin: 0;
      color: var(--ink);
      background: var(--ivory);
      font-family: Arial, Helvetica, sans-serif;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    body.menu-open { overflow: hidden; }

    a { color: inherit; text-decoration: none; }
    button, input, textarea { font: inherit; }
    img, video { display: block; width: 100%; }
    button { color: inherit; }

    .container {
      width: min(var(--container), calc(100% - 48px));
      margin-inline: auto;
    }

    .section {
      padding: 128px 0;
      border-top: 1px solid var(--line-soft);
    }

    .kicker {
      margin: 0 0 18px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1;
    }

    .display {
      margin: 0;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(58px, 8.5vw, 132px);
      font-weight: 400;
      letter-spacing: -0.07em;
      line-height: .88;
    }

    .section-title {
      margin: 0;
      max-width: 940px;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(46px, 6vw, 88px);
      font-weight: 400;
      letter-spacing: -0.06em;
      line-height: .94;
    }

    .body-lg {
      color: var(--muted);
      font-size: clamp(18px, 2vw, 24px);
      line-height: 1.45;
    }

    .small-caps {
      color: var(--muted);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    /* NAV */
    .nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: color-mix(in srgb, var(--ivory) 92%, transparent);
      border-bottom: 1px solid var(--line-soft);
      backdrop-filter: blur(18px);
    }

    .nav-inner {
      height: 76px;
      display: flex;
      align-items: center;
      gap: 34px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-right: auto;
      font-size: 22px;
      font-weight: 700;
      letter-spacing: -.04em;
    }

    .logo-mark {
      width: 28px;
      height: 28px;
      display: grid;
      place-items: center;
      font-family: Georgia, serif;
      font-size: 29px;
      font-weight: 700;
      transform: rotate(-5deg);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 26px;
      font-size: 14px;
    }

    .nav-link {
      position: relative;
      padding: 8px 0;
      color: #363531;
    }

    .nav-link::after {
      content: "";
      position: absolute;
      left: 0;
      right: 100%;
      bottom: 2px;
      height: 1px;
      background: var(--ink);
      transition: right .35s var(--ease);
    }

    .nav-link:hover::after { right: 0; }

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

    .btn {
      min-height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 0 20px;
      border: 1px solid var(--ink);
      border-radius: 999px;
      background: transparent;
      cursor: pointer;
      transition:
        transform .25s var(--ease),
        background-color .25s ease,
        color .25s ease;
    }

    .btn:hover { transform: translateY(-2px); }

    .btn-dark {
      color: var(--ivory);
      background: var(--ink);
    }

    .btn-dark:hover { background: #353430; }

    .btn-light {
      color: var(--ink);
      background: var(--paper);
      border-color: var(--paper);
    }

    .btn-arrow::after {
      content: "↗";
      font-size: 16px;
    }

    .menu-btn {
      width: 46px;
      height: 46px;
      display: none;
      place-items: center;
      border: 1px solid var(--line);
      border-radius: 50%;
      background: transparent;
      cursor: pointer;
    }

    .menu-lines {
      width: 18px;
      display: grid;
      gap: 4px;
    }

    .menu-lines span {
      height: 1px;
      background: var(--ink);
      transition: transform .3s var(--ease), opacity .2s ease;
    }

    .mobile-menu {
      position: fixed;
      inset: 76px 0 0;
      z-index: 90;
      display: none;
      padding: 28px 24px 40px;
      background: var(--ivory);
      transform: translateY(-110%);
      transition: transform .55s var(--ease);
      overflow-y: auto;
    }

    .mobile-menu.open { transform: translateY(0); }

    .mobile-menu a {
      display: block;
      padding: 19px 0;
      border-bottom: 1px solid var(--line-soft);
      font-family: Georgia, serif;
      font-size: 36px;
      letter-spacing: -.04em;
    }

    /* HERO */
    .hero {
      padding: 105px 0 70px;
    }

    .hero-head {
      text-align: center;
    }

    .hero-head .display {
      max-width: 1050px;
      margin-inline: auto;
    }

    .hero-copy {
      max-width: 760px;
      margin: 34px auto 0;
    }

    .hero-actions {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 34px;
    }

    .hero-video-wrap {
      position: relative;
      margin-top: 76px;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      border-radius: 24px;
      background:
        radial-gradient(circle at 70% 25%, rgba(217,119,87,.35), transparent 30%),
        #232220;
      box-shadow: 0 35px 90px rgba(34, 31, 27, .16);
    }

    .hero-video {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 1;
      visibility: visible;
    }

    .video-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      padding: 30px;
      color: white;
      background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.42));
      pointer-events: none;
    }

    .video-caption {
      max-width: 420px;
      font-family: Georgia, serif;
      font-size: clamp(24px, 3vw, 42px);
      line-height: 1;
      letter-spacing: -.04em;
    }

    .play-badge {
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,.6);
      border-radius: 50%;
      backdrop-filter: blur(12px);
    }

    /* HELIX */
    .helix-section {
      min-height: 820px;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--ivory);
    }

    .helix-heading {
      position: relative;
      z-index: 8;
      max-width: 640px;
      margin-bottom: 55px;
    }

    .helix-stage {
      position: relative;
      width: 100%;
      height: 520px;
      perspective: 1300px;
      cursor: grab;
      user-select: none;
      touch-action: none;
    }

    .helix-stage:active { cursor: grabbing; }

    .helix-ring {
      position: absolute;
      inset: 0;
      transform-style: preserve-3d;
    }

    .helix-card {
      --angle: 0deg;
      --y: 0px;
      position: absolute;
      left: 50%;
      top: 50%;
      width: clamp(228px, 26.5vw, 385px);
      aspect-ratio: 3 / 2;
      overflow: hidden;
      border-radius: 16px;
      background: #d8d4ca;
      box-shadow: 0 28px 65px rgba(0,0,0,.16);
      transform:
        translate(-50%, -50%)
        rotateY(var(--angle))
        translateZ(605px)
        translateY(var(--y));
      backface-visibility: visible;
    }

    .helix-card img {
      height: 100%;
      object-fit: cover;
      pointer-events: none;
    }

    .helix-hint {
      position: absolute;
      right: 0;
      bottom: -28px;
      color: var(--muted);
      font-size: 13px;
    }

    /* PRODUCT PILLARS */
    .pillars {
      background: #ebe6da;
    }

    .pillars-intro {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 80px;
      align-items: end;
      margin-bottom: 86px;
    }

    .pillars-intro .body-lg {
      max-width: 520px;
      margin: 0 0 4px auto;
    }

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

    .pillar-card {
      min-height: 660px;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper);
    }

    .pillar-image {
      height: 330px;
      overflow: hidden;
      background: #d6d2c8;
    }

    .pillar-image img {
      height: 100%;
      object-fit: cover;
      transition: transform 1s var(--ease);
    }

    .pillar-card:hover img { transform: scale(1.035); }

    .pillar-content {
      flex: 1;
      padding: 30px;
    }

    .pillar-content h3 {
      margin: 8px 0 18px;
      font-family: Georgia, serif;
      font-size: 37px;
      font-weight: 400;
      letter-spacing: -.045em;
      line-height: 1;
    }

    .pillar-content p {
      margin: 0;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.55;
    }

    .feature-list {
      margin: 32px 0 0;
      padding: 0;
      list-style: none;
    }

    .feature-list li {
      position: relative;
      padding: 15px 0 15px 24px;
      border-top: 1px solid var(--line-soft);
      font-size: 14px;
      line-height: 1.35;
    }

    .feature-list li::before {
      content: "•";
      position: absolute;
      left: 2px;
      color: var(--clay);
    }

    /* USE CASES */
    .use-cases-intro {
      display: flex;
      justify-content: space-between;
      gap: 40px;
      align-items: flex-end;
      margin-bottom: 64px;
    }

    .use-cases-intro .body-lg {
      max-width: 500px;
      margin: 0;
    }

    .case-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    .case-card {
      position: relative;
      min-height: 620px;
      overflow: hidden;
      border-radius: var(--radius);
      background: #242321;
      color: white;
    }

    .case-card img {
      position: absolute;
      inset: 0;
      height: 100%;
      object-fit: cover;
      transition: transform 1s var(--ease);
    }

    .case-card:hover img { transform: scale(1.04); }

    .case-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.75)),
        linear-gradient(90deg, rgba(0,0,0,.15), transparent);
    }

    .case-copy {
      position: absolute;
      z-index: 2;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 34px;
    }

    .case-copy h3 {
      margin: 10px 0 14px;
      max-width: 520px;
      font-family: Georgia, serif;
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 400;
      letter-spacing: -.05em;
      line-height: .98;
    }

    .case-copy p {
      max-width: 560px;
      margin: 0;
      color: rgba(255,255,255,.76);
      font-size: 16px;
      line-height: 1.5;
    }

    /* QUOTES */
    .quotes {
      overflow: hidden;
      background: var(--clay);
      color: #211914;
    }

    .quotes .kicker { color: rgba(33,25,20,.65); }

    .quote-track {
      width: max-content;
      display: flex;
      gap: 18px;
      margin-top: 62px;
      animation: marquee 48s linear infinite;
    }

    .quote-track:hover { animation-play-state: paused; }

    @keyframes marquee {
      to { transform: translateX(calc(-50% - 9px)); }
    }

    .quote-card {
      width: min(520px, 82vw);
      min-height: 430px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 34px;
      border: 1px solid rgba(33,25,20,.22);
      border-radius: var(--radius);
      background: rgba(255,255,255,.13);
    }

    .quote-card blockquote {
      margin: 0;
      font-family: Georgia, serif;
      font-size: clamp(27px, 3vw, 40px);
      line-height: 1.07;
      letter-spacing: -.04em;
    }

    .quote-person {
      padding-top: 28px;
      border-top: 1px solid rgba(33,25,20,.18);
      font-size: 14px;
      line-height: 1.45;
    }

    .quote-person strong {
      display: block;
      margin-bottom: 4px;
    }

    /* STACK */
    .stack-section {
      background: var(--dark);
      color: var(--ivory);
    }

    .stack-section .kicker,
    .stack-section .body-lg {
      color: rgba(247,244,236,.62);
    }

    .stack-top {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 70px;
      align-items: end;
    }

    .stack-top .body-lg {
      max-width: 520px;
      margin: 0 0 5px auto;
    }

    .logo-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1px;
      margin-top: 70px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.12);
    }

    .logo-cell {
      min-height: 150px;
      display: grid;
      place-items: center;
      padding: 28px;
      background: var(--dark);
    }

    .logo-cell img {
      max-width: 145px;
      max-height: 52px;
      object-fit: contain;
      filter: grayscale(1) brightness(2.7);
      opacity: .72;
      transition: opacity .25s ease, transform .25s var(--ease);
    }

    .logo-cell:hover img {
      opacity: 1;
      transform: scale(1.04);
    }

    /* FAQ */
    .faq-layout {
      display: grid;
      grid-template-columns: .72fr 1.28fr;
      gap: 90px;
    }

    .faq-sticky {
      position: sticky;
      top: 112px;
      align-self: start;
    }

    .faq-list {
      border-top: 1px solid var(--line);
    }

    .faq-item {
      border-bottom: 1px solid var(--line);
    }

    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 27px 0;
      border: 0;
      background: none;
      text-align: left;
      cursor: pointer;
    }

    .faq-question span:first-child {
      font-family: Georgia, serif;
      font-size: clamp(23px, 2.5vw, 34px);
      letter-spacing: -.035em;
      line-height: 1.1;
    }

    .faq-plus {
      position: relative;
      width: 22px;
      height: 22px;
      flex: 0 0 auto;
    }

    .faq-plus::before,
    .faq-plus::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      width: 18px;
      height: 1px;
      background: var(--ink);
      transform: translate(-50%, -50%);
      transition: transform .35s var(--ease);
    }

    .faq-plus::after {
      transform: translate(-50%, -50%) rotate(90deg);
    }

    .faq-item.open .faq-plus::after {
      transform: translate(-50%, -50%) rotate(0);
    }

    .faq-answer {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows .55s var(--ease);
    }

    .faq-item.open .faq-answer { grid-template-rows: 1fr; }

    .faq-answer-inner {
      overflow: hidden;
    }

    .faq-answer p {
      max-width: 760px;
      margin: 0;
      padding: 0 52px 28px 0;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.6;
    }

    /* CTA */
    .cta-section {
      padding: 120px 0;
      background: var(--yellow);
    }

    .cta-box {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      align-items: end;
      gap: 60px;
    }

    .cta-box .body-lg {
      max-width: 500px;
      margin: 0 0 4px auto;
      color: rgba(24,24,23,.67);
    }

    .cta-actions {
      display: flex;
      gap: 12px;
      margin-top: 34px;
    }

    /* FOOTER */
    .footer {
      padding: 76px 0 34px;
      background: var(--dark);
      color: var(--ivory);
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.4fr repeat(3, 1fr);
      gap: 50px;
    }

    .footer-brand .logo { font-size: 26px; }

    .footer-brand p {
      max-width: 330px;
      margin: 24px 0 0;
      color: rgba(247,244,236,.58);
      line-height: 1.55;
    }

    .footer-col h4 {
      margin: 0 0 18px;
      color: rgba(247,244,236,.48);
      font-size: 11px;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .footer-col a {
      display: block;
      margin: 12px 0;
      color: rgba(247,244,236,.88);
      font-size: 14px;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 30px;
      margin-top: 70px;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,.12);
      color: rgba(247,244,236,.48);
      font-size: 12px;
    }

    /* REVEAL */
    [data-reveal] {
      opacity: 0;
      transform: translateY(32px);
      transition:
        opacity .85s var(--ease),
        transform .85s var(--ease);
    }

    [data-reveal].visible {
      opacity: 1;
      transform: none;
    }

    @media (max-width: 1000px) {
      .nav-links,
      .nav-actions .nav-login { display: none; }
      .menu-btn { display: grid; }
      .mobile-menu { display: block; }

      .section { padding: 95px 0; }

      .pillars-intro,
      .stack-top,
      .cta-box {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .pillars-intro .body-lg,
      .stack-top .body-lg,
      .cta-box .body-lg {
        margin-left: 0;
      }

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

      .pillar-card {
        min-height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
      }

      .pillar-image { height: 100%; min-height: 430px; }

      .use-cases-intro {
        display: block;
      }

      .use-cases-intro .body-lg { margin-top: 28px; }

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

      .faq-layout {
        grid-template-columns: 1fr;
        gap: 44px;
      }

      .faq-sticky { position: static; }

      .logo-grid { grid-template-columns: repeat(3, 1fr); }

      .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
      .footer-brand { grid-column: 1 / -1; }
    }

    @media (max-width: 700px) {
      .container {
        width: min(100% - 28px, var(--container));
      }

      .nav-inner { height: 66px; }
      .mobile-menu { inset: 66px 0 0; }

      .hero { padding-top: 76px; }

      .hero-actions,
      .cta-actions {
        flex-direction: column;
      }

      .btn { width: 100%; }

      .hero-video-wrap {
        margin-top: 50px;
        aspect-ratio: 4 / 5;
        border-radius: 14px;
      }

      .hero-video { object-position: 50% center; }

      .video-overlay { padding: 18px; }

      .play-badge {
        width: 48px;
        height: 48px;
      }

      .helix-section { min-height: 660px; }
      .helix-stage { height: 390px; }
      .helix-card {
        width: 226px;
        transform:
          translate(-50%, -50%)
          rotateY(var(--angle))
          translateZ(385px)
          translateY(var(--y));
      }

      .pillar-card { display: block; }
      .pillar-image { min-height: 290px; height: 290px; }
      .pillar-content { padding: 24px; }

      .case-card { min-height: 520px; }
      .case-copy { padding: 24px; }

      .quote-card {
        min-height: 380px;
        padding: 25px;
      }

      .logo-grid { grid-template-columns: repeat(2, 1fr); }
      .logo-cell { min-height: 120px; }

      .faq-answer p { padding-right: 0; }

      .footer-top { grid-template-columns: 1fr 1fr; }
      .footer-brand { grid-column: 1 / -1; }
      .footer-bottom { flex-direction: column; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-delay: 0ms !important;
        transition-duration: .001ms !important;
      }
      [data-reveal] {
        opacity: 1;
        transform: none;
      }
    }

    /* CNW Terminal identity */
    :root {
      --ivory: #f5f8f6;
      --ivory-2: #e7efe9;
      --paper: #ffffff;
      --ink: #101112;
      --muted: #5f6964;
      --line: rgba(11, 61, 46, .18);
      --line-soft: rgba(11, 61, 46, .09);
      --clay: #146046;
      --clay-dark: #0b3d2e;
      --lavender: #d9e8df;
      --sage: #b9d4c4;
      --yellow: #dcece3;
      --dark: #071b15;
      --radius: 16px;
      --ease: cubic-bezier(.22, 1, .36, 1);
    }

    body {
      font-family: "Inter Tight", Inter, ui-sans-serif, system-ui, sans-serif;
      background:
        radial-gradient(circle at 82% 3%, rgba(185,212,196,.28), transparent 24rem),
        var(--ivory);
    }

    html,
    body {
      width: 100%;
      max-width: 100%;
      overflow-x: clip;
    }

    ::selection { color: #fff; background: var(--clay); }

    .display,
    .section-title,
    .pillar-content h3,
    .case-copy h3,
    .quote-card blockquote,
    .faq-question span:first-child,
    .mobile-menu a {
      font-family: "Inter Tight", Inter, ui-sans-serif, system-ui, sans-serif;
    }

    .display {
      max-width: 1120px;
      font-weight: 500;
      letter-spacing: -.065em;
      line-height: .88;
      text-wrap: balance;
    }

    .display > span { display: block; }

    .section-title {
      font-weight: 500;
      letter-spacing: -.055em;
      text-wrap: balance;
    }

    .body-lg { font-weight: 400; }

    .kicker,
    .small-caps {
      color: var(--clay);
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .nav {
      background: rgba(255,255,255,.88);
      border-color: var(--line-soft);
      -webkit-backdrop-filter: blur(18px);
    }

    .logo {
      color: #102a43;
      font-size: 18px;
      font-weight: 750;
      letter-spacing: -.025em;
    }

    .logo-mark {
      width: 30px;
      height: 30px;
      border-radius: 7px;
      background: #102a43;
      color: #fff;
      font-family: "Inter Tight", sans-serif;
      font-size: 15px;
      transform: none;
    }

    .nav-link { color: #34443e; }
    .nav-link::after { background: var(--clay); }

    .btn {
      border-color: rgba(11,61,46,.26);
      font-weight: 650;
    }

    .btn:hover { border-color: var(--clay-dark); }

    .btn-dark {
      border-color: var(--clay-dark);
      background: var(--clay-dark);
      color: #fff;
    }

    .btn-dark:hover { background: var(--clay); }

    .hero { padding-top: 118px; }
    .hero-copy { color: #53635d; }

    .hero-video-wrap {
      border: 1px solid var(--line);
      border-radius: 24px;
      background: #eaf3ed;
      box-shadow: 0 28px 80px rgba(11,61,46,.14);
    }

    .hero-video {
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }

    .video-overlay {
      padding: 24px;
      color: var(--ink);
      background: none;
    }

    .video-caption {
      padding: 12px 16px;
      border: 1px solid rgba(11,61,46,.13);
      border-radius: 999px;
      background: rgba(255,255,255,.9);
      box-shadow: 0 10px 30px rgba(11,61,46,.10);
      font-family: "Inter Tight", sans-serif;
      font-size: 14px;
      font-weight: 650;
      letter-spacing: 0;
    }

    .play-badge {
      border-color: rgba(11,61,46,.16);
      background: rgba(255,255,255,.94);
      color: var(--clay-dark);
      box-shadow: 0 10px 30px rgba(11,61,46,.10);
      -webkit-backdrop-filter: blur(12px);
    }

    .helix-section { background: #f2f7f4; }

    .helix-card {
      border: 1px solid rgba(11,61,46,.16);
      border-radius: 14px;
      background: #fff;
      box-shadow: 0 24px 60px rgba(11,61,46,.14);
    }

    .helix-card img {
      object-fit: cover;
      object-position: center top;
    }

    .pillars { background: #e8f1eb; }

    .pillar-card {
      border-color: rgba(11,61,46,.16);
      background: rgba(255,255,255,.92);
      box-shadow: 0 18px 48px rgba(11,61,46,.06);
    }

    .pillar-image { background: #dfeae3; }
    .pillar-image img { object-position: center top; }
    .pillar-content h3 { font-weight: 520; }
    .feature-list li::before { color: var(--clay); }

    .case-card {
      min-height: 610px;
      display: flex;
      flex-direction: column;
      border: 1px solid var(--line);
      background: #fff;
      color: var(--ink);
      box-shadow: 0 18px 48px rgba(11,61,46,.06);
    }

    .case-card img {
      position: relative;
      inset: auto;
      height: 430px;
      flex: 0 0 auto;
      object-fit: cover;
      object-position: center top;
    }

    .case-card::after { display: none; }

    .case-copy {
      position: relative;
      inset: auto;
      flex: 1;
      padding: 28px 30px 32px;
      background: #fff;
    }

    .case-copy h3 { font-weight: 520; }
    .case-copy p { color: var(--muted); }

    .quotes {
      background: var(--clay-dark);
      color: #fff;
    }

    .quotes .kicker { color: rgba(255,255,255,.64); }

    .quote-card {
      border-color: rgba(255,255,255,.2);
      background: rgba(255,255,255,.08);
    }

    .quote-card blockquote { font-weight: 430; }
    .quote-person { border-color: rgba(255,255,255,.18); }

    .stack-section,
    .logo-cell { background: var(--dark); }

    .logo-cell { color: rgba(255,255,255,.76); }

    .cta-section { background: var(--yellow); }
    .footer { background: var(--dark); }

    .faq-question span:first-child { font-weight: 500; }
    .faq-plus::before,
    .faq-plus::after { background: var(--clay-dark); }

    @media (max-width: 700px) {
      .container { width: calc(100% - 28px); }
      .nav-inner {
        justify-content: space-between;
        gap: 12px;
      }
      .logo { margin-right: 0; }
      .nav-actions { margin-left: auto; }
      .nav-actions > .btn { display: none; }
      .menu-btn {
        display: grid !important;
        flex: 0 0 46px;
      }
      .hero { padding-top: 82px; }
      .hero-head .display {
        max-width: 340px;
        margin-inline: auto;
        font-size: 36px;
        line-height: .94;
        letter-spacing: -.05em;
        text-wrap: wrap;
      }
      .hero-copy {
        max-width: 310px;
        font-size: 17px;
      }
      .hero-video-wrap { aspect-ratio: 4 / 3; }
      .video-caption { display: none; }
      .case-card { min-height: auto; }
      .case-card img { height: 300px; }
    }
.logo-cell-label{font-family:Georgia,serif;font-size:24px;opacity:.76;text-align:center;line-height:1.05}

/* Match the Terminal hero surface to Ruty's screen — Ruty remains untouched. */
.hero .container {
  width: min(1180px, calc(100% - 32px));
}

.hero-video-wrap.terminal-scroll-screen {
  width: 100%;
  height: 620px;
  min-height: 620px;
  margin: 76px auto 0;
  aspect-ratio: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(34px);
  transition:
    opacity .82s cubic-bezier(.22, 1, .36, 1),
    transform .82s cubic-bezier(.22, 1, .36, 1),
    visibility 0s linear .82s;
}

.hero-video-wrap.terminal-scroll-screen.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition-delay: 0s;
}

@media (max-width: 760px) {
  .hero-video-wrap.terminal-scroll-screen {
    height: 520px;
    min-height: 520px;
    margin-top: 50px;
  }
}

@media (max-width: 540px) {
  .hero-video-wrap.terminal-scroll-screen {
    height: 390px;
    min-height: 390px;
    aspect-ratio: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video-wrap.terminal-scroll-screen {
    transition-duration: .01ms;
  }
}

/* Ruty blue palette for every Terminal product section. */
:root {
  --ivory: #f5f9fc;
  --ivory-2: #e5f1f9;
  --paper: #fff;
  --ink: #111418;
  --muted: #526473;
  --line: rgba(16, 42, 67, .18);
  --line-soft: rgba(16, 42, 67, .09);
  --clay: #315f8b;
  --clay-dark: #102a43;
  --lavender: #dbe7f6;
  --sage: #c3d5e9;
  --yellow: #e5f1f9;
  --dark: #102a43;
}

body {
  background: radial-gradient(circle at 82% 3%, rgba(91, 168, 255, .18), transparent 24rem), var(--ivory);
}
.nav-link { color: #526473; }
.btn { border-color: rgba(16, 42, 67, .26); }
.hero-copy { color: #526473; }
.hero-video-wrap { background: #e5f1f9; box-shadow: 0 28px 80px rgba(16, 42, 67, .14); }
.video-caption, .play-badge, .pillar-card, .case-card { box-shadow: 0 18px 48px rgba(16, 42, 67, .08); }
#use-cases, #faq { background: #e5f1f9; }
.quotes { background: #174b9f; color: #f5faff; }
.stack-section, .logo-cell, .footer { background: #102a43; }
.stack-section { color: #f5faff; }
.stack-section :is(.kicker, .body-lg) { color: rgba(229, 241, 249, .72); }
.cta-section { background: #102a43; color: #f5faff; }
.cta-section .body-lg { color: rgba(229, 241, 249, .72); }
.cta-section .btn-dark { border-color: #fff; background: #fff; color: #102a43; }
.cta-section .btn:not(.btn-dark) { border-color: rgba(255,255,255,.46); color: #fff; }
