:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #edf0f5;
  --ink: #020101;
  --muted: #8e8e8e;
  --line: #e5e8f0;
  --blue: #4e5cff;
  --violet: #d883ff;
  --cyan: #86fff6;
  --mint: #c2fffa;
  --lime: #d0ff71;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.1);
  --shadow-soft: 0 14px 36px rgba(0, 0, 0, 0.08);
  --radius: 22px;
  --radius-sm: 14px;
  --font: Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  letter-spacing: 0;
}

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

p {
  color: var(--muted);
  line-height: 1.75;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7.6vw, 6.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(255, 250, 247, 0.86);
  border-bottom: 1px solid rgba(229, 232, 240, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 900;
}

.brand img {
  display: block;
  border-radius: 10px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 750;
}

.main-nav a:hover {
  color: var(--ink);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 850;
}

.nav-cta {
  padding: 0 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 10px 24px rgba(78, 92, 255, 0.22);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(48px, 7vw, 108px) clamp(20px, 5vw, 72px) 76px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 18%, rgba(216, 131, 255, 0.26), transparent 25%),
    radial-gradient(circle at 86% 16%, rgba(134, 255, 246, 0.28), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--violet);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-text {
  max-width: 64ch;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.launch-note {
  margin-top: 18px;
  color: var(--violet);
  font-weight: 850;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 32px;
}

.button {
  padding: 0 22px;
  border: 1px solid transparent;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 14px 34px rgba(78, 92, 255, 0.24);
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span,
.benefit-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(234, 223, 220, 0.9);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.app-visual {
  position: relative;
  display: flex;
  min-height: min(560px, 72vw);
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.visual-glow {
  position: relative;
  width: min(520px, 84vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 131, 255, 0.32), rgba(78, 92, 255, 0.1) 42%, transparent 70%);
}

.floating-card {
  position: absolute;
  width: min(220px, 40vw);
  border-radius: 28px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.card-one {
  left: 4%;
  top: 17%;
  transform: rotate(-10deg);
}

.card-two {
  right: 3%;
  top: 21%;
  transform: rotate(10deg);
}

.card-three {
  left: 50%;
  bottom: 12%;
  width: min(250px, 48vw);
  transform: translateX(-50%);
  z-index: 2;
}

.web-access-card {
  position: absolute;
  right: 4%;
  bottom: 5%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.web-access-card img {
  border-radius: 13px;
}

.web-access-card span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.web-access-card strong {
  color: var(--ink);
}

.section {
  padding: 86px clamp(20px, 5vw, 72px);
  border-top: 1px solid rgba(229, 232, 240, 0.95);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p,
.solution p,
.audience-card p,
.final-cta p {
  font-size: 1.06rem;
}

.problem {
  background: #fff;
}

.intro-section {
  background: #fff;
}

.simple-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.simple-grid article {
  min-height: 190px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.solution {
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 46px;
  max-width: 1240px;
  margin: 0 auto;
  align-items: start;
}

.check-list,
.clean-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list span,
.clean-list li {
  position: relative;
  padding: 15px 16px 15px 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-weight: 780;
  box-shadow: 0 8px 22px rgba(69, 38, 92, 0.05);
}

.check-list span::before,
.clean-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 15px;
  height: 15px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--violet));
}

.audience {
  background: #fff;
}

.audience-card {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
}

.audience-user {
  background:
    radial-gradient(circle at 92% 18%, rgba(255, 209, 102, 0.32), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #fff3ee 100%);
}

.audience-pro {
  background:
    radial-gradient(circle at 90% 14%, rgba(47, 109, 246, 0.18), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f4efff 100%);
}

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

.price-pill {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  margin-top: 24px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  font-weight: 950;
}

.price-pill.pro {
  background: linear-gradient(135deg, var(--blue), var(--violet));
}

.how,
.pricing {
  background: #ffffff;
}

.steps-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.steps-card,
.pricing-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.steps-card ol {
  display: grid;
  gap: 12px;
  padding-left: 22px;
  margin: 0;
  color: var(--muted);
  font-weight: 760;
}

.benefits {
  background: linear-gradient(135deg, #020101 0%, #25204f 52%, #4e5cff 100%);
  color: #fff;
}

.benefits .eyebrow,
.benefits h2 {
  color: #fff;
}

.benefit-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
}

.benefit-grid span {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.pricing-card {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  align-items: flex-start;
}

.pricing-card.highlighted {
  border-color: rgba(124, 58, 237, 0.35);
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 209, 102, 0.24), transparent 28%),
    #fff;
}

.plan-label {
  display: inline-flex;
  padding: 8px 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  color: var(--violet);
  background: #f4efff;
  font-size: 0.8rem;
  font-weight: 900;
}

.pricing-card strong {
  display: block;
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.pricing-card p {
  flex: 1;
}

.faq {
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: 0 8px 22px rgba(69, 38, 92, 0.05);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}

.faq-list p {
  padding: 0 20px 20px;
  margin-bottom: 0;
}

.final-cta {
  display: grid;
  justify-items: center;
  padding: 88px clamp(20px, 5vw, 72px);
  text-align: center;
  background:
    radial-gradient(circle at 18% 16%, rgba(134, 255, 246, 0.28), transparent 24%),
    linear-gradient(135deg, #f7f8fc 0%, #ffffff 100%);
}

.final-cta p {
  max-width: 720px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 24px;
  align-items: center;
  padding: 34px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 800;
}

.site-footer a:hover {
  color: var(--ink);
}

.legal-page {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 92px;
}

.legal-page h1 {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
}

.legal-section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.legal-section a {
  color: var(--violet);
  font-weight: 850;
}

@media (max-width: 980px) {
  .main-nav {
    gap: 14px;
  }

  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .app-visual {
    order: -1;
  }
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
  }

  .main-nav {
    position: absolute;
    top: 70px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    padding: 12px;
  }

  .steps-grid,
  .pricing-grid,
  .simple-grid,
  .two-cols,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .web-access-card {
    right: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 4.5rem);
  }

  .section,
  .final-cta {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero-actions,
  .hero-actions .button,
  .pricing-card .button {
    width: 100%;
  }

  .site-footer nav {
    flex-direction: column;
    gap: 10px;
  }
}
