/* MOREBUSTERS — Landing (morebusters.dev)
   Dark, edel, schnell. Baut auf den MORE-Hoaxbuster Design-Tokens auf,
   invertiert auf eine Ink-950 Canvas. Magenta bleibt das Signal, Neutrals
   tragen die Fläche. Archivo Black Italic = Marke, Hanken Grotesk = Text,
   JetBrains Mono = Daten. */

:root {
  /* ---- MORE Magenta -------------------------------------------------- */
  --magenta-50:  #fff0f6;
  --magenta-200: #ffb8d5;
  --magenta-300: #ff7db2;
  --magenta-400: #fb3d8f;
  --magenta-500: #f50579;   /* brand primary */
  --magenta-600: #d40068;
  --magenta-700: #ab0053;

  /* ---- Ink / neutrals ------------------------------------------------ */
  --ink-950: #0d0e11;
  --ink-900: #16181d;
  --ink-800: #1f2229;
  --ink-700: #2c313b;
  --ink-600: #444b57;
  --ink-500: #5f6673;
  --ink-400: #858c99;
  --ink-300: #aeb4be;
  --ink-200: #d5d9e0;
  --ink-100: #eef0f3;
  --white:   #ffffff;

  /* ---- Support hues (verdict vocabulary, used as sparse accents) ----- */
  --green-500: #01b973;
  --blue-500:  #0287ff;
  --amber-500: #ffb803;
  --red-500:   #ef2f3c;

  /* ---- Fonts --------------------------------------------------------- */
  --font-display: 'Archivo', system-ui, sans-serif;
  --font-sans:    'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  /* ---- Radius -------------------------------------------------------- */
  --radius-xs:  4px;
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  14px;
  --radius-xl:  20px;
  --radius-pill: 999px;

  /* ---- Dark semantic surfaces --------------------------------------- */
  --bg:            var(--ink-950);
  --surface:       var(--ink-900);
  --surface-raised:#1a1d23;
  --border:        var(--ink-700);
  --border-subtle: #23262e;
  --text:          #f4f5f7;
  --text-muted:    var(--ink-300);
  --text-subtle:   var(--ink-500);

  /* ---- Motion -------------------------------------------------------- */
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast:   120ms;
  --dur-base:   200ms;

  --container: 980px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "cv11", "ss01";
  /* subtle magenta wash from the top — edel, nicht laut */
  background-image:
    radial-gradient(120% 60% at 50% -10%, rgba(245, 5, 121, 0.14), transparent 60%),
    radial-gradient(80% 40% at 85% 8%, rgba(245, 5, 121, 0.06), transparent 55%);
  background-repeat: no-repeat;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--magenta-500); color: var(--white); }

:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(245, 5, 121, 0.5);
  border-radius: var(--radius-xs);
}

/* ---- Shared type helpers --------------------------------------------- */
.display {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.0;
  margin: 0;
}

.eyebrow {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--magenta-300);
  margin: 0;
}

.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

/* ---- Layout ---------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
}

section { position: relative; }

.section-head { margin-bottom: 24px; }
.section-head .eyebrow { margin-bottom: 10px; }
.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: clamp(1.5rem, 5vw, 2rem);
  line-height: 1.05;
  margin: 0;
}

/* ---- Top bar --------------------------------------------------------- */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 18px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 30px; height: 30px; }
.brand .brand-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: 1.05rem;
}
.topbar .tag {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 5px 11px;
}

/* ---- Hero ------------------------------------------------------------ */
.hero {
  padding-top: 40px;
  padding-bottom: 56px;
  text-align: center;
}
.hero-ghost {
  width: clamp(150px, 42vw, 232px);
  height: auto;
  margin: 0 auto 26px;
  filter: drop-shadow(0 14px 40px rgba(245, 5, 121, 0.28));
}
.hero-title {
  /* 9.5vw statt 13vw: "MOREBUSTERS" muss auf 390px-Viewports einzeilig passen */
  font-size: clamp(2rem, 9.5vw, 6rem);
  margin-bottom: 20px;
  background: linear-gradient(180deg, #ffffff 30%, #ffd9ea 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(1.05rem, 2.6vw, 1.375rem);
  line-height: 1.4;
  color: var(--text-muted);
  max-width: 33ch;
  margin: 0 auto;
  font-weight: 500;
}
.hero-sub strong { color: var(--text); font-weight: 700; }

/* ---- Buttons --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  padding: 15px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary {
  background: var(--magenta-500);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(245, 5, 121, 0.32);
}
.btn-primary:hover { background: var(--magenta-600); transform: translateY(-1px); }
.btn-primary:active { background: var(--magenta-700); transform: translateY(0.5px); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--ink-500); background: var(--surface-raised); }
.btn.disabled, .btn[aria-disabled="true"] {
  opacity: 0.5; pointer-events: none;
}
.btn.full { width: 100%; }

/* ---- Install / QR block --------------------------------------------- */
.install { padding-bottom: 64px; }
.install-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: grid;
  gap: 28px;
  align-items: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

/* The QR tile is light-on-purpose: a real QR must scan against white. */
.qr-tile {
  --tile: min(240px, 62vw);
  width: var(--tile);
  height: var(--tile);
  margin: 0 auto;
  border-radius: var(--radius-lg);
  background: var(--white);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.qr-tile img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.qr-placeholder {
  position: absolute;
  inset: 12px;
  border: 2px dashed var(--magenta-300);
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 14px;
  color: var(--ink-600);
}
.qr-placeholder .ghost-mark { width: 42px; height: 42px; margin-bottom: 10px; opacity: 0.9; }
.qr-placeholder .ph-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--magenta-600);
  font-weight: 700;
}
.qr-placeholder .ph-note {
  font-size: 0.78rem;
  color: var(--ink-500);
  margin-top: 4px;
  line-height: 1.35;
}

