@font-face {
  font-family: 'Mona Sans';
  src: url('https://cdn.jsdelivr.net/npm/@github/mona-sans@1.0.1/dist/MonaSansVF[wdth,wght,opsz,ital].woff2') format('woff2 supports variations'),
    url('https://cdn.jsdelivr.net/npm/@github/mona-sans@1.0.1/dist/MonaSansVF[wdth,wght,opsz,ital].woff2') format('woff2-variations');
  font-weight: 200 900;
  font-stretch: 75% 125%;
  font-display: swap;
}

/* GLOBAL CSS RESET & VARIABLES */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  letter-spacing: 0.01em;
  font-feature-settings: "ss01" on;
}

:root {
  --font-sans: 'Mona Sans', system-ui, -apple-system, sans-serif;

  /* Backgrounds */
  --bg-primary: #ffffff;
  --bg-secondary: #f7fafc;
  --bg-tertiary: #eef6f8;

  /* Text */
  --text-primary: #0b1220;
  --text-secondary: #24324a;
  --text-muted: #64748b;
  --text-faint: #94a3b8;

  /* Borders */
  --border-color: #dbe7ef;
  --border-dark: #b8c7d5;

  /* Main brand accents */
  --accent-blue: #1E3A8A;
  --accent-blue-hover: #2563EB;

  --accent-teal: #10B981;
  --accent-teal-hover: #34D399;

  /* Deep neutral / navy */
  --accent-navy: #07111f;
  --accent-navy-light: #17233a;

  /* Optional soft brand surfaces */
  --accent-blue-soft: #e8eefc;
  --accent-teal-soft: #e7f8f2;
  --accent-gradient: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-teal) 100%);
  --accent-gradient-hover: linear-gradient(90deg, var(--accent-blue-hover) 0%, var(--accent-teal-hover) 100%);

  /* Success / check */
  --accent-success: #10B981;

  /* Error / destructive */
  --accent-red: #DC2626;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.06);
  --shadow-md: 0 6px 14px -6px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 14px 28px -12px rgba(15, 23, 42, 0.16);
  --shadow-xl: 0 24px 48px -18px rgba(15, 23, 42, 0.22);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.625;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease, border-color 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* LAYOUT CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER & NAVIGATION */
.site-shell {
  width: 100%;
  max-width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.2s ease;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.nav-logo img {
  height: 38px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  margin-right: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-blue);
  transition: width 0.2s ease;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 110;
}

.nav-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  padding: 24px;
  z-index: 90;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-lg);
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu a {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
}

.mobile-menu a.active {
  color: var(--accent-blue);
}

/* SHARP BUTTONS (NO ROUNDED CORNERS) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 0 !important;
  /* Force completely sharp corners */
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn-small {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background-color: var(--accent-navy);
  color: var(--bg-primary);
  border-color: var(--accent-navy);
}

.btn-primary:hover {
  background-color: var(--accent-navy-light);
  border-color: var(--accent-navy-light);
}

/* Onboarding Gradient button (No border) */
.btn-accent {
  background-image: var(--accent-gradient);
  color: var(--bg-primary);
  border: none;
  padding: 13px 25px;
}

.btn-accent:hover {
  background-image: var(--accent-gradient-hover);
  color: var(--bg-primary);
}

.btn-accent.btn-small {
  padding: 9px 17px;
}

.btn-ghost {
  background-color: transparent;
  color: var(--text-primary);
  border-color: var(--border-dark);
}

.btn-ghost:hover {
  background-color: var(--bg-secondary);
  border-color: var(--text-primary);
  color: black !important;
}



/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-sans);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(38px, 5vw, 64px);
}

h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 18px
}

h3 {
  font-size: clamp(20px, 2vw, 24px);
  letter-spacing: -0.02em;
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

/* FULL-WIDTH VISUAL BANDS */
.section {
  width: 100%;
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-primary);
}

.section-tight {
  padding: 60px 0;
  /* max-width: 1200px; */
}

.section-bg-alt {
  background-color: var(--bg-secondary);
}

.section-header {
  /* max-width: 1200px; */
  margin-bottom: 60px;
}

.section-header h2 {
  margin-bottom: 18px;
}

.section-copy {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 5px;
}

/* HERO SECTION (LIGHT 3D DECK STYLE) */
.hero {
  padding: 30px 0 0;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--border-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
}

.hero-container-dark {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
  z-index: 2;
}

.hero-text-content {
  max-width: 100%;
  width: 100%;
  z-index: 10;
  position: relative;
}

.hero-h1-dark {
  /* font-size: clamp(33px, 1.5vw, 38px);  */
  /* font-weight: 600; */
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin-bottom: 24px;
}

