﻿:root {
  --amber:     #374151;
  --amber-dk:  #1F2937;
  --steel:     #6B8CAE;
  --steel-lt:  rgba(107,140,174,.15);
  --steel-bdr: rgba(107,140,174,.25);
  --amber-lt:  #F3F4F6;
  --amber-bdr: #D1D5DB;
  --ink:       #111111;
  --dark:      #222222;
  --body:      #555555;
  --muted:     #888888;
  --white:     #FFFFFF;
  --off-white: #FAFAF8;
  --gray-100:  #F3F2EF;
  --gray-200:  #E8E7E3;
  --gray-300:  #D4D3CF;
  --gray-400:  #A8A7A3;
  --r:         8px;
  --rl:        14px;
  --rxl:       20px;
  --sh:        0 2px 12px rgba(0,0,0,.07);
  --sh-md:     0 6px 24px rgba(0,0,0,.1);
  --sh-lg:     0 16px 48px rgba(0,0,0,.14);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  padding: 18px 0;
  background: transparent;
  transition: background .3s ease, box-shadow .3s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--gray-200), 0 6px 24px rgba(0,0,0,.07);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav-logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.nav-shield { width: 34px; height: 34px; }
.nav-wordmark { font-size: 17px; font-weight: 800; letter-spacing: .03em; color: var(--ink); line-height: 1; }
.nav-wordmark em { font-style: normal; font-weight: 400; letter-spacing: .06em; color: var(--gray-400); }
.nav-sep { width: 1px; height: 22px; background: var(--gray-200); margin: 0 8px; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 8px 16px; font-size: 14px; font-weight: 500; color: var(--dark);
  border-radius: var(--r); transition: color .15s, background .15s;
  white-space: nowrap; cursor: pointer; user-select: none;
}
.nav-link:hover, .nav-item:hover > .nav-link { color: var(--amber); background: var(--amber-lt); }
.chev { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s; }
.nav-item:hover .chev { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(4px);
  padding-top: 8px;
  background: transparent;
  opacity: 0; visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  pointer-events: none; z-index: 400; min-width: 200px;
}
.nav-dropdown-inner {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--rl); box-shadow: var(--sh-lg);
  overflow: hidden;
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.nav-dropdown-list { padding: 8px; }
.nav-dropdown-item { display: block; padding: 9px 12px; font-size: 13.5px; font-weight: 500; color: var(--dark); border-radius: var(--r); transition: color .15s, background .15s; }
.nav-dropdown-item:hover { color: var(--amber); background: var(--amber-lt); }
.nav-dropdown.wide { width: 520px; left: -80px; transform: translateY(4px); padding-top: 8px; }
.nav-item:hover .nav-dropdown.wide { transform: translateY(0); }
.nav-dropdown-wide-inner { display: grid; grid-template-columns: 1fr 1fr; }
.nav-dropdown-col { padding: 16px 8px; }
.nav-dropdown-col:first-child { border-right: 1px solid var(--gray-100); }
.nav-dropdown-col-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-400); padding: 0 12px 8px; }
.nav-dropdown-featured { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.nav-dropdown-featured-title { font-size: 13px; font-weight: 700; color: var(--ink); }
.nav-dropdown-featured-desc { font-size: 12.5px; color: var(--body); line-height: 1.5; }
.nav-dropdown-featured-link { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 600; color: var(--amber); transition: gap .15s; }
.nav-dropdown-featured-link:hover { gap: 8px; }
.nav-dropdown-featured-link svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.nav-suite-list { padding: 8px; }
.nav-suite-item { display: flex; flex-direction: column; gap: 2px; padding: 10px 14px; border-radius: var(--r); text-decoration: none; transition: background .15s; }
.nav-suite-item:hover { background: var(--amber-lt); }
.nav-suite-name { font-size: 14px; font-weight: 700; color: var(--ink); transition: color .15s; }
.nav-suite-item:hover .nav-suite-name { color: var(--amber); }
.nav-suite-cat { font-size: 11.5px; color: var(--muted); font-weight: 500; }
.nav-suite-divider { height: 1px; background: var(--gray-100); margin: 6px 8px; }

.nav-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.nav-demo {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; font-size: 14px; font-weight: 700;
  color: var(--white); background: var(--amber); border-radius: var(--rl);
  transition: background .15s, transform .12s, box-shadow .15s;
  box-shadow: 0 2px 8px rgba(55,65,81,.2);
}
.nav-demo:hover { background: var(--amber-dk); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(55,65,81,.3); }
.nav-demo svg { width: 14px; height: 14px; stroke: white; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }
.nav-mobile-cta-item { display: none; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
}

/* Top-to-bottom fade: solid white → transparent */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    #ffffff           0%,
    rgba(255,255,255,.98) 16%,
    rgba(255,255,255,.88) 32%,
    rgba(255,255,255,.55) 52%,
    rgba(255,255,255,.14) 70%,
    rgba(255,255,255,0)   85%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  width: 100%;
  padding: 140px 32px 380px;
}

