/* ═══ COLOR FLOW MAP (from design-spec.theme_context_map) ═══
 * index.html:
 *   nav        → transparent-on-dark (scrolled: solid #0C1523)
 *   hero       → DARK  (#0C1523)  | text: #F0EDE8
 *   signal-bar → DARK-ALT (#111E30) | text: #9DAFC4
 *   problem    → DARK  (#0C1523)  | text: #F0EDE8
 *   platform   → DARK-ALT (#111E30) | text: #F0EDE8
 *   how-it-works → LIGHT (#F2F0EB) | text: #0C1523
 *   use-cases  → LIGHT (#F2F0EB)  | text: #0C1523
 *   testimonials → DARK (#0C1523) | text: #F0EDE8
 *   trusted-by → DARK-ALT (#111E30) | text: #9DAFC4
 *   cta-close  → BRAND amber (#E07B39) | text: #0C1523
 *
 * platform/* / solutions/* / intelligence / about/index / security / contact / login/*:
 *   nav: transparent-on-dark → solid dark
 *
 * about/team / about/careers / customers/* / pricing / integrations / legal/*:
 *   nav: solid dark (forced — light-top pages)
 *   body bg must be light/white
 *
 * ADJACENT SAME-POLARITY NOTES:
 *   index: dark→dark-alt (hero→signal-bar): border-top #1E3148 separator
 *   index: dark-alt→dark (signal-bar→problem): seamless section transition
 *   index: testimonials(dark) → trusted-by(dark-alt): border separator
 * ═══════════════════════════════════════════════════════════════ */

/* ══ RESET & BASE ══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--fg-light-primary);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }
button { cursor: pointer; }
ul, ol { list-style: none; }

/* ══ CSS CUSTOM PROPERTIES ══════════════════════════════════════ */
:root {
  /* Brand palette */
  --bg-dark:         #0C1523;
  --bg-dark-alt:     #111E30;
  --bg-dark-card:    #152338;
  --bg-light:        #F2F0EB;
  --bg-white:        #FFFFFF;
  --bg-cream:        #EAE7E0;

  /* Foreground on dark */
  --fg-dark-primary:   #F0EDE8;
  --fg-dark-secondary: #9DAFC4;
  --fg-dark-tertiary:  #5D7A96;

  /* Foreground on light */
  --fg-light-primary:   #0C1523;
  --fg-light-secondary: #3A4F65;
  --fg-light-muted:     #6B7F94;

  /* Accents */
  --accent-amber:        #E07B39;
  --accent-amber-light:  #F0924E;
  --accent-amber-aa-light: #B85F1F;
  --accent-teal:         #00C9B1;
  --accent-teal-aa-light: #007D6F;
  --accent-red:          #E84545;

  /* Borders */
  --border-dark:   #1E3148;
  --border-light:  #D3CECC;
  --border-white:  #E5E2DC;

  /* Typography scale */
  --h1-size: clamp(2.5rem, 4vw, 3.75rem);
  --h2-size: clamp(1.875rem, 3vw, 2.5rem);
  --h3-size: clamp(1.25rem, 2vw, 1.5rem);
  --body-lg: 1.125rem;
  --body:    1rem;
  --small:   0.875rem;
  --mono:    0.75rem;

  /* Layout */
  --container-max: 1240px;
  --gap: 32px;
  --section-pad-desktop: 100px 0;
  --section-pad-mobile: 60px 0;
  --nav-height: 68px;
}

/* ══ TYPOGRAPHY ══════════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: var(--h1-size); }
h2 { font-size: var(--h2-size); }
h3 { font-size: var(--h3-size); }
h4 { font-size: 1.125rem; font-weight: 600; }
p { line-height: 1.7; }

.strx-mono {
  font-family: 'JetBrains Mono', 'Fira Code', Consolas, monospace;
  font-size: var(--mono);
  letter-spacing: 0.03em;
}

.strx-eyebrow {
  font-family: 'JetBrains Mono', Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Eyebrow colors scoped to containers */
