:root {
  --navy: #0f172a;
  --navy-0: #08111f;
  --navy-2: #111c33;
  --navy-3: #16233a;
  --teal: #2dd4bf;
  --cyan: #38bdf8;
  --deep-teal: #0ea5a4;
  --off-white: #f8fafc;
  --muted: #64748b;
  --line: #dbe5ef;
  --card: #ffffff;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.13);
  --shadow-soft: 0 18px 48px rgba(15, 23, 42, 0.09);
  --glow: 0 0 46px rgba(45, 212, 191, 0.2);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  color: var(--navy);
  background:
    linear-gradient(180deg, #f8fafc 0%, #eefcf9 42%, #f8fafc 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  isolation: isolate;
}

body::before {
  content: "";
  position: fixed;
  inset: -25% -12%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 18%, rgba(45, 212, 191, 0.12), transparent 26%),
    radial-gradient(circle at 86% 38%, rgba(56, 189, 248, 0.11), transparent 28%),
    radial-gradient(circle at 38% 88%, rgba(14, 165, 164, 0.1), transparent 28%);
  filter: blur(8px);
  opacity: 0.9;
  animation: ambient-flow 16s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0%, rgba(56, 189, 248, 0.08) 50%, transparent 100%),
    linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px);
  background-size: 120% 100%, 100% 9px;
  opacity: 0.5;
  animation: ambient-scan 18s ease-in-out infinite alternate;
}

body.nav-open {
  overflow: hidden;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "General Sans", Inter, system-ui, sans-serif;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.35rem);
  max-width: 980px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0;
}

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

img,
svg {
  max-width: 100%;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: 880px;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section-light {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(45, 212, 191, 0.08), rgba(248, 250, 252, 0) 58%),
    #ffffff;
}

.section-light::before,
.section-dark::before,
.page-hero::before,
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(14, 165, 164, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 164, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 68%);
}

.section-dark::before {
  background-image:
    linear-gradient(rgba(45, 212, 191, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.06) 1px, transparent 1px);
  opacity: 0.8;
}

.section:not(.hero)::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 0%, rgba(56, 189, 248, 0.14) 44%, rgba(45, 212, 191, 0.2) 50%, transparent 66%);
  transform: translateX(-115%);
  animation: section-sweep 9s ease-in-out infinite;
}

.section-light:nth-of-type(even)::after,
.section-dark::after {
  animation-delay: -5s;
}

.section > .container,
.page-hero > .container,
.hero > .container {
  position: relative;
  z-index: 1;
}

.section-dark {
  overflow: hidden;
  color: var(--off-white);
  background:
    linear-gradient(90deg, rgba(45, 212, 191, 0.12), transparent 28%),
    linear-gradient(135deg, var(--navy-0), #0d1627 52%, #0b1222);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--teal);
  color: var(--navy);
  font-weight: 700;
}

.skip-link:focus {
  top: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 17, 31, 0.86);
  border-bottom: 1px solid rgba(248, 250, 252, 0.1);
  backdrop-filter: blur(18px);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: var(--scroll-progress, 0%);
  height: 2px;
  background: linear-gradient(90deg, var(--deep-teal), var(--teal), #ccfbf1);
  box-shadow: 0 0 18px rgba(45, 212, 191, 0.55);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--off-white);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(45, 212, 191, 0.38);
  background: linear-gradient(145deg, rgba(8, 17, 31, 0.92), rgba(15, 23, 42, 0.68));
  box-shadow: 0 0 28px rgba(45, 212, 191, 0.3);
}

.brand-mark img {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(15, 23, 42, 0.18);
  border-radius: 5px;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 12px;
  border: 1px solid rgba(45, 212, 191, 0.26);
  opacity: 0.65;
  animation: ring-pulse 3.5s ease-in-out infinite;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(248, 250, 252, 0.78);
  font-size: 0.95rem;
}

.nav-menu a {
  transition: color 180ms ease, transform 180ms ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--off-white);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(248, 250, 252, 0.18);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--off-white);
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.32) 42%, transparent 72%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

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