/* Floating dashboard peek at bottom of hero */
.hero-product {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  justify-content: center;
  padding: 0 40px;
  z-index: 3;
}
.hero-product-frame {
  width: 100%;
  max-width: 1060px;
  height: 320px;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0,0,0,.08),
    0 -8px 32px rgba(0,0,0,.1),
    0 24px 64px rgba(0,0,0,.2);
}
.hero-product-frame img { display: block; width: 100%; height: auto; }

/* Centered eyebrow with lines on both sides */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 28px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--amber); border-radius: 2px;
  flex-shrink: 0;
}

.hero-hl {
  font-size: clamp(52px, 6.5vw, 88px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -3.5px;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero-hl .accent { color: var(--amber); }

.hero-sub {
  font-size: 18px;
  line-height: 1.72;
  color: var(--body);
  max-width: 560px;
  margin: 0 auto 44px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-dark {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 28px; font-size: 15px; font-weight: 700;
  color: var(--white); background: var(--amber); border-radius: var(--rl);
  transition: background .15s, transform .12s, box-shadow .15s;
  box-shadow: 0 2px 8px rgba(55,65,81,.2);
}
.btn-dark:hover { background: var(--amber-dk); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(55,65,81,.3); }
.btn-dark svg { width: 15px; height: 15px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn-play-wrap { display: inline-flex; align-items: center; gap: 12px; color: var(--dark); font-size: 15px; font-weight: 500; transition: color .15s; }
.btn-play-wrap:hover { color: var(--amber); }
.btn-play-wrap:hover .play-icon { border-color: var(--amber); background: var(--amber-lt); }
.play-icon { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--gray-300); display: flex; align-items: center; justify-content: center; transition: border-color .15s, background .15s; flex-shrink: 0; }
.play-icon svg { width: 12px; height: 12px; fill: var(--amber); margin-left: 2px; }

/* ── CAPABILITIES STRIP ── */
.caps-strip {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 0;
}
.caps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.cap-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 32px 36px;
  border-right: 1px solid var(--gray-200);
  transition: background .2s;
}
.cap-item:last-child { border-right: none; }
.cap-item:hover { background: var(--off-white); }
.cap-dot {
  width: 8px; height: 8px; border-radius: 50%;
  flex-shrink: 0; margin-top: 5px;
}
.cap-body {}
.cap-name { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.cap-desc { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ── LOGO STRIP ── */

/* ── STATS BAR ── */
.stats-bar { background: var(--ink); padding: 56px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { padding: 0 40px; border-right: 1px solid rgba(255,255,255,.1); text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: clamp(38px, 3.6vw, 54px); font-weight: 900; color: var(--white); letter-spacing: -2px; line-height: 1; margin-bottom: 10px; }
.stat-num span { color: var(--white); }
.stat-label { font-size: 14px; color: rgba(255,255,255,.65); font-weight: 500; line-height: 1.4; }

.platform-eyebrow { font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--amber); margin-bottom: 14px; }
.platform-hl { font-size: clamp(28px,3vw,42px); font-weight: 900; letter-spacing: -1.2px; color: var(--ink); line-height: 1.1; }
@keyframes panelIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

/* ── PLATFORM DEEP ── */
.platform-deep { padding: 96px 0; background: var(--off-white); border-top: 1px solid var(--gray-200); }
.platform-deep-header { margin-bottom: 56px; }
.platform-deep-grid { display: grid; grid-template-columns: 420px 1fr; gap: 48px; align-items: start; }
.pdeep-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; position: sticky; top: 108px; }
.pdeep-tab {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border-radius: var(--rl); cursor: pointer;
  transition: background .15s, border-color .15s;
  border: 1.5px solid transparent; text-align: left;
}
.pdeep-tab:hover:not(.active) { background: var(--gray-100); }
.pdeep-tab.active { background: var(--white); border-color: var(--gray-200); box-shadow: var(--sh); }
.pdeep-tab-icon {
  width: 34px; height: 34px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gray-100); flex-shrink: 0; transition: background .15s;
}
.pdeep-tab.active .pdeep-tab-icon { background: var(--amber-lt); }
.pdeep-tab-icon svg { width: 15px; height: 15px; stroke: var(--muted); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.pdeep-tab.active .pdeep-tab-icon svg { stroke: var(--amber); }
.pdeep-tab-text {}
.pdeep-tab-name { font-size: 12.5px; font-weight: 700; color: var(--dark); line-height: 1.2; }
.pdeep-tab.active .pdeep-tab-name { color: var(--amber); }
.pdeep-tab-line { display: none; }

.pdeep-panel { display: none; }
.pdeep-panel.active { display: block; animation: panelIn .22s ease; }
.pdeep-module-label { font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--amber); margin-bottom: 12px; }
.pdeep-module-hl { font-size: clamp(24px, 2.6vw, 34px); font-weight: 900; letter-spacing: -1px; color: var(--ink); line-height: 1.12; margin-bottom: 16px; }
.pdeep-module-desc { font-size: 16px; color: var(--body); line-height: 1.72; max-width: 580px; margin-bottom: 28px; }
.pdeep-bullets { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 40px; margin-bottom: 36px; }
.pdeep-bullet { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--dark); font-weight: 500; line-height: 1.4; }
.pdeep-bullet-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); flex-shrink: 0; margin-top: 5px; }
.pdeep-screenshot { border-radius: var(--rxl); overflow: hidden; border: 1px solid var(--gray-200); box-shadow: var(--sh-lg); }
.pdeep-screenshot svg { display: block; width: 100%; }

