.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--borderSoft);
  background: var(--headerBg);
  backdrop-filter: blur(14px);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Baloo 2", Inter, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.2px;
}

.brand__logo {
  width: 56px;
  height: 56px;
  display: block;
  object-fit: cover;
  object-position: 26% 35%;
  border-radius: 16px;
  box-shadow: var(--logoShadow);
  transform: translateY(1px);
}

.brand__text {
  font-size: 20px;
  line-height: 1;
  transform: translateY(1px);
  color: var(--textStrong);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--borderSoft);
  background: var(--navControlBg);
  color: var(--muted);
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadowHover);
  background: var(--linkHoverBg);
  color: var(--textStrong);
}

.theme-toggle:active {
  transform: translateY(0);
}

.theme-toggle__icon {
  width: 22px;
  height: 22px;
}

.theme-toggle__icon--sun {
  display: none;
}

:root[data-theme="dark"] .theme-toggle__icon--sun {
  display: block;
}

:root[data-theme="dark"] .theme-toggle__icon--moon {
  display: none;
}

.nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--borderSoft);
  background: var(--navControlBg);
  color: var(--muted);
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.nav__toggle:hover {
  background: var(--linkHoverBg);
  color: var(--textStrong);
  box-shadow: var(--shadowHover);
  transform: translateY(-1px);
}

.nav__toggle:active {
  transform: translateY(0);
}

.nav__menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 12px);
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--surface2);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.nav__menu[data-open="true"] {
  display: flex;
}

.nav__link {
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--muted);
}

.nav__link:hover {
  background: var(--linkHoverBg);
  color: var(--textStrong);
  text-decoration: none;
}

.nav__cta {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  padding: 12px 16px;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
  user-select: none;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadowHover);
}

.btn:active {
  transform: translateY(0);
}

.btn--small {
  padding: 10px 14px;
  font-size: 14px;
}

.btn--primary {
  background: var(--btnPrimaryBg);
  border-color: var(--btnPrimaryBorder);
  color: var(--btnPrimaryText);
  box-shadow: var(--btnPrimaryShadow);
}

.btn--primary:hover {
  box-shadow: var(--btnPrimaryShadowHover);
}

.btn--ghost {
  background: var(--btnGhostBg);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--badgeBorder);
  background: var(--badgeBg);
  color: var(--muted);
  font-weight: 600;
  width: fit-content;
}

.grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.control-grid {
  margin-top: 24px;
  display: grid;
  gap: 18px;
}

.control-grid .grid {
  margin-top: 0;
}

.grid--cards {
  grid-template-columns: 1fr;
}

.grid--pricing {
  grid-template-columns: 1fr;
}

.grid--payments {
  grid-template-columns: 1fr;
}

.grid--bullets {
  grid-template-columns: 1fr;
}

.bullet-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 16px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadowSoft);
}

.bullet-card__icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--iconBg);
  border: 1px solid var(--iconBorder);
  color: var(--iconFg);
  box-shadow: var(--iconShadow);
}

.bullet-card__text {
  margin: 2px 0 0;
  font-weight: 700;
  color: var(--textStrong);
  line-height: 1.4;
}

.card {
  padding: 18px 18px 20px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadowSoft);
}

.card--with-badge {
  position: relative;
}

.card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 10px;
  font-size: 12px;
}

.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--iconBg);
  border: 1px solid var(--iconBorder);
  color: var(--iconFg);
  box-shadow: var(--iconShadow);
}

.card__title {
  margin: 14px 0 6px;
  font-size: 18px;
  letter-spacing: -0.2px;
  color: var(--textStrong);
}

.card__text {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadowSoft);
}

.step__media {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: var(--surface2);
  border: 1px solid var(--borderSoft);
  color: var(--muted2);
}

.step__kicker {
  font-weight: 700;
  color: var(--muted2);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.step__title {
  margin: 6px 0 6px;
  letter-spacing: -0.2px;
  color: var(--textStrong);
}

.step__text {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.note {
  margin: 16px 0 0;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--noteBorder);
  background: var(--noteBg);
  color: var(--textStrong);
}

.price-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadowSoft);
  padding: 18px;
  display: grid;
  gap: 12px;
}

.price-card--featured {
  border-color: var(--priceFeaturedBorder);
  box-shadow:
    var(--priceFeaturedShadowAccent),
    var(--shadowSoft);
}

.price-card__top {
  display: grid;
  gap: 6px;
}

.pill {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--pillBorder);
  background: var(--pillBg);
  font-weight: 700;
  color: var(--textStrong);
  font-size: 13px;
}

.price-card__title {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.2px;
  color: var(--textStrong);
}

.price-card__tag {
  margin: 0;
  color: var(--muted);
}

.price-card__price {
  margin-top: 8px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid var(--borderSoft);
  background: var(--priceCardPriceBg);
}

.price-card__label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted2);
  font-weight: 700;
}

.price-card__value {
  display: block;
  margin-top: 4px;
  font-weight: 800;
  font-family: "Baloo 2", Inter, system-ui, sans-serif;
  font-size: 20px;
  color: var(--textStrong);
}

.price-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: var(--text);
}