.hero-intro-dark {
  font-size: clamp(16px, 1.8vw, 19px);
  color: #475569;
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-btn-row {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

/* Hero Slider Section */
.hero-slider-section {
  width: 100%;
  margin-top: 40px;
  position: relative;
  z-index: 5;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.slider-title {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-teal);
}

.slider-controls {
  display: flex;
  gap: 8px;
}

.slider-btn {
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 0 !important;
  /* Sharp theme */
  transition: all 0.2s ease;
}

.slider-btn:hover {
  background: var(--text-primary);
  color: #ffffff;
  border-color: var(--text-primary);
}

/* Premium Browser Frame */
.slider-frame {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.frame-window-bar {
  background: #f8fafc;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.frame-window-bar .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.frame-window-bar .dot.red {
  background: #f87171;
}

.frame-window-bar .dot.yellow {
  background: #fbbf24;
}

.frame-window-bar .dot.green {
  background: #34d399;
}

.frame-address {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 11px;
  color: var(--text-muted);
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.05);
  padding: 2px 24px;
  border-radius: 0;
  pointer-events: none;
}

.slider-content {
  position: relative;
  width: 100%;
  background: #ffffff;
  aspect-ratio: 1.92 / 1;
  overflow: hidden;
}

#active-slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

#fade-slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  pointer-events: none;
  transition: opacity 0.4s ease-in-out;
  opacity: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-slider-section {
    margin-top: 30px;
  }

  .frame-address {
    display: none;
  }

  .slider-btn {
    width: 36px;
    height: 36px;
  }

  .hero-btn-row {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 280px;
  }
}

.hero-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-list li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  color: var(--text-secondary);
}

.hero-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-blue);
  font-weight: 700;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.trust-line {
  font-size: 13px;
  color: var(--text-muted);
  border-top: 1px dashed var(--border-color);
  padding-top: 5px;
  width: 100%;
}

/* SHARP MOCKUP CONTAINER */
.hero-visual-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-dark);
  border-radius: 0 !important;
  padding: 16px;
  box-shadow: var(--shadow-xl);
}

.hero-visual-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
}

.hero-shot {
  border: 1px solid var(--border-dark);
  border-radius: 0 !important;
  box-shadow: var(--shadow-md);
  background-color: var(--bg-primary);
  width: 100%;
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 16px;
}

.mini-card {
  padding: 16px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 0 !important;
}

.mini-card strong {
  display: block;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.mini-card span {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
}

/* TRUST STRIP & BADGES */
.trust-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.badge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
}

.badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--text-primary);
  padding: 12px 18px;
  border-radius: 0 !important;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.badge-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: color 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover Interactive States */
.badge:hover {
  transform: translateY(-3px);
  background-color: var(--bg-primary);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.badge:hover .badge-icon {
  transform: scale(1.15);
}

/* Branded Accent Colors */
.badge-sharepoint:hover {
  border-color: var(--accent-teal);
}

.badge-sharepoint:hover .badge-icon {
  color: var(--accent-teal);
}

.badge-teams:hover {
  border-color: #6264a7;
}

.badge-teams:hover .badge-icon {
  color: #6264a7;
}

.badge-entra:hover {
  border-color: var(--accent-blue);
}

.badge-entra:hover .badge-icon {
  color: var(--accent-blue);
}

.badge-graph:hover {
  border-color: #0284c7;
}

.badge-graph:hover .badge-icon {
  color: #0284c7;
}

.badge-roles:hover {
  border-color: #ea580c;
}

.badge-roles:hover .badge-icon {
  color: #ea580c;
}

.badge-ai:hover {
  border-color: #8b5cf6;
}

.badge-ai:hover .badge-icon {
  color: #8b5cf6;
}

.badge-onboarding:hover {
  border-color: #10b981;
}

.badge-onboarding:hover .badge-icon {
  color: #10b981;
}

.badge-training:hover {
  border-color: #f43f5e;
}

.badge-training:hover .badge-icon {
  color: #f43f5e;
}

/* SOLUTION CRAFTER CONSOLE / PRODUCTS SHOWCASE */
.home-products__console {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-dark);
  border-radius: 0 !important;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

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

.console-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50% !important;
  display: inline-block;
}

.dot-red {
  background-color: #ef4444;
}

.dot-yellow {
  background-color: #f59e0b;
}

.dot-green {
  background-color: #10b981;
}

.console-tabs {
  display: flex;
  gap: 8px;
}

.console-tab {
  font-family: monospace;
  font-size: 11px;
  color: var(--text-muted);
  padding: 6px 12px;
  background-color: rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.console-tab:hover {
  background-color: rgba(0, 0, 0, 0.06);
  color: var(--text-primary);
}

.console-tab.active-tab {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  border-bottom-color: transparent;
  font-weight: 700;
}

.live-dot {
  width: 6px;
  height: 6px;
  background-color: #10b981;
  border-radius: 50% !important;
  display: inline-block;
  animation: pulse-live 1.8s infinite;
}

@keyframes pulse-live {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(0.9);
    opacity: 0.6;
  }
}

.console-body {
  padding: 48px;
}

.home-products__console-upper {
  margin-bottom: 40px;
}