/* Mobile chips + carousel nav - hidden on desktop */
.pdeep-chips-wrap { display: none; }
.pdeep-carousel-nav { display: none; }
.pdeep-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--gray-200); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .15s, border-color .15s;
}
.pdeep-arrow:hover { background: var(--gray-100); border-color: var(--gray-300); }
.pdeep-arrow svg { width: 16px; height: 16px; stroke: var(--dark); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.pdeep-counter { font-size: 13px; font-weight: 600; color: var(--muted); min-width: 40px; text-align: center; }

@media(max-width:860px){
  .platform-deep { padding: 56px 0 48px; }
  .platform-deep-header { margin-bottom: 28px; }
  .platform-deep-grid { display: block; }
  .pdeep-tabs { display: none; }

  /* Sticky chip bar - bleeds full-width, chips stay aligned with content */
  .pdeep-chips-wrap {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 14px 32px;
    margin: 0 -32px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: sticky;
    top: 68px;
    background: var(--off-white);
    z-index: 20;
    border-bottom: 1px solid var(--gray-200);
  }
  .pdeep-chips-wrap::-webkit-scrollbar { display: none; }
  .pdeep-chip {
    flex: 0 0 auto;
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 13px; font-weight: 600;
    border: 1.5px solid var(--gray-200);
    background: var(--white);
    color: var(--muted);
    cursor: pointer;
    white-space: nowrap;
    transition: background .15s, border-color .15s, color .15s;
  }
  .pdeep-chip.active {
    background: var(--amber);
    border-color: var(--amber);
    color: var(--white);
  }

  /* One panel at a time - chips and arrows control which is shown */
  .pdeep-panel { display: none; }
  .pdeep-panel.active { display: block; animation: none; }
  .pdeep-content { padding-top: 32px; }

  /* Prev / next carousel nav */
  .pdeep-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
  }

  .pdeep-module-hl { font-size: 22px; letter-spacing: -.5px; }
  .pdeep-module-desc { font-size: 15px; }
  .pdeep-bullets { grid-template-columns: 1fr; gap: 8px; margin-bottom: 24px; }
  .pdeep-screenshot { margin-top: 8px; }
}
@media(max-width:600px){ .pdeep-bullets { grid-template-columns: 1fr; } }

