:root {
  --bg: #ffffff;
  --bg-alt: #f5f5f7;
  --panel: #ffffff;
  --panel-2: #f5f5f7;
  --border: #d5d5d7;
  --text: #1d1d1f;
  --muted: #86868b;
  --accent: #0071e3;
  --accent-2: #ff9500;
  --brand-2: #b8b8b8;
  --danger: #ff3b30;
  --warn: #ff9500;
  --ok: #34c759;
  --maxw: 1200px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", system-ui, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 5.5rem; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  cursor: default;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3 { font-family: var(--font-display); margin: 0 0 0.4em; line-height: 1.2; letter-spacing: -0.02em; font-weight: 700; }
h1 { font-size: clamp(2.25rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 2vw, 2rem); }
h3 { font-size: clamp(1.1rem, 0.5vw, 1.3rem); }
p { margin: 0 0 1em; font-weight: 400; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px);
}

.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;
}

/* Emergency banner */
.emergency {
  background: var(--danger);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
}
.emergency .inner { padding: 10px 0; }
.emergency a { text-decoration: underline; color: #fff; }

/* Header / nav */
header {
  position: relative;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s ease;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1vw, 16px);
  flex-shrink: 1;
  min-width: 0;
}
.brand-logo {
  width: clamp(40px, 4.5vw, 58px);
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
}
.brand-text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.15rem);
  line-height: 1.2;
  white-space: nowrap;
}
.brand-text small {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.73rem;
  color: var(--muted);
  letter-spacing: 0.01em;
}
.links {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 24px);
  font-size: 0.95rem;
  font-weight: 500;
}
.links a { color: var(--text); transition: color 0.2s ease; }
.links a:hover { color: var(--accent); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 20px;
  border-radius: 8px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn:hover { 
  background: #0058c4; 
  box-shadow: var(--shadow);
}
.btn:active { opacity: 0.8; }
.btn.danger {
  background: var(--danger);
  color: #fff;
}
.btn.danger:hover { 
  background: #ff453a;
  box-shadow: var(--shadow);
}
.btn.secondary {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text);
}
.btn.secondary:hover {
  background: var(--bg-alt);
  border-color: var(--text);
}

/* Sections */
.section { padding: clamp(48px, 8vw, 72px) 0; }
.section.alt { background: var(--bg-alt); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 600;
}
.lead { font-size: 1.1rem; color: var(--muted); line-height: 1.7; }

/* Hero */
.hero {
  position: relative;
  padding: clamp(48px, 8vw, 80px) 0;
  background: var(--bg);
  overflow: hidden;
}
.cinematic-hero {
  overflow: visible;
}
.hero-bg-parallax {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.hero-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
}
.hero-bg-layer-1 {
  background: linear-gradient(135deg, var(--accent) 0%, transparent 50%);
}
.hero-bg-layer-2 {
  background: radial-gradient(circle at 30% 70%, var(--accent-2) 0%, transparent 70%);
}
.hero-bg-layer-3 {
  background: linear-gradient(45deg, var(--brand-2) 0%, transparent 40%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 6vw, 48px);
  align-items: center;
}
.hero-content {
  max-width: 600px;
}
.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--ok);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.hero h1 {
  margin-bottom: 24px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin: 32px 0;
  flex-wrap: wrap;
}
.hotline-card {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 24px 0;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease;
}
.hotline-card:hover {
  border-color: var(--accent);
}
.hotline-card span {
  font-size: 0.9rem;
  color: var(--muted);
}
.hotline-card strong {
  font-size: 1.1rem;
  color: var(--text);
}
.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.metric {
  text-align: center;
  padding: 16px;
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.metric b {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.metric span {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* Terminal */
.terminal {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  line-height: 1.4;
  position: relative;
}
.term-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--panel-2);
  border-bottom: 1px solid var(--border);
}
.circle {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--muted);
}
.circle:nth-child(1) { background: var(--danger); }
.circle:nth-child(2) { background: var(--warn); }
.circle:nth-child(3) { background: var(--ok); }
.term-title {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.75rem;
}
.term-live {
  color: var(--ok);
}
.term-body {
  padding: 16px;
}
.term-line {
  margin-bottom: 8px;
  color: var(--text);
}
.term-line.warn { color: var(--warn); }
.term-line.ok { color: var(--ok); }
.prompt {
  color: var(--accent);
  margin-right: 8px;
}
.cinematic-terminal {
  transform: translateX(20px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.cinematic-terminal.cinematic-visible {
  transform: translateX(0);
  opacity: 1;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-content {
    max-width: none;
  }
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.card .icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.card h3 {
  margin-bottom: 12px;
}
.card p {
  color: var(--muted);
  line-height: 1.6;
}

/* Lists */
.list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
}
.list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  transition: border-color 0.2s ease;
}
.list-item:hover {
  border-color: var(--accent);
}
.list-item .check {
  color: var(--ok);
  font-size: 1.2rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}
.list-item strong {
  display: block;
  margin-bottom: 4px;
}

/* Split layout */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 6vw, 48px);
  align-items: start;
}
@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
}