.strx-section--dark .strx-eyebrow,
.strx-section--dark-alt .strx-eyebrow,
.strx-hero .strx-eyebrow,
.strx-footer .strx-eyebrow { color: var(--accent-amber); }

.strx-section--light .strx-eyebrow,
.strx-section--white .strx-eyebrow,
.strx-section--cream .strx-eyebrow { color: var(--accent-amber-aa-light); }

/* ══ LAYOUT HELPERS ══════════════════════════════════════════════ */
.strx-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.strx-section--dark {
  background: var(--bg-dark);
  padding: var(--section-pad-desktop);
}
.strx-section--dark-alt {
  background: var(--bg-dark-alt);
  padding: var(--section-pad-desktop);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.strx-section--light {
  background: var(--bg-light);
  padding: var(--section-pad-desktop);
}
.strx-section--white {
  background: var(--bg-white);
  padding: var(--section-pad-desktop);
}
.strx-section--cream {
  background: var(--bg-cream);
  padding: var(--section-pad-desktop);
}
.strx-section--brand {
  background: var(--accent-amber);
  padding: var(--section-pad-desktop);
}

/* Text colors per section */
.strx-section--dark h1, .strx-section--dark h2, .strx-section--dark h3,
.strx-section--dark h4, .strx-section--dark p, .strx-section--dark li {
  color: var(--fg-dark-primary);
}
.strx-section--dark-alt h1, .strx-section--dark-alt h2, .strx-section--dark-alt h3,
.strx-section--dark-alt h4, .strx-section--dark-alt p, .strx-section--dark-alt li {
  color: var(--fg-dark-primary);
}
.strx-section--light h1, .strx-section--light h2, .strx-section--light h3,
.strx-section--light h4, .strx-section--light p, .strx-section--light li {
  color: var(--fg-light-primary);
}
.strx-section--white h1, .strx-section--white h2, .strx-section--white h3,
.strx-section--white h4, .strx-section--white p, .strx-section--white li {
  color: var(--fg-light-primary);
}
.strx-section--cream h1, .strx-section--cream h2, .strx-section--cream h3,
.strx-section--cream h4, .strx-section--cream p, .strx-section--cream li {
  color: var(--fg-light-primary);
}
.strx-section--brand h1, .strx-section--brand h2, .strx-section--brand h3,
.strx-section--brand h4, .strx-section--brand p { color: var(--bg-dark); }

/* ══ BUTTONS ═════════════════════════════════════════════════════ */
.strx-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

/* Primary: amber bg, dark text */
.strx-btn--primary {
  background: var(--accent-amber);
  color: var(--bg-dark);
  border-color: var(--accent-amber);
}
.strx-btn--primary:hover {
  background: #C66525;
  border-color: #C66525;
  color: var(--bg-dark);
}

/* Outline on dark */
.strx-btn--outline-dark {
  background: transparent;
  color: var(--fg-dark-primary);
  border-color: var(--border-dark);
}
.strx-btn--outline-dark:hover {
  border-color: var(--fg-dark-secondary);
  color: var(--fg-dark-primary);
  background: rgba(255,255,255,0.04);
}

/* Outline on light */
.strx-btn--outline-light {
  background: transparent;
  color: var(--fg-light-primary);
  border-color: var(--border-light);
}
.strx-btn--outline-light:hover {
  border-color: var(--fg-light-secondary);
  background: rgba(0,0,0,0.04);
}

/* Teal variant (positive/health signal) */
.strx-btn--teal {
  background: var(--accent-teal);
  color: var(--bg-dark);
  border-color: var(--accent-teal);
}
.strx-btn--teal:hover {
  background: #00A898;
  border-color: #00A898;
}

/* Ghost on dark (text-like) */
.strx-btn--ghost-dark {
  background: transparent;
  color: var(--fg-dark-secondary);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.strx-btn--ghost-dark:hover { color: var(--fg-dark-primary); }

/* Signal (amber outline for alert context) */
.strx-btn--signal {
  background: transparent;
  color: var(--accent-amber);
  border-color: var(--accent-amber);
}
.strx-btn--signal:hover {
  background: var(--accent-amber);
  color: var(--bg-dark);
}

/* ══ NAV ══════════════════════════════════════════════════════════
 * Color Flow: dark-top pages → transparent @ scroll=0, solid bg-dark @ scroll
 * light-top pages → forced solid bg-dark always
 * Nav links: always white/light because nav bg is always dark (either transparent-over-dark or solid-dark)
 ═════════════════════════════════════════════════════════════════ */
.strx-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  background: transparent;
}

/* dark-top: transparent at top */
body.strx-page--dark-top .strx-nav { background: transparent; }

/* light-top: always solid dark — nav bg must not be transparent over light content */
body.strx-page--light-top .strx-nav {
  background: var(--bg-dark);
  box-shadow: 0 1px 0 var(--border-dark);
}

/* scrolled state (both themes switch to solid) */
.strx-nav--scrolled {
  background: var(--bg-dark) !important;
  box-shadow: 0 1px 0 var(--border-dark) !important;
}

/* dark-top page body bg must match hero so transparent nav shows dark correctly */
body.strx-page--dark-top { background: var(--bg-dark); }
body.strx-page--light-top { background: var(--bg-white); }

.strx-nav__inner {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  gap: 32px;
}

.strx-nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.strx-nav__logo img {
  height: 32px;
  width: auto;
  max-width: 180px;
}

.strx-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

/* Nav links: always light (dark bg context in both states) */
.strx-nav__link {
  color: var(--fg-dark-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  transition: color 0.2s;
  background: transparent;
  border: none;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  gap: 4px;
}
.strx-nav__link:hover { color: var(--fg-dark-primary); }
.strx-nav__link i { font-size: 0.75rem; transition: transform 0.2s; }

.strx-nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.strx-nav__signin {
  color: var(--fg-dark-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.strx-nav__signin:hover { color: var(--fg-dark-primary); }

/* Dropdown */
.strx-nav__dropdown {
  position: relative;
}
.strx-nav__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-dark-alt);
  border: 1px solid var(--border-dark);
  border-radius: 6px;
  min-width: 220px;
  padding: 8px 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  z-index: 100;
}
.strx-nav__dropdown:hover .strx-nav__dropdown-menu,
.strx-nav__dropdown-menu:hover { display: block; }

.strx-nav__dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--fg-dark-secondary);
  font-size: 0.875rem;
  transition: color 0.15s, background 0.15s;
}
.strx-nav__dropdown-menu a:hover {
  color: var(--fg-dark-primary);
  background: rgba(255,255,255,0.05);
}

