/* =============================================================
   HubSpot defaults reset / override
   --------------------------------------------------------------
   HubSpot wraps coded templates in .body-wrapper / .row-fluid /
   .row-fluid-wrapper / .span12 and ships layout.css + main.css
   which set default body, button, heading, and form styles that
   collide with custom designs. This block neutralizes them so the
   Voze styles below render the way they did in the static mockups.

   If you see a HubSpot default still winning, open DevTools, find
   the offending class (usually .body-wrapper or .row-fluid-wrapper),
   and add a targeted override here.
   ============================================================= */

/* Kill HubSpot's wrapper layout so it doesn't impose a grid on us */
body.hs-content-id-PAGE_ID,
body,
.body-wrapper,
.body-container,
.body-container-wrapper,
.row-fluid-wrapper,
.row-fluid,
.row-fluid [class*="span"] {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  min-height: 0;
}

/* HubSpot's main.css gives body a fixed font + line-height we don't want */
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif !important;
  line-height: 1.5;
  color: inherit;
  background: #ffffff;
}

/* HubSpot styles headings with extra margin and bumps font-weight; we control these per-component */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}

/* HubSpot resets links to blue underlined — let our component CSS win */
a {
  color: inherit;
  text-decoration: none;
}

/* HubSpot styles buttons with its own theme — neutralize */
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

/* HubSpot adds margin-bottom to <p> globally; keep it predictable */
p { margin: 0; }

/* HubSpot's img defaults can cause layout shifts */
img { max-width: 100%; height: auto; display: block; }

/* End HubSpot overrides — original Voze styles begin below */

/* ============================================================
   Voze Homepage — visual styles
   System: Sora (display) · DM Sans (body) · IBM Plex Mono (eyebrow)
   Locked palette per IA spec §5
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  /* Brand */
  --blue:        #2563EB;
  --blue-l:      #3B82F6;
  --blue-pale:   #EFF6FF;
  --blue-tint:   #DBEAFE;
  --blue-dark:   #1D4ED8;

  /* Dark surface system (slightly cooler & richer than slate) */
  --navy:        #080E1A;
  --navy-2:      #050A14;
  --card:        #0F1929;
  --card-2:      #141E30;
  --border-dk:   rgba(255,255,255,.07);
  --border-dk-2: rgba(255,255,255,.12);
  --border-dk-3: rgba(255,255,255,.20);

  /* Light surface system */
  --white:       #FFFFFF;
  --ink:         #0F172A;
  --ink-2:       #1E293B;
  --gray-50:     #F8FAFC;
  --gray-100:    #F1F5F9;
  --gray-200:    #E2E8F0;
  --gray-300:    #CBD5E1;
  --gray-400:    #94A3B8;
  --gray-500:    #64748B;
  --gray-600:    #475569;
  --gray-700:    #334155;
  --gray-800:    #1E293B;

  /* Semantic */
  --success: #16A34A;
  --warn:    #F59E0B;
  --danger:  #EF4444;
  --rose:    #F43F5E;

  /* Type */
  --mono:    'IBM Plex Mono', ui-monospace, monospace;
  --sans:    'DM Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --display: 'Sora', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Container */
  --container: 1240px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(15,23,42,.06);
  --shadow-md:  0 8px 24px rgba(15,23,42,.08);
  --shadow-lg:  0 24px 60px rgba(15,23,42,.10);
  --shadow-xl:  0 40px 80px rgba(0,0,0,.55);
  --shadow-cta: 0 10px 30px rgba(37,99,235,.35);
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'ss01', 'cv11';
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s, background .2s, border-color .2s, box-shadow .2s;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  letter-spacing: -.005em;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow-cta);
}
.btn-primary:hover { background: var(--blue-l); transform: translateY(-1px); box-shadow: 0 14px 36px rgba(37,99,235,.45); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.22); }
.btn-ghost:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.4); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--gray-300); }
.btn-outline:hover { border-color: var(--gray-400); background: var(--gray-50); }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: 68px;
  display: flex;
  align-items: center;
  padding: 0 32px;
  background: rgba(8,14,26,.88);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--border-dk);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-logo { display: flex; align-items: center; gap: 8px; }
