:root {
  --ink: #18151d;
  --muted: #68616f;
  --paper: #fff;
  --soft: #f5f2f8;
  --purple: #6d35e5;
  --purple-dark: #4b1fa8;
  --coral: #ff6f78;
  --mint: #a8e6cf;
  --line: #ded8e5;
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  letter-spacing: 0;
}

img { display: block; width: 100%; }
a { color: inherit; }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 42px;
  min-height: 72px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, .95);
  border-bottom: 1px solid rgba(24, 21, 29, .08);
  backdrop-filter: blur(14px);
}

.brand {
  text-decoration: none;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 27px;
  font-weight: 800;
}

.brand span { color: var(--coral); }

nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

nav a, footer a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

nav a:hover, footer a:hover { color: var(--purple); }

.header-download,
.primary-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--purple);
  border-radius: 6px;
  background: var(--purple);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}

.header-download:hover,
.primary-button:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(760px, calc(100vh - 72px));
  overflow: hidden;
  background: #332846;
}

.hero-collage {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 56% 22% 22%;
  gap: 4px;
}

.hero-image {
  height: 100%;
  min-width: 0;
  object-fit: cover;
}

.hero-image-main { object-position: center 18%; }
.hero-image-top { object-position: center 20%; }
.hero-image-bottom { object-position: center 12%; }

.hero-shade,
.download-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(20, 12, 28, .58);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding-top: clamp(112px, 18vh, 165px);
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(72px, 11vw, 150px);
  line-height: .9;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin: 28px 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.text-link {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.download-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.intro-band,
.feature-band,
.safety-band {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0;
}

.intro-band {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 80px;
}

h2 {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: 0;
}

.intro-band > p,
.safety-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.profile-showcase {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 8px;
  padding: 0 8px;
}

.profile-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--soft);
}

.profile-card img {
  height: 100%;
  object-fit: cover;
}

.profile-card-tall { min-height: 660px; }

.profile-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
}

.profile-caption strong { font-size: 18px; }
.profile-caption span { color: var(--muted); font-size: 13px; }

.feature-band {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
}

.feature-grid {
  border-top: 1px solid var(--line);
}

.feature-grid article {
  display: grid;
  grid-template-columns: 52px 120px 1fr;
  gap: 12px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.feature-number { color: var(--purple); font-weight: 700; }
.feature-grid h3 { margin: 0; font-size: 20px; }
.feature-grid p { margin: 0; color: var(--muted); line-height: 1.55; }

.safety-band {
  display: grid;
  grid-template-columns: 130px .8fr 1fr;
  gap: 50px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.safety-mark {
  display: grid;
  width: 104px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 30px;
  font-weight: 800;
}

.safety-copy p:first-child { margin-top: 0; }

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}

.legal-links a {
  color: var(--purple);
  font-weight: 700;
}

.download-band {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 600px;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.download-band > img {
  position: absolute;
  z-index: 0;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.download-shade { background: rgba(37, 16, 56, .68); }

.download-content {
  position: relative;
  z-index: 2;
  width: min(780px, calc(100% - 48px));
  color: #fff;
}

.download-content h2 { margin-bottom: 30px; }
.primary-button-light { background: #fff; border-color: #fff; color: var(--purple-dark); }
.primary-button-light:hover { background: var(--mint); border-color: var(--mint); }
.download-content > p:last-child { margin-top: 18px; color: rgba(255,255,255,.75); font-size: 13px; }

footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 44px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--ink);
  color: #fff;
}

footer p { color: #bdb5c5; }
footer div { display: flex; gap: 22px; }
footer small { grid-column: 1 / -1; color: #8f8797; }

.legal-page {
  min-height: 100vh;
  background: var(--soft);
}

.legal-shell {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0;
}

.legal-shell h1 {
  margin: 8px 0 16px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(42px, 7vw, 72px);
}

.legal-meta {
  margin-bottom: 40px;
  color: var(--muted);
}

.legal-content {
  padding: 44px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-content h2 {
  margin: 38px 0 12px;
  font-size: 24px;
}

.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: #49434f; line-height: 1.7; }
.legal-content a { color: var(--purple); }
.legal-back { color: var(--purple); font-weight: 700; text-decoration: none; }

@media (max-width: 820px) {
  .site-header { gap: 18px; }
  nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .header-download { min-height: 40px; padding: 0 14px; }
  .hero { min-height: 720px; }
  .hero-collage { grid-template-columns: 1fr 1fr; }
  .hero-image-main { grid-column: 1 / -1; }
  .hero-image-top, .hero-image-bottom { display: none; }
  .hero-shade { background: rgba(20, 12, 28, .52); }
  .hero-content { padding-top: 112px; }
  .intro-band, .feature-band, .safety-band { grid-template-columns: 1fr; gap: 34px; padding: 68px 0; }
  .profile-showcase { grid-template-columns: 1fr 1fr; }
  .profile-card, .profile-card-tall { min-height: 480px; }
  .profile-card-tall { grid-column: 1 / -1; }
  .feature-grid article { grid-template-columns: 42px 100px 1fr; }
  footer { grid-template-columns: 1fr; gap: 18px; }
  footer small { grid-column: auto; }
}

@media (max-width: 560px) {
  .hero-content,
  .intro-band,
  .feature-band,
  .safety-band { width: min(100% - 32px, var(--max)); }
  .hero { min-height: 650px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .profile-showcase { display: block; padding: 0; }
  .profile-card, .profile-card-tall { min-height: 520px; margin-bottom: 4px; }
  .feature-grid article { grid-template-columns: 38px 1fr; }
  .feature-grid p { grid-column: 2; }
  .safety-band { grid-template-columns: 1fr; }
  .download-band { min-height: 540px; }
  .legal-content { padding: 26px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .header-download, .primary-button { transition: none; }
}

.legal-copy { white-space: pre-line; color: #49434f; line-height: 1.72; }
