:root {
  --bg: #eef0ea;
  --ink: #1b2320;
  --muted: #6b746f;
  --accent: #3e6e70;
  --accent-deep: #244f50;
  --accent-darker: #1c3f40;
  --gold: #c99a3a;
  --surface: #ffffff;
  --line: rgba(28, 35, 33, 0.08);
  --cream: #f3f1ea;
  --cream-dim: rgba(243, 241, 234, 0.72);
  --radius: 26px;
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(1200px 600px at 50% -10%, #e6ede9, transparent 62%),
    var(--bg);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.shell {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 24px;
}

.layout {
  width: 100%;
  max-width: 1080px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(28, 35, 33, 0.05),
    0 40px 90px rgba(28, 35, 33, 0.14);
}

.brand-panel {
  position: relative;
  overflow: hidden;
  min-width: 0;
  color: var(--cream);
  background:
    radial-gradient(520px 320px at 88% 6%, rgba(255, 255, 255, 0.09), transparent 60%),
    linear-gradient(158deg, var(--accent) 0%, var(--accent-deep) 52%, var(--accent-darker) 100%);
  padding: 52px 46px;
  display: flex;
  align-items: center;
}

.watermark {
  position: absolute;
  right: -46px;
  bottom: -52px;
  width: 320px;
  height: 320px;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.brand-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.lockup {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 40px;
}

.mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}

.wordmark {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--cream);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
}

.pitch h1 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(30px, 3.4vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.008em;
  color: #fbfaf6;
}

.lede {
  margin: 0;
  max-width: 40ch;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--cream-dim);
}

.steps {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.steps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.step-num {
  flex: none;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.step-body {
  font-size: 14px;
  line-height: 1.45;
  color: var(--cream-dim);
}

.step-body strong {
  display: block;
  font-weight: 600;
  color: #fbfaf6;
  margin-bottom: 1px;
}

.trust {
  list-style: none;
  margin: 30px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.trust li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--cream-dim);
}

.trust svg {
  flex: none;
}

.book-panel {
  padding: 46px 44px 26px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.book-head {
  margin-bottom: 22px;
}

.eyebrow-dark {
  color: var(--accent);
}

.book-head h2 {
  margin: 0 0 6px;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(23px, 2.4vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--ink);
}

.book-sub {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.widget {
  margin-top: 4px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  flex: 1;
}

.widget iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 660px;
}

.foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  padding: 16px 8px 6px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--muted);
  text-align: center;
}

.foot svg {
  flex: none;
}

@media (max-width: 880px) {
  .shell {
    padding: 0;
    align-items: stretch;
  }

  .layout {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
    border-radius: 0;
    box-shadow: none;
  }

  .brand-panel {
    padding: 40px 30px 36px;
  }

  .watermark {
    width: 220px;
    height: 220px;
    right: -34px;
    bottom: -40px;
  }

  .lockup {
    margin-bottom: 30px;
  }

  .steps {
    margin-top: 28px;
  }

  .book-panel {
    padding: 36px 26px 22px;
  }
}

@media (min-width: 881px) {
  .layout {
    align-items: stretch;
  }
}

@media (max-width: 420px) {
  .brand-panel {
    padding: 34px 22px 30px;
  }

  .book-panel {
    padding: 30px 20px 18px;
  }
}
