/* ================================================================
   PinotPulse Enterprise — v7.0
   Design System: Sky Blue / Teal / Coral / Charcoal Slate
   Apple-level spacing, typography, and micro-interactions
   ================================================================ */

/* ── Design Tokens ── */
:root {
  /* Brand */
  --sky:       #5BC0DE;
  --sky-h:     #46AECF;
  --sky-light: rgba(91,192,222,.10);
  --sky-glow:  rgba(91,192,222,.18);
  --teal:      #4ECDC4;
  --teal-h:    #3DBDB4;
  --teal-light:rgba(78,205,196,.10);

  /* Coral CTA */
  --coral:     #E74C3C;
  --coral-h:   #D44232;
  --coral-2:   #FC5C65;
  --coral-grad:linear-gradient(135deg,#FC5C65,#E74C3C);
  --coral-glow:rgba(231,76,60,.20);

  /* Dark / Navigation */
  --slate:     #3C4858;
  --slate-h:   #334054;
  --navy:      #2C3E50;
  --navy-2:    #1E2D3D;

  /* Surfaces */
  --soft:      #F5F7FA;
  --white:     #FFFFFF;
  --canvas:    #EEF1F6;

  /* Text */
  --t1:        #1A202C;
  --t2:        #4A5568;
  --t3:        #9CA3AF;

  /* Borders */
  --edge:      #E2E8F0;
  --edge-l:    #EDF2F7;

  /* Shadows */
  --sh-xs: 0 1px 3px rgba(0,0,0,.05);
  --sh-sm: 0 2px 8px rgba(0,0,0,.07);
  --sh-md: 0 4px 20px rgba(0,0,0,.09);
  --sh-lg: 0 12px 40px rgba(0,0,0,.11);
  --sh-xl: 0 20px 60px rgba(0,0,0,.13);

  /* Radii */
  --r-xs: 6px;
  --r-sm: 10px;
  --r:    14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Fonts */
  --f-head: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --f-body: 'Source Sans 3', 'Source Sans Pro', -apple-system, sans-serif;
  --f-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Layout */
  --max: 1160px;
  --hdr: 70px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-size: 16px;
  color: var(--t1);
  background: var(--white);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
input, select, textarea, button { font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--f-head);
  font-weight: 700;
  line-height: 1.18;
  color: var(--t1);
  letter-spacing: -0.028em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.8vw, 2.6rem); }
h3 { font-size: 1.22rem; letter-spacing: -0.015em; }
h4 { font-size: 1.06rem; }
p  { color: var(--t2); line-height: 1.82; font-size: 1.03rem; }

.eyebrow {
  font-family: var(--f-mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 14px;
  display: block;
}

/* ── Layout ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.section   { padding: 100px 0; }
.section-sm{ padding: 64px 0; }
.bg-soft   { background: var(--soft); }
.bg-white  { background: var(--white); }
.bg-slate  { background: var(--slate); }
.bg-navy   { background: var(--navy); }

.section-hdr {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
.section-hdr p { margin-top: 18px; font-size: 1.1rem; }

/* ── Header ── */
.hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--hdr);
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.hdr.scrolled {
  border-bottom-color: var(--edge);
  box-shadow: 0 1px 16px rgba(0,0,0,.06);
}
.hdr-in {
  max-width: var(--max); margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.logo { display: flex; align-items: center; gap: 11px; }
.logo img { height: 34px; width: auto; }
.logo-txt { font-family: var(--f-head); font-weight: 800; font-size: 1.1rem; color: var(--t1); letter-spacing: -.4px; }
.logo-txt .ent { color: var(--t3); font-weight: 400; font-size: .88rem; font-family: var(--f-body); margin-left: 3px; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  padding: 8px 15px; font-size: .875rem; font-weight: 500;
  color: var(--t2); border-radius: var(--r-sm);
  transition: color .18s, background .18s;
}
.nav a:hover   { color: var(--sky); background: var(--sky-light); }
.nav a.active  { color: var(--sky); }

.nav .has-drop { position: relative; }
.nav .drop {
  /* top: 100% not calc(100% + gap) — gap moves to padding-top so mouse can travel through it */
  display: none;
  position: absolute; top: 100%; left: -8px;
  min-width: 240px; background: var(--white);
  border: 1px solid var(--edge); border-radius: var(--r);
  /* padding-top creates visual breathing room WITHOUT a hover-breaking gap */
  padding: 6px 6px 6px;
  margin-top: 4px;
  box-shadow: var(--sh-lg); z-index: 200;
  opacity: 0; transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease;
  pointer-events: none;
}
/* Invisible hover bridge: fills the gap between trigger and panel */
.nav .has-drop::after {
  content: '';
  position: absolute; top: 100%; left: -20px; right: -20px;
  height: 16px; /* covers the margin-top gap */
}
/* CSS fallback + JS-controlled open state */
.nav .has-drop:hover .drop,
.nav .has-drop.drop-open .drop {
  display: block; opacity: 1; transform: none; pointer-events: auto;
}
.nav .drop a {
  display: block; padding: 10px 14px; font-size: .875rem;
  border-radius: var(--r-xs); color: var(--t2);
  transition: background .15s, color .15s;
}
.nav .drop a:hover { background: var(--soft); color: var(--sky); }

.hamburger {
  display: none; background: none; border: none;
  cursor: pointer; width: 38px; height: 38px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; z-index: 1001;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--t1); border-radius: 2px; transition: .3s;
}

