/* ─── TOKENS ─── */
:root {
  --teal: #3ac1cd;
  --teal-dark: #2da1ac;
  --teal-glow: rgba(58, 193, 205, 0.35);
  --navy: #415464;
  --ocean: #aeddd6;
  --white: #ffffff;
  --ocean-light: #e8f7f5;
  --navy-light: #6b7f8f;
  --font-brand: "Qualy", "Roboto", Arial, sans-serif;
  --font-body: "Roboto", Arial, sans-serif;
}
@font-face {
  font-family: "Qualy";
  src: local("Qualy");
}

/* ─── RESET ─── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100vw;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: none;
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: none;
}
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}
.delay-5 {
  transition-delay: 0.5s;
}

/* ─── NAV ─── */
nav.main-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}
nav.main-nav.scrolled {
  box-shadow: 0 4px 24px rgba(65, 84, 100, 0.12);
}
.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.logo img {
  height: 36px;
  width: auto;
  display: block;
}
nav.main-nav ul {
  display: flex;
  gap: 8px 32px;
  list-style: none;
  flex-wrap: wrap;
  margin: 8px;
}
nav.main-nav ul li {
  white-space: nowrap;
}
nav.main-nav ul a {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
nav.main-nav ul a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.25s;
}
nav.main-nav ul a:hover {
  color: var(--teal);
}
nav.main-nav ul a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-login {
  font-size: 14px;
  font-weight: 500;
  color: var(--teal-dark);
  text-decoration: none;
  transition: color 0.2s;
  padding: 10px 24px;
  border-radius: 4px;
  border: 1px solid var(--teal-dark);
}
.nav-login:hover {
  box-shadow: 0 4px 16px var(--teal-glow);
  transform: translateY(-1px);
}
.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition:
    background 0.2s,
    box-shadow 0.2s,
    transform 0.15s;
}
.nav-cta:hover {
  background: var(--teal-dark) !important;
  box-shadow: 0 4px 16px var(--teal-glow);
  transform: translateY(-1px);
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  background: var(--white);
  padding: 9px 40px;
  font-size: 12px;
}
.breadcrumb ol {
  display: flex;
  gap: 6px;
  list-style: none;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
.breadcrumb a {
  color: var(--navy-light);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}
.breadcrumb a:hover {
  color: var(--teal);
}
.breadcrumb .bc-sep {
  color: var(--ocean);
  font-size: 13px;
  user-select: none;
}
.breadcrumb .bc-current {
  background: rgba(58, 193, 205, 0.1);
  color: var(--teal);
  border: 1px solid rgba(58, 193, 205, 0.25);
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.3px;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  padding: 110px 40px 90px;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
}
.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 70% 20%,
      rgba(58, 193, 205, 0.18) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 70% at 10% 80%,
      rgba(174, 221, 214, 0.12) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 40% 40% at 90% 90%,
      rgba(58, 193, 205, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(58, 193, 205, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58, 193, 205, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(58, 193, 205, 0.12);
  border: 1px solid rgba(58, 193, 205, 0.3);
  color: var(--teal);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
  animation: badgePulse 3s ease-in-out infinite;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: dotBlink 1.5s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(58, 193, 205, 0.15);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(58, 193, 205, 0);
  }
}
@keyframes dotBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.hero h1 {
  font-family: var(--font-brand);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 24px;
  animation: heroFadeUp 0.9s ease both;
}
.hero h1 em {
  font-style: normal;
  color: var(--teal);
  position: relative;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), rgba(58, 193, 205, 0));
  animation: underlineSlide 1.2s ease 0.8s both;
}
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes underlineSlide {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: 40px;
  animation: heroFadeUp 0.9s ease 0.2s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: heroFadeUp 0.9s ease 0.35s both;
}

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--teal);
  color: var(--white);
  padding: 15px 36px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-block;
  box-shadow: 0 4px 20px rgba(58, 193, 205, 0.35);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(58, 193, 205, 0.45);
}
.btn-primary:hover::before {
  opacity: 1;
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 15px 36px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.25s;
  display: inline-block;
}
.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--teal);
  padding: 18px 48px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}
.btn-white:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* ─── HERO CARD ─── */
.hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 36px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: heroFadeUp 0.9s ease 0.5s both;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.hero-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.hero-card-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-card-label::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--teal);
  opacity: 0.5;
}
.stat-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--teal);
  transition:
    background 0.25s,
    border-left-color 0.25s;
}
.stat-item:hover {
  background: rgba(58, 193, 205, 0.08);
  border-left-color: rgba(58, 193, 205, 0.8);
}
.stat-num {
  font-family: var(--font-brand);
  font-size: 38px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  text-shadow: 0 0 20px rgba(58, 193, 205, 0.4);
  width: auto;
  white-space: nowrap;
}
.stat-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