/* Mobile hamburger */
.strx-nav__hamburger {
  display: none;
  background: transparent;
  border: none;
  color: var(--fg-dark-primary);
  font-size: 1.25rem;
  padding: 8px;
  margin-left: auto;
}

.strx-mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-dark);
  z-index: 999;
  overflow-y: auto;
  padding: 24px;
}
.strx-mobile-menu.is-open { display: block; }
.strx-mobile-menu a {
  display: block;
  padding: 14px 0;
  color: var(--fg-dark-primary);
  font-size: 1.125rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border-dark);
}
.strx-mobile-menu__section {
  padding: 12px 0 0;
  color: var(--fg-dark-tertiary);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ══ FOOTER ══════════════════════════════════════════════════════ */
.strx-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
  padding: 64px 0 40px;
}

.strx-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--gap);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.strx-footer__brand { grid-column: 1; }
.strx-footer__logo img {
  height: 30px;
  width: auto;
  max-width: 160px;
  margin-bottom: 16px;
}
.strx-footer__tagline {
  color: var(--fg-dark-secondary);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 20px;
  max-width: 220px;
}
.strx-footer__social {
  display: flex;
  gap: 12px;
}
.strx-footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: var(--bg-dark-alt);
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-dark-secondary);
  font-size: 0.9rem;
  transition: color 0.2s, border-color 0.2s;
}
.strx-footer__social a:hover {
  color: var(--fg-dark-primary);
  border-color: var(--fg-dark-tertiary);
}