.btn:hover::after {
  transform: translateX(120%);
}

.btn-primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--teal), #99f6e4);
  box-shadow: 0 12px 30px rgba(45, 212, 191, 0.2);
}

.btn-secondary {
  color: var(--off-white);
  border-color: rgba(45, 212, 191, 0.2);
  background: rgba(248, 250, 252, 0.08);
}

.section-light .btn-secondary,
.demo-card .btn-secondary {
  color: var(--navy);
  border-color: rgba(15, 23, 42, 0.12);
  background: #ffffff;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--off-white);
  background:
    linear-gradient(115deg, rgba(45, 212, 191, 0.14), transparent 34%),
    linear-gradient(150deg, var(--navy-0) 0%, var(--navy) 54%, #0b1222 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 212, 191, 0.5), transparent);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: 64px;
  align-items: center;
  min-height: 720px;
}

.hero-grid::before {
  content: "";
  position: absolute;
  inset: 11% 32% 12% -6%;
  z-index: -1;
  pointer-events: none;
  border: 1px solid rgba(45, 212, 191, 0.12);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(45, 212, 191, 0.16), transparent 58%);
  filter: blur(0.5px);
  opacity: 0.55;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--deep-teal);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 16px rgba(45, 212, 191, 0.76);
  animation: status-pulse 2.4s ease-in-out infinite;
}

.hero .eyebrow,
.section-dark .eyebrow {
  color: var(--teal);
}

.hero-subhead,
.page-hero p,
.copy-stack p,
.section-heading p {
  max-width: 710px;
  color: rgba(248, 250, 252, 0.78);
  font-size: 1.17rem;
}

.page-hero p,
.section-light .copy-stack p,
.section-light .section-heading p,
.copy-stack p {
  color: #475569;
}

.section-heading .eyebrow,
.section-light .section-heading .eyebrow {
  color: var(--deep-teal);
}

.section-dark .section-heading .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow {
  color: var(--teal);
}

.page-hero p,
.section-dark .copy-stack p {
  color: rgba(248, 250, 252, 0.78);
}

.hero-subhead {
  margin-top: 24px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.company-section {
  padding: 58px 0 64px;
}

.company-panel {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(45, 212, 191, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(8, 17, 31, 0.88)),
    radial-gradient(circle at 20% 0%, rgba(45, 212, 191, 0.2), transparent 34%);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28), 0 0 60px rgba(45, 212, 191, 0.12);
}

.company-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0%, rgba(45, 212, 191, 0.09) 38%, rgba(56, 189, 248, 0.12) 48%, transparent 62%),
    linear-gradient(rgba(45, 212, 191, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.05) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  transform: translateX(-110%);
  animation: panel-scan 9s ease-in-out infinite;
}

.company-panel > * {
  position: relative;
  z-index: 1;
}

.company-panel-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}

.company-panel-header h2 {
  max-width: 720px;
  margin-top: 12px;
  color: var(--off-white);
  font-size: clamp(1.8rem, 3.1vw, 3rem);
}

.company-panel-header p:not(.eyebrow) {
  margin: 0;
  color: rgba(248, 250, 252, 0.7);
}

.company-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.company-logo-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 118px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(45, 212, 191, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 250, 252, 0.94));
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.2);
}

.company-logo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(45, 212, 191, 0.08), transparent);
  opacity: 0;
  transition: opacity 220ms ease;
}

.company-logo-card:hover::before {
  opacity: 1;
}

.company-logo-card img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 190px;
  max-height: 76px;
  object-fit: contain;
}

.company-logo-card:nth-child(4) img {
  max-width: 104px;
  max-height: 92px;
}

.visual-frame {
  position: relative;
  overflow: hidden;
  min-height: 645px;
  border: 1px solid rgba(45, 212, 191, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.08), rgba(248, 250, 252, 0.03)),
    rgba(8, 17, 31, 0.72);
  box-shadow: 0 42px 130px rgba(0, 0, 0, 0.32), 0 0 80px rgba(45, 212, 191, 0.18);
  backdrop-filter: blur(20px);
}