/* ─── SECTION LAYOUT ─── */
section {
  padding: 90px 40px;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-tag {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-tag::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--teal);
}
.section-title {
  font-family: var(--font-brand);
  font-size: 38px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 16px;
}
.section-intro {
  font-size: 18px;
  color: var(--navy-light);
  max-width: 600px;
  margin-bottom: 56px;
  line-height: 1.75;
}
.bg-white {
  background: var(--white);
}
.bg-light {
  background: linear-gradient(135deg, var(--ocean-light), #f5fdfc);
}

/* ─── WORKFLOW ─── */
.workflow {
  background: linear-gradient(135deg, var(--ocean-light) 0%, #f0fbf9 100%);
  position: relative;
  overflow: hidden;
}
.workflow::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(58, 193, 205, 0.08),
    transparent 70%
  );
}
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 8px;
}
.steps-track {
  position: absolute;
  top: 34px;
  left: calc(10% + 28px);
  width: calc(80% - 56px);
  height: 2px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--ocean) 100%);
  overflow: hidden;
}
.steps-track::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  animation: trackShimmer 2.5s ease-in-out infinite;
}
@keyframes trackShimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 10px;
  position: relative;
}
.step-num {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-brand);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  box-shadow:
    0 0 0 4px rgba(58, 193, 205, 0.15),
    0 4px 16px rgba(58, 193, 205, 0.3);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.step:hover .step-num {
  transform: scale(1.1);
  box-shadow:
    0 0 0 6px rgba(58, 193, 205, 0.2),
    0 8px 24px rgba(58, 193, 205, 0.4);
}
.step-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.step-desc {
  font-size: 12px;
  color: var(--navy-light);
  line-height: 1.55;
}

/* ─── FEATURE SECTIONS ─── */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-grid.reverse {
  direction: rtl;
}
.feature-grid.reverse > * {
  direction: ltr;
}
.feature-text .section-title {
  font-size: 32px;
}
.feature-text p {
  font-size: 16px;
  color: var(--navy-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.feature-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--navy);
  line-height: 1.55;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(58, 193, 205, 0.03);
  border: 1px solid rgba(58, 193, 205, 0.08);
  transition:
    background 0.2s,
    border-color 0.2s;
}
.feature-bullets li:hover {
  background: rgba(58, 193, 205, 0.07);
  border-color: rgba(58, 193, 205, 0.2);
}
.feature-bullets li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ─── MOCK PANELS ─── */
.mock-panel {
  background: var(--white);
  border: 1px solid rgba(174, 221, 214, 0.5);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 8px 40px rgba(65, 84, 100, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition:
    transform 0.35s cubic-bezier(0.22, 0.68, 0, 1.2),
    box-shadow 0.35s;
}
.mock-panel:hover {
  transform: translateY(-6px) rotate(-0.3deg);
  box-shadow: 0 20px 60px rgba(65, 84, 100, 0.18);
}
.mock-header {
  background: var(--navy);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mock-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.mock-title {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-left: auto;
  font-weight: 500;
}
.mock-body {
  padding: 24px;
}
@keyframes recDot {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Insight items */
.insight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--ocean-light);
  transition: background 0.2s;
}
.insight-item:last-child {
  border-bottom: none;
}
.insight-item:hover {
  margin: 0 -8px;
  padding: 12px 8px;
  background: rgba(58, 193, 205, 0.03);
  border-radius: 8px;
}
.insight-badge {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.badge-crit {
  background: #fde8e8;
  animation: critPulse 2s ease-in-out infinite;
}
.badge-warn {
  background: #fef3e2;
}
.badge-act {
  background: #e8f3fe;
}
@keyframes critPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.2);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(192, 57, 43, 0);
  }
}
.insight-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}
.insight-desc {
  font-size: 12px;
  color: var(--navy-light);
  line-height: 1.45;
}

