  :root{
    --bg:#0B0B0F;
    --bg-2:#111116;
    --ink:#0B0B0F;
    --paper:#FFFFFF;
    --paper-soft:#F6F6F4;
    --line:#E7E7E3;
    --line-dark:#1F1F26;
    --muted:#6B6B73;
    --muted-dark:#9A9AA3;
    --accent:#ED2A37;        /* TMI red */
    --accent-2:#FF5A66;
    --accent-soft:#FFE3E5;
    --green:#7BC47F;
    --yellow:#F5C342;
    --shadow: 0 30px 60px -20px rgba(15,15,20,.18), 0 10px 20px -10px rgba(15,15,20,.08);
    --radius: 18px;
    --container: 1280px;
    --gutter: 80px;
    --section-y: 110px;
  }

  *{box-sizing:border-box;margin:0;padding:0}
  html{scroll-behavior:smooth;scrollbar-gutter:stable}
  body{
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    background:var(--paper);
    color:var(--ink);
    -webkit-font-smoothing:antialiased;
    line-height:1.55;
    font-size:16px;
    overflow-x:clip;
  }
  img{max-width:100%;display:block}
  a{color:inherit;text-decoration:none}
  button{font:inherit;cursor:pointer;border:none;background:none}

  .display{
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    line-height:1.05;
    font-weight:700;
    letter-spacing:-0.02em;
  }
  .mono{font-family:'JetBrains Mono',ui-monospace,monospace;letter-spacing:0}

  /* content-box: max-width = content (1280); gutters are padding outside it */
  .wrap{
    box-sizing:content-box;
    max-width:var(--container);
    margin-inline:auto;
    padding-inline:var(--gutter);
  }

  /* ========== NAV ========== */
  .nav{
    position:sticky;top:0;z-index:50;
    background:#fff;
    border-bottom:1px solid rgba(231,231,227,.5);
  }
  .nav .wrap{position:relative}
  .nav-inner{
    display:flex;align-items:center;justify-content:space-between;
    padding:18px 0;
  }
  .brand{display:flex;align-items:center;gap:12px}
  .brand-mark{
    width:36px;height:36px;border-radius:9px;
    background:var(--ink);color:#fff;
    display:grid;place-items:center;font-weight:700;font-size:15px;
    flex-shrink:0;
  }
  .brand-text{font-size:18px;font-weight:700;letter-spacing:-0.18px;line-height:1.2}
  .brand-text small{display:block;font-size:11px;font-weight:500;color:var(--muted);letter-spacing:.66px;text-transform:uppercase;margin-top:0;line-height:1.2}

  .nav-links{display:flex;gap:30px;align-items:center}
  .nav-links a{font-size:14px;font-weight:500;color:#1d1d22;line-height:1.2}
  .nav-links a:hover{color:var(--accent)}
  .nav-cta{
    background:var(--ink);color:#fff;padding:11px 20px;border-radius:999px;
    font-size:14px;font-weight:600;display:inline-flex;align-items:center;gap:8px;
    line-height:1.2;
    transition:transform .2s ease, background .2s ease;
  }
  .nav-cta:hover{background:var(--accent);transform:translateY(-1px)}
  .nav-cta::after{content:"→";transition:transform .2s ease}
  .nav-cta:hover::after{transform:translateX(3px)}

  .menu-toggle{display:none}

  /* ========== HERO ========== */
  .hero{
    position:relative;
    background:
      radial-gradient(1200px 500px at 85% -10%, rgba(237,42,55,.10), transparent 60%),
      radial-gradient(900px 400px at 0% 110%, rgba(237,42,55,.06), transparent 60%),
      var(--paper);
    overflow:hidden;
  }
  .hero::before{
    content:"";position:absolute;inset:0;
    background-image:
      linear-gradient(rgba(15,15,20,.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(15,15,20,.04) 1px, transparent 1px);
    background-size:48px 48px;
    mask-image:radial-gradient(ellipse at center, #000 30%, transparent 75%);
    -webkit-mask-image:radial-gradient(ellipse at center, #000 30%, transparent 75%);
    pointer-events:none;
  }
  .hero-inner{
    display:grid;grid-template-columns:minmax(0,693px) minmax(0,1fr);gap:48px;align-items:center;
    padding:90px 0 110px;position:relative;
  }
  .hero-text{display:flex;flex-direction:column;align-items:flex-start;width:100%}
  .badge{
    display:inline-flex;align-items:center;gap:10px;
    background:#fff;border:1px solid var(--line);
    padding:8px 14px;border-radius:999px;
    font-size:13px;font-weight:500;color:#2a2a30;
    line-height:1.2;
  }
  .badge .dot{width:7px;height:7px;border-radius:50%;background:var(--accent);flex-shrink:0}
  .badge b{font-weight:700;color:var(--ink)}
  .badge .sep{width:4px;height:4px;border-radius:50%;background:#cfcfcf;flex-shrink:0}

  h1.hero-title{
    font-size:64px;
    font-weight:700;
    letter-spacing:-1.28px;
    line-height:1.02;
    max-width:580px;
    margin:22px 0;
  }
  h1.hero-title .accent{
    color:var(--accent);
    position:relative;display:inline-block;
  }
  h1.hero-title .accent::after{
    content:"";position:absolute;left:0;right:0;bottom:6px;height:14px;
    background:rgba(237,42,55,.18);z-index:-1;border-radius:4px;
  }
  .hero p.lead{
    font-size:18px;font-weight:400;color:#3a3a42;max-width:560px;margin-bottom:32px;line-height:1.6;
  }
  .ctas{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:28px}
  .btn{
    display:inline-flex;align-items:center;gap:10px;
    padding:14px 22px;border-radius:999px;font-weight:600;font-size:15px;
    line-height:1.2;
    transition:all .2s ease;
  }
  .btn-primary{background:var(--accent);color:#fff;box-shadow:0 10px 24px -10px rgba(237,42,55,.55)}
  .btn-primary::after{content:"→";font-weight:600}
  .btn-primary:hover{background:#d61f2c;transform:translateY(-2px);box-shadow:0 14px 28px -10px rgba(237,42,55,.65)}
  .btn-ghost{background:#fff;color:var(--ink);border:1px solid var(--line)}
  .btn-ghost:hover{border-color:var(--ink)}

  .hero-note{
    display:flex;gap:14px;align-items:flex-start;
    width:100%;max-width:560px;
    font-size:13px;font-weight:400;color:var(--muted);line-height:1.6;
    box-sizing:border-box;
  }
  .hero-note::before{
    content:"";flex-shrink:0;width:2px;min-height:60px;
    background:var(--accent);border-radius:1px;
  }

  /* phones */
  .hero-visual{position:relative;min-height:680px;display:flex;align-items:flex-start;justify-content:flex-end}

  /* === Figma asset references (valid 7 days from generation) === */
  /* To self-host: download these to assets/ and replace the URLs below.
     See top of HTML for asset list & download commands. */
  :root{
    --asset-base: https://www.figma.com/api/mcp/asset;
  }

  /* Hero — real phone screenshots from Figma */
  .hero-phones{position:relative;width:100%;max-width:640px;height:100%;min-height:680px}
  .hero-phones .ph{
    width:100%;height:auto;max-height:792px;object-fit:contain;object-position:right top;
  }
  /*.hero-phones .ph-1{left:8%;top:30px;height:560px;transform:rotate(-3deg)}
  .hero-phones .ph-2{right:6%;top:0;height:560px;transform:rotate(3deg)}
*/
  /* Use-case: Home Page — dual phones (Figma 18:409 + 18:420) */
  .uc-phones-duo{
    position:absolute;left:50%;top:21px;
    transform:translateX(-50%);
    width:527px;height:399px;
    pointer-events:none;
  }
  .uc-phones-duo .phone-a{
    position:absolute;left:0;top:0;
    width:290px;height:auto;
    transform:rotate(-3deg);
    transform-origin:center center;
    object-fit:contain;
    display:block;
  }
  .uc-phones-duo .phone-b{
    position:absolute;left:266px;top:0;
    width:226px;height:auto;
    transform:rotate(2deg);
    transform-origin:center center;
    object-fit:contain;
    display:block;
  }

  /* Engagement row — phones anchored left in stage (Figma 18:411 + 18:413) */
  .uc-phones-duo--engage{
    left:52px;top:0;
    transform:none;
    width:495px;height:451px;
  }
  .uc-phones-duo--engage .phone-a{
    left:0;top:2px;
    width:248px;
    transform:rotate(-4deg);
  }
  .uc-phones-duo--engage .phone-b{
    left:213px;top:-2px;
    width:252px;
    transform:rotate(4deg);
  }
  .stage--engage{border:none}

  /* Use-case: single centered phone (Tasks + Project Master) */
  .uc-phone-single{
    position:absolute;left:50%;
    transform:translateX(-50%);
    pointer-events:none;
  }
  .uc-phone-single img{
    display:block;width:100%;height:auto;
    object-fit:contain;
  }
  /* Tasks — Action History (Figma 18:415) */
  .uc-phone-single--tasks{
    top:-1px;width:283px;
  }
  .uc-phone-single--tasks img{
    width:283px;max-width:none;
  }
  /* Project Master (Figma 18:417) */
  .uc-phone-single--project{
    top:23px;width:281px;
  }
  .uc-phone-single--project img{
    width:281px;max-width:none;
  }

  /* Hide the trusted-by logo strip (kept in markup for SEO/future use) */
  .logo-strip{display:none}

  /* Offices: dark red→black gradient + customer-logo image */
  .office{
    background: linear-gradient(232.64deg, #4F1418 9.4%, #230E13 32%, #0B0B0F 65.9%) !important;
  }
  .office .logos{
    width:100%; max-width:289px; height:91px;
    margin-bottom:18px;
    object-fit:contain; object-position:left center;
    display:block;
  }
  .office h5{text-transform:uppercase;letter-spacing:.04em;color:#fff}
  .phone{
    position:absolute;
    width:240px;aspect-ratio: 9/19;
    background:#0B0B0F;border-radius:36px;
    box-shadow:0 30px 60px -10px rgba(15,15,20,.35), 0 0 0 1px rgba(255,255,255,.05) inset;
    padding:8px;
  }
  .phone .screen{
    width:100%;height:100%;border-radius:30px;background:#fff;overflow:hidden;
    position:relative;
  }
  .phone .notch{
    position:absolute;top:8px;left:50%;transform:translateX(-50%);
    width:90px;height:22px;background:#0B0B0F;border-radius:14px;z-index:3;
  }

  .phone-1{top:30px;right:60px;transform:rotate(-6deg);z-index:1}
  .phone-2{top:0;right:200px;transform:rotate(4deg);z-index:2}

  /* phone screen content */
  .ps-status{
    display:flex;justify-content:space-between;align-items:center;
    padding:14px 20px 6px;font-size:11px;font-weight:600;color:#0B0B0F;
  }
  .ps-status .icons{display:flex;gap:4px;align-items:center}
  .ps-greet{padding:10px 18px 12px}
  .ps-greet h4{font-size:16px;font-weight:800;letter-spacing:-0.02em}
  .ps-greet p{font-size:10.5px;color:#6B6B73;margin-top:2px}

  .ps-grid{
    display:grid;grid-template-columns:1fr 1fr;gap:10px;padding:0 18px;
  }
  .ps-tile{
    background:#F6F6F4;border-radius:12px;padding:10px;position:relative;
    min-height:62px;
  }
  .ps-tile .ico{
    width:22px;height:22px;border-radius:6px;display:grid;place-items:center;
    font-size:11px;color:#fff;margin-bottom:6px;
  }
  .ps-tile .num{font-size:18px;font-weight:800;letter-spacing:-0.02em;position:absolute;right:10px;top:8px;color:#0B0B0F}
  .ps-tile .lbl{font-size:10px;color:#3a3a42;font-weight:600}
  .ps-tile.t1 .ico{background:#7BC47F}
  .ps-tile.t2 .ico{background:#76C9B6}
  .ps-tile.t3 .ico{background:#F2A65A}
  .ps-tile.t4 .ico{background:#A78BFA}
  .ps-tile.t5 .ico{background:#ED2A37}
  .ps-tile.t6 .ico{background:#5B6470}

  .ps-tasks{padding:14px 18px 0}
  .ps-tasks h5{font-size:12px;font-weight:800}
  .ps-tasks p{font-size:10px;color:#6B6B73;margin-top:1px}
  .ps-task{
    display:flex;justify-content:space-between;align-items:center;
    padding:8px 0;border-bottom:1px solid #EFEFEC;font-size:11px;
  }
  .ps-task:last-child{border-bottom:none}
  .ps-task .l{display:flex;gap:8px;align-items:center;font-weight:600}
  .ps-task .pin{color:var(--accent)}

  .ps-tabs{
    position:absolute;left:10px;right:10px;bottom:10px;
    background:#0B0B0F;border-radius:24px;padding:8px 14px;
    display:flex;justify-content:space-between;align-items:center;
    color:#fff;font-size:10px;
  }
  .ps-tabs .tab{display:flex;flex-direction:column;align-items:center;gap:2px;opacity:.55}
  .ps-tabs .tab.active{opacity:1;background:#7BC47F;color:#0B0B0F;padding:5px 10px;border-radius:14px}

  /* phone 2: leads list */
  .ps-pills{display:flex;gap:6px;padding:8px 16px}
  .ps-pill{font-size:10px;padding:5px 10px;border-radius:999px;background:#F6F6F4;font-weight:600;color:#3a3a42}
  .ps-pill.on{background:#1f8f3a;color:#fff}
  .lead-card{
    margin:8px 16px;padding:10px 12px;border:1px solid #EFEFEC;border-radius:10px;
  }
  .lead-card .id{font-size:9px;color:#6B6B73;letter-spacing:.04em;font-weight:600;background:#F6F6F4;display:inline-block;padding:2px 6px;border-radius:4px}
  .lead-card .nm{display:flex;align-items:center;gap:6px;margin-top:4px;font-weight:700;font-size:12px}
  .lead-card .nm .av{width:18px;height:18px;border-radius:50%;background:#FFE3E5;color:#ED2A37;font-size:9px;display:grid;place-items:center;font-weight:800}
  .lead-card .row{display:flex;justify-content:space-between;font-size:10px;margin-top:4px;color:#6B6B73}
  .lead-card .row b{color:#0B0B0F;font-weight:600}
  .lead-card .acts{display:flex;gap:6px;margin-top:8px;align-items:center;font-size:10px}
  .lead-card .ic{
    width:18px;height:18px;border-radius:50%;display:grid;place-items:center;
    font-size:9px;color:#fff;
  }
  .lead-card .ic.c1{background:#A78BFA}
  .lead-card .ic.c2{background:#F2A65A}
  .lead-card .ic.c3{background:#ED2A37}
  .lead-card .ic.c4{background:#25D366}
  .lead-card .ic.c5{background:#76C9B6}
  .lead-card .vh{margin-left:auto;color:var(--accent);font-weight:600;font-size:9.5px}

  /* logo strip */
  .logo-strip{
    border-top:1px solid var(--line);border-bottom:1px solid var(--line);
    background:#fff;padding:22px 0;
  }
  .logo-strip .row{
    display:flex;align-items:center;justify-content:space-between;gap:30px;flex-wrap:wrap;
  }
  .logo-strip .lbl{
    font-size:11px;font-weight:600;letter-spacing:.14em;color:var(--muted);text-transform:uppercase;
  }
  .logo-strip ul{
    display:flex;gap:36px;list-style:none;flex-wrap:wrap;
    font-size:14px;font-weight:600;color:#3a3a42;align-items:center;
  }
  .logo-strip ul li{display:flex;align-items:center;gap:8px;opacity:.7}
  .logo-strip ul li::before{content:"";width:6px;height:6px;border-radius:50%;background:var(--accent)}

  /* ========== SECTIONS ========== */
  section{padding:var(--section-y) 0}
  .hero{padding:0}
  #use-cases{background:#fff}
  .eyebrow{
    display:inline-flex;align-items:center;gap:8px;
    font-size:12px;font-weight:600;letter-spacing:.16em;text-transform:uppercase;
    color:var(--accent);line-height:1.2;
  }
  .eyebrow::before{
    content:"";width:30px;height:1.5px;background:var(--accent);flex-shrink:0;
  }
  h2.section-title{
    font-size:48px;
    line-height:1.05;
    letter-spacing:-0.96px;
    margin:14px 0 18px;max-width:820px;
  }
  .section-lead{font-size:17px;font-weight:400;color:#3a3a42;max-width:680px;line-height:1.6}

  /* ========== SALESFORCE SECTION ========== */
  .salesforce{background:var(--paper-soft)}
  .sf-head{
    display:flex;justify-content:space-between;align-items:flex-end;gap:48px;
    margin-bottom:50px;width:100%;
  }
  .sf-head-copy{
    display:flex;flex-direction:column;gap:14px;
    flex:1 1 0;min-width:0;
  }
  .sf-eyebrow-slot{
    display:flex;align-items:center;
  }
  .sf-head .section-title{
    margin:0;max-width:820px;
    font-size:42px;
    letter-spacing:-0.84px;
    line-height:1.08;
  }
  .sf-tag{
    background:#fff;border:1px solid var(--line);border-radius:14px;
    padding:14px 18px;min-height:70px;width:360px;max-width:100%;flex-shrink:0;
    display:flex;align-items:center;gap:14px;
    box-shadow:0 1px 3px rgba(15,15,20,.06);
  }
  .sf-tag .sf-logo{
    width:68px;height:44px;flex-shrink:0;
    object-fit:contain;object-position:left center;
    display:block;
  }
  .sf-tag-text{display:flex;flex-direction:column;gap:2px;min-width:0}
  .sf-tag b{display:block;font-size:13px;font-weight:700;line-height:1.2;color:var(--ink)}
  .sf-tag span{color:var(--muted);font-size:11px;line-height:1.3;font-weight:400}

  .sf-grid{
    display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px;
    width:100%;
  }
  .sf-card{
    background:#fff;border:1px solid var(--line);border-radius:var(--radius);
    padding:24px 28px;position:relative;overflow:hidden;
    min-width:0;min-height:397px;display:flex;flex-direction:column;
    transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  }
  .sf-card:hover{transform:translateY(-4px);box-shadow:var(--shadow);border-color:#dcdcd6}
  .sf-card::before{
    content:"";display:block;width:60px;height:3px;background:var(--accent);
    margin-bottom:18px;
  }
  .sf-card .ix{
    font-size:11px;font-weight:500;color:var(--muted);
    margin-bottom:18px;letter-spacing:.04em;text-transform:uppercase;
  }
  .sf-card h3{font-size:20px;font-weight:700;letter-spacing:-0.2px;margin-bottom:12px;line-height:1.2}
  .sf-card > p{font-size:14px;color:var(--muted);line-height:1.55}
  .sf-card ul{
    list-style:none;display:flex;flex-direction:column;gap:8px;margin-top:14px;
    padding:16px 0;border-bottom:1px solid var(--line);flex:1;
  }
  .sf-card ul li{
    font-size:14px;color:#3a3a42;padding-left:0;position:relative;line-height:1.5;
    display:flex;gap:12px;align-items:flex-start;
  }
  .sf-card ul li::before{
    content:"";flex-shrink:0;margin-top:4px;width:10px;height:10px;
    border:1.5px solid var(--accent);border-radius:50%;background:#fff;
  }
  .sf-card .foot{
    margin-top:22px;padding-top:0;border-top:none;
    font-size:12px;color:var(--muted);line-height:1.35;
  }
  .sf-card .foot b{color:#0B0B0F;display:block;margin-bottom:2px;font-size:12.5px;font-weight:700}

  /* ========== USE CASES ========== */
  #use-cases > .wrap > .uc-head{margin-bottom:0}
  .uc-head{text-align:center;margin-bottom:0}
  .uc-head .eyebrow{justify-content:center}
  .uc-head .section-title{margin-left:auto;margin-right:auto;text-align:center}
  .uc-head .section-lead{margin:14px auto 0}

  .uc-row{
    display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:80px;align-items:center;
    padding:60px 0;border-top:1px solid var(--line);
  }
  .uc-row:first-of-type{border-top:none;padding-top:80px}
  .uc-row.flip .uc-text{order:2}
  .uc-row.flip .uc-visual{order:1}
  .uc-text{display:flex;flex-direction:column;gap:24px;max-width:600px;width:100%}
  .uc-copy{display:flex;flex-direction:column;gap:16px;width:100%}
  .uc-copy-head{display:flex;flex-direction:column;gap:16px;width:100%}
  .uc-tag{
    display:inline-flex;align-items:center;align-self:flex-start;
    font-size:11px;font-weight:700;letter-spacing:.18em;
    text-transform:uppercase;color:var(--accent);
    background:var(--accent-soft);padding:16px;border-radius:6px;line-height:1;
  }
  .uc-row h3{
    font-size:36px;font-weight:700;letter-spacing:-0.72px;
    margin:0;line-height:1.1;
  }
  .uc-row p{color:#3a3a42;font-size:16px;margin:0;line-height:1.6}
  .uc-row ul{list-style:none;display:flex;flex-direction:column;gap:12px}
  .uc-row ul li{
    padding-left:0;position:relative;font-size:15px;color:#2a2a30;line-height:1.55;
    display:flex;gap:12px;align-items:flex-start;
  }
  .uc-row ul li::before{
    content:"✓";flex-shrink:0;
    width:18px;height:18px;border-radius:50%;background:var(--ink);color:#fff;
    font-size:10px;font-weight:700;display:grid;place-items:center;
    margin-top:2px;
  }

  /* visual variants */
  .uc-visual{
    position:relative;min-height:420px;display:flex;align-items:center;justify-content:center;
  }
  .uc-visual .stage{
    position:relative;width:100%;max-width:600px;height:420px;
    background:#ffe3e5;
    border-radius:24px;border:1px solid var(--line);
    overflow:hidden;
    margin:0 auto;
  }
  .uc-visual.dark .stage{background:linear-gradient(160deg, #16161B 0%, #0B0B0F 100%);border-color:#1f1f26}

  .stage-grid{
    position:absolute;inset:0;
    background-image:
      linear-gradient(rgba(15,15,20,.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(15,15,20,.05) 1px, transparent 1px);
    background-size:30px 30px;
    opacity:.6;
  }
  .uc-visual.dark .stage-grid{
    background-image:
      linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  }

  .mini-phone{
    position:absolute;
    width:200px;aspect-ratio:9/19;background:#0B0B0F;border-radius:30px;padding:6px;
    box-shadow:0 24px 50px -10px rgba(15,15,20,.35);
  }
  .mini-phone .screen{width:100%;height:100%;border-radius:24px;background:#fff;overflow:hidden;position:relative}
  .mini-phone .notch{
    position:absolute;top:6px;left:50%;transform:translateX(-50%);
    width:70px;height:18px;background:#0B0B0F;border-radius:12px;z-index:3;
  }

  /* mockup A — call screen */
  .mock-call{background:#0B0B0F;color:#fff;height:100%;display:flex;flex-direction:column;align-items:center;padding:40px 0 14px;position:relative}
  .mock-call .who{font-size:10px;opacity:.7}
  .mock-call .num{font-size:18px;font-weight:700;letter-spacing:0;margin-top:6px}
  .mock-call .pic{
    width:60px;height:60px;border-radius:14px;background:#2a2a30;margin-top:auto;margin-bottom:14px;
  }
  .mock-call .ctrls{
    display:grid;grid-template-columns:repeat(3,1fr);gap:8px;width:80%;margin-bottom:12px;
  }
  .mock-call .ctrls span{
    background:rgba(255,255,255,.1);height:38px;border-radius:50%;
  }
  .mock-call .end{
    width:50px;height:50px;border-radius:50%;background:var(--accent);margin-bottom:10px;
    display:grid;place-items:center;color:#fff;
  }

  /* mockup B — message templates */
  .mock-msg{padding:28px 14px 14px;height:100%}
  .mock-msg h6{font-size:13px;font-weight:800;margin-bottom:12px;display:flex;justify-content:space-between;align-items:center}
  .mock-msg h6 .x{color:#999;font-weight:400}
  .mock-msg .m{
    background:#F6F6F4;padding:9px 11px;border-radius:10px;margin-bottom:6px;
    font-size:10px;color:#2a2a30;display:flex;justify-content:space-between;align-items:center;line-height:1.3;
  }
  .mock-msg .m::after{content:"›";color:#999;font-weight:600}
  .mock-msg .next{
    margin-top:auto;background:#7BC47F;color:#fff;text-align:center;
    padding:10px;border-radius:10px;font-size:11px;font-weight:700;
    position:absolute;left:14px;right:14px;bottom:14px;
  }

  /* mockup C — project list */
  .mock-list{padding:30px 14px 50px;height:100%;font-size:11px}
  .mock-list h6{font-size:14px;font-weight:800;margin-bottom:8px}
  .mock-list .search{
    background:#F6F6F4;padding:7px 10px;border-radius:8px;font-size:10px;color:#999;margin-bottom:10px;
  }
  .mock-list .row{
    border:1px solid #EFEFEC;border-radius:10px;padding:9px;margin-bottom:8px;
  }
  .mock-list .row b{font-size:11px;font-weight:800;display:block;margin-bottom:4px}
  .mock-list .row .stats{display:flex;justify-content:space-between;font-size:9px;color:#6B6B73;margin-bottom:6px}
  .mock-list .row .docs{display:flex;gap:6px}
  .mock-list .row .docs i{width:24px;height:24px;border-radius:6px;background:#F6F6F4;display:grid;place-items:center;font-style:normal;font-size:9px;color:#3a3a42}

  /* mockup D — action history (timeline) */
  .mock-tl{padding:30px 16px 14px;height:100%;font-size:11px;overflow:hidden}
  .mock-tl h6{font-size:13px;font-weight:800;margin-bottom:14px}
  .mock-tl .item{
    display:grid;grid-template-columns:24px 1fr;gap:10px;margin-bottom:14px;position:relative;
  }
  .mock-tl .item::before{
    content:"";position:absolute;left:11px;top:24px;bottom:-14px;width:2px;background:#EFEFEC;
  }
  .mock-tl .item:last-child::before{display:none}
  .mock-tl .item .d{
    width:24px;height:24px;border-radius:50%;display:grid;place-items:center;font-size:10px;color:#fff;font-weight:700;
  }
  .mock-tl .item .b{font-size:10px;font-weight:700;display:flex;justify-content:space-between}
  .mock-tl .item .b span{font-weight:500;color:#999;font-size:9px}
  .mock-tl .item .t{font-size:9px;color:#6B6B73;margin-top:2px}

  /* ========== PILOT BAND ========== */
  .pilot{
    background:#0B0B0F;color:#fff;
  }
  .pilot .grid{
    display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:48px;align-items:center;
  }
  .pilot .eyebrow{color:#FF8893}
  .pilot .eyebrow::before{background:#FF8893}
  .pilot h2{color:#fff;max-width:616px}
  .pilot p.section-lead{color:#cfcfd5;max-width:616px}

  .pilot-stats{
    background:#16161C;border:1px solid #1f1f26;border-radius:24px;padding:32px 32px 24px;
    position:relative;
  }
  .pilot-stats::before{
    content:"TRIAL";
    position:absolute;top:34px;right:32px;font-size:10px;letter-spacing:.2em;color:var(--accent);font-weight:700;
  }
  .pilot-stats h4{font-size:18px;font-weight:700;margin-bottom:8px;line-height:1.2}
  .pilot-stats h4 + p{font-size:13.5px;color:#9A9AA3;margin-bottom:32px;line-height:1.2}
  .stat-row{
    display:flex;justify-content:space-between;align-items:center;
    min-height:91px;padding:0;
    border-top:1px solid rgba(255,255,255,.5);
  }
  .stat-row:first-of-type{border-top:none;min-height:91px}
  .stat-row .l{display:flex;gap:12px;align-items:center}
  .stat-row .l .pip{width:8px;height:8px;border-radius:50%;flex-shrink:0}
  .stat-row .l .pip.g{background:#7BC47F}
  .stat-row .l .pip.y{background:#F5C342}
  .stat-row .l .pip.r{background:var(--accent)}
  .stat-row .lbl{font-size:13px;color:#cfcfd5;font-weight:500}
  .stat-row .val{font-size:24px;font-weight:700;letter-spacing:-0.24px;line-height:1.2}

  .scope-list{display:grid;gap:14px;margin-top:24px}
  .scope-list .item{
    display:grid;grid-template-columns:32px 1fr;gap:14px;align-items:flex-start;
    padding:14px 16px;background:rgba(255,255,255,.03);border-radius:12px;border:1px solid rgba(255,255,255,.06);
    min-height:100px;
  }
  .scope-list .item .n{
    width:32px;height:32px;border-radius:8px;background:var(--accent);
    display:grid;place-items:center;font-weight:800;font-size:14px;
  }
  .scope-list .item b{font-size:14.5px;font-weight:700;display:block;margin-bottom:2px;line-height:1.25}
  .scope-list .item p{font-size:13px;color:#9A9AA3;line-height:1.5}
  .pilot-stats .btn-primary{
    width:100%;justify-content:center;margin-top:16px;
    padding-top:24px;padding-bottom:24px;
  }

  /* ========== COMMERCIALS ========== */
  .commercials{background:#fff}
  .com-grid{
    display:grid;grid-template-columns:1fr 1fr;gap:30px;margin-top:50px;
  }
  .com-card{
    border:1px solid var(--line);border-radius:24px;padding:36px;
    position:relative;background:#fff;transition:all .25s ease;
  }
  .com-card:hover{box-shadow:var(--shadow);transform:translateY(-3px)}
  .com-card.feat{background:var(--ink);color:#fff;border-color:var(--ink)}
  .com-card .label{
    font-size:11px;letter-spacing:.18em;text-transform:uppercase;font-weight:700;color:var(--muted);
  }
  .com-card.feat .label{color:#FF8893}
  .com-card .big{
    font-family:'Bricolage Grotesque',serif;font-weight:700;letter-spacing:-0.03em;
    font-size:64px;line-height:1;margin:14px 0 4px;
  }
  .com-card .big small{font-size:24px;font-weight:600;color:var(--muted);margin-left:4px}
  .com-card.feat .big small{color:#9A9AA3}
  .com-card .sub{font-size:15px;color:var(--muted);margin-bottom:24px}
  .com-card.feat .sub{color:#cfcfd5}
  .com-card ul{list-style:none;display:flex;flex-direction:column;gap:12px;margin-top:18px;padding-top:18px;border-top:1px solid var(--line)}
  .com-card.feat ul{border-color:#232329}
  .com-card ul li{font-size:14px;display:flex;justify-content:space-between;gap:14px;align-items:center}
  .com-card ul li b{font-weight:600}
  .com-card.feat ul li{color:#cfcfd5}
  .com-card.feat ul li b{color:#fff}

  /* ========== METHODOLOGY ========== */
  .method{background:var(--paper-soft)}
  .method-grid{
    display:grid;grid-template-columns:repeat(3,1fr);gap:1px;
    background:var(--line);border:1px solid var(--line);border-radius:24px;overflow:hidden;
    margin-top:50px;
  }
  .method-cell{
    background:#fff;padding:36px 30px;min-height:209px;
    transition:background .2s ease;
    position:relative;
  }
  .method-cell:hover{background:#FAFAF8}
  .method-cell .step{
    font-size:11px;color:var(--accent);font-weight:600;letter-spacing:.1em;text-transform:uppercase;
  }
  .method-cell h4{font-size:22px;font-weight:700;letter-spacing:-0.22px;margin:8px 0 14px;line-height:1.22}
  .method-cell ul{list-style:none;display:flex;flex-direction:column;gap:6px}
  .method-cell ul li{
    font-size:14px;color:#3a3a42;padding-left:18px;position:relative;line-height:1.5;
  }
  .method-cell ul li::before{
    content:"";position:absolute;left:0;top:9px;width:8px;height:1.5px;background:var(--accent);
  }

  /* ========== WHY US ========== */
  .why{background:#fff}
  .why-grid{
    display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-top:50px;
  }
  .why-card{
    border-radius:20px;padding:28px;background:linear-gradient(160deg, var(--accent) 0%, #C71D29 100%);
    color:#fff;min-height:298px;display:flex;flex-direction:column;justify-content:space-between;
    position:relative;overflow:hidden;
  }
  .why-card::after{
    content:"";position:absolute;right:-30px;bottom:-30px;
    width:120px;height:120px;border:1px solid rgba(255,255,255,.12);border-radius:50%;
  }
  .why-card .n{
    font-size:11px;letter-spacing:.16em;opacity:.8;font-weight:500;text-transform:uppercase;
  }
  .why-card h4{font-size:22px;font-weight:700;letter-spacing:-0.22px;line-height:1.15}
  .why-card p{font-size:13.5px;color:rgba(255,255,255,.85);line-height:1.5;font-weight:400}

  .compat{
    margin-top:60px;border:1px solid var(--line);border-radius:20px;padding:32px;
    display:grid;grid-template-columns:340px 1fr;gap:40px;align-items:center;
  }
  .compat h4{font-size:20px;font-weight:700;letter-spacing:-0.2px;line-height:1.2}
  .compat p{font-size:14px;color:var(--muted);margin-top:6px;max-width:340px;line-height:1.5}
  .compat-table{display:grid;grid-template-columns:repeat(4,1fr);gap:0;font-size:14px}
  .compat-table > div{padding:0 18px}
  .compat-table .h{font-size:11px;letter-spacing:.14em;text-transform:uppercase;color:var(--muted);font-weight:600;padding:0 18px 6px;line-height:1.2}
  .compat-table .v{font-weight:700;padding-top:16px;font-size:14px;line-height:1.2}
  .compat-table .v small{display:block;color:var(--muted);font-weight:500;font-size:12.5px;margin-top:2px;line-height:1.3}

  /* ========== CTA BANNER ========== */
  .cta-band{
    padding:80px 0;background:#fff;
  }
  .cta-band-inner{
    background:linear-gradient(120deg, #0B0B0F 0%, #1a1a22 100%);
    border-radius:32px;padding:60px;
    display:flex;justify-content:space-between;align-items:center;gap:40px;
    position:relative;overflow:hidden;min-height:230px;
  }
  .cta-band-inner::after{
    content:"";position:absolute;top:-100px;right:-100px;
    width:400px;height:400px;background:radial-gradient(circle, rgba(237,42,55,.4), transparent 70%);
    border-radius:50%;pointer-events:none;
  }
  .cta-band-inner > div:first-child{position:relative;z-index:1;max-width:841px;flex:1}
  .cta-band-inner h3{
    font-size:42px;font-weight:700;color:#fff;letter-spacing:-0.84px;line-height:1.1;
  }
  .cta-band-inner p{color:#cfcfd5;margin-top:14px;max-width:841px;font-size:16px;line-height:1.55}
  .cta-band-inner .btns{display:flex;gap:14px;justify-content:flex-end;flex-wrap:wrap;position:relative;z-index:2;flex-shrink:0;align-items:center}

  /* ========== FOOTER ========== */
  footer{background:#fff;padding:80px 0 40px;border-top:1px solid var(--line)}
  .foot-top{
    display:grid;grid-template-columns:1fr 360px;gap:0;align-items:start;margin-bottom:50px;
  }
  .foot-top h3{
    font-size:56px;font-weight:700;line-height:1.02;letter-spacing:-1.12px;
    display:flex;align-items:center;gap:16px;flex-wrap:wrap;
  }
  .foot-top h3 .arr{
    display:inline-grid;place-items:center;width:50px;height:50px;border-radius:50%;background:var(--accent);color:#fff;
    font-size:24px;flex-shrink:0;font-weight:600;line-height:1;
  }
  .foot-contact{display:flex;flex-direction:column;gap:0;text-align:right;font-size:15px;font-weight:500;align-items:flex-end}
  .foot-contact a:hover{color:var(--accent)}
  .foot-contact .label{font-size:11px;letter-spacing:.16em;text-transform:uppercase;color:var(--muted);margin-bottom:18px;font-weight:600;line-height:1.2}
  .foot-contact .btn-primary{margin-bottom:12px;padding:12px 20px;font-size:14px}
  .foot-contact a[href^="mailto"]{font-size:15px;font-weight:500;line-height:1.2}

  .offices{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
  .offices--duo{grid-template-columns:repeat(2,1fr)}
  .office{
    background:var(--ink);color:#fff;border-radius:14px;padding:20px;
    min-height:198px;display:flex;flex-direction:column;justify-content:flex-end;
    position:relative;overflow:hidden;
  }
  .office::before{
    content:"";position:absolute;inset:0;
    background-image:
      linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size:14px 14px;
    opacity:.5;
  }
  .office h5{
    font-size:14px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;position:relative;z-index:1;line-height:1.2;
  }
  .office p{font-size:11.5px;color:#9A9AA3;line-height:1.45;position:relative;z-index:1;margin-top:8px;max-width:588px}

  .foot-bottom{
    display:flex;justify-content:space-between;align-items:center;
    padding-top:30px;border-top:1px solid var(--line);font-size:13px;color:var(--muted);
    flex-wrap:wrap;gap:16px;margin-top:50px;
  }
  .foot-bottom .links{display:flex;gap:24px}

  /* ========== CONNECT MODAL / FORM ========== */
  .modal-overlay{
    position:fixed;inset:0;z-index:100;
    background:rgba(11,11,15,.55);
    backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);
    display:none;align-items:flex-start;justify-content:center;
    padding:5vh 20px;overflow-y:auto;
    opacity:0;transition:opacity .25s ease;
  }
  .modal-overlay.open{display:flex;opacity:1}
  body.modal-locked{overflow:hidden}

  .modal-card{
    background:#fff;border-radius:24px;
    max-width:560px;width:100%;
    box-shadow:0 30px 80px -20px rgba(0,0,0,.5);
    position:relative;
    transform:translateY(20px) scale(.98);
    transition:transform .3s cubic-bezier(.16,1,.3,1);
    overflow:hidden;
  }
  .modal-overlay.open .modal-card{transform:translateY(0) scale(1)}

  .modal-close{
    position:absolute;top:18px;right:18px;z-index:5;
    width:36px;height:36px;border-radius:50%;
    background:#F6F6F4;color:#0B0B0F;
    display:grid;place-items:center;font-size:18px;
    transition:all .2s ease;
  }
  .modal-close:hover{background:var(--accent);color:#fff;transform:rotate(90deg)}

  .modal-head{
    padding:36px 36px 0;
  }
  .modal-head .eyebrow{margin-bottom:6px}
  .modal-head h3{
    font-size:30px;font-weight:700;letter-spacing:-0.6px;line-height:1.1;
    margin-bottom:8px;
  }
  .modal-head p{font-size:14.5px;color:var(--muted);margin-bottom:6px;line-height:1.5}

  .modal-form{padding:24px 36px 36px;display:flex;flex-direction:column;gap:18px}
  .form-row{display:flex;flex-direction:column;gap:6px}
  .form-grid-2{display:grid;grid-template-columns:1fr 1fr;gap:14px}
  .form-row label{
    font-size:12px;font-weight:600;color:#3a3a42;
    display:flex;justify-content:space-between;
  }
  .form-row label .req{color:var(--accent);margin-left:4px}
  .form-row label .opt{color:var(--muted);font-weight:400}

  .form-row input[type="text"],
  .form-row input[type="email"],
  .form-row input[type="tel"],
  .form-row select,
  .form-row textarea{
    font-family:inherit;font-size:14.5px;
    background:#FAFAF8;border:1.5px solid var(--line);
    border-radius:10px;padding:11px 14px;
    color:#0B0B0F;
    transition:border-color .15s ease, background .15s ease;
    width:100%;
  }
  .form-row input:focus,
  .form-row select:focus,
  .form-row textarea:focus{
    outline:none;border-color:var(--accent);background:#fff;
  }
  .form-row textarea{resize:vertical;min-height:80px;font-family:inherit;line-height:1.5}
  .form-row select{cursor:pointer;appearance:none;-webkit-appearance:none;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B6B73' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat:no-repeat;background-position:right 14px center;padding-right:36px;
  }

  /* phone with country code */
  .phone-input{display:grid;grid-template-columns:auto 1fr;gap:8px}
  .phone-input select{padding:11px 28px 11px 12px;font-size:13.5px}

  /* intent radio pills */
  .intent-pills{
    display:flex;flex-wrap:wrap;gap:8px;
  }
  .intent-pill{
    position:relative;cursor:pointer;
  }
  .intent-pill input{
    position:absolute;opacity:0;pointer-events:none;
  }
  .intent-pill span{
    display:inline-block;padding:9px 16px;border-radius:999px;
    background:#FAFAF8;border:1.5px solid var(--line);
    font-size:13px;font-weight:600;color:#3a3a42;
    transition:all .15s ease;
    user-select:none;
  }
  .intent-pill input:checked + span{
    background:var(--accent);border-color:var(--accent);color:#fff;
    box-shadow:0 4px 14px -4px rgba(237,42,55,.5);
  }
  .intent-pill:hover span{border-color:var(--ink)}

  .form-submit{
    margin-top:8px;justify-content:center;width:100%;
    background:var(--accent);color:#fff;padding:14px 22px;border-radius:999px;
    font-weight:700;font-size:15px;
    display:inline-flex;align-items:center;gap:8px;
    border:none;cursor:pointer;
    transition:all .2s ease;
  }
  .form-submit:hover{background:#d61f2c;transform:translateY(-1px);box-shadow:0 10px 24px -8px rgba(237,42,55,.5)}
  .form-submit:disabled{opacity:.6;cursor:not-allowed;transform:none}
  .form-submit::after{content:"→";transition:transform .2s ease}
  .form-submit:hover::after{transform:translateX(3px)}

  .form-note{
    font-size:12px;color:var(--muted);text-align:center;
    line-height:1.5;
  }
  .form-note a{color:#0B0B0F;text-decoration:underline;text-underline-offset:2px}

  /* error state */
  .form-row.err input,.form-row.err select,.form-row.err textarea{border-color:var(--accent);background:#FFF5F6}
  .form-row .err-msg{
    display:none;font-size:11.5px;color:var(--accent);margin-top:2px;font-weight:500;
  }
  .form-row.err .err-msg{display:block}

  /* success state */
  .modal-success{
    display:none;padding:50px 36px 40px;text-align:center;
  }
  .modal-success.show{display:block}
  .modal-form.hide{display:none}
  .success-ico{
    width:64px;height:64px;border-radius:50%;
    background:linear-gradient(135deg, #7BC47F, #5AA85F);
    display:grid;place-items:center;color:#fff;font-size:30px;font-weight:700;
    margin:0 auto 20px;
    animation:pop .4s cubic-bezier(.16,1,.3,1);
  }
  @keyframes pop{from{transform:scale(0)}to{transform:scale(1)}}
  .modal-success h3{
    font-size:28px;font-weight:700;letter-spacing:-0.56px;margin-bottom:10px;
  }
  .modal-success p{font-size:15px;color:#3a3a42;margin-bottom:20px;line-height:1.55;max-width:380px;margin-left:auto;margin-right:auto}
  .modal-success .next-step{
    background:#F6F6F4;border-radius:12px;padding:14px 18px;font-size:13px;color:#3a3a42;
    margin:0 auto 24px;max-width:380px;text-align:left;
  }
  .modal-success .next-step b{display:block;color:#0B0B0F;font-size:12px;margin-bottom:4px;letter-spacing:.04em;text-transform:uppercase}

  @media (max-width:600px){
    .modal-card{border-radius:18px}
    .modal-head{padding:30px 22px 0}
    .modal-form{padding:18px 22px 28px;gap:14px}
    .modal-success{padding:36px 22px 28px}
    .form-grid-2{grid-template-columns:1fr}
    .modal-head h3{font-size:24px}
  }

  /* ========== RESPONSIVE ========== */
  @media (max-width: 1100px){
    :root{--gutter:40px}
    h2.section-title{font-size:clamp(36px,4.2vw,48px)}
    h1.hero-title{font-size:clamp(42px,5.5vw,64px)}
    .hero-inner{grid-template-columns:1fr}
    .hero-visual{min-height:480px;justify-content:center}
    .hero-phones{max-width:520px;margin:0 auto}
    .sf-head{
      flex-direction:column;align-items:flex-start;gap:0;
    }
    .sf-head-copy{max-width:100%}
    .sf-head .section-title{
      font-size:clamp(32px,4.5vw,42px);
      max-width:100%;
    }
    .sf-tag{
      width:max-content;max-width:100%;margin-top:40px;align-self:flex-start;
    }
    .why-grid{grid-template-columns:repeat(2,1fr)}
    .compat{grid-template-columns:1fr;gap:28px}
  }

  @media (max-width: 980px){
    :root{--section-y:80px}
    .nav-links{display:none}
    .menu-toggle{display:grid;place-items:center;width:42px;height:42px;border-radius:10px;border:1px solid var(--line)}
    .menu-toggle span{display:block;width:18px;height:2px;background:#0B0B0F;position:relative}
    .menu-toggle span::before,.menu-toggle span::after{content:"";position:absolute;left:0;width:18px;height:2px;background:#0B0B0F}
    .menu-toggle span::before{top:-6px}
    .menu-toggle span::after{top:6px}

    .hero-inner{gap:48px;padding:52px 0 72px}
    .hero-text{
      max-width:100%;width:100%;gap:22px;
    }
    .hero-text > *{margin:0}
    .hero .badge{
      flex-wrap:wrap;align-items:center;gap:8px 10px;
      max-width:100%;padding:10px 14px;font-size:12px;
    }
    h1.hero-title{
      font-size:clamp(34px,7vw,48px);
      letter-spacing:-0.68px;line-height:1.08;
      max-width:100%;
    }
    .hero p.lead{font-size:16px;max-width:100%}
    .ctas{
      flex-direction:column;align-items:stretch;
      gap:14px;width:100%;
    }
    .ctas .btn{width:100%;justify-content:center}
    .hero-note{
      width:100%;max-width:100%;align-self:stretch;
      gap:14px;margin-top:6px;
    }
    .hero-note::before{
      min-height:56px;height:auto;align-self:stretch;
      flex:0 0 2px;
    }

    .sf-grid{grid-template-columns:1fr 1fr}
    .sf-card{min-height:0}
    .uc-row{grid-template-columns:1fr;gap:40px;padding:50px 0}
    .uc-row:first-of-type{padding-top:60px}
    .uc-row.flip .uc-text{order:0}
    .uc-row.flip .uc-visual{order:0}
    .uc-text{max-width:100%}
    .uc-visual{min-height:auto}
    .uc-visual .stage{height:380px;max-width:100%}
    .uc-phones-duo:not(.uc-phones-duo--engage){transform:translateX(-50%) scale(.88);transform-origin:top center;top:16px}
    .uc-phones-duo--engage{left:24px;transform:scale(.88);transform-origin:top left}
    .pilot .grid{grid-template-columns:1fr;gap:50px}
    .com-grid{grid-template-columns:1fr}
    .method-grid{grid-template-columns:1fr 1fr}
    .cta-band-inner{flex-direction:column;align-items:flex-start;padding:40px 30px}
    .cta-band-inner .btns{justify-content:flex-start;width:100%}
    .foot-top{grid-template-columns:1fr;gap:30px}
    .foot-contact{text-align:left;align-items:flex-start}
    .offices--duo{grid-template-columns:1fr}
  }

  @media (max-width: 600px){
    :root{--gutter:24px;--section-y:60px}
    .nav-inner{padding:14px 0;gap:10px}
    .brand{gap:10px;min-width:0;flex:1}
    .brand-text{font-size:16px}
    .brand-text small{font-size:9px;letter-spacing:.5px; padding-top: 5px}
    .nav-cta{
      padding:10px 14px;font-size:13px;flex-shrink:0;
      margin-left:auto;
    }
    .menu-toggle{flex-shrink:0;width:40px;height:40px}

    .hero-inner{padding:13px 0 56px;gap:0}
    .hero-text{gap:0}
    h1.hero-title{font-size:24px;letter-spacing:-0.64px;line-height:1.12}
    .hero .badge{padding:10px 14px;font-size:11px;gap:3px}
    .hero p.lead{font-size:15px;line-height:1.6}
    .ctas{gap:12px}
    .ctas .btn{padding:14px 22px;font-size:14px}
    .hero-note{
      font-size:13px;line-height:1.6;gap:14px;
      width:100%;max-width:100%;padding:0;
    }
    .hero-note::before{
      width:2px;min-height:48px;flex:0 0 2px;
    }
    h2.section-title{font-size:24px;letter-spacing:-0.64px}
    .hero-visual{min-height:320px}
    .hero-phones{min-height:320px;max-width:100%}
    .sf-grid{grid-template-columns:1fr}
    .sf-head{flex-direction:column;align-items:flex-start;gap:0}
    .sf-head .section-title{font-size:24px;letter-spacing:-0.64px}
    .sf-tag{width:max-content;max-width:100%;margin-top:32px;align-self:flex-start}
    .uc-row h3{font-size:22px;letter-spacing:-0.56px}
    .method-cell h4, .why-card h4{font-size:18px;}
    .uc-tag{padding:12px 14px}
    .uc-visual .stage{height:320px}
    .uc-phone-single--tasks{transform:translateX(-50%) scale(.72);width:283px}
    .uc-phone-single--project{transform:translateX(-50%) scale(.72);top:12px;width:281px}
    .uc-phones-duo:not(.uc-phones-duo--engage){transform:translateX(-50%) scale(.72);top:12px;width:527px}
    .uc-phones-duo--engage{left:12px;transform:scale(.72);transform-origin:top left;width:495px}
    .uc-phone-single--tasks{transform:translateX(-50%) scale(.88);top:0}
    .uc-phone-single--project{transform:translateX(-50%) scale(.88);top:16px}
    .method-grid{grid-template-columns:1fr}
    .why-grid{grid-template-columns:1fr}
    .why-card{min-height:180px}
    .compat-table{grid-template-columns:1fr 1fr;font-size:12.5px}
    .compat-table > div{padding:12px 14px}
    .com-card .big{font-size:48px}
    .cta-band-inner{padding:30px 22px;border-radius:24px;min-height:0}
    .cta-band-inner h3{font-size:28px;letter-spacing:-0.56px}
    .foot-top h3{font-size:38px;letter-spacing:-0.76px}
    .foot-top h3 .arr{width:38px;height:38px;font-size:18px}
    .pilot-stats{padding:24px}
    .pilot-stats::before{top:24px;right:24px}
    .stat-row{min-height:72px}
    .stat-row .val{font-size:20px}
    .office .logos{max-width:100%;height:auto;max-height:91px}
  }

  /* fade in animations */
  @keyframes rise{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
  .reveal{animation:rise .8s ease both}
  .d1{animation-delay:.1s}.d2{animation-delay:.2s}.d3{animation-delay:.3s}.d4{animation-delay:.4s}
