:root {
  --surface: #f7fafd;
  --surface-dim: #d7dadd;
  --surface-bright: #f7fafd;
  --surface-container-lowest: #ffffff;
  --surface-container-low: #f1f4f7;
  --surface-container: #ebeef1;
  --surface-container-high: #e5e8eb;
  --surface-container-highest: #e0e3e6;
  --surface-variant: #e0e3e6;
  --surface-glass: rgba(247, 250, 253, 0.85);
  --on-surface: #181c1e;
  --on-surface-variant: #444654;
  --inverse-surface: #2d3133;
  --inverse-on-surface: #eef1f4;
  --outline: #747686;
  --outline-variant: #c4c5d7;
  --border-subtle: #E2E8F0;
  --primary: #0037b0;
  --primary-action: #2650d0;
  --primary-container: #2650d0;
  --on-primary: #ffffff;
  --on-primary-container: #cbd3ff;
  --primary-fixed: #dce1ff;
  --primary-fixed-dim: #b7c4ff;
  --inverse-primary: #b7c4ff;
  --secondary: #5e5e60;
  --on-secondary: #ffffff;
  --secondary-container: #e1dfe1;
  --on-secondary-container: #626264;
  --tertiary: #4d15be;
  --tertiary-container: #653ad6;
  --on-tertiary: #ffffff;
  --error: #ba1a1a;
  --error-container: #ffdad6;
  --on-error: #ffffff;
  --on-error-container: #93000a;
  --navy-deep: #0F172A;
  --data-accent-purple: #8C65FF;
  --data-accent-orange: #FF7451;
  --sand-light: #f7fafd;
  --dune-shadow: #0F172A;
  --primary-action: #2650d0;
  --sentinel-blue: #0037b0;
  --sentinel-blue: #0037b0;
  --container-max: 1280px;
  --section-padding: clamp(4rem, 10vw, 6rem);
  --gutter: 1.5rem;
  --radius-sm: 0.125rem;
  --radius-md: 0.25rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --font-display: "Manrope", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-label: "JetBrains Mono", ui-monospace, monospace;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 25px -10px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 20px 40px -16px rgba(15, 23, 42, 0.16);
}

html {
  scroll-behavior: smooth;
}

body.sentinel-body {
  margin: 0;
  background: var(--surface);
  color: var(--on-surface);
  font-family: var(--font-body, "Inter", system-ui, sans-serif);
  -webkit-font-smoothing: antialiased;
}

body.sentinel-body.dashboard-body {
  background: var(--surface);
  font-family: var(--font-body, "Inter", system-ui, sans-serif);
}

.sentinel-container {
  width: min(100% - 2rem, var(--container-max));
  margin-inline: auto;
}

@media (min-width: 768px) {
  .sentinel-container {
    width: min(100% - 3rem, var(--container-max));
  }
}

.sentinel-ambient {
  box-shadow: 0 10px 40px -10px rgba(15, 23, 42, 0.06);
}

.sentinel-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 4rem;
  display: flex;
  align-items: center;
  backdrop-filter: blur(12px);
  background: var(--surface-glass);
  border-bottom: 1px solid color-mix(in srgb, var(--outline-variant) 30%, transparent);
}

.sentinel-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(100% - 2rem, var(--container-max));
  margin-inline: auto;
}

.sentinel-brand {
  font-family: var(--font-body, "Inter", system-ui, sans-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-deep);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.3s;
}

.sentinel-brand:hover {
  color: var(--primary);
}

.sentinel-nav-links,
.sentinel-nav-actions {
  display: none;
  align-items: center;
  gap: 1.25rem;
}

.sentinel-nav-links {
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (min-width: 1100px) {
  .sentinel-nav-links,
  .sentinel-nav-actions {
    display: flex;
  }

  .sentinel-nav-toggle {
    display: none;
  }
}

.sentinel-nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--on-surface-variant);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0;
}

.sentinel-nav-link:hover,
.sentinel-nav-link.is-active {
  color: var(--primary);
}

.sentinel-nav-link:hover {
  transform: scale(0.98);
}

.sentinel-dropdown {
  position: relative;
}

.sentinel-dropdown-chevron {
  font-size: 18px !important;
  transition: transform 0.2s;
}

.sentinel-dropdown.open .sentinel-dropdown-chevron {
  transform: rotate(180deg);
}

.sentinel-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  min-width: 14rem;
  max-height: 22rem;
  overflow: auto;
  background: var(--surface-container-lowest);
  border: 1px solid color-mix(in srgb, var(--outline-variant) 50%, transparent);
  border-radius: 0.75rem;
  box-shadow: 0 16px 40px -12px rgba(15, 23, 42, 0.18);
  padding: 0.5rem;
  z-index: 60;
}

.sentinel-dropdown-menu-end {
  left: auto;
  right: 0;
}