.home-products__console-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.product-logo-wrapper img {
  height: 32px;
  width: auto;
}

.home-products__pill {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background-color: var(--bg-tertiary);
  color: var(--text-primary);
  padding: 4px 10px;
  border-radius: 0 !important;
}

.home-products__console-headline {
  margin-bottom: 16px;
}

.home-products__console-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  position: relative;
}

.home-products__console-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 24px;
  right: 24px;
  height: 1px;
  border-top: 1px dashed var(--border-color);
  z-index: 1;
}

.home-products__console-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-products__console-card:hover {
  border-color: var(--accent-teal);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.console-card__number {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent-blue);
  font-family: monospace;
  width: 24px;
  height: 24px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.home-products__console-card:hover .console-card__number {
  background-color: var(--accent-teal);
  color: var(--bg-primary);
  border-color: var(--accent-teal);
}

.home-products__console-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.home-products__console-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.home-products__console-lower {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 32px;
  flex-wrap: wrap;
  gap: 24px;
}

.console-metrics-pills {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.console-pill-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-navy);
  transition: all 0.2s ease;
  cursor: default;
}

.console-pill-item:hover {
  border-color: var(--accent-teal);
  background-color: rgba(20, 184, 166, 0.04);
}

.pill-icon {
  width: 14px;
  height: 14px;
  color: var(--accent-teal);
  flex-shrink: 0;
}

.home-products__console-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* EDITORIAL GRID / WHY TIMEOPERA */
.grid {
  display: grid;
  gap: 24px;
}

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

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

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

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

.info-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 0 !important;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.card-kicker {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-blue);
  margin-bottom: 16px;
}

.info-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.info-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* SECURITY TWO COLUMN LAYOUT */
.editorial-security {
  /* display: grid; */
  /* grid-template-columns: 0.8fr 1.2fr; */
  /* gap: 60px; */
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.editorial-security__left {
  /* position: sticky; */
  /* top: 120px; */
  align-self: start;
}

.editorial-security__right {
  display: flex;
  flex-direction: column;
}

.security-list-item {
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
  display: grid;
  /* grid-template-columns: 0.4fr 1.6fr; */
  grid-template-columns: 1.4fr 4.1fr;
  gap: 16px;
}

.security-list-item:first-child {
  padding-top: 16px;
}

.security-list-item:last-child {
  border-bottom: none;
  padding-bottom: 16px;
}

.security-list-item h3 {
  font-size: 16px;
  font-weight: 700;
}

.security-list-item p {
  font-size: 14px;
  color: var(--text-secondary);
}

.trust-quote {
  /* margin-top: 40px; */
  margin-top: 15px;
  padding: 24px;
  border-left: 4px solid var(--accent-blue);
  background-color: var(--bg-secondary);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

/* PRICING & EVALUATION SECTION */
.split-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: stretch;
}

.stack-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

.stack-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 0 !important;
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.stack-card>.page-hero-actions,
.stack-card>.cta-row,
.stack-card>.cta-stack {
  margin-top: auto;
}

.stack-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.stack-card p {
  font-size: 15.5px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.55;
}

.plain-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.plain-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--text-secondary);
}

.plain-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-success);
  font-weight: 700;
}

.response-card {
  background-color: var(--accent-navy);
  color: var(--bg-primary);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0 !important;
}

.response-card h3 {
  color: var(--bg-primary);
  margin-bottom: 16px;
  font-size: 24px;
}

.response-card p {
  color: var(--text-faint);
  margin-bottom: 32px;
  font-size: 15px;
}

.cta-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* SUPPORT BAND */
.support-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.support-actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

.support-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* EDITORIAL Accordion / FAQ */
.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 0;
  transition: background-color 0.2s ease;
}

.faq-item:first-child {
  border-top: 1px solid var(--border-color);
}

.faq-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  transition: color 0.2s ease;
}

.faq-button:hover {
  color: var(--accent-teal);
}