.nav-logo img { height: 22px; width: auto; opacity: .96; }
.nav-links {
  list-style: none;
  display: flex;
  gap: 4px;
  margin-left: 28px;
  align-items: center;
}
.nav-links > li { position: relative; }
.nav-links > li > a, .nav-links > li > button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.74);
  border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav-links > li > a:hover,
.nav-links > li > button:hover { color: #fff; background: rgba(255,255,255,.04); }
.nav-links .chevron { width: 10px; height: 10px; opacity: .6; }
.nav-cta-wrap { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.nav-login {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.74);
  transition: color .15s;
}
.nav-login:hover { color: #fff; }
.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 2px 12px rgba(37,99,235,.4);
}
.nav-cta:hover { background: var(--blue-l); transform: translateY(-1px); box-shadow: 0 4px 18px rgba(37,99,235,.55); }

/* Dropdowns */
.nav-dd {
  position: absolute;
  top: calc(100% + 8px);
  left: -10px;
  min-width: 260px;
  background: var(--card);
  border: 1px solid var(--border-dk-2);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 30px 60px rgba(0,0,0,.5);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .15s, transform .15s;
}
.nav-dd::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: -12px;
  height: 12px;
}
.nav-links > li:hover .nav-dd { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-dd a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  border-radius: 8px;
}
.nav-dd a:hover { background: rgba(59,130,246,.10); color: #fff; }
.nav-dd a small {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,.48);
  margin-top: 2px;
}
.nav-dd-rule { height: 1px; background: var(--border-dk); margin: 6px 6px; }
.nav-dd .see-all { color: var(--blue-l); }

