:root {
  --ink: #191922;
  --paper: #f7f3ec;
  --coral: #f16a5b;
  --violet: #6d63e8;
  --mint: #31a982;
  --gold: #e9b949;
  --muted: #6b6873;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 5%, rgba(241, 106, 91, .16), transparent 26rem),
    radial-gradient(circle at 5% 88%, rgba(109, 99, 232, .13), transparent 25rem),
    var(--paper);
  font-family: ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 900; font-size: 22px; }
.mark {
  width: 40px; height: 40px; border-radius: 12px; background: var(--ink);
  display: grid; place-items: center; gap: 3px; padding: 10px;
}
.mark i { display: block; height: 3px; border-radius: 9px; background: white; }
.mark i:nth-child(1) { width: 11px; }
.mark i:nth-child(2) { width: 16px; }
.mark i:nth-child(3) { width: 21px; background: var(--coral); }
.navlinks { display: flex; gap: 22px; font-weight: 700; font-size: 14px; }
.navlinks a { text-decoration: none; color: var(--muted); }

.hero {
  min-height: 72vh;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 56px;
  padding: 60px 0 90px;
}
.eyebrow { color: var(--coral); font-size: 12px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
h1 { font-size: clamp(48px, 7vw, 84px); line-height: .98; letter-spacing: -.055em; margin: 14px 0 22px; max-width: 800px; }
.lead { color: var(--muted); font-size: clamp(18px, 2vw, 23px); max-width: 660px; }
.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.badge { background: rgba(255,255,255,.72); border: 1px solid rgba(25,25,34,.08); border-radius: 999px; padding: 10px 14px; font-size: 13px; font-weight: 800; }

.visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.book {
  width: 260px; height: 360px; background: var(--violet); border-radius: 28px 48% 28px 28px;
  transform: rotate(-7deg) translateX(-42px); box-shadow: 0 35px 60px rgba(25,25,34,.20);
  display: grid; place-items: center; color: white; font-weight: 900; letter-spacing: .12em;
}
.steps {
  position: absolute; transform: translate(120px, 90px) rotate(4deg); width: 220px; padding: 24px;
  border-radius: 26px; background: var(--ink); color: white; box-shadow: 0 28px 50px rgba(25,25,34,.22);
}
.steps div { display: flex; align-items: center; gap: 12px; margin: 11px 0; }
.steps b { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--coral); }
.steps span { display: block; height: 8px; width: 110px; border-radius: 9px; background: rgba(255,255,255,.78); }

.section { padding: 88px 0; }
.section h2 { font-size: clamp(34px, 5vw, 56px); line-height: 1.04; letter-spacing: -.04em; margin: 10px 0 34px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: rgba(255,255,255,.78); border: 1px solid rgba(25,25,34,.07); border-radius: 28px; padding: 28px; box-shadow: 0 18px 45px rgba(25,25,34,.06); }
.icon { width: 48px; height: 48px; border-radius: 16px; display: grid; place-items: center; color: white; font-weight: 900; font-size: 20px; margin-bottom: 38px; }
.card h3 { margin: 0 0 8px; font-size: 21px; }
.card p { color: var(--muted); margin: 0; }
.coral { background: var(--coral); } .violet { background: var(--violet); } .mint { background: var(--mint); }

.quote { background: var(--ink); color: white; border-radius: 36px; padding: clamp(36px, 6vw, 76px); }
.quote p { font: 700 clamp(28px, 4vw, 48px)/1.15 Georgia, serif; margin: 0; max-width: 850px; }
.quote small { display: block; color: rgba(255,255,255,.58); margin-top: 24px; font-weight: 800; }

.legal { width: min(760px, calc(100% - 40px)); margin: 60px auto 110px; }
.legal h1 { font-size: clamp(42px, 7vw, 66px); }
.legal h2 { margin-top: 42px; font-size: 25px; }
.legal p, .legal li { color: #4f4d57; }
.legal .updated { color: var(--coral); font-weight: 800; }
.contact { background: white; border-radius: 22px; padding: 22px; margin-top: 30px; }

footer { padding: 44px 0; border-top: 1px solid rgba(25,25,34,.10); color: var(--muted); font-size: 13px; }
.footerrow { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr; padding-top: 36px; }
  .visual { min-height: 430px; transform: scale(.84); margin: -30px 0; }
  .grid { grid-template-columns: 1fr; }
  .navlinks { gap: 12px; font-size: 12px; }
}
