/* ═══════════════════════════════════════════════════
   NOÉDA – Main Landing Page
   Mobile-first · Monochromatic · Sophisticated
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@600;700&display=swap');

:root {
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --color-bg: #ffffff;
  --color-text: #00072D;
  --color-structure: #00072D;
  --color-interactive: #00072D;
  --color-accent: #F87060;
  --color-border-soft: rgba(0, 7, 45, 0.12);

  --bg:         var(--color-bg);
  --bg-raised:  #f4f4f4;
  --bg-card:    rgba(0, 7, 45, 0.04);
  --bg-hover:   rgba(0, 7, 45, 0.08);

  --border:     var(--color-border-soft);
  --border-mid: rgba(0, 7, 45, 0.17);
  --border-strong: rgba(0, 7, 45, 0.25);

  --text-primary:   var(--color-text);
  --text-secondary: rgba(0, 7, 45, 0.82);
  --text-muted:     rgba(0, 7, 45, 0.60);
  --text-faint:     rgba(0, 7, 45, 0.45);

  --accent:     var(--color-accent);
  --accent-dim: rgba(0, 7, 45, 0.78);
  --focus-ring: #00072D;
  --focus-ring-soft: rgba(0, 7, 45, 0.15);
  --status-success: #00072D;
  --status-warning: rgba(0, 7, 45, 0.70);
  --status-danger:  rgba(0, 7, 45, 0.55);
  --status-info:    rgba(0, 7, 45, 0.55);

  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   20px;
  --radius-2xl:  24px;
  --radius-full: 9999px;

  --fs-sm:   13px;
  --fs-base: 15px;
  --fs-lg:   18px;
  --fs-xl:   24px;
  --fs-2xl:  clamp(1.75rem, 4vw, 2.5rem);
  --fs-3xl:  clamp(2.25rem, 7vw, 4.25rem);
}

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

.skip-nav {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 10px 16px;
  background: var(--bg);
  color: #00072D;
  border-radius: 0 0 8px 8px;
  font-size: var(--fs-base);
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-nav {
  color: var(--text-primary);
}
.skip-nav:focus {
  top: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.5;
  color: var(--text-secondary);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ═══════════════ TYPOGRAPHY ═══════════════ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

.text-gradient {
  background: linear-gradient(135deg, #00072D 0%, rgba(0, 7, 45, 0.65) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════ BUTTONS ═══════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: var(--radius-full);
  font-size: var(--fs-base);
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 13px 28px;
  letter-spacing: -0.2px;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px var(--focus-ring-soft);
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}
.btn-primary:hover {
  background: #e05d4f;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(248, 112, 96, 0.35);
}

.btn-ghost {
  background: rgba(0, 7, 45, 0.05);
  color: #00072D;
  border: 1px solid rgba(0, 7, 45, 0.18);
}
.btn-ghost:hover {
  border-color: rgba(0, 7, 45, 0.30);
  color: #00072D;
  background: rgba(0, 7, 45, 0.09);
}

.btn-sm {
  padding: 9px 20px;
  font-size: var(--fs-base);
}

.btn-lg {
  padding: 17px 36px;
  font-size: var(--fs-lg);
}

.btn-mobile-nav {
  background: var(--accent);
  color: #ffffff;
  width: 100%;
  margin-top: 12px;
}

/* ═══════════════ BADGE ═══════════════ */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #001C55;
  background: #ffffff;
  border: 1px solid #001C55;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.badge svg {
  opacity: 0.85;
}

/* ── Section-level badges: same pill treatment everywhere ────────────────── */
.section-workflow .badge,
.section-how .badge,
.section-roadmap .badge,
.section-why .badge,
.section-cta .badge,
.section-pricing .badge {
  color: #001C55;
  background: #ffffff;
  border-color: #001C55;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #001C55;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(0, 28, 85, 0.25);
}

/* ═══════════════ HEADER ═══════════════ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}

.header.scrolled {
  background: rgba(255, 255, 255, 1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  height: 48px;
}

.logo {
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  text-decoration: none;
}

.nav {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover {
  color: var(--color-interactive);
}

.nav-link:focus-visible,
.nav-dropdown-link:focus-visible,
.mobile-nav-link:focus-visible,
.footer-link:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-caret {
  font-size: var(--fs-sm);
  line-height: 1;
  opacity: 0.75;
  transition: transform 0.2s ease;
}

.nav-dropdown.open .nav-dropdown-caret {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-md);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 12px 30px rgba(0, 7, 45, 0.18);
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 120;
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(2px);
}

.nav-dropdown-link {
  display: block;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: var(--fs-base);
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.nav-dropdown-link:hover {
  background: rgba(0, 7, 45, 0.09);
  color: var(--color-interactive);
}

.btn-header {
  display: none;
  background: var(--accent);
  color: #ffffff;
  font-weight: 500;
  padding: 6px 16px;
  font-size: var(--fs-sm);
}
.btn-header:hover {
  background: #e05d4f;
}

.btn-header:focus-visible,
.btn-mobile-nav:focus-visible,
.btn-outline:focus-visible {
  outline-color: var(--focus-ring);
  box-shadow: 0 0 0 4px var(--focus-ring-soft);
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 38px;
  height: 31px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 48px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 99;
  transform: translateY(-120%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid var(--border);
  max-height: calc(100dvh - 48px - env(safe-area-inset-bottom));
  overflow-y: auto;
}
.mobile-nav.open {
  transform: translateY(0);
}

.mobile-nav-link {
  display: block;
  padding: 14px 16px;
  font-size: var(--fs-base);
  font-weight: 400;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: background 0.2s, color 0.2s;
}
.mobile-nav-link:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}

.mobile-nav-sublink {
  padding-left: 28px;
  font-size: var(--fs-base);
  color: var(--text-muted);
}

/* ═══════════════ FLOCK BACKGROUND ═══════════════ */

#flock-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  transition: filter 0.15s ease-out;
}

#flock-bg canvas {
  display: block;
}

/* ═══════════════ HERO ═══════════════ */

.hero {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0 60px;
  overflow: hidden;
  background: transparent;
}


.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.hero-title {
  font-size: var(--fs-3xl);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -2px;
  line-height: 1.08;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  position: relative;
}

.hero-title em::after {
  content: '';
  position: absolute;
  bottom: 0.05em;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 7, 45, 0.5) 0%, rgba(0, 7, 45, 0.2) 100%);
  border-radius: 2px;
}

