/* Landing custom styles: shared UI classes and small utility helpers. */

:root {
  --bg: #f8fafc;
  --text: #0f172a;
  --muted: #475569;
  --line: #e2e8f0;
  --primary: #1d4ed8;
  --primary-dark: #1e3a8a;
  --surface: #ffffff;
}

html {
  font-family: "Manrope", "Segoe UI", sans-serif;
}

body.site-body {
  background-color: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-image:
    radial-gradient(circle at 0% 0%, rgba(191, 219, 254, 0.25), transparent 35%),
    radial-gradient(circle at 100% 0%, rgba(186, 230, 253, 0.2), transparent 32%);
}

.container-shell {
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container-shell {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container-shell {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 90;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-mark {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-text {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.25rem;
}

.desktop-nav > a {
  color: #334155;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
}

.desktop-nav > a:hover {
  color: var(--primary);
}

.mobile-toggle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  border: 1px solid #cbd5e1;
  background: #fff;
  font-size: 1.25rem;
}

.mobile-menu {
  border-top: 1px solid var(--line);
  background: #fff;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.mobile-nav > a {
  text-decoration: none;
  color: #334155;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.5rem;
  padding: 0.6rem 0.75rem;
}

.mobile-nav > a:hover {
  background: #f1f5f9;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }

  .mobile-toggle,
  .mobile-menu {
    display: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: 0.18s ease;
}

.btn:focus-visible,
.faq-trigger:focus-visible,
.mobile-toggle:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: #1e40af;
}

.btn-primary:active {
  background: var(--primary-dark);
}

.btn-ghost {
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #1e293b;
}

.btn-ghost:hover {
  background: #f8fafc;
}

.btn-soft {
  border: 1px solid #bfdbfe;
  background: #eff6ff;
  color: #1e3a8a;
}

.btn-soft:hover {
  background: #dbeafe;
}

.hero-section {
  padding: 2.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.eyebrow {
  display: inline-flex;
  border: 1px solid #bfdbfe;
  background: #eff6ff;
  color: #1e3a8a;
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.hero-title {
  margin-top: 1rem;
  font-size: clamp(1.875rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.hero-text {
  margin-top: 1rem;
  max-width: 46ch;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust-badges {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #334155;
  list-style: none;
  padding: 0;
}

.trust-badges li {
  border: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 0.6rem;
  padding: 0.5rem 0.75rem;
}

@media (min-width: 640px) {
  .trust-badges {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-media-grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .hero-media-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-media-main {
  width: 100%;
  height: 20rem;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

@media (min-width: 640px) {
  .hero-media-main {
    grid-column: span 2;
    height: 24rem;
  }
}

.hero-media-sub {
  width: 100%;
  height: 11rem;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.section-block {
  padding: 3.25rem 0;
}

.section-muted {
  background: #fff;
  border-top: 1px solid rgba(226, 232, 240, 0.75);
  border-bottom: 1px solid rgba(226, 232, 240, 0.75);
}

.section-head {
  margin-bottom: 1.25rem;
}

.section-head h2 {
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-head p {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.card-grid-3,
.card-grid-4,
.pricing-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .card-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .card-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .card-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.card-soft,
.pricing-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.card-soft h3,
.pricing-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.card-soft p {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.step-index {
  margin: 0 0 0.75rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pricing-card .price {
  margin: 0.8rem 0 0;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pricing-card .price span {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 600;
}

.pricing-card ul {
  margin: 1rem 0;
  padding-left: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.pricing-card-featured {
  position: relative;
  border-color: #93c5fd;
  box-shadow: 0 0 0 2px rgba(191, 219, 254, 0.9), 0 10px 24px rgba(30, 64, 175, 0.12);
}

.recommended {
  position: absolute;
  top: -0.7rem;
  right: 1rem;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
}

.w-full {
  width: 100%;
}

.table-wrap {
  margin-top: 1.25rem;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  overflow-x: auto;
  background: #fff;
}

.feature-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
  font-size: 0.88rem;
}

.feature-table th,
.feature-table td {
  border-bottom: 1px solid #f1f5f9;
  padding: 0.8rem 1rem;
  text-align: left;
}

.feature-table thead th {
  background: #f8fafc;
  font-weight: 700;
  color: #334155;
}

.faq-shell {
  max-width: 64rem;
}

.faq-list {
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  background: #fff;
}

.faq-item + .faq-item {
  border-top: 1px solid #e2e8f0;
}

.faq-item {
  padding: 0 1.25rem;
}

.faq-trigger {
  width: 100%;
  background: transparent;
  border: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: 1rem 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
}

.faq-trigger::after {
  content: "+";
  margin-left: 0.75rem;
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 800;
}

.faq-trigger[aria-expanded="true"]::after {
  content: "−";
}

.faq-panel {
  padding-bottom: 1rem;
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.6;
}

.final-cta {
  border-radius: 1.5rem;
  background: #0f172a;
  color: #fff;
  text-align: center;
  padding: 2.25rem 1.5rem;
  box-shadow: 0 20px 36px rgba(15, 23, 42, 0.22);
}

.final-cta h2 {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.final-cta .btn {
  margin-top: 1rem;
}

.cta-form {
  margin-top: 1rem;
}

.cta-form-row {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .cta-form-row {
    grid-template-columns: 1fr 1fr auto;
    align-items: center;
  }
}

.cta-input {
  width: 100%;
  border: 1px solid #334155;
  background: #0b1222;
  color: #e2e8f0;
  border-radius: 0.75rem;
  padding: 0.7rem 0.85rem;
  font-size: 0.9rem;
}

.cta-input::placeholder {
  color: #94a3b8;
}

.cta-input:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

.cta-form-status {
  margin: 0.55rem 0 0;
  font-size: 0.82rem;
  color: #cbd5e1;
}

.site-footer {
  border-top: 1px solid #e2e8f0;
  background: #fff;
  padding: 2rem 0;
}

.footer-wrap {
  color: #475569;
  font-size: 0.88rem;
}

.footer-wrap p {
  margin: 0.2rem 0;
}

.disclaimer {
  color: #64748b;
  font-size: 0.78rem;
}

.no-scroll {
  overflow: hidden;
}
