:root {
  --ink: #3e203c;
  --plum: #4b2647;
  --rose: #b66f82;
  --rose-soft: #ead2ce;
  --cream: #fffaf3;
  --paper: #f8f0e8;
  --sand: #e6d7cc;
  --gold: #c99438;
  --muted: #766273;
  --line: rgba(75, 38, 71, 0.16);
  --shadow: 0 22px 70px rgba(75, 38, 71, 0.12);
  color: var(--ink);
  background: var(--paper);
  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;
  background:
    radial-gradient(circle at 18% 8%, rgba(182, 111, 130, 0.18), transparent 32rem),
    radial-gradient(circle at 88% 12%, rgba(201, 148, 56, 0.12), transparent 28rem),
    linear-gradient(180deg, var(--cream), var(--paper));
  color: var(--ink);
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 243, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 72px;
  height: 54px;
  border-radius: 44% 56% 52% 48% / 56% 38% 62% 44%;
  background: linear-gradient(145deg, #eaded5, #d6c2b8);
  display: grid;
  place-items: center;
  box-shadow: 0 16px 35px rgba(75, 38, 71, 0.1);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  color: #201d1d;
}

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

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

.button,
button {
  border: 0;
  border-radius: 999px;
  background: var(--plum);
  color: white;
  padding: 13px 18px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 14px 30px rgba(75, 38, 71, 0.18);
}

.button.secondary {
  background: white;
  color: var(--plum);
  border: 1px solid var(--line);
  box-shadow: none;
}

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

.eyebrow {
  color: var(--rose);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.28em;
  font-weight: 800;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.95;
  letter-spacing: -0.055em;
  margin: 0;
}

h1 {
  font-size: clamp(58px, 10vw, 112px);
  max-width: 850px;
}

h1 em,
h2 em {
  color: var(--rose);
  font-style: italic;
}

h2 {
  font-size: clamp(42px, 7vw, 78px);
}

h3 {
  font-size: 30px;
  letter-spacing: -0.04em;
}

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

.hero-copy > p {
  max-width: 650px;
  font-size: 21px;
}

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

.phone-card {
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 42px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.phone-screen {
  min-height: 620px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.96), rgba(247, 236, 226, 0.96)),
    radial-gradient(circle at top, rgba(182, 111, 130, 0.2), transparent 300px);
  border: 1px solid rgba(75, 38, 71, 0.08);
  padding: 28px;
  overflow: hidden;
}

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

.mini-logo {
  width: 78px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 44% 56% 52% 48% / 56% 38% 62% 44%;
  background: var(--sand);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
}

.mini-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--plum);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.mini-reading {
  border-top: 1px solid var(--line);
  padding-top: 30px;
}

.mini-reading h3 {
  font-size: 48px;
}

.mini-reading p {
  font-size: 16px;
}

.mini-pill {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  padding: 18px;
  margin-top: 18px;
}

.mini-pill strong {
  display: block;
  margin-bottom: 6px;
}

.section {
  padding: 72px 0;
}

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

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

.card {
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 12px 40px rgba(75, 38, 71, 0.06);
}

.card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--rose-soft);
  color: var(--plum);
  margin-bottom: 22px;
  font-weight: 800;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 16px;
}

.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
}

.step::before {
  content: counter(step);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--plum);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.quote-panel {
  background: var(--plum);
  color: white;
  border-radius: 34px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.quote-panel p,
.quote-panel .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.quote-panel h2 {
  color: white;
}

.notice {
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 28px;
}

.cta {
  background:
    linear-gradient(135deg, rgba(75, 38, 71, 0.98), rgba(98, 46, 80, 0.94)),
    radial-gradient(circle at 20% 20%, rgba(201, 148, 56, 0.32), transparent 20rem);
  color: white;
  border-radius: 42px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.cta p {
  color: rgba(255, 255, 255, 0.78);
}

.cta .button {
  background: white;
  color: var(--plum);
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
  padding: 64px 0;
}

.legal-menu {
  position: sticky;
  top: 110px;
  align-self: start;
  display: grid;
  gap: 10px;
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 16px;
}

.legal-menu a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
}

.legal-page {
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(28px, 5vw, 54px);
}

.legal-page h1 {
  font-size: clamp(48px, 7vw, 80px);
}

.legal-page h2 {
  font-size: 34px;
  margin-top: 34px;
}

.legal-page ul {
  color: var(--muted);
  line-height: 1.8;
  font-size: 18px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 42px 0;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
}

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

.footer-links a {
  color: var(--muted);
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .hero,
  .split,
  .cta,
  .legal-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .phone-screen {
    min-height: auto;
  }
}

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

  .hero {
    padding-top: 44px;
  }

  .card,
  .notice,
  .cta,
  .quote-panel,
  .legal-page {
    border-radius: 24px;
    padding: 24px;
  }

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