:root {
  --ink: #25242a;
  --muted: #69636f;
  --paper: #fffaf5;
  --soft: #f5efe8;
  --lavender: #a98cf4;
  --lavender-deep: #6f4fd4;
  --rose: #c9828d;
  --sage: #6d846f;
  --line: rgba(37, 36, 42, 0.14);
  --shadow: 0 24px 60px rgba(44, 37, 59, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 245, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--lavender-deep);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  white-space: nowrap;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  white-space: nowrap;
}

.language-switch a,
.language-switch span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.language-switch [aria-current="page"] {
  color: #fff;
  background: var(--lavender-deep);
}

.nav-cta {
  color: #fff;
  background: var(--ink);
  padding: 10px 16px;
  border-radius: 999px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(100vh - 72px);
  padding: clamp(42px, 7vw, 92px) clamp(18px, 5vw, 64px) 36px;
  overflow: hidden;
}

.hero-copy {
  max-width: 670px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.02;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(46px, 7vw, 92px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.5vw, 62px);
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.lead {
  max-width: 610px;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 800;
}

.button.primary {
  color: #fff;
  background: var(--lavender-deep);
  border-color: var(--lavender-deep);
}

.button.secondary {
  color: var(--ink);
  background: transparent;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-list li {
  padding: 9px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
}

.hero-media {
  margin: 0;
}

.hero-media img {
  width: min(760px, 100%);
  margin-inline: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-block: 1px solid var(--line);
  background: #fff;
}

.strip span {
  padding: 18px 10px;
  text-align: center;
  color: var(--muted);
  font-weight: 800;
  border-right: 1px solid var(--line);
}

.strip span:last-child {
  border-right: 0;
}

.section {
  padding: clamp(60px, 8vw, 110px) clamp(18px, 5vw, 64px);
}

.section-copy {
  max-width: 900px;
}

.section-copy p,
.feature-copy p,
.showcase p,
.data-note p,
.final-cta p {
  color: var(--muted);
  font-size: 18px;
}

.narrow {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 42px;
  align-items: start;
}

.steps,
.included-grid,
.feature-grid {
  display: grid;
  gap: 14px;
}

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

.steps article,
.included-grid article,
.feature-grid article {
  min-height: 160px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.steps span {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--lavender-deep);
  font-weight: 900;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(360px, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
  padding: clamp(60px, 8vw, 110px) clamp(18px, 5vw, 64px);
  background: var(--soft);
}

.feature-visual video {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  padding-left: 22px;
  position: relative;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 9px;
  height: 9px;
  background: var(--sage);
  border-radius: 50%;
}

.included-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 36px;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(360px, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(60px, 8vw, 110px) clamp(18px, 5vw, 64px);
  background: #fff;
}

.showcase img,
.split-proof img {
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(44, 37, 59, 0.12);
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 36px;
}

.split-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 clamp(18px, 5vw, 64px) clamp(60px, 8vw, 110px);
}

.data-note {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 36px;
  padding: clamp(44px, 6vw, 78px) clamp(18px, 5vw, 64px);
  background: var(--sage);
  color: #fff;
}

.data-note .eyebrow,
.data-note p {
  color: #fff;
}

.faq {
  max-width: 980px;
  margin-inline: auto;
}

details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 19px;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.final-cta {
  padding: clamp(70px, 9vw, 124px) clamp(18px, 5vw, 64px);
  text-align: center;
  background: #fff;
}

.final-cta p {
  max-width: 680px;
  margin-inline: auto;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 64px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .hero,
  .intro,
  .feature-band,
  .showcase,
  .data-note {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .steps,
  .included-grid,
  .feature-grid,
  .split-proof {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

  .strip,
  .steps,
  .included-grid,
  .feature-grid,
  .split-proof {
    grid-template-columns: 1fr;
  }

  .strip span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .footer {
    flex-direction: column;
  }
}
