/* Release Assurance — Shared Styles
   Font loaded via <link> in HTML head */

:root {
  --navy: #0a1628;
  --navy-light: #121f38;
  --navy-mid: #1a2d4d;
  --green: #10b981;
  --green-dark: #059669;
  --green-light: #34d399;
  --green-glow: #6ee7b7;
  --cyan: #06b6d4;
  --cyan-light: #22d3ee;
  --orange: #f59e0b;
  --red: #ef4444;
  --purple: #8b5cf6;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-800); background: var(--white); line-height: 1.6; overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,22,40,0.95); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06); transition: all 0.3s;
}
.nav.scrolled { background: rgba(10,22,40,0.98); box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 72px;
}
.logo { display: flex; align-items: center; gap: 10px; cursor: pointer; text-decoration: none; }
.logo-mark-image { height: 30px; width: auto; display: block; }
.logo-mark-image.header-logo { height: 40px; }
.logo-mark-image.footer-logo { height: 34px; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  color: var(--gray-400); text-decoration: none; font-size: 0.9rem;
  font-weight: 500; transition: color 0.2s; cursor: pointer;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: white !important; padding: 10px 24px; border-radius: 8px;
  font-weight: 600 !important; transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(16,185,129,0.4); }
.mobile-toggle { display: none; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }

/* ── FULL-WIDTH HERO ── */
.full-hero {
  position: relative; min-height: 100vh;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 40%, #0f2847 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding-top: 72px; text-align: center;
}
.full-hero .bg-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(rgba(255,255,255,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 60px 60px;
}
.full-hero .glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,0.15), transparent 70%);
  top: 10%; right: 5%; animation: pulse 8s ease-in-out infinite;
}
.full-hero .glow-2 {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(6,182,212,0.1), transparent 70%);
  bottom: 10%; left: 10%; animation: pulse 10s ease-in-out infinite reverse;
}
.hero-inner { position: relative; max-width: 900px; padding: 4rem 2rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(16,185,129,0.15); border: 1px solid rgba(16,185,129,0.3);
  border-radius: 100px; padding: 6px 16px; margin-bottom: 1.5rem;
  color: var(--green-light); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: blink 2s infinite; }
.full-hero h1 { font-size: 3.8rem; font-weight: 800; color: white; line-height: 1.1; margin-bottom: 1.5rem; }
.full-hero h1 .gr { background: linear-gradient(135deg, #34d399, #6ee7b7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.full-hero p.sub { font-size: 1.25rem; color: var(--gray-400); max-width: 700px; margin: 0 auto 2.5rem; line-height: 1.7; }
.scroll-arrow {
  display: inline-flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--gray-500); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; cursor: pointer; transition: color 0.2s; text-decoration: none;
}
.scroll-arrow:hover { color: var(--green-light); }
.scroll-arrow svg { animation: bounce 2s infinite; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.15); opacity: 1; } }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ── SECTIONS ── */
section { padding: 6rem 2rem; }
.container { max-width: 1280px; margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--green); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem;
}
.section-label::before { content: ''; width: 20px; height: 2px; background: var(--green); border-radius: 2px; }
.section-title { font-size: 2.5rem; font-weight: 800; color: var(--gray-900); line-height: 1.2; margin-bottom: 1rem; }
.section-title .gr { color: var(--green); }
.section-subtitle { font-size: 1.1rem; color: var(--gray-500); max-width: 620px; line-height: 1.7; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .section-subtitle { margin: 0 auto; }

/* ── PROBLEM CARDS ── */
.problem-section { background: var(--gray-50); }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.problem-card {
  background: white; border-radius: 16px; padding: 1.75rem;
  border: 1px solid var(--gray-200); transition: all 0.3s;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-color: var(--green); }
.problem-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 0.75rem; }
.problem-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.problem-card-icon svg { width: 22px; height: 22px; }
.problem-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--gray-900); }
.problem-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; }

