:root {
  --bg: #ffffff;
  --ink: #0b0b0f;
  --muted: #666666;
  --muted-2: #8a8a8a;
  --purple: #5b4ee8;
  --green: #3ecfa0;
  --dark: #222222;
  --black: #111111;
  --card: #ffffff;
  --border: rgba(15, 15, 25, 0.12);
  --shadow: 0 10px 30px rgba(15, 15, 25, 0.08);
  --shadow-2: 0 18px 45px rgba(15, 15, 25, 0.12);
  --radius: 16px;
  --radius-pill: 999px;
  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--ink);
  background: var(--bg);
  line-height: 1.45;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--dark);
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus {
  left: 12px;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

#main {
  margin: 0;
  padding: 0;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 1000;
  pointer-events: none;
}

.nav {
  pointer-events: auto;
  margin-inline: auto;
  width: min(var(--container), calc(100% - 40px));
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(15, 15, 25, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 10px 12px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 120px;
}
.brand-mark {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #ffffff 0 30%, rgba(255, 255, 255, 0) 35%),
    linear-gradient(135deg, var(--purple), #7a70ff);
  box-shadow: 0 8px 20px rgba(91, 78, 232, 0.22);
}
.brand-text {
  font-family: Barlow, Inter, system-ui;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--purple);
  font-size: 18px;
}

.nav-links {
  display: inline-flex;
  justify-content: center;
  gap: 22px;
  padding-inline: 8px;
}
.nav-links a {
  font-family: Barlow, Inter, system-ui;
  font-weight: 500;
  font-size: 14px;
  color: rgba(15, 15, 25, 0.72);
  padding: 10px 10px;
  border-radius: 10px;
  transition: background 150ms ease, color 150ms ease;
}
.nav-links a:hover {
  background: rgba(91, 78, 232, 0.08);
  color: rgba(15, 15, 25, 0.92);
}

.nav-actions {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
.nav-actions a.btn {
  height: 40px;
}

.icon-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(15, 15, 25, 0.12);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 6px 18px rgba(15, 15, 25, 0.06);
  cursor: pointer;
}
.icon-btn-bars {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(15, 15, 25, 0.8);
  margin: 0 auto;
  position: relative;
  border-radius: 2px;
}
.icon-btn-bars::before,
.icon-btn-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(15, 15, 25, 0.8);
  border-radius: 2px;
}
.icon-btn-bars::before {
  top: -6px;
}
.icon-btn-bars::after {
  top: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius-pill);
  padding: 12px 16px;
  font-family: Barlow, Inter, system-ui;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease, color 120ms ease, border-color 120ms ease;
  user-select: none;
  white-space: nowrap;
}
.btn:active {
  transform: translateY(1px);
}
.btn-dark {
  background: var(--dark);
  color: #fff;
  box-shadow: 0 14px 24px rgba(34, 34, 34, 0.14);
}
.btn-dark:hover {
  box-shadow: 0 18px 36px rgba(34, 34, 34, 0.2);
}
.btn-outline {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(15, 15, 25, 0.16);
  color: rgba(15, 15, 25, 0.86);
}
.btn-outline:hover {
  border-color: rgba(91, 78, 232, 0.25);
  box-shadow: 0 14px 30px rgba(91, 78, 232, 0.1);
}
.btn-white {
  background: #ffffff;
  color: rgba(15, 15, 25, 0.92);
  box-shadow: 0 18px 45px rgba(15, 15, 25, 0.18);
}
.btn-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 55px rgba(15, 15, 25, 0.24);
}
.btn-pill {
  padding: 14px 18px;
  font-size: 14px;
}
.btn-lg {
  padding: 16px 22px;
  font-size: 15px;
}
.btn-full {
  width: 100%;
}

