:root {
  color-scheme: light;
  --primary: #7367f0;
  --primary-soft: rgba(115, 103, 240, 0.14);
  --success: #28c76f;
  --warning: #ff9f43;
  --text-primary: #444050;
  --text-secondary: #6d6b77;
  --border-color: rgba(115, 103, 240, 0.16);
  --paper: #fff;
  --surface: rgba(255, 255, 255, 0.68);
  --shadow-sm: 0 4px 10px rgba(47, 43, 61, 0.08);
  --shadow-md: 0 10px 30px rgba(47, 43, 61, 0.1);
  --shadow-lg: 0 24px 60px rgba(47, 43, 61, 0.12);
  --radius: 1rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text-primary);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 30%),
    linear-gradient(180deg, #fff8fb 0%, #f6f5ff 46%, #f8fbff 100%);
}

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

a {
  color: inherit;
}

.layout-spacing {
  margin-inline: auto;
  padding-inline: 1.5rem;
}

@media (min-width: 900px) {
  .layout-spacing {
    max-inline-size: 900px;
  }
}

@media (min-width: 1200px) {
  .layout-spacing {
    max-inline-size: 1200px;
  }
}

@media (min-width: 1920px) {
  .layout-spacing {
    max-inline-size: 1440px;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  width: 100%;
  pointer-events: none;
}

.site-navbar {
  width: calc(100% - 48px);
  margin-inline: auto;
  padding: 0.47rem 1.5rem;
  background: var(--surface);
  border-inline: 1px solid var(--border-color);
  border-block-end: 1px solid var(--border-color);
  border-end-start-radius: 1rem;
  border-end-end-radius: 1rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  pointer-events: auto;
}

@media (min-width: 900px) {
  .site-navbar {
    max-inline-size: calc(900px - 48px);
  }
}

@media (min-width: 1200px) {
  .site-navbar {
    max-inline-size: calc(1200px - 48px);
  }
}

@media (min-width: 1920px) {
  .site-navbar {
    max-inline-size: calc(1440px - 48px);
  }
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  min-width: 0;
  text-decoration: none;
}

.brand-lockup img {
  width: 42px;
  height: 42px;
  border-radius: 0.875rem;
  box-shadow: 0 8px 16px rgba(115, 103, 240, 0.2);
}

.brand-text {
  min-width: 0;
}

.brand-text strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.brand-text span {
  display: block;
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: nowrap;
  justify-content: center;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--text-primary);
  padding: 0.75rem 0.35rem;
}

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

.nav-links .active {
  color: var(--primary);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

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

.mobile-menu {
  position: relative;
}

.mobile-menu summary {
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  border-radius: 0.75rem;
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
}

.mobile-icon-button:hover {
  background: rgba(115, 103, 240, 0.08);
}

.mobile-theme-button {
  width: 2.75rem;
  height: 2.75rem;
  min-width: 2.75rem;
}

.desktop-theme-button {
  width: 2.1rem;
  height: 2.1rem;
  min-width: 2.1rem;
  color: var(--text-primary);
}

.desktop-theme-button:hover {
  color: var(--primary);
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 0.9rem);
  left: 0;
  width: min(320px, calc(100vw - 3rem));
  padding: 1rem;
  border-radius: 1rem;
  background: var(--paper);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.mobile-menu-links {
  display: grid;
  gap: 0.35rem;
}

.mobile-menu-links a {
  display: block;
  padding: 0.85rem 0.95rem;
  border-radius: 0.8rem;
  color: var(--text-primary);
  font-weight: 600;
  text-decoration: none;
}

.mobile-menu-links a:hover {
  background: rgba(115, 103, 240, 0.08);
  color: var(--primary);
}

.mobile-menu-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(68, 64, 80, 0.08);
}

.mobile-menu-actions .button {
  width: 100%;
}

.theme-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid var(--border-color);
  background: var(--surface);
  color: var(--text-primary);
  font-size: 1.1rem;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  border: none;
  background: transparent;
  color: #3d4461;
  border-radius: 10px;
  box-shadow: none;
  cursor: pointer;
}

.theme-toggle-icon {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
}

.theme-toggle-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.theme-toggle-label {
  display: none;
}

