:root {
  --ink: #101820;
  --ink-2: #24313d;
  --muted: #64717f;
  --line: #dce7ec;
  --paper: #ffffff;
  --mist: #f6f8fc;
  --teal: #435ebe;
  --teal-2: #6571ff;
  --blue: #364b99;
  --green: #10b981;
  --gold: #d08a12;
  --navy: #101d2d;
  --shadow: 0 28px 70px rgba(16, 24, 32, 0.16);
  --soft-shadow: 0 18px 48px rgba(16, 24, 32, 0.08);
  --radius: 8px;
  --font-heading: "Poppins", Arial, sans-serif;
  --font-body: "Nunito", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 90% -10%, rgba(67, 94, 190, 0.08), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1240px, calc(100% - 32px));
  min-height: 68px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(220, 231, 236, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 45px rgba(16, 24, 32, 0.1);
  transform: translateX(-50%);
  backdrop-filter: blur(20px);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 900;
  font-family: var(--font-heading);
  letter-spacing: 0;
}

.brand-mark {
  display: block;
  width: 178px;
  height: 36px;
  border-radius: 0;
  color: transparent;
  background: url("assets/submission-crm-logo-wide.png") center / contain no-repeat;
  box-shadow: none;
  overflow: hidden;
  text-indent: -999px;
}

.brand .brand-mark + span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 10px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  font-family: var(--font-heading);
}

.site-nav a:hover {
  color: var(--ink);
  background: #eef2ff;
}

.site-nav a.is-active {
  color: var(--teal);
  background: #eef2ff;
}

.button,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.primary,
.header-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  box-shadow: 0 18px 35px rgba(67, 94, 190, 0.24);
}

.ghost {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 10px 28px rgba(16, 24, 32, 0.06);
}

.light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  min-height: 100vh;
  padding: 122px clamp(18px, 5vw, 76px) 64px;
  background:
    linear-gradient(115deg, rgba(248, 250, 255, 0.94), rgba(244, 247, 255, 0.76)),
    radial-gradient(circle at 18% 22%, rgba(67, 94, 190, 0.18), transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(49, 87, 213, 0.18), transparent 30%);
}

.page-hero {
  min-height: 62vh;
  padding: 150px clamp(18px, 5vw, 76px) 78px;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(248, 250, 255, 0.96), rgba(244, 247, 255, 0.82)),
    radial-gradient(circle at 18% 22%, rgba(67, 94, 190, 0.18), transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(49, 87, 213, 0.18), transparent 30%);
}

.page-hero h1 {
  max-width: 1050px;
}

.page-hero p:not(.eyebrow) {
  max-width: 820px;
  color: var(--muted);
  font-size: 20px;
}

.secure-hero {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(16, 29, 45, 0.96), rgba(67, 94, 190, 0.92)),
    radial-gradient(circle at right top, rgba(49, 87, 213, 0.42), transparent 42%);
}

.secure-hero .eyebrow {
  color: #9ef3e7;
}

.secure-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.legal-hero {
  min-height: 48vh;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  font-family: var(--font-heading);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(48px, 7.5vw, 86px);
  line-height: 0.94;
  letter-spacing: 0;
  font-family: var(--font-heading);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  letter-spacing: 0;
  font-family: var(--font-heading);
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
  font-family: var(--font-heading);
}

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: 19px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-proof span {
  padding: 8px 12px;
  border: 1px solid rgba(67, 94, 190, 0.17);
  border-radius: 999px;
  color: var(--ink-2);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 28px rgba(16, 24, 32, 0.05);
  font-size: 13px;
  font-weight: 800;
}

.hero-media {
  position: relative;
  isolation: isolate;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 9% 4% -4% 8%;
  z-index: -1;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(67, 94, 190, 0.22), rgba(54, 75, 153, 0.2));
  filter: blur(28px);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.floating-card {
  position: absolute;
  display: grid;
  gap: 2px;
  min-width: 160px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 50px rgba(16, 24, 32, 0.15);
  backdrop-filter: blur(16px);
}

