/* =========================================================
   Bandeja Inteligente IA Pro
   Landing estática preparada para Netlify
   ========================================================= */

:root {
  --navy-950: #081a2e;
  --navy-900: #102a4c;
  --navy-850: #16385f;
  --navy-800: #1f4788;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --indigo-700: #163e73;
  --indigo-600: #2459a6;
  --indigo-500: #2f6fb8;
  --indigo-400: #5b8fd9;
  --blue-500: #2d7bc4;
  --sky-400: #0d9488;
  --green-600: #16a34a;
  --green-500: #22c55e;
  --amber-600: #d97706;
  --rose-500: #f43f5e;
  --border: rgba(148, 163, 184, .22);
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, .07);
  --shadow-md: 0 24px 70px rgba(15, 23, 42, .12);
  --shadow-lg: 0 35px 90px rgba(7, 16, 31, .28);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --transition: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--navy-900);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  display: block;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform var(--transition);
}

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

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto 0;
  height: 78px;
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .88);
  border-color: rgba(226, 232, 240, .9);
  box-shadow: 0 8px 30px rgba(15, 23, 42, .06);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -.02em;
}

.brand strong {
  color: var(--indigo-600);
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--indigo-600), var(--sky-400));
  border-radius: 11px;
  box-shadow: 0 10px 24px rgba(31, 71, 136, .26);
}

.brand-mark svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 29px;
  color: var(--slate-600);
  font-size: 14px;
  font-weight: 550;
}

.main-nav > a:not(.button) {
  position: relative;
}

.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: var(--indigo-500);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.main-nav > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--navy-900);
  border-radius: 999px;
  transition: transform var(--transition), opacity var(--transition);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--indigo-600), var(--blue-500));
  border: 1px solid transparent;
  border-radius: 13px;
  box-shadow: 0 13px 28px rgba(31, 71, 136, .24);
  font-size: 14px;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(31, 71, 136, .31);
  filter: saturate(1.1);
}

.button:focus-visible,
.main-nav a:focus-visible,
.brand:focus-visible,
input:focus-visible,
textarea:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(36, 89, 166, .27);
  outline-offset: 3px;
}

.button-small {
  min-height: 41px;
  padding: 10px 17px;
  border-radius: 11px;
}

.button-secondary {
  color: var(--navy-900);
  background: rgba(255, 255, 255, .78);
  border-color: var(--slate-200);
  box-shadow: 0 8px 25px rgba(15, 23, 42, .07);
  backdrop-filter: blur(10px);
}

.button-secondary:hover {
  box-shadow: 0 12px 30px rgba(15, 23, 42, .1);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 800px;
  padding: 156px 0 105px;
  background:
    radial-gradient(circle at 15% 18%, rgba(36, 89, 166, .11), transparent 28%),
    radial-gradient(circle at 92% 8%, rgba(13, 148, 136, .1), transparent 25%),
    linear-gradient(180deg, #fbfdff 0%, #f7f9ff 72%, #ffffff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .42;
  background-image:
    linear-gradient(rgba(36, 89, 166, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 89, 166, .045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 86%);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  width: 430px;
  height: 430px;
  top: -200px;
  right: 10%;
  background: rgba(36, 89, 166, .08);
}

.hero-glow-two {
  width: 320px;
  height: 320px;
  bottom: 20px;
  left: -170px;
  background: rgba(13, 148, 136, .09);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: 70px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--indigo-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 9px 13px;
  background: rgba(237, 244, 252, .88);
  border: 1px solid rgba(36, 89, 166, .15);
  border-radius: 999px;
  letter-spacing: .07em;
  text-transform: none;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--green-500);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(34, 197, 94, .13);
}

.hero h1 {
  max-width: 690px;
  margin: 24px 0 22px;
  color: var(--navy-950);
  font-size: clamp(46px, 5.6vw, 76px);
  line-height: .99;
  letter-spacing: -.058em;
}

.hero-lead {
  max-width: 620px;
  margin: 0;
  color: var(--slate-600);
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: -.01em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 33px;
}

.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 31px;
  color: var(--slate-500);
  font-size: 12px;
  font-weight: 650;
}