.sentinel-dropdown.open .sentinel-dropdown-menu {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.sentinel-dropdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 0.85rem;
  border-radius: 0.5rem;
  color: var(--on-surface);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}

.sentinel-dropdown-item:hover,
.sentinel-dropdown-item.is-active {
  background: var(--surface-container);
  color: var(--navy-deep);
}

.sentinel-mobile-details {
  border-top: 1px solid var(--outline-variant);
  border-bottom: 1px solid var(--outline-variant);
  padding: 0.5rem 0;
}

.sentinel-mobile-details summary {
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--on-surface-variant);
  list-style: none;
  padding: 0.5rem 0;
}

.sentinel-mobile-details summary::-webkit-details-marker {
  display: none;
}

.sentinel-mobile-sublinks {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem 0 0.75rem 0.75rem;
}

.sentinel-mobile-sublinks a {
  color: var(--on-surface-variant);
  text-decoration: none;
  font-size: 0.9rem;
}

.sentinel-mobile-sublinks a:hover {
  color: var(--primary);
}

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

@media (min-width: 640px) {
  .sentinel-footer-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .sentinel-footer-grid-5 {
    grid-template-columns: 1.4fr repeat(3, 1fr);
  }
}

.sentinel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body, "Inter", system-ui, sans-serif);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: var(--radius-sm, 0.125rem);
  padding: 0.75rem 1.5rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s;
}

.sentinel-btn-gold {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 4px 14px rgba(38, 80, 208, 0.35);
}

.sentinel-btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(38, 80, 208, 0.4);
}

.sentinel-btn-outline {
  color: var(--navy-deep);
  background: var(--surface-container-lowest);
  border-color: var(--outline);
}

.sentinel-btn-outline:hover {
  border-color: var(--primary);
}

.sentinel-btn-ghost {
  color: var(--primary);
  background: transparent;
}

.sentinel-btn-ghost:hover {
  background: color-mix(in srgb, var(--surface-variant) 50%, transparent);
}

.sentinel-btn-login {
  color: var(--navy-deep);
  background: transparent;
  border-color: var(--outline);
  padding: 0.5rem 1rem;
}

.sentinel-btn-login:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.sentinel-nav-toggle {
  background: none;
  border: 0;
  color: var(--navy-deep);
  cursor: pointer;
  padding: 0.25rem;
}

.sentinel-mobile-panel {
  display: none;
  position: fixed;
  inset: 4rem 0 auto 0;
  z-index: 49;
  background: var(--surface-container-lowest);
  border-bottom: 1px solid var(--outline-variant);
  padding: 1.25rem 1.5rem 1.5rem;
  flex-direction: column;
  gap: 1rem;
}

.sentinel-mobile-panel.open {
  display: flex;
}

.sentinel-main {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.sentinel-hero {
  text-align: center;
  padding: clamp(1.75rem, 4vw, 3rem) 0 clamp(3rem, 8vw, 6rem);
}

.sentinel-hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  color: var(--navy-deep);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.sentinel-hero h1,
.sentinel-page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  font-weight: 700;
  color: var(--navy-deep);
  max-width: 56rem;
  margin: 0 auto 1.5rem;
  letter-spacing: -0.02em;
}

.sentinel-hero p,
.sentinel-lead {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  color: var(--on-surface-variant);
  max-width: 42rem;
  margin: 0 auto 3rem;
}

.sentinel-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: stretch;
}

@media (min-width: 640px) {
  .sentinel-hero-actions {
    flex-direction: row;
    align-items: center;
  }
}

.sentinel-section {
  padding: var(--section-padding) 0;
}

.sentinel-section-muted {
  background: color-mix(in srgb, var(--surface-variant) 30%, transparent);
}

.sentinel-section-head {
  text-align: center;
  margin-bottom: 4rem;
}

.sentinel-section-head h2,
.sentinel-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.2;
  font-weight: 600;
  color: var(--navy-deep);
  margin: 0 0 1rem;
}

.sentinel-section-head p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--on-surface-variant);
  max-width: 42rem;
  margin: 0 auto;
}

.sentinel-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .sentinel-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sentinel-card {
  background: var(--surface-container-lowest);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid transparent;
  transition: transform 0.3s, border-color 0.3s;
}

.sentinel-card:hover {
  transform: translateY(-0.5rem);
  border-color: color-mix(in srgb, var(--primary) 30%, transparent);
}

.sentinel-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-sm, 0.125rem);
  background: var(--surface-variant);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.sentinel-card h3 {
  font-family: var(--font-body, "Inter", system-ui, sans-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin: 0 0 0.75rem;
}

.sentinel-card p {
  margin: 0;
  color: var(--on-surface-variant);
  line-height: 1.6;
}

.sentinel-bots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .sentinel-bots {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .sentinel-bots {
    grid-template-columns: repeat(5, 1fr);
  }
}

.sentinel-bot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--surface-container-lowest);
  padding: 1.5rem;
  border-radius: 0.75rem;
  text-align: center;
  text-decoration: none;
  color: var(--navy-deep);
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.sentinel-bot:hover {
  background: var(--surface-variant);
  border-color: var(--outline-variant);
}

