:root {
  --background: 0 0% 100%;
  --foreground: 220 43% 11%;
  --card: 0 0% 100%;
  --card-foreground: 220 43% 11%;
  --popover: 0 0% 100%;
  --popover-foreground: 220 43% 11%;
  --primary: 220 43% 11%;
  --primary-foreground: 0 0% 100%;
  --secondary: 220 14% 96%;
  --secondary-foreground: 220 43% 11%;
  --accent: 262 83% 58%;
  --accent-foreground: 0 0% 100%;
  --muted: 226 100% 97%;
  --muted-foreground: 220 9% 46%;
  --border: 220 14% 96%;
  --input: 220 14% 96%;
  --ring: 262 83% 58%;
  --surface: 226 100% 97%;
  --text-subtle: 220 9% 46%;
  --light-bg: 226 100% 97%;
  --warm-accent: 11 69% 77%;
  --light-gray: 220 14% 96%;
  --gray: 220 9% 46%;
  --white: 0 0% 100%;
  --gradient-primary: linear-gradient(135deg, hsl(262 83% 58%) 0%, hsl(11 69% 77%) 100%);
  --gradient-dark: linear-gradient(135deg, hsl(220 43% 11%) 0%, hsl(262 83% 58%) 100%);
  --gradient-light: linear-gradient(135deg, hsl(226 100% 97%) 0%, hsl(0 0% 100%) 100%);
  --radius: 16px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-soft: 0 24px 60px -24px hsl(220 43% 11% / 0.25);
  --shadow-sm: 0 1px 2px 0 rgb(16 24 40 / 0.08);
  --shadow-md: 0 8px 20px -12px rgb(16 24 40 / 0.15);
  --shadow-lg: 0 24px 48px -18px rgb(16 24 40 / 0.2);
}

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

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  margin: 0 0 12px;
  font-family: "Rubik", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: hsl(var(--foreground));
}

h1 { font-size: 2.25rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; }

p {
  margin: 0 0 12px;
  color: hsl(var(--foreground));
}

a {
  color: hsl(var(--accent));
  text-decoration: none;
}

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

.muted, .section__lede, .microcopy {
  color: hsl(var(--text-subtle));
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 64px 0;
}

.section--alt {
  background: hsl(var(--light-bg));
}

.section__header {
  max-width: 720px;
  margin-bottom: 32px;
}

.section__lede {
  font-size: 1rem;
  line-height: 1.65;
}

.eyebrow {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: hsl(var(--accent));
  margin: 0 0 8px;
  font-weight: 600;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: hsl(var(--accent) / 0.08);
  color: hsl(var(--accent));
  font-weight: 600;
  font-size: 0.875rem;
}

.badge--soft {
  background: hsl(var(--accent) / 0.1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn--primary {
  background: var(--gradient-primary);
  color: hsl(var(--white));
  box-shadow: var(--shadow-md);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn--ghost {
  background: hsl(var(--light-gray));
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--border));
}

.btn--ghost:hover {
  background: hsl(var(--light-bg));
}

.btn--link {
  background: transparent;
  color: hsl(var(--accent));
  padding: 10px 12px;
}

.btn--link:hover {
  text-decoration: underline;
}

.btn--full {
  width: 100%;
}

.card {
  background: hsl(var(--white));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.card--soft {
  background: hsl(var(--background));
}

.card--glass {
  background: hsl(var(--white) / 0.7);
  backdrop-filter: blur(10px);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: hsl(var(--accent) / 0.25);
}

.grid {
  display: grid;
  gap: 16px;
}

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

.grid--pricing {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

.list {
  padding-left: 20px;
  margin: 12px 0 0;
  color: hsl(var(--foreground));
}

.list--checks {
  list-style: none;
  padding: 0;
}

.list--checks li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
}

.list--checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: hsl(var(--accent));
  font-weight: 700;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: hsl(var(--background));
  border-bottom: 1px solid hsl(var(--border));
  padding: 10px 0;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--gradient-primary);
  color: hsl(var(--white));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.brand__title {
  font-weight: 700;
}

.brand__tagline {
  display: block;
  font-size: 0.875rem;
  color: hsl(var(--text-subtle));
}

.hero {
  padding-top: 80px;
}

.hero__grid {
  display: grid;
  gap: 32px;
}

.hero__text .lede {
  margin: 12px 0 20px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.hero__visual {
  position: relative;
}

.chat {
  padding: 16px;
  box-shadow: var(--shadow-soft);
}

.chat__header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.chat__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: hsl(var(--accent));
}

.chat__label {
  margin-left: auto;
  font-size: 0.875rem;
  color: hsl(var(--text-subtle));
}

.chat__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 200px;
}

.bubble {
  padding: 12px 14px;
  border-radius: 14px;
  background: hsl(var(--light-bg));
  color: hsl(var(--foreground));
  box-shadow: var(--shadow-sm);
}

.bubble--user {
  align-self: flex-end;
  background: hsl(var(--accent) / 0.1);
}

.bubble--bot {
  align-self: flex-start;
}

.bubble--accent {
  border-left: 3px solid hsl(var(--accent));
  background: hsl(var(--accent) / 0.08);
}

.chat__actions {
  margin-top: 12px;
}

.icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: hsl(var(--accent) / 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 10px;
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.step__index {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: hsl(var(--accent) / 0.1);
  color: hsl(var(--accent));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.value {
  display: grid;
  gap: 24px;
}

.report {
  box-shadow: var(--shadow-md);
}

.report__header {
  font-weight: 700;
  margin-bottom: 12px;
  color: hsl(var(--primary));
}

.report__row {
  border-top: 1px solid hsl(var(--border));
  padding: 12px 0;
}

.report__row span {
  display: block;
  font-weight: 600;
  color: hsl(var(--text-subtle));
  margin-bottom: 6px;
}

.feature h3 {
  margin-bottom: 8px;
}

.trust {
  display: grid;
  gap: 20px;
}

.callout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px;
  background: hsl(var(--accent) / 0.06);
  border: 1px solid hsl(var(--accent) / 0.3);
  border-radius: var(--radius);
}

.preset {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}

.pricing--highlight {
  border: 1px solid hsl(var(--accent));
  box-shadow: var(--shadow-md);
}

.placeholder-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.placeholder-logos__item {
  height: 56px;
  background: hsl(var(--light-gray));
  border-radius: var(--radius);
  border: 1px dashed hsl(var(--border));
}

.faq {
  display: grid;
  gap: 12px;
}

.faq__item {
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  background: hsl(var(--white));
}

.faq__question {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  background: transparent;
  border: none;
  font-weight: 700;
  cursor: pointer;
}

.faq__answer {
  padding: 0 16px 14px;
  display: none;
  color: hsl(var(--foreground));
}

.faq__item.is-open .faq__answer {
  display: block;
}

.final-cta {
  background: var(--gradient-light);
  text-align: center;
}

.final-cta__content {
  max-width: 720px;
  margin: 0 auto;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.footer {
  padding: 20px 0 32px;
  border-top: 1px solid hsl(var(--border));
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: hsl(var(--text-subtle));
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.5rem; }
  h3 { font-size: 1.35rem; }

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

  .placeholder-logos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .value {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .trust {
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
  }

  .hero__grid {
    grid-template-columns: 1fr 0.95fr;
    align-items: center;
  }

  .grid--pricing {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 32px;
  }

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