:root {
  --archive-navy: #0f172a;
  --archive-sand: #f7f3eb;
  --archive-sky: #c7e7ff;
  --brand-blue: #2563eb;
  --brand-blue-deep: #1e40af;
  --brand-ink: #0f172a;
  --brand-cloud: #f8fbff;
  --brand-border: #dbe7ff;
}

body {
  font-family: 'Manrope', sans-serif;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(199, 231, 255, 0.7), transparent 35%),
    linear-gradient(180deg, var(--archive-sand) 0%, #ffffff 100%);
  color: var(--archive-navy);
}

h1,
h2,
h3,
h4,
.navbar-brand {
  font-family: 'Space Grotesk', sans-serif;
}

.main-navbar {
  border-color: rgba(15, 23, 42, 0.08) !important;
}

.brand-mark {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--brand-blue), #3b82f6);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
}

.brand-text {
  letter-spacing: 0.01em;
}

.surface-panel {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.84);
}

pre {
  white-space: pre-wrap;
  word-break: break-word;
}

.landing-main {
  overflow: hidden;
}

.hero-section {
  background:
    radial-gradient(circle at 85% 18%, rgba(37, 99, 235, 0.2), transparent 45%),
    radial-gradient(circle at 5% 80%, rgba(56, 189, 248, 0.22), transparent 34%),
    linear-gradient(180deg, #f4f9ff 0%, #ffffff 74%);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--brand-blue-deep);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-title {
  font-size: clamp(2rem, 2.8vw, 3.4rem);
  line-height: 1.08;
  color: var(--brand-ink);
}

.hero-subtitle {
  color: #334155;
  font-size: 1.05rem;
  max-width: 64ch;
}

.hero-card {
  background: #fff;
  border: 1px solid var(--brand-border);
  border-radius: 1rem;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.12);
  padding: 1.5rem;
}

.hero-list {
  display: grid;
  gap: 0.7rem;
}

.hero-list li,
.hero-point,
.value-item,
.price-list li {
  position: relative;
  padding-left: 1.35rem;
}

.hero-list li::before,
.hero-point::before,
.value-item::before,
.price-list li::before {
  content: '';
  position: absolute;
  top: 0.52rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue), #38bdf8);
}

.section-kicker {
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-blue-deep);
}

.section-title {
  font-size: clamp(1.6rem, 2.2vw, 2.5rem);
  line-height: 1.15;
}

.section-copy {
  max-width: 70ch;
  margin-inline: auto;
  color: #475569;
}

.feature-card {
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.4rem;
  background: #fff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.36);
  box-shadow: 0 16px 28px rgba(37, 99, 235, 0.12);
}

.stats-board {
  border: 1px solid #dbe7ff;
  background: #fff;
  border-radius: 1rem;
  padding: 1rem;
}

.stat-item {
  border-radius: 0.8rem;
  border: 1px solid #e2e8f0;
  background: #f8fbff;
  padding: 1rem 0.7rem;
  height: 100%;
}

.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--brand-blue-deep);
}

.stat-label {
  margin-top: 0.4rem;
  font-size: 0.86rem;
  color: #475569;
}

.compare-card {
  border-radius: 1rem;
  border: 1px solid #dbe7ff;
  padding: 1.3rem;
  background: #fff;
}

.good-card {
  background: linear-gradient(145deg, #f5f9ff, #ffffff);
}

.plain-card {
  background: #fcfcfd;
}

.compare-list {
  display: grid;
  gap: 0.65rem;
}

.compare-list li {
  position: relative;
  padding-left: 1.15rem;
  color: #334155;
}

.compare-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #60a5fa;
}

.bg-white-soft {
  background: var(--brand-cloud);
}

.audience-card {
  border-radius: 0.9rem;
  border: 1px solid #dbe7ff;
  background: #fff;
  padding: 1rem;
}

.problem-solution-card {
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.25rem;
  background: #fff;
}

.problem-box,
.solution-box {
  border-radius: 0.8rem;
  padding: 0.95rem;
}

.problem-box {
  background: #fff1f2;
  border: 1px solid #fecdd3;
}

.solution-box {
  background: #eefbf4;
  border: 1px solid #bbf7d0;
}

.screenshot-placeholder {
  border: 2px dashed #93c5fd;
  background: linear-gradient(145deg, #f8fbff, #edf4ff);
  border-radius: 1rem;
  padding: 1.15rem;
  min-height: 205px;
}

.placeholder-badge {
  display: inline-block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1d4ed8;
  background: rgba(37, 99, 235, 0.16);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
}

.pricing-section {
  background:
    radial-gradient(circle at 12% 22%, rgba(37, 99, 235, 0.14), transparent 30%),
    radial-gradient(circle at 85% 75%, rgba(125, 211, 252, 0.22), transparent 35%),
    #f8fbff;
}

.price-card {
  border: 1px solid #dbe7ff;
  border-radius: 1rem;
  background: #fff;
  padding: 1.35rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.featured-price {
  border-width: 2px;
  border-color: var(--brand-blue);
  transform: scale(1.01);
}

.trial-card {
  background: linear-gradient(170deg, #ffffff 0%, #eff6ff 100%);
}

.cta-band {
  border: 1px solid #dbe7ff;
  border-radius: 1.15rem;
  padding: 2rem 1.1rem;
  background:
    radial-gradient(circle at 10% 15%, rgba(37, 99, 235, 0.15), transparent 35%),
    linear-gradient(180deg, #ffffff, #f3f8ff);
}

.faq-accordion .accordion-item {
  border: 1px solid #dbe7ff;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 0.7rem;
}

.faq-accordion .accordion-button {
  font-weight: 600;
  color: #0f172a;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: #1e3a8a;
  background-color: #eff6ff;
  box-shadow: none;
}

.faq-accordion .accordion-body {
  color: #475569;
}

.landing-footer {
  background: #2563eb;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.9);
}

.footer-link {
  color: #dbeafe;
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-link:hover {
  color: #ffffff;
}

.btn-primary {
  background-color: var(--brand-blue);
  border-color: var(--brand-blue);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--brand-blue-deep);
  border-color: var(--brand-blue-deep);
}

.hero-title,
.hero-card,
.feature-card,
.price-card,
.screenshot-placeholder,
.problem-solution-card,
.cta-band {
  animation: rise-in 0.55s ease both;
}

@keyframes rise-in {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .hero-card {
    margin-top: 0.4rem;
  }

  .featured-price {
    transform: none;
  }
}
