/* styles.css (M02 – AUFMERKSAMKEITSDESIGN · Farbschema nach Referenzbild)
   Look: Sunset-Gradient (Amber→Fuchsia→Blue) + Teal Akzent
   Replace: komplette Datei 1:1
*/
:root{
  /* =========================
     M02 – AUFMERKSAMKEITSDESIGN
     Referenz-Look (Sunset Pop)
     ========================= */

  /* Core (heller, weil Referenz sehr „glow“) */
  --bg: #0a0d12;
  --fg: #f7f7fb;
  --muted: rgba(247,247,251,.74);

  /* Palette (aus deinem Set) */
  --teal:    #0F9DA6;   /* Renewal Teal */
  --fuchsia: #D726A3;   /* Electric Fuchsia */
  --blue:    #5A8FF0;   /* Blue Aura */
  --amber:   #E7A04E;   /* Amber Haze */

  /* Rollen */
  --accent:  var(--amber);    /* Headlines / Warmth (dominant) */
  --accent2: var(--blue);     /* CTA / Buttons (wie im Mockup) */
  --hook:    var(--fuchsia);  /* Hook / Chips sparsam */
  --cool:    var(--teal);     /* Sekundär / UI Details */

  /* UI */
  --panel:  rgba(255,255,255,.08);
  --panel2: rgba(255,255,255,.06);
  --stroke: rgba(255,255,255,.14);
  --stroke2:rgba(255,255,255,.10);

  --radius: 18px;
  --shadow: 0 18px 60px rgba(0,0,0,.52);
  --max: 1120px;

  --h1: clamp(2.2rem, 4.6vw, 3.35rem);
  --h2: clamp(1.55rem, 2.4vw, 2.1rem);
  --lead: clamp(1.05rem, 1.25vw, 1.2rem);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--fg);
  line-height: 1.5;

  /* Referenz: warm oben, pink rechts, blau unten */
  background:
    radial-gradient(1100px 820px at 12% 8%, rgba(231,160,78,.85), transparent 58%),
    radial-gradient(980px 760px at 88% 22%, rgba(215,38,163,.70), transparent 60%),
    radial-gradient(980px 820px at 50% 112%, rgba(90,143,240,.78), transparent 62%),
    radial-gradient(900px 700px at 10% 78%, rgba(15,157,166,.26), transparent 58%),
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.38)),
    var(--bg);
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.wrap{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip{
  position:absolute; left:-999px; top:10px;
  background: var(--fg);
  color: #0b0b0b;
  padding:10px 12px;
  border-radius: 12px;
  z-index: 50;
}
.skip:focus{ left: 12px; }

/* TOP */
.top{ padding: 18px 0 26px; }

.brandline{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0 18px;
}

.brandLeft{ display:flex; gap: 12px; align-items:center; }

.mark{
  width: 44px; height: 44px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(231,160,78,.26), rgba(90,143,240,.14));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadow);
  flex: 0 0 auto;
}

.brandtext{ display:flex; flex-direction:column; gap:2px; }
.brand{ font-weight: 900; letter-spacing: .02em; }
.tag{ font-size: .92rem; color: var(--muted); }

.topActions{ display:flex; gap:10px; align-items:center; flex-wrap: wrap; }

.ghost{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  backdrop-filter: blur(10px);
  cursor: pointer;
  user-select: none;
}
.ghost:hover{ filter: brightness(1.06); text-decoration:none; }
.ghostText{ font-weight: 800; font-size: .95rem; }

.dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--cool);
  box-shadow: 0 0 0 7px rgba(15,157,166,.18);
}

/* HERO */
.hero{
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 14px 0 10px;
}

.kicker{
  margin:0 0 8px;
  color: rgba(247,247,251,.78);
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: .80rem;
}

h1{
  margin: 0 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: var(--h1);
  line-height: 1.03;
}

.h1Accent{
  color: var(--hook);
  text-shadow: 0 20px 90px rgba(215,38,163,.22);
}

.lead{
  margin: 0;
  font-size: var(--lead);
  color: rgba(247,247,251,.78);
  max-width: 62ch;
}
.lead strong{ color: var(--fg); font-weight: 900; }