.visual-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(45, 212, 191, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 212, 191, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.45;
}

.visual-frame::after {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: linear-gradient(100deg, transparent 34%, rgba(45, 212, 191, 0.08), transparent 62%);
  animation: panel-scan 8s ease-in-out infinite;
}

.frame-header,
.workflow-canvas,
.automation-strip {
  position: relative;
  z-index: 1;
}

.frame-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(248, 250, 252, 0.1);
  color: rgba(248, 250, 252, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.frame-header span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 16px rgba(45, 212, 191, 0.86);
  animation: status-pulse 2.2s ease-in-out infinite;
}

.workflow-canvas {
  display: grid;
  gap: 18px;
  min-height: auto;
  padding: 24px;
}

.workflow-canvas::before {
  content: "";
  position: absolute;
  left: 38px;
  top: 62px;
  bottom: 36px;
  z-index: 0;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(45, 212, 191, 0.72), rgba(56, 189, 248, 0.32), transparent);
}

.workflow-canvas::after {
  content: "";
  position: absolute;
  left: 34px;
  top: 78px;
  z-index: 1;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 20px rgba(45, 212, 191, 0.9);
  animation: workflow-dot 4.2s ease-in-out infinite;
}

.pipeline-card {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 22px;
  border: 1px solid rgba(248, 250, 252, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.1), rgba(248, 250, 252, 0.055)),
    rgba(15, 23, 42, 0.68);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.pipeline-card strong {
  display: block;
  margin: 8px 0;
  font-size: 1.1rem;
}

.pipeline-card p,
.mini-label {
  color: rgba(248, 250, 252, 0.7);
}

.mini-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.inbox-card {
  top: auto;
  left: auto;
}

.ai-card {
  top: auto;
  right: auto;
  width: calc(100% - 48px);
  margin-left: 48px;
  border-color: rgba(45, 212, 191, 0.45);
  background:
    linear-gradient(180deg, rgba(45, 212, 191, 0.18), rgba(14, 165, 164, 0.08)),
    rgba(15, 23, 42, 0.66);
}

.review-card {
  top: auto;
  bottom: auto;
  left: auto;
  width: calc(100% - 24px);
  margin-left: 24px;
}

.mini-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.mini-stack span {
  padding: 5px 8px;
  border: 1px solid rgba(45, 212, 191, 0.2);
  border-radius: 999px;
  color: rgba(248, 250, 252, 0.74);
  background: rgba(8, 17, 31, 0.44);
  font-size: 0.72rem;
  font-weight: 800;
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.signal-row span {
  padding: 10px 8px;
  border-radius: 7px;
  color: var(--off-white);
  background: rgba(15, 23, 42, 0.38);
  text-align: center;
  font-weight: 800;
  font-size: 0.84rem;
}

.workflow-line {
  display: none;
}

.workflow-line::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 12%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 18px rgba(45, 212, 191, 0.86);
  animation: line-travel 3.4s ease-in-out infinite;
}

.line-one {
  top: 202px;
  left: 208px;
  width: 190px;
  transform: rotate(24deg);
}

.line-two {
  top: 330px;
  left: 170px;
  width: 220px;
  transform: rotate(-28deg);
}

.data-rail {
  position: absolute;
  border: 1px solid rgba(45, 212, 191, 0.14);
  border-radius: 999px;
  animation: rail-drift 7s ease-in-out infinite;
}

.rail-one {
  inset: 92px 64px auto auto;
  width: 170px;
  height: 170px;
}

.rail-two {
  inset: auto auto 70px 24px;
  width: 210px;
  height: 210px;
  animation-delay: -2.6s;
}

.automation-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 16px 16px;
  overflow: hidden;
  border: 1px solid rgba(248, 250, 252, 0.12);
  border-radius: var(--radius);
  background: rgba(248, 250, 252, 0.08);
}