/* ─── HERO ─── */
.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  padding: 168px 0 120px;
  overflow: hidden;
  isolation: isolate;
}
/* dot grid */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(37,99,235,.06) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, #000, transparent 95%);
  z-index: 0;
}
.hero-inner {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}
.glow {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(8px);
}
.glow-r {
  right: -260px; top: -160px;
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(37,99,235,.18) 0%, transparent 65%);
}
.glow-l {
  left: -300px; bottom: -240px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(59,130,246,.10) 0%, transparent 65%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue-l);
  margin-bottom: 26px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--blue-l);
}
.hero-h {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(44px, 5.6vw, 76px);
  line-height: 1.04;
  letter-spacing: -.025em;
  margin-bottom: 28px;
  color: #fff;
  text-wrap: balance;
}
.hero-h .em {
  color: var(--blue-l);
  font-style: italic;
  font-weight: 500;
}
.hero-rule {
  width: 88px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
  margin: 22px 0 26px;
}
.hero-sub {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255,255,255,.74);
  max-width: 560px;
  margin-bottom: 36px;
  text-wrap: pretty;
}
.hero-sub strong { color: #fff; font-weight: 600; }
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-actions .btn-ghost svg { opacity: .7; }
.hero-foot {
  padding-top: 32px;
  border-top: 1px solid var(--border-dk);
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero-foot-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  white-space: nowrap;
}
.hero-foot-logos {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-foot-logos .wm {
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  letter-spacing: -.005em;
  white-space: nowrap;
}

/* ─── HERO VISUAL: phone + signal float ─── */
.hero-visual {
  position: relative;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone {
  position: relative;
  width: 290px; height: 590px;
  border-radius: 44px;
  background: #1A2436;
  border: 1px solid var(--border-dk-3);
  box-shadow:
    0 50px 90px rgba(0,0,0,.55),
    0 0 0 10px rgba(0,0,0,0.5),
    0 0 80px rgba(37,99,235,.22);
  padding: 10px;
  transform: rotate(2.2deg);
  overflow: hidden;
}
.phone-screen {
  background: #F0F4F8;
  border-radius: 36px;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* iOS status bar */
.ios-status {
  position: relative;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px 0 26px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  z-index: 2;
}
.ios-status.dark { color: #fff; }
.ios-status .right { display: flex; align-items: center; gap: 5px; }

/* Navy header in product */
.phone-header {
  background: #1A2436;
  padding: 0 18px 22px;
  margin-top: -44px;
  padding-top: 50px;
  border-radius: 0 0 24px 24px;
  position: relative;
  color: #fff;
}
.phone-header-row {
  display: flex; align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.phone-header-back {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.10);
  display: grid; place-items: center;
  color: #fff;
}
.phone-header-title {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.95);
  letter-spacing: -.01em;
}
.phone-header-sub {
  font-family: var(--sans);
  font-size: 11px;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  margin-top: 1px;
}

/* Recording surface (Note composer style) */
.rec-body {
  padding: 16px;
  display: flex; flex-direction: column;
  gap: 12px;
  flex: 1;
  position: relative;
}
.rec-card {
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 1px 0 rgba(15,23,42,.04);
}
.rec-card .lbl {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  color: #8E99AB;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}
.rec-card .row {
  display: flex; align-items: center; gap: 10px;
}
.rec-card .ico {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--blue-pale);
  color: var(--blue);
  display: grid; place-items: center;
}
.rec-card .ico svg { width: 18px; height: 18px; }
.rec-card .co {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  color: #111827;
  letter-spacing: -.01em;
  flex: 1;
}
.rec-card .meta {
  font-family: var(--sans);
  font-size: 11px;
  color: #8E99AB;
  margin-top: 2px;
}

.chips {
  display: flex; flex-wrap: wrap; gap: 5px;
  margin-top: 6px;
}
.chip {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 999px;
  background: #F0F4F8;
  color: #4A5468;
}
.chip.active { background: #1A55F0; color: #fff; }

/* The recording panel — the brand moment */
.rec-mic {
  margin-top: auto;
  background: linear-gradient(180deg, #2563EB, #1D4ED8);
  border-radius: 18px;
  padding: 18px 16px 14px;
  color: #fff;
  box-shadow: 0 14px 30px rgba(37,99,235,.45);
  position: relative;
  overflow: hidden;
}
.rec-mic::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 20% 0%, rgba(255,255,255,.20), transparent 60%);
  pointer-events: none;
}
.rec-mic-top {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
  position: relative;
}
.rec-mic-bub {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  display: grid; place-items: center;
  flex-shrink: 0;
  position: relative;
}
.rec-mic-bub::before, .rec-mic-bub::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.6);
  animation: rec-ring 2.2s ease-out infinite;
}
.rec-mic-bub::after { animation-delay: 1.1s; }
@keyframes rec-ring {
  0%   { transform: scale(1); opacity: .9; }
  100% { transform: scale(1.5); opacity: 0; }
}
.rec-mic-meta { flex: 1; }
.rec-mic-meta .lbl {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.85);
  margin-bottom: 3px;
  display: inline-flex; gap: 6px; align-items: center;
}
.rec-mic-meta .lbl::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #FF6B6B;
  box-shadow: 0 0 0 3px rgba(255,107,107,.25);
  animation: rec-blink 1.5s ease-in-out infinite;
}
@keyframes rec-blink { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
.rec-mic-meta .dur {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -.01em;
}
.rec-mic-stop {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.25);
  flex-shrink: 0;
}
.rec-mic-stop::after {
  content: '';
  width: 12px; height: 12px;
  background: #fff;
  border-radius: 3px;
}
.waveform {
  display: flex; align-items: center; gap: 3px;
  height: 28px;
  position: relative;
}
.waveform span {
  flex: 1;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
  animation: wave 1.2s ease-in-out infinite;
  transform-origin: center;
}
.waveform span:nth-child(1)  { height: 30%; animation-delay: 0.00s; }
.waveform span:nth-child(2)  { height: 60%; animation-delay: 0.08s; }
.waveform span:nth-child(3)  { height: 85%; animation-delay: 0.16s; }
.waveform span:nth-child(4)  { height: 45%; animation-delay: 0.24s; }
.waveform span:nth-child(5)  { height: 90%; animation-delay: 0.32s; }
.waveform span:nth-child(6)  { height: 65%; animation-delay: 0.06s; }
.waveform span:nth-child(7)  { height: 35%; animation-delay: 0.14s; }
.waveform span:nth-child(8)  { height: 80%; animation-delay: 0.22s; }
.waveform span:nth-child(9)  { height: 50%; animation-delay: 0.30s; }
.waveform span:nth-child(10) { height: 72%; animation-delay: 0.18s; }
.waveform span:nth-child(11) { height: 40%; animation-delay: 0.26s; }
.waveform span:nth-child(12) { height: 88%; animation-delay: 0.04s; }
.waveform span:nth-child(13) { height: 55%; animation-delay: 0.12s; }
.waveform span:nth-child(14) { height: 78%; animation-delay: 0.20s; }
.waveform span:nth-child(15) { height: 45%; animation-delay: 0.28s; }
.waveform span:nth-child(16) { height: 65%; animation-delay: 0.10s; }
.waveform span:nth-child(17) { height: 50%; animation-delay: 0.18s; }
.waveform span:nth-child(18) { height: 82%; animation-delay: 0.06s; }
.waveform span:nth-child(19) { height: 38%; animation-delay: 0.24s; }
.waveform span:nth-child(20) { height: 70%; animation-delay: 0.16s; }
@keyframes wave {
  0%, 100% { transform: scaleY(1); }
  50%      { transform: scaleY(.35); }
}

