/* FONT EINBINDUNG */

@font-face {
  font-family: 'InterVar';
  src: url('fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: 'InterVar';
  src: url('fonts/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
}

/* ROOT / BASIS */

html {
  scroll-behavior: smooth;
  background: #0f1411;
}

:root {
  --bg: #0f1411;
  --bg-soft: #151d18;
  --card: #1b241e;
  --card-light: #202b24;
  --text: #f2f5f1;
  --muted: #aab5ad;
  --line: rgba(255,255,255,0.12);
  --green: #3fd16b;
  --green-dark: #28a954;
  --red: #d64b4b;
  --shadow: 0 24px 80px rgba(0,0,0,0.35);
  --radius: 22px;
}

/* RESET */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'InterVar', system-ui, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  opacity: 1;
  animation: pageFadeIn 0.25s ease-in-out;
}

body.is-leaving {
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}

a {
  color: inherit;
  text-decoration: none;
}

section {
  scroll-margin-top: 90px;
}

/* LAYOUT */

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(780px, calc(100% - 40px));
}

.center {
  text-align: center;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 20, 17, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #071009;
  font-weight: 900;
  border-radius: 14px;
}

.brand span {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
}

.nav a:hover {
  color: var(--text);
}

.menu-button {
  display: none;
}

/* HERO */

.hero {
  padding: 90px 0 70px;
  background:
    radial-gradient(circle at top left, rgba(63, 209, 107, 0.18), transparent 40%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 14px;
  letter-spacing: 0.06em;
}

h1 {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 820;
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin: 0;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 780;
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin: 0 0 18px;
}

h3 {
  font-weight: 740;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-top: 0;
}

.hero-text {
  color: var(--muted);
  font-size: 20px;
  margin-top: 20px;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 12px;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 760;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--green);
  color: #071009;
}

.btn-primary:hover {
  background: #52e77d;
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.28);
}

.btn.full {
  width: 100%;
}

.btn.large {
  padding: 15px 28px;
  font-size: 17px;
}

/* HERO CARD / EDGE-SAFE PREMIUM GLASS */

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,0.18), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,0.10), rgba(255,255,255,0.025)),
    rgba(20, 36, 28, 0.76);
  border: 1px solid rgba(210,255,220,0.22);
  box-shadow:
    0 32px 90px rgba(0,0,0,0.62),
    0 0 0 1px rgba(63,209,107,0.16),
    0 0 90px rgba(63,209,107,0.24);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 29px;
  pointer-events: none;
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.36) 0%,
      rgba(255,255,255,0.10) 18%,
      transparent 42%
    );
  opacity: 0.75;
  z-index: 3;
}

.hero-card::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: -18px;
  height: 28px;
  border-radius: 999px;
  background: rgba(63,209,107,0.38);
  filter: blur(26px);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.glass-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.08)),
    rgba(8, 14, 11, 0.62);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.05),
    inset 0 20px 45px rgba(255,255,255,0.03),
    0 22px 55px rgba(0,0,0,0.48);
  z-index: 2;
}

.glass-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(
      130deg,
      rgba(255,255,255,0.46) 0%,
      rgba(255,255,255,0.14) 20%,
      rgba(255,255,255,0.02) 42%,
      transparent 58%
    );
}

.glass-wrapper::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 10%;
  right: 10%;
  height: 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.42);
  filter: blur(7px);
  opacity: 0.9;
  z-index: 5;
  pointer-events: none;
}

.hero-image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  transform: scale(1.012);
  filter: contrast(1.05) saturate(1.08);
}

.hero-card .ui-note {
  position: relative;
  z-index: 4;
  margin: 16px 4px 0;
  color: var(--muted);
  font-size: 13px;
}

/* PITCH */