.sentinel-bot:hover .lucide-icon {
  color: var(--primary);
}

.sentinel-bot .lucide-icon,
.sentinel-bot svg.lucide {
  display: block;
  flex-shrink: 0;
  transition: color 0.2s;
}

.sentinel-bot span.label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.sentinel-cta-panel {
  background: var(--surface-container);
  padding: clamp(3rem, 8vw, 6rem);
  border-radius: var(--radius-lg, 0.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sentinel-cta-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  background: color-mix(in srgb, var(--primary) 10%, transparent);
  border-radius: var(--radius-sm, 0.125rem);
  filter: blur(48px);
  transform: translate(50%, -50%);
  pointer-events: none;
}

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

.sentinel-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .sentinel-cta-actions {
    flex-direction: row;
  }
}

.sentinel-footer {
  padding: 2.5rem 0 1.5rem;
  background: var(--surface-container-lowest);
  border-top: 1px solid color-mix(in srgb, var(--outline-variant) 20%, transparent);
}

.sentinel-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .sentinel-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1.25rem;
  }
}

@media (min-width: 960px) {
  .sentinel-footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 1.5rem 1.5rem;
    align-items: start;
  }
}

.sentinel-footer-brand p {
  margin: 0.75rem 0 0;
  max-width: 16rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.sentinel-footer h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 0.75rem;
}

.sentinel-footer-subhead {
  margin-top: 1.25rem !important;
}

.sentinel-footer p,
.sentinel-footer a,
.sentinel-footer li {
  color: var(--on-surface-variant);
  font-size: 0.875rem;
  line-height: 1.45;
}

.sentinel-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.sentinel-footer a {
  text-decoration: none;
  transition: color 0.2s;
}

.sentinel-footer a:hover {
  color: var(--primary);
}

.sentinel-footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  margin-top: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid color-mix(in srgb, var(--outline-variant) 25%, transparent);
}

.sentinel-footer-meta p {
  margin: 0;
  font-size: 0.8125rem;
}

.sentinel-footer-langs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.sentinel-footer-langs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  padding: 0.3rem 0.5rem;
  border: 1px solid var(--border-subtle, #E2E8F0);
  border-radius: var(--radius-sm, 0.125rem);
  font-family: var(--font-mono, "JetBrains Mono", ui-monospace, monospace);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--on-surface-variant);
}

.sentinel-footer-langs a:hover,
.sentinel-footer-langs a.is-active {
  color: var(--primary);
  border-color: color-mix(in srgb, var(--primary) 40%, transparent);
  background: color-mix(in srgb, var(--primary) 6%, transparent);
}

.sentinel-page-hero {
  text-align: center;
  padding: 2rem 0 3rem;
}

.sentinel-prose {
  max-width: 48rem;
  margin: 0 auto;
  color: var(--on-surface-variant);
  line-height: 1.7;
}

.sentinel-prose h2 {
  font-family: var(--font-display);
  color: var(--navy-deep);
  margin: 2.5rem 0 1rem;
}

.sentinel-prose ul {
  padding-left: 1.25rem;
}

