/* =============================================
   SECURE IT TECHNOLOGIES — style.css
   Font: DM Sans (matches logo wordmark)
   Palette: Black (#0a0a0a) / White / Brand Red (#d71a2a)
   ============================================= */

/* ---- RESET & BASE ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* Skip-to-content link — visible only on keyboard focus */
.skip-link {
  position: absolute;
  top: -48px;
  left: 8px;
  z-index: 9999;
  background: var(--red);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 8px;
  font: 600 13px/1 'DM Sans', system-ui, sans-serif;
  text-decoration: none;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 8px;
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

/* Consistent focus ring on interactive elements (keyboard only) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.btn:focus-visible,
.apply-btn:focus-visible,
.service-link:focus-visible,
.soc-dot:focus-visible {
  outline: 2px solid var(--red-lt);
  outline-offset: 3px;
  border-radius: 4px;
}

:root {
  --black:       #0a0a0a;
  --black-2:     #141414;
  --black-3:     #1c1c1c;
  --black-4:     #262626;
  --red:         #d71a2a;
  --red-lt:      #ff2e3e;
  --red-dk:      #a8121f;
  --white:       #ffffff;
  --light:       #fafafa;
  --muted:       #a8a8a8;
  --muted-dark:  #8a8a8a;
  --text:        #d4d4d4;
  --border:      rgba(255, 255, 255, 0.08);
  --card:        rgba(255, 255, 255, 0.03);
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   18px;
  --trans:       0.25s ease;
  --font-head:   'DM Sans', 'Segoe UI', system-ui, sans-serif;
  --font-body:   'DM Sans', 'Segoe UI', system-ui, sans-serif;
  --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.5);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  font-size: 15px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 96px 0; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.section-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--red-lt);          /* #FF2E3E — 5.39:1 on #0a0a0a, WCAG AA pass */
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: var(--font-body);
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 14px;
}

.section-sub {
  color: var(--muted);
  font-size: 15px;
  max-width: 560px;
  line-height: 1.75;
}

.section-head { margin-bottom: 56px; }

.accent { color: var(--red); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  border: none;
  transition: all var(--trans);
  text-decoration: none;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
}
.btn--primary:hover { background: var(--red-lt); transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}
.btn--ghost:hover {
  border-color: var(--red-lt);
  color: var(--red-lt);          /* hover accent at AA contrast */
  transform: translateY(-2px);
}

/* =============================================
   HEADER
   ============================================= */
#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background var(--trans), box-shadow var(--trans);
}

#header.scrolled {
  background: rgba(0, 0, 0, 0.98);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  transition: opacity var(--trans);
}
.logo:hover { opacity: 0.88; }

.logo-img {
  height: 56px;
  width: auto;
  display: block;
}

/* Footer logo — slightly larger */
.logo-img--footer {
  height: 64px;
}

.logo strong { color: var(--red); font-weight: 800; }
.logo-icon { width: 38px; height: 38px; flex-shrink: 0; }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: color var(--trans);
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transition: width var(--trans);
}
.nav a:hover { color: var(--white); }
.nav a:hover::after { width: 100%; }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  text-transform: uppercase;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red-lt) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--black) 0%, #1a0708 60%, var(--black) 100%);
}

/* Canvas network graph — drawn by script.js */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.85;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.hero-glow--1 {
  width: 700px; height: 700px;
  top: -200px; right: -150px;
  background: radial-gradient(circle, rgba(215,26,42,0.14) 0%, transparent 70%);
  animation: glow-drift 14s ease-in-out infinite;
}
@keyframes glow-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(-40px, 30px) scale(1.08); }
  66%      { transform: translate(30px, -20px) scale(0.94); }
}
.hero-glow--2 {
  width: 500px; height: 500px;
  bottom: -100px; left: 5%;
  background: radial-gradient(circle, rgba(215,26,42,0.18) 0%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}

/* Hero left */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(215, 26, 42, 0.1);
  border: 1px solid rgba(215, 26, 42, 0.3);
  padding: 7px 18px;
  border-radius: 24px;
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-family: var(--font-body);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.8); } }