/* ── SOLUTION DASHBOARD ── */
.solution-section { background: white; }
.dashboard-embed {
  margin-top: 3rem; background: white; border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08); border: 1px solid var(--gray-200);
}
.dash-topbar {
  display: flex; align-items: center; padding: 12px 1.5rem;
  background: var(--gray-50); border-bottom: 1px solid var(--gray-200);
}
.dash-dots { display: flex; gap: 6px; }
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-dot.r { background: #ef4444; } .dash-dot.y { background: #f59e0b; } .dash-dot.g { background: #22c55e; }
.dash-url { margin-left: 1rem; background: var(--gray-100); border-radius: 6px; padding: 4px 12px; font-size: 0.75rem; color: var(--gray-500); flex: 1; }
.rel-dashboard { padding: 2rem; }
.rel-top { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.rel-score-card {
  background: white; border-radius: 16px; padding: 2.5rem;
  border: 1px solid var(--gray-200); grid-row: span 2;
}
.rel-score-label { font-size: 0.8rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.rel-score-num { font-size: 4.5rem; font-weight: 900; color: var(--navy); line-height: 1; }
.rel-score-num small { font-size: 2.5rem; font-weight: 700; }
.rel-score-sub { font-size: 0.9rem; color: var(--gray-500); margin: 0.75rem 0 1.5rem; }
.rel-score-bar { height: 12px; border-radius: 12px; background: linear-gradient(90deg, #ef4444 0%, #f59e0b 25%, #eab308 50%, #22c55e 75%, #10b981 100%); position: relative; }
.rel-score-bar::after {
  content: ''; position: absolute; right: 0; top: -4px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--green); border: 3px solid white; box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.rel-bar-labels { display: flex; justify-content: space-between; margin-top: 6px; font-size: 0.7rem; color: var(--gray-400); }
.rel-kpi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.rel-kpi { background: white; border-radius: 14px; padding: 1.5rem; border: 1px solid var(--gray-200); }
.rel-kpi-label { font-size: 0.75rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.5rem; }
.rel-kpi-num { font-size: 2.2rem; font-weight: 800; color: var(--navy); }
.rel-kpi-num small { font-size: 1.2rem; font-weight: 500; color: var(--gray-400); }
.rel-kpi-sub { font-size: 0.8rem; color: var(--gray-500); margin-bottom: 0.75rem; }
.rel-kpi-chart { height: 40px; display: flex; align-items: flex-end; gap: 3px; }
.rel-kpi-chart .bar { flex: 1; border-radius: 2px; min-width: 4px; }

/* ── IMAGINE SECTION ── */
.imagine-section {
  background: linear-gradient(160deg, var(--navy) 0%, #0f2847 100%);
  color: white; padding: 7rem 2rem; position: relative; overflow: hidden;
}
.imagine-section .bg-grid { position: absolute; inset: 0; opacity: 0.03;
  background-image: linear-gradient(rgba(255,255,255,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 60px 60px;
}
.imagine-inner { position: relative; max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.imagine-left h2 { font-size: 2.5rem; font-weight: 800; line-height: 1.2; margin-bottom: 1.5rem; }
.imagine-left h2 .gr { color: var(--green-light); }
.imagine-left p { font-size: 1.1rem; color: var(--gray-400); line-height: 1.7; margin-bottom: 2rem; }
.imagine-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.imagine-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 1.5rem; text-align: center; transition: all 0.3s;
}
.imagine-card:hover { background: rgba(16,185,129,0.08); border-color: rgba(16,185,129,0.3); }
.imagine-card-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.imagine-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--green-light); margin-bottom: 0.25rem; }
.imagine-card p { font-size: 0.78rem; color: var(--gray-500); line-height: 1.4; }

.btn-primary {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: white; padding: 14px 32px; border-radius: 10px; border: none;
  font-size: 1rem; font-weight: 600; cursor: pointer;
  transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(16,185,129,0.4); }
.btn-white {
  background: white; color: var(--green-dark); padding: 14px 36px; border-radius: 10px;
  border: none; font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.btn-outline-white {
  background: transparent; color: white; padding: 14px 32px; border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.3); font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }

/* ── PLATFORM: WHAT MAKES US DIFFERENT ── */
.diff-section { background: white; }
.diff-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1100px; margin: 0 auto; }
.diff-hero-left h2 { font-size: 2.5rem; font-weight: 800; color: var(--gray-900); line-height: 1.2; margin-bottom: 1rem; }
.diff-hero-left h2 .gr { color: var(--green); }
.diff-hero-left p { font-size: 1.1rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 1.5rem; }
.diff-hero-left .diff-stat { display: flex; gap: 2rem; margin-top: 1.5rem; }
.diff-stat-num { font-size: 2rem; font-weight: 800; color: var(--green); }
.diff-stat-label { font-size: 0.8rem; color: var(--gray-500); }
.diff-cards { display: flex; flex-direction: column; gap: 0.75rem; }
.diff-card {
  display: flex; align-items: flex-start; gap: 16px; padding: 1.25rem 1.5rem;
  background: rgba(16,185,129,0.04); border: 1px solid rgba(16,185,129,0.15);
  border-radius: 14px; transition: all 0.3s;
}
.diff-card:hover { background: rgba(16,185,129,0.08); border-color: rgba(16,185,129,0.3); transform: translateX(4px); }
.diff-card svg { flex-shrink: 0; margin-top: 2px; }
.diff-card-text h4 { font-size: 0.95rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.25rem; }
.diff-card-text p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.6; }

/* ── PERSPECTIVE SHIFT ── */
.perspective-section {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 40%, #0f2847 100%);
  color: white; padding: 6rem 2rem; position: relative; overflow: hidden;
}
.perspective-section .bg-grid { position: absolute; inset: 0; opacity: 0.03;
  background-image: linear-gradient(rgba(255,255,255,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 60px 60px;
}
.perspective-inner { position: relative; max-width: 900px; margin: 0 auto; text-align: center; }
.perspective-shift {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem; align-items: center;
  margin: 3rem 0; max-width: 700px; margin-left: auto; margin-right: auto;
}
.perspective-before, .perspective-after {
  padding: 2rem; border-radius: 16px; text-align: center;
}
.perspective-before {
  background: rgba(239,68,68,0.06); border: 1px solid rgba(239,68,68,0.15);
}
.perspective-after {
  background: rgba(16,185,129,0.06); border: 1px solid rgba(16,185,129,0.2);
}
.perspective-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.perspective-before .perspective-label { color: var(--red); }
.perspective-after .perspective-label { color: var(--green-light); }
.perspective-word { font-size: 1.8rem; font-weight: 800; }
.perspective-before .perspective-word { color: rgba(239,68,68,0.7); }
.perspective-after .perspective-word { color: var(--green-light); }
.perspective-sub { font-size: 0.8rem; color: var(--gray-400); margin-top: 0.5rem; }
.perspective-arrow { font-size: 2rem; color: var(--gray-500); }
.perspective-quotes { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 3rem; }
.perspective-quote {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px; padding: 1.5rem 2rem; text-align: left;
}
.perspective-quote p { font-size: 0.95rem; color: var(--gray-300); line-height: 1.6; font-style: italic; }
.perspective-quote .source { font-size: 0.8rem; color: var(--green-light); font-weight: 600; margin-top: 0.5rem; font-style: normal; }

/* ── COMPARISON ── */
.comparison-section { background: var(--gray-50); }
.comparison-table { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 950px; margin: 0 auto; }
.comp-col { border-radius: 20px; padding: 2.5rem; }
.comp-col.managed { background: white; border: 2px solid var(--green); box-shadow: 0 10px 40px rgba(16,185,129,0.1); }
.comp-col.inhouse { background: white; border: 1px solid var(--gray-200); }
.comp-col h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; }
.comp-col.managed h3 { color: var(--green); }
.comp-col .comp-sub { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--gray-200); }
.comp-row { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 1rem; font-size: 0.88rem; line-height: 1.5; color: var(--gray-700); }
.comp-check { flex-shrink: 0; font-size: 1rem; margin-top: 1px; }

/* ── GREEN CTA WITH SEAL ── */
.green-cta {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  padding: 5rem 2rem; color: white; text-align: center; position: relative; overflow: hidden;
}
.green-cta::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.05), transparent);
}
.green-cta-inner { position: relative; max-width: 800px; margin: 0 auto; }
.green-cta h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 1rem; }
.green-cta p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 2rem; line-height: 1.7; }
.seal {
  width: 140px; height: 140px; border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.4);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin: 0 auto 2rem; position: relative;
}
.seal::before {
  content: ''; position: absolute; inset: 6px; border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.25);
}
.seal-icon { font-size: 2rem; margin-bottom: 2px; }
.seal-text { font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.15em; }
.seal-sub { font-size: 0.5rem; font-weight: 600; opacity: 0.8; letter-spacing: 0.1em; text-transform: uppercase; }

