:root {
  --bg-primary: #FAFAF8;
  --bg-elevated: #FFFFFF;
  --bg-card: #F3F4F6;
  --bg-dark: #1A1A1F;
  --border: rgba(0,0,0,0.07);
  --border-strong: rgba(0,0,0,0.11);
  --text-primary: #1A1A1F;
  --text-secondary: #5C5C66;
  --text-muted: #9A9AA3;
  --blue: #2C5282;
  --blue-soft: rgba(44,82,130,0.07);
  --blue-medium: rgba(44,82,130,0.12);
  --ykb: #002FA7;
  --ykb-hover: #0038C6;
  --ykb-soft: rgba(0,47,167,0.06);
  --red: #C4453C;
  --green: #3A8A5C;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 48px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(250,250,247,0.9);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 20px;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-logo img { height: 24px; width: auto; display: block; }

.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px; font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-cta {
  padding: 10px 24px;
  background: var(--ykb);
  color: #fff;
  border: none; border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.nav-cta:hover { background: var(--ykb-hover); transform: translateY(-1px); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 160px 48px 120px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.1s;
}

.hero-eyebrow span {
  color: var(--blue);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  max-width: 820px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.25s;
}

.hero h1 em {
  font-style: italic;
  color: var(--text-primary);
}

.hero-sub {
  font-size: 19px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 580px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.4s;
}
.hero-sub-sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  max-width: 580px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.45s;
}
.hero-sub-footer {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 24px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.65s;
}

.hero-actions {
  display: flex; gap: 16px; align-items: center;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.55s;
}

.btn-primary {
  padding: 14px 32px;
  background: var(--ykb);
  color: #fff;
  border: none; border-radius: 6px;
  font-family: var(--font-body);
  font-size: 15px; font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-primary:hover { background: var(--ykb-hover); transform: translateY(-1px); }

.btn-secondary {
  padding: 14px 32px;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 15px; font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-secondary:hover {
  color: var(--text-primary);
  border-color: rgba(0,0,0,0.25);
}

/* THESIS STRIP */
.thesis {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 48px;
  background: var(--bg-elevated);
}

.thesis-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.thesis blockquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 400;
  line-height: 1.45;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.thesis blockquote strong {
  font-weight: 600;
}

.thesis .thesis-note {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-muted);
}

/* PROBLEM SECTION */
.problem {
  padding: 120px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  max-width: 700px;
  margin-bottom: 56px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-strong);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  overflow: hidden;
}

.problem-card {
  background: var(--bg-elevated);
  padding: 40px 36px;
  position: relative;
  transition: background 0.2s;
}

.problem-card:hover {
  background: #FEFEFA;
}

.problem-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: rgba(44,82,130,0.08);
  line-height: 1;
  margin-bottom: 20px;
}

.problem-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.problem-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* CAPABILITIES */
.capabilities {
  padding: 120px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.capabilities h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  max-width: 600px;
  margin-bottom: 56px;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.cap-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 44px 40px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.cap-card:hover {
  border-color: rgba(44,82,130,0.18);
  box-shadow: 0 4px 24px rgba(44,82,130,0.06);
}

.cap-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--blue-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}

.cap-icon svg {
  width: 20px; height: 20px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.8;
}

.cap-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.cap-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 420px;
}

.cap-tag {
  display: inline-block;
  margin-top: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  padding: 4px 10px;
  background: var(--blue-soft);
  border-radius: 4px;
}

/* PRODUCT PREVIEW */
.preview {
  padding: 80px 48px 120px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.preview h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.preview-sub {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.preview-frame {
  background: var(--bg-dark);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
}

.preview-topbar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  background: #111116;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.preview-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}

.preview-mockup {
  width: 100%;
  display: grid;
  grid-template-columns: 220px 1fr 300px;
  gap: 1px;
  background: rgba(255,255,255,0.06);
  min-height: 480px;
}

/* MOCK SIDEBAR */
.mock-sidebar {
  background: #111116;
  padding: 24px 18px;
}

.mock-sidebar-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 14px;
}

.mock-cp-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px;
  border-radius: 6px;
  margin-bottom: 3px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: background 0.15s;
}

.mock-cp-item.active {
  background: rgba(90,139,191,0.1);
  color: rgba(255,255,255,0.9);
}

.mock-cp-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.mock-cp-item.active .mock-cp-dot { background: #5A8BBF; }

.mock-doc-item {
  padding: 7px 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 2px;
}

/* MOCK CENTER */
.mock-center {
  background: #16161C;
  padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
}

.mock-center-header {
  display: flex; justify-content: space-between; align-items: center;
}

.mock-center-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.mock-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(196,69,60,0.12);
  color: #E8756C;
}