/* ── AI CAPABILITIES ── */
.ai-section { background: var(--ink); padding: 88px 0; }
.ai-header { margin-bottom: 60px; }
.ai-eyebrow { font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 14px; }
.ai-hl { font-size: clamp(28px,3vw,40px); font-weight: 900; letter-spacing: -1.2px; color: var(--white); line-height: 1.1; margin-bottom: 16px; }
.ai-intro { font-size: 16px; color: rgba(255,255,255,.65); line-height: 1.7; max-width: 600px; }
.ai-tools { margin-bottom: 48px; }
.ai-tool { display: grid; grid-template-columns: 260px 1fr; gap: 64px; align-items: start; padding: 48px 0; }
.ai-tool + .ai-tool { border-top: 1px solid rgba(255,255,255,.08); }
.ai-tool-name { font-size: 20px; font-weight: 800; color: var(--white); letter-spacing: -.4px; line-height: 1.2; margin-bottom: 8px; }
.ai-tool-tag { font-size: 13px; color: rgba(255,255,255,.55); font-weight: 500; line-height: 1.5; }
.ai-tool-desc { font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: 24px; }
.ai-tool-bullets { display: flex; flex-direction: column; gap: 10px; }
.ai-tool-bullet { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,.8); font-weight: 500; line-height: 1.4; }
.ai-tool-bullet-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.4); flex-shrink: 0; margin-top: 5px; }
.ai-footer { border-top: 1px solid rgba(255,255,255,.1); padding-top: 36px; }
.ai-footer-text { font-size: 16px; color: rgba(255,255,255,.65); line-height: 1.65; max-width: 680px; }
.ai-footer-text strong { color: var(--white); font-weight: 700; }
@media(max-width:860px){ .ai-tool { grid-template-columns: 1fr; gap: 24px; } }

/* ── AI AGENTS ── */
.agents-section { background: var(--white); border-top: 1px solid var(--gray-200); padding: 88px 0; }
.agents-header { margin-bottom: 60px; max-width: 700px; }
.agents-eyebrow { font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--amber); margin-bottom: 14px; }
.agents-hl { font-size: clamp(28px,3vw,40px); font-weight: 900; letter-spacing: -1.2px; color: var(--ink); line-height: 1.1; margin-bottom: 16px; }
.agents-intro { font-size: 16px; color: var(--body); line-height: 1.7; }
.agents-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-bottom: 24px; }
.agents-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--rxl); padding: 32px; transition: border-color .2s, box-shadow .2s; }
.agents-card:hover { border-color: var(--gray-300); box-shadow: var(--sh-md); }
.agents-card-cat { font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--amber); margin-bottom: 10px; }
.agents-card-name { font-size: 18px; font-weight: 800; color: var(--ink); letter-spacing: -.4px; line-height: 1.2; margin-bottom: 5px; }
.agents-card-trigger { font-size: 13px; font-weight: 500; color: var(--muted); margin-bottom: 12px; }
.agents-card-desc { font-size: 14px; color: var(--body); line-height: 1.65; margin-bottom: 24px; }
.agents-steps { display: flex; flex-direction: column; }
.agents-step { display: flex; gap: 12px; align-items: flex-start; padding-bottom: 14px; position: relative; }
.agents-step:last-child { padding-bottom: 0; }
.agents-step-num { width: 20px; height: 20px; border-radius: 50%; background: var(--gray-100); border: 1px solid var(--gray-300); font-size: 9.5px; font-weight: 700; color: var(--amber); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; position: relative; z-index: 1; }
.agents-step-connector { position: absolute; left: 9px; top: 22px; bottom: 0; width: 1px; background: var(--gray-200); }
.agents-step:last-child .agents-step-connector { display: none; }
.agents-step-text { font-size: 13px; color: var(--dark); line-height: 1.5; font-weight: 500; }
.agents-callout { border-radius: var(--rxl); padding: 36px 40px; background: var(--ink); display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; margin-top: 16px; }
.agents-callout-text { font-size: 18px; color: rgba(255,255,255,.85); line-height: 1.55; font-weight: 500; }
.agents-callout-text strong { color: var(--white); font-weight: 800; }
.agents-callout-note { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.6; max-width: 240px; text-align: right; }
@media(max-width:860px) {
  .agents-grid { grid-template-columns: 1fr; }
  .agents-callout { grid-template-columns: 1fr; gap: 16px; }
  .agents-callout-note { text-align: left; max-width: none; }
}