/* Section headers */
.section-head {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 48px);
}
.section-head > div {
  margin-bottom: 16px;
}
.section-head h2 {
  margin-bottom: 16px;
}
.section-head p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--muted);
}

/* Process section */
.process-interactive {
  margin-top: 48px;
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.process-console {
  position: relative;
}
.process-console-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--panel-2);
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
}
.term-cursor {
  display: inline-block;
  width: 8px;
  height: 16px;
  background: var(--accent);
  animation: blink 1s infinite;
}
@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}
.term-progress {
  color: var(--ok);
}
.process-console-line {
  display: none;
}
.process-console-line.line-1 { display: block; }
#process-step-1:checked ~ .process-grid .process-console-line.line-1,
#process-step-2:checked ~ .process-grid .process-console-line.line-2,
#process-step-3:checked ~ .process-grid .process-console-line.line-3,
#process-step-4:checked ~ .process-grid .process-console-line.line-4,
#process-step-5:checked ~ .process-grid .process-console-line.line-5 {
  display: block;
}

.process-controls {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.process-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.process-card:hover {
  border-color: var(--accent);
}
.process-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.process-card strong {
  display: block;
  margin-bottom: 4px;
}
.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* CTA section */
.cta {
  background: var(--accent);
  color: white;
  padding: clamp(48px, 8vw, 72px) 0;
}
.cta h2 {
  color: white;
}
.cta p {
  color: rgba(255, 255, 255, 0.9);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .cta-grid {
    grid-template-columns: 1fr auto;
  }
}

/* Press section */
.press-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 36px);
  align-items: start;
}
@media (min-width: 900px) {
  .press-grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }
}

.press-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px);
  position: relative;
  overflow: hidden;
}
.press-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.press-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}
.press-date {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}
.press-category {
  padding: 4px 12px;
  background: var(--bg-alt);
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
}
.press-title {
  margin-bottom: 12px;
  line-height: 1.4;
}
.press-excerpt {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.press-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.press-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) {
  .press-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}
.stat-item {
  text-align: center;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Contact form */
.incident-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 32px);
}
.form-section {
  margin-bottom: 24px;
}
.form-section-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) {
  .form-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  margin-bottom: 16px;
}
.form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: border-color 0.2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.req {
  color: var(--danger);
}

.bot-field {
  display: none;
}

/* Terminal/Console */
.terminal {
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  overflow: hidden;
}
.term-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--panel);
  border-bottom: 1px solid var(--border);
}
.circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff5f57;
}
.circle:nth-child(2) {
  background: #ffbd2e;
}
.circle:nth-child(3) {
  background: #28ca42;
}
.term-title {
  font-size: 0.8rem;
  color: var(--muted);
  margin-left: auto;
}
.term-body {
  padding: 16px;
  line-height: 1.5;
}
.prompt {
  color: var(--accent);
  margin-right: 8px;
}
.term-line {
  margin-bottom: 8px;
  color: var(--muted);
}
.term-line strong {
  color: var(--text);
}