.mock-badge.ok {
  background: rgba(58,138,92,0.12);
  color: #6BC98F;
}

.mock-table {
  width: 100%;
  border-collapse: collapse;
}

.mock-table th {
  text-align: left;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mock-table td {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.mock-table .num {
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

.mock-table .delta-neg {
  color: #E8756C;
  font-weight: 600;
  font-size: 11px;
}

.mock-table .delta-ok {
  color: rgba(255,255,255,0.25);
  font-size: 11px;
}

.mock-actions {
  display: flex; gap: 10px; margin-top: auto;
}

.mock-action-btn {
  padding: 7px 14px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
}

.mock-action-primary {
  background: rgba(90,139,191,0.15);
  color: #8BB8E0;
  border: 1px solid rgba(90,139,191,0.2);
}

.mock-action-ghost {
  background: transparent;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.06);
}

/* MOCK RIGHT */
.mock-right {
  background: #111116;
  padding: 24px 18px;
}

.mock-right-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 14px;
}

.mock-trigger {
  padding: 11px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 7px;
  margin-bottom: 7px;
}

.mock-trigger-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 6px;
}

.mock-trigger-label {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
}

.mock-trigger-value {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  font-variant-numeric: tabular-nums;
}

.mock-trigger-bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}

.mock-trigger-fill {
  height: 100%;
  border-radius: 2px;
}

.fill-safe { background: #6BC98F; }
.fill-warn { background: #D4A853; }
.fill-danger { background: #E8756C; }

.mock-summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 7px;
  margin-bottom: 6px;
}

.mock-summary-label {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
}

.mock-summary-value {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  font-variant-numeric: tabular-nums;
}

.mock-summary-value.neg { color: #E8756C; }

/* TRIGGER RADAR */
.radar-section {
  padding: 120px 48px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.radar-header {
  margin-bottom: 56px;
}

.radar-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  max-width: 650px;
  margin-bottom: 16px;
}

.radar-header p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 560px;
}

.radar-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
}

.radar-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 540px;
  margin: 0 auto;
}

.radar-svg {
  width: 100%;
  height: 100%;
}

.radar-ring {
  fill: none;
  stroke: var(--border);
  stroke-width: 1;
}

.radar-ring-danger {
  fill: rgba(196,69,60,0.03);
  stroke: rgba(196,69,60,0.12);
  stroke-width: 1;
}

.radar-ring-warn {
  fill: rgba(212,168,83,0.03);
  stroke: rgba(212,168,83,0.08);
  stroke-width: 1;
}

.radar-axis {
  stroke: var(--border);
  stroke-width: 0.5;
  stroke-dasharray: 4 4;
}

.radar-zone-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  fill: var(--text-muted);
}

.radar-dot {
  transition: r 0.3s ease, opacity 0.3s;
  cursor: pointer;
}

.radar-dot:hover {
  opacity: 0.8;
}

.radar-dot-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  fill: var(--text-secondary);
  pointer-events: none;
}

.radar-dot-sublabel {
  font-family: var(--font-body);
  font-size: 9px;
  fill: var(--text-muted);
  pointer-events: none;
}

.radar-pulse {
  animation: radarPulse 2.5s ease-in-out infinite;
}

@keyframes radarPulse {
  0%, 100% { opacity: 0.15; r: 14; }
  50% { opacity: 0.05; r: 22; }
}

.radar-legend {
  display: flex; flex-direction: column; gap: 20px;
}

.radar-legend-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 4px;
}

.legend-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s;
}

.legend-item:hover {
  border-color: var(--border-strong);
}

.legend-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}

