/* ============================================================
   AMATEC — Design Tokens  (reconstructed colors_and_type.css)
   Brand: #034B87 blue · #F4921E orange · Sora + IBM Plex
   ============================================================ */
:root {
  /* ---- Blue scale ---- */
  --blue-50:  #ECF5FF;
  --blue-100: #D2E7FB;
  --blue-200: #A9CEEF;
  --blue-300: #7FB2E0;
  --blue-500: #2A77B5;
  --blue-600: #034B87;   /* AMATEC primary */
  --blue-700: #023A6B;
  --blue-950: #0A2C49;   /* hero / footer anchor */

  /* ---- Orange scale ---- */
  --orange-50:  #FEF3E6;
  --orange-400: #FBB04C;
  --orange-500: #F4921E;  /* AMATEC accent */
  --orange-600: #D97D12;
  --orange-700: #B5640A;

  /* ---- Slate / neutral ---- */
  --slate-50:  #F8FAFC;
  --slate-100: #F1F5F9;
  --slate-150: #E9EEF3;
  --slate-300: #CBD5E1;
  --slate-400: #94A3B8;
  --slate-500: #64748B;
  --slate-600: #475569;

  /* ---- Feedback ---- */
  --success:    #16A34A;
  --success-bg: #DCFCE7;
  --success-fg: #15803D;

  /* ---- Foreground / surface ---- */
  --fg1: #0F2233;
  --fg2: #475569;
  --fg3: #7E8CA0;
  --fg-on-accent: #3A2705;
  --white: #ffffff;
  --bg-page:    #F8FAFB;
  --bg-subtle:  #F4F7FA;
  --bg-surface: #ffffff;

  /* ---- Borders ---- */
  --border-subtle:  #E8EDF2;
  --border-default: #E2E8F0;
  --border-strong:  #CBD5E1;

  /* ---- Gradients ---- */
  --grad-hero:   linear-gradient(135deg, #0A2C49 0%, #093A61 45%, #07508B 100%);
  --grad-blue:   linear-gradient(135deg, #07294a 0%, #034B87 100%);
  --grad-accent: linear-gradient(135deg, #F4921E 0%, #D97D12 100%);

  /* ---- Shadows ---- */
  --shadow-xs: 0 1px 2px rgba(10,44,73,0.06);
  --shadow-sm: 0 1px 3px rgba(10,44,73,0.08), 0 1px 2px rgba(10,44,73,0.04);
  --shadow-md: 0 6px 16px rgba(10,44,73,0.10);
  --shadow-lg: 0 14px 40px rgba(10,44,73,0.14);
  --shadow-xl: 0 24px 60px rgba(10,44,73,0.22);
  --shadow-accent: 0 8px 22px rgba(244,146,30,0.30);

  /* ---- Type ---- */
  --font-display: 'Sora', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-body:    'IBM Plex Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-mono:    'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;
  --tracking-caps: 0.12em;

  /* ---- Motion ---- */
  --dur-fast: .15s;
  --dur-base: .25s;
  --ease-standard: cubic-bezier(.4, 0, .2, 1);
  --ease-out:      cubic-bezier(.16, 1, .3, 1);
}

/* ============================================================
   BASE
   ============================================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--fg1);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
svg { display: inline-block; vertical-align: middle; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section { padding: 88px 0; }
.reveal-safe { opacity: 1 !important; transform: none !important; }

/* ---- buttons ---- */
.btn { font-family: var(--font-body); font-weight: 600; font-size: 15px; border-radius: 10px;
  padding: 13px 22px; border: 1px solid transparent; cursor: pointer; display: inline-flex;
  align-items: center; gap: 9px; transition: all var(--dur-base) var(--ease-standard); white-space: nowrap;
  text-decoration: none; }
.btn svg, .btn i { width: 17px; height: 17px; }
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--blue-600); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--blue-700); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-accent { background: var(--orange-500); color: var(--fg-on-accent); box-shadow: var(--shadow-accent); }
.btn-accent:hover { background: var(--orange-600); transform: translateY(-1px); }
.btn-secondary { background: #fff; color: var(--blue-700); border-color: var(--border-strong); }
.btn-secondary:hover { border-color: var(--blue-500); background: var(--blue-50); }
.btn-ghost { background: transparent; color: var(--fg1); }
.btn-ghost:hover { background: var(--slate-100); }
.btn-light { background: #fff; color: var(--blue-700); }
.btn-light:hover { background: var(--blue-50); transform: translateY(-1px); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn-outline-light:hover { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.6); }

/* ---- eyebrow ---- */
.eyebrow { font-family: var(--font-mono); font-size: 13px; font-weight: 500; text-transform: uppercase;
  letter-spacing: var(--tracking-caps); color: var(--orange-600); }
.eyebrow.on-dark { color: var(--orange-400); }

/* ---- headings ---- */
.h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.04; letter-spacing: -0.025em; margin: 0; text-wrap: balance; }
.h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.08; letter-spacing: -0.02em; margin: 0; text-wrap: balance; }
.h3 { font-family: var(--font-display); font-weight: 600; font-size: 21px; letter-spacing: -0.01em; margin: 0; }
.lead { font-family: var(--font-body); font-size: 19px; line-height: 1.55; color: var(--fg2); margin: 0; text-wrap: pretty; }
.muted { color: var(--fg2); }
h1,h2,h3,h4,h5,h6,blockquote,p { text-wrap: pretty; }

/* ---- chips ---- */
.chip { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .08em;
  font-weight: 500; padding: 7px 13px; border-radius: 999px; display: inline-flex; align-items: center; gap: 7px; }

/* ---- card ---- */
.card { background: #fff; border: 1px solid var(--border-subtle); border-radius: 16px;
  box-shadow: var(--shadow-sm); transition: box-shadow var(--dur-base), transform var(--dur-base); }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

/* ---- section head ---- */
.sec-head { max-width: 720px; }
.sec-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.sec-head .h2 { margin-top: 14px; }
.sec-head .lead { margin-top: 16px; }
.sec-head.on-dark .h2 { color: #fff; }
.sec-head.on-dark .lead { color: var(--blue-200); }

/* ---- reveal on load ---- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(14px); animation: rise .6s var(--ease-out) forwards; }
  @keyframes rise { to { opacity: 1; transform: none; } }
}

/* ---- flow dot — signature motion ---- */
.flow-dot { position: absolute; top: 50%; left: 0; width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange-400); box-shadow: 0 0 8px var(--orange-400); transform: translate(-50%, -50%); }
@media (prefers-reduced-motion: no-preference) {
  .flow-dot { animation: flow 2s var(--ease-standard) infinite; }
  @keyframes flow { 0% { left: 0; opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { left: 100%; opacity: 0; } }
}

/* ---- dot-grid texture for dark panels ---- */
.dotgrid {
  background-image: radial-gradient(rgba(255,255,255,.07) 1.3px, transparent 1.3px);
  background-size: 26px 26px;
}

/* ============================================================
   NAVIGATION — frosted sticky mega-menu
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,250,252,0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background .3s var(--ease-standard), border-color .3s var(--ease-standard);
}
.nav-wrap { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.nav-row { display: flex; align-items: center; gap: 26px; height: 76px; }
.nav-logo { display: flex; align-items: center; flex: none; }
.nav-logo img { height: 42px; width: auto; }
.nav-logo .wordmark { font-family: var(--font-display); font-weight: 800; font-size: 26px; letter-spacing: -0.03em; color: var(--blue-600); }
.nav-logo .wordmark span { color: var(--orange-500); }
.nav-list { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; list-style: none; margin: 0; padding: 0; }
.nav-item { position: relative; }
.nav-trigger {
  display: inline-flex; align-items: center; gap: 5px; font-family: var(--font-body);
  font-size: 14.5px; font-weight: 500; line-height: 1; padding: 10px 13px; border-radius: 9px;
  cursor: pointer; white-space: nowrap; background: transparent; border: 0; color: var(--fg2);
  transition: color var(--dur-base) var(--ease-standard), background var(--dur-base) var(--ease-standard);
}
.nav-trigger:hover { color: var(--blue-700); }
.nav-item.open .nav-trigger { color: var(--blue-700); background: var(--slate-100); }
.nav-trigger .chev { width: 15px; height: 15px; transition: transform var(--dur-base) var(--ease-standard); }
.nav-item.open .nav-trigger .chev { transform: rotate(180deg); }

/* mega panel */
.mega {
  position: absolute; top: calc(100% + 12px); left: 0; z-index: 60;
  background: #fff; border: 1px solid var(--border-subtle); border-radius: 18px;
  box-shadow: var(--shadow-xl); padding: 14px; width: 300px;
  opacity: 0; visibility: hidden; transform: translateY(8px) scale(0.985);
  transform-origin: top center;
  transition: opacity .2s var(--ease-out), transform .26s var(--ease-out), visibility .2s;
}
.mega.align-right { left: auto; right: 0; }
.mega.two-col { width: 460px; }
.nav-item.open .mega { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.mega::before { content: ''; position: absolute; left: 0; right: 0; top: -14px; height: 14px; }
.mega-eyebrow {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500; text-transform: uppercase;
  letter-spacing: var(--tracking-caps); color: var(--slate-400); padding: 4px 10px 12px;
}
.mega-grid { display: grid; gap: 2px; grid-template-columns: 1fr; }
.mega.two-col .mega-grid { grid-template-columns: 1fr 1fr; }
.mega-link { display: flex; align-items: center; gap: 13px; padding: 10px 11px; border-radius: 11px;
  transition: background var(--dur-fast) var(--ease-standard); }
.mega-link:hover { background: var(--slate-50); }
.mega-ico { flex: none; width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  background: var(--blue-50); color: var(--blue-600);
  transition: background var(--dur-base) var(--ease-standard), color var(--dur-base) var(--ease-standard); }
.mega-ico i { width: 19px; height: 19px; }
.mega-link:hover .mega-ico { background: var(--blue-600); color: #fff; }
.mega-label { font-size: 14.5px; font-weight: 600; color: var(--fg1); line-height: 1.2; }
.mega-link:hover .mega-label { color: var(--blue-700); }
.mega-foot { margin-top: 8px; padding: 13px 12px 6px; border-top: 1px solid var(--border-subtle);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.mega-foot a { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 600; color: var(--blue-600); }
.mega-foot a:hover { color: var(--orange-600); }
.mega-foot a i { width: 15px; height: 15px; }
.mega-foot .audit { color: var(--orange-600); }

/* mobile */
.nav-burger { display: none; background: transparent; border: 0; cursor: pointer; padding: 8px; border-radius: 9px; color: var(--fg1); }
.mobile-drawer { display: none; background: #fff; border-top: 1px solid var(--border-subtle);
  max-height: calc(100vh - 76px); overflow-y: auto; box-shadow: var(--shadow-lg); }
.mobile-drawer.show { display: block; }
.mobile-inner { padding: 8px 24px 28px; }
.m-acc-head { width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 16px 4px; font-family: var(--font-body); font-size: 17px; font-weight: 600;
  color: var(--fg1); background: transparent; border: 0; border-bottom: 1px solid var(--border-subtle); cursor: pointer; text-align: left; }
.m-acc-head .chev { width: 20px; height: 20px; color: var(--slate-400); transition: transform .2s; }
.m-acc-head.open .chev { transform: rotate(180deg); }
.m-acc-panel { overflow: hidden; display: grid; gap: 2px; max-height: 0; transition: max-height .32s var(--ease-standard); }
.m-acc-panel.open { max-height: 700px; padding: 8px 0 16px; }
.m-acc-link { padding: 11px 12px; font-size: 15px; color: var(--fg2); border-radius: 9px; display: flex; align-items: center; gap: 11px; }
.m-acc-link i { width: 18px; height: 18px; color: var(--blue-600); }
.m-acc-link:active { background: var(--slate-100); }
.mobile-cta { margin-top: 22px; }
.mobile-cta .btn { width: 100%; justify-content: center; }

@media (max-width: 1080px) {
  .nav-list, .nav-cta-desktop { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-row { justify-content: space-between; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { background: var(--blue-950); color: #fff; position: relative; overflow: hidden; }
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; pointer-events: none; }
.hero-dotgrid { position: absolute; inset: 0; opacity: 0.28; pointer-events: none; }
.hero-grid { position: relative; padding-top: 84px; padding-bottom: 92px;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 9px; padding: 7px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em; color: var(--blue-100); }
.dot { width: 7px; height: 7px; border-radius: 9px; flex: none; }
.dot.orange { background: var(--orange-400); }
.dot.success { background: var(--success); }
.hero h1 { margin-top: 22px; }
.hero h1 .accent { color: var(--orange-400); }
.hero-lead { margin-top: 20px; color: var(--blue-100); max-width: 520px; }
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-assure { display: flex; gap: 28px; margin-top: 38px; font-size: 14px; color: var(--blue-200); flex-wrap: wrap; }
.hero-assure span { display: flex; align-items: center; gap: 8px; }

/* workflow diagram card */
.wf { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: 20px;
  padding: 22px; display: flex; flex-direction: column; gap: 14px; box-shadow: var(--shadow-xl); }
.wf-top { display: flex; align-items: center; justify-content: space-between; }
.wf-top .name { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--blue-200); }
.wf-top .run { display: flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 11px; color: var(--success); }
.wf-flow { display: flex; align-items: center; justify-content: space-between; gap: 2px; }
.wf-node { background: #fff; border-radius: 11px; padding: 9px 10px; min-width: 92px; box-shadow: var(--shadow-md); }
.wf-node .row { display: flex; align-items: center; gap: 7px; }
.wf-node .ic { width: 24px; height: 24px; border-radius: 7px; display: grid; place-items: center; color: #fff; }
.wf-node .ic i { width: 13px; height: 13px; }
.wf-node .lbl { font-size: 12.5px; font-weight: 700; color: var(--fg1); }
.wf-node .sub { font-family: var(--font-mono); font-size: 10px; color: var(--fg3); margin-top: 5px; }
.wf-wire { flex: 1; height: 2px; background: rgba(255,255,255,0.18); position: relative; overflow: hidden; border-radius: 2px; }
.wf-stats { display: flex; gap: 16px; font-family: var(--font-mono); font-size: 11px; color: var(--blue-200); }
.wf-stats .ok { color: var(--orange-400); }

/* ============================================================
   PLATFORMS
   ============================================================ */
.platforms { padding: 64px 0; }
.platforms .kicker { text-align: center; font-family: var(--font-mono); font-size: 13px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--fg3); margin-bottom: 32px; }
.platforms-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.platform { padding: 20px 22px; display: flex; align-items: center; gap: 14px; }
.platform .ic { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; flex-shrink: 0; color: #fff; }
.platform .ic i { width: 22px; height: 22px; }
.platform .nm { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--fg1); }
.platform .note { font-size: 12.5px; color: var(--fg3); margin-top: 2px; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--bg-page); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.service { padding: 26px; border-top: 1px solid var(--border-subtle); }
.service.featured { border-top: 3px solid var(--orange-500); }
.service .ic { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; }
.service .ic i { width: 24px; height: 24px; }
.service .ic.blue { background: var(--blue-50); color: var(--blue-600); }
.service .ic.orange { background: var(--orange-50); color: var(--orange-600); }
.service h3 { margin-top: 18px; }
.service p { font-size: 15px; line-height: 1.55; color: var(--fg2); margin-top: 10px; }
.service ul { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-direction: column; gap: 9px; }
.service li { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--fg2); }
.service li i { width: 16px; height: 16px; color: var(--blue-500); flex: none; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { background: var(--bg-subtle); }
.how-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 28px; margin-top: 50px; align-items: stretch; }
.how-steps { display: flex; flex-direction: column; gap: 12px; }
.how-step { text-align: left; cursor: pointer; border: 1px solid var(--border-subtle); border-left: 4px solid transparent;
  background: rgba(255,255,255,0.5); border-radius: 14px; padding: 16px 18px; display: flex; align-items: center; gap: 15px;
  transition: all .25s var(--ease-standard); }
.how-step .num { font-family: var(--font-mono); font-size: 13px; font-weight: 600; color: var(--fg3); width: 22px; }
.how-step .ic { width: 40px; height: 40px; border-radius: 10px; background: var(--slate-150); color: var(--slate-500);
  display: grid; place-items: center; flex-shrink: 0; transition: all .25s; }
.how-step .ic i { width: 20px; height: 20px; }
.how-step .title { font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--fg2); }
.how-step.on { border-color: var(--blue-300); border-left: 4px solid var(--orange-500);
  background: #fff; box-shadow: var(--shadow-md); }
.how-step.on .num { color: var(--orange-600); }
.how-step.on .ic { background: var(--blue-600); color: #fff; }
.how-step.on .title { color: var(--fg1); }
.how-detail { padding: 34px; display: flex; flex-direction: column; justify-content: center; }
.how-detail .ic { width: 56px; height: 56px; border-radius: 14px; background: var(--blue-50); color: var(--blue-600); display: grid; place-items: center; }
.how-detail .ic i { width: 28px; height: 28px; }
.how-detail h3 { font-size: 30px; margin-top: 22px; }
.how-detail .lead { font-size: 18px; margin-top: 14px; }
.how-meta { margin-top: 22px; display: inline-flex; align-items: center; gap: 9px; align-self: flex-start;
  font-family: var(--font-mono); font-size: 13px; color: var(--orange-600); background: var(--orange-50);
  padding: 8px 14px; border-radius: 999px; }
.how-meta i { width: 15px; height: 15px; }

/* ============================================================
   RESULTS (dark)
   ============================================================ */
.results { background: var(--grad-blue); color: #fff; position: relative; overflow: hidden; }
.results .dotgrid { position: absolute; inset: 0; opacity: 0.4; }
.results .inner { position: relative; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 46px; }
.stat { border-top: 2px solid rgba(255,255,255,0.16); padding-top: 20px; }
.stat .top { display: flex; align-items: baseline; gap: 8px; }
.stat .fig { font-family: var(--font-display); font-weight: 800; font-size: 52px; line-height: 1; color: var(--orange-400); letter-spacing: -0.02em; }
.stat .unit { font-family: var(--font-mono); font-size: 12px; color: var(--blue-200); text-transform: uppercase; letter-spacing: .06em; }
.stat .lbl { font-size: 15px; color: var(--blue-100); margin-top: 12px; line-height: 1.45; }

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testi { position: relative; overflow: hidden; background: var(--bg-subtle); border-top: 1px solid var(--border-subtle); }
.testi-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 56px; align-items: center; }
.testi-photo { position: relative; }
.testi-frame { position: relative; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-xl); aspect-ratio: 4 / 5; background: var(--blue-950); }
.testi-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%; }
.testi-frame .scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,28,48,0.42) 0%, rgba(6,28,48,0) 42%); }
.float-chip { position: absolute; left: 20px; bottom: 20px; display: flex; align-items: center; gap: 10px;
  padding: 10px 15px; border-radius: 14px; background: rgba(255,255,255,0.92); backdrop-filter: blur(8px); box-shadow: var(--shadow-lg); }
.float-chip .badge { width: 34px; height: 34px; border-radius: 9px; background: var(--grad-accent); display: grid; place-items: center; }
.float-chip .badge i { width: 18px; height: 18px; color: #fff; }
.float-chip .k { display: block; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--slate-500); }
.float-chip .v { font-family: var(--font-display); font-weight: 800; font-size: 19px; color: var(--fg1); }
.t-industry { font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--slate-500); }
.t-quote { margin: 16px 0 0; font-family: var(--font-display); font-weight: 500; font-size: 25px; line-height: 1.5; letter-spacing: -0.01em; color: var(--fg1); }
.t-quote .b { color: var(--blue-700); font-weight: 700; }
.t-quote .o { color: var(--orange-600); font-weight: 700; }
.t-cap { margin-top: 28px; display: flex; align-items: center; gap: 16px; }
.t-cap img { width: 52px; height: 52px; border-radius: 999px; object-fit: cover; object-position: 50% 26%; box-shadow: var(--shadow-sm); }
.t-name { display: block; font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--fg1); }
.t-role { font-size: 14.5px; color: var(--fg2); }
.t-role a { color: var(--blue-600); font-weight: 600; }

/* ============================================================
   CONTACT / CTA with Cal.com
   ============================================================ */
.contact-card { display: grid; grid-template-columns: 0.85fr 1.15fr; align-items: stretch;
  background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: 24px; box-shadow: var(--shadow-lg); overflow: hidden; }
.contact-copy { padding: 52px 48px; }
.contact-copy .h2 { margin-top: 14px; }
.contact-copy .lead { margin-top: 16px; }
.contact-list { list-style: none; padding: 0; margin: 26px 0 0; display: flex; flex-direction: column; gap: 13px; }
.contact-list li { display: flex; align-items: center; gap: 11px; font-size: 15px; color: var(--fg2); }
.contact-list li i { width: 19px; height: 19px; color: var(--success); flex: none; }
.contact-note { margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--border-subtle);
  display: flex; align-items: center; gap: 11px; font-size: 14px; color: var(--fg3); }
