/* ── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Dashboard-matched palette */
  --bg:          #EEF7F2;          /* very light mint — the gradient base */
  --bg-2:        #F5FAF7;
  --white:       #FFFFFF;
  --surface:     #FFFFFF;
  --surface-2:   #F5FAF7;
  --border:      #D8EDE3;
  --border-dark: #B8D9C8;

  /* Text */
  --text:        #111820;
  --text-muted:  #5A6B62;
  --text-faint:  #93A89E;

  /* Brand green — matches dashboard buttons/accents */
  --green:       #3CBF82;
  --green-dark:  #2EA06D;
  --green-light: #E8F7F0;
  --green-dim:   rgba(60, 191, 130, 0.12);
  --green-glow:  rgba(60, 191, 130, 0.20);

  /* Status */
  --red:         #E5384A;
  --yellow:      #F0A020;
  --blue:        #3B82F6;

  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow:     0 4px 16px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.05);
  --font:       'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.18s ease;
  --max-w:      1120px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

/* Subtle gradient on the page body, matching the dashboard */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, #ddf0e8 0%, #EEF7F2 40%, #F5FAF7 100%);
  z-index: -1;
}

h1, h2, h3, h4, h5 {
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
code {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.83em;
  background: var(--green-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.1em 0.45em;
  color: var(--green-dark);
}
ul { list-style: none; }

/* ── Layout ────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section       { padding: 96px 0; }
.section--alt  { background: rgba(255,255,255,0.6); }

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 14px;
}
.section-heading {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--text);
}
.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 56px;
}

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius);
  padding: 10px 20px;
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-lg   { font-size: 1rem; padding: 13px 28px; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: 0 2px 8px rgba(60,191,130,0.25);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 0 4px 14px rgba(60,191,130,0.35);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--white);
  color: var(--text);
  border-color: var(--border-dark);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border-dark);
}
.btn-ghost:hover {
  color: var(--text);
  border-color: var(--border-dark);
  background: var(--white);
}

/* ── Navigation ────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(238, 247, 242, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), 0 4px 16px rgba(0,0,0,0.05);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}
.logo-tagline {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-style: italic;
  font-weight: 400;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }

.nav-cta { margin-left: auto; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  background: rgba(238,247,242,0.96);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.nav-mobile a:last-of-type { border-bottom: none; }
.nav-mobile a:hover { color: var(--text); }
.nav-mobile .btn { margin-top: 12px; }

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  padding: 180px 0 110px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse at 50% 30%, rgba(60,191,130,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}
.hero-headline {
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 26px;
  color: var(--text);
}
.hero-headline .accent { color: var(--green-dark); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.hero-sub strong { color: var(--text); }
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-note {
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--text-faint);
}

/* ── Crisis Banner ─────────────────────────────────────── */
.crisis-banner {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
  box-shadow: var(--shadow-sm);
}
.crisis-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.crisis-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 36px;
}
.crisis-num {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 5px;
}
.crisis-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  max-width: 160px;
  line-height: 1.4;
}
.crisis-divider {
  width: 1px;
  height: 36px;
  background: var(--border-dark);
  flex-shrink: 0;
}

/* ── Problem Steps ─────────────────────────────────────── */
.problem-steps {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 580px;
}
.problem-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
  width: 100%;
  box-shadow: var(--shadow-sm);
}
.problem-step--bad {
  border-color: rgba(229,56,74,0.25);
  background: rgba(229,56,74,0.03);
}
.step-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.problem-step h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--green-dark);
}
.problem-step--bad h3 { color: var(--red); }
.problem-step p { color: var(--text-muted); font-size: 0.9rem; }
.problem-arrow {
  font-size: 1.1rem;
  color: var(--text-faint);
  padding: 8px 28px;
}

/* ── Pillars ───────────────────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pillar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.pillar:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.pillar-icon {
  width: 42px;
  height: 42px;
  background: var(--green-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  margin-bottom: 18px;
}
.pillar h3 { font-size: 1.1rem; margin-bottom: 10px; }
.pillar p  { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }

/* ── Steps Grid ────────────────────────────────────────── */
.steps-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 52px;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  flex: 1;
  box-shadow: var(--shadow-sm);
}
.step-card-num {
  width: 30px;
  height: 30px;
  background: var(--green-dim);
  border: 1.5px solid rgba(60,191,130,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 14px;
}
.step-card h3 { font-size: 1rem; margin-bottom: 8px; }
.step-card p  { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }
.step-connector {
  width: 40px;
  height: 1px;
  background: var(--border-dark);
  align-self: center;
  flex-shrink: 0;
  position: relative;
}
.step-connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -4px;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--border-dark);
  border-top: 1.5px solid var(--border-dark);
  transform: rotate(45deg);
}

