/* ============================================================
   EKT MEDIEN — Landingpage Styles
   Baut ausschließlich auf brand-tokens.css auf (Farben/Fonts).
   Layout, Komponenten, Spacing (8px-Raster) leben hier.
   ============================================================ */

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

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

body {
  margin: 0;
  background: var(--indigo-900);
  background-image: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text-body);
  font-family: "Archivo", "Helvetica Neue", Arial, sans-serif;
  font-weight: 440;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Breaks up visible gradient banding on the dark radial background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: .09;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 180px 180px;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; text-wrap: balance; }
p { margin: 0; }
::selection { background: var(--gold); color: #241706; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.wrap { max-width: 1180px; margin: 0 auto; padding-inline: clamp(20px, 4vw, 56px); }
section { position: relative; }

/* ===== Typo hierarchy (extends tokens with sizing) ===== */
.kicker { display: inline-flex; align-items: center; gap: 10px; font-size: 12.5px; letter-spacing: .22em; }
.kicker::before { content: ""; width: 16px; height: 2px; background: var(--gold); border-radius: 2px; flex: none; }

h1.headline { font-size: clamp(38px, 5.6vw, 66px); line-height: 1.04; margin-top: 18px; }
h2.headline { font-size: clamp(28px, 3.6vw, 44px); line-height: 1.12; margin-top: 16px; }
h3.headline { font-size: 21px; line-height: 1.25; }
h4.headline { font-size: 16.5px; line-height: 1.3; }

p.body { font-size: 16.5px; max-width: 56ch; }
.section-head p.body { margin-top: 16px; }
.lead.body { font-size: 17.5px; max-width: 50ch; margin-top: 22px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: "Archivo", sans-serif; font-weight: 700; font-size: 15px;
  padding: 16px 30px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: #241706; box-shadow: 0 12px 28px -12px rgba(231,172,85,.55); }
.btn-gold:hover { background: #eec27a; }
.btn-gold.is-pulse { animation: btnPulse 2.6s ease-in-out infinite; }
.btn-gold.is-pulse:hover { animation: none; }
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 12px 28px -12px rgba(231,172,85,.55), 0 0 0 0 rgba(231,172,85,.4); }
  50% { box-shadow: 0 12px 28px -12px rgba(231,172,85,.55), 0 0 0 10px rgba(231,172,85,0); }
}
.btn-ghost { background: transparent; color: var(--text-hi); border-color: var(--indigo-line); }
.btn-ghost:hover { border-color: var(--steel-blue); background: rgba(238,241,251,.06); }
.btn-block { width: 100%; }
@media (prefers-reduced-motion: reduce) { .btn-gold.is-pulse { animation: none; } }

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(16, 16, 38, .78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--indigo-line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; padding-block: 16px; }
.brand { display: flex; align-items: baseline; gap: 9px; text-decoration: none; }
.brand .dot { align-self: center; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.brand .name { font-family: "Archivo", sans-serif; font-weight: 900; font-size: 19px; color: var(--text-hi); letter-spacing: .01em; }
.brand .sub { font-family: "Archivo", sans-serif; font-weight: 700; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--steel-blue); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 14.5px; font-weight: 600; text-decoration: none; color: var(--text-body); transition: color .15s ease; }
.nav-links a:hover { color: var(--text-hi); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-social { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--indigo-line);
  color: var(--text-hi); transition: border-color .15s ease, color .15s ease, background-color .15s ease;
}
.icon-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(231,172,85,.08); }
.icon-btn svg { width: 18px; height: 18px; fill: currentColor; }
.nav-toggle { display: none; }
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--indigo-line);
    background: transparent; color: var(--text-hi); font-size: 18px; cursor: pointer;
  }
}

/* ===== Section shell / rhythm ===== */
.section { padding-block: clamp(64px, 9vw, 112px); }
.band-800 { background: var(--indigo-800); }
.band-700 { background: var(--indigo-700); border-block: 1px solid var(--indigo-line); }
.section-head { max-width: 640px; }
.section-head.wide { max-width: 720px; }

