:root {
  color-scheme: light;
  --background: #f9f8ff;
  --surface: #ffffff;
  --surface-soft: #f5f3ff;
  --surface-strong: #efe9ff;
  --border: rgba(139, 92, 246, 0.18);
  --shadow-soft: 0 20px 44px rgba(139, 92, 246, 0.18);
  --accent: #8b5cf6;
  --accent-light: #c084fc;
  --accent-secondary: #34d399;
  --accent-secondary-dark: #059669;
  --accent-warm: #f97316;
  --text: #111827;
  --text-muted: #4b5563;
  --gradient-primary: linear-gradient(120deg, #c084fc 0%, #8b5cf6 100%);
  --gradient-secondary: linear-gradient(120deg, #6ee7b7 0%, #34d399 45%, #059669 100%);
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #fbf9ff 0%, #f5f3ff 36%, #ffffff 100%);
  color: var(--text);
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  background-image: var(--gradient-primary);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 52px rgba(139, 92, 246, 0.22);
}

.button--ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(139, 92, 246, 0.35);
  box-shadow: none;
}

.button--ghost:hover {
  border-color: rgba(139, 92, 246, 0.55);
  color: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(139, 92, 246, 0.12);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.logo {
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--accent);
}

.brand-tagline {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(139, 92, 246, 0.75);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.brand-tagline:hover,
.brand-tagline:focus {
  color: rgba(139, 92, 246, 0.85);
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--accent);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--accent);
  position: relative;
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -6px;
}

.menu-icon::after {
  top: 6px;
}

.mobile-nav {
  display: none;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(139, 92, 246, 0.15);
  backdrop-filter: blur(10px);
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero {
  padding: clamp(4rem, 14vh, 8rem) 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -30% -40% auto;
  height: 120%;
  background: radial-gradient(circle at center, rgba(192, 132, 252, 0.25) 0%, rgba(192, 132, 252, 0) 65%);
  opacity: 0.9;
  filter: blur(20px);
}

.hero__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 6vw, 4.5rem);
  position: relative;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  background: rgba(192, 132, 252, 0.16);
  border: 1px solid rgba(139, 92, 246, 0.35);
  color: var(--accent);
  width: fit-content;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 32rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.hero__stats div {
  padding: 1.1rem 1.25rem;
  background: var(--surface);
  border-radius: 1.2rem;
  border: 1px solid var(--border);
  text-align: left;
  box-shadow: 0 14px 36px rgba(17, 24, 39, 0.05);
}

.hero__stats dt {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--accent);
}

