:root {
  --bg: #eef4fb;
  --bg-soft: #dfe8f4;
  --panel: rgba(255, 255, 255, 0.84);
  --panel-strong: #d6dfeb;
  --surface: #f8fbff;
  --surface-muted: #c5d0de;
  --text: #1f2940;
  --text-muted: #596579;
  --ink: #15203a;
  --line: rgba(21, 32, 58, 0.12);
  --accent: #cd3f4d;
  --accent-strong: #f07b3f;
  --accent-blue: #2969b3;
  --accent-soft: rgba(205, 63, 77, 0.12);
  --accent-blue-soft: rgba(41, 105, 179, 0.12);
  --shadow: 0 24px 60px rgba(31, 45, 74, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 100%;
  --page-padding: clamp(1rem, 3vw, 2.5rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(41, 105, 179, 0.18), transparent 24%),
    radial-gradient(circle at 85% 12%, rgba(240, 123, 63, 0.14), transparent 20%),
    radial-gradient(circle at 50% 100%, rgba(205, 63, 77, 0.12), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #eef4fb 48%, #e6edf7 100%);
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-shell {
  min-height: 100vh;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 4.5rem var(--page-padding);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  width: var(--container);
  margin: 0 auto;
  padding: 1rem var(--page-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(35, 49, 59, 0.08);
  /* background: linear-gradient(180deg, rgba(248, 251, 255, 0.86), rgba(248, 251, 255, 0.58)); */
  background: white;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.brand-logo {
  width: auto;
  height: 3rem;
  display: block;
  flex: 0 0 auto;
}

.brand-name {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.55rem 0.7rem 0.55rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(31, 45, 74, 0.08);
}

.nav a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.nav a:hover,
.footer-nav a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #f7fbfd !important;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(205, 63, 77, 0.18);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 3rem;
  height: 3rem;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 1.4rem;
  height: 2px;
  margin: 0.35rem auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.95fr;
  gap: 2rem;
  align-items: stretch;
  min-height: calc(100vh - 6rem);
  padding-top: 3.5rem;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 2rem var(--page-padding) auto auto;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(240, 123, 63, 0.2), rgba(240, 123, 63, 0) 66%);
  filter: blur(10px);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: var(--page-padding);
  bottom: 1rem;
  width: 26rem;
  height: 18rem;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(41, 105, 179, 0.16), rgba(41, 105, 179, 0) 68%);
  filter: blur(14px);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero h1,
.section-heading h2,
.accent-panel h2,
.cta-panel h2,
.demo-panel h2,
.footer h2 {
  margin: 0;
  font-family: "Gill Sans", "Avenir Next Condensed", "Trebuchet MS", sans-serif;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.7rem);
  max-width: 12ch;
  color: var(--ink);
  text-wrap: balance;
}

.hero-text,
.section-heading p,
.service-card p,
.solutions-list p,
.solutions-panel li,
.industry-card p,
.timeline-item p,
.showcase-card p,
.insight-card p,
.footer p,
.footer a {
  color: var(--text-muted);
  line-height: 1.7;
}

.hero-copy,
.hero-panel,
.service-card,
.solutions-panel,
.industry-card,
.timeline-item,
.showcase-card,
.insight-card,
.cta-panel,
.demo-panel,
.footer-grid>div {
  position: relative;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 2rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #f7fbfd;
  box-shadow: 0 18px 32px rgba(205, 63, 77, 0.2);
}

.button-secondary {
  background: rgba(248, 251, 255, 0.72);
  border-color: var(--line);
  box-shadow: 0 12px 24px rgba(41, 105, 179, 0.08);
}

.button-ghost {
  border-color: rgba(41, 105, 179, 0.35);
  color: var(--accent-blue);
  background: transparent;
}

.button-primary:hover,
.nav-cta:hover {
  box-shadow: 0 22px 38px rgba(205, 63, 77, 0.26);
}

.hero-metrics {
  list-style: none;
  padding: 0;
  margin: 2.4rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.hero-metrics li,
.signal-card,
.highlight-band,
.service-card,
.solutions-panel,
.industry-card,
.timeline-item,
.showcase-card,
.insight-card,
.cta-panel,
.demo-panel,
.footer-grid>div,
.trust-strip {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
}

.hero-metrics li {
  padding: 1.1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 249, 255, 0.78));
}

.hero-metrics strong {
  display: block;
  margin-bottom: 0.3rem;
}

.hero-metrics span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.hero-panel {
  display: grid;
  gap: 1rem;
}

.signal-card {
  min-height: 28rem;
  padding: 1.5rem;
  background:
    linear-gradient(180deg, rgba(41, 105, 179, 0.12), rgba(41, 105, 179, 0) 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(243, 248, 250, 0.9));
  overflow: hidden;
}

.signal-card::after {
  content: "";
  position: absolute;
  right: -4rem;
  top: -4rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(205, 63, 77, 0.12), rgba(205, 63, 77, 0) 70%);
}

