/* =============================================================
   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 site chrome — shared across all marketing pages
   Loaded by: Industries.html, industries/*.html, etc.
   (Voze Homepage.html links homepage.css which has its own copy)
   ============================================================ */

*, *::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 surfaces */
  --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 surfaces */
  --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: 1240px;

  --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-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;
}
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; align-items: center;
  margin-left: 28px;
}
.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 > li > a.active, .nav-links > li > button.active { color: #fff; }
.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); }
.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;
}
/* Invisible bridge so the cursor can cross the gap without losing hover */
.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); }

/* ─── 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);
}
.eyebrow.on-dark { color: var(--blue-l); }
.eyebrow.on-dark::before { background: var(--blue-l); }
.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.on-dark { color: #fff; }
.section-h .em { color: var(--blue); font-style: italic; font-weight: 500; }
.section-h.on-dark .em { color: var(--blue-l); }
.section-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--gray-500);
  max-width: 640px;
  margin: 0 auto;
  text-wrap: pretty;
}
.section-sub.on-dark { color: rgba(255,255,255,.74); }
.section-head.left .section-sub { margin: 0; max-width: 480px; }

/* ─── BREADCRUMB ─── */
.crumb {
  background: var(--white);
  padding: 92px 0 0;
  position: relative;
}
.crumb-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 28px 40px 0;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--gray-400);
  letter-spacing: .04em;
}
.crumb-inner a {
  color: var(--gray-500);
  transition: color .15s;
}
.crumb-inner a:hover { color: var(--blue); }
.crumb-inner .sep { opacity: .5; }
.crumb-inner .here { color: var(--ink); font-weight: 500; }
.crumb.on-dark {
  background: var(--navy);
  padding-top: 68px;
}
.crumb.on-dark + section { padding-top: 60px; }
.crumb.on-dark .crumb-inner { padding-top: 32px; padding-bottom: 0; }
.crumb.on-dark .crumb-inner { color: rgba(255,255,255,.4); }
.crumb.on-dark a { color: rgba(255,255,255,.55); }
.crumb.on-dark a:hover { color: var(--blue-l); }
.crumb.on-dark .here { color: rgba(255,255,255,.9); }

/* ─── 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 BASE ─── */
@media (max-width: 1100px) {
  .footer-inner { grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 880px) {
  .nav { padding: 0 20px; height: 60px; }
  .nav-links, .nav-login { display: none; }
  .section { padding: 80px 0; }
  .section-head { margin-bottom: 48px; }
  .section-inner, .final-inner { padding-left: 24px; padding-right: 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .footer-bottom { padding: 24px 24px 0; }
  .crumb-inner { padding-left: 24px; padding-right: 24px; flex-wrap: wrap; }
}
@media (max-width: 500px) {
  .section-h { font-size: 30px; }
}