.sentinel-prose a {
  color: var(--primary, #2650d0);
  font-weight: 600;
  text-decoration: none;
}

.sentinel-prose a:hover {
  color: var(--navy-deep, #0F172A);
  text-decoration: underline;
}

.sentinel-prose h3 {
  font-family: var(--font-body, "Manrope", system-ui, sans-serif);
  color: var(--navy-deep, #0F172A);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 1.5rem 0 0.65rem;
}

.legal-hero {
  padding-bottom: 1.5rem;
}

.legal-eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary, #2650d0);
}

.legal-updated {
  margin-bottom: 0 !important;
}

.sentinel-legal-doc {
  max-width: 48rem;
  margin: 0 auto 4rem;
  background: var(--surface-container-lowest, #fff);
  border: 1px solid color-mix(in srgb, var(--outline-variant, #c4c5d7) 45%, transparent);
  border-radius: 1rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: 0 10px 40px -10px rgba(15, 23, 42, 0.06);
}

.sentinel-legal-doc.sentinel-prose {
  max-width: 48rem;
}

.legal-intro {
  font-size: 1.05rem;
  color: var(--navy-deep, #0F172A);
  margin-bottom: 1.75rem !important;
}

.legal-related {
  margin-top: 2.5rem !important;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--outline-variant, #c4c5d7) 50%, transparent);
}

.legal-doc-footer {
  margin-top: 1.5rem !important;
  margin-bottom: 0 !important;
  font-size: 0.9rem;
  color: var(--on-surface-variant, #444654);
}

.sentinel-form-shell {
  max-width: 28rem;
  margin: 0 auto;
  background: var(--surface-container-lowest);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid color-mix(in srgb, var(--outline-variant) 40%, transparent);
}

.sentinel-form-shell .form-group,
.sentinel-form-shell .form-field {
  margin-bottom: 1.25rem;
}

.sentinel-form-shell label,
.sentinel-form-shell .form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-deep);
}

.sentinel-form-shell input,
.sentinel-form-shell select,
.sentinel-form-shell textarea,
.sentinel-form-shell .form-input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--outline-variant);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font: inherit;
  background: var(--surface);
  color: var(--on-surface);
}

.sentinel-form-shell input:focus,
.sentinel-form-shell select:focus,
.sentinel-form-shell textarea:focus {
  outline: 2px solid color-mix(in srgb, var(--primary) 50%, transparent);
  border-color: var(--primary);
}

.sentinel-breadcrumb {
  width: min(100% - 2rem, var(--container-max));
  margin: 6.5rem auto 0;
  font-size: 0.875rem;
  color: var(--on-surface-variant);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  line-height: 1.4;
}

.sentinel-breadcrumb a {
  color: var(--on-surface-variant);
  text-decoration: none;
  transition: color 0.2s ease;
}

.sentinel-breadcrumb a:hover {
  color: var(--primary);
}

.sentinel-breadcrumb-sep {
  color: color-mix(in srgb, var(--outline-variant) 80%, transparent);
  user-select: none;
}

.sentinel-breadcrumb [aria-current="page"] {
  color: var(--navy-deep);
  font-weight: 600;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lucide-icon {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  vertical-align: middle;
}

body.sentinel-body .header,
body.sentinel-body .footer {
  display: none !important;
}

body.sentinel-body .container {
  width: min(100% - 2rem, var(--container-max));
  margin-inline: auto;
  max-width: none;
}

body.sentinel-body .page-hero,
body.sentinel-body .bot-tracking-hero,
body.sentinel-body .pricing-hero,
body.sentinel-body .contact-hero {
  text-align: center;
  padding: 7rem 0 3rem;
  background: transparent;
}

body.sentinel-body .page-hero h1,
body.sentinel-body .bot-tracking-hero h1,
body.sentinel-body .hero-title,
body.sentinel-body .pricing-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy-deep);
  font-weight: 700;
}

body.sentinel-body .page-hero p,
body.sentinel-body .hero-description,
body.sentinel-body .bot-tracking-hero .hero-description {
  color: var(--on-surface-variant);
  max-width: 42rem;
  margin-inline: auto;
}

body.sentinel-body .btn,
body.sentinel-body .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm, 0.125rem);
  background: var(--primary);
  color: #fff;
  border: 0;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
}

body.sentinel-body .btn-secondary,
body.sentinel-body .btn-outline {
  background: var(--surface-container-lowest);
  color: var(--navy-deep);
  border: 1px solid var(--outline);
}

body.sentinel-body .feature-card,
body.sentinel-body .bot-feature-card,
body.sentinel-body .pricing-card,
body.sentinel-body .solution-feature,
body.sentinel-body .testimonial-card,
body.sentinel-body .faq-item,
body.sentinel-body .step-card,
body.sentinel-body .ecosystem-card,
body.sentinel-body .benefit-item,
body.sentinel-body .problem-item,
body.sentinel-body .team-member,
body.sentinel-body .stat-item,
body.sentinel-body .content-stats,
body.sentinel-body .contact-form,
body.sentinel-body .contact-info,
body.sentinel-body .billing-card,
body.sentinel-body .settings-card {
  background: var(--surface-container-lowest);
  border: 1px solid color-mix(in srgb, var(--outline-variant) 40%, transparent);
  border-radius: 1rem;
  box-shadow: 0 10px 40px -10px rgba(15, 23, 42, 0.06);
}

body.sentinel-body .section-title,
body.sentinel-body .section-header h2,
body.sentinel-body .problem-section h2,
body.sentinel-body .solution-section h2,
body.sentinel-body .benefits-section h2,
body.sentinel-body .bot-cta h2,
body.sentinel-body .features-cta h3,
body.sentinel-body .cta-content h2 {
  font-family: var(--font-display);
  color: var(--navy-deep);
}

body.sentinel-body .bot-cta,
body.sentinel-body .features-cta,
body.sentinel-body .microsoft-ecosystem,
body.sentinel-body .problem-section,
body.sentinel-body .solution-section,
body.sentinel-body .demo-section,
body.sentinel-body .faq-section,
body.sentinel-body .testimonials-section {
  background: color-mix(in srgb, var(--surface-variant) 25%, transparent);
}