/* Schedule rows */
.schedule-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 8px;
  border-bottom: 1px solid var(--ocean-light);
  font-size: 13px;
  border-radius: 6px;
  transition: background 0.2s;
}
.schedule-row:last-child {
  border-bottom: none;
}
.schedule-row:hover {
  background: var(--ocean-light);
}
.sched-time {
  color: var(--navy-light);
  min-width: 44px;
  font-size: 12px;
  font-weight: 500;
}
.sched-name {
  font-weight: 600;
  color: var(--navy);
  flex: 1;
}
.sched-proc {
  color: var(--navy-light);
  font-size: 12px;
  flex: 1.2;
}
.alert-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}
.alert-red {
  background: #fde8e8;
  color: #c0392b;
}
.alert-ok {
  background: #e8f7f5;
  color: var(--teal);
  font-size: 12px;
}
.alert-warn {
  background: #fef3e2;
  color: #d68910;
}
.template-tag {
  font-size: 10px;
  background: var(--ocean-light);
  color: var(--teal-dark);
  padding: 3px 9px;
  border-radius: 10px;
  font-weight: 600;
  white-space: nowrap;
}

/* Instrument score rows (survey mock) */
.score-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 8px;
  border-bottom: 1px solid var(--ocean-light);
  font-size: 13px;
  border-radius: 6px;
  transition: background 0.2s;
}
.score-row:last-child {
  border-bottom: none;
}
.score-row:hover {
  background: var(--ocean-light);
}
.score-name {
  font-weight: 600;
  color: var(--navy);
  flex: 1;
}
.score-val {
  color: var(--navy-light);
  font-size: 12px;
  font-weight: 500;
}
.score-flag {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.flag-green {
  background: #3fb98a;
}
.flag-amber {
  background: #e8a13a;
}
.flag-red {
  background: #d0594b;
}

/* ─── SPECIALTY CARDS ─── */
.available-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.specialty-card {
  background: var(--white);
  border: 1px solid rgba(65, 84, 100, 0.08);
  border-radius: 16px;
  padding: 26px 24px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-align: left;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.specialty-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
}
.specialty-card:hover,
.specialty-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(58, 193, 205, 0.16);
  border-color: rgba(58, 193, 205, 0.25);
  outline: none;
}
.specialty-card h3 {
  font-family: var(--font-brand);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin: 6px 0 8px;
}
.specialty-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--navy-light);
  margin: 0 0 14px;
}
.specialty-card-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.specialty-card:hover .specialty-card-cta {
  text-decoration: underline;
}

/* ─── COMING-SOON CHIPS ─── */
.coming-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.chip {
  border: 1px solid var(--ocean);
  background: var(--white);
  color: var(--navy);
  padding: 9px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}
.chip:hover,
.chip:focus-visible {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--ocean-light);
  outline: none;
}

/* ─── INTEGRATION LOGOS ─── */
.integration-logos {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.logo-placeholder {
  background: var(--white);
  border: 1px solid var(--ocean);
  padding: 14px 22px;
  border-radius: 10px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
}

/* ─── CAPABILITY CARDS ─── */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 8px;
}
.cap-card {
  background: var(--white);
  border: 1px solid rgba(65, 84, 100, 0.08);
  border-radius: 16px;
  padding: 26px 24px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.cap-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(58, 193, 205, 0.12);
  border-color: rgba(58, 193, 205, 0.2);
}
.cap-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(58, 193, 205, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.cap-card h3 {
  font-family: var(--font-brand);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}
.cap-card p {
  font-size: 14px;
  color: var(--navy-light);
  line-height: 1.6;
  margin: 0 0 14px;
}
.cap-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--ocean-light);
  padding: 5px 11px;
  border-radius: 20px;
}

/* ─── DUO STATUS GRID (today vs roadmap) ─── */
.duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
}
.duo-col {
  background: var(--white);
  border: 1px solid rgba(65, 84, 100, 0.08);
  border-radius: 16px;
  padding: 26px 28px;
}
.duo-col h3 {
  font-family: var(--font-brand);
  font-size: 16px;
  color: var(--navy);
  margin: 0 0 16px;
}
.duo-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.duo-col li {
  font-size: 14px;
  color: var(--navy-light);
  line-height: 1.5;
  padding-left: 24px;
  position: relative;
}
.duo-col.today li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.duo-col.roadmap li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--navy-light);
}

