:root {
  --ink: #201018;
  --muted: #765d67;
  --rose: #f7256e;
  --coral: #ff6b4a;
  --plum: #5e2448;
  --line: #f0d7df;
  --blush: #fff4f7;
  --cream: #fff9ed;
  --surface: #ffffff;
  --mint: #17b897;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 0%, #ffe4ee 0, transparent 28%),
    radial-gradient(circle at 90% 10%, #ffe0d5 0, transparent 24%),
    linear-gradient(145deg, var(--cream) 0%, var(--blush) 54%, #ffe8f0 100%);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.shell {
  width: min(100%, 1100px);
  margin: 0 auto;
  padding: 26px 18px 54px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 42px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 950;
}

.mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--plum), var(--rose));
  color: #fff;
  box-shadow: 0 16px 36px rgba(247, 37, 110, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.nav-links a {
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(240, 215, 223, 0.94);
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(94, 36, 72, 0.13);
}

.hero-copy {
  padding: 36px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: #fff0f5;
  color: var(--rose);
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 18px;
}

h1 {
  margin: 0;
  max-width: 770px;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 0.94;
  letter-spacing: 0;
  font-weight: 950;
}

.lead {
  max-width: 660px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  margin: 22px 0 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--rose), var(--coral));
  color: #fff;
  box-shadow: 0 18px 38px rgba(247, 37, 110, 0.22);
}

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

.phone {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background: linear-gradient(140deg, #30131f 0%, #5e2448 46%, #f7256e 100%);
  color: #fff;
  border-radius: 34px;
  box-shadow: 0 34px 90px rgba(94, 36, 72, 0.24);
  min-height: 520px;
}

.phone::after {
  content: "";
  position: absolute;
  inset: auto -34px -70px auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 42px;
}

.badge {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 12px;
  font-weight: 900;
}

.phone h2 {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.05;
}

.phone p {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  line-height: 1.45;
}

.mini-card {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.card {
  padding: 24px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.card p,
.content p,
.content li {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.55;
}

.content {
  width: min(100%, 860px);
  margin: 0 auto;
  padding: 34px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(240, 215, 223, 0.94);
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(94, 36, 72, 0.13);
}

.content h1 {
  font-size: clamp(36px, 6vw, 58px);
}

.content h2 {
  margin-top: 30px;
  font-size: 24px;
}

.content ul {
  padding-left: 22px;
}

.notice {
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--cream);
  border: 1px solid #f4dfb9;
  color: #62422b;
  font-weight: 750;
  line-height: 1.45;
}

.footer {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 24px;
  }

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

  .hero-copy,
  .content {
    padding: 24px;
  }

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

  .phone {
    min-height: 430px;
  }
}