body.sentinel-body .breadcrumb,
body.sentinel-body .breadcrumb-nav {
  width: min(100% - 2rem, var(--container-max));
  margin: 5.5rem auto 0;
  color: var(--on-surface-variant);
}

body.sentinel-body .auth-header {
  background: var(--surface-container) !important;
  color: var(--navy-deep) !important;
}

body.sentinel-body .auth-header::before {
  display: none !important;
}

body.sentinel-body .auth-logo,
body.sentinel-body .auth-logo h1,
body.sentinel-body .auth-header h2 {
  color: var(--navy-deep) !important;
  background: none !important;
  -webkit-text-fill-color: unset !important;
}

body.sentinel-body .auth-header p {
  color: var(--on-surface-variant) !important;
}

body.sentinel-body .auth-footer {
  background: var(--surface-container-low) !important;
  border-top-color: color-mix(in srgb, var(--outline-variant) 50%, transparent) !important;
}

body.sentinel-body .auth-form .btn-primary,
body.sentinel-body .auth-form .btn-full,
body.sentinel-body .auth-form .btn {
  background: var(--primary) !important;
  color: #fff !important;
  border-radius: var(--radius-sm, 0.125rem) !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(38, 80, 208, 0.35) !important;
}

body.sentinel-body .auth-form input:focus,
body.sentinel-body .auth-form select:focus,
body.sentinel-body .auth-form .form-input:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 1px var(--primary) !important;
}

body.sentinel-body .auth-form input[type="checkbox"] {
  accent-color: var(--primary) !important;
}

body.sentinel-body .auth-link {
  color: var(--primary) !important;
}

body.sentinel-body .loading-spinner {
  border-top-color: var(--primary) !important;
}

.about-hero {
  text-align: center;
  padding: 1.5rem 0 2.5rem;
}

.about-eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm, 0.125rem);
  border: 1px solid color-mix(in srgb, var(--outline-variant) 60%, transparent);
  background: var(--surface-container-lowest);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  font-weight: 700;
  color: var(--navy-deep);
  margin: 0 0 1rem;
}

.about-lead {
  margin-bottom: 1.75rem;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .about-split {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.about-panel {
  background: var(--surface-container-lowest);
  border: 1px solid color-mix(in srgb, var(--outline-variant) 45%, transparent);
  border-radius: 1rem;
  padding: 1.75rem;
}

.about-panel-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-sm, 0.125rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-variant);
  color: var(--primary);
  margin-bottom: 1rem;
}

.about-panel h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
  color: var(--navy-deep);
}

.about-panel p {
  margin: 0;
  color: var(--on-surface-variant);
  line-height: 1.65;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .about-values {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .about-values {
    grid-template-columns: repeat(4, 1fr);
  }
}

.about-value-card {
  height: 100%;
}

.about-value-card h3 {
  font-size: 1.125rem;
}

.bot-safety-badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--on-surface-variant);
}

.home-catalog-panel {
  display: grid;
  gap: 2rem;
  align-items: center;
  background: var(--surface-container-lowest);
  border: 1px solid color-mix(in srgb, var(--outline-variant) 45%, transparent);
  border-radius: var(--radius-lg, 0.5rem);
  padding: clamp(2rem, 5vw, 3rem);
}

@media (min-width: 768px) {
  .home-catalog-panel {
    grid-template-columns: auto 1fr;
    gap: 3rem;
  }
}

.home-catalog-stat {
  text-align: center;
  min-width: 10rem;
}

.home-catalog-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.home-catalog-label {
  margin-top: 0.5rem;
  color: var(--on-surface-variant);
  font-size: 0.95rem;
  font-weight: 600;
}

.home-catalog-copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.home-catalog-copy p {
  margin: 0 0 1.5rem;
  color: var(--on-surface-variant);
  max-width: 36rem;
}

.home-catalog-copy .sentinel-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 900px) {
  .about-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.about-stat {
  text-align: center;
  background: var(--surface-container-lowest);
  border: 1px solid color-mix(in srgb, var(--outline-variant) 45%, transparent);
  border-radius: 1rem;
  padding: 1.5rem 1rem;
}

.about-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.1;
}

.about-stat-label {
  margin-top: 0.4rem;
  color: var(--on-surface-variant);
  font-size: 0.9rem;
}

.about-cta {
  padding: clamp(2.5rem, 5vw, 3.5rem) !important;
}

.about-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.services-steps {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .services-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.services-step {
  text-align: left;
  padding: 1.5rem;
}

.services-step-num {
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-sm, 0.125rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-variant);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.85rem;
}

.services-step .about-stat-label {
  text-align: left;
  line-height: 1.55;
}

body.sentinel-body .related-bots-section {
  background: color-mix(in srgb, var(--surface-variant) 30%, transparent) !important;
}

body.sentinel-body .pricing-card.featured {
  border-color: var(--primary);
  position: relative;
}

