:root {
  --accent: #3b5bfd;
  --text-primary: rgb(11, 11, 12);
  --text-secondary: rgb(94, 94, 102);
  --text-muted: rgb(154, 154, 163);
  --text-nav: rgb(63, 63, 70);
  --border: rgb(240, 239, 236);
  --border-light: rgb(228, 228, 231);
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --page-padding: clamp(20px, 5vw, 72px);
  --section-padding-y: clamp(56px, 10vw, 96px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: #fff;
  color: var(--text-primary);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
}

.page {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  background: #fff;
  overflow: hidden;
}

/* Animations */
@keyframes pt-bar {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

@keyframes pt-up {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pt-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 16px var(--page-padding);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 100;
  background: #fff;
}

.site-header__left {
  display: flex;
  align-items: center;
  gap: 44px;
}

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

.logo__mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 17px;
}

.logo__name {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-nav);
}

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

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  padding: 12px 0 8px;
  border-top: 1px solid var(--border);
  margin-top: 12px;
}

.mobile-nav:not([hidden]) {
  display: flex;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 4px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-nav);
}

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

.btn--mobile-nav {
  margin-top: 8px;
  width: 100%;
}

.btn__label-short {
  display: none;
}

.link-sign-in {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 0 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
}

.btn--primary {
  height: 42px;
  padding: 0 22px;
  background: var(--text-primary);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
}

.btn--primary-lg {
  height: 52px;
  padding: 0 28px;
  background: var(--text-primary);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 17px;
}

.btn--primary-xl {
  height: 54px;
  padding: 0 36px;
  background: var(--text-primary);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 17px;
  width: 100%;
}

.btn--outline {
  height: 52px;
  padding: 0 22px;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-primary);
  background: #fff;
  gap: 10px;
}

.btn--white {
  height: 56px;
  padding: 0 36px;
  background: #fff;
  color: var(--text-primary);
  border-radius: 999px;
  font-weight: 700;
  font-size: 17px;
}

.btn--ghost-white {
  height: 56px;
  padding: 0 26px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  gap: 10px;
}

.google-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: conic-gradient(
    from -45deg,
    rgb(234, 67, 53) 0deg 25%,
    rgb(251, 188, 5) 25% 50%,
    rgb(52, 168, 83) 50% 75%,
    rgb(66, 133, 244) 75% 100%
  );
  flex: 0 0 auto;
}

/* Hero */
.hero {
  display: flex;
  align-items: center;
  gap: clamp(32px, 5vw, 60px);
  padding: clamp(48px, 8vw, 88px) var(--page-padding) clamp(40px, 6vw, 72px);
}

.hero__content {
  flex: 1.15 1 0%;
  min-width: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 0 16px;
  border: 1px solid rgb(231, 230, 226);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: rgb(82, 82, 91);
  margin-bottom: 28px;
  white-space: nowrap;
}

.badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.hero__title {
  margin: 0;
  font-size: clamp(2.5rem, 8vw, 4.25rem);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--text-primary);
}

.hero__subtitle {
  margin: 24px 0 0;
  font-size: clamp(1rem, 2.5vw, 1.1875rem);
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 500px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.tag {
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.tag--purple {
  background: rgb(243, 238, 255);
  color: rgb(125, 82, 214);
}

.tag--blue {
  background: rgb(238, 241, 255);
  color: rgb(59, 91, 253);
}

.tag--green {
  background: rgb(237, 253, 243);
  color: rgb(21, 147, 90);
}

.tag--orange {
  background: rgb(255, 244, 230);
  color: rgb(194, 98, 10);
}

.hero__actions {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero__note {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--text-muted);
}

.hero__visual {
  flex: 1 1 0%;
  display: flex;
  justify-content: center;
  min-width: 0;
}

/* Dashboard mockup */
.mockup {
  width: 100%;
  max-width: 500px;
  border: 1px solid rgb(236, 236, 234);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: rgba(11, 11, 12, 0.14) 0 24px 64px;
}

.mockup__chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgb(241, 240, 237);
  background: rgb(251, 251, 250);
}

.mockup__dots {
  display: flex;
  gap: 6px;
}

.mockup__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.mockup__dot--yellow {
  background: rgb(244, 180, 74);
}

.mockup__dot--green {
  background: rgb(105, 208, 110);
}

.mockup__dot--gray {
  background: var(--border-light);
}

.mockup__url {
  flex: 1 1 0%;
  display: flex;
  justify-content: center;
}

.mockup__url-pill {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 14px;
  background: #fff;
  border: 1px solid rgb(237, 237, 235);
  border-radius: 999px;
  font-size: 12px;
  color: rgb(138, 138, 147);
}

.mockup__body {
  display: flex;
}

.mockup__sidebar {
  width: 172px;
  border-right: 1px solid rgb(243, 242, 239);
  padding: 16px 12px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
}

.mockup__sidebar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 6px 14px;
}