/* ── DEPLOYMENT ── */
.deploy { background: var(--off-white); border-top: 1px solid var(--gray-200); padding: 88px 0; }
.deploy-header { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; margin-bottom: 52px; }
.deploy-eyebrow { font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--amber); margin-bottom: 14px; }
.deploy-hl { font-size: clamp(28px,3vw,40px); font-weight: 900; letter-spacing: -1.2px; color: var(--ink); line-height: 1.1; }
.deploy-sub { font-size: 16px; color: var(--body); line-height: 1.7; }
.deploy-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.deploy-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--rxl); padding: 36px 32px; transition: border-color .2s, box-shadow .2s; }
.deploy-card:hover { border-color: var(--gray-300); box-shadow: var(--sh-md); }
.deploy-card-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--gray-100); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.deploy-card-icon svg { width: 22px; height: 22px; stroke: var(--amber); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.deploy-card-tag { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--amber); margin-bottom: 8px; }
.deploy-card-name { font-size: 18px; font-weight: 800; color: var(--ink); letter-spacing: -.4px; line-height: 1.2; margin-bottom: 10px; }
.deploy-card-desc { font-size: 14px; color: var(--body); line-height: 1.7; margin-bottom: 20px; }
.deploy-bullets { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.deploy-bullet { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: var(--dark); font-weight: 500; line-height: 1.4; }
.deploy-bullet-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--amber); flex-shrink: 0; margin-top: 5px; }
.deploy-best { font-size: 13.5px; color: var(--muted); border-top: 1px solid var(--gray-100); padding-top: 16px; line-height: 1.55; }
.deploy-best strong { color: var(--dark); font-weight: 600; }
.deploy-footer { margin-top: 32px; text-align: center; font-size: 14px; color: var(--muted); }
.deploy-security { margin-top: 48px; border-top: 1px solid var(--gray-200); padding-top: 40px; }
.deploy-security-label { font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--amber); margin-bottom: 24px; }
.deploy-security-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.deploy-security-item { display: flex; align-items: flex-start; gap: 14px; }
.deploy-security-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--gray-100); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.deploy-security-icon svg { width: 18px; height: 18px; stroke: var(--amber); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.deploy-security-name { font-size: 13.5px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.deploy-security-desc { font-size: 13px; color: var(--muted); line-height: 1.55; }
@media(max-width:1024px){ .deploy-header { grid-template-columns: 1fr; gap: 20px; } .deploy-security-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:860px){ .deploy-cards { grid-template-columns: 1fr; } }
@media(max-width:480px){ .deploy-security-grid { grid-template-columns: 1fr; } }

/* ── WHY ── */
.why { background: var(--white); border-top: 1px solid var(--gray-200); padding: 88px 0; }
.why-header { margin-bottom: 56px; }
.why-eyebrow { font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--amber); margin-bottom: 14px; }
.why-hl { font-size: clamp(28px,3vw,40px); font-weight: 900; line-height: 1.1; letter-spacing: -1.2px; color: var(--ink); }
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--gray-200); border-radius: var(--rxl); overflow: hidden; }
.why-item { background: var(--white); padding: 40px 36px; transition: background .2s; }
.why-item:hover { background: var(--amber-lt); }
.why-num { display: flex; align-items: center; gap: 8px; font-size: 10.5px; font-weight: 700; letter-spacing: .08em; color: var(--amber); margin-bottom: 16px; }
.why-num-line { width: 22px; height: 1.5px; background: var(--amber); border-radius: 2px; }
.why-title { font-size: 18px; font-weight: 800; color: var(--ink); margin-bottom: 10px; line-height: 1.2; letter-spacing: -.4px; }
.why-desc { font-size: 14px; color: var(--body); line-height: 1.75; }