body.sentinel-body .pricing-card .plan-price .amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--navy-deep);
}

body.sentinel-body .plan-badge,
body.sentinel-body .savings-badge {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-sm, 0.125rem);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
}

body.sentinel-body .contact-form button,
body.sentinel-body .auth-form .btn-primary,
body.sentinel-body .btn-full {
  width: 100%;
  border-radius: var(--radius-sm, 0.125rem);
  background: var(--primary);
  color: #fff;
  border: 0;
  padding: 0.85rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
}

.bot-problems {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .bot-problems {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sentinel-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .sentinel-faq-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

.sentinel-faq-grid .about-panel h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
  color: var(--navy-deep);
}

.sentinel-billing-toggle {
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.3rem;
  margin: 0 auto 1.5rem;
  background: color-mix(in srgb, var(--outline-variant) 25%, transparent);
  border-radius: var(--radius-sm, 0.125rem);
  width: fit-content;
  max-width: 100%;
}

.sentinel-billing-btn {
  border: 0;
  background: transparent;
  color: var(--on-surface-variant, #444654);
  border-radius: var(--radius-sm, 0.125rem);
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.sentinel-billing-btn.is-active {
  background: var(--surface-container-lowest, #fff);
  color: var(--navy-deep, #0F172A);
  box-shadow: 0 4px 14px -6px rgba(15, 23, 42, 0.2);
}

.sentinel-billing-hint {
  font-size: 0.75rem;
  opacity: 0.8;
}

.sentinel-pricing-price .amount-contact {
  font-size: 1.35rem;
  font-weight: 700;
}

.sentinel-pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .sentinel-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .sentinel-pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.sentinel-pricing-card {
  position: relative;
  background: var(--surface-container-lowest);
  border: 1px solid color-mix(in srgb, var(--outline-variant) 45%, transparent);
  border-radius: 1rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sentinel-pricing-card.is-featured {
  border-color: var(--primary);
  box-shadow: 0 16px 40px -16px rgba(38, 80, 208, 0.35);
}

.sentinel-pricing-ribbon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-sm, 0.125rem);
  padding: 0.3rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.sentinel-pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0;
  color: var(--navy-deep);
}

.sentinel-pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}

.sentinel-pricing-price .currency {
  font-size: 1.1rem;
  color: var(--on-surface-variant);
}

.sentinel-pricing-price .amount {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1;
}

.sentinel-pricing-price .period {
  color: var(--on-surface-variant);
  font-size: 0.95rem;
}

.sentinel-pricing-note {
  margin: 0;
  color: var(--on-surface-variant);
  font-size: 0.9rem;
  line-height: 1.45;
}

.sentinel-pricing-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
  flex: 1;
}

.sentinel-pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--on-surface);
  font-size: 0.95rem;
  line-height: 1.45;
}

.sentinel-pricing-features .lucide-icon {
  color: var(--primary);
  font-size: 1.15rem;
  margin-top: 0.1rem;
}

.sentinel-pricing-card .sentinel-btn {
  width: 100%;
  margin-top: 0.5rem;
}

.sentinel-compare {
  background: var(--surface-container-lowest);
  border: 1px solid color-mix(in srgb, var(--outline-variant) 45%, transparent);
  border-radius: 1rem;
  overflow: auto;
}

.sentinel-compare-row {
  display: grid;
  grid-template-columns: minmax(120px, 1.2fr) repeat(6, minmax(90px, 1fr));
  gap: 0.75rem;
  padding: 0.95rem 1.15rem;
  border-top: 1px solid color-mix(in srgb, var(--outline-variant) 35%, transparent);
  color: var(--on-surface-variant);
  font-size: 0.9rem;
  min-width: 860px;
}

.sentinel-compare-row > div:first-child {
  color: var(--navy-deep);
  font-weight: 600;
}

.sentinel-compare-head {
  border-top: 0;
  background: color-mix(in srgb, var(--surface-variant) 45%, transparent);
  color: var(--navy-deep);
  font-weight: 600;
}

@media (max-width: 767px) {
  .sentinel-compare-row {
    grid-template-columns: minmax(110px, 1.1fr) repeat(6, minmax(80px, 1fr));
    font-size: 0.85rem;
  }
}

.sentinel-contact-form {
  margin-top: 1.25rem;
}

.sentinel-contact-form .form-group {
  margin-bottom: 1rem;
}

.sentinel-contact-form label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-deep);
}

.sentinel-contact-form input,
.sentinel-contact-form textarea {
  width: 100%;
  border: 1px solid color-mix(in srgb, var(--outline-variant) 70%, transparent);
  background: var(--surface-container-lowest);
  border-radius: 0.75rem;
  padding: 0.8rem 0.95rem;
  font: inherit;
  color: var(--on-surface);
}