@media (max-width: 860px) {
  .hamburger { display: flex; }
  .nav {
    display: none; position: fixed; inset: 0;
    background: rgba(255,255,255,.98); backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center;
    gap: 4px; padding: 32px; z-index: 999;
  }
  .nav.open { display: flex; }
  .nav a    { font-size: 1.2rem; padding: 15px 20px; }
  .nav .drop{ position: static; display: block; box-shadow: none; border: none; padding: 0 0 0 14px; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--r-sm); font-size: .88rem;
  font-weight: 600; font-family: var(--f-body); border: none;
  cursor: pointer; transition: all .22s; white-space: nowrap; line-height: 1;
}
.btn-p  {
  background: var(--coral-grad); color: #fff;
  box-shadow: 0 3px 12px var(--coral-glow);
}
.btn-p:hover  { transform: translateY(-2px); box-shadow: 0 6px 22px var(--coral-glow); }

.btn-sky {
  background: linear-gradient(135deg, var(--sky), var(--teal)); color: #fff;
  box-shadow: 0 3px 12px var(--sky-glow);
}
.btn-sky:hover{ transform: translateY(-2px); box-shadow: 0 6px 22px var(--sky-glow); }

.btn-s  { background: var(--slate); color: #fff; }
.btn-s:hover  { background: var(--navy); }

.btn-o  { background: transparent; color: var(--t1); border: 1.5px solid var(--edge); }
.btn-o:hover  { border-color: var(--sky); color: var(--sky); }

.btn-ol {
  background: transparent; color: rgba(255,255,255,.88);
  border: 1.5px solid rgba(255,255,255,.20);
}
.btn-ol:hover { border-color: rgba(255,255,255,.5); color: #fff; }

.btn-sm { padding: 8px 18px; font-size: .82rem; }
.btn-lg { padding: 15px 38px; font-size: .95rem; border-radius: var(--r); }

/* ── Hero ── */
.hero {
  min-height: calc(100vh - var(--hdr));
  padding: 110px 0 90px;
  background: linear-gradient(160deg, var(--white) 0%, var(--soft) 55%, #e8f4fb 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -120px; right: -180px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(91,192,222,.10) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -100px; left: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(78,205,196,.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-g {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 72px; align-items: center; position: relative; z-index: 1;
}
.hero .eyebrow { color: var(--sky); }
.hero h1 { margin-bottom: 22px; }
.hero h1 .acc {
  background: linear-gradient(135deg, var(--sky), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero .sub {
  font-size: 1.13rem; color: var(--t2); margin-bottom: 40px;
  line-height: 1.78; max-width: 530px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Dashboard Mockup */
.hero-dash {
  background: var(--slate); border-radius: var(--r-xl);
  padding: 26px; box-shadow: var(--sh-xl);
  border: 1px solid rgba(255,255,255,.08); position: relative;
}
.dash-bar  { display: flex; gap: 7px; margin-bottom: 18px; }
.dash-dot  { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.14); }
.dash-dot:first-child { background: rgba(231,76,60,.5); }
.dash-dot:nth-child(2){ background: rgba(234,179,8,.5); }
.dash-dot:nth-child(3){ background: rgba(78,205,196,.5); }
.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.dash-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-sm); padding: 16px;
}
.dash-label {
  font-family: var(--f-mono); font-size: .6rem; color: rgba(255,255,255,.35);
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 7px;
}
.dash-val   { font-family: var(--f-head); font-size: 1.55rem; font-weight: 800; color: var(--sky); }
.dash-val.teal  { color: var(--teal); }
.dash-val.coral { color: var(--coral-2); }
.dash-val.white { color: #fff; }
.dash-wave {
  grid-column: 1/-1; background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.05); border-radius: var(--r-sm);
  padding: 14px; height: 90px; position: relative; overflow: hidden;
}
.dash-wave-label {
  font-family: var(--f-mono); font-size: .58rem;
  color: rgba(255,255,255,.28); letter-spacing: 1.5px; text-transform: uppercase;
}
.dash-wave svg { position: absolute; bottom: 0; left: 0; right: 0; }
.dash-note {
  font-size: .62rem; color: rgba(255,255,255,.18); text-align: center;
  font-style: italic; margin-top: 12px; font-family: var(--f-body);
}

@media (max-width: 900px) {
  .hero-g  { grid-template-columns: 1fr; gap: 48px; }
  .hero-dash { display: none; }
}

/* ── Stats Bar ── */
.stats-bar { padding: 52px 0; background: var(--slate); }
.stats-grid {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 24px; text-align: center;
}
.stat-val { font-family: var(--f-head); font-size: 2.1rem; font-weight: 800; color: #fff; }
.stat-val em  { font-style: normal; color: var(--teal); }
.stat-label   { font-size: .78rem; color: rgba(255,255,255,.42); margin-top: 5px; letter-spacing: .3px; }
@media (max-width: 860px) { .stats-grid { grid-template-columns: repeat(3,1fr); } }

/* ── Feature Cards ── */
.f-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 22px; }
.f-card {
  background: var(--white); border: 1px solid var(--edge);
  border-radius: var(--r-lg); padding: 34px;
  transition: box-shadow .3s, transform .3s, border-color .3s;
}
.f-card:hover {
  box-shadow: var(--sh-md); transform: translateY(-3px);
  border-color: rgba(91,192,222,.25);
}
.f-card h3    { margin-bottom: 12px; }
.f-card p     { font-size: .92rem; line-height: 1.76; }
.f-card .icon {
  width: 46px; height: 46px; border-radius: var(--r-sm);
  background: var(--sky-light); display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px;
  color: var(--sky); flex-shrink: 0;
}
.f-card .icon svg { width: 22px; height: 22px; stroke-width: 2; }

/* Tags */
.tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.tag  {
  font-size: .68rem; font-weight: 600; padding: 4px 12px;
  border-radius: 100px; background: var(--soft);
  color: var(--t2); border: 1px solid var(--edge); letter-spacing: .3px;
  font-family: var(--f-mono);
}
.tag-sky  { background: var(--sky-light);  border-color: rgba(91,192,222,.3);  color: var(--sky-h); }
.tag-teal { background: var(--teal-light); border-color: rgba(78,205,196,.3);  color: var(--teal-h); }
.tag-coral{ background: rgba(231,76,60,.08); border-color: rgba(231,76,60,.2); color: var(--coral); }

/* ── Page Hero ── */
.pg-hero {
  padding: 120px 0 64px;
  background: linear-gradient(160deg, var(--white) 0%, var(--soft) 100%);
  position: relative; overflow: hidden;
}
.pg-hero::after {
  content: ''; position: absolute; top: 0; right: 0;
  width: 40%; height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(91,192,222,.04) 100%);
  pointer-events: none;
}
.pg-hero h1 { margin-bottom: 16px; }
.pg-hero p  { font-size: 1.12rem; max-width: 620px; margin-top: 10px; }

/* ── Dark / Slate Sections ── */
.sec-dark { background: var(--slate); }
.sec-dark h2    { color: #fff; }
.sec-dark h3    { color: #fff; }
.sec-dark h4    { color: rgba(255,255,255,.85); }
.sec-dark p     { color: rgba(255,255,255,.52); }
.sec-dark .eyebrow { color: var(--teal); }
.sec-dark .section-hdr h2 { color: #fff; }
.sec-dark .section-hdr p  { color: rgba(255,255,255,.5); }
/* Metrics cards inside dark sections */
.sec-dark .m-card { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.09); }
.sec-dark .m-card h3 { color: #fff; }
.sec-dark .m-card p  { color: rgba(255,255,255,.45); }
/* Feature cards inside dark sections */
.sec-dark .f-card { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); }
.sec-dark .f-card h3 { color: #fff; }
.sec-dark .f-card p  { color: rgba(255,255,255,.45); }
.sec-dark .f-card .icon { background: rgba(91,192,222,.12); }

.sec-navy { background: var(--navy); }
.sec-navy h2, .sec-navy h3, .sec-navy h4 { color: #fff; }
.sec-navy p { color: rgba(255,255,255,.5); }

/* ── Score Cards (dark bg) ── */
.score-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 16px; margin-top: 48px;
}
.score-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r); padding: 30px; text-align: center; position: relative;
}
.score-card::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 52px; height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--teal));
  border-radius: 0 0 3px 3px;
}
.score-val   { font-family: var(--f-head); font-size: 2.2rem; font-weight: 800; color: var(--teal); }
.score-title { font-weight: 600; font-size: .92rem; color: #fff; margin: 8px 0 6px; }
.score-desc  { font-size: .76rem; color: rgba(255,255,255,.35); font-family: var(--f-mono); }
@media (max-width: 860px) { .score-grid { grid-template-columns: repeat(2,1fr); } }

/* ── 3-Gate Pipeline ── */
.gate-pipeline {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 18px; margin-top: 44px;
}
.gate-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r); padding: 32px; position: relative; overflow: hidden;
  transition: border-color .3s, background .3s;
}
.gate-card:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); }
.gate-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.gate-1::before { background: linear-gradient(90deg, #22c55e, rgba(34,197,94,.2)); }
.gate-2::before { background: linear-gradient(90deg, var(--sky), var(--teal)); }
.gate-3::before { background: linear-gradient(90deg, var(--coral-2), var(--coral)); }
.gate-num {
  font-family: var(--f-mono); font-size: .64rem; font-weight: 700;
  letter-spacing: 1.2px; padding: 3px 10px; border-radius: 4px;
  display: inline-block; margin-bottom: 14px;
}
.gate-1 .gate-num { background: rgba(34,197,94,.12);  color: #22c55e; }
.gate-2 .gate-num { background: var(--sky-light);      color: var(--sky); }
.gate-3 .gate-num { background: rgba(231,76,60,.12);   color: var(--coral-2); }
.gate-card h3  { color: #fff; font-size: 1.08rem; margin-bottom: 10px; }
.gate-card p   { font-size: .875rem; color: rgba(255,255,255,.44); line-height: 1.7; }
.gate-card ul  { margin-top: 14px; }
.gate-card li  {
  font-size: .82rem; color: rgba(255,255,255,.4);
  padding: 5px 0 5px 17px; position: relative; line-height: 1.55;
}
.gate-card li::before {
  content: ''; position: absolute; left: 0; top: 12px;
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.18);
}
@media (max-width: 860px) { .gate-pipeline { grid-template-columns: 1fr; } }

/* ── Comparison Table ── Always white bg, readable in any section ── */
.comp-wrap {
  overflow-x: auto; border-radius: var(--r);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 8px 40px rgba(0,0,0,.25);
  background: #fff;
}
.comp-tbl  { width: 100%; border-collapse: collapse; font-size: .875rem; background: #fff; }
.comp-tbl th, .comp-tbl td {
  padding: 15px 20px; text-align: left;
  border-bottom: 1px solid #EDF2F7; background: #fff;
}
.comp-tbl tbody tr:nth-child(even) td { background: #F8FAFC; }
.comp-tbl thead th {
  background: #F1F5F9; font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .7px; color: #64748B;
  white-space: nowrap;
}
.comp-tbl thead th:nth-child(2) {
  background: linear-gradient(135deg, var(--sky), var(--teal)); color: #fff;
}
.comp-tbl tbody tr:last-child td { border-bottom: none; }
.comp-tbl tbody tr:nth-child(even) th { background: #F1F5F9; }
.comp-tbl td:first-child { font-weight: 600; color: #1E293B; background: inherit; }
.comp-tbl .chk { color: #0D9488; font-weight: 700; }
.comp-tbl .prt { color: #D97706; }
.comp-tbl .crs { color: #E74C3C; }

/* ── Tech Stack (dark bg) ── */
.tech-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(210px,1fr)); gap: 12px; }
.tech-item {
  display: flex; align-items: center; gap: 14px; padding: 16px 18px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-sm); transition: background .2s, border-color .2s;
}
.tech-item:hover { background: rgba(255,255,255,.07); border-color: rgba(91,192,222,.2); }
.tech-item strong { color: #fff; font-size: .88rem; }
.tech-item span   { font-size: .8rem; color: rgba(255,255,255,.42); }
.tech-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  background: var(--teal);
}

/* ── Prose ── */
.mw-prose { max-width: 740px; margin: 0 auto; }
.mw-prose p    { margin-bottom: 22px; font-size: 1.04rem; }
.mw-prose h2   { margin-bottom: 16px; margin-top: 52px; }
.mw-prose h2:first-child { margin-top: 0; }
.mw-prose ul   { margin-bottom: 22px; padding-left: 1.4em; list-style: disc; }
.mw-prose li   { margin-bottom: 7px; color: var(--t2); }
.mw-prose ol   { margin-bottom: 22px; padding-left: 1.4em; list-style: decimal; }
.mw-prose strong { color: var(--t1); }

/* ── Pricing ── */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; align-items: start; }
.price-card {
  background: var(--white); border: 1px solid var(--edge);
  border-radius: var(--r-xl); padding: 40px 36px;
  transition: box-shadow .3s, transform .3s; position: relative;
}
.price-card:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); }
.price-card.popular {
  border: 2px solid var(--sky);
  box-shadow: 0 0 0 4px var(--sky-light), var(--sh-md);
}
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--sky), var(--teal));
  color: #fff; padding: 5px 20px; border-radius: 100px;
  font-size: .7rem; font-weight: 700; letter-spacing: .6px;
  white-space: nowrap; font-family: var(--f-mono);
}
.price-tier { font-family: var(--f-mono); font-size: .68rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--t3); margin-bottom: 12px; }
.price-amt  { font-family: var(--f-head); font-size: 3.2rem; font-weight: 800; color: var(--t1); line-height: 1; }
.price-amt span { font-size: .9rem; font-weight: 500; color: var(--t3); margin-left: 3px; }
.price-seg  { font-size: .85rem; color: var(--t3); margin: 12px 0 28px; line-height: 1.5; }
.price-feats { display: flex; flex-direction: column; gap: 11px; margin-bottom: 34px; }
.price-feats li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .875rem; color: var(--t2); line-height: 1.55;
}
.price-feats li svg { flex-shrink: 0; width: 16px; height: 16px; color: var(--teal); margin-top: 1px; stroke-width: 2.5; }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } }

/* ── Module Layout ── */
.mod {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  padding: 80px 0; border-bottom: 1px solid var(--edge-l);
}
.mod:last-child { border-bottom: none; }
.mod.rev  { direction: rtl; }
.mod.rev > * { direction: ltr; }
.mod-n { font-family: var(--f-mono); font-size: .68rem; color: var(--sky); letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 12px; display: block; }
.mod h2 { margin-bottom: 18px; }
.mod-list { margin: 22px 0; display: flex; flex-direction: column; gap: 11px; }
.mod-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .92rem; color: var(--t2); line-height: 1.62;
}
.mod-list svg { flex-shrink: 0; width: 18px; height: 18px; color: var(--teal); margin-top: 1px; stroke-width: 2; }
.mod-vis { display: flex; align-items: center; justify-content: center; }
@media (max-width: 900px) {
  .mod, .mod.rev { grid-template-columns: 1fr; direction: ltr; gap: 40px; }
  .mod-vis { display: none; }
}

/* ── Steps ── */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.step  { text-align: center; padding: 32px 20px; }
.step-n {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--teal));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono); font-weight: 700; font-size: 1.1rem;
  margin: 0 auto 18px; box-shadow: 0 6px 20px var(--sky-glow);
}
.step h4 { margin-bottom: 10px; }
.step p  { font-size: .875rem; color: var(--t2); line-height: 1.62; }
@media (max-width: 768px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }

/* ── Metrics ── */
.m-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.m-card {
  text-align: center; padding: 44px 32px;
  background: var(--white); border: 1px solid var(--edge);
  border-radius: var(--r-xl); transition: transform .3s, box-shadow .3s;
}
.m-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.m-num {
  font-family: var(--f-mono); font-size: 3rem; font-weight: 700;
  background: linear-gradient(135deg, var(--sky), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1; margin-bottom: 14px;
}
.m-card h3 { margin-bottom: 10px; }
.m-card p  { color: var(--t2); font-size: .9rem; line-height: 1.65; }
@media (max-width: 768px) { .m-grid { grid-template-columns: 1fr; } }

/* ── Blog ── */
.blog-layout { display: grid; grid-template-columns: 200px 1fr; gap: 64px; align-items: start; }
.blog-sidebar { position: sticky; top: calc(var(--hdr) + 24px); }
.blog-toc h4 {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--t3); margin-bottom: 14px; font-family: var(--f-mono);
}
.blog-toc a {
  display: block; font-size: .87rem; color: var(--t2);
  padding: 8px 0 8px 14px; border-left: 2px solid var(--edge);
  margin-bottom: 2px; transition: all .2s;
}
.blog-toc a:hover, .blog-toc a.active { color: var(--sky); border-left-color: var(--sky); }
.post { margin-bottom: 80px; padding-bottom: 80px; border-bottom: 1px solid var(--edge); }
.post:last-child { border-bottom: none; margin-bottom: 0; }
.post-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.post-badge {
  font-size: .68rem; font-weight: 700; padding: 3px 10px;
  border-radius: 4px; font-family: var(--f-mono); letter-spacing: .5px;
}
.badge-launch    { background: var(--sky-light);          color: var(--sky-h); }
.badge-technical { background: rgba(37,99,235,.1);         color: #2563EB; }
.badge-product   { background: rgba(22,163,74,.1);         color: #16A34A; }
.badge-insight   { background: rgba(139,92,246,.1);        color: #7c3aed; }
.badge-li        { background: var(--soft);                color: var(--t3); }
.post-date { font-size: .8rem; color: var(--t3); }
.post h2   { margin-bottom: 22px; font-size: clamp(1.4rem,2.5vw,1.9rem); }
.post p    { margin-bottom: 18px; }
.post ul   { margin: 0 0 20px 1.3em; list-style: disc; }
.post li   { margin-bottom: 6px; color: var(--t2); }
.post ol   { margin: 0 0 20px 1.3em; list-style: decimal; }
.post h3   { margin: 30px 0 13px; }
.post-hl {
  background: var(--sky-light); border-left: 3px solid var(--sky);
  padding: 22px 26px; border-radius: 0 var(--r-sm) var(--r-sm) 0; margin: 28px 0;
}
.post-hl p  { color: var(--t1); font-size: .97rem; margin: 0; }
.post-tags  { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 26px; }
.post-cta {
  background: var(--soft); border: 1px solid var(--edge);
  border-radius: var(--r); padding: 30px; text-align: center; margin-top: 34px;
}
.post-cta h3 { margin-bottom: 10px; font-size: 1.15rem; }
.post-cta p  { font-size: .9rem; margin-bottom: 22px; }
@media (max-width: 760px) { .blog-layout { grid-template-columns: 1fr; } .blog-sidebar { display: none; } }

/* ── Forms ── */
.form-card {
  max-width: 680px; margin: 0 auto;
  background: var(--white); border: 1px solid var(--edge);
  border-radius: var(--r-xl); padding: 52px 48px; box-shadow: var(--sh-lg);
}
.fg { margin-bottom: 22px; }
.fg label { display: block; font-size: .82rem; font-weight: 600; color: var(--t1); margin-bottom: 8px; }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--edge);
  border-radius: var(--r-sm); font-size: .9rem; color: var(--t1);
  background: var(--white); transition: border-color .2s, box-shadow .2s; outline: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--sky); box-shadow: 0 0 0 3px var(--sky-light);
}
.fg textarea  { resize: vertical; min-height: 120px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.f-submit {
  width: 100%; padding: 16px; background: var(--coral-grad); color: #fff;
  border: none; border-radius: var(--r-sm); font-size: .95rem; font-weight: 600;
  cursor: pointer; transition: all .25s; box-shadow: 0 4px 14px var(--coral-glow);
}
.f-submit:hover { transform: translateY(-1px); box-shadow: 0 6px 20px var(--coral-glow); }
@media (max-width: 600px) { .form-card { padding: 32px 24px; } .f-row { grid-template-columns: 1fr; } }

/* ── Contact ── */
.contact-g { display: grid; grid-template-columns: 1fr 2fr; gap: 72px; align-items: start; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 30px; }
.contact-icon {
  width: 44px; height: 44px; border-radius: var(--r-sm);
  background: var(--sky-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; color: var(--sky); stroke-width: 2; }
.contact-item h4   { margin-bottom: 4px; font-size: .95rem; }
.contact-item p, .contact-item a { font-size: .9rem; color: var(--t2); }
.contact-item a:hover { color: var(--sky); }
@media (max-width: 800px) { .contact-g { grid-template-columns: 1fr; } }

/* ── Design Partner Banner ── */
.dp-banner {
  background: linear-gradient(135deg, rgba(91,192,222,.08), rgba(78,205,196,.04));
  border: 1px solid rgba(91,192,222,.22); border-radius: var(--r-xl);
  padding: 44px 48px; display: flex; align-items: center;
  justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.dp-banner h3 { margin-bottom: 8px; font-size: 1.25rem; }
.dp-banner p  { font-size: .9rem; color: var(--t2); max-width: 520px; }
.dp-star {
  font-size: .68rem; font-weight: 700; font-family: var(--f-mono);
  color: var(--sky); letter-spacing: 1.2px; margin-bottom: 10px; text-transform: uppercase;
}

/* ── Testimonial ── */
.testimonial {
  background: var(--slate); border-radius: var(--r-xl);
  padding: 52px 56px; text-align: center;
  max-width: 740px; margin: 64px auto 0;
  border: 1px solid rgba(255,255,255,.06);
}
.testimonial blockquote {
  font-size: 1.22rem; color: rgba(255,255,255,.88); line-height: 1.72;
  font-style: italic; margin-bottom: 26px; font-family: var(--f-head);
}
.testimonial cite { font-size: .85rem; color: rgba(255,255,255,.4); font-style: normal; font-family: var(--f-mono); }
.testimonial cite strong { color: var(--teal); }

/* ── Integrations ── */
.int-wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.int-badge {
  padding: 9px 22px; background: var(--white); border: 1px solid var(--edge);
  border-radius: 100px; font-size: .84rem; font-weight: 500; color: var(--t2);
  transition: all .22s;
}
.int-badge:hover { border-color: var(--sky); color: var(--sky); box-shadow: 0 2px 12px var(--sky-light); }

/* ── CTA Band ── */
.cta { background: var(--slate); color: #fff; padding: 88px 0; text-align: center; }
.cta h2 { color: #fff; margin-bottom: 18px; }
.cta p  { color: rgba(255,255,255,.52); max-width: 560px; margin: 0 auto 34px; font-size: 1.06rem; }
.cta .eyebrow { color: var(--teal); }

/* ── Footer ── */
.ftr { background: var(--navy-2); color: rgba(255,255,255,.38); padding: 80px 0 40px; }
.ftr h5   { color: #fff; font-size: .82rem; font-family: var(--f-head); font-weight: 700; margin-bottom: 18px; letter-spacing: .2px; }
.ftr a    { color: rgba(255,255,255,.38); font-size: .875rem; }
.ftr a:hover { color: var(--sky); }
.ftr-g { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.ftr-g ul li { margin-bottom: 10px; }
.ftr-brand p  { color: rgba(255,255,255,.32); font-size: .87rem; line-height: 1.72; margin-top: 16px; max-width: 280px; }
.ftr-bot {
  border-top: 1px solid rgba(255,255,255,.07); margin-top: 52px; padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8rem; flex-wrap: wrap; gap: 12px;
}
.ftr-links { display: flex; gap: 22px; }
@media (max-width: 860px) { .ftr-g { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .ftr-g { grid-template-columns: 1fr; } }

/* ── Reveal Animations ── */
html.js-ready .reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}
html.js-ready .reveal.vis { opacity: 1; transform: none; }
html.js-ready .reveal.d1  { transition-delay: .1s; }
html.js-ready .reveal.d2  { transition-delay: .2s; }
html.js-ready .reveal.d3  { transition-delay: .3s; }
html.js-ready .reveal.d4  { transition-delay: .4s; }
.reveal { opacity: 1; transform: none; }

/* ── Utility ── */
.text-sky   { color: var(--sky) !important; }
.text-teal  { color: var(--teal) !important; }
.text-coral { color: var(--coral) !important; }
.text-white { color: #fff !important; }
.text-center{ text-align: center; }
.mt-0 { margin-top: 0 !important; }

/* ── 404 / Thank-you ── */
.hero-404 {
  min-height: 80vh; display: flex; align-items: center;
  justify-content: center; text-align: center;
  background: linear-gradient(160deg, var(--white) 0%, var(--soft) 100%);
  padding: 80px 0;
}
.code-404 {
  font-family: var(--f-mono); font-size: 7rem; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, var(--sky), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 24px;
}