/* ─── MODAL ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(65, 84, 100, 0.55);
  backdrop-filter: blur(2px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 20px;
}
.modal-overlay.active {
  display: flex;
}
.modal {
  background: var(--white);
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  max-height: 82vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.modal h2 {
  font-family: var(--font-brand);
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
}
.modal-close {
  background: var(--ocean-light);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  color: var(--navy);
  cursor: pointer;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.2s,
    color 0.2s;
}
.modal-close:hover {
  background: var(--teal);
  color: var(--white);
}
.modal-content p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--navy-light);
  margin: 0 0 16px;
}
.modal-instruments {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--ocean-light);
}
.modal-instruments h3 {
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 12px;
}
.modal-instruments ul {
  margin: 0;
  padding-left: 20px;
}
.modal-instruments li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--navy);
  margin-bottom: 6px;
}

/* ─── REGISTER-INTEREST FORM ─── */
.register-form {
  background: var(--white);
  border: 1px solid var(--ocean);
  border-radius: 16px;
  padding: 32px;
  max-width: 560px;
}
.register-form h3 {
  font-family: var(--font-brand);
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 8px;
}
.register-form p.register-lead {
  font-size: 15px;
  color: var(--navy-light);
  margin-bottom: 20px;
}
.register-inline {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: flex-end;
}
.register-inline .form-group {
  flex: 1;
  min-width: 220px;
  margin-bottom: 0;
}

/* ─── COMPARISON ─── */
.comparison {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.comparison::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 80% 50%,
    rgba(58, 193, 205, 0.06),
    transparent
  );
}
.comparison .section-title {
  color: var(--white);
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  position: relative;
  z-index: 1;
}
.compare-col {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s;
}
.compare-col:hover {
  transform: translateY(-4px);
}
.compare-col.after {
  border-color: rgba(58, 193, 205, 0.3);
  background: rgba(58, 193, 205, 0.05);
  box-shadow: 0 0 40px rgba(58, 193, 205, 0.08);
}
.compare-head {
  padding: 22px 28px;
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  gap: 12px;
}
.compare-col.after .compare-head {
  border-bottom-color: rgba(58, 193, 205, 0.2);
  color: var(--teal);
}
.compare-list {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}
.compare-list li {
  font-size: 14px;
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.compare-list li::before {
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 700;
}
.compare-col:not(.after) .compare-list li {
  color: rgba(255, 255, 255, 0.5);
}
.compare-col:not(.after) .compare-list li::before {
  content: "✕";
  color: rgba(255, 100, 100, 0.5);
  font-size: 11px;
  margin-top: 3px;
}
.compare-col.after .compare-list li {
  color: rgba(255, 255, 255, 0.9);
}
.compare-col.after .compare-list li::before {
  content: "✓";
  color: var(--teal);
}

/* ─── SOCIAL PROOF ─── */
.social-proof {
  background: linear-gradient(135deg, var(--ocean-light), #f5fdfc);
  position: relative;
  overflow: hidden;
}
.social-proof::after {
  content: "❝";
  position: absolute;
  right: 5%;
  top: 10%;
  font-size: 200px;
  color: rgba(58, 193, 205, 0.05);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.quote-block {
  background: var(--white);
  border-radius: 20px;
  padding: 48px 48px 40px 44px;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(65, 84, 100, 0.1);
  border-left: 5px solid var(--teal);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.quote-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 56px rgba(65, 84, 100, 0.14);
}
.quote-block::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58, 193, 205, 0.06), transparent);
  transform: translate(60px, -60px);
}
.quote-text {
  font-size: 22px;
  line-height: 1.65;
  color: var(--navy);
  font-style: italic;
  margin-bottom: 28px;
  font-family: Georgia, var(--font-brand), serif;
}
.quote-attr {
  font-size: 15px;
  font-weight: 700;
  color: var(--teal);
}
.quote-org {
  font-size: 13px;
  color: var(--navy-light);
  margin-top: 4px;
}
.proof-stats {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-top: 64px;
  flex-wrap: wrap;
}
.proof-stat {
  text-align: center;
  padding: 32px 48px;
  border-right: 1px solid rgba(174, 221, 214, 0.5);
  flex: 1;
  min-width: 180px;
}
.proof-stat:last-child {
  border-right: none;
}
.proof-stat-num {
  font-family: var(--font-brand);
  font-size: 56px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 0 30px rgba(58, 193, 205, 0.25);
}
.proof-stat-label {
  font-size: 14px;
  color: var(--navy-light);
  max-width: 180px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ─── FAQ ─── */
details {
  border-bottom: 1px solid var(--ocean);
  padding: 4px 0;
  transition: background 0.2s;
  border-radius: 8px;
}
details[open] {
  background: var(--ocean-light);
  padding: 4px 16px;
  margin: 0 -16px;
}
summary {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
summary::-webkit-details-marker {
  display: none;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ocean-light);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition:
    background 0.2s,
    transform 0.3s;
  font-weight: 300;
}
details[open] .faq-icon {
  background: var(--teal);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--navy-light);
  line-height: 1.8;
}