.sentinel-contact-form input:focus,
.sentinel-contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 25%, transparent);
}

.sentinel-contact-form .sentinel-btn {
  width: 100%;
  margin-top: 0.25rem;
}

.sentinel-contact-side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sentinel-contact-info-list {
  display: grid;
  gap: 1rem;
  margin-top: 0.5rem;
}

.sentinel-contact-info-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.sentinel-contact-info-item .lucide-icon {
  color: var(--primary);
  margin-top: 0.15rem;
}

.sentinel-contact-info-item strong {
  display: block;
  color: var(--navy-deep);
  margin-bottom: 0.2rem;
}

.sentinel-contact-info-item p {
  margin: 0;
  color: var(--on-surface-variant);
}

.sentinel-toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%) translateY(1rem);
  background: var(--navy-deep);
  color: #fff;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-sm, 0.125rem);
  font-size: 0.9rem;
  opacity: 0;
  transition: 0.25s ease;
  z-index: 1000;
  max-width: min(90vw, 28rem);
  text-align: center;
}

.sentinel-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.sentinel-toast-success {
  background: #2f6b4f;
}

.sentinel-toast-error {
  background: #8b3a3a;
}


/* ===== Sentinel polish (hero, nav, icons) ===== */
.lucide-icon,
i[data-lucide],
svg.lucide {
  width: 1.15rem;
  height: 1.15rem;
  stroke-width: 1.75;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.sentinel-card-icon .lucide-icon,
.sentinel-card-icon svg.lucide,
.sentinel-bot .lucide-icon,
.sentinel-bot svg.lucide {
  width: 1.5rem;
  height: 1.5rem;
}

.sentinel-nav.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm, 0 1px 2px rgba(15, 23, 42, 0.06));
}

.sentinel-hero-wrap {
  position: relative;
  overflow: hidden;
  padding-bottom: 2rem;
}