.hero-title {
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
  position: relative;
  display: block;                   /* block so width is stable while typing */
  min-height: 4.4em;                /* reserve the full 4-line height up-front */
  visibility: hidden;               /* hide initial SSR text so no FOUC flash */
  text-shadow: 0 0 42px rgba(215, 26, 42, 0.12);
}
.hero-title.hero-title--ready { visibility: visible; }
@media (prefers-reduced-motion: reduce) {
  .hero-title { visibility: visible; min-height: 0; }
}

/* Blinking caret while the title types (and after, until user scrolls) */
.hero-title.typing::after,
.hero-title.done::after {
  content: '_';
  color: var(--red);
  margin-left: 6px;
  font-weight: 800;
  animation: caret-blink 0.9s steps(2, end) infinite;
  text-shadow: 0 0 10px rgba(215, 26, 42, 0.6);
}
@keyframes caret-blink {
  0%, 49%   { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.hero-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 490px;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* SOC Card (hero right) */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1400px;
  transform-style: preserve-3d;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.soc-card {
  position: relative;
  background: linear-gradient(180deg, rgba(20,20,20,0.95), rgba(10,10,10,0.95));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 380px;
  height: 480px;              /* locked — prevents height jumping during feed/triage cycles */
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(215, 26, 42, 0.08);
  animation: float 6s ease-in-out infinite;
  overflow: hidden;
}

/* ===== Slider (SOC → TI → Compliance) ===== */
.soc-slider {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.soc-slide {
  width: 33.333%;
  flex-shrink: 0;
  height: 100%;
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

/* Tiny pagination dots */
.soc-pagination {
  position: absolute;
  bottom: 10px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 3;
  pointer-events: auto;
}
.soc-dot {
  width: 16px;
  height: 3px;
  border: 0;
  border-radius: 2px;
  background: rgba(255,255,255,0.18);
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, width 0.3s, box-shadow 0.3s;
}
.soc-dot:hover { background: rgba(255,255,255,0.4); }
.soc-dot--active {
  background: var(--red);
  width: 28px;
  box-shadow: 0 0 8px rgba(215,26,42,0.6);
}
.soc-dot--active:hover { background: var(--red-lt); }

/* Horizontal scanning line that sweeps over the card */
.soc-card__scanline {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(215, 26, 42, 0.08) 48%,
    rgba(215, 26, 42, 0.18) 50%,
    rgba(215, 26, 42, 0.08) 52%,
    transparent 100%
  );
  transform: translateY(-100%);
  animation: scan-sweep 4.5s ease-in-out infinite;
}
@keyframes scan-sweep {
  0%   { transform: translateY(-100%); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(100%); opacity: 0; }
}

/* Keep card content above the animated scan overlay */
.soc-card > *:not(.soc-card__scanline) {
  position: relative;
  z-index: 1;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.soc-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.soc-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(215,26,42,0.12);
  border: 1px solid rgba(215,26,42,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.soc-icon svg { width: 22px; height: 22px; }

.soc-title { font-size: 14px; font-weight: 700; font-family: var(--font-head); }
.soc-subtitle { font-size: 11px; color: var(--muted); margin-top: 2px; }

.soc-status {
  margin-left: auto;
  font-size: 10px;
  font-weight: 800;
  color: #4ade80;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.25);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
  animation: blink-status 3s ease-in-out infinite;
}
/* DEMO variant — honestly labels the illustrative preview */
.soc-status--demo {
  color: var(--muted);
  background: rgba(168,168,168,0.08);
  border-color: rgba(168,168,168,0.3);
  animation: none;
}
@keyframes blink-status { 0%, 80%, 100% { opacity: 1; } 40% { opacity: 0.5; } }

.soc-meter-wrap { }
.soc-meter-label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 8px;
}
.meter-status { color: #4ade80; font-weight: 700; }
.meter-status--amber { color: #fbbf24; }
.meter-status--green { color: #4ade80; }

.soc-meter {
  height: 6px;
  background: rgba(255,255,255,0.07);
  border-radius: 3px;
  overflow: hidden;
}
.soc-meter-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--red-lt));
  border-radius: 3px;
  width: 22%;
  animation: threat-anim 5s ease-in-out infinite;
}
@keyframes threat-anim { 0%, 100% { width: 15%; } 50% { width: 38%; } }

.soc-meter-fill--amber {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
  animation: none;
  width: 58%;
}
.soc-meter-fill--green {
  background: linear-gradient(90deg, #22c55e, #4ade80);
  animation: none;
  width: 99.2%;
}

/* ===== Sparkline ===== */
.soc-spark { }
.soc-spark__label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 6px;
}
.soc-spark__val {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  color: var(--red);
  font-weight: 700;
  font-size: 12px;
}
.soc-spark__svg {
  width: 100%;
  height: 36px;
  display: block;
  overflow: visible;
}
.soc-spark__line {
  filter: drop-shadow(0 0 3px rgba(215, 26, 42, 0.45));
  animation: spark-scroll 6s linear infinite;
}
.soc-spark__fill {
  animation: spark-scroll 6s linear infinite;
}
@keyframes spark-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-96px); }
}

/* ===== AI Triage panel ===== */
.soc-triage {
  padding: 12px 14px 11px;
  background: linear-gradient(180deg, rgba(215,26,42,0.06), rgba(215,26,42,0.02));
  border: 1px solid rgba(215,26,42,0.22);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
}
.soc-triage::before {
  content: '';
  position: absolute;
  top: 0; left: -30%; right: -30%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215,26,42,0.6), transparent);
  animation: triage-glow 3.2s ease-in-out infinite;
}
@keyframes triage-glow {
  0%,100% { transform: translateX(-30%); opacity: 0.3; }
  50%     { transform: translateX(30%);  opacity: 1; }
}
.soc-triage__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
}
.soc-triage__brain {
  color: var(--red);
  filter: drop-shadow(0 0 6px rgba(215,26,42,0.7));
  animation: brain-pulse 1.8s ease-in-out infinite;
  display: inline-flex;
}
@keyframes brain-pulse {
  0%,100% { opacity: 0.8; transform: scale(1); }
  50%     { opacity: 1;   transform: scale(1.12); }
}
.soc-triage__title {
  font-size: 12px;
  color: var(--text);
  font-weight: 700;
  flex: 1;
  letter-spacing: 0.2px;
}
.soc-triage__state {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 2px 7px;
  border-radius: 10px;
  background: rgba(251,191,36,0.12);
  color: #fbbf24;
  border: 1px solid rgba(251,191,36,0.3);
  transition: all 0.3s;
}
.soc-triage__state--block { background: rgba(215,26,42,0.15); color: var(--red); border-color: rgba(215,26,42,0.35); }
.soc-triage__state--alert { background: rgba(251,191,36,0.15); color: #fbbf24; border-color: rgba(251,191,36,0.3); }
.soc-triage__state--allow { background: rgba(74,222,128,0.15); color: #4ade80; border-color: rgba(74,222,128,0.3); }

.soc-triage__event {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.45;
  min-height: 28px;
  opacity: 0.95;
}

.soc-triage__bar {
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 9px;
}
.soc-triage__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--red), #ff7a3d, var(--red));
  background-size: 200% 100%;
  animation: fill-shimmer 1.4s linear infinite;
  box-shadow: 0 0 10px rgba(215,26,42,0.7);
}
@keyframes fill-shimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.soc-triage__verdict {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  flex-wrap: wrap;
}
.soc-triage__verdict-label { color: var(--muted); }
.soc-triage__verdict-value {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 0.6px;
  transition: color 0.3s, text-shadow 0.3s;
}
.soc-triage__verdict-value--block { color: var(--red); text-shadow: 0 0 10px rgba(215,26,42,0.6); }
.soc-triage__verdict-value--alert { color: #fbbf24; text-shadow: 0 0 8px rgba(251,191,36,0.45); }
.soc-triage__verdict-value--allow { color: #4ade80; text-shadow: 0 0 8px rgba(74,222,128,0.45); }
.soc-triage__verdict-conf {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  color: var(--muted);
  font-size: 10px;
}
.soc-triage__auto {
  margin-left: auto;
  font-size: 9px;
  color: #4ade80;
  letter-spacing: 0.6px;
  opacity: 0;
  transition: opacity 0.3s;
  text-transform: uppercase;
  font-weight: 700;
}
.soc-triage__auto.visible { opacity: 1; }

/* ===== Event feed ===== */
.soc-feed {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}
.soc-feed__head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.soc-feed__blip {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 6px rgba(215, 26, 42, 0.8);
  animation: ai-pulse 1.2s ease-in-out infinite;
  margin-left: auto;
}
.soc-feed__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  height: 88px;          /* fixed — prevents feed height jumping */
  overflow: hidden;
}
.soc-feed__item {
  display: flex;
  gap: 8px;
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  line-height: 1.45;
  color: var(--text);
  opacity: 0;
  transform: translateY(-4px);
  animation: feed-in 0.4s ease forwards;
}
@keyframes feed-in {
  to { opacity: 1; transform: translateY(0); }
}
.soc-feed__item--fade {
  animation: feed-out 0.4s ease forwards;
}
@keyframes feed-out {
  to { opacity: 0; transform: translateY(4px); }
}
.soc-feed__tag {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 9px;
  padding: 1px 6px;
  border-radius: 3px;
  letter-spacing: 0.5px;
  align-self: flex-start;
  margin-top: 1px;
}
.soc-feed__tag--ai   { background: rgba(215, 26, 42, 0.15); color: var(--red); }
.soc-feed__tag--auto { background: rgba(251, 191, 36, 0.15); color: #fbbf24; }
.soc-feed__tag--ok   { background: rgba(74, 222, 128, 0.15); color: #4ade80; }
.soc-feed__tag--soc  { background: rgba(96, 165, 250, 0.15); color: #60a5fa; }
.soc-feed__msg {
  color: var(--text);
  word-break: break-word;
}

/* Floating chips */
.floating-chip {
  position: absolute;
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.chip--1 { top: -18px; right: -24px; color: #4ade80; animation: float 7s ease-in-out infinite; }
.chip--2 { bottom: 30px; left: -36px; color: var(--red); animation: float 8s ease-in-out infinite 1s; }
.chip--3 { top: 45%; right: -48px; color: #60a5fa; animation: float 6s ease-in-out infinite 0.5s; }

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scroll-drop 2s ease-in-out infinite;
}
@keyframes scroll-drop { 0%, 100% { transform: scaleY(1); opacity: 1; } 50% { transform: scaleY(0.6); opacity: 0.4; } }

/* =============================================
   ABOUT
   ============================================= */
.about { background: var(--black-2); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.about-text p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.role-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.role-tag {
  background: rgba(215,26,42,0.08);
  border: 1px solid rgba(215,26,42,0.22);
  color: var(--red);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: all var(--trans);
}
.role-tag:hover { background: rgba(215,26,42,0.18); }

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pillar {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  transition: all var(--trans);
}
.pillar:hover {
  border-color: rgba(215,26,42,0.25);
  background: rgba(215,26,42,0.04);
  transform: translateY(-2px);
}
.pillar-icon { font-size: 28px; margin-bottom: 12px; }
.pillar h4 { font-size: 14px; font-weight: 700; margin-bottom: 7px; font-family: var(--font-head); }
.pillar p { font-size: 12px; color: var(--muted); line-height: 1.7; }

/* =============================================
   TECHNOLOGIES  — white section
   ============================================= */
.frameworks {
  background: #ffffff;
  position: relative;
}

/* Wave divider top */
.frameworks::before {
  content: '';
  display: block;
  position: absolute;
  top: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--black-2);
  clip-path: ellipse(55% 100% at 50% 0%);
  pointer-events: none;
}

/* Wave divider bottom — back to dark */
.frameworks::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--black-2);
  clip-path: ellipse(55% 100% at 50% 100%);
  pointer-events: none;
}

.frameworks .section-tag { color: var(--red); }
.frameworks .section-title { color: #0a0a0a; }
.frameworks .section-sub   { color: #4a4a4a; }

.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.tech-chip {
  background: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-sm);
  padding: 18px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all var(--trans);
  cursor: default;
}
.tech-chip:hover {
  border-color: var(--red);
  background: #ffeff0;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(215,26,42,0.12);
}
.tech-icon { font-size: 24px; line-height: 1; }
.tech-chip span:last-child { font-size: 11px; color: #5a6a8a; font-weight: 600; letter-spacing: 0.3px; }

/* =============================================
   SERVICES
   ============================================= */
.services { background: var(--black-2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  transition: all var(--trans);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}
.service-card:hover {
  border-color: rgba(215,26,42,0.25);
  background: rgba(215,26,42,0.04);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 54px; height: 54px;
  border-radius: var(--radius-sm);
  background: rgba(215,26,42,0.1);
  border: 1px solid rgba(215,26,42,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  margin-bottom: 20px;
}
.service-icon svg { width: 26px; height: 26px; }

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: var(--font-head);
}
.service-card p { font-size: 13px; color: var(--muted); line-height: 1.75; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 700;
  color: var(--red-lt);          /* AA contrast on small body text */
  letter-spacing: 0.3px;
  transition: gap var(--trans);
}
.service-link:hover { gap: 10px; }
.service-link span { font-size: 14px; }

/* =============================================
   WHY SECUREIT — dark section
   ============================================= */
.roles {
  background: var(--black);
  position: relative;
}

/* Thin top border accent */
.roles::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.role-card {
  text-align: center;
  padding: 36px 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--trans);
  position: relative;
  overflow: hidden;
}

/* Left accent bar on hover */
.role-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}

.role-card:hover {
  border-color: rgba(215,26,42,0.35);
  background: rgba(215,26,42,0.04);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(215,26,42,0.14);
}
.role-card:hover::after { transform: scaleX(1); }

.role-num {
  display: block;
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 900;
  color: var(--red);
  opacity: 0.28;
  line-height: 1;
  margin-bottom: 12px;
  transition: opacity var(--trans);
}
.role-card:hover .role-num { opacity: 0.6; }

.role-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: var(--font-head);
  color: var(--white);
}
.role-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* =============================================
   TEAM INTRO & EXPERTISE
   ============================================= */
.team { background: var(--black-2); }


/* Two-column intro block */
.team-intro {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}

.team-intro-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}

/* Expertise panel */
.expertise-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--red-lt);          /* AA contrast */
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: var(--font-body);
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.expertise-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  transition: all var(--trans);
}
.expertise-item:hover {
  border-color: rgba(215,26,42,0.25);
  background: rgba(215,26,42,0.04);
  transform: translateY(-2px);
}

.expertise-icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.expertise-item h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
  font-family: var(--font-head);
  letter-spacing: -0.2px;
}