/* ===== Hero ===== */
.hero {
  padding-block: clamp(110px, 15vw, 150px) clamp(70px, 9vw, 110px);
  position: relative;
  background:
    radial-gradient(65% 55% at 84% -10%, rgba(242, 198, 122, .18) 0%, rgba(242, 198, 122, 0) 60%),
    radial-gradient(95% 80% at 16% -18%, var(--indigo-500) 0%, var(--indigo-600) 26%, var(--indigo-700) 48%, var(--indigo-800) 68%, var(--indigo-900) 88%);
}
.hero-content { max-width: 640px; }
.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 36px; }
.hero-cta .hint { font-size: 13px; color: var(--steel-blue); }
.stat-row { display: flex; gap: clamp(20px, 4vw, 44px); margin-top: 48px; flex-wrap: wrap; }
.stat b { display: block; font-family: "Archivo", sans-serif; font-weight: 800; font-size: 26px; color: var(--text-hi); font-variant-numeric: tabular-nums; }
.stat span { font-size: 12.5px; color: var(--steel-blue); }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ===== Placeholder media (split-tone look) ===== */
.media-ph {
  position: relative; overflow: hidden; border-radius: 20px;
  border: 1px solid var(--indigo-line);
  background: linear-gradient(150deg, var(--grade-shadow) 0%, var(--grade-mid) 55%, var(--grade-high) 130%);
  box-shadow: 0 24px 60px -24px rgba(0,0,0,.6);
}
.media-ph::before { content: ""; position: absolute; inset: 0; background: rgba(16,16,38,.42); }
.media-ph .ph-label {
  position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px; text-align: center; padding: 20px;
}
.media-ph .ph-label .play {
  width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid rgba(238,241,251,.55);
  display: flex; align-items: center; justify-content: center; color: var(--text-hi);
}
.media-ph .ph-label strong { font-family: "Archivo", sans-serif; font-weight: 800; font-size: 13.5px; letter-spacing: .04em; text-transform: uppercase; color: var(--text-hi); }
.media-ph .ph-label span { font-size: 12px; color: rgba(238,241,251,.75); max-width: 24ch; }

/* ===== Logo strip ===== */
.clients { border-top: 1px solid var(--indigo-line); border-bottom: 1px solid var(--indigo-line); }
.clients .wrap { padding-block: 34px; }
.clients .kicker { display: flex; margin-bottom: 26px; }
.logo-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 32px; align-items: center; justify-items: center; }
@media (max-width: 860px) { .logo-row { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
@media (max-width: 520px) { .logo-row { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
.logo-item {
  width: auto; height: auto; max-width: 130px; max-height: 26px; object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: .5; transition: opacity .2s ease;
}
.logo-item--tall { max-height: 46px; }
.logo-item:hover { opacity: .9; }

/* ===== Problem ===== */
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); margin-top: 44px; align-items: start; }
@media (max-width: 860px) { .problem-grid { grid-template-columns: 1fr; } }
.problem-copy .bridge { margin-top: 22px; font-weight: 700; color: var(--text-hi); font-size: 17px; padding-left: 16px; border-left: 2px solid var(--gold); }
.pain-list { display: flex; flex-direction: column; gap: 2px; }
.pain-list li { display: flex; align-items: flex-start; gap: 14px; padding: 16px 4px; border-bottom: 1px solid var(--indigo-line); font-size: 15.5px; }
.pain-list li:first-child { border-top: 1px solid var(--indigo-line); }
.pain-list .x {
  flex: none; width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid var(--indigo-line);
  display: flex; align-items: center; justify-content: center; margin-top: 2px; color: var(--steel-blue); font-size: 12px; font-weight: 800;
}

/* ===== Solution / model ===== */
.model-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 48px; background: var(--indigo-line); border: 1px solid var(--indigo-line); border-radius: 22px; overflow: hidden; }
@media (max-width: 860px) { .model-grid { grid-template-columns: 1fr; } }
.model-item { background: var(--indigo-800); padding: clamp(26px, 3vw, 36px); }
.model-item .num { font-family: "Archivo", sans-serif; font-weight: 900; font-size: 14px; color: var(--gold); letter-spacing: .04em; }
.model-item h3 { margin-top: 14px; }
.model-item p { margin-top: 10px; font-size: 15px; }

.proof-banner {
  margin-top: 46px; display: flex; align-items: center; justify-content: center; gap: clamp(16px,4vw,28px);
  flex-wrap: wrap; text-align: center; padding: clamp(28px,4vw,40px); border-radius: 22px;
  border: 1px solid var(--indigo-line); background: var(--indigo-800);
}
.proof-banner .chunk { font-family: "Archivo", sans-serif; font-weight: 900; font-size: clamp(20px,3vw,28px); color: var(--text-hi); }
.proof-banner .chunk.accent { color: var(--gold); }
.proof-banner .arrow { color: var(--steel-blue); font-size: 22px; }
.proof-note { margin-top: 18px; text-align: center; color: var(--steel-blue); font-size: 13.5px; max-width: 52ch; margin-inline: auto; }

/* ===== Formats grid ===== */
.formats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 46px; }
@media (max-width: 760px) { .formats-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }
.format-card .media-ph { aspect-ratio: 16 / 9; }
.format-card .media-ph.format-video::before { display: none; }
.format-card .media-ph video { width: 100%; height: 100%; object-fit: cover; display: block; }
.format-card h4 { margin-top: 16px; }
.format-card p { margin-top: 6px; font-size: 14px; }

