:root {
  --ink-950: #071425;
  --ink-900: #0d233d;
  --ink-800: #123354;
  --ink-700: #1f4669;
  --ink-500: #4f6f8a;
  --slate-200: #dbe7f2;
  --slate-100: #eef4fa;
  --columbia-300: #cfe3f5;
  --columbia-500: #8bb8de;
  --columbia-700: #2f6fa9;
  --white: #ffffff;
  --radius-xl: 20px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-soft: 0 10px 24px rgba(10, 36, 64, 0.09);
  --shadow-tight: 0 8px 18px rgba(8, 26, 48, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  color: var(--ink-900);
  background: #f3f7fc;
  line-height: 1.65;
}

h1,
h2,
h3,
h4 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink-950);
}

p {
  color: var(--ink-500);
}

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

.page {
  min-height: 100vh;
  overflow: hidden;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(200, 220, 240, 0.22);
  background: #0c2a49;
  backdrop-filter: blur(8px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #4c88bb, #1a4f7f);
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.brand-name {
  display: block;
  font-weight: 700;
}

.brand-subtitle {
  display: block;
  font-size: 0.75rem;
}

.site-header .brand-name {
  color: var(--white);
}

.site-header .brand-subtitle {
  color: rgba(240, 247, 255, 0.72);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(237, 246, 255, 0.9);
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  padding-bottom: 3px;
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: rgba(188, 224, 255, 0.9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:not(.btn):hover::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 18px;
  transition: box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, #3978ad, #255f91);
  box-shadow: var(--shadow-tight);
}

.btn.primary:hover {
  background: linear-gradient(135deg, #346f9f, #235885);
}

.btn.ghost {
  color: var(--ink-900);
  border-color: rgba(13, 35, 61, 0.2);
  background: rgba(255, 255, 255, 0.84);
}

.nav-links .btn.ghost {
  border-color: rgba(206, 228, 250, 0.38);
  background: rgba(244, 250, 255, 0.12);
  color: var(--white);
}

.mobile-cta {
  display: none;
}

.hero {
  position: relative;
  padding: 88px 0 80px;
  background: linear-gradient(155deg, #0a223c 0%, #12395f 58%, #1a4a74 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  color: rgba(190, 224, 251, 0.95);
  margin-bottom: 18px;
}

.hero-copy h1 {
  color: var(--white);
  font-size: clamp(2.25rem, 4.2vw, 3.5rem);
  line-height: 1.12;
  max-width: 17ch;
  margin-bottom: 20px;
}

.hero .lead {
  max-width: 58ch;
  color: rgba(227, 239, 250, 0.9);
  font-size: 1rem;
  margin-bottom: 28px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-proof {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.proof-item {
  border: 1px solid rgba(176, 212, 245, 0.34);
  border-radius: var(--radius-md);
  background: rgba(8, 31, 54, 0.65);
  padding: 12px 13px;
}

.proof-value {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  margin-bottom: 6px;
}

.proof-label {
  color: rgba(225, 238, 250, 0.78);
  font-size: 0.8rem;
  line-height: 1.45;
}

.hero-media {
  position: relative;
}

.chat-shell {
  border-radius: var(--radius-lg);
  border: 1px solid #c7dced;
  background: #f9fcff;
  box-shadow: 0 14px 34px rgba(5, 24, 45, 0.26);
  overflow: hidden;
}

.chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--slate-200);
  background: #eef6fd;
}

.chat-title {
  color: var(--ink-900);
  font-weight: 700;
  font-size: 0.93rem;
}

.chat-subtitle {
  font-size: 0.79rem;
  color: var(--ink-700);
}

.chip {
  text-transform: uppercase;
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: #1d5483;
  border: 1px solid #b7d5ee;
  background: #eaf3fb;
  border-radius: var(--radius-sm);
  padding: 6px 10px;
}

.chat-body {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: #f7fbff;
}

.bubble {
  max-width: 90%;
  border-radius: 10px;
  padding: 11px 13px;
  font-size: 0.88rem;
  line-height: 1.45;
  border: 1px solid var(--slate-200);
}

.bubble.user {
  justify-self: end;
  background: #dcecf9;
  color: #0f3557;
  border-bottom-right-radius: 2px;
}

.bubble.bot {
  justify-self: start;
  background: #ffffff;
  color: #1b3f63;
  border-bottom-left-radius: 2px;
}

.bubble-meta {
  display: block;
  margin-top: 6px;
  font-size: 0.75rem;
  color: #527590;
}

.chat-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-top: 1px solid var(--slate-200);
  color: #2c5373;
  font-size: 0.79rem;
  background: var(--white);
}

.insight-card {
  position: absolute;
  left: -14px;
  bottom: -18px;
  width: min(220px, 62%);
  border-radius: var(--radius-md);
  background: #123a5f;
  border: 1px solid rgba(176, 212, 245, 0.4);
  box-shadow: var(--shadow-soft);
  padding: 16px;
}

.insight-title {
  color: rgba(226, 240, 252, 0.92);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.insight-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(220, 236, 250, 0.78);
  font-size: 0.78rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(207, 227, 245, 0.18);
}

.insight-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.insight-row strong {
  color: var(--white);
  font-size: 0.9rem;
}

.trust-strip {
  position: relative;
  border-top: 1px solid #c9ddee;
  border-bottom: 1px solid #c9ddee;
  background: #edf5fc;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.35fr;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
}

.trust-grid p {
  color: #234663;
  font-weight: 500;
}

.trust-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-tags span {
  border-radius: var(--radius-sm);
  border: 1px solid #bdd6eb;
  background: #f7fbff;
  color: #2f5677;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 11px;
}

.section {
  padding: 88px 0;
}

.section-title {
  max-width: 700px;
  margin-bottom: 36px;
}

.section-title h2 {
  font-size: clamp(1.85rem, 3.3vw, 2.65rem);
  margin-bottom: 10px;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
  align-items: center;
}

.section-copy h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-bottom: 14px;
}

.section-copy p {
  font-size: 1rem;
}

.section-index {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #2b6ca6;
  margin-bottom: 14px;
}

.check-list {
  margin-top: 18px;
  list-style: none;
  display: grid;
  gap: 11px;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: #224b6d;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2f6fa9;
  font-weight: 700;
}

.feature-panel {
  border-radius: var(--radius-lg);
  border: 1px solid #d4e4f2;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

.feature-shot {
  position: relative;
  overflow: hidden;
}

.feature-shot img {
  width: 100%;
  display: block;
  border-radius: var(--radius-md);
  border: 1px solid #d4e4f2;
}

.panel-pill {
  display: inline-flex;
  margin-top: 14px;
  border-radius: var(--radius-sm);
  border: 1px solid #c9dff1;
  background: #eef6fd;
  color: #2a608f;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 12px;
}

.alt {
  background: #eef5fb;
}

.policy-panel h3 {
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.policy-kicker {
  font-size: 0.74rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: #2f6fa9;
  font-weight: 700;
  margin-bottom: 12px;
}

.policy-list {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.policy-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: #ecf4fc;
  color: #2b4f70;
  font-size: 0.86rem;
}

.policy-list strong {
  color: #173f64;
}

.workflow {
  background: linear-gradient(160deg, #0c2744 0%, #11375b 100%);
  color: #eef7ff;
}

.workflow .section-title h2,
.workflow h3 {
  color: var(--white);
}

.workflow .section-title p,
.workflow p {
  color: rgba(222, 237, 252, 0.82);
}

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

.step-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(184, 215, 242, 0.28);
  background: rgba(10, 33, 56, 0.72);
  padding: 20px;
}

.step-number {
  display: inline-flex;
  border-radius: var(--radius-sm);
  background: rgba(139, 184, 222, 0.24);
  color: #d8ecfe;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  padding: 6px 10px;
  margin-bottom: 12px;
}

.step-card h3 {
  margin-bottom: 9px;
}

.workflow-panel {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(195, 221, 245, 0.28);
  background: linear-gradient(160deg, rgba(245, 250, 255, 0.94), rgba(227, 240, 251, 0.93));
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  color: #193f63;
  font-weight: 600;
}

.panel-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border: 1px solid #b5d4ee;
  background: #e6f2fd;
  color: #265f90;
  border-radius: var(--radius-sm);
  padding: 6px 10px;
}

.workflow-panel ul {
  list-style: none;
  display: grid;
  gap: 9px;
  margin-bottom: 16px;
}

.workflow-panel li {
  color: #264f72;
  position: relative;
  padding-left: 22px;
}

.workflow-panel li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: #2f6fa9;
}

.teams {
  background: #f2f8fe;
}

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

.team-card {
  border-radius: var(--radius-md);
  border: 1px solid #d5e5f3;
  background: #ffffff;
  box-shadow: 0 7px 18px rgba(7, 35, 63, 0.08);
  padding: 22px;
}

.team-card h3 {
  margin-bottom: 8px;
}

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

.faq-item {
  border: 1px solid #d2e4f3;
  border-radius: var(--radius-md);
  background: #ffffff;
  padding: 17px 18px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  color: #123b5f;
  font-weight: 600;
}

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

.faq-item p {
  margin-top: 10px;
  font-size: 0.92rem;
  color: #476785;
}

.cta {
  padding: 62px 0 96px;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: var(--radius-xl);
  padding: 34px;
  background: linear-gradient(145deg, #0d2743, #174a76);
  border: 1px solid rgba(176, 213, 244, 0.3);
  box-shadow: var(--shadow-tight);
}

.cta-card h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 3.1vw, 2.4rem);
  margin-bottom: 8px;
}

.cta-card p {
  color: rgba(223, 238, 251, 0.84);
}

.site-footer {
  border-top: 1px solid #d4e4f2;
  padding: 34px 0 46px;
  background: #f8fbff;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #385d7b;
  font-size: 0.9rem;
}

.site-footer .brand-name {
  color: var(--ink-900);
}

/* Compatibility styles used by forbidden.html */
.hero.hero-visual {
  background: linear-gradient(180deg, rgba(226, 239, 250, 0.86), rgba(239, 246, 253, 0.95));
  padding-top: 76px;
}

.hero-visual .eyebrow {
  color: #2b6ca6;
}

.hero-visual h1 {
  color: var(--ink-900);
}

.hero-visual .lead {
  color: #4f6f8a;
}

.hero-visual-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.hero-card {
  border-radius: var(--radius-lg);
  border: 1px solid #d4e4f2;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  padding: 22px;
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.card-title {
  color: #1a4468;
  font-weight: 600;
}

.card-subtitle {
  color: #5c7a95;
  font-size: 0.88rem;
}

.status {
  border-radius: 999px;
  border: 1px solid #b7d6ef;
  background: #e7f3fe;
  color: #1e5888;
  font-size: 0.68rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 9px;
}

.hero-card-body {
  display: grid;
  gap: 12px;
}

.card-footer {
  border-radius: var(--radius-sm);
  border: 1px solid #d8e7f3;
  background: #f6fbff;
  padding: 12px 13px;
}

.hero-visual-backdrop {
  display: none;
}

.feature-card {
  border-radius: var(--radius-md);
  border: 1px solid #d6e6f3;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  padding: 22px;
}

.error-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.error-list li {
  position: relative;
  color: #2d5272;
  padding-left: 18px;
}

.error-list li::before {
  content: '-';
  position: absolute;
  left: 0;
  color: #2f6fa9;
  font-weight: 700;
}

.error-code {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 0.86rem;
  color: #214c70;
  background: #e8f3fc;
  border-radius: 999px;
  padding: 2px 8px;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 1060px) {
  .hero-grid,
  .section-grid,
  .trust-grid,
  .hero-visual-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof,
  .team-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .insight-card {
    position: static;
    margin-top: 14px;
    width: 100%;
    animation: none;
  }

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

@media (max-width: 780px) {
  .nav-links {
    display: none;
  }

  .mobile-cta {
    display: inline-flex;
  }

  .hero {
    padding: 78px 0 68px;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-proof,
  .team-grid,
  .faq-grid,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-card,
  .footer-grid {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(1160px, 94vw);
  }

  .hero {
    padding-top: 72px;
  }

  .chat-head,
  .chat-body,
  .chat-foot,
  .feature-panel,
  .faq-item,
  .team-card,
  .step-card,
  .workflow-panel,
  .hero-card,
  .feature-card {
    padding-left: 14px;
    padding-right: 14px;
  }

  .cta-card {
    padding: 24px 18px;
  }
}
