:root {
  color-scheme: light;
  --ink: #24313d;
  --muted: #66717d;
  --bg: #fff9f2;
  --surface: #ffffff;
  --surface-soft: #f7f2ec;
  --pink: #df8fb5;
  --pink-dark: #b95787;
  --teal: #2f8c86;
  --sage: #dcebdc;
  --coral: #ee8d74;
  --line: #eadfd5;
  --shadow: 0 16px 40px rgba(53, 42, 38, 0.11);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  transform: translateY(-140%);
  background: var(--ink);
  color: #fff;
  padding: 10px 12px;
  border-radius: 6px;
  z-index: 20;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 52px);
  background: rgba(255, 249, 242, 0.88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  border-radius: 50%;
}

.brand.muted {
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 32px);
  font-size: 14px;
  font-weight: 700;
}

.nav a,
.site-footer nav a {
  text-decoration: none;
  color: var(--muted);
}

.nav a:hover,
.site-footer nav a:hover {
  color: var(--pink-dark);
}

.hero {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("/assets/logo.png");
  background-repeat: no-repeat;
  background-position: right clamp(16px, 9vw, 140px) center;
  background-size: min(56vw, 620px);
  opacity: 0.22;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255, 249, 242, 0.99) 0%, rgba(255, 249, 242, 0.96) 48%, rgba(255, 249, 242, 0.58) 100%);
}

.hero-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 74px 0 56px;
}

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

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

h1 {
  margin-bottom: 18px;
  max-width: 720px;
  font-size: clamp(52px, 12vw, 118px);
  line-height: 0.92;
  letter-spacing: 0;
  color: var(--pink-dark);
}

h2 {
  margin-bottom: 18px;
  max-width: 780px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

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

.hero-lead {
  max-width: 650px;
  margin-bottom: 28px;
  color: #47535f;
  font-size: clamp(18px, 2vw, 24px);
}

.hero-actions,
.launch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  line-height: 1.2;
}

.button-primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 12px 26px rgba(185, 87, 135, 0.28);
}

.button-primary:hover {
  background: var(--pink-dark);
}

.button-secondary {
  background: var(--surface);
  border-color: var(--line);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--pink);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 160px));
  gap: 12px;
  margin: 44px 0 0;
  padding: 0;
}

.hero-facts div,
.feature-card,
.step,
.launch-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
}

.hero-facts div {
  padding: 14px;
}

.hero-facts dt {
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  color: var(--teal);
}

.hero-facts dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: clamp(68px, 9vw, 118px) 0;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.two-column,
.trust-layout,
.launch-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.intro-band {
  background: var(--surface);
}

.section-lead {
  color: #4f5b66;
  font-size: clamp(17px, 2vw, 21px);
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading.narrow {
  max-width: 780px;
}

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

.feature-card {
  min-height: 260px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.feature-mark {
  display: block;
  margin-bottom: 46px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.feature-card p,
.step p,
.launch-panel p,
.trust-list {
  color: var(--muted);
}

.soft-section {
  background: var(--surface-soft);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step {
  padding: 24px;
  background: var(--surface);
}

.step strong {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--teal);
  font-size: 18px;
}

.trust-section {
  background: var(--ink);
  color: #fff;
}

.trust-section .eyebrow,
.trust-section .section-lead {
  color: #b8ddd9;
}

.trust-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #eef6f5;
}

.launch-panel {
  padding: clamp(24px, 5vw, 48px);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.launch-actions {
  align-content: start;
  justify-content: end;
}

.launch-actions p {
  width: 100%;
  margin: 8px 0 0;
  text-align: right;
}

.launch-actions a:not(.button) {
  color: var(--pink-dark);
  font-weight: 700;
}

.site-footer {
  padding: 34px 0;
  background: #f2ebe4;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  text-align: right;
}

.legal-page {
  background: var(--surface);
}

.legal-hero {
  padding: 72px 0 40px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  max-width: 900px;
  font-size: clamp(40px, 8vw, 76px);
}

.legal-content {
  display: grid;
  gap: 28px;
  padding: 54px 0 90px;
}

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

.legal-section h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.legal-note {
  max-width: 900px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--muted);
}

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

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    font-size: 13px;
  }

  .hero {
    min-height: 80vh;
  }

  .hero::before {
    background-position: center 44px;
    background-size: min(86vw, 440px);
    opacity: 0.12;
  }

  .hero::after {
    background: rgba(255, 249, 242, 0.88);
  }

  .hero-inner {
    padding-top: 116px;
  }

  .two-column,
  .trust-layout,
  .launch-panel {
    grid-template-columns: 1fr;
  }

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

  .feature-card {
    min-height: 0;
  }

  .feature-mark {
    margin-bottom: 24px;
  }

  .launch-actions {
    justify-content: start;
  }

  .launch-actions p {
    text-align: left;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .container,
  .hero-inner {
    width: min(100% - 28px, var(--max));
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, auto));
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }
}
