/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #08090d;
  --surface: #111318;
  --border: #1a1b24;
  --amber: #f59e0b;
  --amber-dim: rgba(245,158,11,0.12);
  --amber-glow: rgba(245,158,11,0.25);
  --text: #e2e8f0;
  --text-dim: #94a3b8;
  --text-muted: #64748b;
  --rails-red: #ef4444;
  --laravel-blue: #3b82f6;
  --green: #22c55a;
  --code-bg: #0d0f14;
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--amber); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
code, .mono { font-family: 'JetBrains Mono', monospace; }

/* ===== LAYOUT ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
section { padding: 6rem 0; }
section + section { border-top: 1px solid var(--border); }

/* ===== HERO ===== */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 8rem 0 6rem; border-top: none; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 1.5rem;
}
.hero-eyebrow::before { content: ''; display: inline-block; width: 24px; height: 1px; background: var(--amber); }
.hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); color: #fff; margin-bottom: 1.5rem; }
.hero h1 span { color: var(--amber); }
.hero-lead { font-size: 1.125rem; color: var(--text-dim); margin-bottom: 2.5rem; max-width: 480px; line-height: 1.7; }
.hero-pills { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.9rem; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border);
  font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; color: var(--text-dim);
  letter-spacing: 0.05em;
}
.pill-dot { width: 6px; height: 6px; border-radius: 50%; }
.pill-dot.rails { background: var(--rails-red); }
.pill-dot.php { background: var(--laravel-blue); }
.pill-dot.sentry { background: var(--amber); }

/* ===== CSS PIPELINE VISUALIZATION ===== */
.pipeline-wrap { position: relative; }
.pipeline-svg { width: 100%; height: auto; }
.pipeline-node { transition: all 0.3s; }
.pipeline-node:hover { filter: brightness(1.2); }
.pulse-ring { animation: pulse 2.5s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { opacity: 0.3; r: 18px; }
  50% { opacity: 0.8; r: 24px; }
}
.pulse-ring-2 { animation: pulse2 3s ease-in-out infinite 0.5s; }
@keyframes pulse2 {
  0%, 100% { opacity: 0.2; r: 14px; }
  50% { opacity: 0.6; r: 20px; }
}
.pulse-ring-3 { animation: pulse3 2s ease-in-out infinite 1s; }
@keyframes pulse3 {
  0%, 100% { opacity: 0.25; r: 16px; }
  50% { opacity: 0.7; r: 22px; }
}
.data-flow { stroke-dasharray: 8 4; animation: flow 1.5s linear infinite; }
@keyframes flow { from { stroke-dashoffset: 0; } to { stroke-dashoffset: -24; } }
.data-flow-2 { stroke-dasharray: 5 5; animation: flow2 2s linear infinite 0.3s; }
@keyframes flow2 { from { stroke-dashoffset: 0; } to { stroke-dashoffset: -20; } }