.microProof{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.pill{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  backdrop-filter: blur(10px);
  color: rgba(247,247,251,.82);
  font-weight: 800;
  font-size: .92rem;
}

.ctaRow{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

/* Buttons (Referenz: Blau CTA) */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(90,143,240,.70);
  background: linear-gradient(145deg, rgba(90,143,240,.34), rgba(255,255,255,.06));
  box-shadow: var(--shadow);
  font-weight: 900;
}
.btn:hover{ filter: brightness(1.06); text-decoration:none; }

.btn.secondary{
  border-color: rgba(231,160,78,.65);
  background: linear-gradient(145deg, rgba(231,160,78,.28), rgba(255,255,255,.06));
}

/* TOC */
.toc{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.toc a{
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  backdrop-filter: blur(10px);
  color: rgba(247,247,251,.82);
  font-weight: 900;
  font-size: .92rem;
}
.toc a:hover{ text-decoration:none; filter: brightness(1.06); color: var(--fg); }

/* Sections */
.main{ padding-bottom: 44px; }
.section{ padding: 34px 0; }

/* Glow band like the mockup */
.section.alt{
  background:
    linear-gradient(180deg, transparent, rgba(255,255,255,.06), transparent);
}

.sectionHead{ display:flex; flex-direction:column; gap: 8px; margin-bottom: 14px; }
h2{ margin: 0; font-size: var(--h2); line-height: 1.15; }
h3{ margin: 0 0 8px; font-size: 1.05rem; letter-spacing: .01em; font-weight: 900; }

.big{
  font-size: 1.08rem;
  color: rgba(247,247,251,.78);
  margin: 10px 0 0;
  max-width: 70ch;
}
.muted{ color: rgba(247,247,251,.74); font-weight: 650; }

.grid2{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items:start;
}
.cards3{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

/* Cards (glassy) */
.card{
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  backdrop-filter: blur(12px);
}

.card.earth{
  border-color: rgba(231,160,78,.45);
  background: linear-gradient(145deg, rgba(231,160,78,.16), rgba(255,255,255,.04));
}

.card.soft{
  border-color: rgba(15,157,166,.34);
  background: linear-gradient(145deg, rgba(15,157,166,.14), rgba(255,255,255,.04));
}

.glow{ position: relative; overflow:hidden; }
.glow::before{
  content:"";
  position:absolute;
  inset:-140px -140px auto auto;
  width: 420px; height: 420px;
  background: radial-gradient(circle at 30% 30%, rgba(215,38,163,.24), transparent 64%);
  transform: rotate(16deg);
  pointer-events:none;
}

.divider{ height: 1px; background: rgba(255,255,255,.14); margin: 14px 0; }

.chip{
  display:inline-flex;
  align-items:center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(215,38,163,.42);
  color: rgba(247,247,251,.84);
  width: fit-content;
  background: linear-gradient(145deg, rgba(215,38,163,.18), rgba(255,255,255,.04));
  font-weight: 900;
  font-size: .86rem;
}
.chip.is-hook{
  border-color: rgba(231,160,78,.48);
  background: linear-gradient(145deg, rgba(231,160,78,.18), rgba(255,255,255,.04));
}

.cardText{ margin: 10px 0 0; color: rgba(247,247,251,.78); font-weight: 650; }

.metric{ display:flex; gap: 12px; align-items:flex-start; }
.metricNum{
  font-weight: 950;
  font-size: 1.8rem;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.metricTxt{ color: rgba(247,247,251,.78); font-weight: 650; }

.miniGrid{ display:grid; grid-template-columns: 1fr; gap: 10px; margin-top: 12px; }
.mini{
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  border-radius: 16px;
  padding: 12px;
  backdrop-filter: blur(12px);
}
.mini.earth{
  border-color: rgba(231,160,78,.34);
  background: linear-gradient(145deg, rgba(231,160,78,.12), rgba(255,255,255,.04));
}
.miniTitle{ font-weight: 950; margin-bottom: 6px; }
.miniText{ margin:0; color: rgba(247,247,251,.78); font-weight: 700; }

.bullets{
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(247,247,251,.78);
  font-weight: 650;
}
.bullets li{ margin: 8px 0; }

/* Steps */
.steps{ margin-top: 10px; display:grid; gap: 10px; }
.step{
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  border-radius: 14px;
  padding: 12px;
  backdrop-filter: blur(12px);
}
.stepTitle{ font-weight: 950; margin-bottom: 6px; color: var(--fg); }
.step p{ margin:0; color: rgba(247,247,251,.78); font-weight: 700; }

/* Rows */
.stack{ display:flex; flex-direction:column; gap: 10px; }
.row{
  display:grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  border-radius: 16px;
  padding: 12px;
  backdrop-filter: blur(12px);
}
.num{
  width: 48px; height: 48px;
  border-radius: 16px;
  display:grid; place-items:center;
  border: 1px solid rgba(90,143,240,.55);
  background: linear-gradient(145deg, rgba(90,143,240,.20), rgba(255,255,255,.04));
  font-weight: 950;
  color: var(--fg);
}
.rowBody p{ margin: 6px 0 0; color: rgba(247,247,251,.78); font-weight: 650; }
.rowMeta{ margin-top: 10px; color: rgba(247,247,251,.78); font-weight: 750; font-size: .92rem; }

.badge{
  display:inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(90,143,240,.52);
  background: linear-gradient(145deg, rgba(90,143,240,.18), rgba(255,255,255,.04));
  font-weight: 950;
}

/* Examples / Callouts */
.example{
  margin-top: 10px;
  border: 1px dashed rgba(231,160,78,.55);
  border-radius: 14px;
  padding: 10px;
  background: rgba(255,255,255,.05);
}
.exampleLabel{
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .78rem;
  color: rgba(247,247,251,.78);
  margin-bottom: 6px;
}
.example p{ margin:0; color: var(--fg); font-weight: 850; }

.callout{
  margin-top: 12px;
  border: 1px solid rgba(15,157,166,.34);
  border-radius: 16px;
  padding: 12px;
  background: linear-gradient(145deg, rgba(15,157,166,.14), rgba(255,255,255,.04));
}
.callout.signal{
  border-color: rgba(215,38,163,.36);
  background: linear-gradient(145deg, rgba(215,38,163,.14), rgba(255,255,255,.04));
}
.calloutTitle{ font-weight: 950; margin-bottom: 6px; color: var(--fg); }
.calloutText{ margin: 0 0 8px; color: rgba(247,247,251,.78); font-weight: 650; }
.calloutText:last-child{ margin-bottom:0; }

/* Checklist */
.checkGrid{ display:grid; grid-template-columns: 1fr; gap: 12px; }
.tick{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  padding: 10px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  margin: 8px 0;
  cursor: pointer;
  user-select: none;
  backdrop-filter: blur(12px);
}
.tick input{ margin-top: 3px; accent-color: var(--blue); }
.tick span{ color: rgba(247,247,251,.78); font-weight: 750; }

/* Footer (gleich lassen – reused überall) */
.foot{ padding: 28px 0 10px; }
.footGrid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 14px 0 10px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.footTitle{ font-weight: 950; color: var(--fg); }
.footText{ color: rgba(247,247,251,.78); margin-top: 4px; font-weight: 850; }

.footerBrand{ display:flex; gap: 12px; align-items:center; margin-top: 12px; }
.footerMark{
  width: 44px; height: 44px;
  display:grid; place-items:center;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(145deg, rgba(231,160,78,.18), rgba(90,143,240,.10));
  backdrop-filter: blur(10px);
}
.footerLine{ font-weight: 900; color: var(--fg); }
.footerLinks{
  margin-top: 4px;
  color: rgba(247,247,251,.78);
  font-weight: 800;
  font-size: .95rem;
}
.footerLinks a{ text-decoration: underline; text-underline-offset: 3px; }
.sep{ margin: 0 10px; opacity: .6; }

.tiny{
  color: rgba(247,247,251,.72);
  font-size: .9rem;
  padding: 10px 0 0;
  border-top: 1px solid rgba(255,255,255,.12);
}

/* Layout */
@media (min-width: 860px){
  .hero{ grid-template-columns: 1.05fr .95fr; gap: 18px; align-items:start; }
  .grid2{ grid-template-columns: 1.05fr .95fr; gap: 18px; }
  .cards3{ grid-template-columns: repeat(3, 1fr); }
  .checkGrid{ grid-template-columns: 1fr 1fr; }
  .footGrid{ grid-template-columns: 1fr 1fr 1fr; }
}