.cinematic-list .list-item {
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.cinematic-list .list-item.cinematic-visible {
  transform: translateY(0);
  opacity: 1;
}

.cinematic-cta {
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.cinematic-cta.cinematic-visible {
  transform: translateY(0);
  opacity: 1;
}
.press-hero {
  padding: clamp(64px, 12vw, 96px) 0;
  background: var(--bg);
  position: relative;
}
.press-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.press-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-alt);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
}
.press-icon {
  font-size: 1rem;
}
.press-subtitle {
  font-size: 1.25rem;
  color: var(--muted);
  margin: 16px 0 24px;
  line-height: 1.6;
}
.press-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.back-link:hover {
  color: var(--accent-2);
}

.press-content {
  padding: clamp(48px, 8vw, 72px) 0;
  background: var(--bg);
}
.press-article {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}
.press-article h2 {
  margin-top: 48px;
  margin-bottom: 24px;
}
.press-article p {
  margin-bottom: 24px;
}

.press-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 48px 0;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .press-cta {
    flex-direction: column;
    align-items: center;
  }
  .press-cta .btn {
    width: 100%;
    max-width: 280px;
  }
}

.press-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}

.press-contact {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.callout {
  background: var(--bg-alt);
  border-left: 4px solid var(--accent);
  padding: 24px;
  margin: 32px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.callout-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

blockquote {
  border-left: 4px solid var(--accent);
  padding-left: 24px;
  margin: 32px 0;
  font-style: italic;
  color: var(--muted);
}

.pullquote {
  font-size: 1.25rem;
  font-style: italic;
  text-align: center;
  margin: 48px 0;
  padding: 32px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  position: relative;
}
.pullquote::before,
.pullquote::after {
  content: '"';
  font-size: 3rem;
  color: var(--accent);
  position: absolute;
  top: 8px;
}
.pullquote::before { left: 16px; }
.pullquote::after { right: 16px; }

.callout-warn {
  border-left-color: var(--warn);
}
.callout-warn .callout-label {
  color: var(--warn);
}

code {
  font-family: var(--font-mono);
  background: var(--bg-alt);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
  color: var(--text);
}

/* Incident Response Timeline */
.ir-timeline {
  list-style: none;
  padding: 0;
  margin: 48px 0;
}
.ir-step {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  align-items: flex-start;
}
.ir-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
  position: relative;
}
.ir-step-num::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  width: 2px;
  height: 32px;
  background: var(--border);
  transform: translateX(-50%);
}
.ir-step:last-child .ir-step-num::after {
  display: none;
}
.ir-step-body {
  flex: 1;
  padding-top: 4px;
}
.ir-step-when {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 8px;
}
.ir-step-body strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--text);
}
.ir-step-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

/* Framework Section */
.framework-box {
  background: var(--bg-alt);
  padding: clamp(32px, 5vw, 48px);
  border-radius: var(--radius);
  margin: 48px 0;
  text-align: center;
}
.framework-box .eyebrow {
  margin-bottom: 16px;
}
.framework-box h2 {
  margin-bottom: 16px;
}
.framework-box p {
  max-width: 600px;
  margin: 0 auto 32px;
  color: var(--muted);
}

.framework-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.feature-chip {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: left;
}
.chip-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.chip-body {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Forms */
.framework-form {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 32px);
  margin: 48px 0;
  max-width: 600px;
}
.incident-form {
  margin: 32px auto;
}
.form-intro {
  text-align: center;
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 0.9rem;
}
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 600px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
}
.form-field {
  display: flex;
  flex-direction: column;
}
.form-field label {
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.form-field input,
.form-field select {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.2s ease;
}
.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--accent);
}
.form-field input::placeholder {
  color: var(--muted);
}
.req {
  color: var(--danger);
}
.check-option {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}
.check-option input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
}
.form-submit {
  width: 100%;
  margin-top: 24px;
}
.form-legal {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 16px;
}
.hero-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(0, 113, 227, 0.08) 0%, transparent 70%);
}
.hero-bg-layer-1,
.hero-bg-layer-2,
.hero-bg-layer-3 {
  animation: none;
  opacity: 1;
}
@keyframes parallax-float-1 {
  0%, 100% { transform: none; }
}
@keyframes parallax-float-2 {
  0%, 100% { transform: none; }
}
@keyframes parallax-float-3 {
  0%, 100% { transform: none; }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.05fr 1fr; }
}
.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--panel);
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 16px;
  font-weight: 500;
}
.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.4);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(52, 199, 89, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 199, 89, 0); }
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 24px;
}
.hotline-card {
  display: inline-flex;
  flex-direction: column;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--text);
  margin-bottom: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hotline-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.hotline-card span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 4px;
}
.hotline-card strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--danger);
  font-weight: 600;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 16px;
}
.metric {
  padding: 16px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.metric:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.metric b {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 4px;
}
.metric span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
}