/* Floating signal card */
.signal-float {
  position: absolute;
  left: -32px;
  bottom: 70px;
  width: 290px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.55), 0 0 0 1px rgba(0,0,0,.05);
  transform: rotate(-3.5deg);
  animation: float 6s ease-in-out infinite;
  z-index: 3;
}
@keyframes float {
  0%, 100% { transform: rotate(-3.5deg) translateY(0); }
  50%      { transform: rotate(-3.5deg) translateY(-12px); }
}
.sf-top { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.sf-tag {
  font-family: var(--sans);
  font-size: 10px; font-weight: 700;
  padding: 4px 10px;
  background: #FEF3C7;
  color: #92400E;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.sf-tag.opp { background: #DCFCE7; color: #166534; }
.sf-tag.risk { background: #FEE2E2; color: #991B1B; }
.sf-time { font-family: var(--mono); font-size: 11px; color: var(--gray-500); margin-left: auto; }
.sf-title { font-family: var(--display); font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 6px; line-height: 1.3; letter-spacing: -.01em; }
.sf-body { font-size: 12.5px; color: var(--gray-500); line-height: 1.5; }
.sf-src { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--gray-100); font-size: 11.5px; color: var(--gray-500); display: flex; align-items: center; gap: 8px; }
.sf-avatar {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--blue-pale); color: var(--blue);
  display: grid; place-items: center;
  font-family: var(--sans);
  font-size: 9.5px; font-weight: 700;
}

/* Floating note-extracted card (right side of phone) */
.task-float {
  position: absolute;
  right: -28px;
  top: 80px;
  width: 230px;
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45), 0 0 0 1px rgba(0,0,0,.05);
  transform: rotate(3.5deg);
  animation: float2 7s ease-in-out infinite;
  z-index: 3;
}
@keyframes float2 {
  0%, 100% { transform: rotate(3.5deg) translateY(0); }
  50%      { transform: rotate(3.5deg) translateY(-8px); }
}
.tf-eyebrow {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-flex; gap: 6px; align-items: center;
}
.tf-eyebrow svg { width: 12px; height: 12px; }
.tf-task {
  display: flex; gap: 9px; align-items: flex-start;
  margin-bottom: 8px;
  font-size: 12.5px;
  color: var(--ink);
  line-height: 1.35;
}
.tf-task:last-child { margin-bottom: 0; }
.tf-task .box {
  flex-shrink: 0;
  width: 14px; height: 14px;
  border-radius: 4px;
  border: 1.5px solid var(--gray-300);
  margin-top: 1px;
}
.tf-task.done .box {
  background: var(--blue);
  border-color: var(--blue);
  display: grid; place-items: center;
}
.tf-task.done .box::after {
  content: '';
  width: 8px; height: 4px;
  border-left: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}
