/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0A1628;
  --bg-2: #0F2040;
  --fg: #F8FAFC;
  --fg-muted: #94A3B8;
  --accent: #F59E0B;
  --accent-dim: #B47807;
  --accent-glow: rgba(245, 158, 11, 0.15);
  --border: rgba(148, 163, 184, 0.1);
  --border-accent: rgba(245, 158, 11, 0.3);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(10, 22, 40, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.nav-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  padding: 4px 10px;
  border-radius: 100px;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  bottom: 100px;
  left: -100px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border);
  pointer-events: none;
}

.orb-1 {
  width: 320px;
  height: 320px;
  top: 20%;
  right: 15%;
  opacity: 0.3;
}

.orb-2 {
  width: 180px;
  height: 180px;
  bottom: 25%;
  right: 30%;
  opacity: 0.15;
  border-color: var(--border-accent);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  opacity: 0.4;
}

.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.headline-line { display: block; }

.headline-accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 300;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-pillars {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 48px;
}

.pillar { flex: 1; }

.pillar-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.pillar-desc {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

.pillar-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* Briefing Card */
.briefing-card {
  background: rgba(15, 32, 64, 0.8);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(245, 158, 11, 0.05) inset;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.card-signal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

.card-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
}

.card-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }

.card-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s;
}

.card-item:hover { background: rgba(245, 158, 11, 0.05); }

.card-item-icon { flex-shrink: 0; margin-top: 3px; }

.card-item-content { flex: 1; }

.card-item-title {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 3px;
  line-height: 1.3;
}

.card-item-meta {
  display: block;
  font-size: 0.7rem;
  color: var(--fg-muted);
}

.card-badge {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  padding: 3px 8px;
  border-radius: 100px;
  flex-shrink: 0;
  white-space: nowrap;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.card-footer-arrow { color: var(--accent); font-weight: 500; }

/* === BRIEFING SECTION === */
.briefing-section {
  padding: 120px 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 80px;
  align-items: center;
}

.briefing-text .section-heading,
.monitoring-text .section-heading,
.roadmap-text .section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 16px 0 20px;
}

.section-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 36px;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.briefing-features { display: flex; flex-direction: column; gap: 24px; }

.bf-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.bf-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bf-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.bf-item p { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.5; }

/* Briefing visual - stacked cards */
.briefing-visual { position: relative; height: 420px; }

.briefing-card-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.stack-card {
  position: absolute;
  background: rgba(15, 32, 64, 0.7);
  border: 1px solid var(--border);
  border-radius: 16px;
  backdrop-filter: blur(20px);
}

.stack-card-3 {
  width: 85%;
  height: 200px;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(-4deg);
  opacity: 0.3;
}

.stack-card-2 {
  width: 90%;
  height: 220px;
  top: 50%;
  left: 5%;
  transform: translateY(-50%) rotate(-2deg);
  opacity: 0.5;
}

.stack-card-1 {
  width: 100%;
  height: 240px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-color: var(--border-accent);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  z-index: 1;
}

.stack-inner {
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stack-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.stack-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
}

.stack-score { margin-bottom: 20px; }

.score-bar {
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  margin-bottom: 6px;
  overflow: hidden;
}

.score-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-dim), var(--accent));
  border-radius: 3px;
}

.stack-score span { font-size: 0.75rem; color: var(--fg-muted); }

.stack-actions { display: flex; flex-direction: column; gap: 8px; }

.stack-action {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  padding: 10px 16px;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s;
}

.stack-action:hover { background: rgba(245, 158, 11, 0.2); }

.stack-action-2 {
  color: var(--fg-muted);
  background: rgba(255,255,255,0.04);
  border-color: var(--border);
}

.stack-action-2:hover { background: rgba(255,255,255,0.08); }