/* Cinematic animations and effects */
[data-cinematic-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-cinematic-reveal].cinematic-visible {
  opacity: 1;
  transform: translateY(0);
}

.cinematic-section {
  position: relative;
}
.cinematic-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  pointer-events: none;
  opacity: 0;
  animation: none;
}
@keyframes cinematic-shimmer {
  0%, 100% { opacity: 0; transform: none; }
  50% { opacity: 0; transform: none; }
}

.cinematic-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: var(--radius);
}
.cinematic-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: transparent;
  transition: none;
}
.cinematic-card:hover::before {
  left: 100%;
}
.cinematic-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.cinematic-terminal {
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: var(--radius);
}
.cinematic-terminal:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.cinematic-cta {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.cinematic-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  animation: none;
}
@keyframes cta-pulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 0; transform: scale(1); }
}

.cinematic-list .cinematic-card {
  transition-delay: 0s;
}
.cinematic-cards .cinematic-card:nth-child(1) { transition-delay: 0s; }
.cinematic-cards .cinematic-card:nth-child(2) { transition-delay: 0s; }
.cinematic-cards .cinematic-card:nth-child(3) { transition-delay: 0s; }
.cinematic-cards .cinematic-card:nth-child(4) { transition-delay: 0s; }
.cinematic-cards .cinematic-card:nth-child(5) { transition-delay: 0s; }
.cinematic-cards .cinematic-card:nth-child(6) { transition-delay: 0s; }

.cinematic-steps .cinematic-step {
  position: relative;
}
.cinematic-steps .cinematic-step::before {
  content: '';
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0, 113, 227, 0.2);
  opacity: 1;
  transform: translateY(-50%) scale(1);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cinematic-steps .cinematic-step.cinematic-visible::before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.cinematic-steps {
  counter-reset: step-counter;
}
.cinematic-steps .cinematic-step {
  counter-increment: step-counter;
}

/* Press Section */
.press-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 36px);
  align-items: start;
}
@media (min-width: 900px) {
  .press-grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }
}