.strx-footer__col-title {
  color: var(--fg-dark-primary);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.strx-footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.strx-footer__col ul li a {
  color: var(--fg-dark-secondary);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.strx-footer__col ul li a:hover { color: var(--fg-dark-primary); }

.strx-footer__bottom {
  max-width: var(--container-max);
  margin: 40px auto 0;
  padding: 24px clamp(20px, 4vw, 48px) 0;
  border-top: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.strx-footer__copyright {
  color: var(--fg-dark-tertiary);
  font-size: 0.8125rem;
}
.strx-footer__address {
  color: var(--fg-dark-tertiary);
  font-size: 0.8125rem;
}
.strx-footer__legal-links {
  display: flex;
  gap: 20px;
}
.strx-footer__legal-links a {
  color: var(--fg-dark-tertiary);
  font-size: 0.8125rem;
  transition: color 0.2s;
}
.strx-footer__legal-links a:hover { color: var(--fg-dark-secondary); }

/* ══ SECTION HEADER UTILITY ══════════════════════════════════════ */
.strx-section-header {
  margin-bottom: 56px;
}
.strx-section-header--center { text-align: center; }
.strx-section-header .strx-eyebrow { margin-bottom: 12px; display: block; }
.strx-section-header h2 { margin-bottom: 16px; }
.strx-section-header p {
  max-width: 640px;
  font-size: var(--body-lg);
}
.strx-section-header--center p { margin: 0 auto; }

/* ══ CARD PATTERN ════════════════════════════════════════════════ */
.strx-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 28px;
}
.strx-card h3, .strx-card h4 { color: var(--fg-dark-primary); }
.strx-card p, .strx-card li { color: var(--fg-dark-secondary); }

.strx-card--light {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 28px;
}
.strx-card--light h3, .strx-card--light h4 { color: var(--fg-light-primary); }
.strx-card--light p { color: var(--fg-light-secondary); }

/* ══ SIGNAL / ALERT CARD ══════════════════════════════════════════ */
.strx-signal-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-left: 3px solid var(--accent-amber);
  border-radius: 0 6px 6px 0;
  padding: 16px 20px;
}
.strx-signal-card--critical { border-left-color: var(--accent-red); }
.strx-signal-card--healthy  { border-left-color: var(--accent-teal); }
.strx-signal-card__label {
  font-family: 'JetBrains Mono', Consolas, monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-amber);
  margin-bottom: 6px;
}
.strx-signal-card--critical .strx-signal-card__label { color: var(--accent-red); }
.strx-signal-card--healthy .strx-signal-card__label { color: var(--accent-teal); }
.strx-signal-card__title { color: var(--fg-dark-primary); font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; }
.strx-signal-card__meta { color: var(--fg-dark-tertiary); font-size: 0.8rem; }

/* ══ HERO BASE ════════════════════════════════════════════════════ */
.strx-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-dark);
  overflow: hidden;
  padding-top: var(--nav-height);
}
.strx-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.strx-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.strx-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 80px clamp(20px, 4vw, 48px);
  width: 100%;
}

/* ══ SUB-PAGE HERO ════════════════════════════════════════════════ */
.strx-subhero {
  background: var(--bg-dark);
  padding: calc(var(--nav-height) + 64px) 0 80px;
  position: relative;
  overflow: hidden;
}
.strx-subhero--light {
  background: var(--bg-light);
  padding: calc(var(--nav-height) + 64px) 0 80px;
}
.strx-subhero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.strx-subhero h1 { color: var(--fg-dark-primary); }
.strx-subhero p  { color: var(--fg-dark-secondary); }
.strx-subhero--light h1 { color: var(--fg-light-primary); }
.strx-subhero--light p  { color: var(--fg-light-secondary); }

/* Sub-hero split layout */
.strx-subhero__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.strx-subhero__visual {
  position: relative;
}