.automation-strip span {
  padding: 13px 12px;
  color: rgba(248, 250, 252, 0.7);
  background: rgba(8, 17, 31, 0.34);
  font-size: 0.78rem;
  font-weight: 800;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading.left {
  margin-bottom: 0;
}

.card-grid {
  display: grid;
  gap: 22px;
}

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

.feature-card,
.offer-card,
.demo-card,
.service-card,
.value-item,
.contact-form,
.contact-note,
.cta-panel {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
  box-shadow: var(--shadow);
}

.feature-card,
.offer-card,
.demo-card,
.value-item {
  position: relative;
  overflow: hidden;
  padding: 26px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-card::before,
.offer-card::before,
.demo-card::before,
.service-card::before,
.value-item::before,
.contact-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(45, 212, 191, 0.85), transparent);
  opacity: 0;
  transition: opacity 220ms ease;
}

.cta-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(56, 189, 248, 0.08) 38%, rgba(45, 212, 191, 0.12) 48%, transparent 62%);
  transform: translateX(-120%);
  opacity: 0.9;
  animation: panel-scan 8s ease-in-out infinite;
}

.feature-card:hover,
.offer-card:hover,
.demo-card:hover,
.value-item:hover,
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 165, 164, 0.2);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.14);
}

.feature-card:hover::before,
.offer-card:hover::before,
.demo-card:hover::before,
.service-card:hover::before,
.value-item:hover::before,
.contact-form::before {
  opacity: 1;
}

.feature-card h3,
.offer-card h3,
.demo-card h2,
.value-item h2 {
  margin-top: 18px;
  margin-bottom: 15px;
  font-size: 1.22rem;
}

.feature-card p,
.offer-card p,
.demo-card p,
.value-item p,
.service-card p,
.contact-copy p,
.contact-note p {
  color: #475569;
}

.icon-line,
.icon-doc,
.icon-flow,
.icon-loop,
.icon-route {
  display: inline-block;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(45, 212, 191, 0.2), rgba(14, 165, 164, 0.06)),
    #effffb;
  box-shadow: inset 0 0 0 1px rgba(14, 165, 164, 0.08), 0 12px 28px rgba(14, 165, 164, 0.1);
  position: relative;
}

.icon-line::before,
.icon-doc::before,
.icon-flow::before,
.icon-loop::before,
.icon-route::before {
  content: "";
  position: absolute;
  inset: 13px 10px;
  border-top: 2px solid var(--deep-teal);
  border-bottom: 2px solid var(--deep-teal);
}

.icon-doc::after {
  content: "";
  position: absolute;
  inset: 9px 12px;
  border: 2px solid var(--deep-teal);
  border-radius: 4px;
}

.icon-flow::after,
.icon-route::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  right: 9px;
  top: 17px;
  border-radius: 50%;
  background: var(--teal);
}

.icon-loop::after {
  content: "";
  position: absolute;
  inset: 11px;
  border: 2px solid var(--deep-teal);
  border-left-color: transparent;
  border-radius: 50%;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.copy-stack {
  display: grid;
  gap: 18px;
}

.tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  color: #075985;
  background: rgba(45, 212, 191, 0.16);
  font-weight: 900;
  font-size: 0.8rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 22px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff, #f8fafc);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
}

.steps li::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.12), transparent 45%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.steps li:hover::before {
  opacity: 1;
}

.steps span {
  display: block;
  margin-bottom: 28px;
  color: var(--deep-teal);
  font-weight: 900;
}

.steps strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.03rem;
}

.steps p {
  color: #475569;
  font-size: 0.95rem;
}

.final-cta {
  background: #ffffff;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 48px;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(45, 212, 191, 0.16), transparent 28%, rgba(14, 165, 164, 0.1)),
    var(--navy-0);
  color: var(--off-white);
}

