/* ===== NOVUS KINETICS — SHARED STYLESHEET ===== */

:root{
  --teal:        #2A9196;
  --orange:      #EB6029;
  --teal-dark:   #123638;
  --teal-deep:   #0C2628;
  --teal-tint:   #EBF5F5;
  --teal-line:   #D8E9E9;
  --charcoal:    #2A2E2E;
  --charcoal-soft: #5B6363;
  --white:       #FFFFFF;
  --border:      #E3EAEA;

  --font-display: 'Clash Display', sans-serif;
  --font-body: 'Inter', sans-serif;

  --max-w: 1180px;
}

*{ box-sizing: border-box; margin:0; padding:0; }
html{ scroll-behavior: smooth; }
body{
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img,svg{ display:block; max-width:100%; }
.wrap{ max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
a{ color: inherit; text-decoration:none; }
ul{ list-style:none; }

/* ===== TYPE ===== */
h1,h2,h3{ font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; color: var(--teal-deep); }
h1{ font-size: 54px; line-height: 1.06; letter-spacing: -0.02em; }
h2{ font-size: 34px; line-height: 1.15; }
h3{ font-size: 21px; line-height: 1.3; }

.eyebrow{
  font-family: var(--font-body); font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal);
  display:flex; align-items:center; gap:10px; margin-bottom: 18px;
}
.eyebrow::before{ content:""; width: 22px; height: 2px; background: var(--orange); display:inline-block; flex-shrink:0; }

.lede{ font-size: 19px; color: var(--charcoal-soft); max-width: 600px; }
.body-copy{ font-size: 16px; color: var(--charcoal-soft); }
.body-copy + .body-copy{ margin-top: 14px; }

/* ===== BUTTONS ===== */
.btn{
  display:inline-flex; align-items:center; gap: 10px; font-family: var(--font-body);
  font-weight: 600; font-size: 15px; padding: 14px 26px; border-radius: 999px;
  transition: all .18s ease; white-space: nowrap; cursor:pointer; border:none;
}
.btn-primary{ background: var(--orange); color: var(--white); box-shadow: 0 8px 20px -8px rgba(235,96,41,0.55); }
.btn-primary:hover{ background:#D5541F; transform: translateY(-1px); }
.btn-secondary{ background: transparent; color: var(--teal-deep); border: 1.5px solid var(--teal-line); }
.btn-secondary:hover{ border-color: var(--teal); background: var(--teal-tint); }
.btn-ghost-light{ color: var(--white); border: 1.5px solid rgba(255,255,255,0.35); }
.btn-ghost-light:hover{ border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); }

/* ===== HEADER ===== */
header{ background: var(--teal-dark); position: sticky; top:0; z-index: 50; }
.nav{ display:flex; align-items:center; justify-content:space-between; padding: 16px 32px; max-width: var(--max-w); margin: 0 auto; }
.logo-chip{ background: var(--white); border-radius: 10px; padding: 8px 14px; display:flex; align-items:center; box-shadow: 0 2px 8px rgba(0,0,0,0.12); }
.logo-chip img{ height: 24px; width:auto; display:block; }
nav.links{ display:flex; gap: 32px; }
nav.links a{ color: rgba(255,255,255,0.78); font-size: 14.5px; font-weight: 500; transition: color .15s ease; }
nav.links a:hover{ color: var(--white); }
nav.links a.active{ color: var(--white); }
.nav-toggle{ display:none; background:none; border:none; color:var(--white); font-size:26px; cursor:pointer; }

/* ===== BREADCRUMB BAND ===== */
.crumb-band{ background: var(--teal-tint); border-bottom:1px solid var(--teal-line); padding: 14px 0; }
.crumb-band .wrap{ font-size: 13px; color: var(--charcoal-soft); display:flex; gap:8px; align-items:center; }
.crumb-band a{ color: var(--teal); font-weight:600; }

/* ===== PAGE HERO (non-home pages) ===== */
.page-hero{ padding: 72px 0 76px; }
.page-hero .wrap{ display:grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items:center; }
.page-hero h1{ font-size: 46px; }
.page-hero.center .wrap{ grid-template-columns: 1fr; text-align:center; max-width: 760px; }
.page-hero.center .lede{ margin: 0 auto; }
.page-hero.center .eyebrow{ justify-content:center; }
.page-hero.center .eyebrow::before{ display:none; }

/* ===== HOME HERO ===== */
.home-hero{ padding: 96px 0 88px; }
.home-hero .wrap{ display:grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items:center; }
.hero-sub{ font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--teal); margin: 22px 0 20px; }
.hero-actions{ display:flex; gap:14px; margin-top: 36px; flex-wrap:wrap; }
.velocity-line{ margin-top: 46px; display:flex; align-items:center; gap: 14px; }
.velocity-line svg{ width: 100%; max-width: 380px; height: 10px; }
.velocity-line path{ stroke: var(--teal); stroke-width: 2; fill:none; stroke-dasharray: 500; stroke-dashoffset: 500; animation: draw 1.8s ease forwards .4s; }
.velocity-line circle{ fill: var(--orange); opacity:0; animation: dotIn .4s ease forwards 2s; }
@keyframes draw{ to{ stroke-dashoffset:0; } }
@keyframes dotIn{ to{ opacity:1; } }
@media (prefers-reduced-motion: reduce){ .velocity-line path,.velocity-line circle{ animation:none; stroke-dashoffset:0; opacity:1; } }