.btn-arrow .arrow-badge {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-arrow .arrow-icon {
  width: 16px;
  height: 16px;
  color: #fff;
}

.mobile-menu {
  pointer-events: auto;
  width: min(var(--container), calc(100% - 40px));
  margin: 10px auto 0;
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
  border: 1px solid rgba(15, 15, 25, 0.08);
  box-shadow: var(--shadow-2);
  overflow: hidden;
  transform-origin: top;
  transform: scaleY(0.98);
  opacity: 0;
  max-height: 0;
  transition: max-height 220ms ease, opacity 160ms ease, transform 220ms ease;
}
.mobile-menu[data-open="true"] {
  opacity: 1;
  transform: scaleY(1);
  max-height: 320px;
}
.mobile-menu-inner {
  padding: 14px;
  display: grid;
  gap: 8px;
}
.mobile-menu-inner a:not(.btn) {
  padding: 12px 12px;
  border-radius: 12px;
  background: rgba(15, 15, 25, 0.03);
  font-family: Barlow, Inter, system-ui;
  font-weight: 500;
  color: rgba(15, 15, 25, 0.84);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  margin-top: 0;
  padding-top: 0;
  padding: 0 0 72px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-bottom: 250px;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 18px;
}

.hero-inner > * {
  position: relative;
  z-index: 1;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(15, 15, 25, 0.12);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 12px 28px rgba(15, 15, 25, 0.08);
  font-family: Barlow, Inter, system-ui;
  font-weight: 500;
  font-size: 13px;
  color: rgba(15, 15, 25, 0.72);
}
.pill-dot {
  color: var(--purple);
}

.hero-title {
  margin: 0;
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.hero-line {
  display: block;
}
.hero-line-1 {
  font-family: Barlow, Inter, system-ui;
  font-weight: 700;
  letter-spacing: -0.08em; /* ~ -4px feel on large sizes */
  font-size: clamp(38px, 4.8vw, 64px);
  color: rgba(15, 15, 25, 0.92);
}
.hero-line-2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(44px, 6.5vw, 84px);
  color: var(--purple);
  margin-top: 8px;
}

.hero-sub {
  margin: 0;
  max-width: 840px;
  font-family: Barlow, Inter, system-ui;
  font-weight: 500;
  font-size: 18px;
  color: var(--muted);
}

.hero-ctas {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  flex-wrap: wrap;
}

section {
  padding: 84px 0;
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 34px;
}
.section-head-center {
  text-align: center;
  justify-items: center;
}
.section-title {
  margin: 0;
  font-family: Barlow, Inter, system-ui;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.04em;
  color: rgba(15, 15, 25, 0.92);
}
.section-title-invert {
  color: #ffffff;
}
.section-subtitle {
  margin: 0;
  font-family: Barlow, Inter, system-ui;
  font-weight: 500;
  font-size: 16px;
  color: rgba(15, 15, 25, 0.62);
  max-width: 760px;
}

.problem {
  background: var(--black);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.problem::before {
  content: "";
  position: absolute;
  inset: -200px;
  background: radial-gradient(circle at 20% 0%, rgba(91, 78, 232, 0.18), rgba(0, 0, 0, 0) 55%),
    radial-gradient(circle at 80% 20%, rgba(62, 207, 160, 0.14), rgba(0, 0, 0, 0) 55%);
  pointer-events: none;
}

.cards-3 {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.pain-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}
.pain-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.95);
  font-family: Barlow, Inter, system-ui;
  font-weight: 700;
  margin-bottom: 12px;
}
.pain-card h3 {
  margin: 0 0 6px;
  font-family: Barlow, Inter, system-ui;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 18px;
}
.pain-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-family: Barlow, Inter, system-ui;
  font-weight: 500;
  font-size: 14px;
}
.problem-stat {
  position: relative;
  margin: 26px 0 0;
  text-align: center;
  font-family: Barlow, Inter, system-ui;
  font-weight: 700;
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.92);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.step {
  border: 1px solid rgba(15, 15, 25, 0.1);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 16px 40px rgba(15, 15, 25, 0.06);
}
.step-top {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.step-num {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(91, 78, 232, 0.16), rgba(62, 207, 160, 0.12));
  border: 1px solid rgba(91, 78, 232, 0.18);
  display: grid;
  place-items: center;
  font-family: Barlow, Inter, system-ui;
  font-weight: 700;
  color: rgba(15, 15, 25, 0.86);
}
.step h3 {
  margin: 0;
  font-family: Barlow, Inter, system-ui;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 18px;
}
.step p {
  margin: 0;
  font-family: Barlow, Inter, system-ui;
  font-weight: 500;
  font-size: 14.5px;
  color: rgba(15, 15, 25, 0.66);
}

.features {
  background: #f8f8f8;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.feature-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 15, 25, 0.08);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 45px rgba(15, 15, 25, 0.06);
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(15, 15, 25, 0.1);
  border-color: rgba(91, 78, 232, 0.18);
}
.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(91, 78, 232, 0.14), rgba(62, 207, 160, 0.12));
  border: 1px solid rgba(62, 207, 160, 0.18);
  margin-bottom: 12px;
}
.feature-card h3 {
  margin: 0 0 6px;
  font-family: Barlow, Inter, system-ui;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 18px;
}
.feature-card p {
  margin: 0;
  font-family: Barlow, Inter, system-ui;
  font-weight: 500;
  color: rgba(15, 15, 25, 0.64);
  font-size: 14.5px;
}