.faq-button span {
  padding-right: 24px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
  padding-bottom: 24px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* CLOSING CTA (DARK HERO) */
.closing-cta {
  background-color: var(--accent-navy);
  color: var(--bg-primary);
  padding: 100px 0;
}

.closing-cta-panel {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.closing-cta-panel .eyebrow {
  background: linear-gradient(90deg, var(--accent-teal) 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.closing-cta-panel h2 {
  color: var(--bg-primary);
  margin-bottom: 20px;
}

.closing-cta-panel p {
  color: var(--text-faint);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* FOOTER REDESIGN */
.site-footer {
  background-color: var(--bg-primary);
  padding: 80px 0;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
}

.footer-logo {
  margin-bottom: 24px;
}

.footer-logo img {
  height: 38px;
  width: auto;
}

.footer-message {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-grid h3 {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.footer-grid a {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-weight: 500;
}

.footer-grid a:hover {
  color: var(--accent-blue);
}

/* INTERNAL PAGE STYLES */
.page-hero {
  padding: 80px 0 60px;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}

.page-hero-panel {
  max-width: 100%;
  width: 100%;
}

.page-hero-panel h1 {
  margin-bottom: 16px;
}

.page-hero-panel p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.page-hero-actions {
  display: flex;
  gap: 16px;
}

.page-grid {
  width: 100%;
}

.callout-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.callout-panel h2 {
  margin-bottom: 16px;
}

.callout-box {
  margin-top: 24px;
  width: 100%;
  padding: 24px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--accent-teal);
  border-radius: 0 !important;
}

.callout-box strong {
  display: block;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.callout-box p {
  font-size: 13px;
  color: var(--text-muted);
}

/* AI PROMPT GROUPS */
.prompt-group {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 0 !important;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.prompt-group h3 {
  font-size: 16px;
  font-weight: 700;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}

.chip-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chip {
  font-size: 12.5px;
  color: var(--text-secondary);
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 8px 12px;
  border-radius: 0 !important;
}

/* AI CHAT INTERACTIVE PREVIEW */
.response-bubble {
  margin-top: 24px;
  padding: 24px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--accent-blue);
  color: var(--text-secondary);
  font-size: 14.5px;
}

.response-bubble p {
  margin-bottom: 12px;
}

.response-bubble p:last-child {
  margin-bottom: 0;
}

/* ONBOARDING TIMELINE / STEPS */
.step-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 0 !important;
  padding: 32px 24px;
  position: relative;
}

.step-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-teal);
  font-family: monospace;
  margin-bottom: 12px;
  display: block;
}

.step-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* TRAINING BLOCKS */
.feature-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 0 !important;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 16px;
}

.feature-card .plain-list {
  margin-top: 16px;
}

.training-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000000;
  margin-bottom: 20px;
  display: block;
  object-fit: cover;
}

/* Dynamic YouTube Player Overlay Styles */
.training-video-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}

.training-video-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.training-video-container:hover img {
  transform: scale(1.03);
}

.training-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 1;
}

.video-play-btn {
  position: absolute;
  z-index: 2;
  width: 68px;
  height: 68px;
  /* background: rgba(11, 18, 32, 0.7); */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  /* border: 2px solid rgba(255, 255, 255, 0.85); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  /* transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  pointer-events: none;
  /* Let click go through to container */
}

.video-play-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  transform: translateX(2px);
  /* visual centering for play icon */
  transition: transform 0.3s ease;
}

.training-video-container:hover .video-play-btn {
  background: var(--accent-gradient);
  /* border-color: transparent; */
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(30, 58, 138, 0.4);
}

/* REDIRECT TEMPLATE */
.redirect-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-secondary);
  padding: 24px;
}

.redirect-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-dark);
  border-radius: 0 !important;
  padding: 48px;
  max-width: 500px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  text-align: center;
}

.redirect-card h1 {
  font-size: 24px;
  margin-top: 12px;
  margin-bottom: 16px;
}

.redirect-card p {
  font-size: 14.5px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* REVEAL EFFECT (ANIMATED SCROLLING) */
.reveal {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* RESPONSIVE LAYOUT STYLES */
@media (max-width: 1024px) {

  .trust-strip {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-products__console-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-products__console-grid::before {
    display: none;
  }

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

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

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

  .editorial-security {
    grid-template-columns: 1fr;
  }

  .editorial-security__left {
    position: relative;
    top: 0;
  }

  .split-layout {
    grid-template-columns: 1fr;
  }

  .support-band {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .support-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
  }
}

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

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-menu {
    top: 70px;
  }

  .section {
    padding: 60px 0;
  }

  .console-body {
    padding: 24px;
  }

  .home-products__console-grid {
    grid-template-columns: 1fr;
  }

  .home-products__console-lower {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-products__console-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
  }

  .home-products__console-actions .btn {
    width: 100%;
    text-align: center;
  }

  .support-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
  }

  .support-actions .btn {
    width: 100%;
    text-align: center;
  }

  .security-list-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .grid-2,
  .grid-3,
  .grid-5,
  .grid-6 {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .badge-grid {
    grid-template-columns: 1fr !important;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .badge-grid {
    grid-template-columns: 1fr !important;
  }
}

/* REFINE DESIGN SYSTEM EXTENSIONS */

/* Browser Mockup Frame */
.mockup-frame {
  border: 1px solid var(--border-dark);
  background-color: var(--bg-primary);
  box-shadow: var(--shadow-lg);
  position: relative;
  width: 100%;
}

.mockup-header {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mockup-dot {
  width: 8px;
  height: 8px;
  background-color: var(--text-faint);
  display: inline-block;
}

.mockup-title {
  font-family: monospace;
  font-size: 11px;
  color: var(--text-muted);
  margin-left: auto;
  margin-right: auto;
}

/* Compact Security Grid (3x2) */
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.security-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.security-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.security-tag {
  font-size: 9px;
  font-weight: 800;
  color: var(--accent-blue);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.security-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0;
  letter-spacing: -0.01em;
}

.security-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* FAQ Layout (Split Sticky Columns) */
.faq-container {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 80px;
  align-items: start;
}

.faq-sidebar {
  position: sticky;
  top: 140px;
}

.faq-subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-top: 16px;
  margin-bottom: 24px;
}

.faq-list-wrapper {
  display: flex;
  flex-direction: column;
}

.faq-arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--text-muted);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.faq-item.is-open .faq-button {
  color: var(--accent-teal);
}

.faq-item.is-open .faq-arrow {
  transform: rotate(180deg);
  color: var(--accent-teal);
}

/* AI Assistant Role Persona Scopes */
.role-scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.role-scope-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 480px;
}

.role-scope-header {
  margin-bottom: 24px;
}

.role-badge {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-teal);
  background-color: var(--teal-lt);
  padding: 4px 8px;
  display: inline-block;
  margin-bottom: 12px;
}