.hero__stats dd {
  margin: 0.35rem 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero__gallery {
  position: relative;
  width: min(420px, 90%);
  display: flex;
  justify-content: center;
  padding: 1.5rem 1rem 2.5rem;
}

.device-frame {
  position: relative;
  width: clamp(210px, 28vw, 320px);
  border-radius: 2.2rem;
  padding: 0.9rem;
  background: linear-gradient(160deg, rgba(192, 132, 252, 0.85), rgba(139, 92, 246, 0.55));
  box-shadow: 0 38px 70px rgba(91, 33, 182, 0.25);
  overflow: hidden;
}

.device-frame::after {
  content: "";
  position: absolute;
  top: 0.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 38%;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.device-frame img {
  width: 100%;
  display: block;
  border-radius: 1.8rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.hero__device--secondary {
  position: absolute;
  top: 12%;
  right: -6%;
  transform: rotate(10deg);
  opacity: 0.9;
  filter: blur(0.2px);
}

.hero__device--secondary img {
  opacity: 0.95;
}

.problem {
  padding: 5rem 0;
}

.problem__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.problem__card {
  padding: 2rem;
  border-radius: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 24px 46px rgba(17, 24, 39, 0.05);
}

.problem__card h2,
.problem__card h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
}

.problem__card p,
.problem__card ul {
  color: var(--text-muted);
}

.problem__card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.problem__card ul li::before {
  content: "•";
  color: var(--accent);
  margin-right: 0.5rem;
}

.problem__card--highlight {
  background: linear-gradient(160deg, rgba(192, 132, 252, 0.2), rgba(139, 92, 246, 0.05));
  border-color: rgba(139, 92, 246, 0.4);
}

.section-heading {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-tag {
  display: inline-flex;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(192, 132, 252, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.3);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 1.2rem 0 0.75rem;
  font-weight: 800;
  color: var(--text);
}

.section-heading p {
  color: var(--text-muted);
  margin: 0 auto;
}

.how {
  padding: 5.5rem 0;
  background: radial-gradient(circle at 20% 20%, rgba(192, 132, 252, 0.22), transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(110, 231, 183, 0.18), transparent 65%);
}

.how__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.step-card {
  padding: 2.2rem;
  border-radius: 1.75rem;
  background: var(--surface);
  border: 1px solid rgba(139, 92, 246, 0.25);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 26px 48px rgba(17, 24, 39, 0.05);
}

.step-card__number {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(139, 92, 246, 0.75);
  font-weight: 600;
}

.step-card h3 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--text);
}

.step-card p {
  color: var(--text-muted);
}

.experience {
  padding: 5.5rem 0;
}

.experience__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.experience-card {
  border-radius: 2rem;
  background: var(--surface);
  border: 1px solid rgba(139, 92, 246, 0.16);
  box-shadow: 0 28px 48px rgba(17, 24, 39, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.experience-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.75rem 1.75rem 0 0;
  object-fit: cover;
}

.experience-card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.experience-card__body h3 {
  margin: 0;
  font-size: 1.4rem;
  color: var(--text);
}

.experience-card__body p {
  margin: 0;
  color: var(--text-muted);
}

.benefits {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, rgba(245, 243, 255, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.benefit-card {
  padding: 1.75rem;
  border-radius: 1.4rem;
  background: var(--surface);
  border: 1px solid rgba(139, 92, 246, 0.18);
  box-shadow: 0 24px 40px rgba(17, 24, 39, 0.05);
}

.benefit-card h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.benefit-card p {
  color: var(--text-muted);
}

.feature-showcase {
  padding: 5.5rem 0;
}

.feature-showcase__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.feature-showcase__copy p {
  color: var(--text-muted);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 0.9rem;
  color: var(--text-muted);
}

.feature-list li::before {
  content: "→";
  margin-right: 0.6rem;
  color: var(--accent);
}

.feature-showcase__card {
  padding: 2.5rem;
  border-radius: 2rem;
  background: var(--surface-soft);
  border: 1px solid rgba(139, 92, 246, 0.28);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-showcase__image {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 26px 48px rgba(17, 24, 39, 0.12));
  border-radius: 1.75rem;
}

.testimonials {
  padding: 5.5rem 0;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  margin: 0;
  padding: 2rem;
  border-radius: 1.6rem;
  background: linear-gradient(160deg, rgba(192, 132, 252, 0.22), rgba(139, 92, 246, 0.08));
  border: 1px solid rgba(139, 92, 246, 0.25);
  color: var(--text-muted);
  position: relative;
  box-shadow: 0 28px 48px rgba(17, 24, 39, 0.05);
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 1.2rem;
  left: 1.5rem;
  font-size: 3rem;
  color: rgba(139, 92, 246, 0.25);
}

.testimonial-card cite {
  display: block;
  margin-top: 1.4rem;
  font-style: normal;
  color: var(--text);
  font-weight: 600;
}

.cta {
  padding: 5.5rem 0;
  background: linear-gradient(120deg, rgba(192, 132, 252, 0.92), rgba(139, 92, 246, 0.9), rgba(52, 211, 153, 0.85));
  color: #ffffff;
}

.cta__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.cta__copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #ffffff;
}

.cta__copy p {
  margin: 0;
  max-width: 440px;
  color: rgba(255, 255, 255, 0.9);
}

.cta__waitlist {
  display: grid;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.75rem;
  border-radius: 1.75rem;
  box-shadow: 0 22px 42px rgba(17, 24, 39, 0.18);
  backdrop-filter: blur(8px);
}

.cta__waitlist input {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  border: none;
  font-size: 1rem;
  font-family: inherit;
  color: var(--accent);
}

.cta__waitlist input::placeholder {
  color: rgba(139, 92, 246, 0.6);
}

.cta__waitlist .button {
  width: 100%;
  justify-content: center;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.82));
  color: var(--accent);
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.18);
}

.cta__waitlist .button:hover {
  box-shadow: 0 22px 42px rgba(17, 24, 39, 0.22);
}

.cta__disclaimer {
  margin: 0;
  font-size: 0.8rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

.faq {
  padding: 5.5rem 0;
}

.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  padding: 1.2rem 1.4rem;
  margin-bottom: 1rem;
  box-shadow: 0 20px 44px rgba(17, 24, 39, 0.05);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
}

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

.faq summary::after {
  content: "+";
  float: right;
  transition: transform 0.2s ease;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq p {
  margin: 0.6rem 0 0;
  color: var(--text-muted);
}

.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(139, 92, 246, 0.18);
  background: var(--surface-soft);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.footer__tagline {
  color: var(--text-muted);
  margin: 0.75rem 0 0;
}

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

.footer__links,
.footer__meta {
  display: grid;
  gap: 0.5rem;
}

.footer__links a,
.footer__meta a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer__links a:hover,
.footer__meta a:hover {
  color: var(--accent);
}

.footer__copyright {
  margin: 2rem auto 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(17, 24, 39, 0.55);
}

@media (max-width: 960px) {
  .site-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav[aria-hidden="false"] {
    display: block;
  }

  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__copy {
    align-items: center;
  }

  .hero p {
    max-width: none;
  }

  .hero__stats {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  .hero__visual {
    order: -1;
  }

  .cta__inner {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(92vw, 520px);
  }

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

  .hero__gallery {
    max-width: 320px;
  }

  .hero__device--secondary {
    right: 0;
    top: 18%;
    transform: rotate(6deg) scale(0.88);
  }

  .brand {
    gap: 0.1rem;
  }

  .cta__waitlist {
    padding: 1.5rem;
  }
}
.hero__device--primary {
  transform: rotate(-4deg);
}
.footer__tagline a:hover {
  color: rgba(139, 92, 246, 0.9);
}