.hero-sub {
  font-size: var(--fs-base);
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 760px;
  margin-bottom: 32px;
  overflow-wrap: anywhere;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}

.hero-glow {
  position: absolute;
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(0, 7, 45,0.05) 0%, rgba(0, 7, 45,0.02) 40%, transparent 70%);
  pointer-events: none;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.hero-proof-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-sm);
  font-weight: 400;
  color: var(--text-faint);
}

.hero-proof-icon {
  display: flex;
  align-items: center;
  color: var(--accent-dim);
}

.boid-controls {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.boid-claim {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  gap: 8px;
  align-items: center;
  padding: 14px 16px;
  border-radius: var(--radius-lg);
  border: none;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.boid-claim-title {
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-primary);
  text-align: center;
}

.boid-claim input[type=range] {
  grid-column: 1 / -1;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 1px;
  border-radius: 1px;
  background: rgba(0, 7, 45, 0.25);
  outline: none;
}

.boid-claim input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid rgba(0, 7, 45, 0.5);
  background: var(--color-interactive);
  cursor: pointer;
  box-shadow: 0 0 0 2px rgba(0, 7, 45, 0.22);
}

.boid-claim input[type=range]::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid rgba(0, 7, 45, 0.5);
  background: var(--color-interactive);
  cursor: pointer;
  box-shadow: 0 0 0 2px rgba(0, 7, 45, 0.22);
}

.boid-claim-subtext {
  grid-column: 1 / -1;
  font-size: var(--fs-sm);
  line-height: 1.5;
  color: var(--text-muted);
  text-align: center;
}

/* ═══════════════ SECTION HEADERS ═══════════════ */

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: var(--fs-2xl);
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.section-sub {
  font-size: var(--fs-base);
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.65;
  max-width: 780px;
  margin: 0 auto;
  overflow-wrap: anywhere;
}

/* ═══════════════ WORKFLOW (EXAMPLE USE CASE) ═══════════════ */

.section-workflow {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  background: rgba(0, 7, 45, 0.035);
  --wf-accent: #f87060;
  --wf-accent-text: rgba(124, 56, 46, 0.96);
  --wf-accent-soft: rgba(248, 112, 96, 0.14);
  --wf-accent-softer: rgba(248, 112, 96, 0.08);
  --wf-accent-border: rgba(248, 112, 96, 0.34);
}

.wf-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.wf-stepper {
  display: none;
}

.wf-dot {
  display: none;
}

.wf-stage {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: auto;
}

.wf-panel {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.wf-panel-label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: -0.1px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.wf-badge {
  font-size: var(--fs-sm);
  font-weight: 500;
  background: rgba(0, 7, 45, 0.1);
  color: var(--text-muted);
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0;
  transition: opacity 0.3s, background-color 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.wf-badge.show {
  opacity: 1;
  background: var(--wf-accent-softer);
  color: var(--wf-accent-text);
  border-color: var(--wf-accent-border);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.26);
}

.wf-card {
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, box-shadow 0.3s;
  min-height: 180px;
  flex: 1;
}
.wf-card.highlight {
  border-color: rgba(0, 7, 45, 0.38);
  box-shadow: 0 0 20px rgba(0, 7, 45, 0.14);
}

.wf-bar {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  background: rgba(0, 7, 45, 0.03);
  border-bottom: 1px solid rgba(0, 7, 45, 0.1);
  gap: 6px;
}

.wf-dots {
  display: flex;
  gap: 4px;
}
.wf-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(0, 7, 45, 0.30);
}
.wf-dots span:nth-child(1) { background: rgba(0, 7, 45, 0.45); }
.wf-dots span:nth-child(2) { background: rgba(0, 7, 45, 0.35); }
.wf-dots span:nth-child(3) { background: rgba(0, 7, 45, 0.25); }

.wf-url {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  background: rgba(0, 7, 45, 0.04);
  padding: 3px 12px;
  border-radius: 4px;
  flex: 1;
  text-align: center;
  font-weight: 500;
}

.wf-msg-header {
  background: rgba(0, 7, 45, 0.04);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-bottom: 1px solid rgba(0, 7, 45, 0.1);
}

.wf-msg-avatar {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-dim);
}

.wf-msg-name {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  font-weight: 500;
}

.wf-steps {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.wf-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  opacity: 1;
  transition: all 0.4s;
  transform: translateX(-4px);
}
.wf-step:last-child { border-bottom: none; }
.wf-step.active {
  opacity: 1;
  transform: translateX(0);
}

.wf-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--text-faint);
  color: var(--text-muted);
  font-size: var(--fs-sm);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s;
}
.wf-step.active .wf-step-num {
  background: var(--text-primary);
  color: var(--bg);
}

.wf-step-text { text-align: left; }

.wf-step-title {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-secondary);
}

.wf-step-sub {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.4;
}

.cal-body {
  display: flex;
  flex: 1;
  overflow: hidden;
}

.cal-left {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  padding: 10px 12px;
  border-right: 1px solid var(--border);
}

.cal-nav {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  margin-bottom: 6px;
  font-weight: 500;
}
.cal-nav span { color: var(--text-faint); }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-auto-rows: 20px;
  font-size: var(--fs-sm);
  text-align: center;
  color: var(--text-muted);
  line-height: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 6px;
  margin-bottom: 8px;
}
.cal-grid .hd {
  color: var(--text-faint);
  font-size: var(--fs-sm);
  font-weight: 600;
}
.cal-grid .em { visibility: hidden; }

.day-hl {
  background: var(--wf-accent-soft);
  color: var(--wf-accent-text);
  border-radius: 50%;
  font-weight: 700;
  transition: all 0.4s;
}
.day-conf {
  background: rgba(0, 7, 45, 0.1);
  color: var(--status-success);
  border-radius: 50%;
  font-weight: 700;
  transition: all 0.4s;
}
.day-cancel {
  background: rgba(0, 7, 45, 0.1);
  color: var(--status-danger);
  border-radius: 50%;
  font-weight: 700;
  text-decoration: line-through;
  transition: all 0.4s;
}