.platforms span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.platforms svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--indigo-500);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  position: relative;
  min-height: 515px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-window {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(203, 213, 225, .9);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  transform: perspective(1400px) rotateY(-2deg) rotateX(1deg);
}

.window-bar {
  height: 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 16px;
  background: #f8fafc;
  border-bottom: 1px solid var(--slate-200);
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
}

.window-dots span:first-child { background: #fb7185; }
.window-dots span:nth-child(2) { background: #fbbf24; }
.window-dots span:nth-child(3) { background: #4ade80; }

.window-title {
  color: var(--slate-600);
  font-size: 11px;
  font-weight: 650;
}

.window-status {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--slate-500);
  font-size: 10px;
  font-weight: 650;
}

.window-status span {
  width: 6px;
  height: 6px;
  background: var(--green-500);
  border-radius: 50%;
}

.mock-layout {
  min-height: 430px;
  display: grid;
  grid-template-columns: 94px 1fr;
}

.mock-sidebar {
  padding: 22px 16px;
  background: var(--navy-900);
}

.mock-logo {
  width: 32px;
  height: 32px;
  margin-bottom: 30px;
  background: linear-gradient(135deg, var(--blue-500), var(--sky-400));
  border-radius: 10px;
}

.mock-nav {
  width: 100%;
  height: 8px;
  margin: 17px 0;
  background: rgba(203, 213, 225, .18);
  border-radius: 999px;
}

.mock-nav.active {
  height: 34px;
  background: rgba(36, 89, 166, .32);
  border: 1px solid rgba(91, 143, 217, .23);
}

.mock-nav.short {
  width: 68%;
}

.mock-divider {
  height: 1px;
  margin: 26px 0;
  background: rgba(203, 213, 225, .13);
}

.mock-content {
  padding: 23px;
  background: #f8fafc;
}

.mock-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 19px;
}

.mock-toolbar > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mock-toolbar strong {
  color: var(--navy-900);
  font-size: 17px;
}

.mini-label {
  color: var(--slate-400);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-stack span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  margin-left: -6px;
  color: var(--white);
  background: var(--indigo-500);
  border: 2px solid #f8fafc;
  border-radius: 50%;
  font-size: 8px;
  font-weight: 750;
}

.avatar-stack span:nth-child(2) { background: #0ea5e9; }
.avatar-stack span:nth-child(3) { background: #64748b; }

.email-card {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
}

.email-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.email-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--indigo-600);
  background: #edf4fc;
  border-radius: 11px;
}

.email-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.email-heading {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.email-heading strong {
  overflow: hidden;
  color: var(--navy-900);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.email-heading span {
  color: var(--slate-400);
  font-size: 9px;
}

.priority-badge {
  padding: 6px 8px;
  color: #be123c;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.email-body-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 19px 0;
  border-bottom: 1px solid var(--slate-100);
}

.email-body-lines span {
  width: 100%;
  height: 6px;
  background: var(--slate-100);
  border-radius: 999px;
}

.email-body-lines span:nth-child(2) { width: 84%; }
.email-body-lines .short { width: 58%; }

.task-result {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 10px;
  padding-top: 14px;
}

.result-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px;
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: 11px;
}

.result-item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.result-item small {
  color: var(--slate-400);
  font-size: 7px;
}

.result-item strong {
  color: var(--slate-700);
  font-size: 9px;
  line-height: 1.3;
}

.result-icon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
}

.result-icon.check { background: var(--green-500); }
.result-icon.draft { background: var(--indigo-500); }

.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.mock-stats div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 13px 12px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
}

.mock-stats span {
  color: var(--navy-900);
  font-size: 18px;
  font-weight: 800;
}

.mock-stats small {
  color: var(--slate-400);
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(226, 232, 240, .96);
  border-radius: 13px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.floating-card > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.floating-card small {
  color: var(--slate-400);
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.floating-card strong {
  color: var(--navy-900);
  font-size: 10px;
}

.floating-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green-500);
  border-radius: 9px;
  font-size: 11px;
  font-weight: 850;
}