.cta-panel p {
  max-width: 620px;
  margin: 18px auto 28px;
  color: rgba(248, 250, 252, 0.78);
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--off-white);
  background:
    linear-gradient(115deg, rgba(45, 212, 191, 0.14), transparent 34%),
    linear-gradient(135deg, var(--navy-0), var(--navy-2));
}

.page-hero .container {
  padding-top: 56px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.62fr);
  gap: 64px;
  align-items: center;
}

.page-hero-copy h1 + p,
.page-hero h1 + p {
  margin-top: 26px;
}

.section-heading h2 + p,
.contact-copy h2 + p,
.cta-panel h2 + p {
  margin-top: 20px;
}

.system-panel {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  border: 1px solid rgba(45, 212, 191, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.08), rgba(248, 250, 252, 0.035)),
    rgba(8, 17, 31, 0.68);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.26), 0 0 60px rgba(45, 212, 191, 0.14);
  backdrop-filter: blur(18px);
}

.system-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(45, 212, 191, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.58;
}

.system-panel::after {
  content: "";
  position: absolute;
  inset: -35% -15%;
  background: linear-gradient(105deg, transparent 28%, rgba(56, 189, 248, 0.2), rgba(45, 212, 191, 0.26), transparent 70%);
  animation: panel-scan 5.6s ease-in-out infinite;
}

.system-panel .panel-top::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--teal), transparent);
  transform: translateX(-65%);
  animation: rail-sweep 3.6s ease-in-out infinite;
}

.panel-top,
.system-flow,
.metric-grid,
.demo-timeline {
  position: relative;
  z-index: 1;
}

.panel-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 16px;
  border-bottom: 1px solid rgba(248, 250, 252, 0.12);
  color: rgba(248, 250, 252, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.panel-top span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.system-flow {
  display: grid;
  gap: 12px;
  padding: 28px 22px 18px;
}

.system-flow span {
  position: relative;
  display: block;
  padding: 14px 16px 14px 38px;
  border: 1px solid rgba(248, 250, 252, 0.12);
  border-radius: var(--radius);
  color: var(--off-white);
  background: rgba(15, 23, 42, 0.56);
  font-weight: 850;
}

.system-flow span::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 18px rgba(45, 212, 191, 0.8);
  transform: translateY(-50%);
  animation: status-pulse 2.6s ease-in-out infinite;
}

.system-flow span:nth-child(2)::before {
  animation-delay: -0.8s;
}

.system-flow span:nth-child(3)::before {
  animation-delay: -1.6s;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 0 22px 22px;
}

.metric-grid span {
  padding: 10px;
  border: 1px solid rgba(45, 212, 191, 0.18);
  border-radius: var(--radius);
  color: rgba(248, 250, 252, 0.76);
  background: rgba(8, 17, 31, 0.5);
  font-size: 0.78rem;
  font-weight: 850;
}

.demo-timeline {
  display: grid;
  grid-template-columns: 1fr 0.75fr 0.5fr;
  gap: 10px;
  padding: 28px 22px 2px;
}

.demo-timeline span {
  height: 42px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(45, 212, 191, 0.2), rgba(56, 189, 248, 0.08));
}

.service-list {
  display: grid;
  gap: 18px;
}

.service-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 28px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.service-number {
  display: inline-flex;
  align-items: center;
  color: var(--deep-teal);
  font-weight: 900;
  font-size: 1rem;
}

.demo-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.demo-card .btn {
  margin-top: auto;
}

.demo-preview {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 10px;
  min-height: 150px;
  padding: 18px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(17, 28, 51, 0.92)),
    var(--navy);
}

.demo-preview::after {
  display: none;
}

.demo-preview span {
  display: block;
  height: 32px;
  border-radius: 6px;
  background: rgba(248, 250, 252, 0.12);
}

.demo-preview span:nth-child(2) {
  width: 80%;
  background: rgba(45, 212, 191, 0.2);
}

.demo-preview span:nth-child(3) {
  width: 62%;
}

.doc-preview {
  align-content: center;
}