.press-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px);
  position: relative;
  overflow: hidden;
}
.press-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.press-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}
.press-date {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}
.press-category {
  padding: 4px 12px;
  background: rgba(15, 97, 204, 0.1);
  color: var(--accent);
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.press-title {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
  color: var(--text);
}

.press-excerpt {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1rem;
}

.press-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.press-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.stat-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.stat-number {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
  font-family: var(--font-display);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.terminal {
  position: relative;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
  box-shadow: var(--shadow);
  font-family: var(--font-mono);
  font-size: 0.85rem;
}
.cinematic-terminal {
  background: var(--panel);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.terminal::before,
.process-console::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
  opacity: 0;
  z-index: 0;
}
.terminal .term-top,
.terminal .term-body,
.process-console .term-top,
.process-console .term-body,
.process-console .process-console-line,
.process-console-footer {
  position: relative;
  z-index: 1;
}
.cinematic-terminal:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.term-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.78rem;
}
.cinematic-terminal .term-top {
  background: var(--bg-alt);
}
.term-top .circle {
  width: 10px; height: 10px; border-radius: 50%;
  background: #cbd5e1;
}
.term-top .circle:nth-child(1) { background: #ef4444; }
.term-top .circle:nth-child(2) { background: #f59e0b; }
.term-top .circle:nth-child(3) { background: #10b981; }
.term-title { margin-left: auto; color: var(--accent); }
.term-live { font-variant-numeric: tabular-nums; color: var(--ok); }
.term-body {
  padding: 16px 16px 20px;
  min-height: 230px;
  background: var(--panel);
  color: var(--text);
}
.term-line {
  margin: 0 0 8px;
  color: var(--text);
  white-space: pre-wrap;
  word-break: break-word;
  opacity: 1;
  transform: none;
  animation: none;
  letter-spacing: 0;
}
.term-line:nth-child(1) { animation: none; }
.term-line:nth-child(2) { animation: none; }
.term-line:nth-child(3) { animation: none; }
.term-line:nth-child(4) { animation: none; }
.term-line:nth-child(5) { animation: none; }
.term-line:nth-child(6) { animation: none; }
.term-line:nth-child(7) { animation: none; }
.term-line:nth-child(8) { animation: none; }
@keyframes termIn { to { opacity: 1; transform: none; } }
.term-line .prompt { color: var(--accent); margin-right: 8px; }
.term-line.warn { color: var(--warn); }
.term-line.ok { color: var(--ok); }
.term-line.muted { color: var(--muted); }
.term-line.callout {
  margin-top: 10px;
  padding: 10px 12px;
  background: rgba(255, 59, 48, 0.08);
  border-left: 2px solid var(--danger);
  color: var(--danger);
  border-radius: 4px;
}
.term-line.callout a {
  color: var(--danger);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Disable CSS-driven line reveals once the JS terminal takes over */
.terminal.is-js .term-line {
  animation: none !important;
  opacity: 1;
  transform: none;
}

.term-cursor {
  display: inline-block;
  width: 0.5em;
  height: 1em;
  background: var(--text);
  vertical-align: -0.15em;
  margin-left: 2px;
  animation: termBlink 1s steps(2, end) infinite;
}
@keyframes termBlink { 50% { opacity: 0; } }

.term-progress {
  display: inline-block;
  margin-left: 8px;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.term-replay {
  position: absolute;
  right: 12px;
  bottom: 10px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  cursor: pointer;
  transition: all 0.2s ease;
}
.term-replay:hover {
  color: #fff;
  border-color: var(--accent);
  background: var(--accent);
}

/* Split (senior-led section) */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1.1fr 1fr; }
}
.list { display: flex; flex-direction: column; gap: 12px; }
.list-item {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.list-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(52, 199, 89, 0.1);
  color: var(--ok);
  font-weight: 600;
  font-size: 0.8rem;
}
.list-item strong {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}
.list-item span {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Section heads */
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: clamp(24px, 3vw, 40px);
}
@media (min-width: 800px) {
  .section-head { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); align-items: start; gap: 32px; }
}
.section-head h2 {
  margin-bottom: 0;
}
.section-head p { color: var(--muted); margin: 0; }

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.card {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.card .icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.card strong {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 1.05rem;
}
.card p { color: var(--muted); margin: 0; font-size: 0.95rem; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  counter-reset: step;
}
@media (min-width: 700px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .steps { grid-template-columns: repeat(5, 1fr); }
}
.step {
  counter-increment: step;
  position: relative;
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  font-weight: 600;
}
.step strong {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--text);
}
.step p { color: var(--muted); margin: 0; font-size: 0.9rem; }

.process-interactive {
  display: grid;
  gap: 28px;
}
@media (min-width: 900px) {
  .process-interactive {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }
}
.process-grid {
  display: grid;
  gap: 24px;
}
.process-console {
  min-height: 420px;
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.process-console .term-body {
  padding: 22px 22px 18px;
}
.process-console-line {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.9;
  margin-bottom: 12px;
  line-height: 1.6;
  position: relative;
  padding-left: 16px;
}
.process-console-line::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 10px;
  border-radius: 999px;
  background: rgba(0, 113, 227, 0.4);
  opacity: 0.6;
}
.process-console-line .prompt {
  color: var(--accent);
  margin-right: 10px;
  font-size: 0.9rem;
}
.process-console-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 22px 20px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.85rem;
}
.process-controls {
  display: grid;
  gap: 14px;
}
.process-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.process-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  background: var(--bg-alt);
}
.process-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 600;
}
.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
.process-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 113, 227, 0.1);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
}
#process-step-1:checked ~ .process-grid .process-console .line-1,
#process-step-2:checked ~ .process-grid .process-console .line-2,
#process-step-3:checked ~ .process-grid .process-console .line-3,
#process-step-4:checked ~ .process-grid .process-console .line-4,
#process-step-5:checked ~ .process-grid .process-console .line-5 {
  opacity: 1;
  color: var(--text);
}
#process-step-1:checked ~ .process-grid .process-console .line-1::before,
#process-step-2:checked ~ .process-grid .process-console .line-2::before,
#process-step-3:checked ~ .process-grid .process-console .line-3::before,
#process-step-4:checked ~ .process-grid .process-console .line-4::before,
#process-step-5:checked ~ .process-grid .process-console .line-5::before {
  opacity: 1;
  background: var(--accent);
}
#process-step-1:checked ~ .process-grid .process-controls label[for="process-step-1"],
#process-step-2:checked ~ .process-grid .process-controls label[for="process-step-2"],
#process-step-3:checked ~ .process-grid .process-controls label[for="process-step-3"],
#process-step-4:checked ~ .process-grid .process-controls label[for="process-step-4"],
#process-step-5:checked ~ .process-grid .process-controls label[for="process-step-5"] {
  border-color: var(--accent);
  background: rgba(15, 97, 204, 0.1);
}