.floating-icon.purple {
  background: var(--indigo-500);
}

.floating-one {
  left: -32px;
  bottom: 40px;
  animation: float 5.7s ease-in-out infinite;
}

.floating-two {
  right: -28px;
  top: 72px;
  animation: float 5.1s ease-in-out .7s infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.section {
  padding: 112px 0;
}

.section-heading {
  max-width: 660px;
  margin-bottom: 52px;
}

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

.section-heading h2,
.solution-copy h2,
.pilot-copy h2,
.contact-copy h2 {
  margin: 16px 0 18px;
  color: var(--navy-950);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.043em;
}

.section-heading p,
.solution-copy > p,
.pilot-copy > p,
.contact-copy > p {
  margin: 0;
  color: var(--slate-600);
  font-size: 16px;
  line-height: 1.75;
}

.problem-section {
  background: var(--white);
}

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

.feature-card {
  position: relative;
  min-height: 278px;
  padding: 28px 24px 24px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(36, 89, 166, .26);
  box-shadow: var(--shadow-md);
}

.feature-number {
  position: absolute;
  top: 18px;
  right: 20px;
  color: #e4edf7;
  font-size: 42px;
  font-weight: 850;
  letter-spacing: -.05em;
}

.feature-icon,
.step-icon {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  margin-bottom: 27px;
  color: var(--indigo-600);
  background: #edf4fc;
  border-radius: 14px;
}

.feature-icon.warning {
  color: var(--rose-500);
  background: #fff1f2;
}

.feature-icon svg,
.step-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3,
.process-step h3,
.benefit-item h3 {
  margin: 0 0 10px;
  color: var(--navy-900);
  font-size: 17px;
  line-height: 1.35;
  letter-spacing: -.02em;
}

.feature-card p,
.process-step p,
.benefit-item p {
  margin: 0;
  color: var(--slate-500);
  font-size: 13px;
  line-height: 1.68;
}

.solution-section {
  position: relative;
  background: var(--slate-50);
}

.solution-panel {
  display: grid;
  grid-template-columns: 1fr .86fr;
  align-items: center;
  gap: 70px;
  padding: 66px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 10%, rgba(36, 89, 166, .33), transparent 29%),
    linear-gradient(135deg, var(--navy-950), #111b35 70%);
  border: 1px solid rgba(91, 143, 217, .2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.section-kicker.light {
  color: #8fb9d8;
}

.solution-copy h2,
.pilot-copy h2 {
  color: var(--white);
}

.solution-copy > p,
.pilot-copy > p {
  color: #bac5d8;
}

.human-control {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 30px;
  padding: 16px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 15px;
}

.human-control > span {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #86efac;
  background: rgba(34, 197, 94, .12);
  border-radius: 12px;
}

.human-control svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.human-control > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.human-control strong {
  font-size: 13px;
}

.human-control small {
  color: #94a3b8;
  font-size: 11px;
}

.flow-card {
  padding: 22px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 22px;
  backdrop-filter: blur(15px);
}

.flow-node {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 16px;
  background: rgba(255, 255, 255, .94);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.node-icon {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  color: var(--indigo-600);
  background: #edf4fc;
  border-radius: 11px;
  font-size: 15px;
}

.node-icon.violet {
  color: var(--white);
  background: var(--indigo-500);
}

.node-icon.green {
  color: var(--white);
  background: var(--green-500);
  font-weight: 800;
}

.node-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-node > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.flow-node small {
  color: var(--slate-400);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.flow-node strong {
  color: var(--navy-900);
  font-size: 12px;
}

.node-status {
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 7px;
  font-weight: 800;
  text-transform: uppercase;
}

.node-status.neutral {
  color: var(--slate-500);
  background: var(--slate-100);
}

.node-status.processing {
  color: var(--indigo-700);
  background: #edf4fc;
}

.node-status.complete {
  color: #15803d;
  background: #ecfdf5;
}

.flow-arrow {
  display: block;
  margin: 7px 0 7px 31px;
  color: #5b8fd9;
  font-size: 18px;
}

.process-section {
  overflow: hidden;
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.process-track::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 54px;
  left: 9%;
  right: 9%;
  height: 1px;
  background: linear-gradient(90deg, rgba(36, 89, 166, .12), rgba(36, 89, 166, .55), rgba(36, 89, 166, .12));
}

.process-step {
  position: relative;
  z-index: 1;
  padding: 0 9px;
}

.step-number {
  display: block;
  margin-bottom: 14px;
  color: var(--indigo-500);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .14em;
}

.step-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  color: var(--indigo-600);
  background: var(--white);
  border: 1px solid rgba(36, 89, 166, .18);
  box-shadow: 0 10px 30px rgba(31, 71, 136, .12);
  font-size: 19px;
}

.benefits-section {
  background: var(--slate-50);
}

.benefits-layout {
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  gap: 85px;
  align-items: start;
}

.benefits-heading {
  position: sticky;
  top: 120px;
  margin: 0;
}

.benefit-highlight {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 32px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.highlight-stat {
  color: var(--indigo-600);
  font-size: 25px;
  font-weight: 850;
  letter-spacing: -.05em;
}

.benefit-highlight > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.benefit-highlight strong {
  font-size: 13px;
}

.benefit-highlight span {
  color: var(--slate-500);
  font-size: 11px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  min-height: 156px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 17px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .045);
}

.benefit-item > span {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--indigo-600), var(--sky-400));
  border-radius: 9px;
  font-size: 12px;
  font-weight: 850;
}

.benefit-item h3 {
  margin-top: 4px;
}

.pilot-section {
  padding-top: 118px;
  padding-bottom: 118px;
  background: var(--white);
}

.pilot-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 75px;
  align-items: center;
  padding: 66px;
  background:
    radial-gradient(circle at 90% 10%, rgba(13, 148, 136, .24), transparent 32%),
    radial-gradient(circle at 14% 110%, rgba(36, 89, 166, .28), transparent 38%),
    linear-gradient(135deg, #0a1020, #131d39);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.button-light {
  margin-top: 29px;
  color: var(--navy-900);
  background: var(--white);
  box-shadow: 0 13px 32px rgba(0, 0, 0, .18);
}

.pilot-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}

.pilot-fact {
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 5px;
  padding: 20px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.pilot-fact.wide {
  min-height: 72px;
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.fact-value {
  color: var(--white);
  font-size: 36px;
  font-weight: 850;
  letter-spacing: -.05em;
}

.fact-label {
  color: #b7c2d5;
  font-size: 11px;
  line-height: 1.45;
}

.fact-check {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green-500);
  border-radius: 9px;
  font-size: 12px;
  font-weight: 850;
}

.contact-section {
  background: linear-gradient(180deg, var(--slate-50), var(--white));
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: center;
}

.contact-copy h2 {
  max-width: 570px;
}

.contact-points {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 33px;
}

.contact-points > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-point-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--indigo-600);
  background: #edf4fc;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 850;
}

