*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #141414;
  --muted: #5a5a5a;
  --accent: #5b2cff;
  --accent-soft: #efe9ff;
  --sand: #f6f3ee;
  --night: #101018;
  --sky: #e8f2ff;
  --line: #e1e1e1;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  padding: 1.5rem 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a {
  padding-bottom: 0.2rem;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
  color: var(--ink);
}

.cta-button,
.cta-outline,
.cta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(91, 44, 255, 0.2);
}

.cta-outline {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.cta-pill {
  background: var(--night);
  color: #ffffff;
}

.cta-button:hover,
.cta-outline:hover,
.cta-pill:hover {
  transform: translateY(-2px);
}

.section {
  padding: 3.8rem 6vw;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section.alt {
  background: var(--sand);
}

.section.deep {
  background: var(--night);
  color: #ffffff;
}

.muted-inverse {
  color: #d3d3d3;
}

.section.sky {
  background: var(--sky);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-media {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 24px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.06);
}

.split-content {
  flex: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
}

.eyebrow.light {
  color: #c3c3ff;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0.3rem 0 1rem;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--muted);
  max-width: 40rem;
}

.muted-text {
  color: var(--muted);
}

.note {
  margin-top: 1rem;
  color: var(--muted);
}

.button-row {
  margin-top: 1.6rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-field {
  margin-top: 1rem;
}

.form-actions {
  margin-top: 1.4rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.card {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.6rem;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.card img {
  width: 48px;
  height: 48px;
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
}

.inline-cta {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.timeline-item {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.2rem 1.5rem;
  border-left: 4px solid var(--accent);
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
  margin: 0;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.badge {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
}

.layered {
  position: relative;
  overflow: hidden;
}

.layered::before {
  content: "";
  position: absolute;
  inset: 10% 55% 10% -10%;
  background: var(--accent-soft);
  border-radius: 40px;
  z-index: 0;
}

.layered > * {
  position: relative;
  z-index: 1;
}

.sticky-cta {
  position: sticky;
  top: 1rem;
  align-self: flex-start;
  padding: 1.2rem 1.4rem;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 18px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--line);
}

.form-wrapper {
  background: #ffffff;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--line);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: inherit;
}

.footer {
  padding: 2.5rem 6vw;
  background: #0c0c10;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.footer-note {
  color: #b3b3b3;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: #b3b3b3;
}

.cookie-banner {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  background: #ffffff;
  border-radius: 16px;
  padding: 1rem 1.3rem;
  box-shadow: 0 18px 26px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--line);
  max-width: 320px;
  z-index: 10;
}

.cookie-banner p {
  margin: 0 0 0.8rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
}

.simple-page {
  padding: 3.5rem 6vw;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .form-grid {
    flex-direction: row;
  }

  .form-grid > div {
    flex: 1;
  }
}
