/* Tactics by Bendert – Startseite */

@font-face {
  font-family: 'Barlow';
  src: url('../assets/fonts/barlow-400.woff2') format('woff2');
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../assets/fonts/barlow-600.woff2') format('woff2');
  font-weight: 600; font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('../assets/fonts/barlow-condensed-700.woff2') format('woff2');
  font-weight: 700; font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('../assets/fonts/barlow-condensed-800.woff2') format('woff2');
  font-weight: 800; font-display: swap;
}
@font-face {
  font-family: 'Barlow Semi Condensed';
  src: url('../assets/fonts/barlow-semicondensed-600.woff2') format('woff2');
  font-weight: 600; font-display: swap;
}

:root {
  --ink: #10151b;
  --panel: #171e26;
  --panel-2: #1e2731;
  --chalk: #eef2ec;
  --dim: #8a94a0;
  --turf: #3f9a5c;
  --flood: #f5b73c;
  --line: #29333d;
  --sans: 'Barlow', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --cond: 'Barlow Condensed', 'Barlow', sans-serif;
  --label: 'Barlow Semi Condensed', 'Barlow', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--chalk);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.wrap { width: min(1180px, 92vw); margin: 0 auto; }

.eyebrow {
  font-family: var(--label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--flood);
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 0;
  border-top: 2px solid var(--flood);
}
.eyebrow.center { justify-content: center; }

/* ------------------------------ Nav --------------------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(16, 21, 27, 0.82);
  border-bottom: 1px solid var(--line);
}
.nav-in {
  width: min(1180px, 92vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}
.brandmark { display: flex; align-items: center; }
.brandmark img { height: 34px; width: auto; display: block; }

.btn-cta {
  font-family: var(--label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.9rem;
  background: var(--flood);
  color: #241a05;
  border: 0;
  border-radius: 4px;
  padding: 11px 20px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245, 183, 60, 0.28); }
.btn-cta.ghost {
  background: transparent;
  color: var(--chalk);
  box-shadow: inset 0 0 0 1px var(--line);
}
.btn-cta.ghost:hover { box-shadow: inset 0 0 0 1px var(--flood); }

/* ------------------------------ Hero ------------------------- */

.hero {
  padding: clamp(36px, 6vw, 72px) 0 clamp(40px, 7vw, 84px);
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.hero h1 {
  font-family: var(--cond);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2.9rem, 7.6vw, 6rem);
  line-height: 1;
  letter-spacing: 0.004em;
  margin: 16px 0 0;
}
.hero h1 .run { display: block; color: var(--flood); margin-top: 0.06em; }
.hero .lead {
  margin: 22px 0 0;
  max-width: 30ch;
  color: #cdd4d9;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}
.hero-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.hero-actions .note { color: var(--dim); font-size: 0.95rem; }
.hero-actions .note a { color: var(--chalk); text-decoration-color: var(--flood); text-underline-offset: 3px; }

/* live pitch */
.pitchbox {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  background:
    radial-gradient(120% 120% at 70% 0%, rgba(63, 154, 92, 0.12), transparent 60%),
    var(--panel);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}
.pitchbox .cap {
  font-family: var(--label);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  color: var(--dim);
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.pitchbox .cap .live { color: var(--flood); }
.pitchbox svg { width: 100%; height: auto; border-radius: 6px; }

/* -------------------------- Play animation ------------------- */

.play .disc { transform: translate(var(--x), var(--y)); }
.play .p1 { --x: 50px; --y: 150px; }
.play .p2 { --x: 250px; --y: 148px; animation: p2 8s ease-in-out infinite; }
.play .p3 { --x: 150px; --y: 78px; animation: p3 8s ease-in-out infinite; }
.play .ball { animation: ball 8s cubic-bezier(0.5, 0, 0.5, 1) infinite; }
.play .arrow { stroke-dasharray: 1; stroke-dashoffset: 1; }
.play .a1 { animation: draw1 8s ease-in-out infinite; }
.play .a2 { animation: draw2 8s ease-in-out infinite; }
.play .a3 { animation: draw3 8s ease-in-out infinite; }

@keyframes ball {
  0%, 9%   { transform: translate(56px, 150px); }
  22%, 30% { transform: translate(246px, 148px); }
  44%, 52% { transform: translate(160px, 48px); }
  74%, 92% { transform: translate(160px, 18px); }
  100%     { transform: translate(56px, 150px); }
}
@keyframes p2 {
  0%, 24%   { transform: translate(250px, 148px); }
  32%, 100% { transform: translate(236px, 126px); }
}
@keyframes p3 {
  0%, 30%  { transform: translate(150px, 78px); }
  52%, 88% { transform: translate(160px, 46px); }
  100%     { transform: translate(150px, 78px); }
}
@keyframes draw1 {
  0%, 4%    { stroke-dashoffset: 1; opacity: 0; }
  6%        { opacity: 1; }
  20%, 88%  { stroke-dashoffset: 0; opacity: 1; }
  96%, 100% { stroke-dashoffset: 0; opacity: 0; }
}
@keyframes draw2 {
  0%, 26%   { stroke-dashoffset: 1; opacity: 0; }
  28%       { opacity: 1; }
  42%, 88%  { stroke-dashoffset: 0; opacity: 1; }
  96%, 100% { stroke-dashoffset: 0; opacity: 0; }
}
@keyframes draw3 {
  0%, 48%   { stroke-dashoffset: 1; opacity: 0; }
  50%       { opacity: 1; }
  64%, 88%  { stroke-dashoffset: 0; opacity: 1; }
  96%, 100% { stroke-dashoffset: 0; opacity: 0; }
}

/* ---------------------------- Sections ----------------------- */

.band {
  padding: clamp(50px, 8vw, 96px) 0;
  border-top: 1px solid var(--line);
}
.band-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
.band.flip .band-grid { direction: rtl; }
.band.flip .band-grid > * { direction: ltr; }

.band h2 {
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1;
  letter-spacing: 0.01em;
  margin: 14px 0 0;
}
.band p.sub {
  color: #c6cdd2;
  margin: 16px 0 22px;
  max-width: 40ch;
}
.feats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.feats li {
  padding-left: 26px;
  position: relative;
  color: #d7dce0;
}
.feats li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 13px; height: 8px;
  border-left: 2px solid var(--flood);
  border-bottom: 2px solid var(--flood);
  transform: rotate(-45deg);
}
.shot {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.4);
}
.shot img { width: 100%; }

