/* ========================================
   BeaconIO — Custom Stylesheet
   ======================================== */

/* --- Variables --- */
:root {
  --bg: #080b12;
  --bg-2: #0e1420;
  --bg-card: #121828;
  --fg: #e8ecf4;
  --fg-muted: #8892a4;
  --accent: #f5a623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --border: rgba(232, 236, 244, 0.07);
  --warning: #ef9a3d;
  --positive: #4ade80;
  --negative: #f87171;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* --- Layout Helpers --- */
.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  opacity: 0.85;
}

/* --- Nav --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 2rem;
  background: rgba(8, 11, 18, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--fg);
}

.nav-logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--fg); }

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 2rem 0;
}

.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-bottom: 3rem;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(245, 166, 35, 0.25);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  width: fit-content;
  letter-spacing: 0.03em;
}

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

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

.hero-headline {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--fg);
}

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

/* --- Beacon Visual --- */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.beacon-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.beacon-rings {
  width: 280px;
  height: 280px;
  animation: rotate 40s linear infinite;
}

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

.beacon-metrics {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
  max-width: 300px;
}

.metric-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  transition: border-color 0.2s;
}

.metric-card.alert-card {
  border-color: rgba(239, 154, 61, 0.3);
  background: rgba(239, 154, 61, 0.05);
}

.metric-label {
  font-size: 0.65rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  min-width: 100px;
}

.metric-value {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fg);
}

.metric-value.warning { color: var(--warning); }
.metric-value.positive { color: var(--positive); }

.metric-delta {
  font-size: 0.7rem;
  color: var(--fg-muted);
  margin-left: auto;
}

.metric-delta.negative { color: var(--negative); }

/* --- Ticker --- */
.hero-ticker {
  border-top: 1px solid var(--border);
  padding: 1rem 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  background: var(--bg-2);
}

.hero-ticker span { display: inline; }

/* --- Problem --- */
.problem {
  padding: 8rem 2rem;
  background: var(--bg-2);
}

.problem-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.problem-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  max-width: 600px;
}

.problem-body {
  color: var(--fg-muted);
  font-size: 1rem;
  max-width: 520px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.problem-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.problem-icon {
  color: var(--accent);
  opacity: 0.7;
}

.problem-text {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.problem-text strong {
  color: var(--fg);
  font-weight: 600;
}

/* --- How --- */
.how {
  padding: 8rem 2rem;
}

.how-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.how-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 3.5rem;
}

.how-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 3rem;
}

.step {
  flex: 1;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-connector {
  width: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.step-connector::after {
  content: '';
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--border) 0%, rgba(245,166,35,0.3) 100%);
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  opacity: 0.7;
}

.step-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

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

.how-example {
  margin-top: 1rem;
}

.example-label {
  font-size: 0.7rem;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.75rem;
}

.example-card {
  background: var(--bg-card);
  border: 1px solid rgba(245, 166, 35, 0.25);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.example-body {
  font-size: 0.9rem;
  color: var(--fg);
  line-height: 1.6;
}

.example-body strong { font-weight: 600; }

.example-detail {
  color: var(--fg-muted);
  display: block;
  margin-top: 0.4rem;
  font-size: 0.85rem;
}

/* --- Packages --- */
.packages {
  padding: 8rem 2rem;
}

.packages-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.packages-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.packages-sub {
  color: var(--fg-muted);
  font-size: 1rem;
  max-width: 560px;
  margin-bottom: 3.5rem;
  line-height: 1.7;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: border-color 0.25s;
}

.package-card:hover {
  border-color: rgba(245, 166, 35, 0.3);
}

.package-card.popular {
  border-color: rgba(245, 166, 35, 0.4);
  background: rgba(245, 166, 35, 0.04);
}

.package-badge {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
}

.package-card.popular .package-badge {
  opacity: 1;
}

.package-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--fg);
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.pkg-amount {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--fg);
}

.pkg-period {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.package-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-style: italic;
  margin-top: -0.25rem;
}