.role-scope-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.role-scope-card>p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

.role-query-box {
  margin-top: 24px;
  border-top: 1px dashed var(--border-color);
  padding-top: 20px;
}

.role-prompt-bubble {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 550;
  color: var(--text-primary);
  border-radius: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.role-query-pill:hover {
  background-color: rgba(37, 99, 235, 0.04);
  border-color: rgba(37, 99, 235, 0.3);
}

.role-scope-card:nth-child(1) .role-query-pill.active {
  background-color: rgba(37, 99, 235, 0.06);
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  font-weight: 600;
  border-left: 3px solid var(--accent-blue);
}

.role-scope-card:nth-child(2) .role-query-pill.active {
  background-color: rgba(13, 148, 136, 0.06);
  border-color: var(--accent-teal);
  color: var(--accent-teal);
  font-weight: 600;
  border-left: 3px solid var(--accent-teal);
}

.role-scope-card:nth-child(3) .role-query-pill.active {
  background-color: rgba(99, 102, 241, 0.06);
  border-color: #6366f1;
  color: #6366f1;
  font-weight: 600;
  border-left: 3px solid #6366f1;
}

.role-response-bubble {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 12px 16px;
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.role-lock-section {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

.role-lock-badge {
  font-size: 11px;
  font-weight: 700;
  color: #b91c1c;
  background-color: #fef2f2;
  padding: 4px 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Onboarding Steps Timeline */
.onboarding-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 10px;
}

.onboarding-timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--border-color);
  z-index: 1;
}

.onboarding-step-row {
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 2;
  cursor: default;
}

.onboarding-step-marker {
  width: 36px;
  height: 36px;
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  color: var(--text-muted);
  font-family: monospace;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.onboarding-step-content {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 20px 24px;
  flex-grow: 1;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.onboarding-step-content h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.onboarding-step-content p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Hover "Live" Effects */
.onboarding-step-row:hover .onboarding-step-marker {
  border-color: var(--accent-teal);
  background-color: var(--accent-teal);
  color: var(--bg-primary);
  transform: scale(1.08);
}

.onboarding-step-row:hover .onboarding-step-content {
  border-color: var(--accent-teal);
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

/* Responsive Overrides for Extensions */
@media (max-width: 1024px) {
  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-sidebar {
    position: static;
  }

  .role-scope-grid {
    grid-template-columns: 1fr;
  }

  .role-scope-card {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .security-grid {
    grid-template-columns: 1fr;
  }

  .onboarding-timeline::before {
    left: 18px;
  }

  .onboarding-step-row {
    gap: 16px;
  }

  .onboarding-step-content {
    padding: 16px 20px;
  }
}

@media(max-width: 960px) {
  .onboarding-flow-diagram {
    flex-direction: column;
    gap: 16px;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

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

@media(max-width: 640px) {
  .grid-7 {
    grid-template-columns: 1fr;
  }
}

/* LEGAL PAGES (Privacy & Terms) */
.legal-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 140px 24px 80px;
}

.legal-page h1 {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--text-primary);
}

.legal-page .meta-date {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
  font-weight: 500;
}

.legal-page h2 {
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 40px 0 12px;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
}

.legal-page h3 {
  font-size: 17px;
  letter-spacing: -0.01em;
  margin: 24px 0 8px;
  color: var(--text-primary);
  font-weight: 600;
}

.legal-page p,
.legal-page li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.legal-page a {
  color: var(--accent-blue);
  text-decoration: none;
}

.legal-page a:hover {
  text-decoration: underline;
}

.legal-page ul {
  padding-left: 20px;
  margin: 12px 0;
}

.legal-page li {
  margin-bottom: 8px;
}

.legal-page .eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 14px;
}

.legal-page .company-box {
  background: var(--bg-tertiary);
  padding: 20px;
  margin: 20px 0;
  border-left: 4px solid var(--accent-teal);
}

.legal-page .company-box p {
  margin: 4px 0;
}

/* COMPARISON SECTION STYLES */
.comparison-table-wrapper {
  margin-top: 48px;
  overflow-x: auto;
  border-radius: 0;
  border: 1px solid var(--border-color);
  background-color: var(--bg-primary);
  box-shadow: var(--shadow-md);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 15px;
  table-layout: fixed;
}

.comparison-table th,
.comparison-table td {
  padding: 12px 24px;
  border-bottom: 1px solid var(--border-color);
  vertical-align: top;
  line-height: 1.6;
}

/* Precise column proportions: 28% for feature name, 36% each for standard tools and TimeOpera */
.comparison-table th:nth-child(1),
.comparison-table td:nth-child(1) {
  width: 28%;
}

.comparison-table th:nth-child(2),
.comparison-table td:nth-child(2) {
  width: 36%;
}

.comparison-table th:nth-child(3),
.comparison-table td:nth-child(3) {
  width: 36%;
}

.comparison-table th {
  font-weight: 700;
  color: var(--text-primary);
  background-color: var(--bg-secondary);
}

.comparison-table th.highlight,
.comparison-table td.highlight {
  background-color: rgba(16, 185, 129, 0.04);
  color: var(--text-primary);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table .feature-name {
  color: var(--text-primary);
}

.comp-cell-content {
  display: flex;
  align-items: flex-start;
}

.comp-icon {
  width: 18px;
  height: 18px;
  vertical-align: top;
  margin-top: 4px;
  margin-right: 12px;
  display: inline-block;
  flex-shrink: 0;
}

.comp-check {
  color: var(--accent-success);
  font-weight: 600;
  text-align: center;
  line-height: 18px;
  font-size: 16px;
}

.comp-cross {
  color: var(--accent-red);
  font-weight: 600;
  text-align: center;
  line-height: 18px;
  font-size: 16px;
}

@media (max-width: 768px) {

  .comparison-table th,
  .comparison-table td {
    padding: 12px 16px;
    font-size: 14px;
  }
}

/* CTA LIST SEMANTIC WRAPPER STYLES */
.nav-actions,
.page-hero-actions,
.cta-row,
.cta-stack,
.support-actions,
.home-products__console-actions {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.nav-actions li,
.page-hero-actions li,
.cta-row li,
.cta-stack li,
.support-actions li,
.home-products__console-actions li {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.cta-stack li {
  display: block;
}

.cta-row li,
.nav-actions li,
.page-hero-actions li,
.support-actions li,
.home-products__console-actions li {
  display: inline-flex;
}

@media (min-width: 769px) {
  .col-span-2 {
    grid-column: span 2;
  }
}

.legal-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14.5px;
}

.legal-page th,
.legal-page td {
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  text-align: left;
  line-height: 1.5;
}

.legal-page th {
  background-color: var(--bg-secondary);
  font-weight: 700;
  color: var(--text-primary);
}

.legal-page td {
  color: var(--text-secondary);
}

/* DROPDOWN NAVIGATION STYLES */
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.dropdown-trigger::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid var(--text-secondary);
  border-bottom: 1.5px solid var(--text-secondary);
  transform: rotate(45deg);
  margin-left: 6px;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-trigger::after {
  transform: rotate(-135deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--text-secondary) !important;
  padding: 8px 12px !important;
  border-radius: 0 !important;
  white-space: nowrap;
  transition: background-color 0.15s ease, color 0.15s ease !important;
}

.dropdown-menu a::after {
  display: none !important;
}

.dropdown-menu a:hover {
  background-color: var(--bg-secondary) !important;
  color: var(--accent-blue) !important;
}

/* PROCESS TIMELINE */
.process-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-top: 48px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 50px;
  right: 50px;
  height: 2px;
  background-color: var(--border-color);
  z-index: 1;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 2;
}

.process-icon {
  width: 72px;
  height: 72px;
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  color: var(--accent-blue);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  margin-bottom: 16px;
}

.process-step:hover .process-icon {
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.process-step h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* PRICING STYLES */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pricing-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
  border-color: var(--border-dark);
  box-shadow: var(--shadow-md);
}

.pricing-card.pricing-popular {
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-lg);
}

.pricing-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent-gradient);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
}

.pricing-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.pricing-description {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  height: 48px;
}

.pricing-price {
  font-size: 40px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
}

.pricing-price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 4px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--accent-teal);
  font-weight: 700;
}

