/* Iman Mahmoud | Coaching — shared styles */

@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url('fonts/bricolage-grotesque-var.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/manrope-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/manrope-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/manrope-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/manrope-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('fonts/manrope-800.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/jetbrains-mono-500.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/jetbrains-mono-700.woff2') format('woff2');
}

:root {
  --bg: #ffffff;
  --bg-soft: #f7f7f5;
  --card: #ffffff;
  --border: rgba(15, 15, 17, 0.09);
  --border-strong: rgba(15, 15, 17, 0.16);
  --text: #17171a;
  --text-dim: #55555c;
  --text-faint: #85858c;
  --gold: #e8a319;
  --gold-dim: rgba(232, 163, 25, 0.12);
  --orange: #e8672c;
  --orange-dim: rgba(232, 103, 44, 0.1);
  --sans: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --display: 'Bricolage Grotesque', 'Manrope', sans-serif;
  --mono: 'JetBrains Mono', 'SF Mono', monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

a { color: inherit; }

/* Nav */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; max-width: 1080px; margin: 0 auto;
}
.nav .logo {
  font-family: var(--display); font-weight: 600; font-size: 17px; color: var(--text);
  text-decoration: none; letter-spacing: -0.01em;
}
.nav .logo span { color: var(--gold); }
.nav-links-desktop { list-style: none; display: flex; gap: 28px; }
.nav a.navlink {
  text-decoration: none; color: var(--text-dim); font-size: 14.5px; font-weight: 500;
  transition: color 0.15s;
}
.nav a.navlink:hover { color: var(--text); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0;
  background: var(--text); color: #fff; text-decoration: none;
  padding: 10px 18px; border-radius: 100px; font-size: 14px; font-weight: 600;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--orange); }

/* Sections */
section { padding: 88px 0; border-bottom: 1px solid var(--border); }
section:last-of-type { border-bottom: none; }

.kicker {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; font-weight: 500;
}
h1 { font-family: var(--display); font-weight: 600; font-size: 56px; line-height: 1.12; margin-bottom: 22px; letter-spacing: -0.01em; }
h2 { font-family: var(--display); font-weight: 600; font-size: 34px; margin-bottom: 16px; line-height: 1.22; letter-spacing: -0.01em; }
h3 { font-family: var(--display); font-weight: 600; font-size: 20px; line-height: 1.3; }
p { color: var(--text-dim); font-size: 16px; max-width: 640px; }
.lede { font-size: 19px; color: var(--text-dim); max-width: 620px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--text); text-decoration: none;
  padding: 15px 28px; border-radius: 100px; font-size: 15.5px; font-weight: 700;
  transition: transform 0.15s, background 0.15s; border: none; cursor: pointer;
}
.btn:hover { background: var(--orange); color: #fff; transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--text); text-decoration: none;
  padding: 14px 26px; border-radius: 100px; font-size: 15px; font-weight: 600;
  border: 1px solid var(--border-strong); transition: border-color 0.15s;
}
.btn-outline:hover { border-color: var(--text); }

/* Hero */
.hero { padding-top: 64px; padding-bottom: 80px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-actions { display: flex; align-items: center; gap: 18px; margin-top: 32px; flex-wrap: wrap; }
.hero-note { font-size: 13.5px; color: var(--text-faint); }
.hero-disclaimer {
  margin-top: 28px; padding: 16px 20px; border-radius: 12px; max-width: 560px;
  background: var(--orange-dim); border: 1px solid rgba(232,103,44,0.3);
  font-size: 13.5px; line-height: 1.55; color: var(--text-dim);
}
.hero-disclaimer strong { color: var(--orange); }
.hero-portrait {
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/5; background: var(--bg-soft); border: 1px solid var(--border);
}
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; }

/* Image placeholder (until real files are dropped in) */
.img-slot { position: relative; }
.img-slot img { width: 100%; height: 100%; object-fit: cover; }
.img-slot.img-missing img { display: none; }
.img-slot.img-missing::before {
  content: attr(data-label);
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 16px; font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.04em; color: var(--text-faint); background: var(--bg-soft);
  border: 1px dashed var(--border-strong); border-radius: inherit; overflow: hidden; white-space: pre-line;
}

/* Founder badge */
.founder-badge {
  display: flex; align-items: center; gap: 16px;
  border: 1px solid var(--border-strong); border-radius: 16px; padding: 20px 24px;
  background: var(--gold-dim); margin-top: 32px; max-width: 560px;
}
.founder-badge .num { font-family: var(--mono); font-size: 34px; font-weight: 700; color: var(--gold); line-height: 1; }
.founder-badge .txt { font-size: 14.5px; color: var(--text-dim); }
.founder-badge .txt strong { color: var(--text); }

/* Feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; margin-top: 36px; }
.feature-item { background: var(--bg); padding: 28px; }
.feature-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.feature-item p { font-size: 14.5px; max-width: none; }

/* About / transformation */
.about-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: start; }
.transform-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 28px; }
.transform-row .img-slot { border-radius: 12px; aspect-ratio: 3/4; border: 1px solid var(--border); background: var(--bg-soft); }
.transform-caption { font-family: var(--mono); font-size: 11.5px; color: var(--text-faint); margin-top: 10px; text-align: center; }