.install-copy { text-align: center; }
.install-copy h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: 1.5rem;
  margin: 0 0 8px;
}
.install-copy p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 0 20px;
  line-height: 1.5;
}
.install-steps {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 10px;
  text-align: left;
  max-width: 320px;
  margin-inline: auto;
}
.install-steps li {
  display: flex;
  gap: 11px;
  align-items: baseline;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.install-steps .n {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--magenta-400);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  padding: 2px 6px;
  flex: none;
  line-height: 1.2;
}

/* ---- Feature cards --------------------------------------------------- */
.features { padding-bottom: 64px; }
.feature-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
}
.feature:hover { border-color: var(--border); transform: translateY(-2px); }
.feature .idx {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--magenta-400);
}
.feature h3 {
  font-size: 1.125rem;
  font-weight: 800;
  margin: 12px 0 8px;
  letter-spacing: -0.01em;
}
.feature p {
  color: var(--text-muted);
  font-size: 0.925rem;
  margin: 0;
  line-height: 1.5;
}
.feature .swatch {
  display: inline-flex;
  gap: 5px;
  margin-top: 16px;
}
.feature .swatch span {
  width: 22px; height: 6px; border-radius: var(--radius-pill);
}

/* ---- Demo access ----------------------------------------------------- */
.demo { padding-bottom: 64px; }
.demo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  max-width: 460px;
  margin-inline: auto;
}
.demo-card .demo-head {
  display: flex; align-items: center; gap: 10px; margin-bottom: 6px;
}
.demo-card .demo-head .dot {
  width: 8px; height: 8px; border-radius: var(--radius-pill);
  background: var(--green-500);
  box-shadow: 0 0 0 4px rgba(1, 185, 115, 0.16);
}
.demo-card h3 {
  font-size: 1.05rem; font-weight: 800; margin: 0; letter-spacing: -0.01em;
}
.demo-card .demo-note {
  color: var(--text-subtle); font-size: 0.85rem; margin: 0 0 18px;
}
.field { display: grid; gap: 6px; margin-bottom: 12px; }
.field label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
}
.field .value {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--ink-950);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  letter-spacing: 0.02em;
  user-select: all;
}
.field .value.placeholder { color: var(--text-subtle); letter-spacing: 0.18em; }

/* ---- Video ----------------------------------------------------------- */
.video { padding-bottom: 72px; text-align: center; }
.video-frame {
  position: relative;
  width: min(280px, 74vw);
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(245, 5, 121, 0.12), transparent 60%),
    var(--ink-900);
  overflow: hidden;
  display: grid;
  place-items: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}
.video-frame video, .video-frame img { width: 100%; height: 100%; object-fit: cover; }
.video-placeholder {
  display: grid; place-items: center; text-align: center; gap: 16px; padding: 20px;
}
.play-btn {
  width: 66px; height: 66px; border-radius: var(--radius-pill);
  background: var(--magenta-500);
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(245, 5, 121, 0.4);
}
.play-btn svg { width: 26px; height: 26px; margin-left: 3px; }
.video-placeholder .ph-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-subtle);
  line-height: 1.4;
}

/* ---- Footer ---------------------------------------------------------- */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding-block: 34px 44px;
  text-align: center;
}
.footer .foot-ghost { width: 34px; height: 34px; margin: 0 auto 14px; opacity: 0.9; }
.footer p { margin: 0; color: var(--text-subtle); font-size: 0.85rem; line-height: 1.5; }
.footer p strong { color: var(--text-muted); font-weight: 600; }
.footer .dot-sep { color: var(--ink-600); padding-inline: 6px; }

/* ---- Responsive: desktop uplift -------------------------------------- */
@media (min-width: 720px) {
  .install-card {
    grid-template-columns: minmax(0, 260px) 1fr;
    padding: 40px;
    gap: 44px;
  }
  .install-copy { text-align: left; }
  .install-steps { margin-inline: 0; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .hero { padding-top: 56px; padding-bottom: 72px; }
}

@media (min-width: 720px) {
  .install-copy .btn.full { width: auto; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