.expertise-item p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65;
}

/* =============================================
   CAREERS
   ============================================= */
.careers { background: var(--black); }

.careers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.careers-left p { color: var(--muted); font-size: 15px; line-height: 1.8; margin-bottom: 16px; }

.perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.perk {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.perk-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 7px;
  flex-shrink: 0;
}

/* Job cards */
.job-list { display: flex; flex-direction: column; gap: 14px; }

.job-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: all var(--trans);
}
.job-card:hover {
  border-color: rgba(215,26,42,0.28);
  background: rgba(215,26,42,0.04);
}

.job-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; font-family: var(--font-head); }
.job-meta { display: flex; gap: 8px; flex-wrap: wrap; }

.job-tag {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 600;
  background: rgba(255,255,255,0.06);
  color: var(--muted);
}
.job-tag--hot {
  background: rgba(215,26,42,0.14);
  color: var(--red);
}

.apply-btn {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 1.5px solid var(--red);
  color: var(--red);
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--trans);
  white-space: nowrap;
  font-family: var(--font-body);
  text-decoration: none;
}
.apply-btn:hover { background: var(--red); color: var(--white); }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: #000000; }

.footer-top {
  padding: 80px 0 60px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 290px;
  margin-bottom: 24px;
}

.footer-col h5 {
  font-size: 10px;
  font-weight: 700;
  color: var(--red-lt);          /* AA contrast */
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: var(--font-body);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a {
  font-size: 13px;
  color: var(--muted);
  transition: color var(--trans);
}
.footer-col ul li a:hover { color: var(--white); }

.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.contact-icon { font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.contact-item a { color: var(--muted); transition: color var(--trans); }
.contact-item a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 12px; color: var(--muted); }

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 12px;
  color: var(--muted);
  transition: color var(--trans);
}
.footer-legal a:hover { color: var(--red-lt); }

