:root {
  --bg: #f7f8fc;
  --surface: #ffffff;
  --surface-alt: #f2f5fb;
  --text: #101828;
  --muted: #667085;
  --line: rgba(16, 24, 40, 0.08);
  --primary: #0f6fff;
  --primary-dark: #0b57cc;
  --accent: #0f172a;
  --success: #11a36a;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  --radius: 24px;
  --radius-sm: 18px;
  --container: min(1180px, calc(100% - 32px));
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
          radial-gradient(circle at top left, rgba(15, 111, 255, 0.08), transparent 34%),
          linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
}

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

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0;
}

.brand,
.brand-footer {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Manrope", sans-serif;
}

.brand strong,
.brand-footer strong {
  display: block;
  font-size: 1rem;
}

.brand small,
.brand-footer small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.nav-link {
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--text);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.nav-link:hover,
.nav-link.active,
.dropdown.is-open > .nav-link {
  background: rgba(15, 111, 255, 0.08);
  color: var(--primary);
}

.dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: min(760px, 88vw);
  display: none;
  gap: 18px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.dropdown.is-open .dropdown-panel {
  display: grid;
}

.mega-panel {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mega-panel--wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dropdown-panel section {
  padding: 10px;
  border-radius: 18px;
  background: var(--surface-alt);
}

.dropdown-panel p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dropdown-panel a {
  display: block;
  padding: 9px 0;
  color: var(--text);
}

.dropdown-panel a:hover {
  color: var(--primary);
}

.nav-cta {
  display: flex;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), #114dc6);
  box-shadow: 0 16px 30px rgba(15, 111, 255, 0.24);
}

.button-secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.9);
}

.hero-section,
.page-hero {
  padding: 30px 0 48px;
}

.hero-grid,
.detail-hero,
.overview-grid,
.split-panel,
.contact-grid,
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.hero-copy h1,
.page-hero h1 {
  margin: 15px 0 18px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-copy p,
.page-hero p {
  max-width: 1200px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(15, 111, 255, 0.08);
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.glass-panel,
.content-panel,
.feature-card,
.overview-card,
.link-card,
.pricing-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.glass-panel {
  border-radius: 32px;
  padding: 20px;
}

.hero-visual {
  animation: floatUp 1.1s ease both;
}

.media-video {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

.media-video-card {
  aspect-ratio: 500 / 280;
  margin-bottom: 16px;
}

.overview-card-image {
  display: block;
  width: 100%;
  max-width: 220px;
  height: 132px;
  margin-bottom: 14px;
  border-radius: 16px;
  object-fit: cover;
}

.stats-row,
.detail-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.stats-row article,
.detail-stats article {
  padding: 18px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.stats-row strong,
.detail-stats strong {
  display: block;
  font-size: 1.35rem;
}

.stats-row span,
.detail-stats span {
  color: var(--muted);
  font-size: 0.95rem;
}

.stat-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.stat-logo {
  width: 45px;
  height: 45px;
  flex: 0 0 28px;
  object-fit: contain;
}

.trust-strip {
  padding: 10px 0 10px;
}

.trust-strip p {
  margin: 0 0 30px;
  color: var(--muted);
  text-align: center;
  font-weight: bold;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
}
.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.badge-row span,
.pricing-plan-links a,
.platforms span,
.stacked-list span,
.plan-chip {
  padding: 6px 9px;
  border-radius: 9px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.badge-row {
  justify-content: center;
}

.pricing-plan-links {
  margin-bottom: 28px;
}

.badge-row-partners span {
  min-width: 150px;
  text-align: center;
}

.section {
  padding: 30px 0;
}

.section-tight {
  padding-top: 20px;
}

.section-muted {
  background: linear-gradient(180deg, rgba(15, 111, 255, 0.03), rgba(15, 23, 42, 0.02));
}

.section-heading {
  max-width: 700px;
  margin-bottom: 28px;
}

.section-heading h2,
.split-copy h2,
.content-panel h2 {
  margin: 12px 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
}

.section-heading p,
.split-copy p,
.content-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.card-grid {
  display: grid;
  gap: 22px;
}

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

.three-up,
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.overview-card,
.link-card,
.content-panel,
.pricing-card {
  padding: 24px;
  border-radius: 26px;
}

.icon-chip {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(15, 111, 255, 0.16), rgba(17, 163, 106, 0.18));
}

.feature-card h3,
.overview-card h3,
.link-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.feature-card p,
.overview-card p,
.link-card p,
.link-card span {
  color: var(--muted);
  line-height: 1.65;
}

.overview-list,
.category-block {
  display: grid;
  gap: 20px;
}

.overview-list-cards {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 8px;
  perspective: 1200px;
}

.overview-motion-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 26px 24px 24px;
  border-radius: 28px;
  border: 1px solid rgba(15, 111, 255, 0.12);
  background:
    radial-gradient(circle at top right, rgba(24, 184, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 247, 255, 0.92));
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
  transform-origin: center top;
  will-change: transform, opacity;
}

.overview-motion-card::before {
  content: "";
  position: absolute;
  inset: auto -12% -38% auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 111, 255, 0.2), transparent 68%);
  pointer-events: none;
}

.overview-motion-card-index {
  display: block;
  margin-bottom: 18px;
  object-fit: contain;
}

.overview-motion-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.overview-motion-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.overview-motion-card-tag {
  display: inline-flex;
  margin-top: 22px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 111, 255, 0.08);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
}