/* === MONITORING SECTION === */
.monitoring-section {
  padding: 120px 40px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.monitoring-inner {
  grid-template-columns: 1fr 1fr;
}

/* Signal ring visualization */
.monitor-ring {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.ring-outer {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring-mid {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ring-core {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
}

.core-label {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.core-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.ring-blips {
  position: absolute;
  inset: 0;
}

.blip {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.blip-1 { top: 15px; left: 50%; transform: translateX(-50%); animation: pulse-dot 1.5s infinite 0s; }
.blip-2 { top: 35%; right: 8px; animation: pulse-dot 1.5s infinite 0.3s; }
.blip-3 { bottom: 15px; left: 50%; transform: translateX(-50%); animation: pulse-dot 1.5s infinite 0.6s; }
.blip-4 { bottom: 35%; left: 8px; animation: pulse-dot 1.5s infinite 0.9s; }
.blip-5 { top: 45%; left: 4px; animation: pulse-dot 1.5s infinite 1.2s; }

.ring-arc {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245, 158, 11, 0.15);
}

.arc-1 { width: 260px; height: 260px; animation: spin 8s linear infinite; }
.arc-2 { width: 240px; height: 240px; animation: spin 6s linear infinite reverse; border-style: dashed; }
.arc-3 { width: 220px; height: 220px; animation: spin 10s linear infinite; }

@keyframes spin { to { transform: rotate(360deg); } }

.ring-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 240px;
  font-size: 0.75rem;
}

.ring-label { color: var(--fg-muted); }
.ring-value { font-weight: 700; color: var(--accent); }

.ring-label-row-2 { width: 260px; }

/* Monitoring steps */
.monitoring-steps { display: flex; flex-direction: column; gap: 32px; }

.m-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.m-step-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.m-step strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.m-step p { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.6; }

/* === ROADMAP SECTION === */
.roadmap-section {
  padding: 120px 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.roadmap-inner {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

/* Roadmap path */
.rm-path {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.rm-node {
  position: relative;
  padding-left: 32px;
  padding-bottom: 40px;
}

.rm-node::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 28px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--border));
}

.rm-node:last-child::before { display: none; }

.rm-node::after {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--bg);
  box-shadow: 0 0 12px var(--accent);
}

.rm-node-1::after { background: var(--accent); }

.rm-node-inner {
  background: rgba(15, 32, 64, 0.6);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  transition: border-color 0.2s;
}

.rm-node-inner:hover { border-color: var(--border-accent); }

.rm-phase {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.rm-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.rm-tasks { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }

.rm-task {
  font-size: 0.82rem;
  color: var(--fg-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}

.rm-task::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.rm-effort {
  font-size: 0.7rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* === CLOSING === */
.closing-section {
  padding: 140px 40px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.closing-inner { position: relative; max-width: 900px; margin: 0 auto; text-align: center; }

.closing-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.closing-content { position: relative; }


.closing-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 16px 0 20px;
  font-style: italic;
}

.closing-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto 48px;
}

.closing-meta {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.closing-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.cm-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.cm-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg);
}

/* === FOOTER === */
.footer {
  padding: 48px 40px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--fg-muted);
  display: block;
}

.footer-links {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-align: center;
}

.footer-copy {
  font-size: 0.7rem;
  color: rgba(148, 163, 184, 0.4);
}

/* === HERO SIGNUP FORM === */
.hero-signup-form {
  margin-top: 32px;
  display: flex;
  gap: 8px;
  max-width: 440px;
}
.hero-signup-form input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  background: rgba(15, 32, 64, 0.8);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.hero-signup-form input[type="email"]:focus { border-color: var(--border-accent); }
.hero-signup-form button {
  padding: 12px 24px;
  background: var(--accent);
  color: #0A1628;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.hero-signup-form button:hover { background: #D97706; }

/* Signup success state */
.signup-success {
  margin-top: 32px;
  padding: 20px 24px;
  background: rgba(15, 32, 64, 0.8);
  border: 1px solid var(--border-accent);
  border-radius: 12px;
  max-width: 440px;
}
.signup-success-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
}
.signup-success-body {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
}
.signup-form-error {
  margin-top: 8px;
  font-size: 0.8rem;
  color: #EF4444;
}

/* === G2 REVIEW PROMPT === */
.g2-prompt {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  background: rgba(15, 32, 64, 0.95);
  border: 1px solid var(--border-accent);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(245, 158, 11, 0.08) inset;
  backdrop-filter: blur(18px);
  animation: g2-prompt-slide-up 0.4s ease-out;
}

@keyframes g2-prompt-slide-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.g2-prompt-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.g2-prompt-copy {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--fg);
  flex: 1;
  min-width: 220px;
  line-height: 1.4;
}

.g2-prompt-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.g2-prompt-cta {
  display: inline-block;
  padding: 10px 20px;
  background: var(--accent);
  color: #0A1628;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid var(--accent);
  transition: background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.g2-prompt-cta:hover {
  background: #D97706;
  border-color: #D97706;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25);
}

.g2-prompt-dismiss {
  padding: 10px 16px;
  background: transparent;
  color: var(--fg-muted);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
}

.g2-prompt-dismiss:hover {
  color: var(--fg);
  border-color: var(--border-accent);
  background: rgba(245, 158, 11, 0.05);
}

/* === NPS SURVEY === */
.nps-survey {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 124px;
  z-index: 200;
  background: rgba(15, 32, 64, 0.95);
  border: 1px solid var(--border-accent);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(245, 158, 11, 0.08) inset;
  backdrop-filter: blur(18px);
  animation: nps-survey-slide-up 0.4s ease-out;
}

@keyframes nps-survey-slide-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nps-survey-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nps-survey-prompt {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  font-style: italic;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.nps-scale {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.nps-scale-btn {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.05s;
}

.nps-scale-btn:hover {
  background: rgba(245, 158, 11, 0.10);
  border-color: var(--border-accent);
  color: var(--accent);
}

.nps-scale-btn:active { transform: scale(0.97); }

.nps-scale-btn.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #0A1628;
}

.nps-scale-legend {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.nps-comment {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nps-comment[hidden],
.nps-followup[hidden],
.nps-thanks[hidden] { display: none; }

.nps-comment-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--fg-muted);
  font-weight: 500;
}

.nps-comment-input {
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.5;
  resize: vertical;
  min-height: 56px;
  outline: none;
  transition: border-color 0.2s;
}

.nps-comment-input:focus { border-color: var(--border-accent); }

.nps-comment-submit {
  align-self: flex-end;
  padding: 8px 16px;
  background: var(--accent);
  color: #0A1628;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--accent);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s;
}

.nps-comment-submit:hover {
  background: #D97706;
  border-color: #D97706;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25);
}

.nps-followup {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nps-followup-prompt {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  font-style: italic;
  color: var(--fg);
}

.nps-thanks {
  text-align: left;
}

.nps-thanks-prompt {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 500;
}

/* === SAVINGS CALCULATOR === */
.calc-back-link {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.calc-back-link:hover { color: var(--fg); }

.savings-calc {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 40px 80px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.savings-h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 16px;
}

.savings-lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 720px;
}

.savings-input-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.savings-input {
  flex: 1;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.savings-input-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.savings-input input[type="number"] {
  padding: 12px 16px;
  background: rgba(15, 32, 64, 0.8);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.savings-input input[type="number"]:focus { border-color: var(--border-accent); }

.savings-summary {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.3;
  padding: 24px 28px;
  background: rgba(15, 32, 64, 0.6);
  border: 1px solid var(--border-accent);
  border-radius: 14px;
}

.savings-figure {
  color: var(--accent);
  font-weight: 900;
  letter-spacing: -0.01em;
}

.savings-footnote {
  font-size: 0.78rem;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 900px;
}

.savings-table {
  display: grid;
  grid-template-columns: minmax(160px, 1.2fr) repeat(3, minmax(0, 1.6fr));
  background: rgba(15, 32, 64, 0.5);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.savings-table-row {
  display: contents;
}

.savings-table-row > .savings-cell,
.savings-table-row > .savings-cell-label,
.savings-table-row > .savings-cell-stack-label {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--fg);
}

.savings-table-head > .savings-cell,
.savings-table-head > .savings-cell-label,
.savings-table-head > .savings-cell-stack-label { border-top: none; }

.savings-cell-label {
  color: var(--fg-muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.savings-cell-stack-label {
  background: rgba(245, 158, 11, 0.04);
}

.savings-cell-col {
  background: rgba(245, 158, 11, 0.04);
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}

.savings-col-tag {
  font-size: 0.72rem;
  color: var(--fg-muted);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.savings-cell-sf {
  background: rgba(245, 158, 11, 0.06);
  border-left: 2px solid var(--border-accent);
  font-weight: 600;
}

.savings-cell-num {
  font-variant-numeric: tabular-nums;
}

.savings-cell-range {
  font-style: italic;
  color: var(--fg-muted);
}

.calc-signup-form {
  margin-top: 8px;
  max-width: 540px;
}

.savings-table-head .savings-cell-stack-label {
  display: flex;
  align-items: center;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .briefing-text .section-inner,
  .monitoring-inner,
  .roadmap-inner {
    grid-template-columns: 1fr;
  }

  .hero-pillars {
    flex-direction: column;
    gap: 16px;
  }

  .pillar-divider { display: none; }

  .briefing-visual { display: none; }
  .monitor-ring { display: none; }
  .roadmap-visual { display: none; }

  .nav { padding: 16px 20px; }
  .hero { padding: 100px 20px 60px; }
  .briefing-section,
  .monitoring-section,
  .roadmap-section,
  .closing-section { padding: 80px 20px; }

  .closing-meta { gap: 24px; }

  .footer-inner { flex-direction: column; text-align: center; }

  .savings-input-row {
    flex-direction: column;
  }

  .savings-table {
    grid-template-columns: 1fr;
  }

  .savings-table-head > .savings-cell-col {
    border-top: 2px solid var(--border-accent);
  }

  .savings-table-row > .savings-cell,
  .savings-table-row > .savings-cell-label {
    padding: 12px 16px;
    font-size: 0.9rem;
  }

  .savings-table-row > .savings-cell-label {
    background: rgba(245, 158, 11, 0.08);
    border-top: 2px solid var(--border);
  }

  .savings-table-row > .savings-cell-sf {
    border-left: none;
    background: rgba(245, 158, 11, 0.05);
  }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.2rem; }
  .closing-heading { font-size: 1.6rem; }
  .briefing-card { padding: 16px; }
  .g2-prompt { left: 12px; right: 12px; bottom: 12px; }
  .g2-prompt-inner { flex-direction: column; align-items: stretch; padding: 16px; }
  .g2-prompt-actions { width: 100%; }
  .g2-prompt-cta, .g2-prompt-dismiss { flex: 1; text-align: center; }
  .nps-survey { left: 12px; right: 12px; bottom: 156px; padding: 0; }
  .nps-survey-inner { padding: 14px 16px; }
  .nps-scale-btn { width: 38px; height: 38px; font-size: 0.85rem; }

  .savings-calc { padding: 100px 20px 60px; }
  .savings-h1 { font-size: 1.8rem; }
  .calc-signup-form { max-width: 100%; }
}

@media (max-width: 360px) {
  .nps-scale-btn { width: 32px; height: 32px; font-size: 0.78rem; }
}