/* ══ GRID PATTERNS ════════════════════════════════════════════════ */
.strx-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.strx-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}
.strx-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

/* ══ INLINE SVG NETWORK DECORATION ══════════════════════════════ */
.strx-network-decoration {
  position: absolute;
  opacity: 0.06;
  pointer-events: none;
}

/* ══ DATA LABELS (metric callouts) ══════════════════════════════ */
.strx-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.strx-metric__value {
  font-family: 'JetBrains Mono', Consolas, monospace;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent-amber);
}
.strx-metric__label {
  font-size: 0.875rem;
  color: var(--fg-dark-secondary);
}
.strx-section--light .strx-metric__value { color: var(--accent-amber-aa-light); }
.strx-section--light .strx-metric__label { color: var(--fg-light-secondary); }

/* ══ TAG / BADGE ══════════════════════════════════════════════════ */
.strx-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.strx-tag--amber { background: rgba(224,123,57,0.15); color: var(--accent-amber); }
.strx-tag--teal  { background: rgba(0,201,177,0.12); color: var(--accent-teal); }
.strx-tag--red   { background: rgba(232,69,69,0.15); color: var(--accent-red); }
.strx-tag--slate { background: rgba(93,122,150,0.2); color: var(--fg-dark-secondary); }

/* Tags on light bg */
.strx-section--light .strx-tag--amber { background: rgba(184,95,31,0.1); color: var(--accent-amber-aa-light); }
.strx-section--light .strx-tag--teal  { background: rgba(0,125,111,0.1); color: var(--accent-teal-aa-light); }

/* ══ RISK TABLE ═══════════════════════════════════════════════════ */
.strx-risk-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.strx-risk-table th {
  text-align: left;
  padding: 10px 16px;
  color: var(--fg-dark-tertiary);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-dark);
}
.strx-risk-table td {
  padding: 12px 16px;
  color: var(--fg-dark-secondary);
  border-bottom: 1px solid rgba(30,49,72,0.5);
}
.strx-risk-table tr:hover td { background: rgba(255,255,255,0.02); }

/* Risk score cell */
.strx-risk-score {
  font-family: 'JetBrains Mono', Consolas, monospace;
  font-weight: 700;
  font-size: 0.875rem;
}
.strx-risk-score--high   { color: var(--accent-red); }
.strx-risk-score--medium { color: var(--accent-amber); }
.strx-risk-score--low    { color: var(--accent-teal); }

/* ══ FORM ELEMENTS ════════════════════════════════════════════════ */
.strx-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.strx-form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-dark-secondary);
}
.strx-section--light .strx-form-label { color: var(--fg-light-secondary); }
.strx-form-input,
.strx-form-select,
.strx-form-textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 16px;
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  color: var(--fg-dark-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  transition: border-color 0.2s;
}
.strx-form-input:focus,
.strx-form-select:focus,
.strx-form-textarea:focus {
  outline: none;
  border-color: var(--accent-amber);
}
.strx-form-input::placeholder { color: var(--fg-dark-tertiary); }
.strx-form-textarea { min-height: 120px; resize: vertical; }
.strx-form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235D7A96' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

/* Light-theme forms */
.strx-section--light .strx-form-input,
.strx-section--light .strx-form-select,
.strx-section--light .strx-form-textarea {
  background: var(--bg-white);
  border-color: var(--border-light);
  color: var(--fg-light-primary);
}
.strx-section--light .strx-form-input::placeholder { color: var(--fg-light-muted); }
.strx-section--light .strx-form-input:focus,
.strx-section--light .strx-form-select:focus,
.strx-section--light .strx-form-textarea:focus {
  border-color: var(--accent-amber-aa-light);
}

