:root {
  --purple: #6c5ce7;
  --accent: #ff6b6b;
  --accent-dark: #f45757;
  --bg: #fafbff;
  --surface: #ffffff;
  --surface-soft: #f4f6ff;
  --text: #101828;
  --muted: #667085;
  --border: #e7eaf3;
  --shadow: 0 18px 50px rgba(16, 24, 40, 0.08);
  --shadow-soft: 0 10px 30px rgba(108, 92, 231, 0.08);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(108, 92, 231, 0.12), transparent 30%),
    linear-gradient(180deg, #fdfdff 0%, #f7f9ff 100%);
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(250, 251, 255, 0.8);
  border-bottom: 1px solid rgba(231, 234, 243, 0.7);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.logo {
  width: 42px;
  height: 42px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  color: var(--muted);
  font-weight: 500;
}

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

.hero {
  padding: 72px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(108, 92, 231, 0.1);
  color: var(--purple);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.01em;
}

.hero-copy h1 {
  margin: 18px 0 16px;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  max-width: 11ch;
}

.hero-text {
  margin: 0;
  max-width: 640px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}

.waitlist-form {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
  max-width: 640px;
}

.waitlist-form input {
  flex: 1;
  min-width: 260px;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  font-size: 16px;
  color: var(--text);
  outline: none;
  box-shadow: var(--shadow-soft);
}

.waitlist-form input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.14);
}

.waitlist-form button,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border: none;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(255, 107, 107, 0.24);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.waitlist-form button:hover,
.secondary-cta:hover {
  transform: translateY(-1px);
  background: var(--accent-dark);
  box-shadow: 0 16px 30px rgba(244, 87, 87, 0.28);
}

.form-note {
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-points span {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: #344054;
  font-size: 14px;
  font-weight: 600;
}

.hero-card {
  display: flex;
  justify-content: center;
}

.mockup {
  width: min(100%, 420px);
  border: 1px solid rgba(108, 92, 231, 0.12);
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f7f6ff 100%);
  box-shadow: var(--shadow);
}

.mockup-top {
  display: flex;
  gap: 8px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(231, 234, 243, 0.85);
  background: rgba(255, 255, 255, 0.85);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d0d5dd;
}

.mockup-body {
  padding: 24px;
}

.mockup-badge {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 107, 107, 0.1);
  color: #c43f3f;
  font-size: 13px;
  font-weight: 700;
}

.mockup-body h3 {
  margin: 18px 0 10px;
  font-size: 30px;
  letter-spacing: -0.03em;
}

.mockup-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.mockup-steps {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
}

.step strong {
  color: var(--purple);
}

.mockup-result {
  margin-top: 22px;
  padding: 18px;
  border-radius: 18px;
  background: #101828;
  color: #fff;
}

.mockup-result span {
  display: block;
  opacity: 0.72;
  font-size: 14px;
  margin-bottom: 6px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 26px;
  text-align: center;
}

.section-heading h2 {
  margin: 16px 0 12px;
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.features,
.use-cases,
.faq {
  padding: 54px 0;
}

.grid,
.use-grid,
.faq-list {
  display: grid;
  gap: 20px;
}

.grid,
.use-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.use-card,
.faq-item {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.card h3,
.use-card h3,
.faq-item h3 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.card p,
.use-card p,
.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.cta-band {
  padding: 18px 0 10px;
}

.cta-band-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-band-content h2 {
  margin: 12px 0 0;
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -0.04em;
}

.cta-band .section-kicker {
  background: rgba(255, 255, 255, 0.12);
  color: #d8ddff;
}

.secondary-cta {
  flex-shrink: 0;
  text-decoration: none;
}

.site-footer {
  padding: 30px 0 40px;
  color: var(--muted);
  text-align: center;
}

.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

.thankyou-wrap {
  display: flex;
  justify-content: center;
}

.thankyou-card {
  max-width: 720px;
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  text-align: center;
}

.thankyou-card h1 {
  margin: 18px 0 16px;
  font-size: clamp(34px, 5vw, 52px);
  letter-spacing: -0.04em;
}

.thankyou-card p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 17px;
}

.offer-link-inline {
  margin-top: 10px;
}

.offer-link-inline a {
  color: var(--purple);
  font-weight: 700;
}

.offer-link-inline a:hover {
  text-decoration: underline;
}

.offer-page {
  min-height: 100vh;
  padding: 56px 0;
  display: flex;
  align-items: center;
}

.offer-wrap {
  display: flex;
  justify-content: center;
}

.offer-card {
  width: 100%;
  max-width: 920px;
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.offer-card h1 {
  margin: 18px 0 14px;
  font-size: clamp(38px, 5vw, 56px);
  letter-spacing: -0.05em;
}

.offer-lead {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.offer-label {
  margin: 0 0 8px;
  opacity: 0.8;
  font-size: 14px;
}

.offer-badge {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 14px;
  font-weight: 600;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.offer-item {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.offer-item h3 {
  margin: 0 0 12px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.offer-item ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.9;
}

.offer-note-box {
  margin-top: 24px;
  padding: 22px;
  border-radius: 20px;
  background: rgba(108, 92, 231, 0.08);
  color: #344054;
}

.offer-note-box p {
  margin: 0;
  line-height: 1.8;
}

.offer-actions {
  margin-top: 28px;
  display: flex;
  justify-content: flex-start;
}

.offer-hero-box {
  margin-top: 28px;
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  color: #fff;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: center;
}

.offer-price-side h2 {
  margin: 8px 0 10px;
  font-size: clamp(42px, 6vw, 58px);
  letter-spacing: -0.05em;
}

.offer-subnote {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.offer-urgency {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.offer-urgency p {
  margin: 14px 0 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
}

@media (max-width: 980px) {
  .hero-grid,
  .grid,
  .use-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 14ch;
  }

  .hero-card {
    justify-content: flex-start;
  }

  .cta-band-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  .offer-grid,
  .offer-hero-box {
    grid-template-columns: 1fr;
  }

  .offer-card {
    padding: 28px;
  }
}

@media (max-width: 720px) {
  .site-header .container {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    padding: 16px 0;
  }

  .nav {
    gap: 14px;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-copy h1 {
    font-size: 38px;
    max-width: none;
  }

  .hero-text {
    font-size: 16px;
  }

  .waitlist-form input,
  .waitlist-form button,
  .secondary-cta {
    width: 100%;
  }

  .mockup-body h3 {
    font-size: 24px;
  }
}