.contact-note i { width: 18px; height: 18px; color: var(--orange-500); }
.contact-cal { background: var(--bg-subtle); border-left: 1px solid var(--border-subtle); align-self: stretch; min-height: 640px; }
.contact-cal .cal-inline { width: 100%; height: 100%; min-height: 640px; overflow: auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--blue-950); color: #fff; }
.foot-top { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; gap: 40px;
  padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.foot-brand { max-width: 320px; }
.foot-brand .logo { height: 54px; width: auto; }
/* Custom logo on the dark footer — knock out to white. */
.foot-brand .foot-logo-img { filter: brightness(0) invert(1); }
.foot-brand .wordmark { font-family: var(--font-display); font-weight: 800; font-size: 30px; letter-spacing: -0.03em; color: #fff; }
.foot-brand .wordmark span { color: var(--orange-400); }
.foot-brand p { font-size: 14.5px; line-height: 1.6; color: var(--blue-200); margin-top: 18px; }
.foot-social { display: flex; gap: 10px; margin-top: 22px; }
.foot-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.08); display: grid; place-items: center; color: var(--blue-100);
  transition: all var(--dur-base) var(--ease-standard); }
.foot-social a:hover { background: var(--orange-500); color: var(--fg-on-accent); }
.foot-audit { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 26px 28px; max-width: 360px; }
.foot-audit .k { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--orange-400); }
.foot-audit .t { font-family: var(--font-display); font-size: 22px; font-weight: 600; margin-top: 10px; line-height: 1.2; }
.foot-audit .btn { margin-top: 18px; }
.foot-cols { display: grid; grid-template-columns: repeat(6, 1fr); gap: 32px; padding-top: 52px; }
.foot-col .head { font-family: var(--font-mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: .12em; color: var(--blue-300); margin-bottom: 18px; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.foot-col a { font-size: 14px; line-height: 1.4; color: var(--blue-100); }
.foot-col a:hover { color: var(--orange-400); }
.foot-legal { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 52px; padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.foot-legal .copy { font-size: 13px; color: var(--blue-300); }
.foot-legal .links { display: flex; gap: 22px; font-size: 13px; color: var(--blue-300); flex-wrap: wrap; align-items: center; }
.foot-legal .links a:hover { color: #fff; }
.foot-legal .status { display: flex; align-items: center; gap: 7px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero { background: var(--blue-950); color: #fff; position: relative; overflow: hidden; }
.about-hero .grad { position: absolute; inset: 0; background: var(--grad-hero); opacity: 0.92; pointer-events: none; }
.about-hero .glow { position: absolute; right: -8%; bottom: -30%; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,147,35,0.20), transparent 62%); pointer-events: none; }
.about-hero .inner { position: relative; padding-top: 92px; padding-bottom: 96px; text-align: center; }
.about-hero .badge { display: inline-flex; align-items: center; gap: 9px; padding: 7px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); font-family: var(--font-mono);
  font-size: 12px; letter-spacing: .1em; color: var(--blue-100); text-transform: uppercase; }
.about-hero h1 { margin-top: 24px; max-width: 980px; margin-left: auto; margin-right: auto; }
.about-hero h1 .accent { color: var(--orange-400); }
.about-hero .lead { margin-top: 22px; color: var(--blue-100); max-width: 660px; margin-left: auto; margin-right: auto; }
.about-hero .actions { display: flex; gap: 14px; margin-top: 32px; justify-content: center; flex-wrap: wrap; }
.about-hero .chips { display: flex; gap: 10px; margin-top: 44px; justify-content: center; flex-wrap: wrap; }
.about-hero .chips span { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .06em; color: var(--blue-200);
  padding: 7px 14px; border-radius: 999px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); }

.about-stats { background: var(--bg-page); padding: 72px 0; }
.about-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.about-stats .stat { border-top: 2px solid var(--border-default); }
.about-stats .stat .fig { color: var(--orange-500); font-size: 56px; }
.about-stats .stat .unit { color: var(--fg3); }
.about-stats .stat .lbl { color: var(--fg2); font-size: 14.5px; }

.founder { background: var(--bg-subtle); }
.founder-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 56px; align-items: center; }
.founder-photo { position: relative; }
.founder-frame { position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 4 / 5; box-shadow: var(--shadow-xl); background: var(--blue-950); }
.founder-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; }
.founder-frame .scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,28,48,0.40) 0%, rgba(6,28,48,0) 40%); }
.founder-frame .stripes { position: absolute; inset: 0; background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 14px, rgba(255,255,255,0) 14px 28px); }
.founder-frame .grad { position: absolute; inset: 0; background: var(--grad-hero); opacity: 0.5; }
.founder-frame .ph-label { position: absolute; inset: 0; display: grid; place-items: center; }
.founder-frame .ph-label span { font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--blue-200); border: 1px dashed rgba(255,255,255,0.28); padding: 8px 14px; border-radius: 8px; }
.founder-copy h2 { margin-top: 14px; }
.founder-copy .body { margin-top: 18px; display: flex; flex-direction: column; gap: 16px; max-width: 620px; }
.founder-copy .body p { font-size: 17px; line-height: 1.6; color: var(--fg2); margin: 0; }
.founder-copy .body strong { color: var(--fg1); }
.founder-creds { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 26px; }
.cred { display: flex; align-items: center; gap: 11px; padding: 13px 15px; background: #fff; border: 1px solid var(--border-subtle); border-radius: 12px; box-shadow: var(--shadow-xs); }
.cred .ic { width: 34px; height: 34px; border-radius: 9px; background: var(--blue-50); color: var(--blue-600); display: grid; place-items: center; flex-shrink: 0; }
.cred .ic i { width: 18px; height: 18px; }
.cred span.txt { font-size: 13.5px; font-weight: 600; color: var(--fg1); line-height: 1.3; }

.values { background: var(--bg-page); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 50px; }
.value { padding: 26px; display: flex; flex-direction: column; }
.value .top { display: flex; align-items: center; justify-content: space-between; }
.value .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--blue-50); color: var(--blue-600); display: grid; place-items: center; }
.value .ic i { width: 24px; height: 24px; }
.value .num { font-family: var(--font-mono); font-size: 13px; color: var(--slate-300); font-weight: 600; }
.value h3 { margin-top: 18px; }
.value p { font-size: 14.5px; line-height: 1.55; color: var(--fg2); margin-top: 10px; }