.cal-events {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.cal-evt {
  padding: 4px 8px;
  border-radius: 5px;
  border: 1px solid transparent;
  font-size: var(--fs-sm);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.4s;
}
.cal-evt.show {
  opacity: 1;
  transform: translateY(0);
}
.cal-evt.prov { background: rgba(0, 7, 45, 0.12); color: var(--status-warning); }
.cal-evt.conf { background: rgba(0, 7, 45, 0.08); color: var(--status-success); }
.cal-evt.prov {
  background: var(--wf-accent-softer);
  color: var(--wf-accent-text);
  border-color: rgba(248, 112, 96, 0.26);
}
.cal-evt.conf.show {
  border-left: 2px solid rgba(248, 112, 96, 0.34);
}
.cal-evt.show.cancel {
  color: var(--status-danger);
  text-decoration: line-through;
  opacity: 1;
}

.cal-right {
  flex: 0.8;
  display: flex;
  flex-direction: column;
}

.cal-detail {
  padding: 10px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  border-left: 2px solid transparent;
  background: rgba(0, 7, 45, 0.01);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.4s, transform 0.4s, background-color 0.35s, border-left-color 0.35s, box-shadow 0.35s;
}
.cal-detail:last-child { border-bottom: none; }
.cal-detail.show {
  opacity: 1;
  transform: translateY(0);
  background: rgba(0, 7, 45, 0.03);
  border-left-color: rgba(0, 7, 45, 0.14);
  box-shadow: inset 0 0 0 1px rgba(0, 7, 45, 0.05);
}
.cal-detail.cal-intake {
  background: var(--wf-accent-softer);
  border-left-color: var(--wf-accent-border);
  box-shadow: inset 0 0 0 1px rgba(248, 112, 96, 0.2);
}

.cal-detail-title {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.cal-badge {
  font-size: var(--fs-sm);
  background: var(--wf-accent-softer);
  color: var(--wf-accent-text);
  border: 1px solid rgba(248, 112, 96, 0.25);
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 600;
}

.cal-field { margin-bottom: 4px; }
.cal-field:last-child { margin-bottom: 0; }

.cal-field-label {
  font-size: var(--fs-sm);
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
  margin-bottom: 2px;
}

.cal-field-value {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.3;
}

.wf-card.wf-rebooking .cal-events .cal-evt.show.cancel {
  opacity: 0.7;
  border-color: rgba(0, 7, 45, 0.14);
}

.wf-card.wf-rebooking .cal-events .cal-evt.show:not(.cancel) {
  box-shadow: inset 0 0 0 1px rgba(248, 112, 96, 0.34);
  border-color: rgba(248, 112, 96, 0.3);
}

.wf-controls {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.wf-ctrl {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 7, 45, 0.15);
  background: rgba(0, 7, 45, 0.05);
  color: var(--text-primary);
  cursor: pointer;
}

.wf-ctrl:disabled {
  opacity: 0.45;
  cursor: default;
}

.wf-ctrl:focus-visible {
  outline: 2px solid rgba(0, 7, 45, 0.9);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(0, 7, 45, 0.15);
}

.wf-counter {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-secondary);
  min-width: 52px;
  text-align: center;
}

.wf-summary {
  margin-top: 24px;
  background: #ffffff;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-lg);
  padding: 18px 28px;
  text-align: center;
  opacity: 1;
  transform: none;
}

.wf-summary-text {
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: -0.2px;
}

/* ═══════════════ INTEGRATIONS ═══════════════ */

/* ═══════════════ HOW IT WORKS + USE CASE ═══════════════ */

.section-howflow {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  background: rgba(0, 7, 45, 0.035);
}

.howflow-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto;
}

.howflow-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.howflow-item {
  display: block;
}

.howflow-step {
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-lg);
  background: #fff;
  text-align: left;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  width: 100%;
}

.howflow-step:not(.active) {
  opacity: 0.9;
}

.howflow-step:hover:not(.active) {
  border-color: rgba(0, 7, 45, 0.24);
  opacity: 1;
}

.howflow-step.active {
  opacity: 1;
  border-color: rgba(0, 7, 45, 0.52);
  box-shadow: 0 0 0 1px rgba(0, 7, 45, 0.1), 0 12px 26px rgba(0, 7, 45, 0.12);
  transform: translateY(-2px);
}

.howflow-step.active .howflow-step-number {
  color: rgba(0, 7, 45, 0.6);
}

.howflow-step.active .howflow-step-title {
  color: #00072D;
}

.howflow-step.active .howflow-step-desc {
  color: var(--text-secondary);
}

.howflow-step:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px var(--focus-ring-soft);
}

.howflow-step-number {
  font-size: var(--fs-xl);
  font-weight: 700;
  letter-spacing: -1px;
  color: rgba(0, 7, 45, 0.32);
  line-height: 1;
  min-width: 38px;
}

.howflow-step-title {
  display: block;
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.2px;
  margin-bottom: 6px;
}

.howflow-step-desc {
  display: block;
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: var(--text-muted);
}

.howflow-visual {
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-xl);
  background: #fff;
  padding: 20px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.howflow-visual.interactive {
  cursor: pointer;
}

.howflow-visual.interactive:hover {
  border-color: rgba(0, 7, 45, 0.3);
  box-shadow: 0 14px 34px rgba(0, 7, 45, 0.12);
}

.howflow-visual.interactive:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px var(--focus-ring-soft);
}

.howflow-stage {
  position: relative;
  min-height: 260px;
}

.howflow-frame {
  display: none;
}

.howflow-frame.active {
  display: block;
  animation: howflowFrameIn 0.22s ease-out;
}

@keyframes howflowFrameIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.howflow-frame-label {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: rgba(0, 7, 45, 0.06);
  border: 1px solid rgba(0, 7, 45, 0.12);
  border-radius: var(--radius-full);
  padding: 5px 10px;
  margin-bottom: 14px;
}

.howflow-frame-title {
  font-size: var(--fs-xl);
  font-weight: 600;
  letter-spacing: -0.7px;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.howflow-frame-copy {
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 52ch;
}

.howflow-frame-callout {
  margin-top: 16px;
  display: inline-flex;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-secondary);
  border: 1px solid rgba(0, 7, 45, 0.16);
  background: rgba(0, 7, 45, 0.05);
  border-radius: var(--radius-full);
  padding: 7px 12px;
}

.howflow-controls {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.howflow-ctrl {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border-soft);
  background: rgba(0, 7, 45, 0.04);
  color: var(--text-primary);
  cursor: pointer;
}

.howflow-ctrl:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px var(--focus-ring-soft);
}

.howflow-ctrl:disabled {
  opacity: 0.45;
  cursor: default;
}

.howflow-counter {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-secondary);
  min-width: 56px;
  text-align: center;
}