.signal-label {
  display: inline-block;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--accent-blue-soft);
  color: var(--accent-blue);
  font-size: 0.82rem;
}

.signal-grid {
  display: grid;
  gap: 1rem;
  margin-top: 4rem;
}

.signal-grid article,
.highlight-band {
  padding: 1.3rem;
  background: rgba(255, 255, 255, 0.56);
  border-radius: var(--radius-md);
  border: 1px solid rgba(35, 49, 59, 0.08);
}

.signal-grid h2,
.service-card h3,
.solutions-list h3,
.solutions-panel h3,
.industry-card h3,
.timeline-item h3,
.showcase-card h3,
.insight-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.15rem;
}

.highlight-band {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.highlight-band span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.highlight-band strong {
  max-width: 26ch;
  display: block;
}

.highlight-band a {
  color: var(--accent-blue);
  font-weight: 700;
}

.trust-strip {
  width: var(--container);
  margin: 0 auto;
  padding: 1.35rem 1.4rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.trust-strip p {
  margin: 0;
  color: var(--ink);
  min-width: 14rem;
}

.trust-strip div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem;
}

.trust-strip span {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(41, 105, 179, 0.08), rgba(240, 123, 63, 0.08));
  color: var(--text-muted);
  font-size: 0.88rem;
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.accent-panel h2,
.cta-panel h2,
.demo-panel h2,
.footer h2 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  max-width: 14ch;
}

.card-grid,
.industry-grid,
.timeline,
.showcase-grid,
.insight-grid,
.footer-grid {
  display: grid;
  gap: 1rem;
}

.services-grid,
.industry-grid,
.showcase-grid,
.insight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.industry-card,
.showcase-card,
.insight-card,
.timeline-item,
.footer-grid>div {
  padding: 1.5rem;
}

.service-card,
.industry-card,
.showcase-card,
.insight-card,
.timeline-item {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.industry-card:hover,
.showcase-card:hover,
.insight-card:hover,
.timeline-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(31, 45, 74, 0.16);
  border-color: rgba(41, 105, 179, 0.18);
}

.service-card span,
.showcase-card span {
  color: var(--accent);
  font-weight: 700;
}

.split-section .solutions-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.solutions-list {
  display: grid;
  gap: 1rem;
}

.solutions-list article {
  padding: 1.4rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.solutions-list article:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 123, 63, 0.24);
  box-shadow: 0 20px 36px rgba(31, 45, 74, 0.12);
}

.solutions-panel {
  padding: 1.6rem;
  background:
    linear-gradient(180deg, rgba(41, 105, 179, 0.12), rgba(255, 255, 255, 0.42) 35%),
    rgba(248, 251, 255, 0.96);
}

.solutions-panel ul {
  margin: 1.2rem 0 0;
  padding-left: 1.2rem;
}