.mockup__sidebar-logo .logo__mark {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  font-size: 12px;
}

.mockup__sidebar-logo .logo__name {
  font-size: 14px;
}

.mockup__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mockup__nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding: 0 9px;
  border-radius: 8px;
  color: rgb(82, 82, 91);
  font-size: 13px;
}

.mockup__nav-item--active {
  background: rgb(243, 244, 255);
  color: rgb(59, 91, 253);
  font-weight: 600;
}

.mockup__nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: rgb(216, 216, 222);
  flex: 0 0 auto;
}

.mockup__nav-item--active .mockup__nav-dot {
  background: rgb(59, 91, 253);
}

.mockup__user {
  margin-top: auto;
  padding: 7px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-radius: 9px;
  background: rgb(250, 250, 249);
}

.mockup__avatar {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgb(107, 168, 255), rgb(59, 91, 253));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  flex: 0 0 auto;
}

.mockup__user-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
}

.mockup__user-plan {
  font-size: 10px;
  color: rgb(59, 91, 253);
  font-weight: 600;
}

.mockup__main {
  flex: 1 1 0%;
  padding: 20px 22px 26px;
}

.mockup__label {
  font-size: 12px;
  color: rgb(113, 113, 122);
}

.mockup__stat {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  margin-top: 3px;
}

.mockup__stat-value {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1;
}

.mockup__stat-badge {
  height: 20px;
  padding: 0 7px;
  background: rgb(232, 246, 238);
  color: rgb(21, 147, 90);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  margin-bottom: 4px;
}

.mockup__chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 50px;
  margin-top: 16px;
}

.mockup__bar {
  flex: 1 1 0%;
  border-radius: 3px;
  transform-origin: center bottom;
  animation: 0.7s cubic-bezier(0.2, 0.75, 0.25, 1) 1 normal both running pt-bar;
}