/* ── CLOSE DARK CTA ── */
.close-cta {
  background: linear-gradient(160deg, var(--navy) 0%, #0f2847 100%);
  color: white; text-align: center; padding: 6rem 2rem;
  position: relative; overflow: hidden;
}
.close-cta .bg-grid { position: absolute; inset: 0; opacity: 0.03;
  background-image: linear-gradient(rgba(255,255,255,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 60px 60px;
}
.close-text { font-size: 2.8rem; font-weight: 800; line-height: 1.2; margin-bottom: 1rem; position: relative; }
.close-text .gr { color: var(--green-light); }
.close-sub { font-size: 1.1rem; color: var(--gray-400); margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.7; position: relative; }

/* ── WORKFLOW RUNS ── */
.runs-embed { max-width: 900px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: 1rem; }
.run-card {
  background: white; border-radius: 14px; padding: 1.5rem 2rem;
  border: 1px solid var(--gray-200); display: flex; align-items: center; gap: 2rem; transition: all 0.3s;
}
.run-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.run-date { text-align: center; width: 60px; flex-shrink: 0; }
.run-date-month { font-size: 0.7rem; font-weight: 700; color: var(--green); text-transform: uppercase; background: rgba(16,185,129,0.1); border-radius: 4px; padding: 2px 8px; }
.run-date-day { font-size: 1.5rem; font-weight: 800; color: var(--navy); }
.run-date-time { font-size: 0.65rem; color: var(--gray-400); }
.run-info { flex: 1; }
.run-info-top { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.run-id { font-size: 1.05rem; font-weight: 700; color: var(--navy); }
.run-badge { font-size: 0.65rem; font-weight: 700; padding: 3px 10px; border-radius: 4px; text-transform: uppercase; }
.run-badge.pass { background: rgba(16,185,129,0.1); color: var(--green); }
.run-tenant { font-size: 0.82rem; color: var(--gray-500); margin-bottom: 6px; }
.run-dots { display: flex; gap: 4px; }
.run-dots span { width: 24px; height: 6px; border-radius: 3px; }
.run-dots span.pass { background: var(--green); }
.run-result { font-size: 0.75rem; color: var(--gray-400); margin-top: 4px; }
.run-meta { text-align: right; flex-shrink: 0; }
.run-meta-duration { font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.run-meta-label { font-size: 0.7rem; color: var(--gray-400); }
.run-meta-type { font-size: 0.7rem; color: var(--gray-400); border: 1px solid var(--gray-200); border-radius: 4px; padding: 2px 8px; margin-top: 4px; display: inline-block; }

/* ── HOW IT WORKS STEPS ── */
.steps-section { background: white; padding: 6rem 2rem; }
.steps-vertical { max-width: 800px; margin: 0 auto; position: relative; }
.steps-vertical::before {
  content: ''; position: absolute; left: 31px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(180deg, var(--green), var(--cyan), var(--green)); opacity: 0.3;
}
.step-v { display: flex; gap: 2rem; margin-bottom: 3.5rem; position: relative; }
.step-v:last-child { margin-bottom: 0; }
.step-v-number {
  width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: white; font-weight: 800; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(16,185,129,0.3); position: relative; z-index: 1;
}
.step-v-content { flex: 1; padding-top: 10px; }
.step-v-content h3 { font-size: 1.25rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.75rem; }
.step-v-content p { font-size: 0.95rem; color: var(--gray-500); line-height: 1.7; }
.step-v-sample {
  margin-top: 1rem; background: var(--navy); border-radius: 12px;
  padding: 1.25rem 1.5rem; font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  font-size: 0.78rem; line-height: 1.8; color: var(--gray-300);
  border: 1px solid rgba(255,255,255,0.06); overflow-x: auto;
}
.step-v-sample .kw { color: var(--cyan-light); font-weight: 600; }
.step-v-sample .str { color: var(--green-light); }
.step-v-sample .cm { color: var(--gray-500); font-style: italic; }

/* Video cards */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
.video-card {
  background: var(--navy); border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06); transition: all 0.3s; cursor: pointer;
}
.video-card:hover { border-color: var(--green); box-shadow: 0 8px 30px rgba(16,185,129,0.15); transform: translateY(-2px); }
.video-card-preview {
  height: 120px; background: linear-gradient(135deg, rgba(16,185,129,0.08), rgba(6,182,212,0.08));
  display: flex; align-items: center; justify-content: center; position: relative;
}
.video-play-btn {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(16,185,129,0.25); border: 2px solid var(--green);
  display: flex; align-items: center; justify-content: center;
}
.video-play-btn svg { width: 18px; height: 18px; fill: var(--green); margin-left: 2px; }
.video-card-info { padding: 12px 14px; }
.video-card-info h5 { font-size: 0.82rem; font-weight: 700; color: white; margin-bottom: 2px; }
.video-card-info span { font-size: 0.7rem; color: var(--gray-500); }

/* Step 4 - Alert embed */
.alert-embed { margin-top: 1.5rem; }
.alert-card {
  background: white; border-radius: 14px; padding: 1.5rem;
  border: 1px solid var(--gray-200); margin-bottom: 1rem;
}
.alert-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.alert-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.alert-card-header h5 { font-size: 0.85rem; font-weight: 700; color: var(--gray-900); }
.alert-card-header span { font-size: 0.7rem; color: var(--gray-400); margin-left: auto; }

.rel-map-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.rel-map-cell {
  border-radius: 8px; padding: 8px 10px; font-size: 0.72rem;
  font-weight: 600; display: flex; align-items: center; gap: 5px;
}
.rel-map-cell .dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.rel-map-cell.pass { background: rgba(16,185,129,0.06); color: var(--green); }
.rel-map-cell.pass .dot { background: var(--green); }
.rel-map-cell.fail { background: rgba(239,68,68,0.06); color: var(--red); }
.rel-map-cell.fail .dot { background: var(--red); }

.email-preview {
  background: var(--gray-50); border-radius: 12px; padding: 1.25rem;
  border: 1px solid var(--gray-200);
}
.email-preview-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid var(--gray-200); }
.email-preview-logo {
  width: 28px; height: 28px; border-radius: 6px;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  display: flex; align-items: center; justify-content: center;
}
.email-preview-logo svg { width: 14px; height: 8px; }

/* ── MANAGED MEANS HANDS-OFF ── */
.handsoff-section { background: var(--gray-50); }
.handsoff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1100px; margin: 0 auto; }
.handsoff-points { display: flex; flex-direction: column; gap: 1.75rem; }
.handsoff-point { display: flex; gap: 1rem; align-items: flex-start; }
.handsoff-point-icon {
  width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; background: var(--gray-100);
}
.handsoff-point-icon svg { width: 22px; height: 22px; }
.handsoff-point h4 { font-size: 1.05rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.2rem; }
.handsoff-point p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; }

/* ── WHY IT MATTERS ── */
.why-narrative-section { background: white; padding: 6rem 2rem; }
.why-narrative { max-width: 800px; margin: 0 auto; }
.why-narrative h2 { font-size: 2rem; font-weight: 700; color: var(--gray-900); margin-bottom: 1.5rem; }
.why-narrative p { font-size: 1.05rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 1rem; }
.why-narrative p strong { color: var(--gray-900); }
.mission-card {
  max-width: 700px; margin: 0 auto 3rem;
  background: white; border-radius: 16px; padding: 2rem 2.5rem;
  border: 1px solid var(--gray-200); border-left: 4px solid var(--green);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.mission-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--green); margin-bottom: 0.75rem; }