.howflow-inline {
  display: none;
}

.howflow-inline-content {
  min-height: 1px;
}

.section-integrations {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  background: rgba(0, 7, 45, 0.028);
}

.integrations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.integration-card {
  background: #ffffff;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
}

.integration-featured {
  background: #ffffff;
  border-color: rgba(0, 7, 45, 0.35);
}
.integration-featured:hover {
  border-color: rgba(0, 7, 45, 0.55);
  background: rgba(0, 7, 45, 0.04);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 7, 45, 0.12);
}

.integration-coming {
  opacity: 1;
  border-style: dashed;
  background: rgba(0, 7, 45, 0.02);
}

.integration-status {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(0, 7, 45, 0.15);
  color: var(--status-success);
  padding: 3px 8px;
  border-radius: var(--radius-full);
}
.integration-status.coming {
  background: rgba(0, 7, 45, 0.10);
  color: var(--color-interactive);
}

.integration-icon {
  color: var(--color-structure);
  margin-bottom: 12px;
  display: flex;
}

.integration-name {
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}

.integration-desc {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 12px;
}

.integration-link {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-interactive);
  letter-spacing: -0.2px;
  transition: opacity 0.2s;
}
.integration-link.muted {
  color: var(--text-muted);
}

.integration-request {
  background: #ffffff;
  border-color: rgba(0, 7, 45, 0.35);
}
.integration-request:hover {
  border-color: rgba(0, 7, 45, 0.55);
  background: rgba(0, 7, 45, 0.04);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 7, 45, 0.12);
}

.integration-link-secondary {
  font-size: var(--fs-sm);
  color: var(--text-faint);
  margin-top: 2px;
}
.integration-link-secondary a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.integration-link-secondary a:hover {
  color: var(--color-interactive);
}

/* ═══════════════ HOW IT WORKS ═══════════════ */

.section-how {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  background: transparent;
}

.steps-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}

.step-card {
  background: #ffffff;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  width: 100%;
  text-align: center;
  transition: all 0.3s;
}
.step-card:hover {
  border-color: rgba(0, 7, 45, 0.24);
  background: #ffffff;
}

.step-number {
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: rgba(0, 7, 45, 0.30);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 12px;
}

.step-title {
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

.step-desc {
  font-size: var(--fs-base);
  color: var(--text-muted);
  line-height: 1.6;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-interactive);
  opacity: 0.55;
  padding: 12px 0;
  transform: rotate(90deg);
}

/* ═══════════════ IMPACT ═══════════════ */

.section-impact {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  background: transparent;
}

.impact-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.impact-tab {
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: var(--fs-base);
  font-weight: 400;
  color: var(--text-faint);
  padding: 10px 20px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.25s;
  white-space: nowrap;
}
.impact-tab:hover {
  color: var(--text-secondary);
}
.impact-tab.active {
  color: var(--color-interactive);
  border-bottom-color: var(--color-interactive);
  font-weight: 500;
}

.impact-panels {
  max-width: 720px;
  margin: 0 auto;
}

.impact-panel {
  display: none;
  gap: 32px;
  align-items: center;
}
.impact-panel.active {
  display: flex;
  flex-direction: column;
}

.impact-text {
  text-align: center;
}

.impact-heading {
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.impact-desc {
  font-size: var(--fs-base);
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 440px;
  margin: 0 auto;
}

.impact-stat {
  background: rgba(0, 7, 45, 0.03);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  text-align: center;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.impact-stat-number {
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.impact-stat-label {
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ═══════════════ ROADMAP ═══════════════ */

.section-roadmap {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  background: rgba(0, 7, 45, 0.028);
}

/* -- Timeline container (mobile-first: vertical) -- */
.roadmap-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 0;
}

/* -- Timeline item -- */
.roadmap-item {
  position: relative;
  padding-bottom: 32px;
}
.roadmap-item:last-child {
  padding-bottom: 0;
}

/* Vertical line between items (hidden on mobile, shown on desktop) */
.roadmap-item::before {
  display: none;
}
.roadmap-item-live::before {
  background: rgba(0, 7, 45, 0.85);
}
.roadmap-item-upcoming::before {
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 7, 45, 0.25) 0px,
    rgba(0, 7, 45, 0.25) 5px,
    transparent 5px,
    transparent 10px
  );
}
.roadmap-item-future::before {
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 7, 45, 0.14) 0px,
    rgba(0, 7, 45, 0.14) 4px,
    transparent 4px,
    transparent 9px
  );
}
.roadmap-item:last-child::before {
  display: none;
}

/* -- Timeline node (dot + step number) -- */
.roadmap-node {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  position: relative;
}

.roadmap-node-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #00072D;
  position: absolute;
  left: -30px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
}
.roadmap-node-dot .roadmap-dot {
  width: 8px;
  height: 8px;
  background: #fff;
}

.roadmap-node-outline {
  background: #fff;
  border: 2px solid rgba(0, 7, 45, 0.7);
  box-shadow: 0 0 0 3px rgba(0, 7, 45, 0.06);
}

.roadmap-node-dashed {
  background: #fff;
  border: 2px dashed rgba(0, 7, 45, 0.3);
}

.roadmap-step {
  display: none;
}

/* -- Card -- */
.roadmap-card {
  background: #fff;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  width: 100%;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 3px rgba(0, 7, 45, 0.04), 0 4px 16px rgba(0, 7, 45, 0.03);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1),
              border-color 0.3s,
              box-shadow 0.3s cubic-bezier(.4,0,.2,1);
}
.roadmap-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 2px 6px rgba(0, 7, 45, 0.06), 0 8px 24px rgba(0, 7, 45, 0.06);
}

/* -- Live card -- */
.roadmap-live {
  border-color: rgba(0, 7, 45, 0.22);
  box-shadow:
    0 1px 3px rgba(0, 7, 45, 0.04),
    0 4px 16px rgba(0, 7, 45, 0.03),
    0 0 0 1px rgba(0, 7, 45, 0.06);
}
.roadmap-live:hover {
  border-color: rgba(0, 7, 45, 0.35);
  box-shadow:
    0 2px 6px rgba(0, 7, 45, 0.06),
    0 8px 24px rgba(0, 7, 45, 0.06),
    0 0 0 1px rgba(0, 7, 45, 0.10);
}

/* -- Upcoming card -- */
.roadmap-upcoming {
  border-color: var(--color-border-soft);
}

