:root {
  --navy-950: #071d2c;
  --navy-900: #0f2d40;
  --slate-700: #405868;
  --slate-600: #5d7180;
  --slate-500: #758895;
  --blue-700: #075dba;
  --blue-600: #0878df;
  --blue-100: #e9f3ff;
  --teal-700: #0b776f;
  --teal-500: #18a397;
  --teal-100: #e8f8f5;
  --grey-50: #f8fafb;
  --grey-100: #f2f5f6;
  --white: #ffffff;
  --border: #dce5e9;
  --border-dark: #c6d4da;
  --shadow-sm: 0 6px 18px rgba(8, 29, 44, 0.07);
  --shadow-lg: 0 24px 60px rgba(8, 29, 44, 0.14);
  --radius-lg: 18px;
  --radius: 11px;
  --radius-sm: 8px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--slate-700);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea,
select {
  font: inherit;
}

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

h1,
h2,
h3 {
  color: var(--navy-900);
  line-height: 1.12;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.55rem, 6vw, 4.65rem);
  letter-spacing: -0.022em;
}

h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.018em;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.08rem;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.55rem 0.8rem;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 6px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.announcement-bar {
  padding: 0.48rem 0;
  color: #dcecf2;
  background: var(--navy-950);
  font-size: 0.78rem;
  font-weight: 750;
  text-align: center;
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-inner {
  min-height: 4.75rem;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.65rem;
  color: var(--navy-900);
  text-decoration: none;
  line-height: 1.08;
}

.brand-mark {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-600), var(--teal-500));
  border-radius: 8px;
  font-weight: 850;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  margin-top: 0.15rem;
  color: var(--slate-500);
  font-size: 0.72rem;
  font-weight: 700;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  color: var(--slate-600);
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--blue-700);
}

.button {
  display: inline-flex;
  min-height: 2.95rem;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.05rem;
  color: var(--navy-900);
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 150ms ease, border-color 150ms ease, box-shadow 150ms ease, color 150ms ease, transform 150ms ease;
}

.button:hover {
  box-shadow: 0 10px 24px rgba(8, 29, 44, 0.14);
  transform: translateY(-1px);
}

.button:focus-visible,
.brand:focus-visible,
.site-nav a:focus-visible,
.contact-card a:focus-visible,
.copy-email-button:focus-visible,
.mini-action:focus-visible,
details summary:focus-visible {
  outline: 3px solid rgba(8, 120, 223, 0.28);
  outline-offset: 3px;
}

.button-primary {
  color: var(--white);
  background: var(--blue-600);
  box-shadow: 0 8px 20px rgba(8, 120, 223, 0.22);
}

.button-primary:hover {
  background: var(--blue-700);
}

.button-secondary {
  color: var(--navy-900);
  background: var(--white);
  border-color: var(--border-dark);
  box-shadow: var(--shadow-sm);
}

.button-secondary:hover {
  background: var(--blue-100);
  border-color: #9db5bf;
}

.button-light {
  color: var(--navy-950);
  background: var(--white);
  border-color: var(--white);
}

.button-light:hover {
  background: var(--teal-100);
  border-color: var(--teal-100);
}

.button-large {
  min-height: 3.25rem;
  padding-inline: 1.25rem;
}