.hero-illustration{ width:100%; height:auto; }

/* ===== SECTIONS ===== */
section{ padding: 84px 0; }
.section-tint{ background: var(--teal-tint); border-top:1px solid var(--teal-line); border-bottom:1px solid var(--teal-line); }
.section-head{ max-width: 640px; margin-bottom: 50px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head.center .eyebrow{ justify-content:center; }
.section-head.center .eyebrow::before{ display:none; }

/* ===== CARD GRIDS ===== */
.cards-3{ display:grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.cards-2{ display:grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.cards-4{ display:grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

.kcard{
  background: var(--white); border: 1px solid var(--border); border-radius: 18px;
  padding: 32px 28px 28px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  opacity:0; transform: translateY(18px);
}
.kcard.in{ opacity:1; transform:none; transition: opacity .6s ease, transform .6s ease; }
.kcard:hover{ transform: translateY(-4px); box-shadow: 0 18px 34px -18px rgba(18,54,56,0.25); border-color: var(--teal-line); }
.kcard-icon{ width: 46px; height:46px; border-radius: 12px; background: var(--teal-tint); display:flex; align-items:center; justify-content:center; margin-bottom: 20px; }
.kcard-icon svg{ width:22px; height:22px; stroke: var(--teal); }
.kcard h3{ margin-bottom: 10px; }
.kcard p{ font-size: 15px; color: var(--charcoal-soft); margin-bottom: 16px; }
.kcard ul{ margin: 4px 0 16px; }
.kcard ul li{ font-size:14px; color:var(--charcoal-soft); padding-left:18px; position:relative; margin-bottom:7px; }
.kcard ul li::before{ content:""; position:absolute; left:0; top:8px; width:6px; height:6px; border-radius:50%; background:var(--orange); }
.kcard .klink{ font-size: 14px; font-weight:600; color: var(--orange); display:inline-flex; align-items:center; gap:6px; }
.kcard .klink svg{ width:14px; height:14px; transition: transform .15s ease; }
.kcard:hover .klink svg{ transform: translateX(3px); }

/* ===== INDUSTRIES GRID ===== */
.industries-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.ind-box{ padding: 28px 24px; border-radius: 16px; border: 1px solid var(--teal-line); background: var(--white); display:flex; align-items:center; gap:16px; transition: border-color .2s ease, background .2s ease; }
.ind-box:hover{ border-color: var(--teal); background: var(--teal-tint); }
.ind-icon{ width:42px;height:42px; border-radius:50%; background: var(--teal-dark); display:flex;align-items:center;justify-content:center; flex-shrink:0; }
.ind-icon svg{ width:20px;height:20px; stroke: var(--white); }
.ind-box strong{ font-family: var(--font-display); font-size:16px; font-weight:600; color: var(--teal-deep); }
.ind-box.soon{ opacity:.55; border-style:dashed; }
.ind-box .soon-tag{ font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.06em; color:var(--charcoal-soft); display:block; margin-top:2px; }

.one-liner{ margin-top: 30px; font-size: 15.5px; color: var(--charcoal-soft); max-width: 640px; }

/* ===== STAT STRIP ===== */
.stat-row{ display:flex; gap: 40px; margin-top: 34px; flex-wrap:wrap; }
.stat{ min-width: 130px; }
.stat b{ font-family: var(--font-display); font-size: 34px; color: var(--orange); display:block; font-weight:700; }
.stat span{ font-size: 13px; color: var(--charcoal-soft); }

.stat-grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.stat-box{ background:var(--white); border:1px solid var(--border); border-radius:16px; padding:28px 22px; text-align:center; }
.stat-box b{ font-family:var(--font-display); font-size:30px; color:var(--teal-deep); display:block; margin-bottom:8px; }
.stat-box span{ font-size:13.5px; color:var(--charcoal-soft); }

/* ===== WHY GRID (2 col) ===== */
.why-grid{ display:grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items:center; }

/* ===== PROCESS STEPS ===== */
.process-steps{ display:grid; grid-template-columns: repeat(3,1fr); gap: 0; position:relative; margin-top:10px; }
.process-step{ position:relative; padding: 0 22px; }
.process-step:first-child{ padding-left:0; }
.process-step:last-child{ padding-right:0; }
.process-num{ width:38px; height:38px; border-radius:50%; background:var(--teal-dark); color:var(--white); font-family:var(--font-display); font-weight:600; display:flex; align-items:center; justify-content:center; margin-bottom:18px; font-size:15px; }
.process-step h3{ font-size:18px; margin-bottom:8px; }
.process-step p{ font-size:14.5px; color:var(--charcoal-soft); }
.process-connector{ position:absolute; top:19px; left:100%; width:44px; height:2px; background:var(--teal-line); }
.process-step:last-child .process-connector{ display:none; }

/* ===== COMPARE TABLE ===== */
.compare-wrap{ border:1px solid var(--border); border-radius:16px; overflow:hidden; }
.compare-row{ display:grid; grid-template-columns: 1fr 1fr 1fr; }
.compare-row > div{ padding:16px 22px; font-size:14.5px; }
.compare-row.head{ background:var(--teal-dark); color:var(--white); font-weight:600; font-family:var(--font-body); font-size:13px; letter-spacing:.03em; }
.compare-row.head > div:first-child{ opacity:0; }
.compare-row:not(.head):nth-child(odd){ background:var(--teal-tint); }
.compare-row > div:nth-child(2){ color:var(--charcoal-soft); }
.compare-row > div:nth-child(3){ color:var(--teal-deep); font-weight:500; }
.compare-row:not(.head) > div:first-child{ font-weight:600; color:var(--teal-deep); }

/* ===== ROLE FILTER ===== */
.role-filter-tabs{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:28px; }
.role-tab{ padding:9px 18px; border-radius:999px; border:1.5px solid var(--teal-line); font-size:13.5px; font-weight:600; color:var(--charcoal-soft); cursor:pointer; background:var(--white); transition: all .15s ease; }
.role-tab.active,.role-tab:hover{ border-color:var(--teal); color:var(--teal-deep); background:var(--teal-tint); }
.role-panel{ display:none; }
.role-panel.active{ display:block; }
.role-panel ul{ display:grid; grid-template-columns: repeat(2,1fr); gap:10px; }
.role-panel li{ font-size:14.5px; color:var(--charcoal-soft); padding:12px 16px; background:var(--teal-tint); border-radius:10px; }

/* ===== CTA BAND ===== */
.cta-band{ background: var(--teal-deep); border-radius: 24px; padding: 60px 54px; display:flex; align-items:center; justify-content:space-between; gap: 40px; flex-wrap:wrap; position:relative; overflow:hidden; }
.cta-band::after{ content:""; position:absolute; right:-60px; top:-60px; width:220px;height:220px; border-radius:50%; border: 1.5px solid rgba(255,255,255,0.08); }
.cta-band h2{ color: var(--white); font-size:30px; max-width:480px; }
.cta-band p{ color:rgba(255,255,255,0.72); font-size:14.5px; margin-top:8px; max-width:420px; }
.cta-band-inner{ display:flex; align-items:center; gap:16px; flex-wrap:wrap; }

/* ===== FOOTER ===== */
footer{ background: var(--teal-dark); color: rgba(255,255,255,0.7); padding: 56px 0 32px; margin-top: 0; }
.footer-grid{ display:grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 38px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-grid h4{ color:var(--white); font-family:var(--font-body); font-size:13px; letter-spacing:0.08em; text-transform:uppercase; margin-bottom:16px; font-weight:600; }
.footer-grid a,.footer-grid p{ display:block; font-size:14.5px; color: rgba(255,255,255,0.65); margin-bottom:10px; }
.footer-grid a:hover{ color: var(--white); }
.footer-bottom{ display:flex; justify-content:space-between; padding-top:24px; font-size:13px; flex-wrap:wrap; gap:10px; }

/* ===== CONTACT FORM ===== */
.contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:56px; align-items:flex-start; }
.form-card{ background:var(--white); border:1px solid var(--border); border-radius:20px; padding:36px; }
.form-row{ margin-bottom:18px; }
.form-row label{ display:block; font-size:13.5px; font-weight:600; color:var(--teal-deep); margin-bottom:7px; }
.form-row input, .form-row select, .form-row textarea{
  width:100%; padding:12px 14px; border:1.5px solid var(--teal-line); border-radius:10px;
  font-family:var(--font-body); font-size:14.5px; color:var(--charcoal); background:var(--white);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus{ outline:none; border-color:var(--teal); }
.contact-info-item{ display:flex; gap:14px; margin-bottom:22px; align-items:flex-start; }
.contact-info-icon{ width:38px;height:38px;border-radius:10px;background:var(--teal-tint);display:flex;align-items:center;justify-content:center;flex-shrink:0; }
.contact-info-icon svg{ width:18px;height:18px;stroke:var(--teal); }
.contact-info-item strong{ display:block; font-size:14.5px; color:var(--teal-deep); margin-bottom:2px; }
.contact-info-item span{ font-size:14px; color:var(--charcoal-soft); }

/* ===== REVEAL ===== */
.reveal{ opacity:0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px){
  h1{ font-size: 38px; } .page-hero h1{ font-size:34px; } h2{ font-size: 27px; }
  .home-hero .wrap, .page-hero .wrap{ grid-template-columns: 1fr; }
  .cards-3, .industries-grid, .cards-2, .cards-4{ grid-template-columns: 1fr; }
  .why-grid, .contact-grid{ grid-template-columns: 1fr; }
  nav.links{ position:fixed; top:64px; left:0; right:0; background:var(--teal-dark); flex-direction:column; padding:18px 32px; gap:18px; display:none; border-top:1px solid rgba(255,255,255,0.1); }
  nav.links.open{ display:flex; }
  .nav-toggle{ display:block; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .cta-band{ flex-direction:column; align-items:flex-start; }
  .process-steps{ grid-template-columns:1fr; gap:32px; }
  .process-connector{ display:none; }
  .compare-row{ grid-template-columns: 1fr; }
  .compare-row.head{ display:none; }
  .compare-row:not(.head) > div:first-child{ background:var(--teal-dark); color:var(--white); margin:-16px -22px 10px; padding:10px 22px; border-radius:0; }
  .role-panel ul{ grid-template-columns: 1fr; }
  .stat-grid-3{ grid-template-columns: 1fr; }
}