/* ══ COOKIE BANNER ════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: var(--bg-dark-alt);
  border-top: 1px solid var(--border-dark);
  padding: 16px 0;
}
.cookie-banner__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  color: var(--fg-dark-secondary);
  font-size: 0.875rem;
  flex: 1;
  min-width: 240px;
}
.cookie-banner__text a { color: var(--accent-amber); text-decoration: underline; }
.cookie-banner__actions { flex-shrink: 0; }
.cookie-banner__btn {
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.cookie-banner__btn--primary {
  background: var(--accent-amber);
  color: var(--bg-dark);
  border: 2px solid var(--accent-amber);
}
.cookie-banner__btn--primary:hover {
  background: #C66525;
  border-color: #C66525;
}

/* ══ BLOG CARD ════════════════════════════════════════════════════ */
.strx-blog-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.strx-blog-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.strx-blog-card__img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.strx-blog-card__body { padding: 20px 24px 24px; }
.strx-blog-card__cat {
  display: inline-block;
  margin-bottom: 10px;
}
.strx-blog-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--fg-light-primary);
  line-height: 1.35;
  margin-bottom: 8px;
}
.strx-blog-card__summary {
  color: var(--fg-light-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.strx-blog-card__meta {
  color: var(--fg-light-muted);
  font-size: 0.8rem;
  font-family: 'JetBrains Mono', Consolas, monospace;
}
.strx-blog-card__link {
  color: var(--accent-amber-aa-light);
  font-size: 0.875rem;
  font-weight: 600;
}
.strx-blog-card__link:hover { text-decoration: underline; }

/* Blog card on dark bg */
.strx-section--dark .strx-blog-card,
.strx-section--dark-alt .strx-blog-card {
  background: var(--bg-dark-card);
  border-color: var(--border-dark);
}
.strx-section--dark .strx-blog-card__title,
.strx-section--dark-alt .strx-blog-card__title { color: var(--fg-dark-primary); }
.strx-section--dark .strx-blog-card__summary,
.strx-section--dark-alt .strx-blog-card__summary { color: var(--fg-dark-secondary); }
.strx-section--dark .strx-blog-card__meta,
.strx-section--dark-alt .strx-blog-card__meta { color: var(--fg-dark-tertiary); }

/* ══ LEGAL CONTENT ════════════════════════════════════════════════ */
.strx-legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 48px) clamp(20px, 4vw, 48px) 80px;
}
.strx-legal-content h1 { color: var(--fg-light-primary); margin-bottom: 8px; font-size: 2rem; }
.strx-legal-content h2 { color: var(--fg-light-primary); font-size: 1.25rem; margin: 32px 0 12px; }
.strx-legal-content h3 { color: var(--fg-light-secondary); font-size: 1rem; font-weight: 600; margin: 20px 0 8px; }
.strx-legal-content p  { color: var(--fg-light-secondary); margin-bottom: 16px; line-height: 1.75; }
.strx-legal-content ul { margin-bottom: 16px; padding-left: 20px; list-style: disc; }
.strx-legal-content ul li { color: var(--fg-light-secondary); margin-bottom: 8px; line-height: 1.65; }
.strx-legal-content a  { color: var(--accent-amber-aa-light); text-decoration: underline; }
.strx-legal-content address { font-style: normal; color: var(--fg-light-secondary); line-height: 1.8; }
.legal-meta { color: var(--fg-light-muted); font-size: 0.875rem; margin-bottom: 4px; }
.legal-header { margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--border-light); }
.legal-article section { padding: 0; margin-bottom: 8px; }

/* Legal table */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 0.875rem;
}
.legal-table th {
  text-align: left;
  padding: 10px 12px;
  background: var(--bg-light);
  color: var(--fg-light-primary);
  font-weight: 600;
  border-bottom: 2px solid var(--border-light);
}
.legal-table td {
  padding: 10px 12px;
  color: var(--fg-light-secondary);
  border-bottom: 1px solid var(--border-white);
}