.legend-dot.gs { background: #2C5282; }
.legend-dot.ms { background: #6B46C1; }
.legend-dot.barc { background: #2B8A6E; }
.legend-dot.jpm { background: #B45309; }

.legend-content h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.legend-content p {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.legend-content .legend-value {
  font-size: 12px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  margin-top: 6px;
}

.legend-content .legend-value.safe { color: var(--green); }
.legend-content .legend-value.warn { color: #B45309; }
.legend-content .legend-value.danger { color: var(--red); }

@media (max-width: 900px) {
  .radar-layout { grid-template-columns: 1fr; }
  .radar-container { max-width: 400px; }
  .radar-section { padding-left: 24px; padding-right: 24px; }
}

/* HOW IT WORKS */
.how {
  padding: 120px 48px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.how h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 56px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.how-step-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}

.how-step-num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.how-step h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.how-step p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* SECURITY */
.security {
  padding: 120px 48px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.security h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.security-sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 56px;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-strong);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  overflow: hidden;
}

.security-card {
  background: var(--bg-elevated);
  padding: 44px 36px;
  transition: background 0.2s;
}

.security-card:hover {
  background: #FEFEFA;
}

.security-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--ykb-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}

.security-icon svg {
  width: 22px; height: 22px;
  stroke: var(--ykb);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.security-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.security-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
}

@media (max-width: 900px) {
  .security { padding-left: 24px; padding-right: 24px; }
  .security-grid { grid-template-columns: 1fr; }
}

/* CTA */
.cta-section {
  padding: 120px 48px;
  text-align: center;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.cta-inner p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex; gap: 16px;
  justify-content: center;
}

/* One-pager text CTA under hero */
.hero-download-line {
  margin-top: 18px;
  text-align: left;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.7s;
}

.hero-download-link {
  font-size: 16px;
  color: var(--ykb);
  text-decoration: none;
  font-weight: 600;
}

.hero-download-link:hover {
  text-decoration: underline;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-links {
  display: flex; gap: 24px; list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text-secondary); }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .hero { padding: 140px 24px 80px; }
  .problem, .capabilities, .preview, .how, .cta-section { padding-left: 24px; padding-right: 24px; }
  .problem-grid { grid-template-columns: 1fr; }
  .cap-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .preview-mockup { grid-template-columns: 1fr; }
  .mock-sidebar, .mock-right { display: none; }
  footer { flex-direction: column; gap: 16px; }
}

/* Classes for former inline styles (CSP-safe) */
.mock-agreements-wrap { margin-top: 28px; }
.mock-summary-wrap { margin-top: 20px; }
.mock-table th.th-w28 { width: 28%; }
.mock-table th.th-w17 { width: 17%; }
.mock-table th.th-w21 { width: 21%; }
.mock-table td.mock-source { font-size: 10px; color: rgba(255,255,255,0.25); }
.mock-trigger-fill.fill-w42 { width: 42%; }
.mock-trigger-fill.fill-w68 { width: 68%; }
.mock-trigger-fill.fill-w15 { width: 15%; }
.mock-trigger-fill.fill-w10 { width: 10%; }
.radar-ring.radar-ring-warn-stroke { stroke: rgba(212,168,83,0.15); }
.radar-ring.radar-ring-danger-stroke { stroke: rgba(196,69,60,0.2); }
.radar-zone-label.radar-zone-breach { fill: rgba(196,69,60,0.5); }
.radar-ring.radar-ring-danger-stroke { stroke: rgba(196,69,60,0.2); }
.radar-zone-label.radar-zone-breach { fill: rgba(196,69,60,0.5); }
.radar-zone-label.radar-zone-caution { fill: rgba(180,140,40,0.5); }
.radar-pulse.radar-pulse-delay-05 { animation-delay: 0.5s; }
.radar-pulse.radar-pulse-delay-1 { animation-delay: 1s; }
.radar-pulse.radar-pulse-delay-15 { animation-delay: 1.5s; }
.radar-pulse.radar-pulse-delay-08 { animation-delay: 0.8s; }

/* NEW SECTIONS */
.current-solutions {
  padding: 120px 48px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.current-solutions h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  max-width: 700px;
  margin-bottom: 56px;
}
.section-subtitle {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--blue);
  margin-bottom: 8px;
}
.card-footer-note {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}
.section-footer-note {
  margin-top: 48px;
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}

.schema-section {
  padding: 120px 48px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.schema-header { margin-bottom: 48px; }
.schema-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.schema-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.infrastructure-note {
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  padding: 20px;
  background: var(--blue-soft);
  border-radius: 8px;
}
.code-window {
  background: #111116;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.code-header {
  padding: 12px 16px;
  background: #1A1A1F;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; gap: 8px;
}
.code-header .dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.1); }
.code-title { font-size: 11px; color: rgba(255,255,255,0.3); margin-left: auto; }
.code-window pre { padding: 24px; margin: 0; overflow-x: auto; }
.code-window code { font-family: 'JetBrains Mono', 'Fira Code', monospace; font-size: 13px; line-height: 1.6; color: #D1D1D1; }
.code-window .key { color: #569CD6; }
.code-window .string { color: #CE9178; }
.code-window .num { color: #B5CEA8; }

.deployment-status {
  margin-top: 64px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

@media (max-width: 900px) {
  .schema-content { grid-template-columns: 1fr; gap: 32px; }
}