/* -- Future card -- */
.roadmap-future {
  border: 1px dashed rgba(0, 7, 45, 0.24);
  background: rgba(0, 7, 45, 0.02);
  opacity: 0.85;
}
.roadmap-future:hover {
  transform: none;
  box-shadow: 0 1px 3px rgba(0, 7, 45, 0.04), 0 4px 16px rgba(0, 7, 45, 0.03);
}

/* -- Status badges -- */
.roadmap-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  width: fit-content;
}

.roadmap-status-live {
  background: rgba(0, 7, 45, 0.10);
  color: var(--status-success);
}
.roadmap-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--status-success);
  animation: roadmapPulse 2s ease-in-out infinite;
}
@keyframes roadmapPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.roadmap-status-upcoming {
  background: rgba(0, 7, 45, 0.10);
  color: var(--color-interactive);
}

.roadmap-status-future {
  background: rgba(0, 7, 45, 0.06);
  color: var(--text-faint);
}

/* -- Card content -- */
.roadmap-title {
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.3px;
  line-height: 1.25;
  max-width: 280px;
  margin: 0 auto;
}

.roadmap-lead {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
  overflow-wrap: anywhere;
}

.roadmap-divider {
  width: 32px;
  height: 1px;
  background: rgba(0, 7, 45, 0.12);
  margin: 4px 0;
}

.roadmap-benefits {
  width: 100%;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.roadmap-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.roadmap-benefit dt {
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--text-faint);
  flex-shrink: 0;
  min-width: 0;
  margin: 0;
}

.roadmap-benefit dd {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
  max-width: 260px;
  overflow-wrap: anywhere;
}

.roadmap-link {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-interactive);
  margin-top: 4px;
  transition: color 0.2s;
}
.roadmap-live:hover .roadmap-link {
  text-decoration: underline;
}

/* ═══════════════ WHY NOEDA ═══════════════ */

.section-why {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  background: rgba(0, 7, 45, 0.032);
}

.section-why .section-header {
  margin-bottom: 24px;
}

.section-why .section-sub {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 28px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.why-card {
  background: #ffffff;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: all 0.3s;
  min-height: 176px;
}
.why-card:hover {
  border-color: rgba(0, 7, 45, 0.24);
  background: #ffffff;
}

.why-icon {
  color: var(--color-interactive);
  margin-bottom: 12px;
  display: flex;
}

.why-title {
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.why-desc {
  font-size: var(--fs-base);
  color: var(--text-muted);
  line-height: 1.58;
  max-width: 30ch;
  margin: 0 auto;
}

/* ═══════════════ TECHNOLOGY ═══════════════ */

.section-technology {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  background: transparent;
}

.section-technology .section-header {
  margin-bottom: 24px;
}

.section-technology .section-sub {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 28px;
}

.technology-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.tech-card {
  background: #ffffff;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: all 0.3s;
  min-height: 176px;
}

.tech-card:hover {
  border-color: rgba(0, 7, 45, 0.24);
  background: #ffffff;
}

.tech-icon {
  color: var(--color-interactive);
  margin-bottom: 12px;
  display: flex;
}

.tech-icon-neuro-symbolic {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask-image: url("../icons/neuro-symbolic-ai.svg");
  mask-image: url("../icons/neuro-symbolic-ai.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.tech-title {
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.tech-desc {
  font-size: var(--fs-base);
  color: var(--text-muted);
  line-height: 1.58;
  max-width: 38ch;
  margin: 0 auto;
}

/* ═══════════════ PRICING ═══════════════ */

.section-pricing {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  background: transparent;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
  align-items: stretch;
}

.pricing-single {
  max-width: 600px;
  margin: 0 auto 32px;
}

.pricing-single .pricing-card {
  min-height: auto;
  padding: 40px 36px;
}

.pricing-body {
  font-size: var(--fs-base);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 460px;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: all 0.3s;
  min-height: 280px;
}
.pricing-card:hover {
  border-color: rgba(0, 7, 45, 0.25);
  background: #ffffff;
}

.pricing-featured {
  background: #ffffff;
  border-color: rgba(0, 7, 45, 0.36);
  box-shadow: 0 0 30px rgba(0, 7, 45, 0.14);
}
.pricing-featured:hover {
  border-color: rgba(0, 7, 45, 0.5);
}

.pricing-popular {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: 600;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pricing-tier {
  font-size: var(--fs-lg);
  font-weight: 600;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
  min-height: 2.2rem;
}

.pricing-currency {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-amount {
  font-size: var(--fs-2xl);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -1.5px;
  line-height: 1;
}
.pricing-amount sub {
  font-size: var(--fs-base);
  font-weight: 400;
  letter-spacing: 0;
  vertical-align: baseline;
  color: var(--text-muted);
}

.pricing-detail {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 2px;
}

.pricing-detail-sub {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.45;
}

.pricing-target {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-top: 12px;
  margin-bottom: 20px;
  line-height: 1.45;
  min-height: 2.4em;
}

.pricing-featured .btn-primary {
  background: var(--accent);
  color: #ffffff;
}
.pricing-featured .btn-primary:hover {
  background: #e05d4f;
}

.btn-outline {
  background: rgba(0, 7, 45, 0.08);
  color: var(--color-interactive);
  border: 1px solid rgba(0, 7, 45, 0.32);
}
.btn-outline:hover {
  border-color: rgba(0, 7, 45, 0.48);
  color: var(--color-interactive);
  background: rgba(0, 7, 45, 0.14);
}

.btn-block {
  width: 100%;
  margin-top: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  min-height: 44px;
}

.dpi-explainer {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(0, 7, 45, 0.03);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
}

.dpi-icon {
  color: var(--color-interactive);
  flex-shrink: 0;
  display: flex;
}

.dpi-explainer strong {
  display: block;
  font-size: var(--fs-base);
  color: var(--text-primary);
  margin-bottom: 4px;
}

.dpi-explainer p {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.5;
}

.calculator {
  background: #ffffff;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.calc-input-group {
  display: flex;
  flex-direction: column;
}

.calc-input-row {
  display: flex;
  align-items: stretch;
  gap: 8px;
}

.calc-currency-select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: var(--fs-base);
  font-weight: 600;
  font-family: inherit;
  padding: 10px 28px 10px 14px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
}

.calc-currency-select:focus {
  outline: none;
  border-color: var(--accent);
}

.calc-label {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 8px;
}

.calc-number-input {
  width: 100%;
  max-width: 200px;
  padding: 10px 14px;
  font-size: var(--fs-lg);
  font-weight: 600;
  font-family: inherit;
  color: var(--text-primary);
  background: rgba(0, 7, 45, 0.03);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -moz-appearance: textfield;
}
.calc-number-input::-webkit-inner-spin-button,
.calc-number-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.calc-number-input::placeholder {
  color: var(--text-faint);
  font-weight: 400;
  font-size: var(--fs-base);
}
.calc-number-input:focus {
  border-color: rgba(0, 7, 45, 0.55);
  background: rgba(0, 7, 45, 0.04);
}

.calc-number-input:focus-visible,
.calculator input[type=range]:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px var(--focus-ring-soft);
}

.calc-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.calc-value {
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--text-primary);
  min-width: 44px;
}

.calculator input[type=range] {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 2px;
  background: var(--border-mid);
  border-radius: 2px;
  outline: none;
}
.calculator input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-interactive);
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(0, 7, 45, 0.20);
}

.calc-note {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  font-style: italic;
}

.calc-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}