.theme-toggle-icon-moon {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  min-height: 3rem;
  padding-inline: 1.25rem;
  border-radius: 0.625rem;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.94rem;
  white-space: nowrap;
  transition: 180ms ease;
}

.navbar-actions .button {
  font-size: 0.88rem;
  padding-inline: 0.95rem;
}

.button-primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 8px 18px rgba(115, 103, 240, 0.26);
}

.button-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(115, 103, 240, 0.3);
}

.button-outline {
  color: var(--text-primary);
  background: var(--surface);
  border-color: var(--border-color);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding-block-start: 70px;
  margin-block-start: -70px;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: -12% 0 0 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: -2;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: 2rem;
  padding-block: 4.75rem 6rem;
}

.hero-copy {
  max-width: 100%;
  text-align: left;
}

.hero-copy h1 {
  max-width: 640px;
  margin: 0 0 1.25rem;
  color: var(--text-primary);
  font-size: clamp(2.35rem, 3.9vw, 3.9rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 900;
  text-wrap: balance;
}

.hero-copy h1 span {
  color: var(--primary);
}

.hero-copy p {
  max-width: 620px;
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.6;
  color: var(--text-secondary);
  text-wrap: balance;
}

.hero-action {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 760px;
  margin-top: 2rem;
}

.hero-proof-item {
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: var(--surface);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.hero-proof-item strong {
  display: block;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.hero-proof-item span {
  display: block;
  margin-top: 0.25rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.45;
}

.hero-panel {
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}

.hero-panel-head {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-panel-head strong {
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.hero-panel-head p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.55;
}

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

.hero-panel-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: var(--paper);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.hero-panel-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.85rem;
  background: rgba(115, 103, 240, 0.12);
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-panel-card strong {
  display: block;
  font-size: 1rem;
}

.hero-panel-card p {
  margin: 0.35rem 0 0;
  color: var(--text-secondary);
  line-height: 1.45;
  font-size: 0.9rem;
}

.hero-panel-footer {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(115, 103, 240, 0.12), var(--surface));
  border: 1px solid var(--border-color);
}

.hero-panel-footer strong {
  display: block;
  margin-bottom: 0.35rem;
}

.hero-panel-footer span {
  color: var(--text-secondary);
  line-height: 1.6;
}

.section {
  padding-block: 6.25rem;
}

.section.paper {
  background: var(--paper);
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.heading-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
}

.heading-kicker svg {
  flex: 0 0 auto;
}

.section-heading h2 {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 3.5vw, 2.375rem);
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.section-heading h2 strong {
  font-size: inherit;
}

.section-heading p {
  max-width: 760px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  row-gap: 3rem;
  column-gap: 1.5rem;
  margin-top: 3.75rem;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.feature-icon {
  width: 5.125rem;
  height: 5.125rem;
  padding: 1.25rem;
  border-radius: 999px;
  border: 2px solid rgba(115, 103, 240, 0.18);
  background: var(--paper);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.feature-card h3 {
  margin: 0.5rem 0 0;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.feature-card p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 22rem;
}

.cards-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 4rem;
}

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

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

.cards-grid-spaced {
  margin-top: 3.5rem;
}

.review-card,
.plan-card,
.team-card,
.stat-card,
.footer-mini-card {
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.review-card {
  padding: 2rem;
}

.review-card p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.75;
}

.review-card .review-meta {
  margin-top: 1.5rem;
}

.review-card .review-meta strong {
  display: block;
  font-size: 1rem;
}

.review-card .review-meta span {
  display: block;
  margin-top: 0.35rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.brand-pill-row {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.brand-pill {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(115, 103, 240, 0.08);
  color: var(--text-primary);
  font-size: 0.92rem;
  font-weight: 600;
}

.team-section-wrap {
  position: relative;
}

.team-decoration,
.pricing-decoration {
  position: absolute;
}

.team-decoration {
  right: 0;
  top: 0;
}

.pricing-decoration {
  left: 0;
  top: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 6.25rem;
}

.team-card {
  overflow: hidden;
}

.team-cover {
  position: relative;
  height: 11.8rem;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.team-cover-primary {
  background: rgba(115, 103, 240, 0.12);
}

.team-cover-danger {
  background: rgba(255, 76, 81, 0.12);
}

.team-cover-success {
  background: rgba(40, 199, 111, 0.12);
}

.team-cover-info {
  background: rgba(0, 207, 232, 0.12);
}

.team-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.team-card-body h3 {
  margin: 0;
  text-align: center;
  font-size: 1.25rem;
}

.team-card-body p {
  margin: 0;
  text-align: center;
  color: var(--text-secondary);
}

.team-tags {
  display: flex;
  justify-content: center;
  gap: 0.625rem;
  flex-wrap: wrap;
}

.team-tags span {
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(115, 103, 240, 0.1);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
}

.slider-row {
  width: min(65%, 760px);
  margin: 2rem auto 0;
  text-align: center;
}

.range-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  min-height: 38px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.fake-range {
  margin-top: 1.25rem;
  height: 6px;
  border-radius: 999px;
  background: rgba(115, 103, 240, 0.14);
  position: relative;
}

.fake-range::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 46%;
  border-radius: inherit;
  background: var(--primary);
}

.fake-range::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 46%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--primary);
  transform: translate(-50%, -50%);
  box-shadow: var(--shadow-sm);
}

.plan-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.plan-card.featured {
  border: 2px solid var(--primary);
}

.plan-card h3 {
  margin: 0;
  text-align: center;
  font-size: 1.6rem;
}

.plan-badge {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.75rem;
}

.plan-badge strong {
  font-size: 3.4rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.plan-badge span {
  display: block;
  color: var(--text-secondary);
}

.curve-line {
  width: 72px;
  color: var(--primary);
}

.check-list {
  display: grid;
  gap: 0.9rem;
}

.check-row {
  display: flex;
  align-items: start;
  gap: 0.75rem;
}

.check-row svg {
  color: var(--primary);
  flex: 0 0 auto;
  margin-top: 0.22rem;
}

.support-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(68, 64, 80, 0.08);
}

.support-box strong {
  display: block;
}

.support-box span {
  color: var(--text-secondary);
  font-size: 0.94rem;
}

.mini-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.85rem;
  padding-inline: 0.75rem;
  border-radius: 999px;
  background: rgba(115, 103, 240, 0.1);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.stat-card {
  padding: 1.5rem;
  text-align: center;
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(115, 103, 240, 0.1);
}

.stat-icon-success {
  color: var(--success);
  background: rgba(40, 199, 111, 0.14);
}

.stat-icon-warning {
  color: var(--warning);
  background: rgba(255, 159, 67, 0.16);
}

.stat-icon-info {
  color: #00cfe8;
  background: rgba(0, 207, 232, 0.14);
}

.stat-card strong {
  display: block;
  font-size: 2.125rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.stat-card p {
  margin: 0.5rem 0 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) minmax(0, 0.54fr);
  gap: 1.5rem;
  margin-top: 4rem;
  align-items: start;
}

.faq-illustration {
  text-align: center;
}

.faq-illustration img {
  width: min(80%, 320px);
  margin-inline: auto;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

details {
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 600;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.cta-section {
  position: relative;
  background: var(--paper);
}

.cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.cta-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 2rem 3rem;
  width: 100%;
  padding-block: 2.5rem;
}

.cta-copy > div {
  max-width: 980px;
}

.cta-copy h2 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.cta-copy p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.7;
}

.cta-copy .button {
  justify-self: end;
  align-self: center;
}

.footer {
  color: #fff;
}

.footer-top {
  position: relative;
}

.footer-top img.footer-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.footer-main {
  padding-block: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) repeat(3, minmax(0, 0.8fr));
  gap: 2rem 3rem;
}

.footer-brand p,
.footer-col p,
.footer-col a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  line-height: 1.7;
}

.footer-brand .brand-text .footer-brand-title {
  color: #fff;
}

.footer-brand .brand-text .footer-brand-subtitle {
  color: rgba(255, 255, 255, 0.78);
}

.footer-brand p {
  max-width: 390px;
  margin: 1.25rem 0 0;
}

.footer-col h4 {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.92);
}

.footer-links {
  display: grid;
  gap: 0.85rem;
}

.footer-store {
  display: grid;
  gap: 1rem;
}

.store-chip {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  width: 211px;
  height: 56px;
  border-radius: 0.5rem;
  padding-inline: 1.25rem;
  background: #211b2c;
}

.store-chip img {
  width: 34px;
  height: 34px;
}

.store-chip strong {
  display: block;
  color: rgba(255, 255, 255, 0.92);
}

.store-chip span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

.footer-bottom {
  background: #211b2c;
}

.footer-bottom-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding-block: 0.9375rem;
}