/* ===== Reel carousel (auto-rotating) ===== */
.carousel-wrap { margin-top: 44px; }
.carousel {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, black 6%, black 94%, transparent 100%);
}
.carousel-track {
  display: flex; gap: 18px; width: max-content; padding-block: 4px;
  animation: reel-marquee 46s linear infinite;
}
.carousel:hover .carousel-track { animation-play-state: paused; }
@keyframes reel-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) { .carousel-track { animation: none; } }
.reel-ph { flex: 0 0 auto; width: clamp(168px, 20vw, 220px); aspect-ratio: 9 / 16; }

.reel-video {
  position: relative; overflow: hidden; border-radius: 20px;
  border: 1px solid var(--indigo-line);
  background: linear-gradient(150deg, var(--grade-shadow) 0%, var(--grade-mid) 55%, var(--grade-high) 130%);
  box-shadow: 0 24px 60px -24px rgba(0,0,0,.6);
}
.reel-video video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===== Process steps ===== */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 48px; background: var(--indigo-line); border: 1px solid var(--indigo-line); border-radius: 22px; overflow: hidden; }
@media (max-width: 940px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr; } }
.step-item { background: var(--indigo-900); padding: clamp(24px, 3vw, 32px); }
.step-item .num { font-family: "Archivo", sans-serif; font-weight: 900; font-size: 14px; color: var(--gold); }
.step-item h3 { margin-top: 14px; font-size: 18px; }
.step-item p { margin-top: 10px; font-size: 14.5px; }

/* ===== Social proof ===== */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 46px; }
@media (max-width: 760px) { .testi-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }
.testi-card { background: var(--indigo-800); border: 1px solid var(--indigo-line); border-radius: 18px; padding: 26px; display: flex; flex-direction: column; gap: 16px; }
.testi-card .stars { color: var(--gold); font-size: 14px; letter-spacing: .12em; }
.testi-card p.quote { font-size: 15px; color: var(--text-hi); }
.testi-card .who { font-size: 13px; color: var(--steel-blue); }

