:root {
  color-scheme: light;
  --ink: #231f2a;
  --muted: #62596d;
  --soft: #f7edf3;
  --panel: rgba(255, 255, 255, 0.82);
  --line: rgba(64, 47, 75, 0.14);
  --accent: #9b5f82;
  --accent-strong: #7b3f68;
  --blue: #466f86;
  --green: #567a62;
  --shadow: 0 24px 70px rgba(66, 44, 64, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fffafc;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(18px, 4vw, 52px);
  background: rgba(255, 250, 252, 0.76);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
nav,
footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 760;
}

.brand img {
  border-radius: 8px;
}

nav {
  gap: clamp(16px, 3vw, 30px);
}

nav a,
footer a,
.text-link {
  color: var(--accent-strong);
  text-decoration: none;
  font-weight: 650;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 110px clamp(20px, 6vw, 80px) 9vh;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 250, 252, 0.94), rgba(255, 250, 252, 0.62) 42%, rgba(255, 250, 252, 0.08) 78%);
}

.hero-content {
  position: relative;
  max-width: 620px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 14px;
  font-size: clamp(58px, 9vw, 116px);
  line-height: 0.92;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.lede {
  max-width: 560px;
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions,
footer {
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 760;
}

.button.primary {
  color: white;
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}

.button.secondary {
  color: var(--accent-strong);
  background: rgba(255, 255, 255, 0.64);
}

.intro,
.feature-grid,
.showcase,
.privacy-band,
.download {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0;
}

.intro,
.privacy-band,
.download {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.84fr);
  gap: 52px;
  align-items: start;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-top: 30px;
}

.feature-grid article,
.download-panel {
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.marker {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--blue);
  font-weight: 800;
}

.showcase {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: center;
}

.showcase img {
  width: 100%;
  display: block;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.privacy-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.download-panel {
  background: #ffffff;
}

.download-panel img {
  border-radius: 16px;
  margin-bottom: 16px;
}

footer {
  justify-content: space-between;
  padding: 28px clamp(20px, 6vw, 80px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 860px) {
  .site-header {
    position: sticky;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding-bottom: 52px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(255, 250, 252, 0.88), rgba(255, 250, 252, 0.82) 56%, rgba(255, 250, 252, 0.18));
  }

  .hero-actions {
    display: grid;
  }

  .intro,
  .privacy-band,
  .download,
  .showcase {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 54px 0;
  }

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