.extract-preview {
  grid-template-columns: 1fr 1fr;
}

.extract-preview span {
  height: 52px;
}

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

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

.faq-item {
  position: relative;
  overflow: clip;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
  box-shadow: var(--shadow-soft);
}

.faq-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(45, 212, 191, 0.85), transparent);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 22px 26px;
  color: var(--navy);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 900;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--deep-teal);
  border-bottom: 2px solid var(--deep-teal);
  transform: rotate(45deg) translateY(-3px);
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(225deg) translateY(-3px);
}

.faq-item p {
  max-width: 880px;
  margin: -4px 0 0;
  padding: 0 26px 24px;
  color: #475569;
}

.blog-preview-section {
  padding-top: 104px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}

.blog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 300px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.blog-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #e2e8f0;
}

.blog-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.blog-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(45, 212, 191, 0.9), transparent);
}

.blog-card::after {
  display: none;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 165, 164, 0.2);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.14);
}

.blog-card h2,
.blog-card h3 {
  margin-top: 18px;
  margin-bottom: 14px;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
}

.blog-card p {
  color: #475569;
}

.blog-card a {
  display: inline-flex;
  margin-top: auto;
  padding-top: 22px;
  color: #0f766e;
  font-weight: 900;
}

.value-item h2 {
  margin-top: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.article-layout {
  background: #ffffff;
}

.article-hero {
  position: relative;
  overflow: hidden;
  color: var(--off-white);
  background:
    linear-gradient(115deg, rgba(45, 212, 191, 0.14), transparent 34%),
    linear-gradient(135deg, var(--navy-0), var(--navy-2));
}

.article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(45, 212, 191, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 70%);
}

.article-hero .container {
  position: relative;
  z-index: 1;
  padding-top: 44px;
}

.article-back {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--teal);
  font-weight: 900;
}

.article-meta {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(248, 250, 252, 0.78);
  font-size: 1.12rem;
}

.article-feature-image {
  overflow: hidden;
  margin: 0 0 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.article-feature-image img {
  display: block;
  width: 100%;
  height: auto;
}

.article-content {
  display: grid;
  gap: 20px;
  color: #334155;
  font-size: 1.06rem;
}

.article-content h2 {
  margin-top: 18px;
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
  color: var(--navy);
}

.article-content ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 24px;
}

.article-content .btn {
  justify-self: start;
  margin-top: 10px;
}

.article-next {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.article-next .eyebrow {
  margin-bottom: 14px;
}

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

.article-next-grid a {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.article-next-grid a::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(45, 212, 191, 0.85), transparent);
}

.article-next-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(14, 165, 164, 0.22);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.13);
}

.article-next-grid span {
  display: block;
  margin-bottom: 10px;
  color: #0f766e;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-next-grid strong {
  display: block;
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.35;
}

.contact-copy h2 {
  margin-bottom: 18px;
}

.contact-note {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  padding: 22px;
}

.contact-note strong {
  display: block;
  margin-bottom: 8px;
}

.contact-actions {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-action {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: var(--radius);
  color: var(--navy);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-action::after {
  display: none;
}

.contact-action:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 165, 164, 0.28);
  box-shadow: 0 22px 56px rgba(15, 23, 42, 0.12);
}

.contact-action span,
.contact-action strong,
.contact-action small {
  position: relative;
  z-index: 1;
}

.contact-action span {
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-action strong {
  font-size: 1rem;
}

.contact-action small {
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}

.contact-action.primary {
  border-color: rgba(45, 212, 191, 0.34);
  background:
    linear-gradient(135deg, rgba(45, 212, 191, 0.16), rgba(56, 189, 248, 0.08)),
    #ffffff;
}

.contact-form {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 18px;
  padding: 28px;
}

.contact-form::before {
  opacity: 1;
}

.form-row {
  display: grid;
  gap: 8px;
}

.two-column {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  color: var(--navy);
  font-weight: 800;
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--navy);
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input:hover,
select:hover,
textarea:hover {
  border-color: #94a3b8;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--deep-teal);
  box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.12);
}