.accent-section {
  width: 100%;
  padding: 1rem 0 0;
}

.accent-panel {
  width: var(--container);
  margin: 0 auto;
  padding: 2rem;
  background:
    linear-gradient(90deg, rgba(205, 63, 77, 0.16), rgba(240, 123, 63, 0.08) 40%, rgba(41, 105, 179, 0.1)),
    #e7edf7;
  box-shadow: 0 24px 48px rgba(31, 45, 74, 0.12);
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.reasons-grid article {
  padding: 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.54);
}

.reasons-grid strong {
  color: var(--accent-blue);
  display: block;
  margin-bottom: 0.7rem;
}

.timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline-item span {
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-soft), rgba(240, 123, 63, 0.18));
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-panel {
  padding: 2rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.4rem;
  background:
    radial-gradient(circle at top right, rgba(205, 63, 77, 0.14), transparent 24%),
    radial-gradient(circle at 75% 15%, rgba(41, 105, 179, 0.12), transparent 22%),
    rgba(248, 251, 255, 0.96);
  box-shadow: 0 24px 48px rgba(31, 45, 74, 0.12);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.demo-form,
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
}

.lead-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--ink);
  font-size: 0.94rem;
}

.demo-form label,
.contact-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--ink);
  font-size: 0.94rem;
}

.lead-form input,
.lead-form select,
.lead-form textarea,
.demo-form input,
.demo-form select,
.demo-form textarea,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(35, 49, 59, 0.14);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
}

.copyright {
  width: var(--container);
  margin: 1.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 0.92rem;
}

.lead-form textarea,
.demo-form textarea,
.contact-form textarea {
  resize: vertical;
}

.full-width {
  grid-column: 1 / -1;
}

.demo-panel {
  padding: 1.8rem 2rem;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1rem;
}

.consent {
  display: flex !important;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted) !important;
}

.consent input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.15rem;
}

.consent a {
  color: var(--accent-blue);
  text-decoration: underline;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.form-status.is-error {
  color: #b53341;
}

.form-status.is-success {
  color: #2969b3;
}

.footer {
  padding-bottom: 3rem;
}

.footer-grid {
  grid-template-columns: 1.2fr 0.7fr 0.9fr;
}

.footer-nav {
  display: grid;
  gap: 0.75rem;
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(41, 105, 179, 0.14), transparent 25%),
    radial-gradient(circle at 90% 10%, rgba(240, 123, 63, 0.12), transparent 20%),
    linear-gradient(180deg, #f8fbff 0%, #ecf2f8 100%);
}

.legal-shell {
  width: min(920px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: 3rem 0 4rem;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 1.5rem;
  color: var(--accent-blue);
  font-weight: 700;
}

.legal-card {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.legal-card h1,
.legal-card h2 {
  color: var(--ink);
}

.legal-card h1 {
  margin: 0 0 1.2rem;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
}

.legal-card h2 {
  margin: 2rem 0 0.7rem;
  font-size: 1.2rem;
}

.legal-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.8;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {

  .hero,
  .split-section .solutions-layout,
  .cta-panel,
  .demo-panel,
  .footer-grid,
  .timeline,
  .services-grid,
  .industry-grid,
  .showcase-grid,
  .insight-grid,
  .reasons-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .cta-panel,
  .demo-panel,
  .footer-grid {
    align-items: start;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 3.5rem 0;
  }

  .topbar {
    padding-top: 0.8rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
    padding: 1rem;
    background: #ffffff;
  }

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

  .hero,
  .split-section .solutions-layout,
  .cta-panel,
  .lead-form,
  .demo-form,
  .contact-form,
  .demo-panel,
  .services-grid,
  .industry-grid,
  .showcase-grid,
  .insight-grid,
  .timeline,
  .footer-grid,
  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .trust-strip,
  .highlight-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-strip div {
    justify-content: flex-start;
  }

  .signal-card {
    min-height: auto;
  }
}