/* =============================================
   LEGAL / POLICY PAGES (privacy, terms, security, accessibility)
   ============================================= */
.legal-page {
  padding: 128px 0 96px;
  background: var(--black);
}
.legal-container {
  max-width: 780px;
}
.legal-page .section-tag   { margin-bottom: 12px; }
.legal-page .section-title { margin-bottom: 8px; }

.legal-updated {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 36px;
  letter-spacing: 0.2px;
}
.legal-updated a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }
.legal-updated a:hover { color: var(--red); }

.legal-body {
  color: var(--text);
  font-size: 15px;
  line-height: 1.75;
}
.legal-lead {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.7;
}
.legal-body h2 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin: 36px 0 12px;
  letter-spacing: -0.2px;
}
.legal-body h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin: 24px 0 8px;
}
.legal-body p {
  margin-bottom: 14px;
  color: var(--text);
}
.legal-body ul {
  padding-left: 22px;
  margin-bottom: 16px;
  color: var(--text);
}
.legal-body li {
  margin-bottom: 8px;
  line-height: 1.7;
}
.legal-body a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-body a:hover { color: var(--red-lt); }
.legal-body code {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 6px;
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  color: var(--white);
}
.legal-body strong { color: var(--white); font-weight: 700; }
.legal-body em { color: var(--text); font-style: italic; }
.legal-hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 40px 0 20px;
}
.legal-footnote {
  color: var(--muted);
  font-size: 12.5px;
  font-style: italic;
}