.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.package-features li {
  font-size: 0.85rem;
  color: var(--fg-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.package-features li::before {
  content: '✓';
  color: var(--positive);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.package-card .cta-btn {
  display: block;
  text-align: center;
  margin-top: 0.5rem;
}

.packages-bundle {
  background: var(--bg-card);
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.bundle-badge {
  background: var(--accent);
  color: #0a0d14;
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  flex-shrink: 0;
}

.bundle-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.bundle-content strong {
  font-size: 0.95rem;
  color: var(--fg);
  font-weight: 600;
}

.bundle-content span {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.packages-bundle .cta-btn {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .packages-grid { grid-template-columns: 1fr; }
  .packages-bundle { flex-direction: column; align-items: flex-start; }
}

/* --- Social Proof --- */
.social-proof {
  padding: 8rem 2rem;
  background: var(--bg-2);
}

.social-proof-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-quote {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(245, 166, 35, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.author-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg);
}

.author-role {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.trusted-by {
  text-align: center;
}

.trusted-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-family: 'Syne', sans-serif;
}

.logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.placeholder-logo {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--fg-muted);
  opacity: 0.4;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .logo-strip { gap: 1.5rem; }
}

/* --- Features --- */
.features {
  padding: 8rem 2rem;
  background: var(--bg-2);
}

.features-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.features-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.25s, transform 0.25s;
}

.feature-card:hover {
  border-color: rgba(245, 166, 35, 0.3);
  transform: translateY(-2px);
}

.feature-icon-wrap {
  color: var(--accent);
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
}

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

/* --- Manifesto --- */
.manifesto {
  padding: 8rem 2rem;
}

.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.manifesto-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 600;
  font-style: italic;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 2rem;
  padding: 0 1rem;
}

.manifesto-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* --- Closing --- */
.closing {
  padding: 8rem 2rem;
  background: var(--bg-2);
  text-align: center;
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
}

.closing-beacon {
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: center;
}

.closing-headline {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.closing-statement {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.01em;
}

/* --- Footer --- */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

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

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
}

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

.footer-copy {
  font-size: 0.75rem;
  color: var(--fg-muted);
  opacity: 0.5;
  margin-top: 0.5rem;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-right { order: -1; }

  .beacon-rings { width: 200px; height: 200px; }
  .beacon-metrics { max-width: 100%; }

  .problem-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .how-steps {
    flex-direction: column;
  }

  .step-connector {
    width: auto;
    height: 24px;
  }

  .step-connector::after {
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, var(--border) 0%, rgba(245,166,35,0.3) 100%);
  }

  .nav-links { display: none; }
}

/* --- CTA Buttons --- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.cta-primary {
  background: var(--accent);
  color: #0a0d14;
}

.cta-primary:hover {
  background: #f7b84a;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245, 166, 35, 0.3);
}

.cta-secondary {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
}

.cta-secondary:hover {
  border-color: rgba(245, 166, 35, 0.4);
  color: var(--accent);
}

.hero-cta {
  display: flex;
  gap: 0.875rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--fg-muted);
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.trust-sep {
  color: var(--accent);
  opacity: 0.5;
}

.closing-cta {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.nav-cta {
  background: var(--accent-dim);
  color: var(--accent) !important;
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  border: 1px solid rgba(245, 166, 35, 0.2);
  transition: all 0.2s;
}

.nav-cta:hover {
  background: rgba(245, 166, 35, 0.2);
}

/* --- Pricing Page --- */
.pricing-page {
  min-height: 100vh;
  padding: 7rem 2rem 4rem;
  background: var(--bg);
}

.pricing-inner {
  max-width: 960px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.pricing-header h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.pricing-header p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  transition: border-color 0.25s;
}

.pricing-card:hover {
  border-color: rgba(245, 166, 35, 0.3);
}

.pricing-card.popular {
  border-color: rgba(245, 166, 35, 0.4);
  background: rgba(245, 166, 35, 0.04);
}

.popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0a0d14;
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 0 0 8px 8px;
}

.plan-name {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--fg);
}

.price-period {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.plan-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.plan-features li {
  font-size: 0.85rem;
  color: var(--fg-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.plan-features li::before {
  content: '✓';
  color: var(--positive);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-cta {
  display: block;
  text-align: center;
  padding: 0.75rem;
  border-radius: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.plan-cta-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--fg);
}

.plan-cta-outline:hover {
  border-color: rgba(245, 166, 35, 0.4);
  color: var(--accent);
}

.plan-cta-solid {
  background: var(--accent);
  color: #0a0d14;
  border: none;
}

.plan-cta-solid:hover {
  background: #f7b84a;
}

.bundle-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--fg-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.5rem;
}

.bundle-note strong { color: var(--fg); }

.bundle-cta-link {
  display: inline-block;
  margin-left: 1rem;
  padding: 0.4rem 1rem;
  background: var(--accent);
  color: #0a0d14;
  border-radius: 6px;
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  vertical-align: middle;
}

.bundle-cta-link:hover {
  background: #f7b84a;
  transform: translateY(-1px);
}

.pricing-questions {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--fg-muted);
}

.pricing-questions a {
  color: var(--accent);
  text-decoration: none;
}

.pricing-questions a:hover { text-decoration: underline; }

.pricing-event-log {
  display: none;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-right { order: -1; }

  .beacon-rings { width: 200px; height: 200px; }
  .beacon-metrics { max-width: 100%; }

  .problem-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .how-steps {
    flex-direction: column;
  }

  .step-connector {
    width: auto;
    height: 24px;
  }

  .step-connector::after {
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, var(--border) 0%, rgba(245,166,35,0.3) 100%);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .nav-links { display: none; }
}

@media (max-width: 600px) {
  .hero-headline { font-size: 2rem; }
  .problem-headline,
  .how-headline,
  .features-headline,
  .closing-headline,
  .pricing-header h1 { font-size: 1.8rem; }

  .hero, .problem, .how, .features, .manifesto, .closing, .pricing-page {
    padding: 5rem 1.25rem;
  }
}