/* CTA */
.cta {
  background: var(--bg);
  padding: clamp(48px, 8vw, 80px) 0;
  border-block: 1px solid var(--border);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
@media (min-width: 800px) {
  .cta-grid { grid-template-columns: 1fr auto; }
}
.cta h2 {
  margin-bottom: 12px;
}
.cta p { color: var(--muted); margin: 0; }

/* Press */
.press {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media (min-width: 800px) {
  .press { grid-template-columns: 1fr auto; gap: 32px; }
}
.press:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.press time {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.press strong {
  display: block;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--text);
}
.press p { color: var(--muted); margin: 0; font-size: 0.95rem; }

/* Press release article page */
.press-hero {
  padding: clamp(60px, 10vw, 120px) 0;
  text-align: center;
  position: relative;
}
.press-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(15, 97, 204, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.press-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.press-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
  line-height: 1.1;
}
.press-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.press-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(15, 97, 204, 0.1), rgba(15, 97, 204, 0.05));
  border: 1px solid rgba(15, 97, 204, 0.2);
  border-radius: 20px;
  margin-bottom: 24px;
}
.press-icon {
  font-size: 1.2rem;
}
.press-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.press-content {
  padding: clamp(40px, 6vw, 80px) 0;
}
.press-article {
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}
.press-article .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.press-article h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 3rem 0 1.5rem 0;
  color: var(--text);
}
.press-article h3 {
  font-size: 1.25rem;
  margin: 2.5rem 0 1rem 0;
  color: var(--text);
}
.press-article p {
  margin-bottom: 1.5rem;
  color: var(--muted);
}
.press-article strong {
  color: var(--text);
  font-weight: 600;
}

.press-cta {
  display: flex;
  gap: 16px;
  margin: 3rem 0;
  flex-wrap: wrap;
  justify-content: center;
}

.press-divider {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 3rem 0;
}

.press-contact {
  color: var(--muted);
}
.press-contact a {
  color: var(--accent);
  text-decoration: none;
}
.press-contact a:hover {
  text-decoration: underline;
}
.back-link {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 20px;
  transition: color 0.15s ease;
}
.back-link:hover {
  color: var(--accent-2);
}
  margin: 36px 0 24px;
}
.press-contact a {
  color: var(--accent-2);
  transition: color 0.15s ease;
}
.press-contact a:hover { color: var(--text); }