.sentinel-hero-blob {
  position: absolute;
  top: -6rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(42rem, 90vw);
  height: 22rem;
  background: radial-gradient(circle, rgba(183, 196, 255, 0.55) 0%, rgba(247, 250, 253, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.sentinel-hero-wrap .sentinel-hero {
  position: relative;
  z-index: 1;
}

.sentinel-hero-preview {
  margin: 3rem auto 0;
  max-width: 56rem;
  border-radius: var(--radius-lg, 0.5rem);
  overflow: hidden;
  text-align: left;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
}

.sentinel-hero-preview-chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-subtle, #E2E8F0);
  background: var(--surface-container-low, #f1f4f7);
}

.sentinel-hero-preview-chrome span {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: #f87171;
}
.sentinel-hero-preview-chrome span:nth-child(2) { background: #fbbf24; }
.sentinel-hero-preview-chrome span:nth-child(3) { background: #34d399; }
.sentinel-hero-preview-chrome em {
  margin-left: auto;
  font-style: normal;
  font-family: var(--font-label, monospace);
  font-size: 0.75rem;
  color: var(--secondary, #5e5e60);
}

.sentinel-hero-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.25rem;
}

@media (min-width: 768px) {
  .sentinel-hero-preview-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sentinel-hero-kpi {
  background: var(--surface-container-low, #f1f4f7);
  border: 1px solid var(--border-subtle, #E2E8F0);
  border-radius: var(--radius-lg, 0.5rem);
  padding: 1rem 1.15rem;
}

.sentinel-hero-kpi span {
  display: block;
  font-size: 0.8rem;
  color: var(--secondary, #5e5e60);
  margin-bottom: 0.35rem;
}

.sentinel-hero-kpi strong {
  display: block;
  font-family: var(--font-display, Manrope, sans-serif);
  font-size: 1.75rem;
  color: var(--navy-deep, #0F172A);
  letter-spacing: -0.02em;
}

.sentinel-hero-kpi small {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.4rem;
  font-family: var(--font-label, monospace);
  font-size: 0.7rem;
  font-weight: 600;
}

.sentinel-hero-kpi small.is-up { color: #059669; }
.sentinel-hero-kpi small.is-down { color: #dc2626; }

.sentinel-hero-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.65rem;
  height: 8rem;
  padding: 0 1.25rem 1.25rem;
}

.sentinel-hero-bars i {
  flex: 1;
  display: block;
  border-radius: 0.25rem 0.25rem 0 0;
  background: color-mix(in srgb, var(--primary, #0037b0) 55%, #93c5fd);
  transform-origin: bottom;
}

.sentinel-hero-bars i:nth-child(odd) {
  background: var(--primary-container, #2650d0);
}

body.sentinel-body.auth-body {
  background: linear-gradient(135deg, #f7fafd 0%, #ebeef1 100%);
}

body.sentinel-body.auth-body .auth-container {
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.nav-warning-icon {
  color: var(--data-accent-orange, #FF7451);
  width: 1rem !important;
  height: 1rem !important;
}

.bots-table tbody tr.animate-slide-in,
.data-table tbody tr.animate-slide-in {
  opacity: 0;
}

/* ===== Setup / Kolay Kurulum ===== */
.setup-body .setup-hero {
  padding: 2rem 0 1.5rem;
}

.setup-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary, #2650d0);
  text-decoration: none;
}

.setup-back:hover {
  color: var(--navy-deep, #0F172A);
}

.setup-back .lucide-icon {
  width: 1rem;
  height: 1rem;
}

.setup-hero h1 {
  font-family: var(--font-display, "Manrope", system-ui, sans-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--navy-deep, #0F172A);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.setup-hero .sentinel-lead {
  max-width: 40rem;
  margin: 0;
  color: var(--on-surface-variant, #44474f);
  line-height: 1.65;
  font-size: 1.05rem;
}

.setup-layout {
  padding-bottom: 4rem;
  display: grid;
  gap: 1.5rem;
}

.setup-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.setup-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--surface-container-lowest, #fff);
  border: 1px solid var(--border-subtle, #E2E8F0);
  border-radius: var(--radius-lg, 0.5rem);
  padding: 1.25rem 1.35rem;
  box-shadow: 0 8px 28px -12px rgba(15, 23, 42, 0.06);
}

.setup-step-num {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: color-mix(in srgb, var(--primary, #2650d0) 12%, transparent);
  color: var(--primary, #2650d0);
  font-family: var(--font-display, "Manrope", system-ui, sans-serif);
  font-weight: 700;
  font-size: 0.95rem;
}

.setup-step-body h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-body, "Manrope", system-ui, sans-serif);
  font-size: 1.05rem;
  font-weight: 650;
  color: var(--navy-deep, #0F172A);
}

.setup-step-body p {
  margin: 0;
  color: var(--on-surface-variant, #44474f);
  line-height: 1.6;
  font-size: 0.95rem;
}

.setup-code-panel {
  background: var(--surface-container-lowest, #fff);
  border: 1px solid var(--border-subtle, #E2E8F0);
  border-radius: var(--radius-lg, 0.5rem);
  overflow: hidden;
  box-shadow: 0 8px 28px -12px rgba(15, 23, 42, 0.06);
}

.setup-code-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.85rem 1.15rem;
  border-bottom: 1px solid var(--border-subtle, #E2E8F0);
  background: var(--surface, #f7fafd);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-deep, #0F172A);
}

.setup-copy-btn {
  padding: 0.5rem 0.9rem;
  font-size: 0.8rem;
  min-width: 0;
}

.setup-copy-btn .lucide-icon {
  width: 0.95rem;
  height: 0.95rem;
}

.setup-copy-btn.is-copied {
  border-color: var(--primary, #2650d0);
  color: var(--primary, #2650d0);
}

.setup-code {
  margin: 0;
  padding: 1.15rem 1.25rem;
  overflow-x: auto;
  background: #0F172A;
  color: #E2E8F0;
  font-family: var(--font-mono, "JetBrains Mono", ui-monospace, monospace);
  font-size: 0.82rem;
  line-height: 1.65;
}

.setup-code code {
  font-family: inherit;
  background: none;
  color: inherit;
  padding: 0;
  white-space: pre;
}

.setup-note {
  margin: 0;
  padding: 0.9rem 1.15rem 1.1rem;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--on-surface-variant, #44474f);
  border-top: 1px solid var(--border-subtle, #E2E8F0);
}

.setup-step.is-active {
  border-color: color-mix(in srgb, var(--primary, #2650d0) 45%, var(--border-subtle, #E2E8F0));
  box-shadow: 0 10px 32px -12px rgba(38, 80, 208, 0.22);
}

.setup-wizard-bar {
  display: grid;
  gap: 0.5rem;
}

.setup-wizard-bar span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary, #2650d0);
}

.setup-wizard-track {
  height: 0.35rem;
  border-radius: 999px;
  background: var(--surface-container, #ebeef1);
  overflow: hidden;
}

.setup-wizard-fill {
  display: block;
  height: 100%;
  width: 33.333%;
  background: var(--primary, #2650d0);
  transition: width 0.25s ease;
}

.setup-wizard-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  justify-content: space-between;
}

.setup-code-panel.is-spotlight {
  outline: 2px solid color-mix(in srgb, var(--primary, #2650d0) 55%, transparent);
  outline-offset: 3px;
  animation: setup-pulse 1.4s ease-in-out 2;
}

@keyframes setup-pulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

.setup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.setup-actions .lucide-icon {
  width: 1rem;
  height: 1rem;
}

@media (max-width: 640px) {
  .setup-step {
    padding: 1rem;
  }

  .setup-code-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .setup-actions .sentinel-btn {
    width: 100%;
  }
}