/* ===== PROCESS SECTION ===== */
.process-label { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--amber); margin-bottom: 3rem; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.process-step { padding: 2.5rem 2rem; border-right: 1px solid var(--border); position: relative; }
.process-step:last-child { border-right: none; }
.process-num {
  font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; color: var(--text-muted);
  margin-bottom: 1.5rem; letter-spacing: 0.1em;
}
.process-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--amber-dim); border: 1px solid rgba(245,158,11,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; color: var(--amber);
}
.process-icon svg { width: 22px; height: 22px; }
.process-step h3 { font-size: 1.1rem; margin-bottom: 0.75rem; color: #fff; }
.process-step p { font-size: 0.875rem; color: var(--text-dim); line-height: 1.65; }

/* ===== STACKS SECTION ===== */
.stacks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.stack-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem;
  position: relative; overflow: hidden;
}
.stack-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
}
.stack-card.rails::before { background: linear-gradient(90deg, var(--rails-red), transparent); }
.stack-card.php::before { background: linear-gradient(90deg, var(--laravel-blue), transparent); }
.stack-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.stack-badge {
  font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.25rem 0.65rem; border-radius: 6px;
}
.rails .stack-badge { background: rgba(239,68,68,0.15); color: var(--rails-red); border: 1px solid rgba(239,68,68,0.25); }
.php .stack-badge { background: rgba(59,130,246,0.15); color: var(--laravel-blue); border: 1px solid rgba(59,130,246,0.25); }
.stack-name { font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; font-weight: 700; }
.stack-desc { font-size: 0.8rem; color: var(--text-dim); margin-top: 0.25rem; }
.stack-errors-label { font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1rem; }
.error-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.error-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.error-tag {
  font-family: 'JetBrains Mono', monospace; font-size: 0.6rem; padding: 0.2rem 0.5rem;
  border-radius: 4px; white-space: nowrap; margin-top: 0.1rem; flex-shrink: 0;
}
.rails .error-tag { background: rgba(239,68,68,0.1); color: var(--rails-red); }
.php .error-tag { background: rgba(59,130,246,0.1); color: var(--laravel-blue); }
.error-text { font-size: 0.8rem; color: var(--text-dim); line-height: 1.5; }
.error-code {
  font-family: 'JetBrains Mono', monospace; font-size: 0.72rem;
  background: var(--code-bg); border: 1px solid var(--border);
  border-radius: 8px; padding: 1rem; margin-top: 0.75rem;
  color: var(--text-dim); overflow-x: auto; line-height: 1.6; display: block;
}
.error-code .fix { color: var(--green); }
.error-code .old { color: var(--rails-red); text-decoration: line-through; opacity: 0.6; }

/* ===== PHILOSOPHY SECTION ===== */
.philosophy-inner { max-width: 640px; }
.phil-label { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--amber); margin-bottom: 2rem; }
.philosophy-inner h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); color: #fff; margin-bottom: 1.5rem; }
.philosophy-inner p { color: var(--text-dim); font-size: 1rem; line-height: 1.75; margin-bottom: 1.25rem; }
.philosophy-inner p:last-of-type { margin-bottom: 0; }
.phil-insight {
  margin-top: 2.5rem; padding: 1.5rem 2rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; border-left: 3px solid var(--amber);
}
.phil-insight p { color: var(--text); font-size: 0.9rem; margin: 0; }

