  :root {
    --bg: #FFFFFF;
    --bg-soft: #FAFAFA;
    --bg-tint: #F4F4F2;
    --ink: #080830;
    --ink-2: #4F4F6E;
    --ink-3: #9A9AB0;
    --line: #ECECF2;
    --line-2: #D4D4DE;
    --accent: #003CFF;
    --aqua: #87DFFF;
    --aqua-light: #BEE6FF;
    --aqua-soft: #E6F8FF;
    --green: #10B981;

    /* Grays for surfaces/visuals (hero dashboard, /PLATFORM bg) */
    --gray-50: #FAFAFA;
    --gray-75: #F4F6FA;
    --gray-100: #F4F4F8;
    --gray-150: #F3F3F7;
    --gray-200: #ECECF2;
    --gray-300: #E5E5EC;
    --gray-400: #D9D9E0;
    --gray-500: #C0C0CC;
    --gray-600: #9A9AB0;
    --gray-700: #6E6E85;
    --gray-800: #4F4F6E;

    /* Border radius */
    --b-radius-0: 0px;
    --b-radius-5: 5px;
    --b-radius-8: 8px;
    --b-radius-10: 10px;
    --b-radius-15: 15px;
    --b-radius-20: 20px;
    --b-radius-25: 25px;
    --b-radius-30: 30px;
    --b-radius-full: 100px;

    /* Font weights */
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;

    /* Font sizes — headings */
    --fs-h1: 72px;
    --fs-h2: 44px;
    --fs-h3: 20px;
    --fs-h4: 15px;

    /* Font sizes — body / supporting text */
    --fs-lead: 17px;
    --fs-body: 15px;
    --fs-sm: 14px;
    --fs-xs: 13px;
    --fs-micro: 12px;

    --radius: 8px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --maxw: 1300px;
    --font: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --mono: "Space Grotesk", ui-sans-serif, sans-serif;
  }

  /* Mobile size overrides — single place to retune type scale */
  @media (max-width: 640px) {
    :root {
      --fs-h1: 40px;
      --fs-h2: 28px;
      --fs-h3: 18px;
      --fs-h4: 14px;
      --fs-lead: 15px;
      --fs-body: 14px;
      --fs-sm: 13px;
      --fs-xs: 12px;
      --fs-micro: 11px;
    }
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; overflow-x: clip; }
  body { overflow-x: clip; }
  body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font);
    font-size: var(--fs-body);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.011em;
  }
  a { color: inherit; text-decoration: none; }
  img, svg { display: block; max-width: 100%; }

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

  /* ============ NAV ============ */
  .nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg);
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    border-bottom: 1px solid var(--line);
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: var(--fw-semibold);
    font-size: 15px;
    letter-spacing: -0.02em;
  }
  .logo img { height: 32px; width: auto; display: block; }
  .logo-mark {
    width: 24px;
    height: 24px;
    border-radius: var(--b-radius-5);
    background: var(--ink);
    display: grid;
    place-items: center;
    color: var(--bg);
    font-weight: var(--fw-bold);
    font-size: 13px;
  }
  .nav-links {
    display: flex;
    gap: 32px;
    font-size: 14px;
    color: var(--ink-2);
  }
  .nav-links a {
    font-size: 14px;
    font-weight: var(--fw-medium);
    color: #4F4F6E;
    position: relative;
    transition: color .15s;
  }
  .nav-links a:hover { color: var(--ink); }
  .nav-links a.active { color: var(--ink); font-weight: var(--fw-medium); }
  .nav-links a.active::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--accent);
  }
  .nav-right { display: flex; align-items: center; gap: 14px; }
  .nav-right .signin { font-size: 14px; font-weight: var(--fw-medium); color: var(--ink); }
  .nav-right .signin:hover { color: var(--ink-2); }

  /* ============ BUTTONS ============ */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: var(--fw-medium);
    padding: 9px 16px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .15s ease;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--accent);
    background-image: linear-gradient(135deg, #003CFF 0%, #2E6BFF 100%);
    color: #fff;
    box-shadow: 0 0 0 rgba(255,255,255,0.18) inset, 0 6px 16px -6px rgba(0,60,255,0.55);
  }
  .btn-primary:hover {
    background-image: linear-gradient(135deg, #0033DB 0%, #2659E0 100%);
    /* transform: translateY(-1px); */
  }
  .btn-secondary {
    background: var(--bg);
    color: var(--ink);
    border-color: var(--line-2);
  }
  .btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
  .btn-ghost {
    color: var(--ink);
    background: transparent;
    padding: 9px 0;
  }
  .btn-ghost:hover { color: var(--ink-2); }
  .btn .arrow { transition: transform .15s; }
  .btn:hover .arrow { transform: translateX(2px); }
  .btn-lg { padding: 12px 22px; font-size: 14px; }

  /* Dark "Try Cornytis" button */
  .btn-try {
    background: var(--ink);
    color: #fff;
    border: 1px solid var(--ink);
    padding: 11px 18px;
    font-size: 14px;
    font-weight: var(--fw-medium);
    border-radius: var(--b-radius-10);
  }
  .btn-try:hover {
    background: #14143F;
    border-color: #14143F;
    color: #fff;
  }

  /* ============ HERO ============ */
  .hero {
    padding: 80px 0 80px;
    overflow: hidden;
    text-align: center;
    position: relative;
  }
  .hero-inner { position: relative; max-width: 800px; margin: 0 auto; padding-top: 24px; }
  .pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: var(--fw-medium);
    color: var(--ink-2);
    padding: 6px 14px 6px 6px;
    border: 1px solid #E1E6F7;
    border-radius: var(--b-radius-full);
    background: #F5F7FF;
    margin-bottom: 28px;
    box-shadow: none;
  }
  .pill-tag {
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    font-weight: var(--fw-semibold);
    padding: 3px 10px;
    border-radius: var(--b-radius-full);
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }
  .pill-text {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--accent);
    text-transform: uppercase;
  }
  h1.hero-title {
    font-size: var(--fs-h1);
    font-weight: var(--fw-medium);
    line-height: 1.04;
    letter-spacing: -0.035em;
    margin-bottom: 22px;
    color: var(--ink);
  }
  h1.hero-title span {
    background: none;
    -webkit-background-clip: text;
    background-clip: text;
    color: var(--ink);
    -webkit-text-fill-color: var(--ink);
  }
  .hero-lead {
    font-size: var(--fs-lead);
    line-height: 1.55;
    color: #5A6079;
    max-width: 560px;
    margin: 0 auto 32px;
  }
  .hero-cta {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
  }
  .hero-cta .btn-primary {
    padding: 13px 22px;
    border-radius: var(--b-radius-10);
    font-weight: var(--fw-medium);
    font-size: 15px;
    background-image: linear-gradient(135deg, #003CFF 0%, #2E6BFF 100%);
  }
  .hero-cta .btn-secondary {
    padding: 13px 22px;
    border-radius: var(--b-radius-10);
    font-weight: var(--fw-medium);
    font-size: 15px;
    background: #fff;
    color: var(--ink);
    border-color: #E0E2EA;
  }

  .hero-shape {
    position: absolute;
    top: 50px;
    pointer-events: none;
    z-index: 1;
    opacity: 1;
    width: auto;
    height: auto;
    max-width: none;
  }
  .hero-shape-left  { left: -340px;  width: 760px; }
  .hero-shape-right { right: -120px; width: 850px; }
  .hero .container  { position: relative; z-index: 1; }

  /* Hero dashed vertical lines pattern */
  .hero-lines {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    min-width: 1400px;
    max-width: none;
    height: auto;
    pointer-events: none;
    z-index: 0;
    opacity: 1;
  }

  /* Hero cloud backdrop placeholders */
  .hero-clouds {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
  }
  .hero-clouds .ph {
    position: absolute;
    width: 280px;
    height: 140px;
    opacity: 0.6;
  }
  .hero-clouds .ph.left  { top: 20px; left: -40px; transform: rotate(-6deg); }
  .hero-clouds .ph.right { top: 40px; right: -40px; transform: rotate(8deg); }

  /* Hero dashboard styles live in hero-dashboard.css */

  /* ============ LOGOS / PARTNERS MARQUEE ============ */
  .logos {
    padding: 48px 0;
    border-bottom: 1px solid var(--line);
    /* border-top: 1px solid var(--line); */
    /* background: var(--bg-soft); */
    overflow: hidden;
  }
  .logos-wrap {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  .logos-label {
    flex-shrink: 0;
    font-weight: var(--fw-medium);
    padding-right: 32px;
    border-right: 1px solid var(--line-2);
    margin: 0;
    white-space: nowrap;
    font-size: 12px;
    color: var(--ink-3);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .logos-marquee {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    mask-image: linear-gradient(
      90deg,
      transparent 0%,
      #000 8%,
      #000 92%,
      transparent 100%
    );
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0%,
      #000 8%,
      #000 92%,
      transparent 100%
    );
  }
  .logos-track {
    display: flex;
    align-items: center;
    gap: 64px;
    width: max-content;
    animation: logos-marquee 45s linear infinite;
    will-change: transform;
  }
  .logos-track:hover { animation-play-state: paused; }
  .logos-track img {
    height: 28px;
    width: auto;
    flex-shrink: 0;
    opacity: 0.78;
    filter: grayscale(0.15);
    transition: opacity .2s ease, filter .2s ease;
    user-select: none;
    -webkit-user-drag: none;
  }
  .logos-track img:hover {
    opacity: 1;
    filter: grayscale(0);
  }
  @keyframes logos-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  @media (prefers-reduced-motion: reduce) {
    .logos-track { animation: none; }
  }

  /* ============ SECTION ============ */
  section { padding: 112px 0; }
  .section-head { max-width: 700px; margin-bottom: 56px; }
  .section-head.center { margin: 0 auto 56px; text-align: center; }
  .section-eyebrow {
    display: inline-block;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--accent);
    font-weight: var(--fw-medium);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 15px;
    /* border: 1px solid var(--line); */
    border-radius: var(--b-radius-8);
    background: var(--gray-75);
    margin-bottom: 20px;
  }
  h2.section-title {
    font-size: var(--fs-h2);
    font-weight: var(--fw-medium);
    line-height: 1.08;
    letter-spacing: -0.028em;
    margin-bottom: 16px;
  }
  h2.section-title span {
    color: var(--ink-3);
  }
  .section-lead {
    font-size: var(--fs-lead);
    color: var(--ink-2);
    line-height: 1.55;
    max-width: 560px;
  }
  .center .section-lead { margin: 0 auto; }

  /* ============ /PLATFORM SECTION ============ */
  .platform-section { padding: 96px 0; }
  .platform-section .section-title { margin-bottom: 18px; }
  /* Title's span should be same color, not gray, in this section */
  .platform-section h2.section-title span { color: var(--ink); }

  .platform-card {
    position: relative;
    border-radius: var(--b-radius-30);
    background: var(--gray-75);
    padding: 16px;
    overflow: hidden;
  }

  /* Top row: Workflow builder (2fr, hosts graph) + Universal connectors (1fr) */
  .platform-row-top {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

  /* Bottom row: 4 features in their own white cards */
  .platform-row-bottom {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .platform-feature {
    position: relative;
    padding: 32px 28px 28px;
    background: #fff;
    border-radius: var(--b-radius-15);
    z-index: 1;
  }

  .platform-feature-lg {
    padding: 40px 40px 36px;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  /* Decorative pattern as background of the Workflow builder card */
  .platform-row-top > .platform-feature-lg:first-child {
    background-image: url("../graphics/Workflow builder Pattern.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
  }

  /* Floating graph — anchored to the right side of the Workflow builder card,
     fully contained within it (does not overlap Universal connectors) */
  .platform-graph {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    width: clamp(220px, 26vw, 320px);
    max-width: 50%;
    z-index: 3;
    pointer-events: none;
    filter:
      drop-shadow(0 14px 28px rgba(8, 8, 48, 0.10))
      drop-shadow(0 4px 10px rgba(8, 8, 48, 0.06));
  }
  .platform-graph img { width: 100%; height: auto; display: block; }

  /* Icons */
  .platform-ico {
    width: 40px;
    height: 40px;
    margin-bottom: 22px;
  }
  .platform-ico-sm {
    width: 32px;
    height: 32px;
    margin-bottom: 16px;
  }

  /* Titles */
  .platform-feature h3 {
    font-size: var(--fs-h3);
    font-weight: var(--fw-semibold);
    letter-spacing: -0.018em;
    margin-bottom: 12px;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  .platform-feature h4 {
    font-size: var(--fs-h4);
    font-weight: var(--fw-semibold);
    letter-spacing: -0.012em;
    margin-bottom: 10px;
    color: var(--ink);
  }
  .platform-feature p {
    font-size: 13.5px;
    color: var(--ink-2);
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 260px;
  }
  .platform-feature-lg p {
    font-size: 14px;
    max-width: 260px;
    margin-bottom: 28px;
  }

  .platform-badge {
    font-size: 10px;
    font-weight: var(--fw-semibold);
    padding: 4px 10px;
    background: #E0EAFF;
    color: var(--accent);
    border-radius: var(--b-radius-full);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.4;
  }

  .platform-btn {
    padding: 10px 18px;
    border-radius: var(--b-radius-full);
    font-size: 13px;
    font-weight: var(--fw-medium);
  }
  .platform-btn.btn-secondary { background: #fff; }
  .platform-feature-lg .platform-btn { margin-top: auto; }

  /* ============ SPLIT ============ */
  .split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .stack-panel {
    animation: panelIn .5s cubic-bezier(.2, .8, .2, 1) both;
  }
  @keyframes panelIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: none; }
  }

  /* ============ /THE_ARCHITECTURE ============ */
  .arch-section {
    background: var(--bg);
    padding: 96px 0;
  }
  .arch-title { font-size: var(--fs-h2); }
  .arch-section h2.section-title span { color: var(--ink); }

  /* Stack tabs (horizontal pills) */
  .stack-tabs {
    display: flex;
    gap: 10px;
    margin: 32px auto 64px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .stack-tab {
    font-family: var(--font);
    font-size: var(--fs-sm);
    padding: 10px 20px;
    border-radius: var(--b-radius-full);
    background: #F5F7FB;
    border: none;
    color: var(--ink-2);
    cursor: pointer;
    transition: background .25s ease, color .25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .stack-tab:hover { color: var(--ink); }
  .stack-tab.active {
    background: #D9ECFF;
    color: #1166FF;
    font-weight: var(--fw-medium);
  }
  .stack-tab.active::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1166FF;
  }

  /* Arch split: copy + card */
  .arch-split {
    grid-template-columns: 1fr 1fr;
    gap: 10rem;
    align-items: start;
  }

  /* Small "THE ARCHITECTURE" pill above panel heading */
  .stack-eyebrow {
    display: inline-block;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: #1166FF;
    background: #D9ECFF;
    padding: 4px 10px;
    border-radius: var(--b-radius-5);
    margin-bottom: 24px;
  }
  .arch-panel-title {
    font-size: clamp(32px, 3.6vw, 44px);
    font-weight: var(--fw-semibold);
    line-height: 1.08;
    letter-spacing: -0.022em;
    color: var(--ink);
    margin-bottom: 20px;
  }
  .arch-section .section-lead { color: var(--ink-2); max-width: 480px; }

  /* 2x2 checklist */
  .arch-list {
    list-style: none;
    margin-top: 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 32px;
    padding: 0;
  }
  .arch-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: var(--fs-body);
    color: var(--ink);
  }
  .arch-list li::before {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    margin-top: 3px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'><path d='M4 8.5l2.5 2.5L12 5.5'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
  }
  .arch-list li strong {
    display: block;
    font-weight: var(--fw-semibold);
    color: var(--ink);
    margin-bottom: 6px;
  }
  .arch-list li small {
    display: block;
    color: var(--ink-2);
    font-size: var(--fs-sm);
    line-height: 1.5;
  }

  /* ============ STEPS ============ */
  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: step;
  }
  .step {
    padding: 28px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    position: relative;
  }
  .step .num {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--ink-3);
    margin-bottom: 36px;
    display: block;
  }
  .step h4 {
    font-size: 16px;
    font-weight: var(--fw-semibold);
    margin-bottom: 6px;
    letter-spacing: -0.015em;
  }
  .step p {
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.55;
  }


  /* ============ FOOTER ============ */
  .site-footer {
    background: #04041A;
    color: #fff;
    padding: 56px 0 32px;
  }
  .footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 28px;
  }
  .footer-legal {
    list-style: none;
    display: flex;
    gap: 48px;
    padding: 0;
    margin: 0;
  }
  .footer-legal a {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    transition: color .15s ease;
  }
  .footer-legal a:hover { color: #fff; }
  .footer-lang {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    color: #fff;
    font-family: var(--font);
    font-size: 14px;
    padding: 8px 14px;
    border-radius: var(--b-radius-10);
    cursor: pointer;
  }
  .footer-lang .flag {
    width: 22px; height: 16px;
    border-radius: 3px;
    overflow: hidden;
    display: inline-flex;
  }
  .footer-lang .flag svg { width: 100%; height: 100%; display: block; }
  .footer-lang .caret { color: rgba(255,255,255,0.7); margin-left: 4px; }
  .footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin-bottom: 48px;
  }

  .footer-main {
    display: grid;
    grid-template-columns: 1.6fr 3fr;
    gap: 64px;
    margin-bottom: 64px;
  }
  .footer-brand { max-width: 360px; }
  .footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 22px;
  }
  .footer-logo img { height: 32px; width: auto; display: block; }
  .footer-tag {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin: 0 0 24px;
    line-height: 1.5;
  }
  .footer-contact {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer-contact a,
  .footer-contact-addr {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
    transition: color .15s ease;
  }
  .footer-contact a:hover { color: #fff; }
  .footer-socials {
    display: flex;
    gap: 12px;
  }
  .footer-socials a {
    width: 28px; height: 28px;
    display: inline-grid;
    place-items: center;
    color: rgba(255,255,255,0.8);
    border-radius: var(--b-radius-5);
    transition: color .15s ease;
  }
  .footer-socials a:hover { color: #fff; }

  .footer-cols {
    display: grid;
    grid-template-columns: 0.85fr 1fr 1fr;
    gap: 32px;
  }
  .footer-col h5 {
    font-size: 16px;
    font-weight: var(--fw-semibold);
    color: #fff;
    margin: 0 0 22px;
  }
  .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .footer-col a {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    transition: color .15s ease;
  }
  .footer-col a:hover { color: #fff; }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    padding: 8px 14px;
    border-radius: var(--b-radius-10);
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
  }
  .footer-status i {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #3CDDA0;
    box-shadow: 0 0 8px rgba(60, 221, 160, 0.6);
  }
  .footer-copy {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
  }

  @media (max-width: 760px) {
    .footer-main {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .footer-cols {
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }
    .footer-legal { gap: 24px; flex-wrap: wrap; }
  }
  @media (max-width: 480px) {
    .footer-cols { grid-template-columns: 1fr; }
  }

  /* ============ FADE ============ */
  .fade { opacity: 0; transform: translateY(10px); animation: fade .6s ease forwards; }
  .fade.d1 { animation-delay: .06s; }
  .fade.d2 { animation-delay: .12s; }
  .fade.d3 { animation-delay: .18s; }
  .fade.d4 { animation-delay: .24s; }
  @keyframes fade { to { opacity: 1; transform: none; } }

/* ============ INNER-PAGE HERO ============ */
.page-hero { padding: 96px 0 56px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 60% 50% at center top, rgba(0,0,0,0.4), transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at center top, rgba(0,0,0,0.4), transparent 75%);
  pointer-events: none;
}
.page-hero .inner { position: relative; max-width: 760px; margin: 0 auto; }
.page-hero h1 {
  font-size: clamp(38px, 5.5vw, 60px);
  font-weight: var(--fw-semibold);
  line-height: 1.04;
  letter-spacing: -0.032em;
  margin-bottom: 18px;
}
.page-hero h1 span {
  background: linear-gradient(90deg, var(--ink-2), var(--ink-3));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.page-hero p.lead {
  font-size: 17px; line-height: 1.55; color: var(--ink-2);
  max-width: 600px; margin: 0 auto 32px;
}
.page-hero .breadcrumb {
  font-family: var(--mono); font-size: 11px;
  color: var(--ink-3); letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 20px;
}
.page-hero .breadcrumb a { color: var(--ink-3); transition: color .15s; }
.page-hero .breadcrumb a:hover { color: var(--ink); }

/* ============ AGENT GRID (Products page) ============ */
.agent-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.agent-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color .18s, transform .18s, box-shadow .18s;
}
.agent-card:hover {
  border-color: var(--line-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -16px rgba(8,8,48,0.18);
}
.agent-card .ic {
  width: 40px; height: 40px;
  border-radius: var(--b-radius-10);
  background: linear-gradient(135deg, #87DFFF22, #003CFF22);
  color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.agent-card .kicker {
  font-family: var(--mono); font-size: 11px;
  color: var(--ink-3); letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.agent-card h3 {
  font-size: 20px; font-weight: var(--fw-semibold);
  letter-spacing: -0.018em; margin-bottom: 10px;
}
.agent-card p {
  font-size: 14px; color: var(--ink-2); line-height: 1.6;
  margin-bottom: 16px;
}
.agent-card .bullets {
  list-style: none; display: grid; gap: 6px;
  padding-top: 16px; border-top: 1px solid var(--line);
}
.agent-card .bullets li {
  font-size: 13px; color: var(--ink-2);
  padding-left: 16px; position: relative;
}
.agent-card .bullets li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}

/* ============ SOLUTION SECTION (Retail Banking page) ============ */
.solution {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}
.solution:nth-child(even) { background: var(--bg-soft); }
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.solution-num {
  font-family: var(--mono); font-size: 11px;
  color: var(--accent); letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 14px;
}
.solution h2 {
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: var(--fw-semibold); line-height: 1.1; letter-spacing: -0.022em;
  margin-bottom: 14px;
}
.solution h2 span {
  background: linear-gradient(90deg, var(--ink-2), var(--ink-3));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.solution .tagline {
  font-size: 16px; color: var(--ink-2); line-height: 1.55;
}
.solution .block { margin-bottom: 28px; }
.solution .block:last-child { margin-bottom: 0; }
.solution .block h4 {
  font-size: 12px; font-weight: var(--fw-medium);
  color: var(--accent); letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 10px;
}
.solution .block p {
  font-size: 15px; color: var(--ink); line-height: 1.6;
  margin-bottom: 10px;
}
.solution .changes {
  list-style: none; display: grid; gap: 10px;
  margin-top: 10px;
}
.solution .changes li {
  font-size: 14px; color: var(--ink);
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--b-radius-10);
  display: flex; gap: 10px; align-items: start;
}
.solution:nth-child(even) .changes li { background: #fff; }
.solution .changes li::before {
  content: "✓";
  color: var(--accent);
  font-weight: var(--fw-semibold);
  flex-shrink: 0;
}
.solution .contrast {
  padding: 18px 20px;
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
  margin-top: 18px;
  font-size: 13px; line-height: 1.55;
}
.solution .contrast strong {
  display: block; color: #87DFFF; font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px;
  font-weight: var(--fw-medium);
}

/* ============ DIFFERENTIATOR BAND ============ */
.diff-band {
  background: var(--ink);
  color: #fff;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.diff-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(135,223,255,0.18), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0,60,255,0.30), transparent 55%);
  pointer-events: none;
}
.diff-band .container { position: relative; }
.diff-band .eyebrow {
  display: inline-block; font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: #87DFFF; margin-bottom: 20px;
}
.diff-band h2 {
  font-size: clamp(34px, 4.5vw, 48px);
  font-weight: var(--fw-semibold); line-height: 1.08; letter-spacing: -0.026em;
  max-width: 760px; margin-bottom: 18px;
}
.diff-band h2 span {
  background: linear-gradient(90deg, #87DFFF 0%, #3D7BFF 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.diff-band .lead {
  font-size: 17px; color: rgba(255,255,255,0.72);
  max-width: 580px; margin-bottom: 40px; line-height: 1.55;
}
.diff-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.diff-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(135,223,255,0.18);
  border-radius: 12px;
  padding: 24px;
  backdrop-filter: blur(8px);
}
.diff-step .n {
  font-family: var(--mono); font-size: 11px;
  color: #87DFFF; margin-bottom: 16px;
}
.diff-step h4 {
  font-size: 16px; font-weight: var(--fw-semibold); margin-bottom: 6px;
}
.diff-step p {
  font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.55;
}

/* =========================================================
   PLACEHOLDERS & UTILITIES
   ========================================================= */

.ph {
  background: repeating-linear-gradient(45deg, #E6E6E6, #E6E6E6 8px, #EDEDED 8px, #EDEDED 16px);
  border: 1px dashed #C9C9D2;
  border-radius: 12px;
  color: #8A8A99;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 16px;
  min-height: 60px;
}
.ph-soft {
  background: #F2F3F7;
  border: 1px dashed #D4D4DE;
  color: #9A9AB0;
}

/* Bar chart placeholder (inside dashboard) */
.chart-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--b-radius-10);
  padding: 16px;
  margin-bottom: 12px;
}
.chart-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.chart-head .title { font-size: 13px; font-weight: var(--fw-medium); }
.chart-head .val { font-size: 22px; font-weight: var(--fw-semibold); letter-spacing: -0.02em; }
.chart-head .val small { color: var(--green); font-size: 11px; font-family: var(--mono); margin-left: 6px; font-weight: var(--fw-medium); }
.chart-bars {
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  gap: 4px;
  align-items: end;
  height: 90px;
}
.chart-bars i {
  display: block;
  background: linear-gradient(180deg, #3D6BFF 0%, #003CFF 100%);
  border-radius: 3px;
  opacity: 0.85;
}
.chart-bars i.lite { background: #EDF1FF; }

/* /HOW_IT_WORKS styles live in how-it-works.css */

/* ============ /FAQ ============ */
.faq-section {
  padding: 96px 0 120px;
  background: var(--bg);
}
.faq-head { text-align: center; margin-bottom: 72px; }
.faq-eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(7, 87, 255, 0.10);
  padding: 6px 12px;
  border-radius: var(--b-radius-8);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.faq-title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-medium);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 8px;
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  font-weight: var(--fw-medium);
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-num {
  font-family: var(--mono);
  font-weight: var(--fw-medium);
  color: var(--accent);
  opacity: 0.4;
  flex-shrink: 0;
}
.faq-q { flex: 1; }
.faq-toggle {
  width: 14px;
  height: 14px;
  position: relative;
  flex-shrink: 0;
  color: var(--accent);
}
.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.faq-toggle::before {
  top: 50%; left: 0; right: 0;
  height: 2px;
  transform: translateY(-50%);
}
.faq-toggle::after {
  left: 50%; top: 0; bottom: 0;
  width: 2px;
  transform: translateX(-50%);
}
.faq-item[open] .faq-toggle::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.faq-a {
  padding: 0 0 0 44px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 460px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0;
  transition: max-height .3s ease, opacity .25s ease, margin-top .3s ease;
}
.faq-item.is-open .faq-a {
  opacity: 1;
  margin-top: 16px;
}
@media (max-width: 760px) {
  .faq-grid {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    grid-template-rows: none;
    column-gap: 0;
  }
  .faq-section { padding: 64px 0 88px; }
  .faq-head { margin-bottom: 48px; }
  .faq-item summary { font-size: 16px; }
  .faq-a { padding-left: 38px; }
}

/* Workflow builder large preview placeholder */
.workflow-preview-ph {
  min-height: 240px;
  margin-bottom: 24px;
}

/* =========================================================
   LANG SWITCHER
   ========================================================= */
.lang-switch { position: relative; display: flex;}
.lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: var(--ink);
  background: transparent;
  /* border: 1px solid #E0E2EA; */
  /* border-radius: var(--b-radius-full); */
  /* padding: 6px 10px 6px 6px; */
  border: 0;
  cursor: pointer;
  font-family: var(--mono);
  transition: border-color .15s;
}
.lang:hover { border-color: var(--line-2); }
.lang .caret { color: var(--ink-2); transition: transform .2s; }
.lang-switch.open .lang .caret { transform: rotate(180deg); }
.flag {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eee;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.06);
}
.flag svg {
  height: 100%;
  width: auto;
  min-width: 100%;
  display: block;
}
.flag-gb svg { width: 200%; }
.flag-fr svg { width: 150%; }

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 32px -12px rgba(8,8,48,0.16);
  padding: 6px;
  list-style: none;
  margin: 0;
  display: none;
  z-index: 200;
}
.lang-switch.open .lang-menu { display: block; }
.lang-menu li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  font-size: 14px;
  border-radius: var(--b-radius-8);
  cursor: pointer;
  color: var(--ink);
}
.lang-menu li:hover { background: var(--bg-soft); }
.lang-menu li.selected { background: #F5F7FF; color: var(--accent); font-weight: var(--fw-medium); }

/* Footer variant — dark, opens upward */
.footer-lang-switch .lang {
  color: #fff;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--b-radius-10);
  padding: 8px 14px;
  font-family: var(--font);
}
.footer-lang-switch .lang:hover { background: rgba(255,255,255,0.08); }
.footer-lang-switch .lang .caret { color: rgba(255,255,255,0.7); }
.footer-lang-switch .lang-menu {
  top: auto;
  bottom: calc(100% + 8px);
  background: #0D0D21;
  border-color: rgba(255,255,255,0.10);
  box-shadow: 0 -12px 32px -12px rgba(0,0,0,0.5);
}
.footer-lang-switch .lang-menu li { color: #fff; }
.footer-lang-switch .lang-menu li:hover { background: rgba(255,255,255,0.06); }
.footer-lang-switch .lang-menu li.selected {
  background: rgba(7, 87, 255, 0.18);
  color: #87DFFF;
}

/* =========================================================
   BURGER + OFF-CANVAS MOBILE MENU
   ========================================================= */
.burger {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--b-radius-10);
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
  transition: border-color .15s;
}
.burger:hover { border-color: var(--line-2); }
.burger span {
  display: block;
  width: 18px;
  height: 1.6px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
  transform-origin: center;
}
body.mnav-open .burger span:nth-child(1) { transform: translateY(5.8px) rotate(45deg); }
body.mnav-open .burger span:nth-child(2) { opacity: 0; }
body.mnav-open .burger span:nth-child(3) { transform: translateY(-5.8px) rotate(-45deg); }

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 48, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 998;
}
body.mnav-open .mobile-nav-backdrop { opacity: 1; pointer-events: auto; }
body.mnav-open { overflow: hidden; }

.mobile-nav {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(94vw, 430px);
  background: #fff;
  z-index: 999;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(0.32, 0.72, 0.24, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: -16px 0 48px -16px rgba(8, 8, 48, 0.18);
}
body.mnav-open .mobile-nav { transform: translateX(0); }

/* top bar */
.mobile-nav-top {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; background: #fff; z-index: 1;
}
.mobile-nav-top .logo { margin-right: auto; }
.mobile-nav-top .logo img { height: 30px; width: auto; }
.mobile-nav-contact {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  font-size: 14px; font-weight: var(--fw-medium); color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--b-radius-10); padding: 9px 14px;
}
.mnav-contact-ico { display: grid; place-items: center; color: var(--accent); }
.mnav-contact-ico svg { width: 18px; height: 18px; }
.mobile-nav-close {
  display: grid; place-items: center; flex-shrink: 0;
  width: 42px; height: 42px;
  border: 1px solid var(--line); background: #fff; border-radius: var(--b-radius-10);
  cursor: pointer; color: var(--ink);
}
.mobile-nav-close svg { width: 20px; height: 20px; }

/* accordion list */
.mobile-nav-list { display: flex; flex-direction: column; }
.mnav-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  width: 100%; text-align: left;
  background: none; border: 0; border-bottom: 1px solid var(--line);
  padding: 18px 20px;
  font-family: var(--font); font-size: 16px; font-weight: var(--fw-medium); color: var(--ink);
  cursor: pointer; transition: background .15s ease;
}
a.mnav-row { text-decoration: none; }
.mnav-chev {
  width: 9px; height: 9px; flex-shrink: 0;
  border-right: 1.8px solid var(--ink-3); border-bottom: 1.8px solid var(--ink-3);
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform .25s ease;
}
.mnav-has-children.open > .mnav-row { background: #F5F8FF; }
.mnav-has-children.open .mnav-chev { transform: rotate(-135deg) translate(-1px, -1px); }
.mnav-sub { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.mnav-has-children.open .mnav-sub { max-height: 760px; }
.mnav-sub a {
  display: block; padding: 14px 20px;
  font-size: 15px; color: var(--ink-2); border-bottom: 1px solid var(--line);
}
.mnav-sub a:hover { color: var(--accent); }

/* bottom CTA card */
.mobile-nav-cta {
  margin: 32px 20px 28px;
  padding: 28px 24px;
  background: #F5F7FF; border: 1px solid var(--line); border-radius: var(--b-radius-20);
  text-align: center;
}
.mobile-nav-cta h3 { margin: 0 0 12px; font-size: 22px; font-weight: var(--fw-medium); line-height: 1.25; letter-spacing: -0.02em; color: var(--ink); }
.mobile-nav-cta p { margin: 0 0 22px; font-size: 14px; line-height: 1.55; color: var(--ink-2); }
.mobile-nav-cta-actions { display: flex; flex-direction: column; gap: 10px; }
.mobile-nav-cta-actions .btn { justify-content: center; padding: 13px 18px; font-size: 15px; border-radius: var(--b-radius-10); }
.mobile-nav-cta-actions .btn-secondary { background: #fff; }
.mnav-cta-ico { display: inline-grid; place-items: center; }
.mnav-cta-ico svg { width: 16px; height: 16px; }

@media (prefers-reduced-motion: reduce) {
  .mobile-nav, .mobile-nav-backdrop, .mnav-sub, .burger span { transition: none; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-right .signin,
  .nav-right .btn { display: none; }
  .burger { display: inline-flex; }
  .features { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  section { padding: 80px 0; }
  .agent-grid { grid-template-columns: 1fr; }
  .solution-grid { grid-template-columns: 1fr; gap: 32px; }
  .diff-flow { grid-template-columns: 1fr 1fr; }
  .flow-cards { grid-template-columns: 1fr; }
  .hero-clouds .ph { width: 180px; height: 90px; }
  .stack-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 24px;
    margin-left: -24px;
    margin-right: -24px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
  }
  .stack-tabs::-webkit-scrollbar { display: none; }
  .stack-tab { flex-shrink: 0; }
  .hero-shape-left, .hero-shape-right { width: 480px; opacity: 0.4; }
  .hero-shape-left { left: -280px; }
  .hero-shape-right { right: -280px; }
  .pill-text { font-size: 9px;}

  .platform-section { padding: 64px 0; }
  .platform-card { padding: 12px; border-radius: 22px; }
  .platform-card::before { width: 80%; height: 50%; }
  .platform-row-top { grid-template-columns: 1fr; gap: 12px; margin-bottom: 12px; }
  .platform-row-bottom { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .platform-feature-lg { min-height: 0; padding: 32px 28px; }
  .platform-feature { padding: 28px 24px; }
  .platform-graph {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    max-width: none;
    width: clamp(180px, 100vw, 260px);
    margin: 40px 0 0;
    filter: drop-shadow(0 12px 22px rgba(8, 8, 48, 0.10));
  }
}
@media (max-width: 640px) {
  .logos { padding: 36px 0; }
  .logos-wrap {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .logos-label {
    border-right: none;
    padding-right: 0;
    text-align: center;
    font-size: 12px;
    color: var(--ink-3);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .logos-track { gap: 44px; animation-duration: 35s; }
  .logos-track img { height: 22px; }
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .hero { padding: 64px 0 56px; }
  .steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .cta { padding: 56px 28px; }
  .diff-flow { grid-template-columns: 1fr; }
  .hero-shape { display: none; }
  .platform-row-bottom { grid-template-columns: 1fr; }
}

/* ============ HEADER MEGA MENU ============ */
.nav-item.has-megamenu { display: flex; align-items: center; }
.mega-trigger { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: var(--fw-medium); color: #4F4F6E; transition: color .15s; }
.mega-trigger:hover,
.has-megamenu:hover .mega-trigger { color: var(--ink); }
.mega-caret { display: inline-flex; align-items: center; justify-content: center; transition: transform .2s ease; opacity: .7; }
.mega-caret svg { width: 10px; height: 10px; display: block; }
.has-megamenu:hover .mega-caret { transform: rotate(180deg); }

/* Full-width band flush under the header (no radius); content stays container-width. */
.megamenu { position: absolute; top: 100%; left: 0; right: 0; z-index: 90; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 26px 50px -34px rgba(8, 8, 48, 0.22); opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .18s ease, transform .18s ease, visibility .18s; }
.has-megamenu:hover .megamenu,
.has-megamenu:focus-within .megamenu { opacity: 1; visibility: visible; transform: none; }
.megamenu-inner { max-width: var(--maxw); margin: 0 auto; padding: 28px 32px 32px; }
.mega-card { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 26px; }
.mega-col { min-width: 0; }
.mega-heading { display: block; font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 14px; margin-top: 16px; }
.mega-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px; border-radius: 12px; border: 1px solid transparent; transition: background .15s ease, border-color .15s ease; }
.mega-item:hover { background: #F4F7FF; border-color: var(--line); }
.mega-ico { flex: 0 0 auto; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; background: #EAF2FE; color: var(--accent); }
.mega-ico svg { width: 20px; height: 20px; }
.mega-text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.mega-title { font-size: 14px; font-weight: var(--fw-medium); color: var(--ink); letter-spacing: -0.01em; }
.mega-desc { font-size: 12px; line-height: 1.4; color: var(--ink-2); }
.mega-cta { display: flex; flex-direction: row; align-items: center; gap: 10px; padding: 12px 14px; border-radius: var(--b-radius-15); background: #E1ECFF; }
.mega-cta-text { flex: 1 1 auto; min-width: 0; font-size: 14px; font-weight: var(--fw-semibold); color: var(--accent); letter-spacing: -0.01em; line-height: 1.25; }
.mega-cta-btn { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 6px; padding: 8px 15px; border-radius: var(--b-radius-full); font-size: 12.5px; }
/* .nav-links a (0,1,1) outranks .btn-primary (0,1,0); restore white text */
.megamenu .mega-cta-btn,
.megamenu .mega-cta-btn:hover { color: #fff; }
@media (max-width: 1100px) { .mega-card { gap: 28px 36px; padding: 28px; } }

/* ============ GOOGLE TRANSLATE (hidden engine; we use our own switcher) ============ */
/* Hide every Google-injected chrome: the top banner is always a .skiptranslate iframe. */
.skiptranslate,
iframe.skiptranslate,
.goog-te-banner-frame,
.goog-te-gadget-icon,
.goog-te-balloon-frame,
#goog-gt-tt, .goog-tooltip, .goog-tooltip:hover { display: none !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; color: inherit !important; }
/* Google pushes the page down with body{top:40px} when the banner mounts — undo it. */
html, body { top: 0 !important; position: static !important; min-height: 0; }
#google_translate_element { display: none !important; }