.pitch {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(135deg, #1f6f3a, #14542c);
  background-size: 44px 44px, 44px 44px, auto;
  border: 2px solid rgba(255,255,255,0.7);
  box-shadow: inset 0 0 40px rgba(0,0,0,0.25);
}

/* LINIEN */

.pitch-line {
  position: absolute;
  background: rgba(255,255,255,0.65);
}

.center-line {
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
}

.center-circle {
  position: absolute;
  width: 32%;
  aspect-ratio: 1;
  border: 2px solid rgba(255,255,255,0.65);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.box {
  position: absolute;
  left: 22%;
  width: 56%;
  height: 18%;
  border: 2px solid rgba(255,255,255,0.65);
}

.box-top {
  top: 0;
  border-top: 0;
}

.box-bottom {
  bottom: 0;
  border-bottom: 0;
}

/* SPIELER */

.player {
  position: absolute;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: #f2c94c;
  color: #111;
  border-radius: 50%;
  font-weight: 850;
  box-shadow: 0 8px 20px rgba(0,0,0,0.28);
}

.p1 { left: 45%; bottom: 7%; }
.p2 { left: 23%; bottom: 24%; }
.p3 { left: 45%; bottom: 28%; }
.p4 { right: 23%; bottom: 24%; }
.p5 { left: 34%; bottom: 47%; }
.p6 { right: 34%; bottom: 50%; }
.p7 { left: 47%; top: 18%; background: var(--red); color: #fff; }

/* PFEIL */

.tactic-arrow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--red);
  stroke-width: 5;
  stroke-linecap: round;
}

/* UI HINWEIS */

.ui-note {
  margin: 12px 4px 0;
  color: var(--muted);
  font-size: 13px;
}

/* SHOP HINWEIS */

.shop-notice {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.shop-notice-box {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
}

.shop-notice-box strong {
  display: block;
  color: var(--text);
  margin-bottom: 6px;
}

.shop-notice-box a,
.section a:not(.btn),
.legal-content a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* SECTIONS */

.section {
  padding: 80px 0;
}

.muted {
  background: var(--bg-soft);
}

.intro {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro p,
.download p,
.section p {
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.cards {
  display: grid;
  gap: 20px;
}

.cards.two {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--card);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--line);
}

.card ul,
.price-card ul {
  padding-left: 20px;
  margin: 22px 0 0;
}

/* FEATURES */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature {
  background: var(--card);
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.04);
}

.feature span {
  display: inline-block;
  color: var(--green);
  font-weight: 850;
  margin-bottom: 12px;
}

/* PRICING */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.price-card {
  position: relative;
  background: var(--card);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
}

.price-card ul {
  flex: 1;
}

.price-card.highlighted {
  border: 1px solid var(--green);
  transform: translateY(-6px);
  box-shadow: 0 0 0 1px rgba(63,209,107,0.25), var(--shadow);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--green);
  color: #071009;
  font-weight: 850;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
}

.earlybird-label {
  display: inline-block;
  margin: 12px 0 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price {
  font-size: 40px;
  font-weight: 820;
  letter-spacing: -0.04em;
  margin: 10px 0 4px;
  color: var(--text) !important;
}

.old-price {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
  text-decoration: line-through;
}

.price-text {
  min-height: 48px;
}

.license-note {
  color: var(--muted);
  text-align: center;
  margin: 28px auto 0;
  max-width: 720px;
}

/* REASON LIST / SPLIT */

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
}

.reason-list {
  display: grid;
  gap: 18px;
}

.reason-list div {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
}

.reason-list p {
  margin-bottom: 0;
}

/* DOWNLOAD */

.download {
  background:
    radial-gradient(circle at center, rgba(63, 209, 107, 0.16), transparent 45%),
    var(--bg);
}

.trust-line {
  color: var(--muted);
  font-size: 14px;
}

/* SICHERHEITS-HINWEIS */

.security-teaser {
  margin: 34px auto 0;
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
}

.security-teaser-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(63, 209, 107, 0.14);
  color: var(--green);
  font-weight: 900;
}

.security-teaser-content strong {
  display: block;
  color: var(--text);
  margin-bottom: 6px;
}

.security-teaser-content p {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--muted);
}

.security-teaser-content a {
  font-size: 14px;
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* LEGAL PAGES */

.legal-page {
  min-height: calc(100vh - 155px);
  padding-top: 90px;
  background:
    radial-gradient(circle at top left, rgba(63, 209, 107, 0.12), transparent 34%),
    var(--bg);
}

.legal-page h1 {
  font-size: clamp(38px, 5vw, 64px);
  margin-bottom: 28px;
}

.legal-content {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}

.legal-content h2 {
  font-size: 26px;
  margin-top: 34px;
  margin-bottom: 12px;
}

.legal-content p {
  color: var(--muted);
  font-size: 17px;
}

.legal-content strong {
  color: var(--text);
}

.legal-date {
  margin-top: 34px;
  font-size: 15px !important;
}

/* FOOTER */

.site-footer {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
}

.footer-inner div {
  display: flex;
  gap: 14px;
}

.footer-inner a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-inner a:hover {
  color: var(--text);
}

/* SEITENÜBERGANG */

@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* RESPONSIVE */

@media (max-width: 900px) {

  .menu-button {
    display: block;
    border: 0;
    background: var(--card);
    color: var(--text);
    font-size: 24px;
    padding: 8px 12px;
    border-radius: 12px;
    cursor: pointer;
  }

  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 20px;
    right: 20px;
    background: var(--card);
    padding: 10px;
    border-radius: 12px;
    border: 1px solid var(--line);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 10px;
  }

  .hero-grid,
  .cards.two,
  .feature-grid,
  .pricing-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .price-card.highlighted {
    transform: none;
  }
}

@media (max-width: 600px) {

  .container,
  .narrow {
    width: min(100% - 28px, 1120px);
  }

  .brand span {
    display: none;
  }

  h1 {
    font-size: 36px;
  }

  .hero {
    padding: 58px 0 54px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 62px 0;
  }

  .footer-inner {
    flex-direction: column;
  }

  .security-teaser {
    flex-direction: column;
  }
}

.intro {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

/* grüner Schimmer */

.intro::before {
  content: "";
  position: absolute;
  inset: -20%;

  background: radial-gradient(
    circle at 50% 30%,
    rgba(63,209,107,0.18),
    transparent 55%
  );

  pointer-events: none;
  z-index: 0;
}

/* Content bleibt oben */

.intro .container {
  position: relative;
  z-index: 1;
}