/* ── ECOSYSTEM ── */
.ecosystem { background: var(--off-white); border-top: 1px solid var(--gray-200); padding: 88px 0; }
.ecosystem-header { max-width: 600px; margin-bottom: 52px; }
.ecosystem-eyebrow { font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--amber); margin-bottom: 14px; }
.ecosystem-hl { font-size: clamp(28px,3vw,40px); font-weight: 900; letter-spacing: -1.2px; color: var(--ink); line-height: 1.1; margin-bottom: 16px; }
.ecosystem-sub { font-size: 16px; color: var(--body); line-height: 1.7; }
.ecosystem-layout { display: flex; flex-direction: column; gap: 16px; }
.ecosystem-card { border-radius: var(--rxl); padding: 36px 32px; }
.ecosystem-card-flagship { background: var(--white); border: 2px solid var(--amber); box-shadow: 0 4px 24px rgba(0,0,0,.07); display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.ecosystem-featured-left { display: flex; flex-direction: column; }
.ecosystem-featured-right { display: flex; flex-direction: column; justify-content: center; }
.ecosystem-featured-bullets { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 32px; }
.ecosystem-companions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: start; }
.ecosystem-card-companion { background: var(--white); border: 1.5px solid var(--gray-200); transition: border-color .2s, box-shadow .2s; }
.ecosystem-card-companion:hover { border-color: var(--gray-300); box-shadow: var(--sh-md); }
.ecosystem-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; padding: 5px 10px; border-radius: 100px; margin-bottom: 20px; }
.ecosystem-badge-flagship { background: var(--amber); color: var(--white); }
.ecosystem-badge-integrated { background: var(--gray-100); color: var(--amber); }
.ecosystem-badge svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ecosystem-product { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; }
.ecosystem-product-flagship { color: var(--muted); }
.ecosystem-product-companion { color: var(--muted); }
.ecosystem-name { font-size: 24px; font-weight: 900; letter-spacing: -.5px; line-height: 1.1; margin-bottom: 12px; }
.ecosystem-name-flagship { color: var(--ink); font-size: 32px; }
.ecosystem-name-companion { color: var(--ink); }
.ecosystem-desc { font-size: 14px; line-height: 1.72; margin-bottom: 24px; }
.ecosystem-desc-flagship { color: var(--body); }
.ecosystem-desc-companion { color: var(--body); }
.ecosystem-bullets { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.ecosystem-bullet { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; font-weight: 500; line-height: 1.4; }
.ecosystem-bullet-flagship { color: var(--dark); }
.ecosystem-bullet-companion { color: var(--dark); }
.ecosystem-bullet-dot-flagship { width: 5px; height: 5px; border-radius: 50%; background: var(--amber); flex-shrink: 0; margin-top: 5px; }
.ecosystem-bullet-dot-companion { width: 5px; height: 5px; border-radius: 50%; background: var(--amber); flex-shrink: 0; margin-top: 5px; }
.ecosystem-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 600; border-top: 1px solid; padding-top: 20px; transition: gap .15s; }
.ecosystem-link-flagship { color: var(--amber); border-color: var(--gray-200); }
.ecosystem-link-flagship:hover { color: var(--ink); gap: 10px; }
.ecosystem-link-companion { color: var(--amber); border-color: var(--gray-200); }
.ecosystem-link-companion:hover { gap: 10px; }
.ecosystem-link svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@media(max-width:1024px){ .ecosystem-card-flagship { grid-template-columns: 1fr; gap: 28px; } .ecosystem-featured-bullets { grid-template-columns: 1fr; } }
@media(max-width:860px){ .ecosystem-companions { grid-template-columns: 1fr; } }

/* ── FAQ ── */
.faq { background: var(--off-white); border-top: 1px solid var(--gray-200); padding: 88px 0; }
.faq-layout { display: grid; grid-template-columns: 1fr 1.8fr; gap: 80px; align-items: start; }
.faq-header { position: sticky; top: 120px; }
.faq-eyebrow { font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--amber); margin-bottom: 14px; }
.faq-hl { font-size: clamp(24px,2.5vw,36px); font-weight: 900; letter-spacing: -1.2px; color: var(--ink); line-height: 1.1; }
.faq-list { }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item:first-child { border-top: 1px solid var(--gray-200); }
.faq-q {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 24px; padding: 22px 0; cursor: pointer; list-style: none;
  user-select: none;
}
.faq-q-text { font-size: 15.5px; font-weight: 700; color: var(--ink); line-height: 1.4; transition: color .15s; }
.faq-item.open .faq-q-text { color: var(--amber); }
.faq-icon {
  width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid var(--gray-300);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px; transition: transform .2s, border-color .2s, background .2s;
}
.faq-icon svg { width: 10px; height: 10px; stroke: var(--muted); fill: none; stroke-width: 2.5; stroke-linecap: round; transition: stroke .15s; }
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--amber); background: var(--amber-lt); }
.faq-item.open .faq-icon svg { stroke: var(--amber); }
.faq-a { font-size: 15px; color: var(--body); line-height: 1.8; padding-bottom: 22px; display: none; max-width: 680px; }
.faq-item.open .faq-a { display: block; }
@media(max-width:860px){ .faq-layout { grid-template-columns: 1fr; gap: 40px; } .faq-header { position: static; } }