/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =============================================
   HERO TRUST ROW — 5 service verbs as a symmetric 5-col grid
   Above it sits a small caption framing scale (SME → enterprise).
   ============================================= */
.hero-trust-kicker {
  padding-top: 26px;
  border-top: 1px solid var(--border);
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.25px;
  line-height: 1.5;
  margin-bottom: 16px;
  max-width: 520px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.trust-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 10px 4px;
  border-radius: 10px;
  transition: background 0.25s, transform 0.25s;
  min-width: 0;
}
.trust-pill:hover {
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-2px);
}
.trust-pill__icon {
  font-size: 22px;
  line-height: 1;
}
.trust-pill__value {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.1px;
}
.trust-pill__label {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.1px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

/* =============================================
   CAREERS — CTA row & note
   ============================================= */
.careers-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.careers-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 14px;
}
.careers-note a {
  color: var(--red-lt);          /* AA contrast */
  font-weight: 600;
}
.careers-note a:hover { text-decoration: underline; }

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact { background: var(--black-2); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.contact-left p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
}
.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.contact-list a {
  color: var(--muted);
  transition: color var(--trans);
}
.contact-list a:hover { color: var(--red); }

.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-row label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.3;
  color: var(--white);
  transition: border-color var(--trans), background var(--trans);
  box-sizing: border-box;
  width: 100%;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(168, 181, 209, 0.5);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(10, 10, 10, 0.9);
}
.contact-form textarea {
  resize: vertical;
  min-height: 110px;
  font-family: var(--font-body);
}
.form-submit {
  align-self: flex-start;
  margin-top: 4px;
}
.form-status {
  font-size: 13px;
  color: var(--muted);
  min-height: 20px;
}
.form-status.success { color: #4ade80; }
.form-status.error   { color: #f87171; }

.form-consent {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: -4px;
}
.form-consent a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-consent a:hover { color: var(--red); }

/* Turnstile widget — give it some breathing room in the form */
.cf-turnstile {
  margin: 4px 0 6px;
  min-height: 65px;
}

/* ===== Generic Focus panel (used by Threat Intel + Compliance slides) ===== */
.soc-panel {
  padding: 12px 14px 11px;
  background: linear-gradient(180deg, rgba(215,26,42,0.06), rgba(215,26,42,0.02));
  border: 1px solid rgba(215,26,42,0.22);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
}
.soc-panel::before {
  content: '';
  position: absolute;
  top: 0; left: -30%; right: -30%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215,26,42,0.6), transparent);
  animation: triage-glow 3.2s ease-in-out infinite;
}
.soc-panel__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.soc-panel__icon {
  color: var(--red);
  filter: drop-shadow(0 0 6px rgba(215,26,42,0.7));
  display: inline-flex;
}
.soc-panel__title {
  font-size: 12px;
  color: var(--text);
  font-weight: 700;
  flex: 1;
  letter-spacing: 0.2px;
}
.soc-panel__tag {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 2px 7px;
  border-radius: 10px;
  background: rgba(215,26,42,0.15);
  color: var(--red);
  border: 1px solid rgba(215,26,42,0.35);
}
.soc-panel__tag--critical {
  background: rgba(215,26,42,0.2);
  color: #ff6b6b;
  border-color: rgba(215,26,42,0.5);
}
.soc-panel__primary {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 4px;
  font-weight: 600;
  min-height: 15px;
  transition: opacity 0.3s;
}
.soc-panel__meta {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  color: var(--muted);
  line-height: 1.45;
  min-height: 14px;
  transition: opacity 0.3s;
}
.soc-panel--swap .soc-panel__primary,
.soc-panel--swap .soc-panel__meta { opacity: 0; }