.mission-card p { font-size: 0.95rem; color: var(--gray-600); line-height: 1.7; }
.values-section { background: var(--gray-50); padding: 6rem 2rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.value-card {
  background: white; border-radius: 16px; padding: 2rem;
  border: 1px solid var(--gray-200); text-align: center; transition: all 0.3s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.06); border-color: var(--green); }
.value-icon {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 1.2rem;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(16,185,129,0.1), rgba(6,182,212,0.1));
}
.value-icon svg { width: 26px; height: 26px; }
.value-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--gray-900); }
.value-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; }

/* Founder */
.founder-section {
  background: linear-gradient(160deg, var(--navy), var(--navy-light));
  padding: 6rem 2rem; color: white;
}
.founder-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.founder-inner h2 { font-size: 2rem; font-weight: 700; margin-bottom: 2rem; }
.founder-quote {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 3rem; position: relative; text-align: left;
}
.founder-quote::before {
  content: '\201C'; position: absolute; top: -10px; left: 30px;
  font-size: 5rem; color: rgba(16,185,129,0.2); line-height: 1; font-family: Georgia, serif;
}
.founder-quote p { font-size: 1.05rem; color: var(--gray-300); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.founder-meta { display: flex; align-items: center; gap: 1rem; }
.founder-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: white; font-size: 1.1rem;
}
.founder-meta-info { text-align: left; }
.founder-name { font-weight: 700; color: white; font-size: 0.95rem; }
.founder-role { color: var(--gray-400); font-size: 0.8rem; line-height: 1.4; }
.founder-li { color: var(--green-light); font-size: 0.8rem; text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 4px; margin-top: 4px; }
.founder-li:hover { color: white; }

