:root {
  --orange: #ff6a00;
  --black: #0b0b0b;
  --white: #ffffff;
  --soft: #f5f5f5;
  --muted: #6b6b6b;
  --border: #2a2a32;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  --bg: #0b0b0b;
  --bg-soft: #111111;
  --surface: #16151b;
  --surface-soft: #1c1b22;
  --text: #f4f4f4;
  --text-muted: #b0b0b5;
  --hero-glow: #25140a;
}

html[data-theme=\"light\"] {
  --bg: #ffffff;
  --bg-soft: #f7f7f7;
  --surface: #ffffff;
  --surface-soft: #f5f5f5;
  --text: #0b0b0b;
  --text-muted: #6b6b6b;
  --border: #e6e6e6;
  --shadow: 0 20px 60px rgba(11, 11, 11, 0.15);
  --hero-glow: #fff3e8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 600px at 10% 0%, var(--hero-glow) 0%, var(--bg) 55%, var(--bg-soft) 100%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  border-bottom: 1px solid var(--border);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
  color: var(--text-muted);
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(255, 106, 0, 0.28);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(255, 106, 0, 0.35);
}

.btn-ghost {
  border-color: var(--border);
  color: var(--text);
  background: var(--surface);
}

.btn-ghost:hover {
  transform: translateY(-1px);
}

.hero {
  padding: 80px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.eyebrow {
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 13px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin: 8px 0 12px;
}

.subhead {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  gap: 12px;
  margin: 22px 0 12px;
}

.meta {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  background: var(--surface-soft);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
}

.media-frame {
  background: linear-gradient(135deg, #1b1b1b 0%, #0b0b0b 100%);
  border-radius: 18px;
  padding: 14px;
  box-shadow: var(--shadow);
}

.media-frame img {
  border-radius: 12px;
}

section {
  padding: 60px 0;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 24px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.problem-grid,
.faq-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.solution .split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
}

.benefits {
  display: grid;
  gap: 18px;
}

.benefit {
  background: var(--surface-soft);
  padding: 16px;
  border-radius: 12px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  font-weight: 600;
}

.table {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.row {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  border-bottom: 1px solid var(--border);
}

.row:last-child {
  border-bottom: none;
}

.row div {
  padding: 16px;
  background: var(--surface);
}

.row.head div {
  background: var(--surface-soft);
  font-weight: 600;
}

.yes {
  color: #1d7a3a;
  font-weight: 600;
}

.no {
  color: #a22b2b;
  font-weight: 600;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  display: grid;
  gap: 16px;
  max-width: 520px;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-weight: 600;
}

.price strong {
  font-size: 2rem;
}

.price-list {
  padding-left: 18px;
  margin: 0;
  color: var(--text-muted);
}

.footer {
  padding: 40px 0 60px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  gap: 16px;
  color: var(--text-muted);
}

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero-grid,
  .solution .split {
    grid-template-columns: 1fr;
  }

  .topbar-inner {
    flex-wrap: wrap;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 720px) {
  .problem-grid,
  .faq-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .row {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
  }

  .row.head {
    display: none;
  }

  .row div {
    border-bottom: 1px solid var(--border);
  }

  .row div:nth-child(odd) {
    background: var(--surface-soft);
    font-weight: 600;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