.mockup__section-title {
  margin-top: 18px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mockup__sales {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
}

.mockup__sale {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgb(244, 243, 240);
  animation: 0.55s ease 1 normal both running pt-up;
}

.mockup__sale:last-child {
  border-bottom: none;
}

.mockup__sale-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mockup__sale-avatar {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.mockup__sale-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
}

.mockup__sale-meta {
  font-size: 10.5px;
  color: var(--text-muted);
}

.mockup__sale-right {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mockup__sale-price {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-primary);
}

.mockup__check {
  width: 15px;
  height: 15px;
  border-radius: 999px;
  background: rgb(21, 147, 90);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
}

.mockup__check--pulse {
  animation: 2.4s ease-out 1.4s infinite normal none running pt-pulse;
}

.mockup__lead {
  font-size: 12px;
  font-weight: 600;
  color: rgb(21, 147, 90);
}

/* Trust bar */
.trust-bar {
  background: rgb(250, 250, 249);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px var(--page-padding);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.trust-bar__stripe {
  display: flex;
  align-items: center;
  gap: 9px;
}

.trust-bar__stripe-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-bar__stripe-logo {
  font-size: 20px;
  font-weight: 700;
  color: rgb(99, 91, 255);
  letter-spacing: -0.02em;
}

.trust-bar__divider {
  width: 1px;
  height: 16px;
  background: var(--border-light);
}

.trust-bar__item {
  font-size: 13.5px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Section headers */
.section-intro {
  padding: var(--section-padding-y) var(--page-padding) 0;
  text-align: center;
}

.section-intro__badge {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 13px;
  border: 1px solid rgb(231, 230, 226);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgb(82, 82, 91);
  margin-bottom: 20px;
}

.section-intro__title {
  margin: 0 auto;
  font-size: clamp(2rem, 6vw, 3.375rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  max-width: 740px;
}

.section-intro__subtitle {
  margin: 18px auto 0;
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 600px;
}

/* Feature sections */
.feature {
  display: flex;
  min-height: 560px;
  border-top: 1px solid var(--border);
}

.feature--lead {
  min-height: 540px;
}

.feature--links {
  min-height: 520px;
}

.feature__content {
  flex: 1 1 0%;
  padding: clamp(40px, 6vw, 72px) clamp(20px, 4vw, 52px) clamp(40px, 6vw, 72px) var(--page-padding);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature__content--right {
  padding: clamp(40px, 6vw, 72px) var(--page-padding) clamp(40px, 6vw, 72px) clamp(20px, 4vw, 52px);
}

.feature__label {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 16px;
}

.feature__label--purple {
  background: rgb(243, 238, 255);
  color: rgb(125, 82, 214);
}

.feature__label--blue {
  background: rgb(238, 241, 255);
  color: rgb(59, 91, 253);
}

.feature__label--green {
  background: rgb(237, 253, 243);
  color: rgb(21, 147, 90);
}

.feature__label--orange {
  background: rgb(255, 244, 230);
  color: rgb(194, 98, 10);
}

.feature__title {
  margin: 0;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}

.feature__text {
  margin: 16px 0 0;
  font-size: clamp(1rem, 2.2vw, 1.0625rem);
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 410px;
}

.check-list {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

.check-list__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-nav);
}

.check-list__item--start {
  align-items: flex-start;
}

.check-list__icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}

.check-list__icon--purple {
  background: rgb(243, 238, 255);
  color: rgb(125, 82, 214);
}

.check-list__icon--blue {
  background: rgb(238, 241, 255);
  color: rgb(59, 91, 253);
}

.check-list__icon--green {
  background: rgb(237, 253, 243);
  color: rgb(21, 147, 90);
}

.check-list__icon--orange {
  background: rgb(255, 244, 230);
  color: rgb(194, 98, 10);
}

.check-list__item--start .check-list__icon {
  margin-top: 2px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 22px;
}

.pill {
  height: 26px;
  padding: 0 10px;
  background: rgb(244, 244, 243);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: rgb(82, 82, 91);
  display: inline-flex;
  align-items: center;
}

.feature__visual {
  flex: 1 1 0%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(32px, 5vw, 52px) var(--page-padding);
}

.feature__visual--purple {
  background: linear-gradient(145deg, rgb(245, 242, 255), rgb(237, 232, 253));
}

.feature__visual--blue {
  background: linear-gradient(145deg, rgb(239, 244, 255), rgb(219, 234, 254));
}

.feature__visual--green {
  background: linear-gradient(145deg, rgb(240, 253, 248), rgb(209, 250, 229));
}

.feature__visual--orange {
  background: linear-gradient(145deg, rgb(255, 248, 240), rgb(253, 232, 208));
}

/* Product cards in features */
.product-card {
  width: 100%;
  max-width: 340px;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
}

.product-card--purple {
  border: 1px solid rgb(229, 223, 248);
  box-shadow: rgba(101, 59, 195, 0.16) 0 20px 52px;
}

.product-card--blue {
  border: 1px solid rgb(199, 215, 253);
  box-shadow: rgba(59, 91, 253, 0.16) 0 20px 52px;
}

.product-card--green {
  border: 1px solid rgb(167, 217, 190);
  box-shadow: rgba(21, 147, 90, 0.14) 0 20px 52px;
}

.product-card__hero {
  height: 110px;
  background: linear-gradient(120deg, rgb(216, 204, 255), rgb(161, 139, 255));
  display: flex;
  align-items: flex-end;
  padding: 12px;
}

.product-card__type {
  height: 22px;
  padding: 0 9px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  color: rgb(125, 82, 214);
}

.product-card__body {
  padding: 16px 18px 20px;
}

.product-card__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.product-card__desc {
  font-size: 12.5px;
  color: rgb(113, 113, 122);
  margin-top: 4px;
}

.product-card__price {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-top: 12px;
  line-height: 1;
}

.product-card__skeleton {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.product-card__skeleton-line {
  height: 7px;
  border-radius: 999px;
  background: var(--border);
}

.product-card__cta {
  margin-top: 14px;
  height: 42px;
  background: rgb(125, 82, 214);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.product-card__footnote {
  margin-top: 9px;
  text-align: center;
  font-size: 11px;
  color: rgb(161, 161, 170);
}

/* Membership card */
.membership-card__header {
  padding: 18px 20px 14px;
  border-bottom: 1px solid rgb(238, 241, 255);
}

.membership-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.membership-card__label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.membership-card__amount {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.1;
  margin-top: 2px;
}

.membership-card__amount span {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.membership-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 26px;
  padding: 0 10px;
  background: rgb(232, 246, 238);
  color: rgb(21, 147, 90);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.membership-card__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgb(21, 147, 90);
}

.membership-card__list {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.membership-card__member {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 9px;
  background: rgb(248, 250, 255);
  border-radius: 9px;
}

.membership-card__member-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.membership-card__member-avatar {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.membership-card__member-name {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-primary);
}

.membership-card__member-price {
  font-size: 11px;
  color: var(--text-muted);
}

.membership-card__member-status {
  font-size: 11.5px;
  color: rgb(21, 147, 90);
  font-weight: 600;
}

.membership-card__more {
  font-size: 11.5px;
  color: var(--text-muted);
  text-align: center;
}

/* Lead magnet card */
.lead-card {
  padding: 18px;
}

.lead-card__header {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
}

.lead-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgb(189, 240, 212), rgb(21, 147, 90));
  flex: 0 0 auto;
}

.lead-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.lead-card__meta {
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lead-card__free {
  height: 19px;
  padding: 0 7px;
  background: rgb(232, 246, 238);
  color: rgb(21, 147, 90);
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
}

.lead-card__note {
  font-size: 11.5px;
  color: rgb(113, 113, 122);
}

.lead-card__fields {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.lead-card__field {
  height: 38px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 0 11px;
  font-size: 13px;
  color: var(--text-muted);
  background: rgb(250, 250, 249);
}

.lead-card__field--active {
  border: 1.5px solid rgb(21, 147, 90);
  color: var(--text-primary);
  background: #fff;
}

.lead-card__submit {
  height: 40px;
  background: var(--text-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
}

.lead-card__tip {
  margin-top: 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgb(240, 253, 248);
  border-radius: 9px;
  padding: 9px 11px;
}

.lead-card__tip-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgb(21, 147, 90);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  margin-top: 1px;
}

.lead-card__tip-text {
  font-size: 11.5px;
  color: rgb(21, 147, 90);
  line-height: 1.4;
}

/* Storefront mockup */
.storefront-mockup {
  width: 100%;
  max-width: 340px;
}

.storefront-mockup__tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  background: rgb(251, 251, 250);
  border: 1px solid var(--border-light);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
}

.storefront-mockup__tab-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--border-light);
}

.storefront-mockup__tab-url {
  margin-left: 4px;
  font-size: 10px;
  color: var(--text-muted);
}

.storefront-mockup__card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 0 0 18px 18px;
  overflow: hidden;
  box-shadow: rgba(194, 98, 10, 0.15) 0 16px 44px;
}

.storefront-mockup__profile {
  padding: 12px 13px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgb(243, 242, 239);
}

.storefront-mockup__profile-avatar {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgb(107, 168, 255), rgb(59, 91, 253));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  flex: 0 0 auto;
}

.storefront-mockup__profile-name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-primary);
}