.price-card__list li {
  padding-left: 22px;
  position: relative;
}

.price-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, var(--green), var(--teal));
  box-shadow: var(--listDotRing);
  transform: translateY(-50%);
}

.fineprint {
  margin: 18px 0 0;
  color: var(--muted2);
  max-width: 110ch;
}

.waitlist {
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  background:
    radial-gradient(600px 260px at 10% 0%, var(--waitlistA), transparent 60%),
    radial-gradient(520px 240px at 90% 10%, var(--waitlistB), transparent 58%),
    var(--waitlistBase);
  box-shadow: var(--shadow);
  padding: 20px;
  display: grid;
  gap: 18px;
}

.social {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface3);
  font-weight: 700;
  color: var(--muted);
}

.social__link:hover {
  text-decoration: none;
  background: var(--linkHoverBg);
  color: var(--textStrong);
}

.form__label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}

.form__row {
  display: flex;
  gap: 10px;
}

.form__input {
  flex: 1;
  border-radius: 18px;
  border: 1px solid var(--borderStrong);
  padding: 12px 14px;
  font-size: 16px;
  background: var(--inputBg);
  color: var(--text);
}

.check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  user-select: none;
  color: var(--muted);
  font-weight: 600;
}

.check__input {
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
}

.form__status {
  margin-top: 12px;
  min-height: 22px;
  color: var(--muted);
  font-weight: 600;
}

.form__status[data-kind="error"] {
  color: var(--statusError);
}

.form__status[data-kind="success"] {
  color: var(--statusSuccess);
}

.form__hint {
  margin: 10px 0 0;
  color: var(--muted2);
}

.faq {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.faq__item {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadowSoft);
  padding: 0;
  overflow: hidden;
}

.faq__q {
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 16px 16px;
  font-weight: 800;
  letter-spacing: -0.2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--textStrong);
  border: 0;
  background: transparent;
  appearance: none;
}

.faq__q::after {
  content: "+";
  font-family: "Baloo 2", Inter, system-ui, sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--muted2);
}

.faq__q[aria-expanded="true"]::after {
  content: "–";
}

.faq__a {
  padding: 0 16px 16px;
  color: var(--muted);
  line-height: 1.6;
}

.footer {
  padding: 38px 0;
  border-top: 1px solid var(--borderSoft);
  background: var(--footerBg);
}

.footer__grid {
  display: grid;
  gap: 14px;
  align-items: start;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Baloo 2", Inter, system-ui, sans-serif;
  font-weight: 800;
}

.footer__logo img {
  width: 28px;
  height: 28px;
  object-fit: cover;
  object-position: 26% 35%;
  border-radius: 10px;
  box-shadow: var(--logoShadowSm);
  display: block;
}

.footer__name {
  font-size: 18px;
}

.footer__tagline {
  margin-top: 6px;
  color: var(--muted);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  color: var(--muted);
  font-weight: 600;
}

.footer__link {
  padding: 8px 10px;
  border-radius: 999px;
}

.footer__link:hover {
  text-decoration: none;
  background: var(--linkHoverBg);
}

.footer__meta {
  color: var(--muted2);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
}

.cookie-banner__inner {
  width: min(980px, 100%);
  margin: 0 auto;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  background: var(--surface2);
  box-shadow: var(--shadow);
  padding: 14px 14px;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-banner__copy {
  flex: 1 1 340px;
  min-width: 240px;
}

.cookie-banner__title {
  font-family: "Baloo 2", Inter, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.2px;
  color: var(--textStrong);
}

.cookie-banner__text {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.cookie-banner__link {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.cookie-prefs {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.cookie-row {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadowSoft);
}

.cookie-row__copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.cookie-row__name {
  font-weight: 800;
  letter-spacing: -0.2px;
  color: var(--textStrong);
}

.cookie-row__desc {
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.cookie-dialog__actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 32px;
  flex: 0 0 auto;
  cursor: pointer;
}

.switch__input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: inherit;
}

.switch__track {
  width: 52px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--borderSoft);
  background: var(--surface3);
  position: relative;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.switch__track::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--surfaceSolid);
  border: 1px solid var(--borderSoft);
  box-shadow: var(--shadowSoft);
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.switch__input:checked + .switch__track {
  background: var(--iconBg);
  border-color: var(--iconBorder);
  box-shadow: var(--iconShadow);
}

.switch__input:checked + .switch__track::after {
  transform: translateX(20px);
  border-color: var(--iconBorder);
}

.switch__input:focus-visible + .switch__track {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.switch__input:disabled {
  cursor: not-allowed;
}

.switch__input:disabled + .switch__track {
  opacity: 0.62;
  cursor: not-allowed;
}

@media (min-width: 720px) {
  .grid--cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

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

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

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

  .waitlist {
    grid-template-columns: 1fr 0.9fr;
    gap: 24px;
    padding: 24px;
  }

  .footer__grid {
    grid-template-columns: 1fr auto auto;
    align-items: center;
  }
}

@media (min-width: 900px) {
  .nav__toggle {
    display: none;
  }

  .nav__menu {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav__link {
    padding: 8px 10px;
  }
}

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

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

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