:root {
  --ink: #241333;
  --muted: #6f607b;
  --soft: #fdf7fb;
  --rose: #fde8f2;
  --lavender: #eadcf7;
  --violet: #5e2b7f;
  --violet-dark: #170a27;
  --gold: #d8aa42;
  --line: rgba(94, 43, 127, 0.15);
  --card: rgba(255, 255, 255, 0.78);
  --shadow: 0 28px 80px rgba(36, 19, 51, 0.16);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 232, 214, 0.9), transparent 32%),
    radial-gradient(circle at 86% 18%, rgba(210, 184, 241, 0.7), transparent 34%),
    linear-gradient(180deg, #fffafd 0%, #faedf6 48%, #f3e7fa 100%);
}

a {
  color: var(--violet);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 14px;
  color: #fff4bd;
  background: linear-gradient(145deg, #140720 0%, #5e2b7f 72%, #bd7897 100%);
  box-shadow: 0 12px 30px rgba(94, 43, 127, 0.25);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  font-size: 14px;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 44px;
  align-items: center;
  padding: 54px 0 80px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(216, 170, 66, 0.45);
  border-radius: 999px;
  padding: 8px 13px;
  color: #6d4c0e;
  background: rgba(255, 244, 189, 0.72);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
}

h1 {
  margin-top: 20px;
  max-width: 780px;
  font-size: clamp(44px, 8vw, 92px);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 22px;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.lead {
  margin-top: 24px;
  max-width: 680px;
  font-size: clamp(18px, 2.4vw, 24px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
}

.button.primary {
  color: white;
  background: var(--violet);
  box-shadow: 0 18px 38px rgba(94, 43, 127, 0.22);
}

.button.secondary {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.visual {
  position: relative;
  min-height: 540px;
}

.phone {
  position: relative;
  width: min(360px, 100%);
  min-height: 700px;
  margin-left: auto;
  border: 14px solid #140d1a;
  border-radius: 54px;
  background: linear-gradient(180deg, #fffdfa 0%, #fff0f8 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  width: 112px;
  height: 30px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #050308;
  z-index: 2;
}

.phone-screen {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 72px 22px 26px;
}

.ritual-card {
  border-radius: 30px;
  padding: 28px;
  color: white;
  background: linear-gradient(150deg, #18072b 0%, #5e2b7f 58%, #c37796 100%);
}

.ritual-card .label {
  color: #fff2b7;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.ritual-card strong {
  display: block;
  margin-top: 22px;
  font-size: 34px;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.ritual-card span {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}

.mini-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 35px rgba(36, 19, 51, 0.08);
}

.mini-card small {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mini-card b {
  display: block;
  margin-top: 10px;
  font-size: 20px;
}

.steps {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
}

.dot {
  display: grid;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  color: var(--violet);
  background: #fff0bf;
  font-size: 13px;
  font-weight: 850;
}

.section {
  padding: 72px 0;
}

.section-head {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin-bottom: 28px;
}

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

.card {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  background: var(--card);
  box-shadow: 0 18px 50px rgba(36, 19, 51, 0.08);
  backdrop-filter: blur(18px);
}

.card p,
.legal p,
.legal li {
  font-size: 16px;
}

.legal {
  display: grid;
  gap: 28px;
  max-width: 880px;
  padding: 34px 0 80px;
}

.legal-header {
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(28px, 5vw, 54px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.legal-header h1 {
  font-size: clamp(40px, 7vw, 72px);
}

.legal-header p {
  max-width: 720px;
}

.legal-section {
  display: grid;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.legal ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.65;
}

.notice {
  border: 1px solid rgba(216, 170, 66, 0.45);
  border-radius: 24px;
  padding: 18px;
  color: #6d4c0e;
  background: rgba(255, 244, 189, 0.62);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 34px 0 46px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 24px;
  }

  .visual {
    min-height: auto;
  }

  .phone {
    margin-right: auto;
  }

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

@media (max-width: 560px) {
  .shell {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .phone {
    min-height: 640px;
    border-width: 10px;
    border-radius: 44px;
  }

  .phone-screen {
    padding-inline: 16px;
  }

  .ritual-card strong {
    font-size: 30px;
  }
}
