* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #111111;
  --muted: #4b4b4b;
  --soft: #f4f1ec;
  --accent: #5c3bd6;
  --accent-dark: #3e26a6;
  --warm: #f7e8d8;
  --cool: #e4eef9;
  --sand: #fff8f1;
  --shadow: 0 18px 40px rgba(17, 17, 17, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-dark);
}

.site-header {
  padding: 28px 0 16px;
  border-bottom: 1px solid #ececec;
  background: #ffffff;
}

.header-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.brand h1,
.brand h2 {
  margin: 0;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
}

.brand span {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.story {
  max-width: 760px;
  margin: 0 auto;
  padding: 36px 24px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.story section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--muted);
}

.hero {
  background: var(--sand);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero .hero-media {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero .hero-image {
  border-radius: 22px;
  overflow: hidden;
}

.hero h2 {
  font-size: 2.3rem;
  line-height: 1.15;
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-cta {
  display: inline-block;
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
}

.story-split {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.story-split .note {
  background: var(--soft);
  border-radius: 18px;
  padding: 18px;
}

.pull-quote {
  padding: 22px;
  border-left: 4px solid var(--accent);
  background: #f8f6ff;
  font-size: 1.1rem;
  font-style: italic;
}

.insight-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--cool);
  border-radius: 20px;
  padding: 20px;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.metric {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  flex: 1 1 140px;
  box-shadow: var(--shadow);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-pill {
  background: #ffffff;
  border-radius: 999px;
  padding: 10px 16px;
  border: 1px solid #ececec;
  font-size: 0.9rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.card img {
  border-radius: 14px;
  height: 180px;
  object-fit: cover;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 8px;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card {
  background: var(--warm);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(92, 59, 214, 0.2);
}

.price-card .price {
  font-size: 1.6rem;
  font-weight: 700;
}

.form-wrap {
  background: #ffffff;
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9d9d9;
  font-size: 1rem;
  font-family: inherit;
}

.urgency {
  background: #101010;
  color: #ffffff;
  padding: 22px;
  border-radius: 18px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 320px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.site-footer {
  border-top: 1px solid #ececec;
  padding: 28px 0 40px;
  background: #ffffff;
}

.footer-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.content-panel {
  background: var(--soft);
  padding: 18px;
  border-radius: 16px;
}

@media (min-width: 720px) {
  .story-split {
    flex-direction: row;
  }

  .cards,
  .pricing-grid {
    flex-direction: row;
  }

  .card,
  .price-card {
    flex: 1 1 0;
  }

  .hero .hero-media {
    flex-direction: row;
    align-items: center;
  }

  .hero .hero-image {
    flex: 1 1 52%;
  }

  .hero .hero-text {
    flex: 1 1 48%;
  }
}