.tf-task.done .txt { color: var(--gray-400); text-decoration: line-through; }
.tf-task .txt { font-weight: 500; }

/* ─── LOGO BAR ─── */
.logo-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 56px 0 60px;
  position: relative;
}
.logo-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
.logo-bar p {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--gray-400);
  text-align: center;
  margin-bottom: 36px;
  font-weight: 500;
}
.logo-bar p::before, .logo-bar p::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gray-200);
  vertical-align: middle;
  margin: 0 16px;
}
.logo-bar-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px 32px;
  align-items: center;
  justify-items: center;
}
.logo-bar-grid .wm {
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  color: var(--gray-400);
  letter-spacing: -.018em;
  white-space: nowrap;
  transition: color .2s;
  text-align: center;
}
.logo-bar-grid .wm:hover { color: var(--gray-700); }
.logo-bar-grid .wm .sub {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-300);
  font-weight: 500;
  margin-top: 2px;
}

/* ─── SECTIONS ─── */
.section { padding: 120px 0; position: relative; }
.section-alt { background: var(--gray-50); }
.section-inner {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 72px;
}
.section-head.left { text-align: left; margin-left: 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .2em;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--blue);
}
.section-h {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--ink);
  margin-bottom: 22px;
  text-wrap: balance;
}
.section-h .em { color: var(--blue); font-style: italic; font-weight: 500; }
.section-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--gray-500);
  max-width: 640px;
  margin: 0 auto;
  text-wrap: pretty;
}
.section-head.left .section-sub { margin: 0; max-width: 480px; }

/* ─── HOW IT WORKS (3 step grid) ─── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 17%;
  right: 17%;
  height: 1px;
  background-image: linear-gradient(90deg, var(--gray-300) 50%, transparent 50%);
  background-size: 8px 1px;
  z-index: 0;
}
.step {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 32px 30px 36px;
  position: relative;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  z-index: 1;
}
.step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300);
}
.step-num {
  position: relative;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 28px;
  box-shadow: 0 0 0 4px var(--white), 0 0 0 5px var(--gray-200);
}
.step-eyebrow {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 500;
  margin-bottom: 16px;
}
.step-h {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.step-p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 22px;
}
.step-visual {
  border-top: 1px solid var(--gray-100);
  padding-top: 18px;
  margin-top: auto;
}
.step-vis-row {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--gray-600);
}
.step-vis-row .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.step-vis-row .dot.amber { background: var(--warn); }
.step-vis-row .dot.green { background: var(--success); }
.step-vis-row .mono {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gray-400);
}

/* ─── MANAGER SECTION ─── */
.manager-split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.manager-bullets {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 18px;
  margin-top: 32px;
  margin-bottom: 36px;
}
.manager-bullets li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.5;
}
.manager-bullets .check {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: var(--blue-pale);
  color: var(--blue);
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.manager-bullets .check svg { width: 14px; height: 14px; }
.manager-bullets li strong { color: var(--ink); font-weight: 600; font-family: var(--display); }
.manager-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-weight: 600;
  font-size: 15px;
  transition: gap .2s;
}
.manager-link:hover { gap: 10px; }