.overview-motion-card.is-visible {
  opacity: 1;
  transform: none;
}

.overview-list {
  grid-template-columns: repeat(auto-fit, minmax(220px, 260px));
  align-items: stretch;
}

.overview-list .text-link {
  grid-column: 1 / -1;
  margin-top: 0;
}

.overview-card-compact {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 18px;
  border-radius: 22px;
}

.overview-card-compact h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.overview-card-compact p {
  font-size: 0.94rem;
  line-height: 1.55;
}

.category-block + .category-block {
  margin-top: 48px;
}

.category-heading {
  max-width: 760px;
}

.link-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.link-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 111, 255, 0.24);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--primary);
  font-weight: 800;
}

.check-list,
.signal-list,
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 14px;
}

.check-list li,
.signal-list li,
.pricing-features li {
  padding-left: 26px;
  position: relative;
  line-height: 1.6;
}

.check-list li::before,
.signal-list li::before,
.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #18b8ff);
}

.content-panel-alt {
  background: linear-gradient(180deg, #fcfdff, #f5f8ff);
}

.pricing-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center; /* Centers horizontally */
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  width: 100%;
  overflow-x: hidden;
  position: relative;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
}

.pricing-tab {
  border: 0;
  padding: 12px 18px;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
}

.pricing-tab.is-active {
  background: rgba(15, 111, 255, 0.1);
  color: var(--primary);
}

.pricing-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.pricing-card-featured {
  background: linear-gradient(180deg, #ffffff, #eef5ff);
  border-color: rgba(15, 111, 255, 0.22);
  transform: translateY(-10px);
}

.plan-chip {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--primary);
  font-weight: 800;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 18px 0 8px;
}

.plan-price strong {
  font-size: 2.8rem;
  font-family: "Manrope", sans-serif;
}

.billing {
  color: var(--muted);
}

.pricing-actions {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.stacked-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.success-banner {
  margin-bottom: 20px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(17, 163, 106, 0.24);
  background: rgba(17, 163, 106, 0.08);
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 5px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

label {
  display: grid;
  gap: 10px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: white;
}

.site-footer {
  padding: 48px 0 28px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer-grid h4 {
  margin: 0 0 12px;
}

.footer-grid p,
.footer-grid a,
.footer-bottom {
  color: var(--muted);
}

.footer-grid a {
  display: block;
  margin-bottom: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 14px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  background: var(--text);
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .four-up,
  .three-up,
  .overview-list-cards,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .detail-hero,
  .overview-grid,
  .split-panel,
  .contact-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    max-height: calc(100dvh - 96px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-links,
  .nav-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links {
    gap: 6px;
  }

  .nav-links > li {
    width: 100%;
  }

  .dropdown {
    width: 100%;
  }

  .nav-link,
  .dropdown > .nav-link {
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
    overflow-wrap: anywhere;
  }


  .dropdown-panel,
  .mega-panel,
  .mega-panel--wide {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 10px;
  }

  .stats-row,
  .detail-stats,
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-section,
  .page-hero,
  .section {
    padding: 58px 0;
  }

  .four-up,
  .three-up,
  .overview-list-cards,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .overview-motion-card {
    min-height: auto;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: 2.4rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    display: grid;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