.storefront-mockup__profile-role {
  font-size: 10.5px;
  color: var(--text-muted);
}

.storefront-mockup__links {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.storefront-mockup__link {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgb(239, 238, 236);
  border-radius: 9px;
  padding: 8px 9px;
}

.storefront-mockup__link--dim {
  opacity: 0.5;
}

.storefront-mockup__link--highlight {
  border: 2px solid rgb(249, 115, 22);
  background: rgb(255, 251, 246);
}

.storefront-mockup__link-icon {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  flex: 0 0 auto;
}

.storefront-mockup__link-title {
  flex: 1 1 0%;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-primary);
}

.storefront-mockup__link-title strong {
  font-weight: 700;
}

.storefront-mockup__link-sub {
  font-size: 10px;
  color: var(--text-muted);
}

.storefront-mockup__link-badge {
  height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  font-size: 10.5px;
  font-weight: 600;
  flex: 0 0 auto;
}

.storefront-mockup__link-badge--dark {
  background: var(--text-primary);
  color: #fff;
}

.storefront-mockup__link-badge--orange {
  background: rgb(249, 115, 22);
  color: #fff;
}

.storefront-mockup__link-badge--gray {
  background: rgb(244, 244, 243);
  color: rgb(113, 113, 122);
}

/* Examples section */
.examples {
  background: var(--text-primary);
  padding: var(--section-padding-y) var(--page-padding);
}