.header-cta {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5.2rem 0 4rem;
  background: linear-gradient(180deg, #fbfdff 0%, #f6fafb 100%);
  border-bottom: 1px solid #e6edef;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(8, 120, 223, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 120, 223, 0.07) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  max-width: 44rem;
}

.eyebrow {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 41rem;
  margin-bottom: 1.35rem;
  color: var(--slate-600);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust-line {
  margin: 1rem 0 0;
  color: var(--slate-500);
  font-size: 0.92rem;
  font-weight: 750;
}

.lead-preview {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.preview-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  background: var(--grey-50);
  border-bottom: 1px solid var(--border);
}

.preview-topline span {
  color: var(--slate-600);
  font-size: 0.84rem;
  font-weight: 850;
}

.preview-topline strong {
  color: var(--teal-700);
  background: var(--teal-100);
  border: 1px solid #cfe9e5;
  border-radius: 999px;
  padding: 0.32rem 0.55rem;
  font-size: 0.72rem;
}

.preview-subject {
  padding: 1rem;
  color: var(--navy-900);
  border-bottom: 1px solid var(--border);
  font-size: 1.15rem;
  font-weight: 850;
}

.preview-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
}

.preview-details div {
  min-width: 0;
  padding: 0.78rem 1rem;
  border-bottom: 1px solid var(--border);
}

.preview-details dt {
  color: var(--slate-500);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.preview-details dd {
  margin: 0.14rem 0 0;
  color: var(--navy-900);
  font-size: 0.92rem;
  font-weight: 800;
}

.summary-strip {
  margin: 1rem;
  padding: 0.9rem;
  background: var(--blue-100);
  border: 1px solid #d2e5fb;
  border-radius: 8px;
}

.summary-strip span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.summary-strip p {
  margin: 0;
  color: var(--slate-700);
  font-size: 0.9rem;
}

.section {
  padding: 4.5rem 0;
}

.section-soft {
  background: var(--grey-100);
  border-block: 1px solid #e1e9ec;
}

.section-heading {
  max-width: 47rem;
  margin-bottom: 1.85rem;
}

.section-heading p,
.split-heading p {
  color: var(--slate-600);
}

.section-heading-centred {
  margin-inline: auto;
  text-align: center;
}

.split-heading,
.demo-feature-layout,
.faq-layout,
.final-cta-grid {
  display: grid;
  gap: 1.8rem;
}

.demo-aside {
  padding: 1.35rem;
  color: var(--slate-600);
  background: var(--grey-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.demo-aside .eyebrow {
  margin-bottom: 0.45rem;
}

.demo-aside p {
  margin-bottom: 0;
}

.coming-soon-note {
  margin-top: 1.5rem !important;
  color: var(--teal-700);
  font-size: 0.9rem;
  font-weight: 800;
}

.compact-card-grid,
.three-grid,
.pricing-grid,
.points-grid {
  display: grid;
  gap: 0.9rem;
}

.soft-card,
.feature-card,
.pricing-card,
.demo-feature-card,
.coming-soon-list article {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.soft-card {
  padding: 1rem;
}

.soft-card p,
.feature-card p,
.pricing-card p,
.demo-feature-card p {
  color: var(--slate-600);
}

.soft-card h3 {
  margin-bottom: 0.25rem;
}

.soft-card p {
  margin-bottom: 0;
}

.feature-card,
.pricing-card {
  padding: 1.15rem;
}

.card-number {
  display: inline-grid;
  width: 2.1rem;
  height: 2.1rem;
  margin-bottom: 0.75rem;
  place-items: center;
  color: var(--white);
  background: var(--blue-600);
  border-radius: 7px;
  font-size: 0.82rem;
  font-weight: 900;
}

.flow-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.flow-strip span {
  padding: 0.55rem 0.7rem;
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
}

.pricing-card {
  position: relative;
}

.featured-card {
  border-color: #9fcdf9;
  box-shadow: 0 18px 42px rgba(8, 120, 223, 0.15);
}

.package-badge,
.status-pill {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.35rem 0.55rem;
  color: var(--teal-700);
  background: var(--teal-100);
  border: 1px solid #cfe9e5;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
}

.price {
  margin-bottom: 0.55rem;
  color: var(--navy-900);
  font-size: 1.35rem;
  font-weight: 900;
}

.pricing-card ul {
  display: grid;
  gap: 0.4rem;
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--slate-700);
}

.pricing-note {
  max-width: 48rem;
  margin: 1rem auto 0;
  color: var(--slate-600);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
}

.demo-feature-card {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
}

.coming-soon-list {
  display: grid;
  gap: 0.75rem;
}

.coming-soon-list article {
  padding: 1rem;
}

.coming-soon-list span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--slate-500);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.coming-soon-list strong {
  color: var(--navy-900);
}

.points-grid p {
  margin: 0;
  padding: 0.8rem 0.9rem;
  color: var(--navy-900);
  background: var(--grey-50);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-weight: 750;
}

.process-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem;
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  font-weight: 800;
}

.process-list span {
  display: grid;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--blue-600);
  border-radius: 7px;
  font-size: 0.8rem;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

summary {
  cursor: pointer;
  padding: 1rem;
  color: var(--navy-900);
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: var(--slate-600);
}

.final-cta {
  padding: 4.25rem 0;
  color: #d9e5ea;
  background:
    radial-gradient(circle at 85% 0%, rgba(24, 163, 151, 0.17), transparent 34%),
    var(--navy-950);
}

.final-cta .eyebrow {
  color: #72d5ca;
}

.final-cta h2 {
  max-width: 20ch;
  color: var(--white);
}

.final-cta p {
  max-width: 43rem;
}

.contact-card {
  width: 100%;
  max-width: 30rem;
  padding: 1rem;
  color: var(--slate-700);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  font-style: normal;
}

.contact-card h3 {
  margin-bottom: 0.45rem;
}

.contact-row {
  display: grid;
  grid-template-columns: 4.8rem minmax(0, 1fr);
  gap: 0.65rem;
  align-items: center;
  padding: 0.72rem 0;
  border-top: 1px solid var(--border);
}

.contact-row span {
  color: var(--slate-500);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-row a:not(.mini-action) {
  min-width: 0;
  color: var(--navy-900);
  font-size: 0.98rem;
  font-weight: 850;
  overflow-wrap: anywhere;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2rem;
}

.copy-email-button,
.mini-action {
  display: inline-flex;
  min-height: 2.1rem;
  align-items: center;
  justify-content: center;
  padding: 0.36rem 0.55rem;
  color: var(--blue-700);
  background: var(--blue-100);
  border: 1px solid #cfe3fb;
  border-radius: 7px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
}

.copy-email-button:hover,
.mini-action:hover {
  background: var(--teal-100);
  border-color: #a7dcd5;
}

.copy-message {
  min-height: 1.15rem;
  margin: 0.35rem 0 0;
  color: var(--teal-700);
  font-size: 0.84rem;
  font-weight: 850;
}

.site-footer {
  padding: 1.2rem 0;
  color: #718994;
  background: #061824;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
}

.footer-inner {
  align-items: flex-start;
  flex-direction: column;
}

.footer-inner p {
  margin: 0;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-inner a {
  color: #c8d8df;
  font-weight: 750;
}

[hidden] {
  display: none !important;
}

.demo-page-hero {
  padding: 4.75rem 0 3.5rem;
  background: linear-gradient(180deg, #fbfdff 0%, #f6fafb 100%);
  border-bottom: 1px solid #e6edef;
}

.demo-card-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.demo-card {
  display: grid;
  gap: 0.75rem;
  padding: 1.15rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.demo-card p {
  margin-bottom: 0;
  color: var(--slate-600);
}

@media (max-width: 35.98rem) {
  .hero-actions .button,
  .header-cta,
  .final-cta .button {
    width: 100%;
  }

  .preview-details,
  .contact-row {
    grid-template-columns: 1fr;
  }

  .copy-email-button,
  .mini-action {
    width: 100%;
  }
}

@media (min-width: 36rem) {
  .container {
    width: min(calc(100% - 3rem), var(--max-width));
  }

  .header-cta {
    display: inline-flex;
  }

  .compact-card-grid,
  .points-grid,
  .demo-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (min-width: 50rem) {
  .section {
    padding: 5.25rem 0;
  }

  .hero {
    padding: 6.5rem 0 5rem;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
    gap: 3rem;
  }

  .split-heading,
  .demo-feature-layout,
  .faq-layout,
  .final-cta-grid {
    grid-template-columns: minmax(0, 1fr) minmax(21rem, 0.8fr);
    align-items: start;
    gap: 3rem;
  }

  .three-grid,
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .compact-card-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .process-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-inner {
    align-items: center;
    flex-direction: row;
  }
}

@media (min-width: 64rem) {
  .site-nav {
    display: flex;
  }
}

@media (min-width: 68rem) {
  .points-grid,
  .demo-card-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