.footer-bottom-row p {
  grid-column: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.875rem;
  text-align: center;
}

.social-row {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

:root[data-theme='dark'] {
  color-scheme: dark;
  --text-primary: #eaf1ff;
  --text-secondary: #a7b7d4;
  --border-color: #2f4268;
  --paper: #111827;
  --surface: rgba(17, 24, 39, 0.9);
  --shadow-sm: 0 10px 24px rgba(0, 0, 0, 0.28);
  --shadow-md: 0 18px 42px rgba(0, 0, 0, 0.34);
  --shadow-lg: 0 28px 72px rgba(0, 0, 0, 0.4);
}

:root[data-theme='dark'] body {
  background:
    radial-gradient(circle at top left, rgba(95, 141, 255, 0.28), rgba(95, 141, 255, 0) 30%),
    linear-gradient(180deg, #081024 0%, #0e172d 46%, #111d37 100%);
}

:root[data-theme='dark'] .site-navbar {
  background: rgba(17, 24, 39, 0.9);
  border-color: #273449;
}

:root[data-theme='dark'] .mobile-menu-panel {
  background: #111827;
}

:root[data-theme='dark'] .mobile-icon-button,
:root[data-theme='dark'] .mobile-menu-links a,
:root[data-theme='dark'] .nav-links a {
  color: #ebf1ff;
}

:root[data-theme='dark'] .theme-toggle.mobile-theme-button {
  background: #111f3c;
  color: #c2d0ee;
}

:root[data-theme='dark'] .theme-toggle.mobile-theme-button:hover {
  background: #16274a;
}

:root[data-theme='dark'] .theme-toggle-icon-sun {
  display: none;
}

:root[data-theme='dark'] .theme-toggle-icon-moon {
  display: inline-grid;
}

:root[data-theme='dark'] .hero-bg,
:root[data-theme='dark'] .cta-bg {
  opacity: 0.18;
}

:root[data-theme='dark'] .brand-pill {
  background: rgba(95, 141, 255, 0.2);
  color: #d6e2ff;
}

@media (max-width: 1199px) {
  .feature-grid,
  .cards-grid.three,
  .cards-grid.four,
  .team-grid,
  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 899px) {
  .navbar-content {
    position: relative;
    display: grid;
    grid-template-columns: 2.75rem minmax(0, 1fr) 2.75rem;
    gap: 0.75rem;
  }

  .nav-links,
  .navbar-actions {
    display: none;
  }

  .mobile-menu,
  .theme-toggle.mobile-theme-button {
    display: inline-flex;
  }

  .mobile-theme-button {
    justify-self: end;
  }

  .brand-lockup {
    justify-self: center;
  }

  .brand-text strong {
    font-size: 0.98rem;
    white-space: nowrap;
  }

  .brand-text span {
    display: none;
  }

  .brand-lockup img {
    width: 38px;
    height: 38px;
  }

  .hero-inner,
  .faq-grid,
  .cta-content {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-action {
    justify-content: center;
  }

  .hero-copy h1,
  .hero-copy p,
  .hero-proof {
    margin-inline: auto;
  }

  .faq-grid {
    display: grid;
  }
}

@media (max-width: 767px) {
  .site-navbar {
    width: calc(100% - 24px);
    padding-inline: 1rem;
  }

  .brand-lockup {
    gap: 0.7rem;
  }

  .section {
    padding-block: 4.5rem;
  }

  .hero-inner {
    padding-block: 4rem 4.75rem;
  }

  .cta-copy {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.5rem;
  }

  .cta-copy .button {
    justify-self: start;
  }

  .feature-grid,
  .cards-grid.three,
  .cards-grid.four,
  .hero-proof,
  .team-grid,
  .stat-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .slider-row {
    width: 100%;
  }

  .brand-text strong {
    font-size: 0.9rem;
  }

  .hero-copy p,
  .section-heading p,
  .cta-copy p {
    font-size: 1rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
  }

  .footer-bottom-row {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-bottom-row p,
  .social-row {
    grid-column: 1;
  }

  .social-row {
    justify-self: center;
  }
}