.examples__intro {
  text-align: center;
  margin-bottom: 64px;
}

.examples__badge {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.08);
  color: rgb(166, 166, 176);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 20px;
}

.examples__title {
  margin: 0;
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.05;
}

.examples__subtitle {
  margin: 16px auto 0;
  font-size: 18px;
  color: rgb(113, 113, 122);
  max-width: 560px;
  line-height: 1.55;
}

.examples__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.example-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 28px;
}

.example-card--featured {
  background: linear-gradient(135deg, rgba(59, 91, 253, 0.15), rgba(101, 59, 195, 0.1));
  border: 1px solid rgba(59, 91, 253, 0.3);
}

.example-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-bottom: 18px;
}

.example-card__icon--logo {
  background: linear-gradient(135deg, rgb(107, 168, 255), rgb(59, 91, 253));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 20px;
}

.example-card__title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}

.example-card__text {
  margin: 10px 0 0;
  font-size: 14.5px;
  color: rgb(113, 113, 122);
  line-height: 1.55;
}

.example-card__tags {
  margin-top: 18px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.example-card__tag {
  height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.example-card__cta {
  margin-top: 18px;
  font-size: 14px;
  color: rgb(141, 164, 251);
  font-weight: 600;
}

/* Pricing */
.pricing {
  padding: var(--section-padding-y) var(--page-padding);
}

.pricing__intro {
  text-align: center;
  margin-bottom: 56px;
}

.pricing__title {
  margin: 0;
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1.05;
}

.pricing__subtitle {
  margin: 16px auto 0;
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 500px;
}

.pricing__card {
  max-width: 660px;
  margin: 0 auto;
  border: 1.5px solid var(--text-primary);
  border-radius: 28px;
  overflow: hidden;
}

.pricing__header {
  background: var(--text-primary);
  padding: clamp(28px, 5vw, 44px) clamp(24px, 4vw, 48px) clamp(24px, 4vw, 40px);
  position: relative;
  overflow: hidden;
}

.pricing__glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(59, 91, 253, 0.35), transparent);
  pointer-events: none;
}

.pricing__header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}

.pricing__plan-name {
  font-size: 13px;
  font-weight: 600;
  color: rgb(166, 166, 176);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing__price-row {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-top: 8px;
}

.pricing__price {
  font-size: clamp(3rem, 12vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
}

.pricing__period {
  font-size: 18px;
  color: rgb(166, 166, 176);
  margin-bottom: 12px;
}

.pricing__tagline {
  font-size: 15px;
  color: rgb(113, 113, 122);
  margin-top: 2px;
}

.pricing__trial-badge {
  height: 32px;
  padding: 0 13px;
  background: rgba(59, 91, 253, 0.9);
  color: #fff;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  font-size: 12.5px;
  font-weight: 700;
  flex: 0 0 auto;
  margin-top: 8px;
}

.pricing__body {
  padding: clamp(24px, 4vw, 36px) clamp(24px, 4vw, 48px) clamp(28px, 4vw, 44px);
  background: #fff;
}

.pricing__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-bottom: 32px;
}

.pricing__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-nav);
}

.pricing__check {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--text-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}

.pricing__footnote {
  text-align: center;
  margin-top: 13px;
  font-size: 13.5px;
  color: var(--text-muted);
}

/* CTA banner */
.cta-banner {
  margin: 0 clamp(16px, 3vw, 40px) clamp(24px, 4vw, 40px);
  border-radius: clamp(16px, 3vw, 24px);
  background: linear-gradient(135deg, rgb(26, 31, 110), rgb(59, 91, 253), rgb(99, 112, 255));
  overflow: hidden;
  position: relative;
}