input:focus,
select:focus,
textarea:focus,
.btn:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(45, 212, 191, 0.45);
  outline-offset: 3px;
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 1.5em;
  color: #0f766e;
  font-size: 0.94rem;
  font-weight: 800;
}

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

.hidden-frame {
  position: absolute;
  width: 1px;
  height: 1px;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: rgba(248, 250, 252, 0.75);
  background: #08111f;
  padding: 34px 0;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(45, 212, 191, 0.12), transparent 34%, rgba(56, 189, 248, 0.08)),
    linear-gradient(rgba(45, 212, 191, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 212, 191, 0.05) 1px, transparent 1px);
  background-size: auto, 36px 36px, 36px 36px;
  transform: translateX(-8%);
  animation: footer-glow 12s ease-in-out infinite alternate;
}

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

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(8, 17, 31, 0.78);
  backdrop-filter: blur(18px);
}

.video-modal.is-open {
  display: grid;
}

.video-dialog {
  position: relative;
  width: min(960px, 100%);
  border: 1px solid rgba(45, 212, 191, 0.22);
  border-radius: var(--radius);
  background: var(--navy-0);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.46), 0 0 70px rgba(45, 212, 191, 0.18);
}

.video-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(248, 250, 252, 0.18);
  border-radius: var(--radius);
  color: var(--off-white);
  background: rgba(15, 23, 42, 0.78);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.video-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(45, 212, 191, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.06) 1px, transparent 1px),
    #08111f;
  background-size: 32px 32px, 32px 32px, auto;
}

.video-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-empty {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 100%;
  padding: 32px;
  color: var(--off-white);
  text-align: center;
}

.video-empty h2 {
  margin-top: 16px;
}

.video-empty p {
  max-width: 480px;
  margin-top: 14px;
  color: rgba(248, 250, 252, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a:hover {
  color: var(--off-white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(248, 250, 252, 0.1);
  color: rgba(248, 250, 252, 0.58);
  font-size: 0.86rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal a:hover {
  color: var(--off-white);
}

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

.js.reveal-ready .reveal {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(28px);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.card-grid .reveal:nth-child(2),
.service-list .reveal:nth-child(2),
.steps .reveal:nth-child(2),
.value-grid .reveal:nth-child(2) {
  --reveal-delay: 80ms;
}

.card-grid .reveal:nth-child(3),
.service-list .reveal:nth-child(3),
.steps .reveal:nth-child(3),
.value-grid .reveal:nth-child(3) {
  --reveal-delay: 150ms;
}

.card-grid .reveal:nth-child(4),
.service-list .reveal:nth-child(4),
.steps .reveal:nth-child(4),
.value-grid .reveal:nth-child(4) {
  --reveal-delay: 220ms;
}

.card-grid .reveal:nth-child(5),
.service-list .reveal:nth-child(5),
.steps .reveal:nth-child(5) {
  --reveal-delay: 290ms;
}

.card-grid .reveal:nth-child(6),
.service-list .reveal:nth-child(6) {
  --reveal-delay: 360ms;
}

@keyframes panel-scan {
  0%,
  35% {
    transform: translateX(-100%);
  }

  70%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes section-sweep {
  0%,
  42% {
    transform: translateX(-115%);
  }

  78%,
  100% {
    transform: translateX(115%);
  }
}

@keyframes rail-sweep {
  0%,
  28% {
    transform: translateX(-70%);
    opacity: 0.2;
  }

  58% {
    opacity: 1;
  }

  100% {
    transform: translateX(70%);
    opacity: 0.25;
  }
}

@keyframes ambient-flow {
  from {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }

  to {
    transform: translate3d(2%, 1.5%, 0) scale(1.05);
  }
}

@keyframes ambient-scan {
  from {
    background-position: -20% 0, 0 0;
    opacity: 0.34;
  }

  to {
    background-position: 120% 0, 0 0;
    opacity: 0.58;
  }
}

@keyframes ring-pulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.32;
  }

  50% {
    transform: scale(1.18);
    opacity: 0.78;
  }
}

@keyframes line-travel {
  0% {
    left: 10%;
    opacity: 0;
  }

  20%,
  78% {
    opacity: 1;
  }

  100% {
    left: 88%;
    opacity: 0;
  }
}

@keyframes status-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.35);
    opacity: 1;
  }
}

@keyframes rail-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.28;
  }

  50% {
    transform: translate3d(10px, -8px, 0) scale(1.04);
    opacity: 0.5;
  }
}