/* ─── DASHBOARD MOCKUP (rich, dark) ─── */
.dash-wrap {
  background: var(--navy);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 50px 100px rgba(15,23,42,.20), 0 0 0 1px rgba(15,23,42,.06);
  position: relative;
  overflow: hidden;
}
.dash-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(37,99,235,.06) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, #000 60%, transparent);
}
.dash-chrome {
  display: flex; align-items: center; gap: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-dk);
  margin-bottom: 20px;
  position: relative;
}
.dash-chrome .lights {
  display: flex; gap: 6px;
}
.dash-chrome .lights span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
}
.dash-chrome .lights span:first-child { background: #FF5F57; opacity: .7; }
.dash-chrome .lights span:nth-child(2) { background: #FEBC2E; opacity: .7; }
.dash-chrome .lights span:nth-child(3) { background: #28C840; opacity: .7; }
.dash-chrome .url {
  flex: 1;
  font-family: var(--mono);
  font-size: 11.5px;
  color: rgba(255,255,255,.45);
  text-align: center;
  background: rgba(255,255,255,.04);
  border-radius: 6px;
  padding: 5px 10px;
  max-width: 280px;
  margin: 0 auto;
}
.dash-chrome .url .blue { color: var(--blue-l); }
.dash-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.dash-head-l { display: flex; align-items: center; gap: 14px; }
.dash-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 20px;
  color: white;
  letter-spacing: -.015em;
}
.dash-live {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  color: #6EE7B7;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(16,185,129,0.10);
  border: 1px solid rgba(16,185,129,.25);
  border-radius: 999px;
}
.dash-live::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #6EE7B7;
  box-shadow: 0 0 0 3px rgba(110,231,183,.15);
  animation: rec-blink 1.5s ease-in-out infinite;
}
.dash-date {
  font-family: var(--mono);
  font-size: 11.5px;
  color: rgba(255,255,255,.5);
  letter-spacing: .04em;
}
.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 22px;
  position: relative; z-index: 1;
}
.stat {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dk);
  border-radius: 12px;
  padding: 14px 16px;
}
.stat .l {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 500;
  margin-bottom: 8px;
}
.stat .n {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 700;
  color: white;
  letter-spacing: -.025em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat .n.accent { color: var(--blue-l); }
.stat .d {
  font-family: var(--sans);
  font-size: 11.5px;
  color: rgba(255,255,255,.4);
  font-weight: 500;
}
.stat .d.up { color: #6EE7B7; }
.stat .d.warn { color: #FCD34D; }
.stat .d.dn { color: #FCA5A5; }

.dash-cols {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
  position: relative; z-index: 1;
}
.dash-col h3 {
  font-family: var(--mono);
  font-size: 10.5px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 14px;
  font-weight: 500;
  display: flex; align-items: center; gap: 8px;
}
.dash-col h3 .count {
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.7);
  font-family: var(--mono);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 9.5px;
  font-weight: 600;
}

.signal {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border-dk);
  border-radius: 12px;
  padding: 14px 14px 14px 16px;
  margin-bottom: 10px;
  display: flex; gap: 12px; align-items: flex-start;
  position: relative;
}
.signal::before {
  content: '';
  position: absolute;
  left: 0; top: 14px; bottom: 14px;
  width: 2px;
  border-radius: 2px;
  background: var(--gray-700);
}
.signal.risk::before { background: #EF4444; }
.signal.opp::before  { background: #10B981; }
.signal.comp::before { background: var(--warn); }
.signal-tag {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .1em;
  flex-shrink: 0;
  margin-top: 2px;
}
.signal-tag.risk { background: rgba(239,68,68,0.15); color: #FCA5A5; }
.signal-tag.opp  { background: rgba(16,185,129,0.15); color: #6EE7B7; }
.signal-tag.comp { background: rgba(245,158,11,0.15); color: #FCD34D; }
.signal-body { flex: 1; min-width: 0; }
.signal-t {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  color: white;
  line-height: 1.35;
  margin-bottom: 6px;
  letter-spacing: -.005em;
}
.signal-m {
  font-family: var(--mono);
  font-size: 10.5px;
  color: rgba(255,255,255,.4);
  display: flex; gap: 8px; align-items: center;
}
.signal-m .src { color: rgba(255,255,255,.6); font-weight: 500; }

.reps-list {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border-dk);
  border-radius: 12px;
  padding: 6px 0;
}
.rep-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-dk);
}
.rep-row:last-child { border-bottom: none; }
.rep-av {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(59,130,246,0.15);
  color: var(--blue-l);
  border: 1px solid rgba(59,130,246,.3);
  display: grid; place-items: center;
  font-family: var(--sans);
  font-size: 11px; font-weight: 700;
  flex-shrink: 0;
}
.rep-av.amber {
  background: rgba(245,158,11,.15); color: #FCD34D; border-color: rgba(245,158,11,.3);
}
.rep-av.rose {
  background: rgba(244,63,94,.15); color: #FDA4AF; border-color: rgba(244,63,94,.3);
}
.rep-info { flex: 1; min-width: 0; }
.rep-name {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 600;
  color: white;
  letter-spacing: -.005em;
  margin-bottom: 1px;
}
.rep-act {
  font-family: var(--mono);
  font-size: 10.5px;
  color: rgba(255,255,255,.4);
}
.rep-count {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  color: var(--blue-l);
  letter-spacing: -.01em;
}
.rep-count.amber { color: #FCD34D; }
.rep-count .u {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255,255,255,.4);
  margin-left: 1px;
  font-weight: 500;
}

/* ─── BENEFITS ─── */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 36px 32px 32px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}
.benefit::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  transition: background .2s;
}
.benefit:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300);
}
.benefit:hover::after { background: var(--blue); }
.benefit-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--blue-pale);
  color: var(--blue);
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.benefit-icon svg { width: 22px; height: 22px; }
.benefit-h {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -.015em;
  margin-bottom: 10px;
}
.benefit-p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ─── RESULTS (3 big stats) ─── */
.results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.result {
  padding: 56px 40px;
  text-align: center;
  border-right: 1px solid var(--gray-100);
  position: relative;
}
.result:last-child { border-right: 0; }
.result-eyebrow {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gray-400);
  font-weight: 500;
  margin-bottom: 24px;
}
.result-n {
  font-family: var(--display);
  font-size: 88px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 18px;
  display: inline-block;
}
.result-n .unit {
  font-size: 36px;
  color: var(--blue);
  margin-left: 2px;
  font-weight: 600;
  vertical-align: 36px;
  letter-spacing: -.02em;
}
.result-h {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.01em;
  margin-bottom: 8px;
}
.result-p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.55;
  max-width: 280px;
  margin: 0 auto;
}
.results-footer {
  text-align: center;
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .08em;
  color: var(--gray-400);
}