.contact-points p {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 2px 0 0;
}

.contact-points strong {
  font-size: 13px;
}

.contact-points small {
  color: var(--slate-500);
  font-size: 11px;
}

.form-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form label > span {
  color: var(--slate-700);
  font-size: 12px;
  font-weight: 750;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--navy-900);
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 11px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.contact-form input {
  height: 49px;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
  line-height: 1.5;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--slate-400);
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: var(--white);
  border-color: var(--indigo-400);
  box-shadow: 0 0 0 4px rgba(36, 89, 166, .1);
}

.form-submit {
  width: 100%;
  margin-top: 2px;
  border: 0;
}

.form-submit svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-note {
  margin: -2px 0 0;
  color: var(--slate-400);
  font-size: 10px;
  text-align: center;
}

.form-note strong {
  color: var(--slate-500);
  font-weight: 650;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.site-footer {
  padding: 38px 0;
  color: #9aa7bd;
  background: var(--navy-950);
}

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

.footer-brand {
  color: var(--white);
}

.footer-brand strong {
  color: #8fb9d8;
}

.site-footer p {
  margin: 0;
  font-size: 11px;
}

.copyright {
  justify-self: end;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.7,.2,1);
}

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

.reveal-delay {
  transition-delay: 110ms;
}

/* Thank-you page */
.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  background:
    radial-gradient(circle at 20% 15%, rgba(36, 89, 166, .12), transparent 30%),
    linear-gradient(180deg, #fbfdff, #f5f7ff);
}