/* HD Rechner promo */
.hd-promo-card {
  border: 1px solid rgba(232,163,25,0.3); border-radius: 20px; padding: 48px;
  background: linear-gradient(135deg, var(--gold-dim), var(--orange-dim));
  text-align: center;
}
.hd-promo-card > div { max-width: 620px; margin: 0 auto; }
.hd-promo-card .lede { margin: 0 auto 28px; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; align-items: start; }
.plan {
  border: 1px solid var(--border-strong); border-radius: 20px; padding: 36px;
  background: var(--bg-soft);
}
.plan.premium { background: var(--orange-dim); border-color: rgba(232,103,44,0.3); }
.plan-tag { font-family: var(--mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--orange); font-weight: 600; }
.plan.premium .plan-tag { color: var(--orange); }
.plan:not(.premium) .plan-tag { color: var(--gold); }
.plan h3 { margin-top: 10px; margin-bottom: 10px; font-size: 24px; }
.plan .plan-desc { font-size: 14.5px; margin-bottom: 24px; }
.plan .price { font-family: var(--mono); font-size: 42px; font-weight: 700; color: var(--text); line-height: 1; }
.plan .price small { font-family: var(--sans); font-size: 15px; font-weight: 500; color: var(--text-dim); }
.plan .price-old { font-family: var(--mono); font-size: 13px; color: var(--text-faint); margin-top: 6px; }
.plan .plan-meta { font-size: 13px; color: var(--text-faint); margin: 18px 0; padding: 16px 0; border-top: 1px solid var(--border-strong); border-bottom: 1px solid var(--border-strong); }
.plan .plan-meta div { margin-bottom: 4px; }
.plan ul { list-style: none; margin-top: 8px; }
.plan li { display: flex; gap: 12px; padding: 14px 0; border-top: 1px solid var(--border); font-size: 14.5px; }
.plan li:first-child { border-top: none; }
.plan li .check { color: var(--gold); font-weight: 700; flex-shrink: 0; }
.plan.premium li .check { color: var(--orange); }
.plan li .li-body strong { display: block; color: var(--text); font-size: 14.5px; font-weight: 600; margin-bottom: 2px; }
.plan li .li-body span { color: var(--text-dim); font-size: 13.5px; }
.plan-note {
  margin-top: 24px; padding: 16px 18px; border-radius: 12px; background: #fff;
  border: 1px solid var(--border-strong); font-size: 13px; color: var(--text-dim);
}
.plan-note strong { color: var(--text); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.step .step-num { font-family: var(--mono); font-size: 13px; color: var(--gold); font-weight: 600; margin-bottom: 14px; }
.step h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14.5px; }

/* FAQ */
.faq-list { margin-top: 32px; max-width: 760px; }
details.faq-item { border-top: 1px solid var(--border); padding: 20px 0; }
details.faq-item:last-child { border-bottom: 1px solid var(--border); }
details.faq-item summary {
  cursor: pointer; list-style: none; font-family: var(--display); font-weight: 600;
  font-size: 17px; color: var(--text); display: flex; justify-content: space-between; gap: 16px;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after { content: '+'; color: var(--gold); font-size: 22px; flex-shrink: 0; }
details.faq-item[open] summary::after { content: '\2212'; }
details.faq-item p { margin-top: 14px; font-size: 15px; }

/* Final CTA */
.cta-final { text-align: center; }
.cta-final .wrap { max-width: 640px; }
.cta-final h2 { font-size: 38px; }
.cta-final p.lede { margin: 0 auto 32px; }
.cta-final .hero-actions { justify-content: center; }

/* Footer */
footer.site { padding: 48px 0; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-brand { font-family: var(--display); font-weight: 600; font-size: 15px; }
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a { text-decoration: none; color: var(--text-faint); font-size: 13.5px; }
.footer-links a:hover { color: var(--text); }
footer.site .footer-meta { font-size: 13px; color: var(--text-faint); margin-top: 20px; }

/* Legal pages */
.legal main { padding: 72px 0 100px; }
.legal h1 { font-size: 38px; margin-bottom: 8px; }
.legal .updated { font-family: var(--mono); font-size: 12.5px; color: var(--text-faint); margin-bottom: 40px; display: block; }
.legal h2 { font-size: 20px; margin-top: 36px; margin-bottom: 10px; }
.legal p, .legal li { max-width: 720px; color: var(--text-dim); font-size: 15.5px; margin-bottom: 10px; }
.legal ul { padding-left: 20px; margin-bottom: 10px; }
.legal .todo { background: var(--orange-dim); border: 1px solid rgba(232,103,44,0.3); border-radius: 12px; padding: 16px 18px; margin: 24px 0; font-size: 14px; color: var(--text); }
.legal .todo strong { color: var(--orange); }
.back-link { display: inline-block; margin-bottom: 24px; font-size: 14px; color: var(--text-dim); text-decoration: none; }
.back-link:hover { color: var(--text); }

@media (max-width: 900px) {
  .nav-links-desktop { display: none; }
  h1 { font-size: 38px; }
  h2 { font-size: 27px; }
  .hero-grid, .about-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 40px; }
  .hero-portrait { order: -1; max-width: 340px; margin: 0 auto; }
  .feature-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .transform-row { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .transform-row .img-slot.img-missing::before { font-size: 9px; padding: 8px; letter-spacing: 0.02em; }
  section { padding: 64px 0; }
  .cta-final h2 { font-size: 28px; }
}
