/* subscribe.css — /subscribe landing page only */

:root {
  --bg: #0a0c10;
  --bg-elevated: #12151c;
  --bg-card: #181c26;
  --fg: #e4e7ef;
  --fg-muted: #8a90a0;
  --accent: #00e5a0;
  --accent-dim: rgba(0, 229, 160, 0.12);
  --red: #ff4d6a;
  --yellow: #ffc244;
  --border: rgba(255, 255, 255, 0.06);
  --font: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

/* ---- LAYOUT ---- */
.sub-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 5vw;
}

.sub-section {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}

/* ---- HERO ---- */
.sub-hero {
  padding: 6rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sub-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(0, 229, 160, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.sub-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}

.sub-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.accent { color: var(--accent); }

.sub-tagline {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.sub-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.sub-guarantee {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
  letter-spacing: 0.01em;
}

/* ---- CTAs ---- */
.cta-primary {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 2.25rem;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: opacity 0.15s, transform 0.15s;
  cursor: pointer;
}

.cta-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.cta-full {
  display: block;
  text-align: center;
  margin-top: 2rem;
  font-size: 1.1rem;
  padding: 1rem 2rem;
}

/* ---- TRUST STRIP ---- */
.trust-strip {
  padding: 1.5rem 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.trust-stat {
  font-size: 0.92rem;
  color: var(--fg-muted);
}

.trust-stat strong {
  color: var(--fg);
  font-weight: 600;
}

.trust-divider {
  color: var(--border);
  font-size: 1.2rem;
}

/* ---- SECTION LABELS ---- */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.sub-section h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

/* ---- FEATURE CARDS ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  transition: border-color 0.2s;
}

.feature-card:hover {
  border-color: rgba(0, 229, 160, 0.25);
}

.feature-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ---- CASE STUDY ---- */
.case-section {
  background: var(--bg-elevated);
}

.findings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.finding-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}

.finding-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  flex-wrap: wrap;
}

.finding-severity {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-weight: 500;
}

.finding-severity.high {
  background: rgba(255, 77, 106, 0.15);
  color: var(--red);
}

.finding-severity.medium {
  background: rgba(255, 194, 68, 0.15);
  color: var(--yellow);
}

.finding-dim {
  font-size: 0.78rem;
  color: var(--fg-muted);
}

.finding-card h4 {
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.finding-body {
  font-size: 0.87rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.finding-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  gap: 0.5rem;
  flex-wrap: wrap;
}

.metric-label {
  font-size: 0.78rem;
  color: var(--fg-muted);
}

.metric-value {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent);
}

/* Blurred masked values */
.metric-value.masked {
  filter: blur(3.5px);
  user-select: none;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.case-caption {
  font-style: italic;
  color: var(--fg-muted);
  font-size: 0.95rem;
  text-align: center;
  padding-top: 1rem;
}

/* ---- PRICING ---- */
.pricing-section { }

.pricing-card {
  max-width: 520px;
  margin: 3rem auto 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.pricing-header {
  background: linear-gradient(135deg, #0d1520 0%, #12201a 100%);
  border-bottom: 1px solid var(--border);
  padding: 2rem 2rem 1.75rem;
  text-align: center;
}

.pricing-name {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.pricing-amount {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.price-amount {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-period {
  font-size: 1.1rem;
  color: var(--fg-muted);
  margin-bottom: 0.5rem;
}

.pricing-billing {
  font-size: 0.83rem;
  color: var(--fg-muted);
}

.pricing-includes {
  padding: 1.75rem 2rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-includes li {
  font-size: 0.92rem;
  color: var(--fg-muted);
  display: flex;
  gap: 0.5rem;
}

.pricing-includes li::first-letter {
  color: var(--accent);
  font-weight: 700;
}

.pricing-footnote {
  text-align: center;
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 1rem;
  padding: 0 2rem 1.75rem;
}

/* ---- FAQ ---- */
.faq-section { }

.faq-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--fg);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  padding: 1.25rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: -0.01em;
  transition: color 0.15s;
}

.faq-q::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--fg-muted);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.open .faq-q::after {
  transform: rotate(45deg);
}

.faq-q:hover { color: var(--accent); }

.faq-a {
  display: none;
  padding-bottom: 1.5rem;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-a p {
  font-size: 0.93rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* ---- FINAL CTA ---- */
.final-cta-section {
  text-align: center;
  background: var(--bg-elevated);
}

.final-cta-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}

.final-cta-inner p {
  color: var(--fg-muted);
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* ---- FOOTER ---- */
.sub-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
}

.footer-meta {
  font-size: 0.83rem;
  color: var(--fg-muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.15s;
}

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

/* ---- RESPONSIVE ---- */
@media (max-width: 680px) {
  .sub-hero { padding: 4rem 0 3.5rem; }
  .sub-hero h1 { font-size: 2.2rem; }
  .sub-section { padding: 3.5rem 0; }
  .features-grid, .findings-grid { grid-template-columns: 1fr; }
  .trust-divider { display: none; }
  .trust-inner { gap: 0.6rem; }
  .pricing-card { margin: 2rem 0 0; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .metric-value.masked { filter: blur(4px); }
}