.pricing-card .btn {
  margin-top: auto;
}

/* ADDON CONTAINER */
.pricing-addon-box {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 32px;
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.pricing-addon-text h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.pricing-addon-text p {
  font-size: 14px;
  color: var(--text-muted);
}

/* CHAT INTERFACE MOCKUP */
.chat-interface {
  background-color: #f1f5f9;
  border: 1px solid var(--border-color);
  height: 480px;
  display: flex;
  flex-direction: column;
}

.chat-header {
  background-color: var(--accent-navy);
  color: var(--bg-primary);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-header-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-teal);
}

.chat-header h4 {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

.chat-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-msg {
  display: flex;
  gap: 12px;
  max-width: 85%;
}

.chat-msg.user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--accent-blue);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-msg.user .chat-avatar {
  background-color: #64748b;
}

.chat-bubble {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  padding: 12px 16px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

.chat-msg.user .chat-bubble {
  background-color: var(--accent-blue);
  color: #ffffff;
  border: none;
}

.chat-input-area {
  background-color: #ffffff;
  border-top: 1px solid var(--border-color);
  padding: 12px 16px;
  display: flex;
  gap: 12px;
}

.chat-input {
  flex: 1;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  font-size: 13.5px;
  color: var(--text-muted);
}

.chat-send-btn {
  background-color: var(--accent-navy);
  color: #ffffff;
  padding: 0 16px;
  font-weight: 600;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ARCHITECTURE DIAGRAM */
.arch-svg-container {
  width: 100%;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 32px;
  margin-top: 32px;
  overflow-x: auto;
}

.arch-svg-container svg {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

/* RESPONSIVE CSS INJECTS */
@media (max-width: 768px) {
  .process-timeline {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }

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

  .process-step {
    flex-direction: row;
    text-align: left;
    gap: 16px;
  }

  .process-icon {
    margin-bottom: 0;
    width: 56px;
    height: 56px;
    font-size: 16px;
  }

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

  .pricing-card {
    padding: 24px;
  }

  .pricing-addon-box {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  /* Mobile menu dropdowns */
  .mobile-menu .nav-dropdown {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .mobile-menu .dropdown-trigger {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0 6px;
  }

  .mobile-menu .dropdown-trigger::after {
    display: none;
  }

  .mobile-menu .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--accent-blue);
    padding: 4px 0 8px 16px;
    margin-top: 4px;
    margin-bottom: 8px;
    display: flex;
    opacity: 1;
    visibility: visible;
    min-width: 0;
    gap: 4px;
  }

  .mobile-menu .dropdown-menu a {
    font-size: 14px !important;
    padding: 6px 0 !important;
    border: none !important;
  }

  .nav-links,
  .nav-actions {
    display: none !important;
  }

  .nav-toggle {
    display: flex !important;
  }
}


/* Footer Grid Overrides for 4 Columns and Disclaimer */
.footer-grid {
  grid-template-columns: 1.5fr repeat(3, 1fr) !important;
}

.footer-disclaimer {
  grid-column: 1 / -1;
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  margin-top: 24px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ScrollStack Component Styles */
.scroll-stack-scroller {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 780px;
  overflow-y: auto;
  overflow-x: visible;
  overscroll-behavior: contain;
  border: 1px solid var(--border-color);
  border-radius: 0;
  background-color: var(--bg-secondary);
  box-shadow: var(--shadow-lg);
  scrollbar-width: none;
  -ms-overflow-style: none;
  z-index: 5;
}

.scroll-stack-scroller::-webkit-scrollbar {
  display: none;
}

.scroll-stack-inner {
  padding: 20px 12px 390px;
  /* Half of container height (780px) to stop scroll precisely at pinEnd */
  min-height: 100%;
  box-sizing: border-box;
}

.scroll-stack-card {
  transform-origin: top center;
  will-change: transform, filter, opacity;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  box-shadow: var(--shadow-md);
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-sizing: border-box;
  background-color: var(--bg-primary);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  position: relative;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.scroll-stack-card img {
  width: 100%;
  height: auto;
  display: block;
}

.scroll-stack-end {
  width: 100%;
  height: 1px;
}

@media (max-width: 768px) {
  .scroll-stack-scroller {
    height: 380px;
  }

  .scroll-stack-inner {
    padding: 16px 12px 190px !important;
    /* Half of mobile container height (380px) */
  }

  /* Horizontal scroll on comparison tables on mobile to prevent columns squishing */
  .comparison-table {
    min-width: 720px;
  }

  /* Stacking hero action buttons on mobile */
  .page-hero-actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .page-hero-actions li {
    display: block !important;
    width: 100%;
  }

  .page-hero-actions li a,
  .page-hero-actions li button,
  .page-hero-actions .btn {
    display: block !important;
    width: 100% !important;
    text-align: center;
    box-sizing: border-box;
  }
}

/* Button Arrow Styling & Hover Effect */
.btn-arrow {
  width: 14px;
  height: 14px;
  display: inline-block;
  margin-left: 6px;
  vertical-align: middle;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.btn:hover .btn-arrow,
a:hover .btn-arrow,
button:hover .btn-arrow {
  transform: translate(2px, -2px);
}

/* Pricing card checklist alignment */
.pricing-card ul li {
  align-items: flex-start !important;
}

.pricing-card ul li span {
  margin-top: 2px !important;
  line-height: 1 !important;
  display: inline-block;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.9);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.scroll-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
  background-color: var(--accent-navy);
  color: #ffffff;
  border-color: var(--accent-navy);
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px) scale(1.05);
}

.scroll-to-top svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.5;
  transition: transform 0.2s ease;
}

.scroll-to-top:hover svg {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 24px;
    right: 24px;
    width: 42px;
    height: 42px;
  }
}

/* Promo Card & Grid Component (Enterprise/Trial Promo Blocks) */
.promo-card {
  background: var(--accent-navy);
  color: #ffffff;
  border-radius: 0;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.promo-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .promo-card {
    padding: 32px 20px !important;
    /* Spacious but safe padding on mobile */
  }

  .promo-card-grid {
    grid-template-columns: 1fr !important;
    /* Force stack columns */
    gap: 32px !important;
  }

  .response-card {
    padding: 24px 20px !important;
    /* Fix padding on mobile for AI Assistant examples */
  }
}

/* Futuristic Glassmorphic Success Stories Styling */
#stories {
  background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.08) 0%, rgba(7, 17, 31, 0) 70%),
    linear-gradient(180deg, #07111f 0%, #0b1829 100%) !important;
  position: relative;
}

