:root {
    --navy:   #191919;
    --navy2:  #222222;
    --slate:  #1e1e1e;
    --orange: #FF4C0B;
    --orange2:#e03d00;
    --peach:  #FFC79A;
    --beige:  #F6F1E7;
    --amber:  #FF4C0B;
    --white:  #F6F1E7;
    --muted:  #9C8880;
    --card:   #242424;
    --border: rgba(255,76,11,0.18);
    /* keep teal as alias so canvas/demo code still works */
    --teal:   #FF4C0B;
    --teal2:  #e03d00;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: #191919;
    color: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* GRAIN OVERLAY */
  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
    opacity: 0.35;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 4rem;
    background: rgba(25,25,25,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,76,11,0.12);
  }
  /* LOGO C — AEC Title Block style */
  .logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    line-height: 1;
    text-decoration: none;
  }
  .logo-top-rule {
    display: flex; align-items: center; gap: 0;
    width: 100%;
    margin-bottom: 4px;
  }
  .logo-rule-line {
    height: 1px;
    flex: 1;
    background: rgba(255,76,11,0.35);
  }
  .logo-rule-dots {
    display: flex; gap: 3px; align-items: center;
    padding: 0 4px;
  }
  .logo-rule-dot {
    width: 3px; height: 3px;
    border-radius: 50%;
    background: #FF4C0B;
  }
  .logo-name-row {
    display: flex; align-items: baseline; gap: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -0.02em;
    line-height: 1;
  }
  .logo-trio  { color: var(--white); }
  .logo-click { color: #FF4C0B; }
  .logo-ai-pill {
    margin-left: 6px;
    margin-bottom: 2px;
    align-self: flex-end;
    background: rgba(255,76,11,0.15);
    border: 1px solid rgba(255,76,11,0.4);
    border-radius: 3px;
    padding: 0.08rem 0.32rem;
    font-size: 0.52rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--peach);
    text-transform: uppercase;
    line-height: 1.5;
  }
  .logo-bottom-row {
    display: flex; align-items: center; gap: 6px;
    margin-top: 3px;
    width: 100%;
  }
  .logo-bottom-line {
    height: 1px;
    background: linear-gradient(90deg, #FF4C0B, rgba(255,76,11,0.1));
    flex: 1;
    min-width: 30px;
  }
  .logo-descriptor {
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    text-decoration: none;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--orange); }
  .nav-cta {
    background: var(--orange);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 0.55rem 1.4rem;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: background 0.2s, transform 0.15s;
  }
  .nav-cta:hover { background: var(--teal2); transform: translateY(-1px); }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 8rem 3rem 4rem;
    position: relative;
    overflow: hidden;
    gap: 0;
  }
  .hero-content {
    display: flex; flex-direction: column;
    align-items: flex-start;
    position: relative; z-index: 2;
  }
  .hero-visual {
    position: relative; z-index: 2;
    display: flex; align-items: center; justify-content: center;
  }
  /* ── APP WINDOW MOCKUP ── */
  .app-win {
    width: 100%;
    max-width: 660px;
    background: #111;
    border-radius: 10px;
    border: 1px solid rgba(255,76,11,0.22);
    box-shadow: 0 24px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,76,11,0.06);
    overflow: hidden;
    display: flex; flex-direction: column;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }
  /* Window bar */
  .aw-bar {
    display: flex; align-items: center; gap: 0;
    padding: 8px 14px 6px;
    background: #0e0e0e;
    border-bottom: 1px solid rgba(255,76,11,0.1);
    flex-shrink: 0;
  }
  .aw-dots { display:flex; gap:5px; }
  .aw-dots span { width:8px; height:8px; border-radius:50%; display:block; }
  .aw-dots span:nth-child(1){background:#ff5f57;}
  .aw-dots span:nth-child(2){background:#febc2e;}
  .aw-dots span:nth-child(3){background:#28c840;}
  .aw-title {
    flex:1; text-align:center;
    font-size:0.95rem; font-weight:800; letter-spacing:-0.01em;
    color:#F6F1E7;
  }
  .aw-title span{color:#FF4C0B;}
  .aw-title em{
    font-style:normal; font-size:0.72rem; font-weight:700;
    color:#FFC79A;
    background:rgba(255,76,11,0.15);
    border:1px solid rgba(255,76,11,0.35);
    border-radius:3px; padding:0.05rem 0.3rem; margin-left:3px;
  }
  .aw-spacer{width:52px;}

  /* 2×2 grid */
  .aw-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    padding: 4px;
    background: #141414;
    flex: 1;
  }

  /* Panel base */
  .aw-panel {
    background: #1a1a1a;
    border-radius: 5px;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 0;
    display: flex; flex-direction: column;
    overflow: hidden;
    transition: border-color 0.4s, box-shadow 0.4s;
  }
  .aw-panel.awp-active {
    box-shadow: 0 0 0 1.5px currentColor;
  }
  .awp-docs   { --pc: #FF4C0B; }
  .awp-review { --pc: #FFC79A; }
  .awp-tender { --pc: #C4BDB5; }
  .awp-control{ --pc: #7dd4a8; }

  .aw-panel.awp-active { border-color: var(--pc); box-shadow: 0 0 14px rgba(0,0,0,0.3); }

  /* Panel head */
  .awp-head {
    display: flex; align-items: center; gap: 5px;
    padding: 5px 7px 4px;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    flex-shrink: 0;
  }
  .awp-dot {
    width:6px; height:6px; border-radius:50%;
    background: var(--pc); opacity:0.5; flex-shrink:0;
  }
  .aw-panel.awp-active .awp-dot { opacity:1; }
  .awp-tag {
    font-size:0.48rem; font-weight:800; letter-spacing:0.1em;
    color: var(--pc);
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--pc);
    border-radius:2px; padding:0.1rem 0.3rem; opacity:0.7;
    flex-shrink:0;
  }
  .aw-panel.awp-active .awp-tag { opacity:1; }
  .awp-label {
    font-size:0.74rem; font-weight:700; color:rgba(246,241,231,0.5);
    flex:1; white-space:nowrap; overflow:hidden;
  }
  .aw-panel.awp-active .awp-label { color:#F6F1E7; }
  .awp-badge {
    font-size:0.56rem; font-weight:700; letter-spacing:0.08em;
    color:#FFC79A;
    background:rgba(255,199,154,0.08);
    border:1px solid rgba(255,199,154,0.25);
    border-radius:2px; padding:0.1rem 0.3rem; flex-shrink:0;
  }

  /* Tabs */
  .awp-tabs {
    display:flex; gap:2px; padding:4px 6px 0;
    flex-shrink:0;
  }
  .awp-tab {
    font-size:0.64rem; font-weight:600; color:rgba(129,111,102,0.7);
    padding:2px 6px 3px; border-radius:2px 2px 0 0;
    border-bottom:2px solid transparent;
  }
  .awp-tab-on {
    color:#FFC79A;
    border-bottom-color:#FF4C0B;
    background:rgba(255,76,11,0.06);
  }

  /* Drawing rows */
  .awp-rows { flex:1; padding:2px 0; }
  .awp-row {
    display:flex; align-items:center; gap:3px;
    padding:3px 6px;
    border-bottom:1px solid rgba(255,255,255,0.03);
  }
  .awp-row-hi { background:rgba(255,76,11,0.04); }
  .awp-row-dim { opacity:0.4; }
  .awp-rnum {
    font-size:0.65rem; color:rgba(246,241,231,0.65);
    flex:1; font-family:monospace;
  }
  .awp-rev {
    font-size:0.6rem; font-weight:800;
    padding:2px 5px; border-radius:2px; flex-shrink:0;
  }
  .awp-rev-c { background:rgba(255,76,11,0.15); color:#FFC79A; }
  .awp-rev-b { background:rgba(129,111,102,0.15); color:#816F66; }
  .awp-st {
    font-size:0.58rem; font-weight:700; letter-spacing:0.05em;
    padding:2px 6px; border-radius:2px; flex-shrink:0; text-align:center;
  }
  .awp-st-ok   { background:rgba(125,212,168,0.12); color:#7dd4a8; }
  .awp-st-rev  { background:rgba(245,200,66,0.12);  color:#f5c842; }
  .awp-st-pend { background:rgba(129,111,102,0.1);  color:#816F66; }

  /* Footer */
  .awp-foot {
    display:flex; align-items:center; justify-content:space-between;
    padding:3px 7px;
    border-top:1px solid rgba(255,255,255,0.04);
    flex-shrink:0;
  }
  .awp-count { font-size:0.68rem; font-weight:700; color:var(--pc); }
  .awp-meta  { font-size:0.6rem; color:rgba(129,111,102,0.7); }
  .awp-ints  {
    display:flex; gap:4px; padding:3px 7px 4px;
    border-top:1px solid rgba(255,255,255,0.03); flex-shrink:0;
  }
  .awp-ints span { font-size:0.55rem; color:rgba(129,111,102,0.55); }

  /* Review matrix */
  .awp-matrix { flex:1; padding:4px 6px; }
  .awp-mx-row {
    display:grid; grid-template-columns:28px repeat(3,1fr);
    gap:2px; margin-bottom:2px;
  }
  .awp-mx-head span {
    font-size:0.6rem; font-weight:700;
    color:rgba(129,111,102,0.7); text-align:center;
  }
  .awp-mx-disc {
    font-size:0.65rem; font-weight:600;
    color:rgba(246,241,231,0.55); display:flex; align-items:center;
  }
  .awp-mx-cell {
    font-size:0.58rem; font-weight:700;
    border-radius:2px; padding:4px 3px; text-align:center;
  }
  .awp-c-ok   { background:rgba(125,212,168,0.12); color:#7dd4a8; }
  .awp-c-rev  { background:rgba(245,200,66,0.1);   color:#f5c842; }
  .awp-c-pend { background:rgba(129,111,102,0.08); color:#816F66; }

  /* Tender pipeline */
  .awp-pipeline {
    display:flex; align-items:center;
    padding:8px 6px 4px; flex-shrink:0;
  }
  .awp-pip-step { display:flex; flex-direction:column; align-items:center; gap:3px; flex-shrink:0; }
  .awp-pip-dot {
    width:8px; height:8px; border-radius:50%;
    border:1.5px solid rgba(129,111,102,0.3);
  }
  .awp-pip-lbl { font-size:0.56rem; font-weight:700; color:rgba(129,111,102,0.6); white-space:nowrap; }
  .awp-pip-line { flex:1; height:1.5px; background:rgba(129,111,102,0.2); margin-bottom:11px; }
  .awp-pip-done .awp-pip-dot { background:#FF4C0B; border-color:#FF4C0B; }
  .awp-pip-done .awp-pip-lbl { color:#FFC79A; }
  .awp-pip-prog .awp-pip-dot { background:rgba(245,200,66,0.3); border-color:#f5c842; }
  .awp-pip-prog .awp-pip-lbl { color:#f5c842; }
  .awp-pip-line-done { background:rgba(255,76,11,0.4); }
  .awp-pip-line-prog { background:linear-gradient(90deg,rgba(255,76,11,0.4),rgba(245,200,66,0.3)); }

  /* Vendor rows */
  .awp-vendors { flex:1; padding:2px 0; }
  .awp-vrow {
    display:flex; align-items:center; justify-content:space-between;
    padding:3px 7px;
    border-bottom:1px solid rgba(255,255,255,0.03);
  }
  .awp-vname { font-size:0.68rem; color:rgba(246,241,231,0.7); }
  .awp-vst { font-size:0.58rem; font-weight:700; padding:1px 5px; border-radius:2px; }
  .awp-vst-ok  { background:rgba(125,212,168,0.12); color:#7dd4a8; }
  .awp-vst-q   { background:rgba(245,200,66,0.1);   color:#f5c842; }
  .awp-vst-inv { background:rgba(129,111,102,0.08); color:#816F66; }

  /* KPIs */
  .awp-kpis {
    display:grid; grid-template-columns:repeat(4,1fr);
    gap:3px; padding:5px 6px 3px; flex-shrink:0;
  }
  .awp-kpi { border-radius:3px; padding:4px 3px; text-align:center; border:1px solid; }
  .awp-kpi-g { background:rgba(125,212,168,0.08); border-color:rgba(125,212,168,0.2); }
  .awp-kpi-a { background:rgba(245,200,66,0.08);  border-color:rgba(245,200,66,0.2); }
  .awp-kpi-o { background:rgba(255,199,154,0.08); border-color:rgba(255,199,154,0.2); }
  .awp-kpi-m { background:rgba(129,111,102,0.06); border-color:rgba(129,111,102,0.15); }
  .awp-kpi-v {
    font-size:1.05rem; font-weight:800; letter-spacing:-0.03em; line-height:1;
  }
  .awp-kpi-g .awp-kpi-v { color:#7dd4a8; }
  .awp-kpi-a .awp-kpi-v { color:#f5c842; }
  .awp-kpi-o .awp-kpi-v { color:#FFC79A; }
  .awp-kpi-m .awp-kpi-v { color:#816F66; }
  .awp-kpi-l {
    font-size:0.52rem; font-weight:700; text-transform:uppercase;
    letter-spacing:0.06em; color:rgba(129,111,102,0.8); margin-top:2px;
  }

  /* Progress bars */
  .awp-bars { flex:1; padding:4px 7px; display:flex; flex-direction:column; justify-content:center; gap:4px; }
  .awp-bar-row { display:flex; align-items:center; gap:5px; }
  .awp-bar-lbl { font-size:0.64rem; font-weight:600; color:rgba(129,111,102,0.7); width:50px; flex-shrink:0; }
  .awp-bar-track { flex:1; height:4px; background:rgba(255,255,255,0.05); border-radius:2px; overflow:hidden; }
  .awp-bar-fill  { height:100%; border-radius:2px; }
  .awp-bar-pct   { font-size:0.64rem; font-weight:700; width:24px; text-align:right; flex-shrink:0; }

  /* AI strip */
  .aw-ai {
    display:flex; align-items:center; gap:7px;
    padding:5px 10px;
    background:#0e0e0e;
    border-top:1px solid rgba(255,76,11,0.15);
    flex-shrink:0;
  }
  .aw-ai-dots { display:flex; gap:3px; }
  .aw-ai-dots span {
    width:5px; height:5px; border-radius:50%;
    background:rgba(255,76,11,0.5);
    animation: ai-pulse 1.2s ease-in-out infinite;
  }
  .aw-ai-dots span:nth-child(2){animation-delay:0.2s;}
  .aw-ai-dots span:nth-child(3){animation-delay:0.4s;}
  @keyframes ai-pulse {
    0%,100%{opacity:0.3;transform:scale(0.8);}
    50%{opacity:1;transform:scale(1.1);}
  }
  .aw-ai-label {
    font-size:0.65rem; font-weight:800; letter-spacing:0.1em;
    color:#FFC79A; flex-shrink:0;
  }
  .aw-ai-query {
    font-size:0.68rem; color:rgba(246,241,231,0.45);
    white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
    font-style:italic;
  }

  /* Active panel cycling via JS class */
  @keyframes panel-glow {
    0%{box-shadow:0 0 0 1.5px var(--pc),0 0 12px rgba(0,0,0,0);}
    50%{box-shadow:0 0 0 1.5px var(--pc),0 0 18px rgba(0,0,0,0.2);}
    100%{box-shadow:0 0 0 1.5px var(--pc),0 0 12px rgba(0,0,0,0);}
  }
  .aw-panel.awp-active { animation: panel-glow 2s ease-in-out infinite; }


  .hero-grid-bg {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,76,11,0.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,76,11,0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 40%, transparent 100%);
  }

  .hero-glow { display: none; }

  .hero-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #FFC79A;
    font-weight: 700;
    margin-bottom: 1.2rem;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.2s;
  }

  .hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(3.2rem, 7vw, 7rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    font-weight: 800;
    max-width: 900px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.4s;
  }

  .hero h1 .accent { color: var(--orange); }
  .hero h1 .dim { color: rgba(246,241,231,0.35); }

  .hero-sub {
    margin-top: 2rem;
    font-size: 1.05rem;
    color: rgba(246,241,231,0.72);
    font-weight: 400;
    max-width: 500px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.6s;
  }

  .hero-actions {
    margin-top: 2.5rem;
    display: flex; gap: 1rem; align-items: center;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.8s;
  }

  .btn-primary {
    background: var(--orange);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 0 20px rgba(255,76,11,0.25);
  }
  .btn-primary:hover {
    background: var(--teal2);
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(255,76,11,0.45);
  }

  .btn-ghost {
    color: var(--muted);
    font-size: 0.88rem;
    text-decoration: none;
    font-weight: 500;
    display: flex; align-items: center; gap: 0.4rem;
    transition: color 0.2s;
  }
  .btn-ghost:hover { color: var(--white); }

  .hero-modules {
    margin-top: 3.5rem;
    display: flex; gap: 1rem; flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 1s;
  }
  .module-pill {
    display: flex; align-items: center; gap: 0.7rem;
    padding: 0.7rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: rgba(15,30,53,0.7);
    backdrop-filter: blur(8px);
    transition: border-color 0.25s, background 0.25s, transform 0.2s;
    cursor: default;
  }
  .module-pill:hover {
    border-color: rgba(255,76,11,0.45);
    background: rgba(255,76,11,0.08);
    transform: translateY(-2px);
  }
  .module-pill-icon { font-size: 1.1rem; }
  .module-pill-text { display: flex; flex-direction: column; }
  .module-pill-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0;
    color: var(--white);
    line-height: 1.2;
  }
  .module-pill-sub {
    font-size: 0.7rem;
    color: var(--muted);
    letter-spacing: 0.06em;
    margin-top: 0.15rem;
  }

  /* SECTION SHARED */
  section { padding: 7rem 4rem; }
  .section-label {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--peach);
    font-weight: 600;
    margin-bottom: 1rem;
  }
  .section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-weight: 800;
    margin-bottom: 1.2rem;
  }
  .section-sub {
    color: rgba(246,241,231,0.7);
    font-weight: 400;
    max-width: 560px;
    line-height: 1.75;
    font-size: 0.95rem;
  }

  /* TRIO DEMO */
  .trio-section {
    background: var(--navy2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid rgba(255,76,11,0.12);
  }

  .trio-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .click-counter {
    display: flex; align-items: center; gap: 1rem;
    margin-bottom: 2.5rem;
  }
  .click-dots {
    display: flex; gap: 0.5rem;
  }
  .dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: transparent;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  }
  .dot.active {
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 0 10px rgba(255,76,11,0.6);
  }
  .click-label {
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .trio-step { display: none; flex-direction: column; gap: 0.8rem; }
  .trio-step.active { display: flex; animation: fadeUp 0.4s ease; }
  .trio-step-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    color: var(--orange);
  }
  .trio-tag {
    display: inline-block;
    font-size: 0.5rem; font-weight: 800; letter-spacing: 0.1em;
    padding: 0.12rem 0.4rem; border-radius: 2px;
    margin-right: 0.45rem; vertical-align: middle;
    border: 1px solid;
    line-height: 1.6;
  }
  .trio-tag-docs  { color: #FF4C0B; background: rgba(255,76,11,0.08);  border-color: rgba(255,76,11,0.3); }
  .trio-tag-rev   { color: #FFC79A; background: rgba(255,199,154,0.08); border-color: rgba(255,199,154,0.3); }
  .trio-tag-ctrl  { color: #7dd4a8; background: rgba(125,212,168,0.08); border-color: rgba(125,212,168,0.3); }
  .trio-tag-tnd   { color: #C4BDB5; background: rgba(196,189,181,0.08); border-color: rgba(196,189,181,0.3); }
  .trio-option.selected .trio-tag-docs  { background: rgba(255,76,11,0.15); }
  .trio-option.selected .trio-tag-rev   { background: rgba(255,199,154,0.15); }
  .trio-option.selected .trio-tag-ctrl  { background: rgba(125,212,168,0.15); }
  .trio-option.selected .trio-tag-tnd   { background: rgba(196,189,181,0.15); }

  .trio-options {
    display: flex; flex-wrap: wrap; gap: 0.6rem;
    margin-top: 0.5rem;
  }
  .trio-option {
    padding: 0.55rem 1.1rem;
    border: 1px solid var(--border);
    border-radius: 3px;
    font-size: 0.88rem;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.2s;
    background: transparent;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }
  .trio-option:hover {
    border-color: var(--orange);
    color: var(--white);
    background: rgba(255,76,11,0.06);
  }
  .trio-option.selected {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(255,76,11,0.1);
  }

  .trio-result {
    margin-top: 1.5rem;
    background: rgba(255,76,11,0.04);
    border: 1px solid rgba(255,76,11,0.45);
    border-radius: 4px;
    display: none;
    animation: fadeUp 0.4s ease;
    overflow: hidden;
  }
  .trio-result.show { display: block; }
  .trio-result-header {
    padding: 0.9rem 1.2rem;
    border-bottom: 1px solid rgba(255,76,11,0.12);
    display: flex; align-items: center; justify-content: space-between;
  }
  .trio-result-label {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--peach);
  }
  .trio-result-count {
    font-size: 0.7rem;
    color: var(--muted);
    letter-spacing: 0.08em;
  }
  .trio-result-meta {
    font-size: 0.72rem;
    color: var(--muted);
    padding: 0.5rem 1.2rem 0.8rem;
    border-bottom: 1px solid rgba(255,76,11,0.12);
  }
  .drawing-list { display: flex; flex-direction: column; }
  .drawing-row {
    display: grid;
    grid-template-columns: 2fr 1fr 0.7fr;
    gap: 0.5rem;
    align-items: center;
    padding: 0.6rem 1.2rem;
    border-bottom: 1px solid rgba(255,76,11,0.07);
    transition: background 0.2s;
  }
  .drawing-row:last-child { border-bottom: none; }
  .drawing-row:hover { background: rgba(255,76,11,0.05); }

  /* DISCIPLINE TABS */
  .disc-tabs {
    display: flex; gap: 0; border-bottom: 1px solid rgba(255,76,11,0.12);
    overflow-x: auto;
  }
  .disc-tab {
    padding: 0.55rem 1.1rem;
    font-size: 0.75rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.2s, border-color 0.2s;
    margin-bottom: -1px;
  }
  .disc-tab:hover { color: var(--white); }
  .disc-tab.active {
    color: var(--peach);
    border-bottom-color: var(--orange);
  }
  .drawing-row-header {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 0.5rem 1.2rem 0.3rem;
    display: grid;
    grid-template-columns: 2fr 1fr 0.7fr;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255,76,11,0.12);
  }
  .dr-title { font-size: 0.8rem; color: var(--white); }
  .dr-code { font-size: 0.72rem; color: var(--muted); font-family: monospace; }
  .dr-rev {
    font-size: 0.65rem;
    padding: 0.15rem 0.45rem;
    border-radius: 2px;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.06em;
    justify-self: start;
  }
  .rev-c { background: rgba(255,76,11,0.15); color: var(--peach); }
  .rev-b { background: rgba(245,166,35,0.15); color: var(--amber); }
  .rev-p { background: rgba(122,144,168,0.15); color: var(--muted); }

  .reset-btn {
    margin-top: 1.2rem;
    background: none;
    border: 1px solid var(--border);
    color: var(--muted);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
    border-radius: 3px;
    cursor: pointer;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.2s;
    display: none;
  }
  .reset-btn.show { display: block; }
  .reset-btn:hover { border-color: var(--orange); color: var(--orange); }

  /* FEATURES */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    margin-top: 4rem;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    max-width: 1200px;
    margin-left: auto; margin-right: auto;
  }
  .feature-card {
    background: var(--card);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
  }
  .feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
  }
  .feature-card:hover { background: #2a2220; }
  .feature-card:hover::before { transform: scaleX(1); }

  .feature-icon {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    display: block;
  }
  .feature-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3.5rem;
    color: rgba(255,76,11,0.06);
    position: absolute;
    top: 1rem; right: 1.5rem;
    letter-spacing: 0.05em;
    line-height: 1;
  }
  .feature-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 0.8rem;
    color: var(--white);
  }
  .feature-desc {
    font-size: 0.87rem;
    color: rgba(246,241,231,0.68);
    line-height: 1.7;
    font-weight: 400;
  }
  .feature-tag {
    display: inline-block;
    margin-top: 1.2rem;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--peach);
    border: 1px solid rgba(255,199,154,0.3);
    padding: 0.25rem 0.6rem;
    border-radius: 2px;
  }

  /* Module interconnectivity */
  .ic-graph { display: flex; flex-direction: column; gap: 8px; }

  .ic-spine-label {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    text-align: center;
    margin-bottom: 2px;
  }

  .ic-nodes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
  }
  .ic-node {
    display: flex; flex-direction: column; align-items: center; gap: 3px;
    padding: 6px 4px;
    border-radius: 5px;
    border: 1px solid;
    text-align: center;
  }
  .ic-node-icon { font-size: 0.9rem; }
  .ic-node-name {
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.2;
  }
  .ic-node-docs    { border-color: rgba(255,199,154,0.35); background: rgba(255,199,154,0.06); }
  .ic-node-docs .ic-node-name { color: #FFC79A; }
  .ic-node-review  { border-color: rgba(168,196,224,0.35); background: rgba(168,196,224,0.06); }
  .ic-node-review .ic-node-name { color: #a8c4e0; }
  .ic-node-control { border-color: rgba(125,212,168,0.35); background: rgba(125,212,168,0.06); }
  .ic-node-control .ic-node-name { color: #7dd4a8; }
  .ic-node-tender  { border-color: rgba(255,76,11,0.35);   background: rgba(255,76,11,0.06); }
  .ic-node-tender .ic-node-name { color: #FFC79A; }

  .ic-flows { display: flex; flex-direction: column; gap: 3px; }
  .ic-flow {
    display: flex; align-items: center; gap: 5px;
    padding: 4px 6px;
    border-radius: 4px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.04);
  }
  .ic-flow-from {
    font-size: 0.58rem;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
    flex-shrink: 0;
  }
  .ic-flow-arrow { font-size: 0.6rem; color: #FF4C0B; flex-shrink: 0; }
  .ic-flow-to {
    font-size: 0.58rem;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
    flex-shrink: 0;
  }
  .ic-flow-label {
    font-size: 0.55rem;
    color: var(--muted);
    line-height: 1.3;
    flex: 1;
    padding-left: 3px;
    border-left: 1px solid rgba(255,76,11,0.2);
    margin-left: 2px;
  }
  .ic-flow-a { border-left: 2px solid rgba(255,199,154,0.4); }
  .ic-flow-b { border-left: 2px solid rgba(255,76,11,0.4); }
  .ic-flow-c { border-left: 2px solid rgba(168,196,224,0.4); }

  .ic-shared {
    display: flex; align-items: center; flex-wrap: wrap; gap: 5px;
    padding-top: 6px;
    border-top: 1px solid rgba(255,76,11,0.1);
    margin-top: 2px;
  }
  .ic-shared-label {
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-right: 2px;
  }

    /* Project control dashboard */
  .pc-dashboard { display: flex; flex-direction: column; gap: 8px; }
  .pc-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; }
  .pc-kpi {
    border-radius: 4px;
    padding: 6px 5px;
    text-align: center;
    border: 1px solid;
  }
  .pc-kpi-green  { background: rgba(125,212,168,0.08); border-color: rgba(125,212,168,0.2); }
  .pc-kpi-amber  { background: rgba(245,200,66,0.08);  border-color: rgba(245,200,66,0.2); }
  .pc-kpi-orange { background: rgba(255,76,11,0.08);   border-color: rgba(255,76,11,0.2); }
  .pc-kpi-muted  { background: rgba(129,111,102,0.08); border-color: rgba(129,111,102,0.2); }
  .pc-kpi-val {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--white);
  }
  .pc-kpi-green  .pc-kpi-val { color: #7dd4a8; }
  .pc-kpi-amber  .pc-kpi-val { color: #f5c842; }
  .pc-kpi-orange .pc-kpi-val { color: #FFC79A; }
  .pc-kpi-muted  .pc-kpi-val { color: #816F66; }
  .pc-kpi-unit { font-size: 0.65rem; font-weight: 700; }
  .pc-kpi-label {
    font-size: 0.52rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    margin-top: 3px;
    line-height: 1.2;
  }
  .pc-bar-row { display: flex; flex-direction: column; gap: 5px; }
  .pc-bar-item { display: flex; align-items: center; gap: 7px; }
  .pc-bar-label {
    font-size: 0.58rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    width: 60px;
    flex-shrink: 0;
  }
  .pc-bar-track {
    flex: 1;
    height: 5px;
    background: rgba(255,255,255,0.06);
    border-radius: 3px;
    overflow: hidden;
  }
  .pc-bar-fill { height: 100%; border-radius: 3px; }
  .pc-bar-pct { font-size: 0.6rem; font-weight: 700; width: 28px; text-align: right; flex-shrink: 0; }

    /* Tender pipeline */
  .tender-pipeline {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0.3rem 0;
  }
  .tp-step {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    flex-shrink: 0;
  }
  .tp-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    border: 2px solid;
    transition: all 0.2s;
  }
  .tp-label {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .tp-active .tp-dot  { background: #FF4C0B; border-color: #FF4C0B; box-shadow: 0 0 6px rgba(255,76,11,0.5); }
  .tp-active .tp-label { color: #FFC79A; }
  .tp-prog .tp-dot    { background: rgba(245,200,66,0.3); border-color: #f5c842; }
  .tp-prog .tp-label  { color: #f5c842; }
  .tp-pend .tp-dot    { background: transparent; border-color: rgba(129,111,102,0.4); }
  .tp-pend .tp-label  { color: #816F66; }
  .tp-line {
    flex: 1;
    height: 2px;
    margin-bottom: 14px;
    min-width: 8px;
    border-radius: 2px;
  }
  .tp-line-done { background: linear-gradient(90deg, #FF4C0B, #FF4C0B); opacity: 0.6; }
  .tp-line-prog { background: linear-gradient(90deg, #FF4C0B, #f5c842); opacity: 0.5; }
  .tp-line-pend { background: rgba(129,111,102,0.2); }

    /* AI terminal */
  .ai-terminal {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255,76,11,0.2);
    background: #141414;
  }
  .ai-terminal-bar {
    display: flex; align-items: center; gap: 8px;
    padding: 6px 10px;
    background: rgba(255,76,11,0.08);
    border-bottom: 1px solid rgba(255,76,11,0.12);
  }
  .ai-terminal-dots {
    display: flex; gap: 4px;
  }
  .ai-terminal-dots span {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(255,76,11,0.4);
    display: block;
  }
  .ai-terminal-dots span:nth-child(2) { background: rgba(255,199,154,0.4); }
  .ai-terminal-dots span:nth-child(3) { background: rgba(125,212,168,0.4); }
  .ai-terminal-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    flex: 1;
    text-align: center;
  }
  .ai-conversations {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .ai-msg {
    padding: 7px 10px;
    border-radius: 5px;
    font-size: 0.72rem;
    line-height: 1.5;
    max-width: 92%;
  }
  .ai-msg-user {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.07);
    color: var(--muted);
    align-self: flex-end;
    border-radius: 8px 8px 2px 8px;
    font-style: italic;
  }
  .ai-msg-ai {
    background: rgba(255,76,11,0.07);
    border: 1px solid rgba(255,76,11,0.18);
    color: var(--white);
    align-self: flex-start;
    border-radius: 2px 8px 8px 8px;
    display: flex;
    gap: 7px;
    align-items: flex-start;
  }
  .ai-msg-badge {
    font-size: 0.52rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    background: #FF4C0B;
    color: white;
    padding: 0.15rem 0.3rem;
    border-radius: 3px;
    flex-shrink: 0;
    margin-top: 1px;
  }

    /* Integration block */
  .int-block {
    margin-top: 1.2rem;
    padding: 1rem 1rem 0.8rem;
    background: rgba(255,76,11,0.03);
    border: 1px solid rgba(255,76,11,0.1);
    border-radius: 6px;
  }
  .int-header {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 0.9rem;
  }
  .int-header-line {
    flex: 1; height: 1px;
    background: rgba(255,76,11,0.2);
  }
  .int-header-label {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
  }

  .int-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  /* TrioClick hub node */
  .int-hub {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    padding: 8px 16px;
    background: rgba(255,76,11,0.08);
    border: 1px solid rgba(255,76,11,0.35);
    border-radius: 6px;
    width: 100%;
  }
  .int-hub-logo {
    display: flex; align-items: center; gap: 6px;
  }
  .int-hub-dots {
    display: flex; gap: 3px; align-items: center;
  }
  .int-hub-dot {
    width: 4px; height: 4px; border-radius: 50%;
    background: #FF4C0B;
  }
  .int-hub-dot:nth-child(1) { opacity: 0.4; }
  .int-hub-dot:nth-child(2) { opacity: 0.7; }
  .int-hub-name {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--white);
  }
  .int-hub-name span { color: #FF4C0B; }
  .int-hub-sub {
    font-size: 0.58rem;
    color: var(--muted);
    text-align: center;
    letter-spacing: 0.02em;
  }

  /* Arrow column */
  .int-arrow-col {
    display: flex; flex-direction: column; align-items: center; gap: 0;
    padding: 2px 0;
  }
  .int-arrow-line {
    width: 1px; height: 12px;
    background: linear-gradient(180deg, rgba(255,76,11,0.5), rgba(255,76,11,0.2));
  }
  .int-arrow-tip {
    font-size: 0.65rem;
    color: #FF4C0B;
    line-height: 1;
  }
  .int-arrow-label {
    font-size: 0.52rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 2px;
  }

  /* Destination CDEs */
  .int-destinations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    width: 100%;
    margin-top: 2px;
  }
  .int-dest {
    display: flex; align-items: center; gap: 7px;
    padding: 6px 8px;
    border-radius: 4px;
    border: 1px solid;
  }
  .int-dest-dot {
    width: 8px; height: 8px; border-radius: 50%;
    flex-shrink: 0;
  }
  .int-dest-name {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
    line-height: 1.1;
  }
  .int-dest-sub {
    display: block;
    font-size: 0.55rem;
    color: var(--muted);
    line-height: 1.2;
  }
  .int-dest-aconex { border-color: rgba(255,76,11,0.25);   background: rgba(255,76,11,0.05); }
  .int-dest-aconex .int-dest-dot { background: #FF4C0B; }
  .int-dest-acc    { border-color: rgba(255,199,154,0.25); background: rgba(255,199,154,0.05); }
  .int-dest-acc .int-dest-dot    { background: #FFC79A; }
  .int-dest-sp     { border-color: rgba(168,196,224,0.25); background: rgba(168,196,224,0.05); }
  .int-dest-sp .int-dest-dot     { background: #a8c4e0; }
  .int-dest-azure  { border-color: rgba(125,212,168,0.25); background: rgba(125,212,168,0.05); }
  .int-dest-azure .int-dest-dot  { background: #7dd4a8; }
  .int-dest-dot-azure            { border-radius: 3px !important; }

    /* Feature checklist */
  .feature-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 1.1rem;
    border-top: 1px solid rgba(255,76,11,0.1);
  }
  .feature-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,76,11,0.07);
  }
  .feature-checklist li:last-child { border-bottom: none; }
  .fc-icon {
    color: #FF4C0B;
    font-size: 0.65rem;
    margin-top: 3px;
    flex-shrink: 0;
    line-height: 1;
  }
  .fc-title {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.2rem;
    letter-spacing: -0.01em;
  }
  .fc-sub {
    display: block;
    font-size: 0.73rem;
    color: var(--muted);
    line-height: 1.55;
    font-weight: 400;
  }

    /* Feature card mini-diagram */
  .feature-diagram {
    margin-bottom: 1.4rem;
    border-radius: 6px;
    overflow: hidden;
    background: rgba(255,76,11,0.04);
    border: 1px solid rgba(255,76,11,0.1);
    padding: 1rem 1.2rem;
  }
  .feature-pills {
    display: flex; flex-wrap: wrap; gap: 0.4rem;
    margin-top: 1rem;
  }
  .fpill {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.55rem;
    border-radius: 3px;
    border: 1px solid;
    white-space: nowrap;
  }
  .fpill-arch  { color: #FFC79A; border-color: rgba(255,199,154,0.3); background: rgba(255,199,154,0.06); }
  .fpill-str   { color: #a8c4e0; border-color: rgba(168,196,224,0.3); background: rgba(168,196,224,0.06); }
  .fpill-mep   { color: #a8e0c4; border-color: rgba(168,224,196,0.3); background: rgba(168,224,196,0.06); }
  .fpill-civ   { color: #e0c4a8; border-color: rgba(224,196,168,0.3); background: rgba(224,196,168,0.06); }
  .fpill-stage { color: #FF4C0B; border-color: rgba(255,76,11,0.3);   background: rgba(255,76,11,0.06); }
  .fpill-asset { color: #c4bdb5; border-color: rgba(196,189,181,0.3); background: rgba(196,189,181,0.06); }
  .fpill-ok    { color: #7dd4a8; border-color: rgba(125,212,168,0.3); background: rgba(125,212,168,0.06); }
  .fpill-prog  { color: #f5c842; border-color: rgba(245,200,66,0.3);  background: rgba(245,200,66,0.06); }
  .fpill-pend  { color: #816F66; border-color: rgba(129,111,102,0.3); background: rgba(129,111,102,0.06); }

  /* CDE layer diagram */
  .cde-layers {
    display: flex; flex-direction: column; gap: 4px;
  }
  .cde-layer {
    display: flex; align-items: center; gap: 8px;
    padding: 5px 8px;
    border-radius: 4px;
    border-left: 2px solid;
  }
  .cde-layer-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    width: 68px;
    flex-shrink: 0;
  }
  .cde-layer-dots {
    display: flex; gap: 4px; flex-wrap: wrap; flex: 1;
  }
  .cde-dot {
    width: 6px; height: 6px; border-radius: 50%;
    opacity: 0.7;
  }
  .cde-layer-disc  { border-color: #FFC79A; background: rgba(255,199,154,0.05); }
  .cde-layer-asset { border-color: #c4bdb5; background: rgba(196,189,181,0.05); }
  .cde-layer-stage { border-color: #FF4C0B; background: rgba(255,76,11,0.05); }

  /* Design review diagram header & filter chips */
  .dr-header-row {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 2px;
  }
  .dr-header-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
  }
  .dr-header-status {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FFC79A;
    background: rgba(255,76,11,0.1);
    border: 1px solid rgba(255,76,11,0.25);
    padding: 0.1rem 0.45rem;
    border-radius: 3px;
  }
  .dr-filter-row {
    display: flex; align-items: center; gap: 5px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,76,11,0.08);
    flex-wrap: wrap;
  }
  .dr-filter-label {
    font-size: 0.56rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-right: 2px;
  }
  .dr-chip {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
    border: 1px solid rgba(129,111,102,0.3);
    color: var(--muted);
    cursor: default;
  }
  .dr-chip-active {
    background: rgba(255,76,11,0.1);
    border-color: rgba(255,76,11,0.4);
    color: #FFC79A;
  }

    /* Review status matrix */
  .review-matrix {
    display: grid;
    grid-template-columns: auto repeat(3, 1fr);
    gap: 3px;
    font-size: 0.6rem;
  }
  .rm-header {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 3px 4px;
    text-align: center;
  }
  .rm-label {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--muted);
    padding: 4px 4px;
    text-align: right;
    white-space: nowrap;
    align-self: center;
  }
  .rm-cell {
    border-radius: 3px;
    padding: 4px 2px;
    text-align: center;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
  .rm-done  { background: rgba(125,212,168,0.15); color: #7dd4a8; }
  .rm-prog  { background: rgba(245,200,66,0.15);  color: #f5c842; }
  .rm-pend  { background: rgba(129,111,102,0.12); color: #816F66; }

  /* HOW IT WORKS */
  .how-section { background: var(--slate); border-top: 1px solid var(--border); border-bottom: 1px solid rgba(255,76,11,0.12); }

  .how-layout {
    max-width: 960px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 0 2.5rem;
    position: relative;
  }

  /* Left column: the animated vertical line + node dots */
  .how-spine { display: flex; flex-direction: column; align-items: center; position: relative; }

  .how-line-track {
    position: absolute;
    top: 28px; bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: rgba(255,76,11,0.1);
    border-radius: 2px;
  }
  .how-line-fill {
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 0;
    background: linear-gradient(180deg, rgba(255,76,11,0.4) 0%, var(--orange) 40%, var(--orange) 80%, rgba(255,76,11,0.3) 100%);
    border-radius: 2px;
    transition: height 1.6s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 0 8px rgba(255,76,11,0.4);
  }

  .how-node {
    width: 56px; height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(255,76,11,0.2);
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.4rem;
    color: rgba(255,76,11,0.3);
    position: relative; z-index: 2;
    flex-shrink: 0;
    transition: border-color 0.5s ease, color 0.5s ease, box-shadow 0.5s ease, background 0.5s ease;
  }
  .how-node.node-lit {
    border-color: var(--orange);
    color: var(--peach);
    background: rgba(255,76,11,0.06);
    box-shadow: 0 0 24px rgba(255,76,11,0.35), 0 0 48px rgba(255,76,11,0.12);
  }
  .how-node-spacer { flex: 1; }

  /* Right column: step cards */
  .how-cards { display: flex; flex-direction: column; gap: 0; }

  .how-card {
    padding: 2.2rem 0 2.8rem;
    border-bottom: 1px solid rgba(255,76,11,0.07);
    opacity: 0;
    transform: translateX(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .how-card:last-child { border-bottom: none; }
  .how-card.card-visible { opacity: 1; transform: translateX(0); }
  .how-card:nth-child(1) { transition-delay: 0.15s; }
  .how-card:nth-child(2) { transition-delay: 0.6s; }
  .how-card:nth-child(3) { transition-delay: 1.05s; }

  .how-card-step {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--peach);
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  .how-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 0.7rem;
    line-height: 1.1;
  }
  .how-card-desc {
    font-size: 0.9rem;
    color: var(--muted);
    font-weight: 400;
    line-height: 1.75;
    max-width: 600px;
    margin-bottom: 1.2rem;
  }

  /* Module / context chips */
  .how-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
  .how-chip {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.45rem 0.9rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 0.78rem;
    color: var(--muted);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.25s, color 0.25s;
  }
  .how-card.card-visible .how-chip { opacity: 1; transform: translateY(0); }
  .how-card.card-visible .how-chip:nth-child(1) { transition-delay: 0.3s; }
  .how-card.card-visible .how-chip:nth-child(2) { transition-delay: 0.42s; }
  .how-card.card-visible .how-chip:nth-child(3) { transition-delay: 0.54s; }
  .how-card.card-visible .how-chip:nth-child(4) { transition-delay: 0.66s; }
  .how-chip:hover { border-color: rgba(255,76,11,0.5); color: var(--white); background: rgba(255,76,11,0.06); }
  .how-chip-icon { font-size: 1rem; }
  .how-chip-text { display: flex; flex-direction: column; line-height: 1.3; }
  .how-chip-name { font-weight: 500; color: var(--white); font-size: 0.8rem; }
  .how-chip-sub  { font-size: 0.68rem; color: var(--muted); }

  /* Result card */
  .how-result-card {
    margin-top: 1rem;
    padding: 1.2rem 1.5rem;
    background: rgba(255,76,11,0.05);
    border: 1px solid var(--orange);
    border-radius: 6px;
    display: inline-flex; align-items: center; gap: 1.2rem;
    box-shadow: 0 0 24px rgba(255,76,11,0.12);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease 1.5s, transform 0.6s ease 1.5s;
    max-width: 520px;
  }
  .how-card.card-visible .how-result-card { opacity: 1; transform: translateY(0); }
  .how-result-icon { font-size: 1.6rem; }
  .how-result-text {}
  .how-result-label-sm {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--peach);
    margin-bottom: 0.2rem;
  }
  .how-result-title-sm {
    font-size: 0.88rem;
    color: var(--white);
    font-weight: 500;
  }
  .how-result-sub-sm {
    font-size: 0.72rem;
    color: var(--muted);
    margin-top: 0.1rem;
  }

  @media (max-width: 900px) {
    .how-layout { grid-template-columns: 40px 1fr; gap: 0 1.5rem; }
    .how-node { width: 40px; height: 40px; font-size: 1rem; }
  }

    /* TRUST & SECURITY SECTION */
  .trust-section {
    max-width: 1200px;
    margin: 0 auto;
  }
  .trust-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 4rem;
    align-items: start;
  }
  .trust-list { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; }
  .trust-item {
    display: flex; gap: 1.2rem; align-items: flex-start;
    padding: 1.2rem 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: border-color 0.25s, transform 0.25s;
  }
  .trust-item:hover { border-color: rgba(255,76,11,0.4); transform: translateX(4px); }
  .trust-item-icon { color: var(--peach); font-size: 1.2rem; margin-top: 2px; }
  .trust-item-title { font-weight: 700; font-size: 0.9rem; color: var(--white); margin-bottom: 0.3rem; }
  .trust-item-desc { font-size: 0.82rem; color: rgba(246,241,231,0.68); line-height: 1.6; font-weight: 400; }

  /* Compliance card */
  .trust-visual {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
  }
  .trust-visual-header {
    background: rgba(255,76,11,0.06);
    border-bottom: 1px solid rgba(255,76,11,0.12);
    padding: 1rem 1.5rem;
    display: flex; align-items: center; gap: 0.6rem;
  }
  .trust-visual-header-dot { width: 8px; height: 8px; border-radius: 50%; background: #FF4C0B; box-shadow: 0 0 6px rgba(255,76,11,0.5); }
  .trust-visual-title { font-size: 0.78rem; font-weight: 700; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; margin-left: 0.4rem; }
  .trust-visual-body { padding: 1.8rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; }

  /* Cert badges */
  .trust-certs {
    display: flex; gap: 0.8rem; flex-wrap: wrap;
  }
  .trust-cert {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.7rem 1rem;
    border-radius: 5px;
    border: 1px solid;
    flex: 1; min-width: 120px;
  }
  .trust-cert-iso {
    background: rgba(125,212,168,0.06);
    border-color: rgba(125,212,168,0.25);
  }
  .trust-cert-azure {
    background: rgba(168,196,224,0.06);
    border-color: rgba(168,196,224,0.25);
  }
  .trust-cert-icon { font-size: 1.3rem; flex-shrink: 0; }
  .trust-cert-name { font-size: 0.78rem; font-weight: 800; color: var(--white); line-height: 1.2; }
  .trust-cert-sub  { font-size: 0.65rem; color: var(--muted); line-height: 1.3; }

  /* Data rows */
  .trust-data-rows { display: flex; flex-direction: column; gap: 0.6rem; }
  .trust-data-row {
    display: flex; align-items: center; gap: 0.8rem;
    padding: 0.7rem 1rem;
    background: rgba(255,255,255,0.03);
    border-radius: 3px;
    border-left: 2px solid rgba(255,76,11,0.35);
  }
  .trust-data-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #7dd4a8; box-shadow: 0 0 6px rgba(125,212,168,0.4);
    flex-shrink: 0;
  }
  .trust-data-dot.amber { background: var(--peach); box-shadow: 0 0 6px rgba(255,199,154,0.4); }
  .trust-data-dot.blue  { background: #a8c4e0; box-shadow: 0 0 6px rgba(168,196,224,0.4); }
  .trust-data-label { font-size: 0.83rem; color: var(--white); flex: 1; }
  .trust-data-badge {
    font-size: 0.65rem; font-weight: 700;
    padding: 0.15rem 0.55rem; border-radius: 2px;
    letter-spacing: 0.08em; text-transform: uppercase;
  }
  .trust-badge-green  { background: rgba(125,212,168,0.12); color: #7dd4a8; }
  .trust-badge-peach  { background: rgba(255,199,154,0.12); color: var(--peach); }
  .trust-badge-blue   { background: rgba(168,196,224,0.12); color: #a8c4e0; }

  /* PORTFOLIO CONSISTENCY SECTION */
  .portfolio-section { max-width: 1200px; margin: 0 auto; }

  .portfolio-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 4rem;
    align-items: start;
  }

  .portfolio-pillars {
    display: flex; flex-direction: column; gap: 1rem;
  }
  .portfolio-pillar {
    display: flex; align-items: flex-start; gap: 1.1rem;
    padding: 1.1rem 1.4rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: border-color 0.25s, transform 0.2s;
  }
  .portfolio-pillar:hover { border-color: rgba(255,76,11,0.4); transform: translateX(4px); }
  .portfolio-pillar-icon { font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
  .portfolio-pillar-title { font-size: 0.88rem; font-weight: 700; color: var(--white); margin-bottom: 0.25rem; }
  .portfolio-pillar-desc  { font-size: 0.8rem; color: rgba(246,241,231,0.68); line-height: 1.6; font-weight: 400; }

  /* Project switcher */
  .portfolio-switcher {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
  }
  .psw-bar {
    display: flex; align-items: center; gap: 0;
    padding: 8px 14px 6px;
    background: #0e0e0e;
    border-bottom: 1px solid rgba(255,76,11,0.1);
  }
  .psw-dots { display:flex; gap:5px; }
  .psw-dots span { width:8px; height:8px; border-radius:50%; display:block; }
  .psw-dots span:nth-child(1){background:#ff5f57;}
  .psw-dots span:nth-child(2){background:#febc2e;}
  .psw-dots span:nth-child(3){background:#28c840;}
  .psw-title { flex:1; text-align:center; font-size:0.7rem; font-weight:700; color:var(--muted); letter-spacing:0.08em; }

  /* Project tabs */
  .psw-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255,76,11,0.08);
    background: #111;
  }
  .psw-tab {
    flex: 1; padding: 0.6rem 0.5rem;
    font-size: 0.6rem; font-weight: 600;
    color: var(--muted); text-align: center;
    cursor: pointer; border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    line-height: 1.3;
  }
  .psw-tab.psw-active {
    color: var(--white);
    border-bottom-color: var(--orange);
    background: rgba(255,76,11,0.04);
  }
  .psw-tab span { display:block; font-size:0.52rem; color:var(--muted); font-weight:400; margin-top:1px; }

  /* Module nav — same across all projects */
  .psw-modnav {
    display: flex; gap: 2px; padding: 6px 8px;
    background: #0f0f0f;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .psw-modpill {
    font-size: 0.52rem; font-weight: 700; letter-spacing: 0.06em;
    padding: 3px 8px; border-radius: 3px; cursor: pointer;
    transition: background 0.2s, color 0.2s;
    color: var(--muted);
    border: 1px solid transparent;
  }
  .psw-modpill.active {
    background: rgba(255,76,11,0.1);
    color: var(--peach);
    border-color: rgba(255,76,11,0.3);
  }

  /* Filter bar — same structure across all projects */
  .psw-filters {
    display: flex; gap: 6px; padding: 6px 8px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    align-items: center;
  }
  .psw-filter-label { font-size: 0.5rem; color: var(--muted); font-weight: 600; margin-right: 2px; }
  .psw-chip {
    font-size: 0.5rem; font-weight: 600;
    padding: 2px 7px; border-radius: 2px;
    border: 1px solid rgba(255,76,11,0.25);
    color: var(--peach); background: rgba(255,76,11,0.07);
  }
  .psw-chip.inactive {
    border-color: rgba(255,255,255,0.07);
    color: var(--muted); background: transparent;
  }

  /* Document rows — same columns, different data */
  .psw-col-headers {
    display: grid; grid-template-columns: 1fr 52px 62px;
    padding: 4px 8px 3px;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .psw-col-headers span {
    font-size: 0.48rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: rgba(129,111,102,0.6);
  }
  .psw-col-headers span:not(:first-child) { text-align: center; }

  .psw-rows { padding: 2px 0; }
  .psw-row {
    display: grid; grid-template-columns: 1fr 52px 62px;
    padding: 4px 8px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    align-items: center;
  }
  .psw-row:last-child { border-bottom: none; }
  .psw-row-num { font-size: 0.52rem; color: rgba(246,241,231,0.65); font-family: monospace; }
  .psw-rev {
    font-size: 0.48rem; font-weight: 800; text-align: center;
    padding: 2px 4px; border-radius: 2px;
  }
  .psw-rev-c { background: rgba(255,76,11,0.12); color: var(--peach); }
  .psw-rev-b { background: rgba(129,111,102,0.12); color: var(--muted); }
  .psw-status {
    font-size: 0.46rem; font-weight: 700; text-align: center;
    padding: 2px 5px; border-radius: 2px;
  }
  .psw-st-ok   { background: rgba(125,212,168,0.12); color: #7dd4a8; }
  .psw-st-rev  { background: rgba(245,200,66,0.1);   color: #f5c842; }
  .psw-st-pend { background: rgba(129,111,102,0.08); color: var(--muted); }

  .psw-footer {
    display: flex; justify-content: space-between; align-items: center;
    padding: 5px 8px;
    border-top: 1px solid rgba(255,76,11,0.07);
    background: rgba(255,76,11,0.03);
  }
  .psw-footer-count { font-size: 0.55rem; font-weight: 700; color: var(--orange); }
  .psw-footer-meta  { font-size: 0.48rem; color: var(--muted); }

  /* Same interface label */
  .psw-same-label {
    text-align: center;
    margin-top: 1.2rem;
    font-size: 0.72rem; font-weight: 700;
    color: var(--muted); letter-spacing: 0.06em;
  }
  .psw-same-label span { color: var(--peach); }

  @media (max-width: 900px) {
    .portfolio-intro { grid-template-columns: 1fr; gap: 3rem; }
  }

  /* ROI / FINANCIAL SECTION */
  .roi-section { max-width: 1200px; margin: 0 auto; }
  .roi-section { max-width: 1200px; margin: 0 auto; }
  .roi-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    margin-top: 4rem;
  }
  .roi-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 2rem 1.8rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s, transform 0.2s;
  }
  .roi-card:hover { border-color: rgba(255,76,11,0.4); transform: translateY(-3px); }
  .roi-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--orange), transparent);
  }
  .roi-card-icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; }
  .roi-card-title { font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: 0.5rem; letter-spacing: -0.01em; }
  .roi-card-desc { font-size: 0.82rem; color: rgba(246,241,231,0.68); line-height: 1.65; font-weight: 300; }

  /* Comparison table */
  .roi-comparison {
    margin-top: 3rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
  }
  .roi-comp-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    background: rgba(255,76,11,0.06);
    border-bottom: 1px solid rgba(255,76,11,0.12);
    padding: 0;
  }
  .roi-comp-header > div {
    padding: 1rem 1.2rem;
    font-size: 0.72rem; font-weight: 800;
    letter-spacing: 0.1em; text-transform: uppercase;
  }
  .roi-comp-header > div:not(:first-child) {
    text-align: center;
    border-left: 1px solid rgba(255,255,255,0.05);
  }
  .roi-comp-header .col-trio { color: var(--orange); }
  .roi-comp-header .col-aconex { color: var(--muted); }
  .roi-comp-header .col-acc { color: var(--muted); }
  .roi-comp-header .col-sp { color: #a8c4e0; }
  .roi-comp-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background 0.2s;
  }
  .roi-comp-row:last-child { border-bottom: none; }
  .roi-comp-row:hover { background: rgba(255,76,11,0.03); }
  .roi-comp-row > div {
    padding: 0.85rem 1.2rem;
    font-size: 0.82rem;
    display: flex; align-items: center;
  }
  .roi-comp-row > div:not(:first-child) {
    justify-content: center;
    border-left: 1px solid rgba(255,255,255,0.04);
  }
  .roi-feat-label { color: var(--white); font-weight: 500; }
  .roi-feat-label span { display: block; font-size: 0.7rem; color: var(--muted); font-weight: 300; margin-top: 2px; }
  .roi-check-yes { color: #7dd4a8; font-size: 1rem; font-weight: 700; }
  .roi-check-no  { color: rgba(129,111,102,0.4); font-size: 1rem; }
  .roi-check-part { color: var(--amber); font-size: 0.75rem; font-weight: 600; }
  .roi-highlight { background: rgba(255,76,11,0.04); }
  .roi-trio-col { font-weight: 700; }

  /* Cost callout banner */
  .roi-banner {
    margin-top: 2rem;
    padding: 1.6rem 2rem;
    background: rgba(255,76,11,0.05);
    border: 1px solid rgba(255,76,11,0.25);
    border-radius: 6px;
    display: flex; align-items: center; gap: 2rem;
    flex-wrap: wrap;
  }
  .roi-banner-stat {
    display: flex; flex-direction: column; align-items: center;
    flex: 1; min-width: 120px; text-align: center;
    padding: 0 1rem;
    border-right: 1px solid rgba(255,76,11,0.12);
  }
  .roi-banner-stat:last-child { border-right: none; }
  .roi-banner-num {
    font-size: 2.2rem; font-weight: 800; letter-spacing: -0.04em;
    color: var(--orange); line-height: 1;
  }
  .roi-banner-sub { font-size: 0.72rem; color: var(--muted); margin-top: 0.4rem; line-height: 1.4; text-align: center; }

  @media (max-width: 900px) {
    .roi-top { grid-template-columns: 1fr; }
    .roi-comp-header, .roi-comp-row { grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; }
    .roi-banner { flex-direction: column; gap: 1.2rem; }
    .roi-banner-stat { border-right: none; border-bottom: 1px solid rgba(255,76,11,0.12); padding-bottom: 1rem; }
    .roi-banner-stat:last-child { border-bottom: none; }
  }

  /* CTA */
  .cta-section {
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-glow {
    position: absolute;
    width: 800px; height: 500px;
    background: radial-gradient(ellipse, rgba(255,76,11,0.06) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
  }
  .cta-section .section-title { font-size: clamp(3rem, 6vw, 6rem); }
  .cta-section .section-sub { margin: 0 auto 2.5rem; }
  .cta-form {
    display: flex; gap: 0.8rem;
    max-width: 440px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .cta-input {
    flex: 1;
    background: #242424;
    border: 1px solid rgba(255,76,11,0.2);
    color: var(--white);
    padding: 0.75rem 1.2rem;
    border-radius: 3px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
  }
  .cta-input::placeholder { color: var(--muted); }
  .cta-input:focus { border-color: var(--peach); box-shadow: 0 0 0 3px rgba(255,76,11,0.12); }

  /* FOOTER */
  footer {
    border-top: 1px solid var(--border);
    padding: 2.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    line-height: 1;
  }
  .footer-logo .logo-name-row { font-size: 1.2rem; }
  .footer-logo .logo-descriptor { color: rgba(129,111,102,0.7); }
  .footer-copy { font-size: 0.78rem; color: rgba(246,241,231,0.5); }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* SCROLLREVEAL */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  @media (max-width: 900px) {
    nav { padding: 1rem 2rem; }
    .nav-links { display: none; }
    section { padding: 5rem 2rem; }
    .hero { padding: 7rem 2rem 4rem; grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .trio-layout, .tender-layout { grid-template-columns: 1fr; gap: 3rem; }
    .features-grid { grid-template-columns: 1fr; }
    .steps-row { flex-direction: column; gap: 3rem; align-items: center; }
    .how-svg { display: none; }
    .step-connector { display: none; }
    footer { flex-direction: column; gap: 1rem; text-align: center; }
    .hero-modules { gap: 0.7rem; flex-wrap: wrap; }
  }
