:root {
  --navy: #071a3d;
  --navy-2: #0b285a;
  --blue: #2457f5;
  --blue-light: #65a4ff;
  --sky: #edf5ff;
  --ice: #f6f9fe;
  --ink: #0b1733;
  --muted: #5f6d86;
  --line: #dce5f2;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(7, 26, 61, 0.16);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.page-shell { overflow: hidden; }
.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}
.site-header {
  width: min(1240px, calc(100% - 48px));
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 20;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.7px;
}
.brand-mark {
  width: 29px;
  height: 29px;
  border-radius: 9px;
  background: var(--blue);
  position: relative;
  display: inline-block;
  box-shadow: 0 8px 18px rgba(36, 87, 245, 0.25);
}
.brand-mark .bar {
  position: absolute;
  bottom: 7px;
  width: 3px;
  border-radius: 2px;
  background: white;
  transform: rotate(34deg);
}
.brand-mark .bar-1 { height: 7px; left: 8px; }
.brand-mark .bar-2 { height: 12px; left: 13px; }
.brand-mark .bar-3 { height: 17px; left: 18px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 33px;
  color: #33415e;
  font-size: 14px;
  font-weight: 600;
}
.site-nav a { transition: color .2s ease; }
.site-nav a:hover { color: var(--blue); }
.site-nav .nav-cta {
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--navy);
  color: white;
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 40px;
  height: 40px;
}
.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px auto;
}

.hero {
  min-height: 710px;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 58px;
  align-items: center;
  padding: 70px 0 90px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.35px;
  text-transform: uppercase;
}
.eyebrow.light { color: #8fb8ff; }
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(36, 87, 245, 0.10);
}
.hero h1 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(58px, 6.2vw, 88px);
  line-height: 0.98;
  letter-spacing: -5px;
  margin: 24px 0 28px;
  color: var(--navy);
}
.hero h1 span { color: var(--blue); }
.hero-lede {
  max-width: 570px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
  margin: 0 0 34px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.button {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: white;
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(36, 87, 245, 0.25);
}
.button-primary:hover { box-shadow: 0 16px 32px rgba(36, 87, 245, 0.32); }
.button-secondary {
  border-color: var(--line);
  color: var(--navy);
  background: white;
}
.button-white {
  background: white;
  color: var(--navy);
  width: 100%;
  border: 0;
}
.trust-line {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-line p {
  margin: 0;
  font-size: 13px;
  color: #6e7a91;
}
.avatar-stack {
  display: flex;
  align-items: center;
}
.avatar-stack span {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--sky);
  border: 2px solid white;
  margin-left: -6px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
}
.avatar-stack span:first-child { margin-left: 0; }

.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.dashboard-card {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow);
  border: 1px solid rgba(216, 226, 240, 0.8);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}