/* Blog-post extras: subtitle, code, callouts, pullquote, IR timeline, framework box */
.press-subtitle {
  font-family: var(--font-body);
  font-weight: 500;
  color: #cdd2dc;
  font-size: clamp(1rem, 0.5vw + 0.95rem, 1.2rem);
  margin: 0 0 16px;
  line-height: 1.5;
}

.press-article code {
  font-family: var(--font-mono);
  font-size: 0.88em;
  background: rgba(15, 97, 204, 0.12);
  color: #0f61cc;
  padding: 2px 7px;
  border-radius: 4px;
  border: 1px solid rgba(15, 97, 204, 0.2);
}

.press-article em { color: var(--text); font-style: italic; }

.press-article a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(15, 97, 204, 0.4);
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}
.press-article a:hover { color: var(--text); text-decoration-color: var(--text); }

.callout {
  margin: 28px 0;
  padding: 20px 22px;
  background: rgba(15, 97, 204, 0.08);
  border: 1px solid rgba(15, 97, 204, 0.25);
  border-left: 3px solid var(--accent-2);
  border-radius: var(--radius-sm);
}
.callout-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 8px;
}
.callout p {
  margin: 0;
  color: #cdd2dc;
  font-size: 0.96rem;
  line-height: 1.65;
}
.callout-warn {
  background: rgba(217, 45, 32, 0.08);
  border-color: rgba(217, 45, 32, 0.3);
  border-left-color: var(--danger);
}
.callout-warn .callout-label { color: #ff7a6e; }

.pullquote {
  margin: 36px 0;
  padding: 26px 28px;
  background: linear-gradient(135deg, rgba(15, 97, 204, 0.12), rgba(217, 45, 32, 0.08));
  border-left: 3px solid var(--warn);
  border-radius: var(--radius-sm);
}
.pullquote p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.1rem, 0.6vw + 1rem, 1.35rem);
  line-height: 1.45;
  color: var(--text);
  font-style: italic;
}

/* IR timeline */
.ir-timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 32px 0;
  padding: 0;
  list-style: none;
}
.ir-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 18px 20px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  align-items: start;
}
.ir-step-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent-2);
  background: rgba(15, 97, 204, 0.1);
  border: 1px solid rgba(15, 97, 204, 0.25);
  border-radius: 6px;
  padding: 6px 10px;
  min-width: 44px;
  text-align: center;
}
.ir-step-body { display: flex; flex-direction: column; gap: 4px; }
.ir-step-when {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.ir-step-body strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}
.ir-step-body p {
  margin: 4px 0 0;
  color: #cdd2dc;
  font-size: 0.93rem;
  line-height: 1.6;
}

/* Framework download box */
.framework-box {
  margin: 48px 0;
  padding: clamp(28px, 4vw, 44px);
  background:
    radial-gradient(800px 320px at 90% -10%, rgba(15, 97, 204, 0.18), transparent 60%),
    var(--panel);
  border: 1px solid rgba(15, 97, 204, 0.25);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.framework-box .eyebrow { color: var(--warn); }
.framework-box h2 {
  margin: 6px 0 12px;
  font-size: clamp(1.3rem, 1vw + 1rem, 1.85rem);
}
.framework-box > p { color: #cdd2dc; }
.framework-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}
.feature-chip {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.feature-chip .chip-label {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.feature-chip .chip-body {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* Framework form (inside framework-box) */
.framework-form {
  margin-top: 8px;
  background: var(--panel-2);
}
.framework-form .form-intro {
  color: #cdd2dc;
  margin: 0 0 6px;
  font-size: 0.95rem;
}

/* Thank-you / download confirmation page */
.download-card {
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 44px);
  background: var(--panel);
  border: 1px solid rgba(15, 97, 204, 0.25);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.download-card .eyebrow { color: var(--ok); }
.download-card h1 {
  margin: 6px 0 12px;
  font-size: clamp(1.6rem, 2vw + 1rem, 2.4rem);
}
.download-card p { color: #cdd2dc; }
.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 22px 0 8px;
}
.download-meta {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* Blog */
.blog-hero {
  padding: clamp(80px, 12vw, 140px) 0;
  text-align: center;
  position: relative;
}
.blog-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(15, 97, 204, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.blog-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.blog-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(15, 97, 204, 0.1), rgba(15, 97, 204, 0.05));
  border: 1px solid rgba(15, 97, 204, 0.2);
  border-radius: 20px;
  margin-bottom: 24px;
}
.blog-icon {
  font-size: 1.2rem;
}
.blog-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.blog-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
  line-height: 1.1;
}
.blog-hero .lead {
  font-size: 1.25rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.blog-posts {
  padding: clamp(60px, 8vw, 100px) 0;
}
.posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 40px);
  margin-bottom: clamp(60px, 8vw, 100px);
}
@media (min-width: 768px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.post-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(15, 97, 204, 0.3);
}
.post-card-link {
  display: block;
  padding: clamp(24px, 3vw, 32px);
  text-decoration: none;
  color: inherit;
}
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 16px;
}
.post-tag {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--accent-2);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}
.post-card h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin: 0 0 12px 0;
  line-height: 1.3;
  color: var(--text);
}
.post-card p {
  color: var(--muted);
  margin: 0 0 16px 0;
  line-height: 1.6;
}
.post-readmore {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent-2);
  font-weight: 500;
}
.post-card:hover .post-readmore {
  color: var(--text);
}