#stories .section-title {
  color: #ffffff;
}

#stories .section-copy {
  color: #cbd5e1;
}

#stories::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(16, 185, 129, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 185, 129, 0.02) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 1;
}

.story-card {
  background: rgba(7, 17, 31, 0.6) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(16, 185, 129, 0.15) !important;
  border-radius: 0 !important;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  z-index: 2;
}

.story-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.05), transparent);
  transform: skewX(-25deg);
  transition: 0.75s ease;
}

.story-card:hover::after {
  left: 150%;
}

.story-card:hover {
  transform: translateY(-8px);
  border-color: rgba(16, 185, 129, 0.45) !important;
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.15), inset 0 0 12px rgba(16, 185, 129, 0.05);
}

.story-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  width: 100%;
  background: transparent;
  padding: 0;
  text-align: left;
}

.story-card-logo-container {
  width: 46px;
  height: 46px;
  background-color: transparent;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 185, 129, 0.3);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.1);
  position: relative;
  top: 0;
  left: 0;
}

.story-card-logo {
  width: 100%;
  height: 100%;
  background: var(--accent-gradient);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}

.story-card-meta {
  flex-grow: 1;
  padding-right: 36px;
  margin-top: 0;
}

.story-card-meta h3 {
  font-size: 19px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2px;
  letter-spacing: 0.02em;
}