/* ── Terminal ──────────────────────────────────────────── */
.terminal {
  background: #1A2420;
  border: 1px solid #2A3830;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  font-family: 'SF Mono', 'Fira Code', 'Fira Mono', monospace;
}
.terminal-bar {
  background: #232E29;
  border-bottom: 1px solid #2A3830;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.t-dot { width: 11px; height: 11px; border-radius: 50%; }
.t-dot--red    { background: #FF5F57; }
.t-dot--yellow { background: #FFBD2E; }
.t-dot--green  { background: #28C840; }
.t-title {
  margin-left: 8px;
  font-size: 0.73rem;
  color: #5A7060;
  font-family: var(--font);
}
.terminal-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.t-line   { font-size: 0.78rem; display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.t-time   { color: #4A6050; flex-shrink: 0; }
.t-event  { font-weight: 600; flex-shrink: 0; }
.t-event--ok   { color: #3CBF82; }
.t-event--warn { color: #F0A020; }
.t-meta   { color: #7A9080; }

/* ── Dashboard Features ────────────────────────────────── */
.dashboard-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.dash-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.dash-feature:hover {
  border-color: var(--border-dark);
  box-shadow: var(--shadow);
}
.dash-icon {
  width: 34px;
  height: 34px;
  background: var(--green-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  flex-shrink: 0;
  margin-top: 2px;
}
.dash-feature h4 { font-size: 0.92rem; margin-bottom: 5px; }
.dash-feature p  { font-size: 0.83rem; color: var(--text-muted); line-height: 1.55; }

/* ── Pricing ───────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.pricing-card--featured {
  border-color: var(--green);
  box-shadow: 0 0 0 1px var(--green), var(--shadow-lg);
}
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(60,191,130,0.3);
}
.pricing-tier {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 14px;
}
.price-amount { font-size: 2.4rem; font-weight: 800; letter-spacing: -0.03em; color: var(--text); }
.price-period { font-size: 0.82rem; color: var(--text-muted); }
.pricing-desc { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 26px; line-height: 1.65; }
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
.pricing-features li {
  font-size: 0.86rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 0.78rem;
}
.pricing-note {
  margin-top: 12px;
  font-size: 0.76rem;
  color: var(--text-faint);
  text-align: center;
  line-height: 1.5;
}

/* ── Comparison ────────────────────────────────────────── */
.table-wrap {
  overflow-x: auto;
  margin-bottom: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  background: var(--white);
}
.compare-table th,
.compare-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.compare-table th {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--surface-2);
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover td     { background: var(--bg-2); }
.compare-row--us td { background: rgba(60,191,130,0.04); }
.compare-row--us td:first-child { border-left: 2.5px solid var(--green); }
.us-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  background: var(--green-dim);
  color: var(--green-dark);
  border: 1px solid rgba(60,191,130,0.25);
  border-radius: 4px;
  padding: 1px 6px;
  margin-left: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
}
.check { color: var(--green-dark); font-weight: 700; }
.cross { color: var(--text-faint); font-weight: 700; }
.dash  { color: var(--green-dark); font-size: 0.8rem; }
.green { color: var(--green-dark); font-weight: 700; }
.compare-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.compare-note strong { color: var(--text); }

/* ── Smart Suppress ────────────────────────────────────── */
.suppress-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}
.suppress-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.suppress-segment {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 12px;
}
.suppress-segment--new  { background: rgba(60,191,130,0.12); color: var(--green-dark); }
.suppress-segment--warm { background: rgba(240,160,32,0.12); color: #C07A10; }
.suppress-segment--hot  { background: rgba(229,56,74,0.10);  color: var(--red); }
.suppress-card h4 { font-size: 0.92rem; margin-bottom: 8px; }
.suppress-card p  { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.suppress-action {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 5px;
  display: inline-block;
}
.suppress-action--honor  { background: rgba(60,191,130,0.10); color: var(--green-dark); }
.suppress-action--config { background: rgba(240,160,32,0.10); color: #C07A10; }
.suppress-action--recover{ background: rgba(60,191,130,0.10); color: var(--green-dark); }

.suppress-proof {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--green-light);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.suppress-proof-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-dim);
  border-radius: 10px;
  color: var(--green-dark);
}
.suppress-proof-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 6px;
}
.suppress-proof-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.suppress-rule {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  box-shadow: var(--shadow-sm);
}
.suppress-rule strong { color: var(--text); }

/* ── CTA Section ───────────────────────────────────────── */
.cta-section {
  text-align: center;
  padding: 112px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(60,191,130,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner { position: relative; }
.cta-heading {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  max-width: 620px;
  margin: 0 auto 18px;
}
.cta-sub {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-partners {
  margin-top: 48px;
  text-align: left;
}
.cta-partner-card {
  max-width: 640px;
  margin: 0 auto;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
}
.cta-partner-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.cta-partner-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.cta-partner-card .btn { font-size: 0.85rem; }

/* ── Footer ────────────────────────────────────────────── */
.footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding-top: 60px;
}
.footer-inner {
  display: flex;
  justify-content: center;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand { flex: 1; max-width: 260px; }
.footer-tagline {
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--text-faint);
  line-height: 1.6;
}
.footer-links { display: flex; gap: 44px; flex-wrap: wrap; }
.footer-col   { display: flex; flex-direction: column; gap: 10px; min-width: 110px; }
.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 0.85rem;
  color: var(--text-faint);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--text); }
.footer-bottom { padding: 18px 0; }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-faint);
}

/* ── Reveal animations ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 900px) {
  .pillars            { grid-template-columns: 1fr; }
  .pricing-grid       { grid-template-columns: 1fr; }
  .suppress-grid      { grid-template-columns: 1fr; }
  .dashboard-features { grid-template-columns: 1fr; }
  .steps-grid         { flex-direction: column; }
  .step-connector     { width: 1px; height: 24px; align-self: auto; margin-left: 14px; }
  .step-connector::after { display: none; }
  .footer-inner       { flex-direction: column; gap: 36px; align-items: center; text-align: center; }
  .footer-brand       { max-width: none; display: flex; flex-direction: column; align-items: center; }
  .footer-brand .logo { justify-content: center; }
  .crisis-divider     { display: none; }
  .crisis-inner       { gap: 0; }
  .crisis-item        { padding: 14px 22px; }
}
@media (max-width: 768px) {
  .section  { padding: 68px 0; }
  .hero     { padding: 136px 0 76px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 310px; }
  .footer-links { gap: 28px; }
  .footer-bottom-inner { flex-direction: column; gap: 6px; text-align: center; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-badge { font-size: 0.72rem; }
  .compare-table th, .compare-table td { padding: 11px 14px; font-size: 0.8rem; }
}

/* ── Revenue Calculator ───────────────────────────────── */
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.calc-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.calc-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}
.calc-input-wrap {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
  max-width: 220px;
}
.calc-input-wrap:focus-within {
  border-color: var(--green);
}
.calc-addon {
  padding: 10px 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--surface-2);
  border-right: 1px solid var(--border);
  line-height: 1;
  flex-shrink: 0;
}
/* Suffix addons get left border instead */
.calc-input-wrap .calc-input + .calc-addon {
  border-right: none;
  border-left: 1px solid var(--border);
}
.calc-input {
  font-family: var(--font);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  background: transparent;
  border: none;
  padding: 8px 12px;
  width: 100%;
  outline: none;
}
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--border);
  outline: none;
  cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform 0.15s ease;
}
.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}
.calc-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  cursor: pointer;
}