/* ══ STEP PROCESS ════════════════════════════════════════════════ */
.strx-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.strx-step__num {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(224,123,57,0.15);
  border: 1px solid rgba(224,123,57,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', Consolas, monospace;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent-amber);
}
.strx-step__content h3 { margin-bottom: 6px; }
.strx-step__content p { margin: 0; }

/* Step on light bg */
.strx-section--light .strx-step__num {
  background: rgba(184,95,31,0.1);
  border-color: rgba(184,95,31,0.3);
  color: var(--accent-amber-aa-light);
}
.strx-section--light .strx-step__content h3 { color: var(--fg-light-primary); }
.strx-section--light .strx-step__content p  { color: var(--fg-light-secondary); }

/* ══ TESTIMONIAL CARD ════════════════════════════════════════════ */
.strx-testimonial {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 32px;
}
.strx-testimonial__quote {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--fg-dark-primary);
  margin-bottom: 24px;
  font-style: italic;
}
.strx-testimonial__quote::before { content: '\201C'; color: var(--accent-amber); font-size: 1.5em; line-height: 0; vertical-align: -0.4em; margin-right: 2px; }
.strx-testimonial__attribution { color: var(--fg-dark-tertiary); font-size: 0.875rem; }
.strx-testimonial__role { color: var(--accent-amber); font-size: 0.8rem; font-weight: 600; }

/* ══ PRICING CARD ═════════════════════════════════════════════════ */
.strx-pricing-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 36px;
}
.strx-pricing-card--featured {
  background: var(--bg-dark);
  border: 2px solid var(--accent-amber);
}
.strx-pricing-card--featured h3 { color: var(--fg-dark-primary); }
.strx-pricing-card--featured p  { color: var(--fg-dark-secondary); }
.strx-pricing-card--featured li { color: var(--fg-dark-secondary); }
.strx-pricing-card__price {
  font-family: 'JetBrains Mono', Consolas, monospace;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--fg-light-primary);
  line-height: 1;
  margin: 16px 0 4px;
}
.strx-pricing-card--featured .strx-pricing-card__price { color: var(--accent-amber); }
.strx-pricing-card__period {
  font-size: 0.875rem;
  color: var(--fg-light-muted);
  margin-bottom: 20px;
}
.strx-pricing-card--featured .strx-pricing-card__period { color: var(--fg-dark-secondary); }
.strx-pricing-card__features {
  margin-bottom: 28px;
}
.strx-pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid var(--border-white);
  color: var(--fg-light-secondary);
  font-size: 0.9rem;
}
.strx-pricing-card--featured .strx-pricing-card__features li {
  color: var(--fg-dark-secondary);
  border-bottom-color: var(--border-dark);
}
.strx-pricing-card__features li i {
  color: var(--accent-teal-aa-light);
  margin-top: 2px;
  flex-shrink: 0;
}
.strx-pricing-card--featured .strx-pricing-card__features li i { color: var(--accent-teal); }
.strx-pricing-card__name { font-size: 1.125rem; font-weight: 700; color: var(--fg-light-primary); }
.strx-pricing-card--featured .strx-pricing-card__name { color: var(--fg-dark-primary); }
.strx-pricing-card__desc { color: var(--fg-light-muted); font-size: 0.875rem; }

/* ══ FAQ ══════════════════════════════════════════════════════════ */
.strx-faq-item {
  border-bottom: 1px solid var(--border-light);
}
.strx-faq__question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg-light-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Inter', sans-serif;
}
.strx-faq__question:hover { color: var(--accent-amber-aa-light); }
.strx-faq__question i { color: var(--fg-light-muted); font-size: 0.875rem; transition: transform 0.2s; flex-shrink: 0; }
.strx-faq-item.is-open .strx-faq__question i { transform: rotate(180deg); }
.strx-faq__answer {
  display: none;
  padding-bottom: 20px;
  color: var(--fg-light-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
}
.strx-faq-item.is-open .strx-faq__answer { display: block; }

/* ══ TEAM CARD ════════════════════════════════════════════════════ */
.strx-team-card {
  text-align: center;
}
.strx-team-card__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 2px solid var(--border-light);
  display: block;
}
.strx-team-card__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--bg-dark-alt);
  border: 2px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-amber);
  margin: 0 auto 16px;
  font-family: 'Inter', sans-serif;
}
.strx-team-card__name { font-size: 1.0625rem; font-weight: 700; color: var(--fg-light-primary); margin-bottom: 4px; }
.strx-team-card__role { color: var(--fg-light-muted); font-size: 0.875rem; }