.thank-you-card {
  width: min(100%, 620px);
  padding: 52px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

.thank-you-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  color: var(--white);
  background: var(--green-500);
  border-radius: 19px;
  font-size: 26px;
  font-weight: 850;
}

.thank-you-card h1 {
  margin: 0 0 14px;
  color: var(--navy-950);
  font-size: clamp(34px, 6vw, 48px);
  letter-spacing: -.045em;
}

.thank-you-card p {
  margin: 0 0 27px;
  color: var(--slate-600);
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr 1.04fr;
    gap: 45px;
  }

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

  .solution-panel,
  .pilot-card {
    gap: 50px;
    padding: 52px;
  }

  .process-track {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 45px;
  }

  .process-track::before {
    display: none;
  }

  .benefits-layout,
  .contact-grid {
    gap: 55px;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 70px;
    right: 16px;
    left: 16px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: rgba(255, 255, 255, .98);
    border: 1px solid var(--slate-200);
    border-radius: 17px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 13px 12px;
  }

  .main-nav > a:not(.button)::after {
    display: none;
  }

  .main-nav .button {
    margin-top: 6px;
  }

  .nav-open .nav-toggle span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-open .nav-toggle span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    padding-top: 128px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .hero-copy {
    max-width: 740px;
    text-align: center;
    margin-inline: auto;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .platforms {
    justify-content: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-visual {
    width: min(100%, 690px);
    margin-inline: auto;
  }

  .solution-panel,
  .pilot-card,
  .benefits-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .benefits-heading {
    position: static;
  }

  .process-track {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .copyright {
    justify-self: auto;
  }
}

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

  .brand {
    font-size: 13px;
  }

  .brand-mark {
    width: 33px;
    height: 33px;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 79px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .platforms {
    gap: 12px;
    font-size: 10px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .app-window {
    border-radius: 18px;
    transform: none;
  }

  .window-bar {
    grid-template-columns: 1fr auto;
  }

  .window-title {
    display: none;
  }

  .mock-layout {
    min-height: 325px;
    grid-template-columns: 55px 1fr;
  }

  .mock-sidebar {
    padding: 15px 10px;
  }

  .mock-logo {
    width: 25px;
    height: 25px;
    margin-bottom: 22px;
  }

  .mock-nav.active {
    height: 28px;
  }

  .mock-content {
    padding: 14px;
  }

  .email-card {
    padding: 12px;
  }

  .email-top {
    grid-template-columns: auto 1fr;
  }

  .priority-badge {
    grid-column: 2;
    justify-self: start;
  }

  .task-result {
    grid-template-columns: 1fr;
  }

  .mock-stats {
    gap: 6px;
  }

  .mock-stats div {
    padding: 9px 7px;
  }

  .mock-stats span {
    font-size: 15px;
  }

  .floating-card {
    display: none;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    margin-bottom: 37px;
  }

  .section-heading h2,
  .solution-copy h2,
  .pilot-copy h2,
  .contact-copy h2 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .problem-grid,
  .process-track,
  .benefits-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
  }

  .solution-panel,
  .pilot-card {
    gap: 42px;
    padding: 35px 22px;
    border-radius: 23px;
  }

  .flow-node {
    grid-template-columns: auto 1fr;
  }

  .node-status {
    grid-column: 2;
    justify-self: start;
  }

  .process-step {
    padding: 0;
  }

  .pilot-facts {
    grid-template-columns: 1fr;
  }

  .pilot-fact.wide {
    grid-column: auto;
  }

  .form-card {
    padding: 23px 18px;
  }

  .thank-you-card {
    padding: 38px 22px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

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