/* ─── CTA SECTION ─── */
.cta-section {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 100px 40px;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 80% at 50% 50%,
      rgba(58, 193, 205, 0.12),
      transparent
    ),
    radial-gradient(
      ellipse 40% 50% at 20% 20%,
      rgba(174, 221, 214, 0.06),
      transparent
    ),
    radial-gradient(
      ellipse 40% 50% at 80% 80%,
      rgba(58, 193, 205, 0.08),
      transparent
    );
}
.cta-glow-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(58, 193, 205, 0.08);
  animation: ringPulse 4s ease-in-out infinite;
}
.cta-glow-ring-2 {
  animation-delay: 2s;
  width: 800px;
  height: 800px;
}
@keyframes ringPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.5;
  }
}
.cta-section h2 {
  font-family: var(--font-brand);
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.cta-section p {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

/* ─── FOOTER ─── */
footer {
  background: rgba(55, 68, 80, 1);
  color: rgba(255, 255, 255, 0.45);
  padding: 44px 40px;
  text-align: center;
  font-size: 13px;
}
footer a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s;
}
footer a:hover {
  color: var(--ocean);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 500px) {
  nav.main-nav .nav-login {
    display: none;
  }
}

@media (max-width: 900px) {
  nav.main-nav {
    padding: 0 8px;
  }
  .hero {
    min-height: auto;
    padding: 80px 24px 60px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero h1 {
    font-size: 36px;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .steps-track {
    display: none;
  }
  .feature-grid,
  .feature-grid.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .compare-grid {
    grid-template-columns: 1fr;
  }
  .duo-grid {
    grid-template-columns: 1fr;
  }
  nav.main-nav ul {
    display: none;
  }
  section {
    padding: 64px 24px;
  }
  .proof-stats {
    flex-direction: column;
  }
  .proof-stat {
    border-right: none;
    border-bottom: 1px solid rgba(174, 221, 214, 0.4);
    padding: 24px;
  }
  .proof-stat:last-child {
    border-bottom: none;
  }
  .cta-section h2 {
    font-size: 32px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-trust-bar {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
}

/* ─── CONTACT PAGE ─── */
.contact-page-hero {
  background: var(--white);
  padding: 72px 40px 60px;
  border-bottom: 1px solid var(--ocean-light);
}
.contact-page-hero h1 {
  font-family: var(--font-brand);
  font-size: 44px;
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 16px;
}
.contact-page-hero h1 em {
  font-style: normal;
  color: var(--teal);
}
.contact-page-hero p {
  font-size: 18px;
  color: var(--navy-light);
  max-width: 620px;
  line-height: 1.65;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  max-width: 1080px;
  margin: 0 auto;
}
.contact-form-panel {
  background: var(--white);
  border: 1px solid var(--ocean-light);
  border-radius: 16px;
  padding: 40px;
}
.contact-form-panel h2 {
  font-family: var(--font-brand);
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--navy);
  background: #f7fafa;
  border: 1.5px solid var(--ocean);
  border-radius: 8px;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23415464' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(58, 193, 205, 0.12);
  background: var(--white);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--navy-light);
  opacity: 0.6;
}
.form-submit {
  width: 100%;
  padding: 14px 24px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 8px;
}
.form-submit:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}
.form-submit:active {
  transform: translateY(0);
}
.form-note {
  font-size: 13px;
  color: var(--navy-light);
  margin-top: 12px;
  text-align: center;
}
.contact-info-panel {
  padding-top: 4px;
}
.contact-info-panel h2 {
  font-family: var(--font-brand);
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 28px;
}
.expect-list {
  list-style: none;
  margin-bottom: 48px;
}
.expect-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.expect-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--ocean-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.expect-item-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}
.expect-item-text p {
  font-size: 14px;
  color: var(--navy-light);
  line-height: 1.55;
  margin: 0;
}
.contact-quote {
  background: var(--ocean-light);
  border-left: 3px solid var(--teal);
  border-radius: 0 10px 10px 0;
  padding: 20px 20px 20px 24px;
}
.contact-quote blockquote {
  font-size: 15px;
  color: var(--navy);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 12px;
}
.contact-quote cite {
  font-size: 13px;
  font-style: normal;
  color: var(--navy-light);
  font-weight: 500;
}
.contact-trust-bar {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 52px 40px;
  background: var(--navy);
  border-top: 1px solid rgba(174, 221, 214, 0.15);
}
.contact-trust-item {
  text-align: center;
  color: var(--white);
}
.contact-trust-num {
  font-family: var(--font-brand);
  font-size: 38px;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 6px;
}
.contact-trust-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 140px;
  line-height: 1.4;
}