/* ── CONTACT ── */
.contact-hero {
  background: linear-gradient(160deg, var(--navy), var(--navy-light));
  color: white; padding: 10rem 2rem 5rem;
}
.contact-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.contact-info h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; }
.contact-info p { color: var(--gray-400); font-size: 1.05rem; line-height: 1.7; margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; color: var(--gray-300); font-size: 0.95rem; }
.contact-detail-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(16,185,129,0.15); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-form {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 2.5rem; backdrop-filter: blur(10px);
}
.contact-form h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--gray-400); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border-radius: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: white; font-size: 0.95rem; font-family: inherit; outline: none; transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-group select option { background: var(--navy); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%; padding: 14px; border-radius: 10px; border: none;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: white; font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.2s; margin-top: 0.5rem;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(16,185,129,0.4); }

/* ── FOOTER ── */
.footer {
  background: var(--navy); color: var(--gray-400); padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-top: 1rem; max-width: 300px; }
.footer-col h4 { color: white; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.footer-col a { display: block; color: var(--gray-400); text-decoration: none; font-size: 0.85rem; padding: 0.3rem 0; transition: color 0.2s; cursor: pointer; }
.footer-col a:hover { color: white; }
.footer-bottom {
  max-width: 1280px; margin: 3rem auto 0; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; font-size: 0.8rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .full-hero h1 { font-size: 2.8rem; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .rel-top { grid-template-columns: 1fr; }
  .rel-score-card { grid-row: span 1; }
  .imagine-inner { grid-template-columns: 1fr; }
  .diff-hero-grid { grid-template-columns: 1fr; }
  .comparison-table { grid-template-columns: 1fr; }
  .handsoff-grid { grid-template-columns: 1fr; }
  .perspective-shift { grid-template-columns: 1fr; }
  .perspective-shift .perspective-arrow { transform: rotate(90deg); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--navy); padding: 1.5rem 2rem; gap: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .full-hero h1 { font-size: 2.2rem; }
  .problem-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 2rem; }
  .close-text { font-size: 2rem; }
  .imagine-left h2 { font-size: 2rem; }
  .imagine-cards { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .rel-map-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

.fade-up { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