.dashboard-topbar {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e8eef7;
  padding: 0 18px;
}
.mini-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: "Manrope";
  font-size: 12px;
  font-weight: 800;
}
.mini-mark {
  width: 18px; height: 18px;
  border-radius: 5px;
  background: var(--blue);
}
.topbar-actions { display: flex; align-items: center; gap: 10px; }
.topbar-actions > span {
  width: 7px; height: 7px; border-radius: 50%; background: #c9d4e5;
}
.profile-chip {
  width: 27px; height: 27px; border-radius: 8px;
  display: grid; place-items: center;
  background: var(--navy); color: white;
  font-size: 8px; font-weight: 800;
}
.dashboard-body { display: grid; grid-template-columns: 116px 1fr; min-height: 412px; }
.dashboard-sidebar {
  padding: 23px 12px;
  background: #f8faff;
  border-right: 1px solid #e9eef7;
}
.side-item {
  display: flex; align-items: center; gap: 8px;
  border-radius: 7px; padding: 9px 8px;
  color: #738099; font-size: 9px; margin-bottom: 4px;
}
.side-item i {
  width: 10px; height: 10px; border: 1.5px solid #a4b0c4; border-radius: 3px;
}
.side-item.active { background: #eaf1ff; color: var(--blue); font-weight: 700; }
.side-item.active i { border-color: var(--blue); background: var(--blue); }
.dashboard-main { padding: 26px 24px; background: #fcfdff; }
.dashboard-heading {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px;
}
.dashboard-heading small { color: #9aa6b8; font-size: 7px; font-weight: 800; letter-spacing: 1px; }
.dashboard-heading h3 { margin: 4px 0 0; font-family: Manrope; font-size: 17px; }
.dashboard-heading button {
  border: 0; border-radius: 7px; background: var(--blue); color: white;
  padding: 9px 12px; font-size: 8px; font-weight: 700;
}
.metric-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 10px; }
.metric-grid article {
  min-height: 88px; border: 1px solid #e4ebf5; border-radius: 11px; padding: 13px;
  background: white;
}
.metric-grid span { color: #77849a; font-size: 8px; display: block; margin-bottom: 7px; }
.metric-grid strong { font-family: Manrope; font-size: 21px; color: var(--navy); }
.metric-grid small { display: block; color: #8793a7; font-size: 7px; margin-top: 5px; }
.progress { height: 4px; border-radius: 4px; background: #e9eff9; margin-top: 9px; overflow: hidden; }
.progress i { height: 100%; display: block; background: var(--blue); border-radius: 4px; }
.dashboard-lower { display: grid; grid-template-columns: 1.45fr .85fr; gap: 10px; margin-top: 10px; }
.activity-panel, .focus-panel {
  border: 1px solid #e4ebf5; border-radius: 11px; background: white; padding: 13px;
}
.panel-title { display: flex; justify-content: space-between; align-items: center; margin-bottom: 11px; }
.panel-title h4 { font-size: 9px; margin: 0; }
.panel-title > span { font-size: 7px; color: #8a97aa; }
.activity-row { display: grid; grid-template-columns: 22px 1fr auto; gap: 8px; align-items: center; padding: 8px 0; border-top: 1px solid #eff3f8; }
.activity-icon {
  width: 19px; height: 19px; border-radius: 6px; background: #e9f1ff; color: var(--blue);
  display: grid; place-items: center; font-size: 8px; font-weight: 800;
}
.activity-icon.phone { background: #eaf8f0; color: #1a9b5a; }
.activity-icon.note { background: #f1edff; color: #7454d8; }
.activity-row strong, .activity-row small { display: block; }
.activity-row strong { font-size: 7px; }
.activity-row small { font-size: 6px; color: #8b97aa; margin-top: 2px; }
.activity-row time { font-size: 6px; color: #9ba6b6; }
.focus-panel label {
  display: flex; align-items: center; gap: 6px; padding: 8px 0;
  border-top: 1px solid #eff3f8; font-size: 7px; color: #5f6e84;
}
.focus-panel input { width: 11px; height: 11px; accent-color: var(--blue); }

.floating-card {
  position: absolute; z-index: 5;
  padding: 12px 14px; border-radius: 13px;
  background: rgba(255,255,255,.95); box-shadow: 0 16px 36px rgba(7,26,61,.15);
  border: 1px solid rgba(220,229,242,.75);
  display: flex; align-items: center; gap: 10px;
  backdrop-filter: blur(12px);
}
.floating-card strong, .floating-card small { display: block; }
.floating-card strong { font-size: 10px; }
.floating-card small { font-size: 8px; color: #7d899d; margin-top: 2px; }
.floating-card-one { left: -26px; bottom: 48px; }
.floating-card-two { right: -26px; top: 65px; }
.float-icon {
  width: 28px; height: 28px; border-radius: 9px;
  display: grid; place-items: center; background: #eaf1ff; color: var(--blue); font-weight: 800;
}
.pulse-dot {
  width: 25px; height: 25px; border-radius: 50%; background: #e9f8f0; position: relative;
}
.pulse-dot::after {
  content: ""; position: absolute; width: 8px; height: 8px; border-radius: 50%;
  background: #22ad69; inset: 0; margin: auto; box-shadow: 0 0 0 5px rgba(34,173,105,.14);
}
.orb { position: absolute; border-radius: 50%; filter: blur(2px); }
.orb-one {
  width: 360px; height: 360px; right: -80px; top: -20px;
  background: radial-gradient(circle, rgba(59,118,255,.18), rgba(59,118,255,0) 68%);
}
.orb-two {
  width: 250px; height: 250px; left: -80px; bottom: -30px;
  background: radial-gradient(circle, rgba(90,193,255,.17), rgba(90,193,255,0) 68%);
}

.logo-strip {
  border-top: 1px solid #edf1f7;
  border-bottom: 1px solid #edf1f7;
  padding: 25px max(24px, calc((100vw - 1180px)/2));
}
.logo-strip p {
  text-align: center; margin: 0 0 16px; color: #9aa4b4;
  font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
}
.logo-items {
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  color: #748096; font-family: Manrope; font-size: 12px; font-weight: 800; letter-spacing: .5px;
}

.problem-section { padding: 130px 0 140px; }
.section-heading { max-width: 720px; }
.section-heading.centered { text-align: center; margin: 0 auto; }
.section-heading h2, .workflow-copy h2, .cta-copy h2 {
  font-family: Manrope;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.08;
  letter-spacing: -2.6px;
  color: var(--navy);
  margin: 18px 0 22px;
}
.section-heading p, .workflow-copy > p, .cta-copy p {
  color: var(--muted); font-size: 17px; line-height: 1.7; margin: 0;
}
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 65px;
}
.feature-card {
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
  position: relative;
  background: linear-gradient(180deg, #fff, #fbfdff);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 50px rgba(7, 26, 61, 0.09);
  border-color: #c8d8ef;
}
.feature-number {
  position: absolute; right: 24px; top: 22px;
  color: #c4cfdf; font-family: Manrope; font-size: 12px; font-weight: 800;
}
.feature-icon {
  width: 76px; height: 76px; border-radius: 20px;
  background: var(--sky); margin: 35px 0 36px; position: relative;
}
.contacts-icon span {
  position: absolute; width: 18px; height: 18px; border-radius: 50%;
  background: var(--blue); border: 3px solid #dce9ff;
}
.contacts-icon span:nth-child(1) { left: 13px; top: 25px; }
.contacts-icon span:nth-child(2) { right: 13px; top: 25px; }
.contacts-icon span:nth-child(3) { left: 29px; top: 13px; background: var(--navy); }
.call-icon span {
  position: absolute; width: 31px; height: 31px; border: 6px solid var(--blue);
  border-top-color: transparent; border-left-color: transparent; border-radius: 9px 20px 9px 20px;
  transform: rotate(7deg); left: 22px; top: 21px;
}
.follow-icon { display: grid; place-items: center; }
.follow-icon span {
  width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center;
  background: var(--blue); color: white; font-weight: 800; box-shadow: 0 0 0 8px rgba(36,87,245,.11);
}
.feature-card h3 {
  font-family: Manrope; font-size: 22px; letter-spacing: -.7px; margin: 0 0 13px;
}
.feature-card p { color: var(--muted); line-height: 1.65; font-size: 15px; margin: 0; }

.workflow-section {
  width: 100%;
  max-width: none;
  padding: 130px max(24px, calc((100vw - 1180px)/2));
  background:
    radial-gradient(circle at 80% 20%, rgba(42,93,220,.26), transparent 33%),
    linear-gradient(145deg, #061735, #0a2654 68%, #0c2d63);
  color: white;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
  align-items: center;
}
.workflow-copy h2 { color: white; }
.workflow-copy > p { color: #b7c4d9; }
.workflow-list { list-style: none; padding: 0; margin: 40px 0 0; }
.workflow-list li {
  display: flex; align-items: center; gap: 17px;
  padding: 17px 0; border-top: 1px solid rgba(255,255,255,.10);
  opacity: .58;
}
.workflow-list li.active { opacity: 1; }
.workflow-list li > span {
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.23); font-size: 12px; font-weight: 700;
}
.workflow-list li.active > span { background: var(--blue); border-color: var(--blue); }
.workflow-list strong, .workflow-list small { display: block; }
.workflow-list strong { font-size: 15px; }
.workflow-list small { margin-top: 4px; color: #b5c2d7; font-size: 12px; }
.workflow-display { position: relative; padding: 30px 0; }
.call-card {
  width: min(520px, 100%);
  margin: 0 auto;
  border-radius: 22px;
  background: white;
  color: var(--ink);
  box-shadow: 0 35px 80px rgba(0,0,0,.28);
  overflow: hidden;
}
.call-card-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; border-bottom: 1px solid #e8eef6;
  font-size: 10px; font-weight: 800; letter-spacing: 1px; color: #6a778d;
}
.live-badge {
  display: flex; align-items: center; gap: 6px;
  background: #eaf8f0; color: #168751; padding: 6px 8px; border-radius: 6px; font-size: 8px;
}
.live-badge i { width: 6px; height: 6px; border-radius: 50%; background: #20a966; }
.contact-profile {
  display: grid; grid-template-columns: 54px 1fr auto; gap: 14px; align-items: center; padding: 24px 24px 18px;
}
.contact-avatar {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  background: var(--navy); color: white; font-weight: 800; font-family: Manrope;
}
.contact-profile h3 { margin: 0; font-family: Manrope; font-size: 18px; }
.contact-profile p { margin: 4px 0 0; color: #7d899d; font-size: 11px; }
.contact-profile button { border: 0; background: transparent; color: #8793a8; }
.context-box {
  margin: 0 24px 18px; background: #f4f7fc; border-radius: 11px; padding: 14px;
}
.context-box span { color: #8a96a9; font-size: 8px; font-weight: 800; letter-spacing: .8px; }
.context-box p { margin: 7px 0 0; color: #536178; font-size: 11px; line-height: 1.55; }
.call-notes { padding: 0 24px 20px; }
.call-notes label { display: block; font-size: 10px; font-weight: 700; margin-bottom: 8px; }
.call-notes textarea {
  width: 100%; height: 92px; resize: none; border: 1px solid #dfe7f2; border-radius: 10px;
  padding: 12px; color: var(--ink); outline: none; font-size: 11px;
}
.call-notes textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(36,87,245,.09); }
.call-footer {
  display: flex; align-items: center; justify-content: space-between;
  background: #f8faff; border-top: 1px solid #e8eef6; padding: 15px 24px;
}
.call-timer { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; }
.call-timer i { width: 9px; height: 9px; border-radius: 50%; background: #22aa68; box-shadow: 0 0 0 4px rgba(34,170,104,.12); }
.end-call { border: 0; border-radius: 8px; background: var(--blue); color: white; padding: 10px 15px; font-size: 10px; font-weight: 700; }
.next-step-card {
  position: absolute; right: -18px; bottom: 0;
  background: white; color: var(--ink);
  border-radius: 13px; padding: 13px 16px;
  display: flex; gap: 10px; align-items: center;
  box-shadow: 0 18px 42px rgba(0,0,0,.2);
}
.check-circle {
  width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%;
  background: #e9f8f0; color: #179258; font-weight: 800;
}
.next-step-card strong, .next-step-card small { display: block; }
.next-step-card strong { font-size: 10px; }
.next-step-card small { font-size: 8px; color: #7c899d; margin-top: 3px; }

.audience-section { padding: 135px 0; }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 65px; }
.audience-card {
  min-height: 430px; border-radius: 22px; background: #f6f9fe; padding: 30px;
  position: relative; overflow: hidden; border: 1px solid #edf2f8;
}
.audience-label {
  font-size: 10px; letter-spacing: 1px; font-weight: 800; color: var(--blue);
}
.audience-card h3 {
  font-family: Manrope; font-size: 27px; letter-spacing: -1px; margin: 22px 0 14px; max-width: 260px;
}
.audience-card p { color: var(--muted); font-size: 14px; line-height: 1.65; margin: 0; max-width: 290px; }
.audience-graphic {
  position: absolute; left: 30px; right: 30px; bottom: 26px; height: 145px;
  border-radius: 16px; background: white; border: 1px solid #e7edf6;
}
.candidate-graphic .ring {
  position: absolute; border-radius: 50%; border: 1px solid #d8e4f5; left: 50%; top: 50%; transform: translate(-50%,-50%);
}
.candidate-graphic .ring-one { width: 96px; height: 96px; }
.candidate-graphic .ring-two { width: 55px; height: 55px; background: #eef4ff; border-color: #cfe0ff; }
.center-dot {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 20px; height: 20px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 8px rgba(36,87,245,.12);
}
.team-graphic span {
  position: absolute; width: 42px; height: 42px; border-radius: 13px; background: #eaf1ff; border: 1px solid #d2e1ff;
}
.team-graphic span:nth-child(1) { left: 29px; top: 50px; }
.team-graphic span:nth-child(2) { left: 50%; top: 24px; transform: translateX(-50%); background: var(--blue); }
.team-graphic span:nth-child(3) { right: 29px; top: 50px; }
.team-graphic i { position: absolute; height: 1px; background: #b7c9e4; top: 70px; width: 45px; }
.team-graphic i:nth-of-type(1) { left: 71px; transform: rotate(-18deg); }
.team-graphic i:nth-of-type(2) { right: 71px; transform: rotate(18deg); }
.launch-graphic .launch-line {
  position: absolute; left: 32px; right: 32px; bottom: 35px; height: 2px;
  background: linear-gradient(90deg, #dce5f4, var(--blue)); transform: rotate(-10deg);
}
.launch-arrow {
  position: absolute; right: 37px; top: 28px; color: var(--blue); font-size: 30px; font-weight: 800;
}
.launch-graphic i { position: absolute; bottom: 27px; width: 8px; border-radius: 4px 4px 0 0; background: #c8d7ee; }
.launch-graphic i:nth-of-type(1) { left: 48px; height: 25px; }
.launch-graphic i:nth-of-type(2) { left: 50%; height: 48px; background: #8fb0e6; }
.launch-graphic i:nth-of-type(3) { right: 48px; height: 76px; background: var(--blue); }

.quote-section {
  padding: 80px 0 135px;
  text-align: center;
  max-width: 900px;
}
.quote-mark { font-family: Georgia, serif; color: var(--blue); font-size: 80px; line-height: .7; }
blockquote {
  font-family: Manrope; color: var(--navy); font-size: clamp(29px, 4vw, 46px);
  line-height: 1.28; letter-spacing: -1.7px; font-weight: 700; margin: 22px auto 25px;
}
.quote-section p { color: #8b97aa; font-size: 10px; font-weight: 800; letter-spacing: 1.2px; }

.cta-section { padding-bottom: 80px; }
.cta-panel {
  background:
    radial-gradient(circle at 10% 10%, rgba(61,116,255,.28), transparent 35%),
    linear-gradient(145deg, #071a3d, #0b2b61);
  border-radius: var(--radius-lg);
  padding: 70px;
  display: grid; grid-template-columns: 1fr .83fr; gap: 75px; align-items: center;
  color: white;
}
.cta-copy h2 { color: white; font-size: clamp(40px, 4.5vw, 58px); }
.cta-copy p { color: #b7c5da; }
.access-form {
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.13);
  border-radius: 20px; padding: 26px; backdrop-filter: blur(10px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.access-form label { display: block; margin-bottom: 13px; }
.access-form label > span { display: block; font-size: 10px; font-weight: 700; margin-bottom: 7px; color: #d5dfed; }
.access-form input, .access-form select {
  width: 100%; height: 46px; border-radius: 9px; border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.10); color: white; padding: 0 13px; outline: none; font-size: 12px;
}
.access-form select option { color: var(--ink); }
.access-form input::placeholder { color: #aebbd0; }
.access-form input:focus, .access-form select:focus { border-color: #79a8ff; box-shadow: 0 0 0 3px rgba(121,168,255,.12); }
.form-note { color: #9eacc0; font-size: 9px; line-height: 1.5; text-align: center; margin: 10px 0 0; }
.form-success {
  display: none; margin-top: 14px; border-radius: 9px; background: rgba(40,190,113,.14);
  color: #bdf5d7; padding: 12px; font-size: 12px; text-align: center;
}
.form-success.show { display: block; }

.site-footer {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 36px 0 44px;
  border-top: 1px solid #e7edf5;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
}
.footer-brand { font-size: 18px; }
.footer-brand .brand-mark { width: 24px; height: 24px; border-radius: 7px; }
.footer-brand .brand-mark .bar { bottom: 6px; width: 2px; }
.footer-brand .brand-mark .bar-1 { left: 7px; height: 5px; }
.footer-brand .brand-mark .bar-2 { left: 11px; height: 9px; }
.footer-brand .brand-mark .bar-3 { left: 15px; height: 13px; }
.site-footer > p { color: #8a96a9; font-size: 12px; margin: 0; }
.footer-links { display: flex; align-items: center; gap: 22px; font-size: 11px; color: #6d798e; }
.footer-links a:hover { color: var(--blue); }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; padding-top: 75px; }
  .hero-copy { text-align: center; max-width: 760px; margin: 0 auto; }
  .hero-lede { margin-left: auto; margin-right: auto; }
  .hero-actions, .trust-line { justify-content: center; }
  .hero-visual { max-width: 780px; width: 100%; margin: 0 auto; }
  .feature-grid, .audience-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 290px; }
  .audience-card { min-height: 370px; }
  .workflow-section { grid-template-columns: 1fr; gap: 55px; }
  .workflow-copy { max-width: 720px; }
  .workflow-display { width: min(650px, 100%); margin: 0 auto; }
  .cta-panel { grid-template-columns: 1fr; gap: 45px; }
}
@media (max-width: 760px) {
  .section, .site-header, .site-footer { width: min(100% - 32px, 1180px); }
  .site-header { height: 72px; }
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute; left: 0; right: 0; top: 66px;
    background: white; border: 1px solid var(--line); border-radius: 14px;
    box-shadow: 0 18px 40px rgba(7,26,61,.12);
    padding: 14px; display: none; flex-direction: column; align-items: stretch; gap: 4px;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px; }
  .site-nav .nav-cta { text-align: center; margin-top: 4px; }
  .hero { padding: 70px 0 65px; min-height: auto; gap: 65px; }
  .hero h1 { letter-spacing: -3px; }
  .hero-lede { font-size: 17px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .trust-line { align-items: flex-start; text-align: left; }
  .hero-visual { min-height: 390px; }
  .dashboard-card { transform: none; }
  .dashboard-body { grid-template-columns: 78px 1fr; }
  .dashboard-sidebar { padding: 16px 7px; }
  .side-item span { display: none; }
  .side-item { justify-content: center; }
  .dashboard-main { padding: 17px 13px; }
  .dashboard-heading h3 { font-size: 14px; }
  .metric-grid { grid-template-columns: 1fr 1fr; }
  .metric-grid article:last-child { display: none; }
  .dashboard-lower { grid-template-columns: 1fr; }
  .focus-panel { display: none; }
  .floating-card-two { right: -8px; top: 35px; }
  .floating-card-one { left: -8px; bottom: 8px; }
  .logo-strip { padding-left: 16px; padding-right: 16px; }
  .logo-items { justify-content: center; font-size: 10px; }
  .problem-section, .audience-section { padding: 95px 0; }
  .feature-grid, .audience-grid { margin-top: 45px; }
  .workflow-section { padding: 90px 16px; }
  .section-heading h2, .workflow-copy h2, .cta-copy h2 { letter-spacing: -1.7px; }
  .next-step-card { right: -4px; }
  .quote-section { padding: 40px 16px 95px; }
  .cta-section { width: calc(100% - 24px); }
  .cta-panel { padding: 42px 20px; border-radius: 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .site-footer { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