.story-card-industry {
  font-size: 10px;
  font-weight: 700;
  color: #2dd4bf;
  /* neon cyan */
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
}

.story-card-arrow-link {
  position: absolute;
  top: 8px;
  right: 0;
  color: #ffffff;
  opacity: 0.6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
}

.story-card-arrow-link:hover {
  color: #2dd4bf;
  opacity: 1;
  transform: scale(1.2) translate(2px, -2px);
  filter: drop-shadow(0 0 4px rgba(45, 212, 191, 0.5));
}

.story-card-arrow-link svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.5;
}

.story-card-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 20px;
}

.story-card-c-s {
  font-size: 13px;
  line-height: 1.5;
  color: #cbd5e1;
  /* soft gray */
  margin: 0;
}

.story-card-c-s strong {
  color: #38bdf8;
  /* neon sky blue for labels */
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-right: 6px;
}

.story-card-details p:nth-child(2) strong {
  color: #2dd4bf;
  /* neon teal for solution label */
}

.story-card-quote {
  position: relative;
  margin: 0;
  padding-top: 12px;
}

.story-quote-icon {
  color: rgba(45, 212, 191, 0.15);
  /* cyan quote mark */
  position: absolute;
  top: -16px;
  left: -8px;
  font-size: 50px;
  font-family: Georgia, serif;
  line-height: 1;
  font-weight: 800;
}

.story-card-quote p {
  font-size: 14.5px;
  line-height: 1.6;
  font-style: italic;
  color: #f1f5f9;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.story-card-quote cite {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  color: #94a3b8;
  /* muted cyan/gray */
  font-style: normal;
  position: relative;
  z-index: 2;
  letter-spacing: 0.02em;
}

/* SECURITY PAGE: RESPONSIBLE DISCLOSURE CARD */
.security-disclosure-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 0;
  box-shadow: var(--shadow-md);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.security-disclosure-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent-gradient);
}

.disclosure-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 24px;
}

.disclosure-icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(37, 99, 235, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.security-shield-icon {
  color: var(--accent-blue);
}

.disclosure-body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
}

@media (max-width: 768px) {
  .disclosure-body {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .security-disclosure-card {
    padding: 24px;
  }
}

.disclosure-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.action-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 24px;
  text-align: center;
  border-radius: 0;
}

.disclosure-guidelines {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.guidelines-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.guidelines-list li {
  display: flex;
  gap: 12px;
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  align-items: flex-start;
}

.disclosure-warning {
  display: flex;
  gap: 12px;
  background: rgba(220, 38, 38, 0.04);
  border-left: 3px solid var(--accent-red);
  padding: 16px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  align-items: flex-start;
  margin-top: 12px;
}