:root {
  --purple: #4c1ca6;
  --blue: #2f3baf;
  --lilac: #a694e8;
  --dark: #1e1e24;
  --gray: #8f909a;
  --light: #f4f4f7;
  --white: #ffffff;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--dark);
  background: var(--light);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.narrow {
  max-width: 680px;
}

.section {
  padding: var(--space-lg) 0;
}

.section-alt {
  background: var(--white);
}

.section-story {
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(30, 30, 36, 0.95);
  backdrop-filter: blur(12px);
  color: var(--white);
  border-bottom: 1px solid rgba(166, 148, 232, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  min-height: 60px;
}

.logo {
  width: 180px;
  height: auto;
  margin: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  color: var(--light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--lilac);
}

.nav a:focus-visible {
  outline: 2px solid var(--lilac);
  outline-offset: 4px;
  border-radius: 4px;
}

.nav-cta {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.2s;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero {
  background: radial-gradient(circle at top left, var(--purple), var(--blue));
  color: var(--white);
  padding: 5rem 0 5rem;
}

.hero-inner {
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(244, 244, 247, 0.15);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #41e89a;
  box-shadow: 0 0 8px rgba(65, 232, 154, 0.6);
}

.hero h1 {
  font-size: clamp(2rem, 4vw + 1rem, 3.2rem);
  line-height: 1.15;
  margin: 1.2rem 0 0.9rem;
  font-weight: 700;
}

.hero-subtitle {
  margin: 0 0 2rem;
  color: rgba(244, 244, 247, 0.92);
  max-width: 540px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-start;
}

.trust-text {
  font-size: 0.85rem;
  color: rgba(244, 244, 247, 0.8);
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--lilac), var(--purple));
  color: var(--white);
  box-shadow: 0 12px 28px rgba(76, 28, 166, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(76, 28, 166, 0.45);
}

.btn-primary:focus-visible {
  outline: 3px solid var(--lilac);
  outline-offset: 3px;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-full {
  width: 100%;
}

.hero-card {
  background: radial-gradient(
      circle at top left,
      rgba(166, 148, 232, 0.22),
      rgba(30, 30, 36, 0.98)
    );
  border-radius: 24px;
  padding: 2.2rem 2.1rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(166, 148, 232, 0.4);
  max-width: 460px;
  justify-self: end;
}

.hero-card h2 {
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 1.3rem;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.hero-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  color: rgba(244, 244, 247, 0.92);
}

.hero-card li {
  margin-bottom: 0.85rem;
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.98rem;
  line-height: 1.5;
}

.hero-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #41e89a;
  font-size: 1.6rem;
  line-height: 1;
  text-shadow: 0 0 8px rgba(65, 232, 154, 0.7);
}

.grid-3 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 2.5rem;
}

.card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.8rem 1.6rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(143, 144, 154, 0.15);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(76, 28, 166, 0.3);
}

.card-icon {
  color: var(--purple);
  margin-bottom: 1rem;
  opacity: 0.9;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: 1.15rem;
  line-height: 1.3;
}

.card p {
  margin: 0;
  color: var(--gray);
  line-height: 1.6;
}

.two-column {
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  align-items: start;
}

.two-column h2 {
  margin-top: 0;
  font-size: 1.9rem;
  line-height: 1.2;
}

.two-column > div > p {
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.checklist {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0 0;
}

.checklist li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.7rem;
  line-height: 1.6;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #41e89a;
  font-weight: 700;
  font-size: 1.1rem;
}

.highlight-box {
  background: linear-gradient(135deg, rgba(47, 59, 175, 0.06), rgba(166, 148, 232, 0.2));
  border-radius: 18px;
  padding: 1.8rem 1.6rem;
  border: 1px solid rgba(76, 28, 166, 0.25);
  box-shadow: 0 8px 20px rgba(76, 28, 166, 0.08);
}

.highlight-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  color: var(--purple);
  margin: 0 0 0.8rem;
  font-weight: 700;
}

.highlight-box p {
  margin: 0 0 1rem;
  line-height: 1.6;
}

.highlight-box p:last-child {
  margin-bottom: 0;
}

.benefit-list {
  list-style: none;
  padding-left: 0;
  margin: 0.8rem 0 0;
}

.benefit-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.benefit-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: 600;
}

.story-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.story-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 1.2rem;
}

.story-signature {
  font-style: italic;
  color: var(--dark);
  font-weight: 500;
  margin-top: 1.5rem;
}

.section-cta-mid {
  background: linear-gradient(135deg, rgba(47, 59, 175, 0.03), rgba(166, 148, 232, 0.08));
}

.cta-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(76, 28, 166, 0.2);
}

.cta-card h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
  line-height: 1.3;
}

.cta-card p {
  margin: 0 0 1.8rem;
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.6;
}

.waitlist-form {
  margin-top: 2.5rem;
  background: var(--white);
  border-radius: 20px;
  padding: 2rem 1.8rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(166, 148, 232, 0.3);
}

.form-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}

.required {
  color: var(--purple);
}

input,
select,
textarea {
  border-radius: 10px;
  border: 1px solid rgba(143, 144, 154, 0.4);
  padding: 0.7rem 0.85rem;
  font: inherit;
  font-size: 1rem;
  transition: all 0.2s;
  background: var(--white);
}

input::placeholder,
textarea::placeholder {
  color: rgba(143, 144, 154, 0.6);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(76, 28, 166, 0.1);
}

textarea {
  resize: vertical;
  min-height: 80px;
}

.small-note {
  font-size: 0.85rem;
  color: var(--gray);
  margin: 1rem 0 0;
  text-align: center;
}

.site-footer {
  background: var(--dark);
  color: var(--light);
  padding: 2rem 0;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-start;
}

.footer-left p,
.footer-right p {
  margin: 0 0 0.5rem;
}

.footer-contact a {
  color: var(--lilac);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-tagline {
  color: var(--gray);
}

@media (max-width: 900px) {
  .hero-inner,
  .two-column {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .hero {
    padding: 4rem 0 4rem;
  }

  .hero-card {
    justify-self: stretch;
    max-width: none;
  }

  .section {
    padding: var(--space-md) 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .nav {
    gap: 1rem;
  }

  .nav a:not(.nav-cta) {
    display: none;
  }
}

@media (max-width: 600px) {
  :root {
    --space-lg: 3rem;
    --space-md: 1.5rem;
  }

  .container {
    padding: 0 1.25rem;
  }

  .hero {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .hero h1 {
    font-size: 1.9rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .btn {
    padding: 0.9rem 1.4rem;
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .card {
    padding: 1.5rem 1.3rem;
  }

  .cta-card {
    padding: 2rem 1.5rem;
  }

  .cta-card h3 {
    font-size: 1.4rem;
  }

  .waitlist-form {
    padding: 1.6rem 1.3rem;
  }

  .form-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1rem;
  }

  .logo {
    width: 150px;
  }
}

@media (max-width: 400px) {
  .hero h1 {
    font-size: 1.7rem;
  }

  .pill {
    font-size: 0.7rem;
  }
}