/* ══ AUTH PAGES ══════════════════════════════════════════════════ */
/* Auth layout, panel, and modifier classes are defined in components.css.
   Only visual overlay helper lives here to avoid duplicate declarations. */
.strx-auth-visual {
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
}
.strx-auth-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.strx-auth-visual__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, var(--bg-dark));
}

/* ══ CONTACT PAGE ════════════════════════════════════════════════ */
.strx-contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
}
.strx-contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.strx-contact-info__icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: rgba(224,123,57,0.12);
  border: 1px solid rgba(224,123,57,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-amber);
  flex-shrink: 0;
}
.strx-contact-info__label { color: var(--fg-dark-tertiary); font-size: 0.8rem; margin-bottom: 4px; }
.strx-contact-info__value { color: var(--fg-dark-primary); font-size: 0.9375rem; }
.strx-contact-info__value a { color: var(--fg-dark-primary); }
.strx-contact-info__value a:hover { color: var(--accent-amber); }

/* ══ SIGNAL TICKER ════════════════════════════════════════════════ */
.strx-ticker {
  overflow: hidden;
  padding: 12px 0;
  position: relative;
}
.strx-ticker::before,
.strx-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 1;
}
.strx-ticker::before { left: 0; background: linear-gradient(to right, var(--bg-dark-alt), transparent); }
.strx-ticker::after  { right: 0; background: linear-gradient(to left, var(--bg-dark-alt), transparent); }
.strx-ticker__track {
  display: flex;
  gap: 40px;
  animation: tickerScroll 40s linear infinite;
  width: max-content;
}
.strx-ticker__item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  padding: 6px 16px;
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
}
.strx-ticker__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
.strx-ticker__dot--amber { background: var(--accent-amber); box-shadow: 0 0 6px var(--accent-amber); }
.strx-ticker__dot--red   { background: var(--accent-red);   box-shadow: 0 0 6px var(--accent-red); }
.strx-ticker__dot--teal  { background: var(--accent-teal);  box-shadow: 0 0 6px var(--accent-teal); }
.strx-ticker__text { color: var(--fg-dark-secondary); font-size: 0.8125rem; }
.strx-ticker__label {
  font-family: 'JetBrains Mono', Consolas, monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-dark-tertiary);
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ══ FADE-IN ANIMATION (with failsafe) ══════════════════════════ */
.strx-fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.strx-fade-in.is-visible {
  opacity: 1;
  transform: none;
}

/* ══ RESPONSIVE ══════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .strx-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .strx-footer__inner { grid-template-columns: 1fr 1fr 1fr; }
  .strx-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --section-pad-desktop: 60px 0; }
  .strx-grid-3 { grid-template-columns: 1fr; }
  .strx-grid-2 { grid-template-columns: 1fr; }
  .strx-grid-4 { grid-template-columns: 1fr; }
  .strx-subhero__split { grid-template-columns: 1fr; gap: 40px; }
  .strx-subhero__visual { display: none; }

  .strx-nav__links,
  .strx-nav__actions { display: none; }
  .strx-nav__hamburger { display: flex; }
  .strx-nav__inner { gap: 0; }

  .strx-footer__inner { grid-template-columns: 1fr 1fr; }
  .strx-footer__brand { grid-column: 1 / -1; }
  .strx-footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  .strx-auth-layout { grid-template-columns: 1fr; }
  .strx-auth-visual { display: none; }

  .strx-contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .strx-pricing-card { padding: 24px; }
  .strx-hero__inner { padding: 60px clamp(20px, 4vw, 48px); }
}

@media (max-width: 480px) {
  .strx-footer__inner { grid-template-columns: 1fr; }
  .strx-footer__legal-links { flex-direction: column; gap: 8px; }
}