.floating-card small,
.floating-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.floating-card strong {
  font-size: 34px;
  line-height: 1;
}

.card-top {
  top: 8%;
  right: -12px;
}

.card-bottom {
  left: -16px;
  bottom: 8%;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-band div {
  padding: 30px clamp(18px, 4vw, 48px);
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.stats-band div:hover,
.capability-grid article:hover,
.feature-band article:hover,
.price-card:hover,
.security-list article:hover,
.about-grid article:hover,
.testimonial-grid article:hover,
.faq-list details:hover {
  border-color: rgba(67, 94, 190, 0.28);
  box-shadow: var(--soft-shadow);
  transform: translateY(-2px);
}

.stats-band strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.stats-band span {
  color: var(--muted);
  font-weight: 800;
}

.section {
  padding: clamp(66px, 9vw, 128px) clamp(18px, 5vw, 76px);
}

.gray {
  background: var(--mist);
}

.section-kicker {
  max-width: 850px;
  margin-bottom: 38px;
}

.section-kicker p:not(.eyebrow),
.workflow-copy p,
.report-shell p,
.capability-grid p,
.price-card span,
.price-card li,
.faq-list p {
  color: var(--muted);
}

.platform-section {
  background: #fff;
}

.subscrub-section,
.analytics-section,
.why-section,
.testimonials-section {
  background: #fff;
}

.esign-section,
.security-section,
.about-section {
  background: var(--mist);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.capability-grid article,
.price-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.capability-grid article {
  position: relative;
  min-height: 250px;
  padding: 26px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(16, 24, 32, 0.03);
}

.capability-grid a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 10px;
  color: var(--teal);
  font-weight: 900;
}

.capability-grid article::after {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -46px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(67, 94, 190, 0.16);
  border-radius: 50%;
}

.chip {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  font-size: 13px;
  font-weight: 900;
}

.compact article {
  min-height: 220px;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.feature-band article {
  min-height: 230px;
  padding: 26px;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-band h3,
.security-list h3,
.proof-panel h3 {
  font-size: 22px;
}

.feature-band p,
.proof-panel p,
.proof-panel li,
.security-list p,
.about-section p,
.why-section p,
.testimonial-grid span {
  color: var(--muted);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.proof-panel,
.security-list article,
.about-grid article,
.testimonial-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.proof-panel {
  padding: clamp(24px, 4vw, 38px);
  box-shadow: 0 18px 55px rgba(16, 24, 32, 0.08);
}

.proof-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.proof-panel li {
  position: relative;
  padding-left: 22px;
  font-weight: 800;
}

.proof-panel li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.security-list {
  display: grid;
  gap: 14px;
}

.security-list article {
  padding: 24px;
}

.legal-section {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
  background: #fff;
}

.legal-toc {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
  box-shadow: 0 12px 34px rgba(16, 24, 32, 0.05);
}

.legal-toc a {
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--muted);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
}

.legal-toc a:hover {
  color: var(--teal);
  background: #fff;
}

.legal-content {
  display: grid;
  gap: 16px;
  max-width: 980px;
}

.legal-card {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(16, 24, 32, 0.04);
}

.legal-card h2 {
  margin-bottom: 16px;
  font-size: clamp(27px, 3vw, 38px);
}

.legal-card h3 {
  margin-top: 26px;
  font-size: 20px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.legal-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.legal-card a {
  color: var(--teal);
  font-weight: 900;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-grid article {
  min-height: 160px;
  padding: 24px;
}

.about-grid strong {
  display: block;
  margin-bottom: 14px;
  font-size: 28px;
  line-height: 1;
}

.about-grid span {
  color: var(--muted);
  font-weight: 800;
}

.workflow-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
  gap: clamp(34px, 6vw, 84px);
  background: var(--navy);
  color: #fff;
}

.split-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.5fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(16, 29, 45, 0.96), rgba(67, 94, 190, 0.9)),
    radial-gradient(circle at right top, rgba(49, 87, 213, 0.42), transparent 42%);
}

.split-callout .eyebrow {
  color: #9ef3e7;
}

.split-callout p {
  color: rgba(255, 255, 255, 0.74);
}

.mini-links {
  display: grid;
  gap: 12px;
}

.mini-links a {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 900;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  font-weight: 800;
}

.contact-details a {
  color: var(--teal);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(16, 24, 32, 0.08);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.workflow-copy {
  align-self: start;
  position: sticky;
  top: 120px;
}

.workflow-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.timeline span {
  color: #98efe4;
  font-size: 24px;
  font-weight: 900;
}

.timeline p {
  color: rgba(255, 255, 255, 0.68);
}

.reporting-section {
  background: var(--mist);
}

.report-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.report-grid div {
  min-height: 138px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f7f8ff);
}

.report-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 40px;
  line-height: 1;
}

.report-grid span {
  color: var(--muted);
  font-weight: 800;
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.dashboard-sidebar {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 24px 18px;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f8faff);
}

.dashboard-sidebar strong {
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-sidebar span {
  margin: 10px 0 4px;
  color: #8a96aa;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-sidebar b {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ink-2);
  background: transparent;
  font-size: 14px;
}

.dashboard-sidebar b:nth-of-type(1),
.dashboard-sidebar b:hover {
  color: var(--teal);
  background: #eef2ff;
}

.dashboard-main {
  padding: clamp(20px, 3vw, 34px);
  background: #f8faff;
}

.dashboard-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin-bottom: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(67, 94, 190, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(380px 180px at right top, rgba(67, 94, 190, 0.16), transparent 70%),
    linear-gradient(135deg, #f3f1ff, #eef3ff);
}

.dashboard-hero-card small,
.dash-badges span,
.dashboard-metrics span {
  color: #8591a7;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-hero-card h2 {
  margin: 8px 0 10px;
  font-size: clamp(28px, 4vw, 44px);
}

.dashboard-hero-card p {
  max-width: 720px;
  color: var(--muted);
}

.dash-badges {
  min-width: 150px;
  padding: 18px;
  border-radius: 8px;
  text-align: center;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.dash-badges strong {
  display: block;
  color: var(--teal);
  font-size: 30px;
  line-height: 1;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.dashboard-metrics article {
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(16, 24, 32, 0.04);
}

.dashboard-metrics strong {
  display: block;
  margin-top: 8px;
  font-size: 30px;
  line-height: 1;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.module-grid article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(16, 24, 32, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.module-grid article:hover {
  border-color: rgba(67, 94, 190, 0.28);
  box-shadow: var(--soft-shadow);
  transform: translateY(-2px);
}

.module-grid p {
  color: var(--muted);
}

.analysis-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.analysis-grid article,
.match-flow article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(16, 24, 32, 0.03);
}

.analysis-grid article {
  min-height: 230px;
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.analysis-grid article:hover,
.match-flow article:hover {
  border-color: rgba(67, 94, 190, 0.28);
  box-shadow: var(--soft-shadow);
  transform: translateY(-2px);
}

.analysis-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  font-weight: 900;
}

.analysis-grid p {
  color: var(--muted);
}

.match-flow {
  display: grid;
  gap: 12px;
}

.match-flow article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 76px;
  padding: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.match-flow strong {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: var(--teal);
  background: #eef2ff;
}

.match-flow span {
  color: var(--ink-2);
  font-weight: 800;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.price-card.featured {
  border-color: rgba(67, 94, 190, 0.36);
  box-shadow: var(--shadow);
  transform: translateY(-10px);
}

.plan-label {
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-card h3 {
  margin-bottom: 4px;
  font-size: 44px;
  line-height: 1;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
}

.price-card li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.price-card .button {
  margin-top: auto;
}

.faq-section {
  background: var(--mist);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.faq-list details {
  padding: 19px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.testimonial-grid article {
  padding: 28px;
}

.testimonial-grid p {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.45;
}

.testimonial-grid strong {
  display: block;
  margin-top: 22px;
}

.testimonial-grid span {
  display: block;
  font-weight: 800;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin: 0 clamp(18px, 5vw, 76px) clamp(66px, 8vw, 104px);
  padding: clamp(30px, 5vw, 58px);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(16, 29, 45, 0.94), rgba(67, 94, 190, 0.9)),
    radial-gradient(circle at right top, rgba(49, 87, 213, 0.42), transparent 42%);
}

.final-cta .eyebrow {
  color: #9ef3e7;
}

.final-cta h2 {
  max-width: 840px;
  margin-bottom: 0;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(560px, 1.15fr);
  gap: clamp(24px, 5vw, 76px);
  padding: 64px clamp(18px, 5vw, 76px) 0;
  border-top: none;
  color: #e2e8f4;
  background: linear-gradient(135deg, #0d1729 0%, #111f3a 54%, #0f1c33 100%);
  box-shadow: none;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #435ebe, #6571ff, #9aa6ff);
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(135px, 1fr));
  align-content: start;
  gap: 10px 14px;
  color: #94a3c0;
  font-weight: 800;
}

.footer-links a {
  padding: 8px 10px;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: #9aa6ff;
  background: rgba(101, 113, 255, 0.12);
  transform: translateX(2px);
}

.copyright {
  grid-column: 1 / -1;
  margin: 38px calc(-1 * clamp(18px, 5vw, 76px)) 0;
  padding: 17px clamp(18px, 5vw, 76px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
  color: #6b7a99;
  font-size: 13px;
}

.site-footer p {
  max-width: 470px;
  color: #7a8dab;
}

.footer-brand-block {
  display: grid;
  align-content: start;
  gap: 22px;
}

.site-footer .brand-mark {
  background: url("assets/submission-crm-logo-wide.png") center / contain no-repeat;
  box-shadow: none;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.site-footer .brand {
  width: fit-content;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.footer-address {
  display: grid;
  gap: 5px;
  max-width: 360px;
  margin: 0;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #94a3c0;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  font-style: normal;
  line-height: 1.55;
}

.footer-address span {
  color: var(--teal);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-address strong {
  color: #e2e8f4;
  font-family: var(--font-heading);
  font-size: 17px;
}

.nav-toggle {
  display: none;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    justify-self: end;
    display: inline-grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
  }

  .nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--ink);
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-self: stretch;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.is-open {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .workflow-section,
  .split-callout,
  .report-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .workflow-copy {
    position: static;
  }

  .capability-grid,
  .feature-band,
  .module-grid,
  .analysis-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-shell,
  .dashboard-hero-card {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    display: none;
  }

  .dashboard-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-band {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .site-header {
    top: 8px;
    width: calc(100% - 18px);
  }

  .brand span:last-child {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    padding: 112px 18px 48px;
  }

  .page-hero {
    min-height: auto;
    padding: 120px 18px 58px;
  }

  h1 {
    font-size: 47px;
  }

  h2 {
    font-size: 34px;
  }

  .section {
    padding: 58px 18px;
  }

  .capability-grid,
  .pricing-grid,
  .feature-band,
  .stats-band,
  .report-grid,
  .dashboard-metrics,
  .module-grid,
  .analysis-grid,
  .two-column,
  .split-callout,
  .proof-panel ul,
  .about-grid,
  .testimonial-grid,
  .final-cta,
  .site-footer,
  .footer-links,
  .legal-section {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }

  .hero-media img {
    min-height: 360px;
  }

  .floating-card {
    position: static;
    margin-top: 10px;
  }

  .timeline article {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .cta-actions {
    margin-top: 0;
  }
}
