@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap');

:root {
  --bg: #f2f7fd;
  --bg-alt: #f8fbff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #f4f9ff;
  --ink: #18253a;
  --muted: #627389;
  --line: rgba(24, 37, 58, 0.1);
  --primary: #1f66da;
  --primary-dark: #184ca2;
  --accent: #85cbff;
  --shadow: 0 24px 70px rgba(24, 53, 98, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(31, 102, 218, 0.2), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(133, 203, 255, 0.24), transparent 20%),
    linear-gradient(180deg, #fbfdff 0%, #f2f7fd 44%, #edf4fb 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(31, 102, 218, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 102, 218, 0.035) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.38), transparent 90%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

#root {
  isolation: isolate;
}

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 999px;
  background: rgba(245, 250, 255, 0.78);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 30px rgba(24, 53, 98, 0.08);
}

.brand {
  flex: 0 0 auto;
  width: clamp(46px, 5vw, 58px);
}

.brand img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(18, 71, 168, 0.16));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.98rem;
  color: var(--muted);
}

.site-nav a {
  transition: color 160ms ease;
}

.nav-link-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.nav-link-button:hover,
.nav-link-button:focus-visible {
  color: var(--primary);
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.header-cta,
.primary-button {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: 0 14px 30px rgba(24, 76, 162, 0.24);
}

.header-cta {
  padding: 12px 18px;
  font-size: 0.96rem;
}

.primary-button,
.secondary-button {
  min-height: 52px;
  padding: 0 22px;
}

.secondary-button {
  border: 1px solid rgba(29, 33, 41, 0.1);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.6);
}

.header-cta:hover,
.header-cta:focus-visible,
.primary-button:hover,
.primary-button:focus-visible,
.secondary-button:hover,
.secondary-button:focus-visible {
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.9fr);
  gap: 28px;
  padding: 72px 0 48px;
  align-items: center;
}

.hero-copy,
.hero-panel,
.section,
.logo-band,
.site-footer {
  position: relative;
}

button,
input,
select,
textarea {
  font: inherit;
}

.eyebrow,
.panel-label,
.comparison-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow,
.panel-label {
  color: var(--primary);
}

.hero h1,
.section-heading h2 {
  margin: 14px 0 0;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3.3rem, 7vw, 6.4rem);
}

.hero-lead,
.section-heading p,
.info-card p,
.audience-card p,
.proof-copy p,
.demo-card li,
.cta-card p,
.comparison-row p,
.site-footer span,
.hero-metrics span {
  color: var(--muted);
  line-height: 1.7;
}