/* ===== CLOSING ===== */
.closing-inner { text-align: center; max-width: 560px; margin: 0 auto; }
.closing h2 { font-size: clamp(2rem, 4vw, 3rem); color: #fff; margin-bottom: 1.25rem; }
.closing p { color: var(--text-dim); font-size: 1rem; line-height: 1.7; }

/* ===== FOOTER ===== */
footer { padding: 3rem 0; border-top: 1px solid var(--border); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-brand { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 700; color: #fff; }
.footer-tagline { font-size: 0.75rem; color: var(--text-muted); font-family: 'JetBrains Mono', monospace; }

/* ===== PRICING PAGE ===== */
.pricing-section { padding: 6rem 0 8rem; }
.pricing-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
.pricing-eyebrow {
  font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 1.5rem;
}
.pricing-eyebrow::before { content: ''; display: inline-block; width: 24px; height: 1px; background: var(--amber); margin-right: 0.5rem; vertical-align: middle; }
.pricing-title { font-size: clamp(2rem, 4vw, 3rem); color: #fff; margin-bottom: 1rem; line-height: 1.1; }
.pricing-title span { color: var(--amber); }
.pricing-subtitle { color: var(--text-dim); font-size: 1rem; line-height: 1.7; max-width: 480px; margin: 0 auto; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
.pricing-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  padding: 2rem; position: relative; display: flex; flex-direction: column; gap: 0;
}
.pricing-card-featured {
  border-color: var(--amber); box-shadow: 0 0 0 1px var(--amber), 0 0 40px var(--amber-glow);
}
.pricing-recommended-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--amber); color: #000; font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 0.75rem;
  border-radius: 999px; font-weight: 600;
}
.pricing-tier-label {
  font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.75rem;
}
.pricing-price { display: flex; align-items: baseline; gap: 0.25rem; margin-bottom: 0.5rem; }
.price-amount { font-family: 'Space Grotesk', sans-serif; font-size: 2.5rem; font-weight: 700; color: #fff; }
.price-period { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; color: var(--text-muted); }
.pricing-desc { font-size: 0.8rem; color: var(--text-dim); line-height: 1.5; }
.pricing-divider { height: 1px; background: var(--border); margin: 1.5rem 0; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.875rem; flex: 1; }
.pricing-feature {
  display: flex; align-items: flex-start; gap: 0.625rem;
  font-size: 0.875rem; color: var(--text-dim); line-height: 1.4;
}
.pricing-feature strong { color: var(--text); }
.pricing-feature-muted { color: var(--text-muted); font-size: 0.8rem; }
.check-icon { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; margin-top: 1px; }
.pricing-cta-wrap { margin-top: 2rem; }
.pricing-cta {
  display: block; width: 100%; padding: 0.75rem 1.5rem; border-radius: 10px;
  font-family: 'Space Grotesk', sans-serif; font-size: 0.875rem; font-weight: 600;
  text-align: center; text-decoration: none; transition: all 0.2s;
}
.pricing-cta-primary { background: var(--amber); color: #000; }
.pricing-cta-primary:hover { background: #fbbf24; text-decoration: none; }
.pricing-cta-secondary {
  background: var(--surface); color: var(--text-dim); border: 1px solid var(--border);
}
.pricing-cta-secondary:hover { border-color: var(--amber); color: var(--amber); text-decoration: none; }

/* FAQ */
.pricing-faq { margin-top: 5rem; border-top: 1px solid var(--border); padding-top: 4rem; }
.faq-title {
  font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; font-weight: 700;
  color: #fff; margin-bottom: 2.5rem; text-align: center;
}
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 3rem; }
.faq-item { }
.faq-item h4 {
  font-family: 'Space Grotesk', sans-serif; font-size: 0.9rem; font-weight: 600;
  color: var(--text); margin-bottom: 0.5rem;
}
.faq-item p { font-size: 0.8rem; color: var(--text-dim); line-height: 1.65; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero { padding: 6rem 0 4rem; }
  .process-grid { grid-template-columns: 1fr; gap: 0; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); padding: 2rem 0; }
  .process-step:last-child { border-bottom: none; }
  .stacks-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .pricing-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}

/* ===== LANDING PAGE — NAV ===== */
.nav { padding: 1.25rem 0; border-bottom: 1px solid var(--border); position: sticky; top: 0; background: rgba(8,9,13,0.95); backdrop-filter: blur(8px); z-index: 100; }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 700; color: #fff; text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 0.75rem; }
.nav-link-plain { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; color: var(--text-muted); text-decoration: none; padding: 0.3rem 0.5rem; }
.nav-link-plain:hover { color: var(--text); text-decoration: none; }
.nav-cta { font-family: 'Space Grotesk', sans-serif; font-size: 0.8rem; font-weight: 600; background: var(--amber); color: #000; border-radius: 8px; padding: 0.45rem 1rem; text-decoration: none; }
.nav-cta:hover { background: #fbbf24; text-decoration: none; color: #000; }

/* ===== LANDING PAGE — HERO ===== */
.hero { min-height: 92vh; display: flex; align-items: center; padding: 6rem 0 5rem; border-top: none; }
.hero-content { max-width: 680px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 1.5rem;
}
.hero-eyebrow::before { content: ''; display: inline-block; width: 24px; height: 1px; background: var(--amber); }
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.75rem); color: #fff; margin-bottom: 1.5rem; line-height: 1.1; }
.hero h1 span { color: var(--amber); }
.hero-lead { font-size: 1.125rem; color: var(--text-dim); margin-bottom: 2.5rem; max-width: 520px; line-height: 1.7; }
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.btn-primary { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.8rem 1.6rem; background: var(--amber); color: #000; border-radius: 10px; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 0.95rem; text-decoration: none; }
.btn-primary:hover { background: #fbbf24; text-decoration: none; color: #000; }
.btn-ghost { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.8rem 1.4rem; background: transparent; color: var(--text-dim); border: 1px solid var(--border); border-radius: 10px; font-family: 'Space Grotesk', sans-serif; font-size: 0.9rem; text-decoration: none; }
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); text-decoration: none; }
.hero-pills { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.pill { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.35rem 0.8rem; border-radius: 999px; background: var(--surface); border: 1px solid var(--border); font-family: 'JetBrains Mono', monospace; font-size: 0.68rem; color: var(--text-dim); letter-spacing: 0.05em; }
.pill-dot { width: 6px; height: 6px; border-radius: 50%; }
.pill-dot.rails { background: var(--rails-red); }
.pill-dot.php { background: var(--laravel-blue); }
.pill-dot.sentry { background: var(--amber); }

/* ===== BEFORE/AFTER ===== */
.before-after { padding: 6rem 0; }
.section-label { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--amber); margin-bottom: 1rem; }
.section-title { font-size: clamp(1.75rem, 3.5vw, 2.75rem); color: #fff; line-height: 1.1; }
.section-title span { color: var(--amber); }
.section-sub { color: var(--text-dim); font-size: 1rem; line-height: 1.7; margin-top: 0.75rem; }
.ba-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 1.5rem; align-items: center; margin-top: 3rem; }
.ba-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.ba-card-label { display: flex; align-items: center; gap: 0.6rem; padding: 0.875rem 1.25rem; border-bottom: 1px solid var(--border); font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.ba-dot { width: 8px; height: 8px; border-radius: 50%; }
.ba-dot-red { background: var(--rails-red); }
.ba-dot-green { background: var(--green); }
.ba-screenshot { width: 100%; height: 180px; object-fit: cover; object-position: top; display: block; }
.ba-code-block { padding: 1rem 1.25rem; font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; line-height: 1.6; display: flex; flex-direction: column; gap: 0.25rem; }
.ba-code-line { }
.code-error { color: var(--rails-red); }
.code-str { color: var(--amber); }
.code-dim { color: var(--text-muted); }
.code-red { color: var(--rails-red); }
.code-green { color: var(--green); }
.code-amber { color: var(--amber); }
.ba-arrow { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.ba-arrow-label { font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; color: var(--amber); letter-spacing: 0.08em; }
.ba-caption { text-align: center; margin-top: 1.75rem; font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.04em; }

/* ===== HOW IT WORKS ===== */
.hiw { padding: 6rem 0; }
.hiw-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.hiw-step { padding: 2.5rem 2rem; border-right: 1px solid var(--border); }
.hiw-step:last-child { border-right: none; }
.hiw-step-num { font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; color: var(--text-muted); letter-spacing: 0.1em; margin-bottom: 1.5rem; }
.hiw-step-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--amber-dim); border: 1px solid rgba(245,158,11,0.2); display: flex; align-items: center; justify-content: center; color: var(--amber); margin-bottom: 1.5rem; }
.hiw-step h3 { font-size: 1.05rem; color: #fff; margin-bottom: 0.75rem; }
.hiw-step p { font-size: 0.875rem; color: var(--text-dim); line-height: 1.65; }
.hiw-step code { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; background: var(--code-bg); padding: 0.1rem 0.35rem; border-radius: 4px; color: var(--amber); }
.hiw-note { display: flex; align-items: center; gap: 0.75rem; margin-top: 3rem; padding: 1rem 1.5rem; background: rgba(34,197,90,0.06); border: 1px solid rgba(34,197,90,0.15); border-radius: 10px; color: var(--green); font-size: 0.85rem; max-width: 520px; }
.hiw-note svg { flex-shrink: 0; }

/* ===== SOCIAL PROOF ===== */
.social-proof { padding: 5rem 0; }
.sp-frameworks { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 3rem; }
.sp-label { font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); }
.sp-stacks { display: flex; align-items: center; gap: 1.5rem; }
.sp-stack { display: flex; align-items: center; gap: 0.6rem; }
.sp-stack-dot { width: 10px; height: 10px; border-radius: 50%; }
.sp-stack-name { font-family: 'Space Grotesk', sans-serif; font-size: 0.9rem; font-weight: 600; color: #fff; }
.sp-stack-version { font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; color: var(--text-muted); }
.sp-divider { width: 1px; height: 24px; background: var(--border); }
.sp-testimonial-slot { }
.sp-testimonial-placeholder { display: flex; align-items: center; gap: 1rem; padding: 1.5rem; background: var(--surface); border: 1px dashed var(--border); border-radius: 12px; max-width: 480px; color: var(--text-muted); }
.sp-quote-text { font-size: 0.875rem; color: var(--text-muted); }
.sp-quote-text a { color: var(--amber); }

/* ===== PRICING TEASER ===== */
.pricing-teaser { padding: 6rem 0; }
.pt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.pt-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 1.75rem; display: flex; flex-direction: column; gap: 0.75rem; position: relative; }
.pt-card-featured { border-color: var(--amber); box-shadow: 0 0 30px var(--amber-glow); }
.pt-badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--amber); color: #000; font-family: 'JetBrains Mono', monospace; font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.2rem 0.65rem; border-radius: 999px; font-weight: 600; white-space: nowrap; }
.pt-tier { font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.pt-price { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 700; color: #fff; }
.pt-period { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; color: var(--text-muted); margin-left: 0.2rem; }
.pt-desc { font-size: 0.8rem; color: var(--text-dim); line-height: 1.5; flex: 1; }
.pt-cta { display: block; width: 100%; padding: 0.6rem 1rem; border-radius: 8px; font-family: 'Space Grotesk', sans-serif; font-size: 0.85rem; font-weight: 600; text-align: center; text-decoration: none; margin-top: 0.5rem; }
.pt-cta-primary { background: var(--amber); color: #000; }
.pt-cta-primary:hover { background: #fbbf24; text-decoration: none; color: #000; }
.pt-cta-secondary { background: transparent; color: var(--text-dim); border: 1px solid var(--border); }
.pt-cta-secondary:hover { border-color: var(--amber); color: var(--amber); text-decoration: none; }

/* ===== LANDING FAQ ===== */
.lp-faq { padding: 6rem 0; }
.lp-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 3.5rem; }
.lp-faq-item h4 { font-family: 'Space Grotesk', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--text); margin-bottom: 0.6rem; }
.lp-faq-item p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.7; }

/* ===== FOOTER CTA ===== */
.footer-cta-section { padding: 7rem 0; background: linear-gradient(180deg, transparent, rgba(245,158,11,0.04)); border-top: 1px solid var(--border); }
.footer-cta-inner { text-align: center; max-width: 560px; margin: 0 auto; }
.footer-cta-eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--amber); margin-bottom: 1.25rem; }
.footer-cta-headline { font-size: clamp(2.25rem, 4.5vw, 3.5rem); color: #fff; margin-bottom: 1rem; }
.footer-cta-sub { color: var(--text-dim); font-size: 1rem; line-height: 1.7; margin-bottom: 2.5rem; }
.footer-cta-btn { display: inline-flex; align-items: center; padding: 1rem 2.25rem; background: var(--amber); color: #000; border-radius: 12px; font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem; font-weight: 700; text-decoration: none; }
.footer-cta-btn:hover { background: #fbbf24; text-decoration: none; color: #000; }

/* ===== RESPONSIVE LANDING ===== */
@media (max-width: 768px) {
  .hero { padding: 5rem 0 4rem; min-height: auto; }
  .ba-grid { grid-template-columns: 1fr; }
  .ba-arrow { flex-direction: row; justify-content: center; padding: 1rem 0; }
  .hiw-steps-grid { grid-template-columns: 1fr; }
  .hiw-step { border-right: none; border-bottom: 1px solid var(--border); padding: 2rem 0; }
  .hiw-step:last-child { border-bottom: none; }
  .pt-grid { grid-template-columns: 1fr; }
  .lp-faq-grid { grid-template-columns: 1fr; }
  .nav-links { gap: 0.5rem; }
}