/* ===== Plans ===== */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; align-items: stretch; }
@media (max-width: 980px) { .plans { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }
.plan { background: var(--indigo-800); border: 1px solid var(--indigo-line); border-radius: 24px; padding: clamp(28px, 3vw, 34px); display: flex; flex-direction: column; }
.plan-feat { font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--steel-blue); }
.plan h3 { margin-top: 10px; font-size: 22px; }
.plan .sub { color: var(--text-body); font-size: 14.5px; margin-top: 6px; }
.plan ul { margin-top: 24px; display: flex; flex-direction: column; gap: 13px; flex: 1; }
.plan li { display: flex; gap: 10px; font-size: 14.5px; line-height: 1.5; }
.plan li::before { content: "✓"; flex: none; color: var(--steel-blue); font-weight: 800; }
.plan .btn { margin-top: 26px; }
.plan.is-core {
  background: var(--indigo-900);
  border-color: var(--gold);
  box-shadow: 0 24px 60px -24px rgba(231,172,85,.35);
  transform: translateY(-10px);
  position: relative;
}
.plan.is-core li::before { color: var(--gold); }
@media (max-width: 980px) { .plan.is-core { transform: none; } }
.badge { position: absolute; top: -13px; right: 26px; background: var(--gold); color: #241706; font-size: 11.5px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: 7px 15px; border-radius: 999px; }
.plans-note { margin-top: 44px; text-align: center; color: var(--steel-blue); font-size: 13.5px; }

/* ===== About ===== */
.about-grid { position: relative; display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(28px, 5vw, 64px); align-items: center; margin-top: 44px; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
.about-media { position: relative; z-index: 1; }
.about-media .media-ph { aspect-ratio: 9 / 16; max-width: 340px; margin-inline: auto; }
.about-media .media-ph.is-video::before { display: none; }
.about-media .media-ph video { width: 100%; height: 100%; object-fit: cover; display: block; }

.about-copy { position: relative; z-index: 1; }

.about-photo {
  position: absolute;
  top: 50%;
  width: 36%;
  aspect-ratio: 3 / 4;
  border-radius: 32px;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
  opacity: .55;
  -webkit-mask-image: radial-gradient(ellipse 62% 62% at 50% 50%, black 48%, transparent 100%);
  mask-image: radial-gradient(ellipse 62% 62% at 50% 50%, black 48%, transparent 100%);
  filter: drop-shadow(0 24px 44px rgba(0,0,0,.55));
}
.about-photo--rig { left: -26%; transform: translateY(-50%) rotate(-5deg); }
.about-photo--portrait { left: 57%; width: 40%; transform: translate(-50%, -50%) rotate(2deg); }
.about-photo--location { right: -16%; transform: translateY(-50%) rotate(5deg); }
@media (max-width: 900px) { .about-photo { display: none; } }
.about-copy p + p { margin-top: 16px; }

/* ===== FAQ ===== */
.faq-list { margin-top: 44px; border-top: 1px solid var(--indigo-line); max-width: 780px; }
details { border-bottom: 1px solid var(--indigo-line); padding-block: 20px; }
summary { cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-weight: 700; font-size: 16.5px; color: var(--text-hi); }
summary::-webkit-details-marker { display: none; }
summary .plus { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--indigo-line); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--steel-blue); transition: transform .25s ease; }
details[open] summary .plus { transform: rotate(45deg); border-color: var(--gold); color: var(--gold); }
details p { margin-top: 14px; font-size: 15px; max-width: 62ch; }

/* ===== Mid CTA strip ===== */
.mid-cta .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-block: 30px; }
.mid-cta p.headline { font-size: 19px; }
.mid-cta p.body { margin-top: 4px; font-size: 14.5px; }

/* ===== Final CTA ===== */
.final .wrap { display: flex; flex-direction: column; align-items: flex-start; gap: 26px; padding-block: clamp(72px, 10vw, 120px); }
.final h2.headline { max-width: 15ch; }
.final-cta-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ===== Footer ===== */
footer { border-top: 1px solid var(--indigo-line); }
footer .wrap { padding-block: 36px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
footer .fine { color: var(--steel-blue); font-size: 13px; }
footer nav { display: flex; gap: 22px; }
footer nav a { font-size: 13.5px; color: var(--text-body); text-decoration: none; font-weight: 600; }
footer nav a:hover { color: var(--text-hi); }

/* ===== Legal pages (Impressum/Datenschutz) ===== */
.legal { padding-block: clamp(140px, 16vw, 180px) 100px; }
.legal .wrap { max-width: 780px; }
.legal h1.headline { font-size: clamp(30px, 4vw, 42px); }
.legal h2 { font-family: "Archivo", sans-serif; font-weight: 800; font-size: 20px; color: var(--text-hi); margin-top: 44px; margin-bottom: 14px; }
.legal h2:first-of-type { margin-top: 40px; }
.legal p { color: var(--text-body); font-size: 15.5px; line-height: 1.65; margin: 10px 0; max-width: 68ch; }
.legal ul { margin: 10px 0; padding-left: 20px; color: var(--text-body); font-size: 15.5px; line-height: 1.65; }
.legal li { margin: 4px 0; }
.legal a.inline { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.legal .back { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--text-body); text-decoration: none; margin-bottom: 24px; }
.legal .back:hover { color: var(--text-hi); }

/* ===== Mobile nav drawer ===== */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 60; background: rgba(10,10,27,.92); backdrop-filter: blur(6px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.mobile-drawer.is-open { opacity: 1; pointer-events: auto; }
.mobile-drawer a { font-family: "Archivo", sans-serif; font-weight: 800; font-size: 22px; color: var(--text-hi); text-decoration: none; }
.mobile-drawer .btn { white-space: normal; text-align: center; max-width: 82vw; }
.mobile-drawer .nav-social { gap: 16px; }
.mobile-drawer .icon-btn { width: 46px; height: 46px; }
.mobile-drawer .icon-btn svg { width: 22px; height: 22px; }
.mobile-drawer .close { position: absolute; top: 22px; right: 22px; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--indigo-line); background: transparent; color: var(--text-hi); font-size: 18px; cursor: pointer; }