/* --------------------------- Spec sheet ---------------------- */

.spec {
  padding: clamp(50px, 8vw, 96px) 0;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(63, 154, 92, 0.05), transparent 40%),
    var(--ink);
}
.spec h2 {
  font-family: var(--cond);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 12px 0 30px;
  line-height: 1;
}
.spec-cols {
  columns: 2;
  column-gap: 48px;
}
.spec-group { break-inside: avoid; margin-bottom: 26px; }
.spec-group h3 {
  font-family: var(--label);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.76rem;
  color: var(--flood);
  margin: 0 0 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
}
.spec-group ul { list-style: none; margin: 0; padding: 0; }
.spec-group li {
  padding: 3px 0 3px 22px;
  position: relative;
  color: #d7dce0;
  font-size: 0.98rem;
}
.spec-group li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--turf);
  font-size: 0.85rem;
}

/* ---------------------------- Closing ----------------------- */

.closing {
  padding: clamp(56px, 9vw, 110px) 0;
  border-top: 1px solid var(--line);
  text-align: center;
}
.closing h2 {
  font-family: var(--cond);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.95;
  margin: 14px 0 10px;
}
.closing p { color: var(--dim); margin: 0 0 26px; }

.footer {
  border-top: 1px solid var(--line);
  padding: 30px 0 40px;
  color: var(--dim);
  font-size: 0.9rem;
}
.footer-in {
  width: min(1180px, 92vw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer .fb {
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--chalk);
}

/* --------------------------- Responsive --------------------- */

@media (max-width: 880px) {
  .hero-grid,
  .band-grid { grid-template-columns: 1fr; }
  .band.flip .band-grid { direction: ltr; }
  .hero .lead { max-width: none; }
  .spec-cols { columns: 1; }
  .pitchbox { order: -1; }
}

@media (max-width: 460px) {
  .brandmark img { height: 26px; }
  .btn-cta { padding: 9px 14px; font-size: 0.82rem; }
  .nav-in { height: 56px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .play .p2, .play .p3, .play .ball,
  .play .a1, .play .a2, .play .a3 { animation: none; }
  .play .ball { transform: translate(160px, 48px); }
  .play .p3 { --x: 160px; --y: 46px; }
  .play .p2 { --x: 236px; --y: 126px; }
  .play .arrow { stroke-dashoffset: 0; opacity: 1; }
  .btn-cta { transition: none; }
}
