@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=League+Spartan:wght@600;700;800&display=swap');

/* =========================================================

   ========================================================= */

/* =========================================================
   01. INTRO-BASIS
   ========================================================= */

html,
body {
  margin: 0;
  height: 100%;
  background: #000;
  overflow: hidden;
}

#c {
  display: block;
  width: 100%;
  height: 100%;
}

/* =========================================================
   02. PAGE SHELL
   ========================================================= */

.page-root {
  position: fixed;
  top: var(--header-h, 92px);
  right: 0;
  bottom: var(--footer-h, 64px);
  left: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  display: none;
  background: #fff;
}

.page-root::-webkit-scrollbar {
  display: none;
}

.page-inner {
  padding: 56px clamp(24px, 5vw, 80px);
}

.page-title {
  margin: 0 0 10px;
  font-size: 56px;
  letter-spacing: -0.02em;
}

.page-sub {
  margin: 0;
  color: rgba(0, 0, 0, 0.68);
  font-size: 16px;
}

/* =========================================================
   03. STARTSEITE / HOME GRUNDSTRUKTUR
   ========================================================= */

.home {
  color: #0b0f19;
}

.home-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(20px, 4vw, 44px);
  align-items: stretch;
}

.home-copy {
  max-width: 620px;
}

.home-kicker {
  margin: 0 0 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(2, 6, 23, 0.55);
}

.home-title {
  margin: 0 0 10px;
  font-size: clamp(21px, 3.375vw, 38px);
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.home-lead {
  margin: 0;
  font-size: clamp(15px, 2.2vw, 18px);
  line-height: 1.55;
  color: rgba(2, 6, 23, 0.78);
  max-width: 62ch;
}

.home-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.home-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

/* =========================================================
   04. STARTSEITEN-KOMPONENTEN
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: #0b0f19;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.04);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background-color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(2, 6, 23, 0.06);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: 3px solid rgba(27, 79, 255, 0.25);
  outline-offset: 2px;
}

.btn-blue {
  border-color: rgba(27, 79, 255, 0.24);
  background: color-mix(in srgb, var(--c-blue, #1b4fff) 10%, white);
  color: #0b0f19;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.72);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  color: #0b0f19;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.75);
}

.pill-blue {
  box-shadow: inset 0 0 0 999px color-mix(in srgb, var(--c-blue, #1b4fff) 7%, white);
}

.pill-green {
  box-shadow: inset 0 0 0 999px color-mix(in srgb, var(--c-green, #10b981) 9%, white);
}

.sec-head h2 {
  margin: 0 0 4px;
  font-size: clamp(20px, 2.8vw, 26px);
  letter-spacing: -0.02em;
}

.sec-head p {
  margin: 0;
  color: rgba(2, 6, 23, 0.68);
  line-height: 1.5;
  max-width: 80ch;
}

.sec-head--tight p {
  max-width: 62ch;
}

/* =========================================================
   05. HOME MEDIA / HERO MEDIA
   ========================================================= */

.home-media .img-surface {
  height: 100%;
  min-height: 280px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background:
    url('../images/gt2.jpg') center/cover no-repeat,
    radial-gradient(1200px 600px at 20% 10%, rgba(27, 79, 255, 0.18), transparent 60%),
    radial-gradient(900px 500px at 80% 80%, rgba(16, 185, 129, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.06), rgba(2, 6, 23, 0.02));
  position: relative;
  overflow: hidden;
}

.img-caption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  font-size: 12px;
  color: rgba(2, 6, 23, 0.55);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  padding: 6px 10px;
}

/* =========================================================
   06. HOME HUBS
   ========================================================= */

.home-hubs {
  margin-top: clamp(18px, 4vw, 34px);
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hub-card {
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 18px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.04);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease;
}

.hub-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 46px rgba(2, 6, 23, 0.08);
}

.hub-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hub-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 20px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(0, 0, 0, 0.02);
}