/* =============================================
   APPLY FORM (careers)
   ============================================= */
.apply-block {
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  scroll-margin-top: 100px;
}
.apply-head {
  text-align: center;
  margin-bottom: 32px;
}
.apply-title {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--white);
  margin: 6px 0 8px;
}
.apply-sub {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
}

.apply-form {
  max-width: 720px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.apply-form input,
.apply-form select,
.apply-form textarea {
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.3;
  color: var(--white);
  transition: border-color var(--trans), background var(--trans);
  box-sizing: border-box;
  width: 100%;
}

/* Normalise <select> so it renders at the same height as <input> */
.apply-form select,
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 7' fill='%23a8a8a8'%3E%3Cpath d='M6 7 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 10px 6px;
  padding-right: 38px;
}
.apply-form select:focus,
.contact-form select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 7' fill='%23d71a2a'%3E%3Cpath d='M6 7 0 0h12z'/%3E%3C/svg%3E");
}
/* Style the options inside the dropdown itself */
.apply-form select option,
.contact-form select option {
  background: #141414;
  color: var(--white);
}
.apply-form input::placeholder,
.apply-form textarea::placeholder {
  color: rgba(168, 168, 168, 0.5);
}
.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(10, 10, 10, 0.9);
}
.apply-form textarea {
  resize: vertical;
  min-height: 110px;
  font-family: var(--font-body);
}