.cta-banner__glow-top {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.cta-banner__glow-bottom {
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.cta-banner__content {
  padding: clamp(56px, 10vw, 96px) clamp(24px, 5vw, 80px);
  text-align: center;
  position: relative;
}

.cta-banner__label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cta-banner__title {
  margin: 0 auto;
  font-size: clamp(2rem, 7vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.06;
  max-width: 720px;
}

.cta-banner__text {
  margin: 22px auto 0;
  font-size: 19px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  line-height: 1.55;
}

.cta-banner__actions {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.cta-banner__note {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* Footer */
.site-footer {
  background: var(--text-primary);
  padding: clamp(32px, 5vw, 48px) var(--page-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.site-footer .logo__name {
  color: #fff;
}

.site-footer__nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: rgb(166, 166, 176);
  font-weight: 500;
}

.site-footer__nav a:hover {
  color: #fff;
}

.site-footer__copy {
  font-size: 13px;
  color: rgb(107, 107, 115);
}

.features-section {
  margin-top: clamp(32px, 5vw, 64px);
}

/* ── Responsive ─────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .examples__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__content {
    flex: none;
  }

  .hero__subtitle {
    max-width: none;
  }

  .hero__visual {
    flex: none;
    width: 100%;
  }

  .mockup {
    max-width: 560px;
    margin: 0 auto;
  }

  .feature {
    flex-direction: column;
    min-height: 0;
  }

  .feature__content,
  .feature__content--right {
    order: 1;
  }

  .feature__visual {
    order: 2;
  }

  .feature--lead,
  .feature--links {
    min-height: 0;
  }

  .feature__content,
  .feature__content--right {
    padding: clamp(40px, 6vw, 56px) var(--page-padding);
  }

  .feature__text {
    max-width: none;
  }

  .feature__visual {
    padding: clamp(32px, 5vw, 48px) var(--page-padding);
  }
}

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

  .link-sign-in--desktop {
    display: none;
  }

  .btn--header {
    height: 38px;
    padding: 0 14px;
    font-size: 13px;
    white-space: nowrap;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header__left {
    gap: 0;
  }

  .badge {
    white-space: normal;
    height: auto;
    min-height: 34px;
    padding: 8px 16px;
    line-height: 1.35;
  }

  .hero__title br {
    display: none;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .trust-bar__divider {
    display: none;
  }

  .trust-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .section-intro__title br,
  .feature__title br,
  .examples__title br,
  .pricing__title br,
  .cta-banner__title br {
    display: none;
  }

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

  .examples__intro {
    margin-bottom: 40px;
  }

  .pricing__header-row {
    flex-direction: column;
    gap: 16px;
  }

  .pricing__trial-badge {
    align-self: flex-start;
    margin-top: 0;
  }

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

  .cta-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-banner__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__nav {
    flex-wrap: wrap;
    gap: 16px 24px;
  }

  .mockup__sidebar {
    width: 140px;
    padding: 12px 8px;
  }

  .mockup__nav-item {
    font-size: 12px;
    padding: 0 7px;
  }

  .mockup__main {
    padding: 16px 14px 20px;
  }

  .mockup__stat-value {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .btn__label-full {
    display: none;
  }

  .btn__label-short {
    display: inline;
  }

  .logo__mark {
    width: 28px;
    height: 28px;
    font-size: 15px;
  }

  .logo__name {
    font-size: 19px;
  }

  .hero {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .tag-list {
    gap: 6px;
  }

  .tag {
    font-size: 11.5px;
    height: 28px;
    padding: 0 10px;
  }

  .mockup__body {
    flex-direction: column;
  }

  .mockup__sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgb(243, 242, 239);
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
  }

  .mockup__sidebar-logo {
    padding-bottom: 0;
  }

  .mockup__nav {
    flex-direction: row;
    flex-wrap: wrap;
    flex: 1 1 auto;
    gap: 4px;
  }

  .mockup__nav-item {
    height: 28px;
    font-size: 11px;
  }

  .mockup__user {
    margin-top: 0;
    margin-left: auto;
  }

  .mockup__url-pill {
    font-size: 10px;
    padding: 0 10px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mockup__dots {
    flex-shrink: 0;
  }

  .mockup__sale-meta {
    display: none;
  }

  .check-list__item {
    font-size: 14px;
  }

  .pill {
    font-size: 11px;
  }

  .membership-card__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .pricing__card {
    border-radius: 20px;
  }

  .example-card {
    padding: 22px;
  }

  .btn--primary-lg,
  .btn--outline,
  .btn--white,
  .btn--ghost-white {
    font-size: 15px;
    min-height: 48px;
    height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

@media (min-width: 769px) {
  .mobile-nav {
    display: none !important;
  }
}