.certs { background: var(--blue-50); }
.certs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.cert { background: #fff; border: 1px solid var(--border-subtle); border-radius: 16px; padding: 20px 22px 22px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; min-height: 172px; }
.cert .badge-row { display: flex; justify-content: flex-end; }
.cert .badge-row span { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  color: var(--success-fg); background: var(--success-bg); padding: 5px 10px; border-radius: 999px; }
.cert .badge-row i { width: 13px; height: 13px; }
.cert .nm { flex: 1; display: flex; align-items: center; font-family: var(--font-display); font-weight: 800; font-size: 32px; line-height: 1; letter-spacing: -0.03em; }
.cert .nm .tld { color: var(--slate-300); font-weight: 600; }
.cert .note { font-family: var(--font-mono); font-size: 12px; color: var(--fg3); }
.certs-proof { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border-default); display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: center; }
.certs-proof .kicker { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--fg3); }
.certs-proof .clients { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.certs-proof .clients span { display: inline-flex; align-items: center; gap: 9px; padding: 10px 16px; background: #fff; border: 1px solid var(--border-default); border-radius: 999px; font-size: 14px; font-weight: 600; color: var(--fg2); }
.certs-proof .clients i { width: 16px; height: 16px; color: var(--slate-400); }

.about-cta { background: var(--blue-950); color: #fff; position: relative; overflow: hidden; }
.about-cta .grad { position: absolute; inset: 0; background: var(--grad-blue); opacity: 0.55; pointer-events: none; }
.about-cta .dotgrid { position: absolute; inset: 0; opacity: 0.4; pointer-events: none; }
.about-cta .inner { position: relative; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-cal { border-left: 0; border-top: 1px solid var(--border-subtle); }
}
@media (max-width: 980px) {
  .platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; }
  .stats-grid, .about-stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-cols { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
}
@media (max-width: 860px) {
  .testi-grid { grid-template-columns: 1fr; gap: 36px; }
  .testi-photo { max-width: 420px; }
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }
  .founder-photo { max-width: 420px; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .section { padding: 64px 0; }
  .services-grid, .platforms-grid, .stats-grid, .about-stats-grid, .values-grid, .certs-grid { grid-template-columns: 1fr; }
  .founder-creds { grid-template-columns: 1fr; }
  .foot-cols { grid-template-columns: repeat(2, 1fr); }
  .contact-copy { padding: 36px 28px; }
}