@keyframes workflow-dot {
  0% {
    top: 76px;
    opacity: 0;
  }

  15%,
  82% {
    opacity: 1;
  }

  50% {
    top: 48%;
  }

  100% {
    top: calc(100% - 48px);
    opacity: 0;
  }
}

@keyframes footer-glow {
  from {
    transform: translateX(-8%);
    opacity: 0.7;
  }

  to {
    transform: translateX(8%);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .visual-frame::after,
  .company-panel::before,
  .workflow-canvas::after,
  .workflow-line::after,
  .data-rail,
  .status-dot,
  .demo-preview::after,
  body::before,
  .section::after,
  .brand-mark::before,
  .eyebrow::before,
  .feature-card::after,
  .offer-card::after,
  .demo-card::after,
  .service-card::before,
  .value-item::after,
  .contact-form::before,
  .contact-form::after,
  .contact-note::after,
  .cta-panel::after,
  .site-footer::before,
  .blog-card::before,
  .blog-card::after,
  .system-panel::after,
  .system-panel .panel-top::after,
  .system-flow span::before {
    animation: none !important;
  }
}

@media (max-width: 980px) {
  .section {
    padding: 76px 0;
  }

  .hero-grid,
  .split,
  .contact-grid,
  .page-hero-grid,
  .company-panel-header {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-visual {
    min-height: auto;
  }

  .visual-frame {
    min-height: 520px;
  }

  .card-grid.three,
  .steps,
  .value-grid,
  .blog-grid,
  .article-next-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps li {
    min-height: 190px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 16px 24px;
    color: var(--off-white);
    background: rgba(15, 23, 42, 0.98);
    border-bottom: 1px solid rgba(248, 250, 252, 0.1);
  }

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

  .nav-menu a {
    padding: 14px 4px;
  }

  .nav-cta {
    margin-top: 10px;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-visual {
    min-height: auto;
  }

  .visual-frame {
    min-height: auto;
  }

  .workflow-canvas {
    display: grid;
    gap: 12px;
    min-height: auto;
    padding: 12px;
  }

  .workflow-canvas::before,
  .workflow-canvas::after {
    display: none;
  }

  .pipeline-card {
    position: static;
    width: 100%;
    padding: 18px;
  }

  .ai-card,
  .review-card {
    width: 100%;
    margin-left: 0;
  }

  .frame-header {
    padding: 12px;
    font-size: 0.66rem;
  }

  .workflow-line,
  .data-rail {
    display: none;
  }

  .automation-strip {
    grid-template-columns: 1fr;
    margin: 0 12px 12px;
  }

  .automation-strip span {
    padding: 11px 12px;
    font-size: 0.72rem;
  }

  .card-grid.three,
  .steps,
  .value-grid,
  .blog-grid,
  .article-next-grid,
  .two-column {
    grid-template-columns: 1fr;
  }

  .system-panel {
    min-height: auto;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    padding: 32px 22px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

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

  .company-section {
    padding: 42px 0 56px;
  }

  .company-panel {
    padding: 22px;
  }

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

  .company-logo-card img {
    max-width: 220px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.25rem;
  }

  .button-row,
  .btn {
    width: 100%;
  }

  .feature-card,
  .offer-card,
  .demo-card,
  .service-card,
  .contact-form {
    padding: 22px;
  }

  .company-logo-grid {
    grid-template-columns: 1fr;
  }
}