.calc-results {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.calc-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.calc-metric {
  background: rgba(0, 7, 45, 0.03);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  text-align: center;
}

.calc-metric-value {
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  margin-bottom: 2px;
}

.calc-metric-label {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  font-weight: 400;
}

.calc-savings {
  background: rgba(0, 7, 45, 0.10);
  border: 1px solid rgba(0, 7, 45, 0.25);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
}

.calc-savings-value {
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--status-success);
  letter-spacing: -1px;
  line-height: 1.2;
}

.calc-savings-value.placeholder {
  font-size: var(--fs-base);
  font-weight: 400;
  color: var(--text-faint);
  letter-spacing: 0;
}

.calc-savings-label {
  font-size: var(--fs-sm);
  color: rgba(0, 7, 45, 0.85);
  font-weight: 500;
  margin-top: 4px;
}

/* ═══════════════ TEAM ═══════════════ */

.section-team {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  background: transparent;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 48px;
}

.team-card {
  background: #ffffff;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s;
}
.team-card:hover {
  border-color: rgba(0, 7, 45, 0.24);
  background: #ffffff;
}

.team-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--text-primary);
  color: var(--bg);
  font-size: var(--fs-base);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: -0.5px;
}

.team-info {
  min-width: 0;
}

.team-name {
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.2px;
  margin-bottom: 2px;
}