.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-hint {
  font-weight: 400;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
  margin-left: 4px;
}

/* File input — styled so it doesn't look like a 1998 button */
.apply-form input[type="file"] {
  padding: 10px 12px;
  cursor: pointer;
}
.apply-form input[type="file"]::-webkit-file-upload-button {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  margin-right: 14px;
  cursor: pointer;
  transition: background var(--trans);
}
.apply-form input[type="file"]::-webkit-file-upload-button:hover {
  background: var(--red-lt);
}
.apply-form input[type="file"]::file-selector-button {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  margin-right: 14px;
  cursor: pointer;
  transition: background var(--trans);
}
.apply-form input[type="file"]::file-selector-button:hover {
  background: var(--red-lt);
}

/* =============================================
   REDUCED MOTION
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .soc-card,
  .floating-chip,
  .badge-dot,
  .soc-status,
  .soc-meter-fill,
  .scroll-line,
  .soc-card__scanline,
  .soc-spark__line,
  .soc-spark__fill,
  .soc-feed__blip,
  .soc-triage::before,
  .soc-triage__brain,
  .soc-triage__fill,
  .soc-panel::before,
  .soc-slider,
  .hero-glow,
  .hero-title::after {
    animation: none !important;
    transition: none !important;
  }
  .hero-canvas { display: none; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .tech-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .apply-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .hamburger { display: flex; }

  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 84px;
    left: 0; right: 0;
    background: rgba(0, 0, 0, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem;
    gap: 1.2rem;
  }
  .nav.open { display: flex; }
  .nav a { font-size: 14px; }
  .nav-cta { width: fit-content; }

  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .hero { min-height: auto; padding: 100px 0 60px; }
  .hero-trust { grid-template-columns: repeat(5, 1fr); gap: 6px; }
  .hero-trust-kicker { max-width: none; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .team-intro { grid-template-columns: 1fr; gap: 36px; }
  .expertise-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .roles-grid { grid-template-columns: repeat(2, 1fr); }
  .careers-grid { grid-template-columns: 1fr; gap: 40px; }
  .tech-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 560px) {
  .container { padding: 0 1.2rem; }
  .section { padding: 64px 0; }
  .hero-title { letter-spacing: -1px; }
  .services-grid { grid-template-columns: 1fr; }
  .roles-grid { grid-template-columns: 1fr; gap: 14px; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .about-pillars { grid-template-columns: 1fr; }
  .perks { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-trust { grid-template-columns: repeat(5, 1fr); gap: 4px; }
  .trust-pill { padding: 8px 2px; gap: 4px; }
  .trust-pill__label { font-size: 9px; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
  .contact-form { padding: 24px 20px; }
}