/* ─── TESTIMONIALS (3-up) ─── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tcard {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 36px 32px;
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.tcard:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.tcard-eyebrow {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 22px;
}
.tcard-quote {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
  letter-spacing: -.015em;
  margin-bottom: 28px;
  flex: 1;
  text-wrap: pretty;
}
.tcard-quote .em { color: var(--blue); font-style: italic; font-weight: 500; }
.tcard-attr {
  display: flex; align-items: center; gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--gray-100);
}
.tcard-av {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  display: grid; place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.tcard-av.amber { background: #FEF3C7; color: #B45309; }
.tcard-av.green { background: #DCFCE7; color: #15803D; }
.tcard-attr .meta { line-height: 1.4; }
.tcard-attr .name { font-weight: 600; font-size: 14.5px; color: var(--ink); }
.tcard-attr .role { font-size: 12.5px; color: var(--gray-500); margin-top: 2px; }

/* ─── FAQ ─── */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item:hover { border-color: var(--gray-300); }
.faq-item[open] { border-color: var(--gray-300); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  letter-spacing: -.015em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  width: 14px; height: 14px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(45deg);
  transition: transform .2s;
  flex-shrink: 0;
  margin-right: 4px;
}
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: 6px; }
.faq-item .faq-body {
  padding: 0 28px 26px;
  font-size: 15.5px;
  color: var(--gray-600);
  line-height: 1.65;
  max-width: 680px;
}