.team-role {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.team-bio {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.5;
}

.card-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 4px 10px;
  border: 1px solid rgba(0, 7, 45, 0.16);
  border-radius: 999px;
  background: rgba(0, 7, 45, 0.02);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.card-linkedin:hover {
  border-color: rgba(0, 7, 45, 0.28);
  background: rgba(0, 7, 45, 0.05);
  color: var(--text-primary);
}

.card-linkedin:focus-visible {
  outline: 2px solid rgba(0, 7, 45, 0.35);
  outline-offset: 2px;
}

.team-card-hiring {
  border-style: dashed;
  background: rgba(0, 7, 45, 0.02);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.team-card-hiring:hover {
  border-color: rgba(0, 7, 45, 0.4);
  background: rgba(0, 7, 45, 0.05);
}

.team-avatar-hiring {
  background: transparent;
  border: 2px dashed rgba(0, 7, 45, 0.25);
  color: var(--text-faint);
  font-size: var(--fs-lg);
  font-weight: 400;
}
.team-card-hiring:hover .team-avatar-hiring {
  border-color: rgba(0, 7, 45, 0.50);
  color: var(--color-interactive);
}

.team-role-hiring {
  color: var(--text-muted);
}

.advisory-header {
  margin-bottom: 16px;
  text-align: center;
}

.advisory-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.advisory-card {
  background: #ffffff;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s;
}
.advisory-card:hover {
  border-color: rgba(0, 7, 45, 0.24);
  background: #ffffff;
}

.advisory-name {
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.2px;
  margin-bottom: 2px;
}

.advisory-role {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.advisory-bio {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 10px;
}

.advisory-card .card-linkedin {
  margin-top: auto;
}

/* ═══════════════ CTA SECTION ═══════════════ */

#main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section-cta {
  margin-top: auto;
  padding: 100px 0;
  background: rgba(0, 7, 45, 0.03);
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-title {
  font-size: var(--fs-2xl);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta-sub {
  font-size: var(--fs-lg);
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.6;
  max-width: 460px;
  margin-bottom: 32px;
}

.section-cta .btn-primary {
  background: var(--accent);
  color: #ffffff;
}
.section-cta .btn-primary:hover {
  background: #e05d4f;
}

/* ═══════════════ FOOTER ═══════════════ */

.footer {
  color: var(--text-faint);
  padding: 20px 0;
  border-top: 1px solid var(--border);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: var(--fs-sm);
  flex-wrap: wrap;
}

.footer-copy {
  color: var(--text-faint);
  white-space: nowrap;
}

.footer-legal {
  color: var(--text-faint);
  white-space: nowrap;
}

.footer-link {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover {
  color: var(--color-interactive);
}

/* ═══════════════ COMPARE SECTION ═══════════════ */

.section-compare {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  background: transparent;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.compare-card {
  padding: 28px 24px;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.compare-before {
  background: rgba(0, 7, 45, 0.04);
  border: 1px solid rgba(0, 7, 45, 0.10);
}

.compare-after {
  background: rgba(0, 7, 45, 0.06);
  border: 1px solid rgba(0, 7, 45, 0.18);
}

.compare-label {
  font-size: var(--fs-sm);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.compare-before .compare-label { color: rgba(0, 7, 45, 0.45); }
.compare-after .compare-label  { color: #00072D; }

.compare-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.compare-item-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-sm);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.compare-before .compare-item-icon { background: rgba(0, 7, 45,0.06); color: rgba(0, 7, 45,0.38); }
.compare-after  .compare-item-icon { background: rgba(0, 7, 45,0.10); color: #00072D; }

.compare-item-title {
  font-size: var(--fs-base);
  font-weight: 500;
  margin-bottom: 2px;
  letter-spacing: -0.2px;
}
.compare-before .compare-item-title { color: rgba(0, 7, 45,0.60); }
.compare-after  .compare-item-title { color: #00072D; }

.compare-item-desc { font-size: var(--fs-base); line-height: 1.5; }
.compare-before .compare-item-desc { color: rgba(0, 7, 45,0.42); }
.compare-after  .compare-item-desc { color: rgba(0, 7, 45,0.65); }

.compare-bottom {
  font-size: var(--fs-base);
  font-weight: 500;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-md);
  margin-top: auto;
}

.compare-bottom-before { background: rgba(0, 7, 45,0.05); color: rgba(0, 7, 45,0.45); }
.compare-bottom-after  { background: rgba(0, 7, 45,0.08); color: #00072D; }

/* ═══════════════ DEMO VIDEO ═══════════════ */

.section-demo {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  background: transparent;
}

.demo-video {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(0, 7, 45, 0.05);
  border: 1px solid rgba(0, 7, 45, 0.10);
}

.demo-video iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.demo-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.demo-feature {
  background: rgba(0, 7, 45, 0.03);
  border: 1px solid rgba(0, 7, 45, 0.10);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: all 0.2s;
}
.demo-feature:hover {
  border-color: rgba(0, 7, 45, 0.20);
  background: rgba(0, 7, 45, 0.07);
}

.demo-feature-icon {
  color: rgba(0, 7, 45, 0.60);
  margin-bottom: 8px;
  display: flex;
}

.demo-feature-title {
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}

.demo-feature-desc {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.5;
}

/* ═══════════════ ANIMATIONS ═══════════════ */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════ RESPONSIVE — TABLET ═══════════════ */

@media (min-width: 640px) {
  .container { padding: 0 32px; }

  .howflow-layout {
    gap: 24px;
  }

  .howflow-stage {
    min-height: 240px;
  }

  .boid-controls {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .integrations-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .compare-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(6, auto);
  }

  .compare-card {
    display: grid;
    grid-row: span 6;
    grid-template-rows: subgrid;
    row-gap: 16px;
  }

  .demo-features {
    grid-template-columns: repeat(3, 1fr);
  }

  .demo-features .demo-feature:nth-child(4),
  .demo-features .demo-feature:nth-child(5) {
    grid-column: span 1;
  }

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

  .calc-metrics {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

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

  .footer-bottom {
    font-size: var(--fs-sm);
  }
}

@media (max-width: 640px) {
  .section-howflow {
    padding: 64px 0;
  }

  .section-howflow .section-header {
    margin-bottom: 28px;
  }

  .howflow-layout {
    gap: 14px;
  }

  .howflow-steps {
    gap: 6px;
  }

  .howflow-item {
    display: block;
  }

  .howflow-step:not(.active) {
    opacity: 0.7;
  }

  .howflow-step:not(.active):hover {
    opacity: 0.95;
  }

  .howflow-step {
    padding: 10px 12px;
    gap: 10px;
    border-radius: var(--radius-md);
    align-items: center;
  }

  .howflow-step.active {
    box-shadow: none;
    border-color: rgba(0, 7, 45, 0.55);
    transform: none;
    align-items: start;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-color: transparent;
  }

  .howflow-step-number {
    font-size: var(--fs-lg);
    min-width: 30px;
  }

  .howflow-step-title {
    font-size: var(--fs-base);
    margin-bottom: 0;
  }

  .howflow-step.active .howflow-step-title {
    margin-bottom: 4px;
  }

  .howflow-step-desc {
    display: none;
  }

  .howflow-step.active .howflow-step-desc {
    display: block;
    font-size: var(--fs-sm);
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .howflow-visual {
    display: none;
  }

  .howflow-inline {
    display: none;
    border: 1px solid rgba(0, 7, 45, 0.55);
    border-top: none;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    background: rgba(0, 7, 45, 0.025);
    padding: 14px 14px;
  }

  .howflow-inline.active {
    display: block;
    animation: howflowFrameIn 0.2s ease-out;
  }

  .howflow-stage {
    min-height: 230px;
  }

  .howflow-inline .howflow-frame-label {
    margin-bottom: 10px;
  }

  .howflow-inline .howflow-frame-title {
    font-size: var(--fs-lg);
    line-height: 1.2;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
  }

  .howflow-inline .howflow-frame-copy {
    font-size: var(--fs-sm);
    line-height: 1.55;
    max-width: 100%;
    overflow-wrap: anywhere;
    color: var(--text-muted);
  }

  .howflow-inline .howflow-frame-callout {
    margin-top: 10px;
    font-size: var(--fs-sm);
    padding: 5px 10px;
  }

  .howflow-frame-label {
    margin-bottom: 10px;
  }

  .howflow-frame-title {
    font-size: var(--fs-xl);
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -0.9px;
  }

  .howflow-frame-copy {
    font-size: var(--fs-base);
    line-height: 1.55;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .howflow-frame-callout {
    margin-top: 12px;
    font-size: var(--fs-sm);
    padding: 6px 10px;
  }

  .howflow-controls {
    margin-top: 12px;
    gap: 8px;
  }

  .howflow-ctrl {
    width: 34px;
    height: 34px;
    border-color: rgba(0, 7, 45, 0.2);
  }

  .howflow-counter {
    font-size: var(--fs-sm);
    min-width: 48px;
  }

  .btn {
    white-space: normal;
  }

  .hero-actions {
    width: 100%;
    max-width: 420px;
  }

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

  .wf-step-text {
    min-width: 0;
  }

  .cal-body {
    flex-direction: column;
  }

  .cal-left {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }


  /* ── Mobile accordion for card grids ── */

  .why-card,
  .tech-card,
  .team-card:not(.team-card-hiring),
  .advisory-card,
  .roadmap-card {
    cursor: pointer;
    position: relative;
    min-height: 0;
  }

  .why-card,
  .tech-card {
    padding: 14px 40px 14px 16px;
  }

  .why-card.mob-open,
  .tech-card.mob-open {
    padding: 16px 40px 18px 16px;
  }

  .why-card:hover,
  .tech-card:hover {
    transform: none;
    box-shadow: none;
  }

  .why-icon,
  .tech-icon {
    margin-bottom: 4px;
  }

  .why-card.mob-open .why-icon,
  .tech-card.mob-open .tech-icon {
    margin-bottom: 10px;
  }

  .why-title,
  .tech-title {
    margin-bottom: 0;
  }

  .why-card.mob-open .why-title,
  .tech-card.mob-open .tech-title {
    margin-bottom: 6px;
  }

  .team-card:not(.team-card-hiring),
  .advisory-card {
    padding: 12px 40px 12px 16px;
  }

  .team-card:not(.team-card-hiring).mob-open,
  .advisory-card.mob-open {
    padding: 14px 40px 16px 16px;
  }

  .team-card:hover,
  .advisory-card:hover {
    transform: none;
    box-shadow: none;
  }

  .team-role {
    margin-bottom: 0;
  }

  .team-card.mob-open .team-role {
    margin-bottom: 6px;
  }

  .advisory-role {
    margin-bottom: 0;
  }

  .advisory-card.mob-open .advisory-role {
    margin-bottom: 6px;
  }

  .why-card::after,
  .tech-card::after,
  .team-card:not(.team-card-hiring)::after,
  .advisory-card::after,
  .roadmap-card::after {
    content: '+';
    position: absolute;
    top: 14px;
    right: 12px;
    font-size: 20px;
    font-weight: 300;
    color: rgba(0, 7, 45, 0.3);
    line-height: 1;
  }

  .why-card.mob-open::after,
  .tech-card.mob-open::after,
  .team-card.mob-open::after,
  .advisory-card.mob-open::after,
  .roadmap-card.mob-open::after {
    content: '−';
  }

  .why-desc,
  .tech-desc {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .why-card.mob-open .why-desc,
  .tech-card.mob-open .tech-desc {
    max-height: 200px;
  }

  .team-bio,
  .advisory-bio {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .team-card.mob-open .team-bio,
  .advisory-card.mob-open .advisory-bio {
    max-height: 120px;
  }

  .team-card .card-linkedin,
  .advisory-card .card-linkedin {
    display: none;
    margin-top: 8px;
  }

  .team-card.mob-open .card-linkedin,
  .advisory-card.mob-open .card-linkedin {
    display: inline-flex;
  }

  .roadmap-card {
    padding: 16px 38px 16px 18px;
  }

  .roadmap-card.mob-open {
    padding: 20px 38px 20px 18px;
  }

  .roadmap-card:hover {
    transform: none;
    box-shadow: none;
  }

  .roadmap-node {
    margin-bottom: 8px;
  }

  .roadmap-item {
    padding-bottom: 16px;
  }

  .roadmap-item:last-child {
    padding-bottom: 0;
  }

  .roadmap-status {
    margin-bottom: 6px;
  }

  .roadmap-title {
    margin-bottom: 0;
  }

  .roadmap-card.mob-open .roadmap-title {
    margin-bottom: 8px;
  }

  .roadmap-lead,
  .roadmap-divider,
  .roadmap-benefits,
  .roadmap-card .roadmap-link {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin 0.3s ease;
    margin-top: 0;
    margin-bottom: 0;
  }

  .roadmap-divider {
    border: none;
  }

  .roadmap-card.mob-open .roadmap-lead {
    max-height: 200px;
    margin-bottom: 4px;
  }

  .roadmap-card.mob-open .roadmap-divider {
    max-height: 10px;
    margin: 4px 0;
  }

  .roadmap-card.mob-open .roadmap-benefits {
    max-height: 200px;
  }

  .roadmap-card.mob-open .roadmap-link {
    max-height: 40px;
    margin-top: 8px;
  }
}

/* ═══════════════ RESPONSIVE — DESKTOP ═══════════════ */

@media (min-width: 1024px) {
  .container { padding: 0 48px; }

  .nav { display: flex; }
  .btn-header { display: inline-flex; }
  .hamburger { display: none; }
  .mobile-nav { display: none !important; }

  .hero { padding: 120px 0 80px; }

  .section-compare { padding: 100px 0; }
  .section-demo { padding: 100px 0; }
  .section-integrations { padding: 100px 0; }
  .section-howflow { padding: 100px 0; }
  .section-how { padding: 100px 0; }
  .section-workflow { padding: 100px 0; }
  .section-impact { padding: 100px 0; }
  .section-roadmap { padding: 100px 0; }
  .section-why { padding: 100px 0; }

  .wf-stage {
    flex-direction: row;
    gap: 20px;
    min-height: 320px;
  }

  .wf-panel {
    flex: 1;
  }

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

  .demo-features {
    grid-template-columns: repeat(5, 1fr);
  }

  .howflow-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: stretch;
  }

  .howflow-visual {
    padding: 24px;
  }

  .howflow-stage {
    min-height: 300px;
  }

  /* -- Roadmap: horizontal timeline on desktop -- */
  .roadmap-timeline {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    padding-left: 0;
    padding-top: 0;
    position: relative;
  }

  .roadmap-timeline::before,
  .roadmap-timeline::after {
    display: none;
  }

  .roadmap-item {
    flex: 1;
    min-width: 0;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Remove vertical lines on desktop */
  .roadmap-item::before {
    display: none;
  }

  /* -- Desktop node — normal flow above the card -- */
  .roadmap-node {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    z-index: 2;
  }

  .roadmap-node-dot {
    display: none;
  }

  .roadmap-card {
    flex: 1;
    min-width: 0;
    width: calc(100% - 16px);
    min-height: 380px;
    padding: 30px 24px;
  }

  .impact-panel.active {
    flex-direction: row;
    text-align: left;
  }

  .impact-text {
    text-align: left;
    flex: 1;
  }

  .impact-desc {
    margin: 0;
  }

  .impact-stat {
    flex-shrink: 0;
    width: auto;
    min-width: 280px;
  }
  .section-pricing { padding: 100px 0; }
  .section-team { padding: 100px 0; }
  .section-cta { padding: 120px 0; }

  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .calculator {
    flex-direction: row;
    align-items: stretch;
    gap: 32px;
    padding: 32px 36px;
  }

  .calc-inputs {
    flex: 1;
    min-width: 0;
  }

  .calc-divider {
    width: 1px;
    height: auto;
    flex-shrink: 0;
  }

  .calc-results {
    flex: 1.2;
    min-width: 0;
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-grid {
    flex-direction: row;
    max-width: 100%;
    gap: 0;
  }

  .step-card {
    flex: 1;
    min-width: 0;
  }

  .step-connector {
    transform: none;
    flex-shrink: 0;
    padding: 0 8px;
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .technology-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

}

/* ═══════════════ SMALL SCREENS ═══════════════ */

@media (max-width: 380px) {
  .hero-title {
    font-size: var(--fs-2xl);
  }

  .section-title {
    font-size: var(--fs-xl);
  }

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

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

  .hero-proof {
    flex-direction: column;
    gap: 12px;
  }

  .demo-features {
    grid-template-columns: 1fr;
  }
}