.hub-title {
  font-weight: 900;
  letter-spacing: -0.01em;
}

.hub-text {
  margin-top: 10px;
  color: rgba(2, 6, 23, 0.75);
  line-height: 1.55;
}

.hub-link {
  margin-top: 12px;
  font-weight: 800;
  color: rgba(27, 79, 255, 0.95);
}

.hub-blue .hub-icon {
  background: color-mix(in srgb, var(--c-blue, #1b4fff) 10%, white);
  border-color: rgba(27, 79, 255, 0.22);
}

.hub-blue:hover {
  border-color: rgba(27, 79, 255, 0.28);
}

.hub-green .hub-icon {
  background: color-mix(in srgb, var(--c-green, #10b981) 12%, white);
  border-color: rgba(16, 185, 129, 0.24);
}

.hub-green:hover {
  border-color: rgba(16, 185, 129, 0.30);
}

.hub-neutral .hub-icon {
  background: rgba(0, 0, 0, 0.02);
}

.hub-neutral .hub-link {
  color: rgba(2, 6, 23, 0.88);
}

/* =========================================================
   07. HOME SERVICES / TRUST
   ========================================================= */

.home-services {
  margin-top: clamp(20px, 3vw, 30px);
}

.svc-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.svc {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  color: #0b0f19;
  font-weight: 800;
  font-size: 13px;
}

.svc:hover {
  transform: translateY(-1px);
}

.svc-grid--quiet {
  margin-bottom: 20px;
}

.svc-grid--quiet .svc {
  cursor: default;
}

.svc-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
}

.dot-blue {
  background: var(--c-blue, #1b4fff);
}

.dot-green {
  background: var(--c-green, #10b981);
}

.trust {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.trust-item {
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 16px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.85);
}

.trust-item strong {
  display: block;
  margin-bottom: 2px;
}

.trust-item span {
  color: rgba(2, 6, 23, 0.68);
  font-size: 13px;
}

/* =========================================================
   08. REVEAL / STATES
   ========================================================= */

[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
  transition-delay: var(--d, 0ms);
}

body.site-ready [data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'League Spartan', system-ui, sans-serif;
}

body.site-ready {
  background: #fff;
  overflow: hidden;
}

body.site-ready #c {
  display: none;
}

body.site-ready .page-root {
  display: block;
}

/* =========================================================
   09. GATE / CONSENT
   ========================================================= */

.gate {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
  z-index: 50;
}

.gate.hidden {
  display: none;
}

.gate-card {
  width: min(520px, 92vw);
  padding: 22px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(10, 10, 10, 0.72);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.55);
  color: #fff;
  text-align: center;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

.gate-title {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.02em;
}

.gate-sub {
  margin: 10px 0 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.35;
}

.gate-actions {
  display: grid;
  gap: 10px;
}

.gate-btn {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.gate-btn:hover {
  background: rgba(255, 255, 255, 0.14);
}

.gate-btn-secondary {
  font-weight: 700;
  background: rgba(255, 255, 255, 0.06);
}

.gate-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.10);
}

.gate-link {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  text-decoration: underline;
  padding: 8px 6px;
}

.gate-settings {
  margin-top: 14px;
  padding: 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  text-align: left;
}

.gate-settings-title {
  font-weight: 800;
  margin-bottom: 10px;
}

.gate-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 8px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.86);
}

.gate-check input {
  margin-top: 2px;
}

.gate-foot {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.gate-foot a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: underline;
}

/* =========================================================
   10. INTRO SKIP
   ========================================================= */

.intro-skip {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #000080;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
  cursor: pointer;
}

.intro-skip:hover {
  background: rgba(255, 255, 255, 0.92);
}

.intro-skip:active {
  transform: translateY(1px);
}

.intro-skip:focus-visible {
  outline: 3px solid rgba(0, 0, 128, 0.25);
  outline-offset: 2px;
}

.intro-skip[hidden] {
  display: none !important;
}

/* =========================================================
   11. QUOTE ROTATOR
   ========================================================= */

.home-quote-stage {
  display: flex;
  align-items: stretch;
}

.quote-rotator {
  position: relative;
  width: 100%;
  min-height: clamp(250px, 28vw, 320px);
  padding: 0;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(180deg, #f4f7fb 0%, #edf2f7 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.quote-rotator::before,
.quote-rotator::after {
  content: "";
  position: absolute;
  top: -8px;
  width: 62px;
  height: 96px;
  opacity: 0.85;
  background: rgba(170, 186, 198, 0.45);
  transform: skewX(-20deg);
  border-radius: 4px;
}

.quote-rotator::before {
  right: 60px;
}

.quote-rotator::after {
  right: 12px;
  background: rgba(188, 200, 210, 0.62);
}

.quote-slide {
  position: absolute;
  inset: 0;
  padding: clamp(22px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.quote-slide.is-active {
  opacity: 1;
  transform: none;
}

.quote-text {
  margin: 0;
  max-width: none;
  color: #18245a;
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.quote-author {
  margin: 14px 0 0;
  color: rgba(24, 36, 90, 0.74);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.quote-dots {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 10;
}

.quote-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(24, 36, 90, 0.18);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.quote-dot.is-active {
  background: rgba(24, 36, 90, 0.6);
  transform: scale(1.35);
}

/* =========================================================
   12. BENEFIT BANNER
   ========================================================= */

.benefit-banner {
  display: block;
  position: relative;
  margin-top: 16px;
}

.benefit-nav,
.benefit-dots {
  display: none !important;
}

.benefit-viewport {
  overflow: hidden;
  border-radius: 24px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.95), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.benefit-track {
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: max-content;
  transition: none !important;
  will-change: transform;
}

.benefit-card {
  flex: 0 0 320px;
  min-width: 320px;
  min-height: 220px;
  padding: 24px 24px 26px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  border-right: 0;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.benefit-card:last-child {
  border-right: 0;
}

.benefit-card--blue {
  background: linear-gradient(180deg, rgba(244, 247, 255, 0.98), #fff);
}

.benefit-card--green {
  background: linear-gradient(180deg, rgba(243, 251, 248, 0.98), #fff);
}

.benefit-kicker {
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(2, 6, 23, 0.48);
}

.benefit-card h3 {
  margin: 0 0 10px;
  max-width: none;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.benefit-card p {
  margin: 0;
  max-width: 34ch;
  color: rgba(2, 6, 23, 0.74);
  font-size: 14px;
  line-height: 1.58;
}

/* =========================================================
   13. MOTION REDUCTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .btn,
  .hub-card,
  .svc {
    transition: none !important;
  }
}

/* =========================================================
   14. RESPONSIVE
   ========================================================= */

@media (max-width: 980px) {
  .home-hero {
    grid-template-columns: 1fr;
  }

  .hub-grid {
    grid-template-columns: 1fr;
  }

  .trust {
    grid-template-columns: 1fr;
  }

  .quote-rotator {
    min-height: 240px;
  }

  .quote-text {
    max-width: none;
    font-size: clamp(24px, 6vw, 38px);
  }

  .benefit-card {
    flex-basis: 280px;
    min-width: 280px;
    min-height: 210px;
  }
}

@media (max-width: 720px) {
  .benefit-viewport {
    padding: 10px;
  }

  .benefit-track {
    gap: 14px;
  }

  .benefit-card {
    flex-basis: 250px;
    min-width: 250px;
    min-height: 200px;
    padding: 20px 20px 22px;
  }

  .quote-rotator {
    min-height: 280px;
  }

  .quote-text {
    font-size: clamp(30px, 9vw, 42px);
  }
}

@media (max-width: 700px) {
  .intro-skip {
    top: 12px;
    right: 12px;
    padding: 9px 12px;
  }

  .intro-skip__label {
    font-size: 14px;
  }
}