/* ─── FINAL CTA ─── */
.final {
  background: var(--navy);
  color: #fff;
  padding: 130px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(37,99,235,.06) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}
.final-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}
.final-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue-l);
  margin-bottom: 26px;
}
.final-eyebrow::before, .final-eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--blue-l);
}
.final-h {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.05;
  letter-spacing: -.025em;
  color: #fff;
  margin-bottom: 22px;
  text-wrap: balance;
}
.final-h .em { color: var(--blue-l); font-style: italic; font-weight: 500; }
.final-sub {
  font-size: 19px;
  color: rgba(255,255,255,.74);
  margin-bottom: 38px;
  line-height: 1.55;
  text-wrap: pretty;
}
.final-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 24px;
}
.final-note {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

/* ─── FOOTER ─── */
.footer {
  background: var(--navy-2);
  border-top: 1px solid var(--border-dk);
  padding: 80px 0 30px;
  color: rgba(255,255,255,.5);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px 50px;
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 56px;
}
.footer-brand .footer-logo { height: 22px; opacity: .92; margin-bottom: 22px; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.55);
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-socials {
  display: flex; gap: 10px;
}
.footer-socials a {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,.04);
  display: grid; place-items: center;
  color: rgba(255,255,255,.6);
  transition: background .2s, color .2s;
}
.footer-socials a:hover { background: rgba(255,255,255,.10); color: #fff; }
.footer-col h4 {
  font-family: var(--mono);
  font-size: 10.5px;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  transition: color .2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 28px 40px 0;
  border-top: 1px solid var(--border-dk);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,.38);
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom-l { display: flex; gap: 20px; align-items: center; }
.footer-bottom .legal {
  display: flex; gap: 18px;
}
.footer-bottom .legal a { color: rgba(255,255,255,.55); }
.footer-bottom .legal a:hover { color: #fff; }

/* ─── REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .18s; }
.d3 { transition-delay: .30s; }
.d4 { transition-delay: .44s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 80px; }
  .hero-visual { height: 540px; max-width: 480px; margin: 0 auto; }
  .manager-split { grid-template-columns: 1fr; gap: 56px; }
  .footer-inner { grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .results { grid-template-columns: 1fr; }
  .result { border-right: 0; border-bottom: 1px solid var(--gray-100); }
  .result:last-child { border-bottom: 0; }
  .result-n { font-size: 72px; }
}
@media (max-width: 880px) {
  .nav { padding: 0 20px; height: 60px; }
  .nav-links, .nav-login { display: none; }
  .hero { padding: 130px 0 90px; }
  .hero-inner, .section-inner, .logo-bar-inner, .final-inner { padding-left: 24px; padding-right: 24px; }
  .section { padding: 80px 0; }
  .section-head { margin-bottom: 48px; }
  .steps { grid-template-columns: 1fr; gap: 16px; }
  .steps::before { display: none; }
  .benefits { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .dash-stats { grid-template-columns: 1fr 1fr; }
  .dash-cols { grid-template-columns: 1fr; }
  .logo-bar-grid { grid-template-columns: repeat(3, 1fr); gap: 32px 16px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .footer-bottom { padding: 24px 24px 0; }
  .hero-foot { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; justify-content: center; }
}
@media (max-width: 500px) {
  .hero-h { font-size: 40px; }
  .section-h { font-size: 30px; }
  .result-n { font-size: 60px; }
  .dash-wrap { padding: 16px; }
  .testimonial-text { font-size: 18px; }
  .signal-float { left: -10px; width: 260px; }
  .task-float { right: -10px; width: 200px; }
}