/* ── CTA BANNER ── */
.cta-banner { background: var(--ink); padding: 88px 0; }
.cta-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.cta-banner-eyebrow { font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 16px; }
.cta-banner h2 { font-size: clamp(26px,2.8vw,40px); font-weight: 900; color: var(--white); letter-spacing: -1px; line-height: 1.1; margin-bottom: 16px; }
.cta-banner p { font-size: 16px; color: rgba(255,255,255,.65); margin-bottom: 36px; line-height: 1.7; }
.cta-contact-info { display: flex; flex-direction: column; gap: 14px; }
.cta-contact-info a { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.65); text-decoration: none; transition: color .15s; }
.cta-contact-info a:hover { color: var(--white); }
.cta-contact-info svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.cta-form { display: flex; flex-direction: column; gap: 14px; }
.cta-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cta-form-group { display: flex; flex-direction: column; gap: 7px; }
.cta-form-group label { font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,.65); }
.cta-optional { font-size: 12px; font-weight: 400; color: rgba(255,255,255,.35); margin-left: 6px; }
.cta-input { width: 100%; padding: 11px 14px; font-size: 14px; font-family: inherit; color: var(--white); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r); outline: none; transition: border-color .15s, background .15s; box-sizing: border-box; }
.cta-input::placeholder { color: rgba(255,255,255,.28); }
.cta-input:focus { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.35); }
.cta-select { appearance: none; cursor: pointer; }
.cta-select option { background: var(--dark); color: var(--white); }
.cta-textarea { min-height: 100px; resize: vertical; line-height: 1.6; }
.cta-submit { display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 14px 28px; font-size: 15px; font-weight: 700; font-family: inherit; color: var(--white); background: var(--amber); border: none; border-radius: var(--rl); cursor: pointer; transition: background .15s, transform .12s; box-shadow: 0 4px 16px rgba(55,65,81,.3); margin-top: 4px; }
.cta-submit:hover { background: var(--amber-dk); transform: translateY(-1px); }
.cta-submit svg { width: 15px; height: 15px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.cta-privacy { font-size: 12px; color: rgba(255,255,255,.35); line-height: 1.6; margin-top: 4px; }
.cta-privacy a { color: rgba(255,255,255,.5); text-decoration: underline; text-underline-offset: 3px; }
.btn-amber { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; font-size: 15px; font-weight: 700; color: var(--white); background: var(--amber); border-radius: var(--rl); box-shadow: 0 4px 16px rgba(55,65,81,.25); transition: background .15s, transform .12s; }
.btn-amber:hover { background: var(--amber-dk); transform: translateY(-2px); }
.btn-amber svg { width: 15px; height: 15px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn-ghost-white { padding: 13px 24px; font-size: 15px; font-weight: 600; color: rgba(255,255,255,.75); border: 1.5px solid rgba(255,255,255,.2); border-radius: var(--rl); transition: border-color .15s, color .15s; }
.btn-ghost-white:hover { border-color: rgba(255,255,255,.5); color: var(--white); }
@media(max-width:860px){ .cta-layout { grid-template-columns: 1fr; gap: 48px; } .cta-form-row { grid-template-columns: 1fr; } }

/* ── FOOTER ── */
.site-footer { background: #0C0C10; padding: 72px 0 0; }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; padding-bottom: 64px; }
.footer-brand { max-width: 300px; }
.footer-cols-right { display: flex; gap: 64px; align-items: flex-start; }
.footer-logo { font-size: 24px; font-weight: 900; color: var(--white); letter-spacing: -.5px; margin-bottom: 16px; line-height: 1; }
.footer-dot { color: var(--amber); }
.footer-desc { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.72; margin-bottom: 28px; max-width: 320px; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a { font-size: 14px; color: rgba(255,255,255,.65); text-decoration: none; transition: color .15s; }
.footer-contact a:hover { color: var(--white); }
.footer-col-label { font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.65); text-decoration: none; transition: color .15s; }
.footer-links a:hover { color: var(--white); }
.footer-office { margin-bottom: 24px; }
.footer-office:last-child { margin-bottom: 0; }
.footer-office strong { display: block; font-size: 13.5px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.footer-office p { font-size: 13.5px; color: rgba(255,255,255,.65); line-height: 1.65; margin: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 22px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-copy { font-size: 12.5px; color: rgba(255,255,255,.45); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12.5px; color: rgba(255,255,255,.65); text-decoration: none; transition: color .15s; }
.footer-legal a:hover { color: var(--white); }
@media(max-width:860px){
  .footer-grid { flex-direction: column; gap: 40px; }
  .footer-brand { max-width: 100%; }
  .footer-cols-right { gap: 40px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ── PRIVACY POLICY ── */
.policy-hero { background: var(--amber-dk); padding: 148px 0 64px; }
.policy-hero-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--steel); margin-bottom: 16px; }
.policy-hero-title { font-size: clamp(32px, 5vw, 52px); font-weight: 800; color: var(--white); letter-spacing: -.02em; line-height: 1.1; margin-bottom: 16px; }
.policy-hero-meta { font-size: 14px; color: var(--gray-400); }
.policy-body { background: var(--white); padding: 80px 0 120px; }
.policy-grid { display: grid; grid-template-columns: 220px 1fr; gap: 64px; align-items: start; }
.policy-toc { position: sticky; top: 108px; }
.policy-toc-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 12px; }
.policy-toc a { display: block; font-size: 13.5px; font-weight: 500; color: var(--body); padding: 6px 12px; border-left: 2px solid var(--gray-200); transition: color .15s, border-color .15s; }
.policy-toc a:hover { color: var(--amber); border-color: var(--amber); }
.policy-content { max-width: 720px; }
.policy-section { margin-bottom: 52px; scroll-margin-top: 108px; }
.policy-section h2 { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--steel); margin-bottom: 20px; }
.policy-section p { font-size: 15px; color: var(--body); line-height: 1.8; margin-bottom: 14px; }
.policy-section ul, .policy-section ol { margin: 0 0 14px 0; padding-left: 22px; }
.policy-section li { font-size: 15px; color: var(--body); line-height: 1.8; margin-bottom: 6px; }
.policy-section strong { font-weight: 600; color: var(--ink); }
.policy-section a { color: var(--amber); text-decoration: underline; }
.policy-table { width: 100%; border-collapse: collapse; margin-bottom: 16px; font-size: 14px; }
.policy-table th { text-align: left; font-weight: 700; color: var(--ink); padding: 10px 14px; background: var(--gray-100); border: 1px solid var(--gray-200); }
.policy-table td { padding: 10px 14px; color: var(--body); border: 1px solid var(--gray-200); vertical-align: top; line-height: 1.6; }
.privacy-policy-page .nav { background: rgba(255,255,255,.97) !important; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--gray-200), 0 6px 24px rgba(0,0,0,.07); }
.privacy-policy-page .nav-wordmark, .privacy-policy-page .nav-link, .privacy-policy-page .nav-suite-name { color: var(--ink) !important; }
@media (max-width: 860px) {
  .policy-grid { grid-template-columns: 1fr; gap: 40px; }
  .policy-toc { position: static; }
}

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  .caps-grid { grid-template-columns: repeat(2,1fr); }
  .cap-item:nth-child(2) { border-right: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item { padding: 24px 32px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.1); }
  .stat-item:last-child { border-bottom: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why-item { border-bottom: 1px solid var(--gray-200); border-right: none; }
  .platform-deep-grid { grid-template-columns: 340px 1fr; gap: 36px; }
}
@media(max-width:860px){
  .hero-product { display: none; }
  .hero-content { padding: 140px 32px 72px; }
}
@media(max-width:720px){
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--gray-200);
    padding: 12px 0 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
  }
  .nav.open .nav-item { width: 100%; }
  .nav.open .nav-link {
    display: block;
    padding: 11px 24px;
    color: var(--ink);
    font-size: 15px;
    font-weight: 600;
  }
  .nav.open .nav-dropdown { display: none !important; }
  .nav.open .nav-actions { display: none; }
  .nav.open .nav-sep { display: none; }
  .nav.open .chev { display: none; }
  .nav.open .nav-link[data-href] { cursor: pointer; }
  .nav.open .nav-mobile-cta-item { display: block; padding: 12px 24px 0; }
  .nav-mobile-cta-link {
    display: block; text-align: center;
    padding: 11px 20px; border-radius: 8px;
    background: var(--amber); color: #fff !important;
    font-size: 14px; font-weight: 700; letter-spacing: .02em;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-toggle span { transition: transform .2s ease, opacity .2s ease; }
  .hero-hl { letter-spacing: -2px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .caps-grid { grid-template-columns: 1fr; }
  .cap-item { border-right: none; border-bottom: 1px solid var(--gray-200); }
}
@media(max-width:480px){
}