.results .section-subtitle {
  color: rgba(15, 15, 25, 0.64);
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  justify-items: center;
  margin-top: 26px;
}
.stat {
  width: 100%;
  border: 1px solid rgba(15, 15, 25, 0.1);
  border-radius: 20px;
  padding: 22px 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 45px rgba(15, 15, 25, 0.06);
  text-align: center;
}
.stat-value {
  font-family: Barlow, Inter, system-ui;
  font-weight: 800;
  letter-spacing: -0.05em;
  font-size: clamp(42px, 4.5vw, 64px);
  color: rgba(15, 15, 25, 0.92);
}
.stat-label {
  margin-top: 6px;
  font-family: Barlow, Inter, system-ui;
  font-weight: 600;
  color: rgba(15, 15, 25, 0.6);
}
.caption {
  margin: 16px 0 0;
  text-align: center;
  color: rgba(15, 15, 25, 0.52);
  font-size: 13px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 820px;
  display: grid;
  gap: 12px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(15, 15, 25, 0.1);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 16px 40px rgba(15, 15, 25, 0.06);
  font-family: Barlow, Inter, system-ui;
  font-weight: 500;
  color: rgba(15, 15, 25, 0.78);
}
.check {
  color: var(--green);
}

.pricing {
  background: #ffffff;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.price-card {
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(15, 15, 25, 0.1);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 45px rgba(15, 15, 25, 0.07);
  padding: 20px;
  display: grid;
  gap: 14px;
}
.price-card-featured {
  border-color: rgba(91, 78, 232, 0.25);
  box-shadow: 0 26px 70px rgba(91, 78, 232, 0.12);
  background: linear-gradient(180deg, rgba(91, 78, 232, 0.06), rgba(255, 255, 255, 0.82));
}
.most-pop {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(91, 78, 232, 0.12);
  border: 1px solid rgba(91, 78, 232, 0.2);
  color: rgba(15, 15, 25, 0.82);
  font-family: Barlow, Inter, system-ui;
  font-weight: 700;
  font-size: 12px;
}
.price-top h3 {
  margin: 0;
  font-family: Barlow, Inter, system-ui;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 20px;
}
.price-tag {
  margin: 6px 0 0;
  color: rgba(15, 15, 25, 0.62);
  font-family: Barlow, Inter, system-ui;
  font-weight: 500;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.price-value {
  font-family: Barlow, Inter, system-ui;
  font-weight: 900;
  letter-spacing: -0.05em;
  font-size: 42px;
  color: rgba(15, 15, 25, 0.92);
}
.price-unit {
  color: rgba(15, 15, 25, 0.58);
  font-family: Barlow, Inter, system-ui;
  font-weight: 600;
}
.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: rgba(15, 15, 25, 0.72);
  font-family: Barlow, Inter, system-ui;
  font-weight: 500;
}
.price-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.price-list li span {
  color: var(--green);
  font-weight: 900;
}

.final-cta {
  background: var(--purple);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: -220px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 55%),
    radial-gradient(circle at 80% 40%, rgba(62, 207, 160, 0.2), rgba(62, 207, 160, 0) 55%);
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
  text-align: center;
  display: grid;
  gap: 14px;
  justify-items: center;
}
.final-title {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.03em;
  font-size: clamp(34px, 4vw, 54px);
  color: #ffffff;
}
.final-sub {
  margin: 0;
  max-width: 860px;
  font-family: Barlow, Inter, system-ui;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
}
.final-note {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: Barlow, Inter, system-ui;
  font-weight: 500;
  font-size: 13px;
}

.footer {
  background: #0b0b0f;
  color: rgba(255, 255, 255, 0.86);
  padding: 44px 0 18px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
  align-items: start;
}
.footer-logo {
  font-family: Barlow, Inter, system-ui;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  font-size: 18px;
}
.footer-tagline {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-family: Barlow, Inter, system-ui;
  font-weight: 500;
}
.footer-links {
  display: grid;
  gap: 10px;
  justify-content: center;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-family: Barlow, Inter, system-ui;
  font-weight: 500;
}
.footer-links a:hover {
  color: #fff;
}
.footer-contact {
  display: flex;
  justify-content: flex-end;
}
.footer-contact a {
  color: rgba(255, 255, 255, 0.78);
  font-family: Barlow, Inter, system-ui;
  font-weight: 500;
}
.footer-contact a:hover {
  color: #fff;
}
.footer-bottom {
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-family: Barlow, Inter, system-ui;
  font-weight: 500;
  font-size: 13px;
  display: flex;
  justify-content: center;
  text-align: center;
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: 1fr auto;
    grid-template-areas: "brand actions" "links links";
    gap: 10px;
  }
  .brand {
    grid-area: brand;
  }
  .nav-actions {
    grid-area: actions;
  }
  .nav-links {
    grid-area: links;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
  }
  .nav-links a {
    padding: 10px 10px;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 16px;
  }
  .nav {
    grid-template-columns: 1fr auto;
    padding: 10px;
  }
  .nav-links {
    display: none;
  }
  .icon-btn {
    display: inline-grid;
    place-items: center;
  }
  .btn-arrow {
    display: none;
  }
  .cards-3,
  .steps,
  .feature-grid,
  .stats,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  section {
    padding: 72px 0;
  }
  .hero {
    padding: 110px 0 64px;
  }
  .hero-sub {
    font-size: 16px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
  .footer-contact {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn,
  .mobile-menu,
  .feature-card {
    transition: none !important;
  }
}