.blog-cta {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(32px, 4vw, 48px);
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.blog-cta p {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 1.1rem;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* Form */
.incident-form {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.5vw, 28px);
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 36px);
}
.bot-field { display: none !important; }
.form-section { display: flex; flex-direction: column; gap: 14px; }
.form-section-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.form-hint { color: var(--muted); margin: -4px 0 0; font-size: 0.9rem; }
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 640px) {
  .form-grid-2 { grid-template-columns: repeat(2, 1fr); }
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.req { color: var(--danger); margin-left: 2px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 11px 13px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font: inherit;
  font-size: 16px;
  line-height: 1.5;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 1);
}
.form-field textarea { resize: vertical; min-height: 90px; }

.severity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}
.sev-option { cursor: pointer; }
.sev-option input { position: absolute; opacity: 0; pointer-events: none; }
.sev-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.12s ease;
}
.sev-card strong { font-size: 0.95rem; }
.sev-card small { color: var(--muted); font-size: 0.8rem; }
.sev-option input:checked + .sev-card {
  border-color: var(--accent);
  background: rgba(15, 97, 204, 0.1);
}
.sev-option:hover .sev-card { border-color: rgba(15, 97, 204, 0.3); }
.sev-low strong { color: #84cc16; }
.sev-med strong { color: var(--warn); }
.sev-high strong { color: #fb923c; }
.sev-crit strong { color: var(--danger); }
.sev-option input:checked + .sev-card.sev-crit { border-color: var(--danger); background: rgba(217,45,32,0.12); }

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px;
}
.check-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.92rem;
  transition: border-color 0.15s ease;
}
.check-option:hover { border-color: rgba(15, 23, 42, 0.18); }
.check-option input { accent-color: var(--accent); }

.form-submit { align-self: flex-start; padding: 14px 24px; font-size: 1rem; }
.form-legal { color: var(--muted); font-size: 0.82rem; margin: 0; }

/* Footer */
footer {
  padding: clamp(28px, 4vw, 56px) 0;
  border-top: 1px solid var(--border);
  background: #06070b;
  color: var(--muted);
  font-size: 0.88rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; align-items: center; }
}
.legal { color: var(--muted); }

/* Mobile call sticky button */
.mobile-call {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  padding: 10px 16px env(safe-area-inset-bottom);
  background: linear-gradient(180deg, rgba(9,10,15,0), rgba(9,10,15,0.95) 35%);
  display: none;
  z-index: 40;
}
.mobile-call .btn { width: 100%; padding: 14px; font-size: 1rem; }
@media (max-width: 720px) {
  .mobile-call { display: block; }
  body { padding-bottom: 76px; }
  .links a:not(.btn) { display: none; }
}
@media (max-width: 420px) {
  .brand-text small { display: none; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* Cinematic animations */
.cinematic-visible {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}