.hero-lead {
  max-width: 59ch;
  margin: 22px 0 0;
  font-size: 1.09rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.hero-metrics li,
.panel-card,
.mini-card,
.info-card,
.flow-card,
.audience-card,
.comparison-row,
.proof-panel,
.demo-card,
.cta-card,
.logo-band,
.site-footer {
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-metrics li {
  padding: 18px;
  border-radius: var(--radius-md);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.hero-panel {
  padding: 22px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.7), rgba(240, 248, 255, 0.86)),
    linear-gradient(135deg, rgba(31, 102, 218, 0.08), rgba(133, 203, 255, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 28px 80px rgba(24, 53, 98, 0.14);
  overflow: hidden;
}

.hero-panel::before,
.hero-panel::after {
  content: '';
  position: absolute;
  inset: auto auto 14px -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 102, 218, 0.22), transparent 72%);
}

.hero-panel::after {
  inset: -42px -18px auto auto;
  background: radial-gradient(circle, rgba(133, 203, 255, 0.26), transparent 72%);
}

.panel-card {
  position: relative;
  padding: 24px;
  border-radius: 28px;
  overflow: hidden;
}

.panel-card-accent {
  background:
    linear-gradient(135deg, rgba(31, 102, 218, 0.96), rgba(24, 76, 162, 0.94)),
    var(--primary);
  color: #fff;
}

.panel-card-accent .panel-label,
.panel-card-accent p {
  color: rgba(255, 255, 255, 0.82);
}

.panel-card h2 {
  margin: 10px 0;
  font-size: 2rem;
  font-family: 'Space Grotesk', sans-serif;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.mini-card {
  padding: 18px;
  border-radius: 20px;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 16px;
  color: var(--primary-dark);
  background: linear-gradient(135deg, rgba(31, 102, 218, 0.12), rgba(133, 203, 255, 0.16));
  box-shadow: inset 0 0 0 1px rgba(31, 102, 218, 0.08);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin: 8px; 
}

.mini-card .card-icon,
.proof-stat .card-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 14px;
}

.mini-card span,
.proof-stat span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.mini-card strong,
.proof-stat strong {
  display: block;
  margin-top: 8px;
  font-size: 1.05rem;
}

.logo-band {
  margin: 8px 0 14px;
  padding: 18px 24px;
  border-radius: 999px;
}

.logo-band p {
  margin: 0;
  text-align: center;
  font-weight: 600;
  color: #3d4350;
}

.section {
  padding: 36px 0;
}

.section-heading {
  max-width: 720px;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.page-heading {
  padding-top: 28px;
}

.page-title {
  margin: 14px 0 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin-top: 18px;
}

.pillars-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.info-card,
.audience-card {
  padding: 24px;
  border-radius: 24px;
}

.info-card h3,
.audience-card h3,
.demo-card h3,
.cta-card h3 {
  margin: 0;
  font-size: 1.25rem;
}

.info-card p,
.audience-card p,
.cta-card p {
  margin: 14px 0 0;
}

.split-section .feature-surface,
.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 18px;
  margin-top: 28px;
}

.feature-list,
.proof-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li,
.proof-list li {
  padding: 18px 20px;
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 10px 30px rgba(24, 53, 98, 0.06);
}

.flow-card,
.proof-panel,
.demo-card,
.cta-card {
  padding: 24px;
  border-radius: 28px;
}

.flow-card ol,
.demo-card ol {
  display: grid;
  gap: 16px;
  margin: 18px 0 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.7;
}

.flow-visual-card {
  display: grid;
  gap: 20px;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(252, 254, 255, 0.96), rgba(238, 246, 255, 0.92)),
    var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.flow-visual-copy {
  max-width: 60ch;
}

.flow-visual-copy h3 {
  margin: 10px 0 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.flow-visual-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.flow-diagram {
  position: relative;
  padding: 8px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 20%, rgba(31, 102, 218, 0.12), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(133, 203, 255, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 247, 255, 0.88));
  border: 1px solid rgba(29, 33, 41, 0.06);
}

.flow-diagram svg {
  display: block;
  width: 100%;
  height: auto;
}

.flow-node rect,
.flow-node path {
  stroke: currentColor;
}

.flow-node {
  color: #24303b;
}

.flow-node rect:first-child {
  fill: rgba(255, 255, 255, 0.88);
  stroke: rgba(29, 33, 41, 0.08);
}

.flow-node-source {
  color: #1a4c9b;
}

.flow-node-cloud {
  color: #1f66da;
}

.flow-node-cold {
  color: #3a78c2;
}

.flow-node-restore {
  color: #235ea9;
}

.flow-node text {
  fill: currentColor;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-anchor: middle;
}

.flow-path-base {
  fill: none;
  stroke: url(#lineGradient);
  stroke-width: 3;
  stroke-linecap: round;
  opacity: 0.22;
}

.flow-path-base-green {
  stroke: url(#lineGradientGreen);
}

.flow-path-glow {
  fill: none;
  stroke: url(#lineGradient);
  stroke-width: 5;
  stroke-linecap: round;
  opacity: 0.78;
  filter: url(#softGlow);
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
}

.flow-path-glow-green {
  stroke: url(#lineGradientGreen);
}

.flow-path-anim-1 {
  animation: path-reveal 1.1s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.3s;
}

.flow-path-anim-2 {
  animation: path-reveal 1.1s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.65s;
}

.flow-path-anim-3 {
  animation: path-reveal 0.65s cubic-bezier(0.4, 0, 0.2, 1) forwards 1.0s;
}

.flow-signal-outer {
  fill: rgba(31, 102, 218, 0.08);
}

.flow-signal-halo {
  fill: rgba(31, 102, 218, 0.26);
}

.flow-signal-core {
  fill: #1f66da;
  filter: url(#softGlow);
}

.flow-signal-amber .flow-signal-outer {
  fill: rgba(133, 203, 255, 0.1);
}

.flow-signal-amber .flow-signal-halo {
  fill: rgba(133, 203, 255, 0.28);
}

.flow-signal-amber .flow-signal-core {
  fill: #5aaef5;
}

.flow-signal-green .flow-signal-outer {
  fill: rgba(68, 131, 214, 0.1);
}

.flow-signal-green .flow-signal-halo {
  fill: rgba(68, 131, 214, 0.28);
}

.flow-signal-green .flow-signal-core {
  fill: #2c74c7;
}

.flow-signal-group {
  animation: signal-pulse 2.4s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.flow-chip rect {
  fill: rgba(255, 255, 255, 0.9);
  stroke: rgba(29, 33, 41, 0.08);
}

.flow-chip text {
  fill: #4a5160;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-anchor: middle;
}

.flow-chip-restore text {
  fill: #235ea9;
}

.flow-chip-entrance-1 {
  animation: fade-in 0.6s ease both 0.7s;
}

.flow-chip-entrance-2 {
  animation: fade-in 0.6s ease both 1.05s;
}

.flow-chip-entrance-3 {
  animation: fade-in 0.6s ease both 1.4s;
}

.flow-node-entrance-1 {
  animation: fade-in 0.55s ease both 0.1s;
}

.flow-node-entrance-2 {
  animation: fade-in 0.55s ease both 0.45s;
}

.flow-node-entrance-3 {
  animation: fade-in 0.55s ease both 0.75s;
}

.flow-node-entrance-4 {
  animation: fade-in 0.55s ease both 1.05s;
}

.flow-node-pulse-ring {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  opacity: 0;
  animation: pulse-ring 3.8s ease-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.flow-node-entrance-1 .flow-node-pulse-ring {
  animation-delay: 0.9s;
}

.flow-node-entrance-2 .flow-node-pulse-ring {
  animation-delay: 2.2s;
}

.flow-node-entrance-3 .flow-node-pulse-ring {
  animation-delay: 1.6s;
}

.flow-node-entrance-4 .flow-node-pulse-ring {
  animation-delay: 3.0s;
}

.product-section {
  display: grid;
  gap: 28px;
}

.product-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-summary-card,
.product-card {
  border: 1px solid rgba(255, 255, 255, 0.74);
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.product-summary-card {
  padding: 22px 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(252, 254, 255, 0.95), rgba(239, 247, 255, 0.88)),
    var(--surface);
}

.product-summary-card span {
  display: block;
  margin-bottom: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4d6f9f;
}

.product-summary-card strong {
  display: block;
  font-size: 1.06rem;
  line-height: 1.55;
}

.product-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(253, 255, 255, 0.96), rgba(238, 246, 255, 0.88)),
    var(--surface);
}

.product-card-featured {
  grid-column: 1 / -1;
}

.product-card-copy {
  max-width: 58ch;
}

.product-card-copy h3 {
  margin: 10px 0 0;
  font-size: clamp(1.55rem, 2.4vw, 2.3rem);
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.product-card-copy p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.product-frame {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(29, 33, 41, 0.08);
  background:
    radial-gradient(circle at top left, rgba(40, 97, 175, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(243, 247, 252, 0.96), rgba(232, 239, 248, 0.82));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 18px 45px rgba(24, 42, 71, 0.1);
}

.product-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9.6;
  object-fit: cover;
  object-position: top center;
  transition: transform 220ms ease;
}

.product-card:hover .product-frame img,
.product-card:focus-within .product-frame img {
  transform: scale(1.015);
}

@keyframes path-reveal {
  from { stroke-dashoffset: 600; }
  to   { stroke-dashoffset: 0; }
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes signal-pulse {
  from {
    opacity: 0.48;
    transform: scale(0.88);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }

  to {
    opacity: 0.48;
    transform: scale(0.88);
  }
}

@keyframes pulse-ring {
  0%   { opacity: 0.55; transform: scale(0.97); }
  100% { opacity: 0;    transform: scale(1.12); }
}

.comparison-section .comparison-table {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.comparison-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 22px;
  border-radius: 26px;
}

.comparison-label {
  color: var(--muted);
}

.comparison-label-accent {
  color: var(--primary);
}

.comparison-row p {
  margin: 10px 0 0;
}

.proof-copy h2 {
  max-width: 13ch;
}

.proof-panel {
  display: grid;
  gap: 16px;
  align-content: start;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(239, 247, 255, 0.86)),
    var(--surface);
}

.proof-stat {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(29, 33, 41, 0.06);
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item-open {
  border-color: rgba(31, 102, 218, 0.14);
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 20px 24px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.faq-trigger span:first-child {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.45;
}

.faq-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--primary-dark);
  background: linear-gradient(135deg, rgba(31, 102, 218, 0.12), rgba(133, 203, 255, 0.16));
  font-size: 1.45rem;
  line-height: 1;
}

.faq-content {
  padding: 0 24px 22px;
}

.faq-content p {
  margin: 0;
  max-width: 72ch;
  color: var(--muted);
  line-height: 1.75;
}

.legal-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.legal-card {
  scroll-margin-top: 120px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(252, 254, 255, 0.96), rgba(239, 247, 255, 0.92)),
    var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.legal-card h3 {
  margin: 10px 0 0;
  font-size: 1.45rem;
  font-family: 'Space Grotesk', sans-serif;
}

.legal-card p {
  margin: 14px 0 0;
  max-width: 76ch;
  color: var(--muted);
  line-height: 1.75;
}

.legal-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.legal-list li {
  padding: 16px 18px;
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  line-height: 1.7;
}

.legal-card-page {
  margin-top: 28px;
}

.demo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 18px;
  margin-top: 28px;
}

.cta-card {
  align-self: stretch;
  background:
    linear-gradient(180deg, rgba(248, 252, 255, 0.96), rgba(233, 243, 255, 0.88)),
    var(--surface);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  gap: 18px;
  margin-top: 28px;
}

.contact-summary {
  display: grid;
  gap: 18px;
  align-content: start;
}

.contact-summary-card,
.contact-form,
.contact-meta-card {
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.contact-summary-card,
.contact-form {
  padding: 24px;
  border-radius: 28px;
}

.contact-summary-card h3 {
  margin: 10px 0 0;
  font-size: 1.4rem;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  padding: 16px 18px;
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  line-height: 1.7;
}

.contact-meta {
  display: grid;
  gap: 14px;
}

.contact-meta-card {
  padding: 18px;
  border-radius: 20px;
}

.contact-meta-card span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-meta-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.05rem;
}

.contact-form {
  display: grid;
  gap: 18px;
  background:
    linear-gradient(180deg, rgba(253, 255, 255, 0.96), rgba(240, 248, 255, 0.9)),
    var(--surface);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-size: 0.95rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(29, 33, 41, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(31, 102, 218, 0.46);
  box-shadow: 0 0 0 4px rgba(31, 102, 218, 0.12);
  background: #fff;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
}

.form-submit {
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  max-width: 42ch;
  color: var(--muted);
  line-height: 1.6;
}

.form-success {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(31, 102, 218, 0.18);
  background: rgba(31, 102, 218, 0.08);
  color: #184ca2;
  font-weight: 600;
}

.site-footer {
  display: grid;
  gap: 24px;
  margin-top: 20px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 28px 24px 24px;
  padding-inline: max(24px, calc((100vw - var(--max-width)) / 2 + 24px));
  border-radius: 24px;
}

.site-footer p {
  margin: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.footer-brand p {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
}

.footer-brand span {
  display: block;
  margin-top: 10px;
  max-width: 42ch;
}

.footer-column h3 {
  margin: 0 0 12px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-column ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column li,
.footer-column a,
.footer-copy {
  color: var(--muted);
  line-height: 1.65;
}

.footer-bottom {
  display: grid;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(29, 33, 41, 0.08);
}

.footer-legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-legal-nav a {
  font-weight: 700;
  color: var(--primary-dark);
}

.footer-copy {
  font-size: 0.94rem;
}

.quick-contact-widget {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 29;
  display: grid;
  justify-items: start;
  gap: 12px;
}

.quick-contact-panel {
  width: min(360px, calc(100vw - 24px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(245, 250, 255, 0.97), rgba(232, 242, 252, 0.94)),
    #edf5ff;
  box-shadow: 0 20px 60px rgba(24, 76, 162, 0.18);
  backdrop-filter: blur(18px);
}

.quick-contact-header {
  display: grid;
  gap: 8px;
}

.quick-contact-title {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.quick-contact-header span {
  color: #5a7190;
  line-height: 1.6;
}

.quick-contact-links {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.quick-contact-link {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(31, 102, 218, 0.12);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.quick-contact-link:hover,
.quick-contact-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(31, 102, 218, 0.24);
  box-shadow: 0 10px 24px rgba(24, 76, 162, 0.12);
}

.quick-contact-link strong {
  font-size: 0.98rem;
}

.quick-contact-link span {
  color: #5a7190;
  line-height: 1.5;
}

.quick-contact-trigger {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 0 18px 0 12px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #1f66da 0%, #184ca2 100%);
  color: #fff;
  box-shadow: 0 18px 40px rgba(24, 76, 162, 0.28);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.quick-contact-trigger:hover,
.quick-contact-trigger:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(24, 76, 162, 0.32);
}

.quick-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

.quick-contact-icon svg {
  width: 22px;
  height: 22px;
}

.quick-contact-text {
  font-weight: 700;
  letter-spacing: 0.01em;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  width: min(760px, calc(100vw - 24px));
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(252, 254, 255, 0.96), rgba(238, 246, 255, 0.94)),
    var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(24, 53, 98, 0.18);
}

.cookie-copy h2 {
  margin: 6px 0 10px;
  font-size: 1.25rem;
  line-height: 1.15;
}

.cookie-copy p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.cookie-eyebrow {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.cookie-copy a {
  color: var(--primary-dark);
  font-weight: 700;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: flex-end;
  gap: 12px;
}

.cookie-button {
  border: 0;
  cursor: pointer;
  min-width: 150px;
}

.hero-copy,
.hero-panel,
.logo-band,
.section,
.site-footer {
  animation: rise-in 720ms ease both;
}

.hero-panel {
  animation-delay: 140ms;
}

.logo-band {
  animation-delay: 220ms;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .hero,
  .split-section .feature-surface,
  .proof-section,
  .demo-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .flow-visual-card {
    padding: 20px;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .quick-contact-widget {
    bottom: 96px;
  }

  .cookie-actions {
    justify-content: flex-start;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-summary,
  .product-showcase {
    grid-template-columns: 1fr;
  }

  .pillars-grid,
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: 12px;
  }

  .site-header {
    top: 8px;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 28px;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 18px;
    font-size: 0.92rem;
  }

  .hero {
    padding-top: 46px;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-metrics,
  .comparison-row,
  .pillars-grid,
  .audience-grid,
  .product-summary,
  .product-showcase,
  .panel-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .logo-band {
    border-radius: 28px;
  }

  .flow-visual-copy h3 {
    font-size: 1.9rem;
  }

  .site-footer {
    padding-inline: 20px;
  }

  .cookie-banner {
    right: 10px;
    bottom: 10px;
    width: calc(100vw - 20px);
    padding: 18px;
    border-radius: 20px;
  }

  .cookie-button {
    width: 100%;
  }

  .quick-contact-widget {
    left: 10px;
    bottom: 96px;
    width: calc(100vw - 20px);
  }

  .quick-contact-panel {
    width: 100%;
    border-radius: 20px;
  }

  .quick-contact-trigger {
    width: 100%;
    justify-content: center;
  }
}