.calc-results {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.calc-result-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.calc-result-card--green {
  border-color: var(--green);
  background: rgba(60, 191, 130, 0.04);
  box-shadow: 0 0 0 1px var(--green), var(--shadow);
}
.calc-result-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.calc-result-value {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.calc-result-value--bad {
  color: var(--red);
}
.calc-result-value--good {
  color: var(--green-dark);
}
.calc-result-hint {
  font-size: 0.82rem;
  color: var(--text-faint);
}
.calc-methodology {
  margin-top: 8px;
}
.calc-methodology-toggle {
  font-size: 0.8rem;
  color: var(--green-dark);
  cursor: pointer;
  font-weight: 500;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.calc-methodology-toggle::-webkit-details-marker { display: none; }
.calc-methodology-toggle::before {
  content: '▸';
  font-size: 0.7rem;
  transition: transform var(--transition);
}
details[open] > .calc-methodology-toggle::before {
  transform: rotate(90deg);
}
.calc-methodology-body {
  margin-top: 10px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.calc-methodology-body p + p { margin-top: 8px; }
.calc-methodology-body strong { color: var(--text); }
.calc-formula {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.75rem;
  background: var(--bg);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

/* ── Extensions Banner ────────────────────────────────── */
.extensions-banner {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  box-shadow: var(--shadow-sm);
}
.ext-heading {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  text-align: center;
  margin-bottom: 18px;
}
.ext-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.ext-logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid;
  transition: transform var(--transition);
}
.ext-logo:hover { transform: translateY(-1px); }
.ext-logo--honey   { color: #b45309; background: #fef3c7; border-color: #fcd34d; }
.ext-logo--capital  { color: #004977; background: #e0f2fe; border-color: #7dd3fc; }
.ext-logo--coupert  { color: #b91c1c; background: #fee2e2; border-color: #fca5a5; }
.ext-logo--piggy    { color: #9d174d; background: #fce7f3; border-color: #f9a8d4; }
.ext-logo--rmn      { color: #9a3412; background: #ffedd5; border-color: #fdba74; }
.ext-logo--more {
  color: var(--text-faint);
  background: var(--surface-2);
  border-color: var(--border-dark);
  font-size: 0.78rem;
}

@media (max-width: 900px) {
  .calc-grid { grid-template-columns: 1fr; }
}

/* ── Accessibility ─────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}
