/* ============================================================
   The Secret Playbook — landing & legal pages
   Style tokens taken from the AMT Finder (thedayonemethod.com)
   ============================================================ */
:root {
  --bg: #fffefa;
  --bg-alt: #f7f3ec;
  --text: #141313;
  --text-soft: #363336;
  --muted: #8a8488;
  --accent: #ff914d;
  --accent-2: #ffb929;
  --accent-tint: #fff7ef;
  --line: #e8e2d8;
  --card: #ffffff;
  --shadow: 0 1px 2px rgba(20, 19, 19, .04), 0 8px 24px rgba(20, 19, 19, .05);
  --radius: 14px;
  --radius-sm: 8px;
  --maxw: 1080px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'Canva Sans', 'Noto Sans Variable', 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

h1, h2, h3 { letter-spacing: -0.015em; line-height: 1.15; margin: 0; }
h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.1rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; }
p { margin: 0 0 1em; }

img { max-width: 100%; display: block; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------------- Header ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 254, 250, .92);
  backdrop-filter: saturate(160%) blur(8px);
  -webkit-backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.wordmark {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  font-size: 1.05rem;
}
.wordmark .dot { color: var(--accent); }
.nav { display: flex; gap: 28px; }
.nav a { color: var(--text-soft); font-weight: 500; font-size: 0.95rem; }
.nav a:hover { color: var(--accent); text-decoration: none; }
@media (max-width: 600px) {
  .nav { gap: 18px; }
  .nav a { font-size: 0.88rem; }
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #f57a30; text-decoration: none; transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--text); border-color: var(--text); }
.btn-secondary:hover { background: var(--text); color: var(--bg); text-decoration: none; }
.btn-arrow::after { content: "→"; transition: transform .2s ease; }
.btn-arrow:hover::after { transform: translateX(3px); }

/* ---------------- Hero ---------------- */
.hero {
  padding: 64px 0 72px;
  background:
    radial-gradient(900px 400px at 80% -10%, var(--accent-tint), transparent 70%),
    var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-tint);
  border: 1px solid #ffd9bf;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 { margin-bottom: 18px; }
.hero .lede {
  font-size: 1.18rem;
  color: var(--text-soft);
  max-width: 36ch;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-cover {
  position: relative;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(-1.5deg);
  max-width: 320px;
  margin-left: auto;
}
.hero-cover img { width: 100%; height: auto; display: block; }
@media (max-width: 820px) {
  .hero { padding: 40px 0 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-cover { max-width: 240px; margin: 0 auto; transform: rotate(-1deg); }
}

/* ---------------- Sections ---------------- */
section.block { padding: 72px 0; border-top: 1px solid var(--line); }
section.block.alt { background: var(--bg-alt); }
.section-head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.section-head .kicker {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-head h2 { margin-bottom: 14px; }
.section-head p { color: var(--text-soft); font-size: 1.05rem; }

/* "Worum es geht" — text + pull quote */
.prose { max-width: 720px; margin: 0 auto; color: var(--text-soft); font-size: 1.05rem; }
.prose p { margin-bottom: 1.1em; }
.pull-quote {
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 20px;
  margin: 36px 0;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
  letter-spacing: -0.005em;
}

/* "Was Du bekommst" — three cards */
.card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-3px); border-color: #d8cfbe; }
.card .num {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 14px;
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-soft); margin: 0; font-size: 0.97rem; }
@media (max-width: 820px) {
  .card-row { grid-template-columns: 1fr; }
}

/* Finder teaser */
.finder-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow);
}
.finder-teaser h2 { margin-bottom: 14px; }
.finder-teaser p { color: var(--text-soft); margin-bottom: 24px; }
.finder-mock {
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  padding: 22px;
  font-size: 0.85rem;
  color: var(--text-soft);
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  line-height: 1.65;
  border: 1px dashed var(--line);
}
.finder-mock .arrow { color: var(--accent); }
@media (max-width: 820px) {
  .finder-teaser { grid-template-columns: 1fr; gap: 28px; padding: 28px; }
}

/* Authors — shared group photo + three text cards */
.authors-photo {
  max-width: 880px;
  margin: 0 auto 40px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.authors-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.authors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.author {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.author h3 { margin-bottom: 4px; }
.author .role { font-size: 0.88rem; color: var(--accent); font-weight: 600; margin-bottom: 14px; }
.author p { font-size: 0.94rem; color: var(--text-soft); margin: 0; }
@media (max-width: 820px) {
  .authors { grid-template-columns: 1fr; }
}

/* Buy CTA */
.buy {
  text-align: center;
  background: linear-gradient(180deg, var(--accent-tint), var(--bg));
}
.buy h2 { margin-bottom: 14px; }
.buy p { color: var(--text-soft); max-width: 520px; margin: 0 auto 28px; }
.buy .meta { font-size: 0.85rem; color: var(--muted); margin-top: 22px; }

/* ---------------- Footer ---------------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
  padding: 40px 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}
.site-footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}
.site-footer nav { display: flex; gap: 22px; }
.site-footer a { color: var(--text-soft); }
.site-footer a:hover { color: var(--accent); text-decoration: none; }

/* ---------------- Legal pages ---------------- */
.legal { padding: 64px 0 80px; }
.legal h1 { font-size: 2rem; margin-bottom: 28px; }
.legal h2 { font-size: 1.25rem; margin: 32px 0 12px; }
.legal { max-width: 760px; margin: 0 auto; }
.legal address { font-style: normal; color: var(--text-soft); margin-bottom: 16px; }
.legal .todo {
  background: var(--accent-tint);
  border-left: 3px solid var(--accent);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-soft);
  margin: 18px 0;
  font-size: 0.92rem;
}

/* ---------------- 404 ---------------- */
.notfound {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 80vh;
  padding: 40px 24px;
}
.notfound .code {
  font-size: 6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
}
.notfound h1 { font-size: 1.8rem; margin: 18px 0 12px; }
.notfound p { color: var(--text-soft); margin-bottom: 28px; }
