:root {
  --bg: #060e1c;
  --bg-soft: #0b1829;
  --surface: rgba(11, 22, 40, 0.55);
  --surface-strong: rgba(8, 16, 30, 0.9);
  --border: rgba(255, 255, 255, 0.09);
  --border-glow: rgba(105, 227, 255, 0.18);
  --text: #eef4ff;
  --muted: #8ea9cc;
  --primary: #5dd8ff;
  --primary-soft: rgba(93, 216, 255, 0.15);
  --secondary: #9d71ff;
  --secondary-soft: rgba(157, 113, 255, 0.15);
  --success: #3de8a0;
  --shadow-sm: 0 8px 32px rgba(0, 0, 0, 0.28);
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 40px 100px rgba(0, 0, 0, 0.5);
  --glow-primary: 0 0 80px rgba(93, 216, 255, 0.18);
  --radius: 28px;
  --radius-sm: 20px;
  --radius-xs: 14px;
  --max-width: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", "Inter", system-ui, sans-serif;
  color: var(--text);
  background: #060e1c;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-bg,
.noise,
.cursor-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
}

.page-bg {
  background:
    radial-gradient(ellipse 70% 55% at 15% 18%, rgba(93, 216, 255, 0.13), transparent),
    radial-gradient(ellipse 60% 50% at 88% 8%,  rgba(157, 113, 255, 0.14), transparent),
    radial-gradient(ellipse 55% 45% at 55% 92%, rgba(61, 232, 160, 0.08), transparent),
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(6, 14, 28, 1), transparent),
    linear-gradient(160deg, #07122a 0%, #060e1c 55%, #040911 100%);
  animation: bgDrift 24s ease-in-out infinite alternate;
  filter: blur(0px);
}

@keyframes bgDrift {
  0%   { opacity: 1; transform: scale(1)    rotate(0deg); }
  50%  { opacity: 1; transform: scale(1.04) rotate(0.8deg); }
  100% { opacity: 1; transform: scale(1.02) rotate(-0.5deg); }
}

.noise {
  z-index: -2;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  mix-blend-mode: overlay;
}

.cursor-glow {
  z-index: -1;
  width: 60rem;
  height: 60rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93, 216, 255, 0.1) 0%, rgba(157, 113, 255, 0.06) 40%, transparent 68%);
  filter: blur(0px);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.6s var(--ease), left 0.1s linear, top 0.1s linear;
  will-change: left, top, opacity;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 7rem 0;
}

.section-tight {
  padding-top: 2rem;
}

.section-dark {
  position: relative;
}

.host-section,
.app-section {
  position: relative;
}

.host-section::before,
.app-section::before {
  content: "";
  position: absolute;
  inset: 8% auto auto 50%;
  width: min(36rem, 55vw);
  height: min(36rem, 55vw);
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(105, 227, 255, 0.12), transparent 62%);
  filter: blur(14px);
  pointer-events: none;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 3rem;
}

.section-heading h2,
.hero h1,
.about-copy h2,
.contact-shell h2 {
  margin: 0 0 1rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-heading h2,
.about-copy h2,
.contact-shell h2,
.host-copy h2,
.app-copy h2 {
  font-size: clamp(1.9rem, 4.5vw, 3.1rem);
  font-weight: 700;
  background: linear-gradient(155deg, #e8f4ff 0%, #b8d9fa 60%, #9dc5f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-heading p,
.hero-text,
.about-copy p,
.contact-shell p,
.brand-content p,
.service-card p,
.schedule-box p,
.host-copy > p,
.app-copy > p,
.site-footer p {
  color: #8ca6c8;
  line-height: 1.75;
  font-size: 1.02rem;
  font-weight: 400;
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.1rem;
  color: rgba(173, 214, 255, 0.85);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow span,
.section-kicker::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary) 60%, transparent);
  flex-shrink: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  background: rgba(5, 11, 22, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.site-header.scrolled {
  background: rgba(5, 11, 22, 0.82);
  box-shadow: 0 1px 40px rgba(0, 0, 0, 0.35);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  color: #d9e3f6;
}

.main-nav a {
  position: relative;
  font-size: 0.95rem;
}

.main-nav a {
  position: relative;
  font-size: 0.94rem;
  color: rgba(214, 228, 252, 0.8);
  transition: color 0.3s var(--ease);
}

.main-nav a:hover {
  color: #eef4ff;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.4rem;
  width: 0%;
  height: 1.5px;
  transform: translateX(-50%);
  transition: width 0.35s var(--ease);
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 99px;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 0.45s var(--ease-spring),
    box-shadow 0.4s var(--ease),
    border-color 0.3s var(--ease),
    background 0.35s var(--ease),
    opacity 0.3s var(--ease);
  will-change: transform;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0) 70%);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease);
  border-radius: inherit;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
}

.btn:active {
  transform: translateY(0px) scale(0.97);
  transition-duration: 0.12s;
}

.btn-small {
  min-height: 44px;
  padding-inline: 1rem;
  font-size: 0.95rem;
}

.btn-primary {
  color: #04101e;
  background: linear-gradient(135deg, #7ae8ff 0%, var(--primary) 45%, #a8f0ff 100%);
  box-shadow: 0 8px 28px rgba(93, 216, 255, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 16px 48px rgba(93, 216, 255, 0.42);
}

.btn-secondary {
  background: linear-gradient(135deg, rgba(157, 113, 255, 0.88), rgba(93, 216, 255, 0.18));
  border-color: rgba(157, 113, 255, 0.22);
  box-shadow: 0 8px 28px rgba(157, 113, 255, 0.22);
}

.btn-secondary:hover {
  box-shadow: 0 16px 48px rgba(157, 113, 255, 0.38);
  border-color: rgba(157, 113, 255, 0.38);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero {
  padding-top: 5rem;
}

.hero-grid,
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
}

.host-shell,
.app-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 5.4rem);
  max-width: 14ch;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.045em;
  background: linear-gradient(160deg, #ffffff 0%, #c8e4ff 55%, #9dc8f4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  max-width: 62ch;
  font-size: 1.05rem;
}

.hero-actions,
.info-row,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-pills span,
.brand-badge {
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: #c2d8f2;
  font-size: 0.88rem;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}

.hero-pills span:hover {
  background: rgba(93, 216, 255, 0.1);
  border-color: rgba(93, 216, 255, 0.22);
}

.brand-badge.clean {
  background: rgba(74, 222, 128, 0.1);
  color: #d8ffe5;
}

.glass-card,
.brand-card,
.service-card,
.schedule-box,
.stat-card,
.contact-shell {
  background: rgba(10, 20, 38, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.04) inset,
    var(--shadow-sm);
  backdrop-filter: blur(28px) saturate(150%);
  -webkit-backdrop-filter: blur(28px) saturate(150%);
}

.hero-stack {
  position: relative;
  min-height: 520px;
}

.hero-card {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius);
}

.hero-card img,
.brand-media img,
.about-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-main {
  inset: 0.5rem 2rem 3rem 0;
}

.hero-card-logo {
  right: 0;
  top: 0;
  width: 210px;
  height: 210px;
  padding: 1.4rem;
  background: rgba(8, 18, 31, 0.92);
}

.hero-card-support {
  left: 5%;
  bottom: 0;
  width: 280px;
  height: 180px;
}

.brand-grid,
.services-grid,
.stats-grid {
  display: grid;
  gap: 1.5rem;
}

.host-shell,
.app-shell,
.contact-shell {
  position: relative;
  overflow: hidden;
}

.brand-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.brand-card {
  display: grid;
  grid-template-rows: 300px 1fr;
  overflow: hidden;
  border-radius: var(--radius);
  transition:
    transform 0.55s var(--ease),
    border-color 0.45s var(--ease),
    box-shadow 0.55s var(--ease);
}

.brand-card:hover {
  transform: translateY(-8px) scale(1.005);
  border-color: rgba(93, 216, 255, 0.26);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45), 0 0 60px rgba(93, 216, 255, 0.08);
}

.brand-media {
  position: relative;
  overflow: hidden;
}

.brand-media::after,
.about-media-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: linear-gradient(180deg, transparent, rgba(5, 11, 20, 0.8));
}

.brand-media-clean img {
  object-fit: cover;
  object-position: center top;
}

.brand-content {
  padding: 1.7rem;
}

.brand-content h3,
.service-card h3,
.schedule-box h3,
.stat-card strong {
  margin-top: 0;
}

.brand-content ul {
  margin: 1.2rem 0 1.6rem;
  padding-left: 1rem;
  color: #dfe8fa;
  line-height: 1.8;
}

.host-stage,
.phone-mockup,
.play-card {
  position: relative;
  overflow: hidden;
}

.host-stage {
  min-height: 620px;
  padding: 1.5rem;
  border-radius: 34px;
  background:
    linear-gradient(160deg, rgba(9, 19, 35, 0.92), rgba(17, 35, 62, 0.74)),
    rgba(11, 24, 42, 0.72);
}

.host-screen {
  position: absolute;
  inset: 1.4rem 1.4rem 9rem;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.host-screen::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(6, 12, 23, 0.82));
}

.host-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
}

.host-orb-one {
  top: 2rem;
  right: 2rem;
  width: 12rem;
  height: 12rem;
  background: radial-gradient(circle, rgba(93, 216, 255, 0.42), transparent 65%);
  animation: orbPulse 6s ease-in-out infinite;
}

.host-orb-two {
  bottom: 7rem;
  left: 1rem;
  width: 14rem;
  height: 14rem;
  background: radial-gradient(circle, rgba(157, 113, 255, 0.32), transparent 65%);
  animation: orbPulse 8s ease-in-out infinite reverse;
}

.host-mini-card,
.host-side-panel,
.host-feature,
.app-metric {
  border-radius: 22px;
}

.host-mini-card {
  position: absolute;
  z-index: 2;
  padding: 1rem 1.15rem;
  background: rgba(8, 18, 31, 0.82);
}

.host-mini-card span,
.play-card span,
.host-side-panel span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.host-mini-card strong,
.play-card strong,
.host-side-panel strong,
.host-feature strong,
.app-metric strong {
  display: block;
  font-size: 1.05rem;
}

.host-mini-card-top {
  top: 1.8rem;
  left: 1.8rem;
}

.host-mini-card-bottom {
  right: 1.8rem;
  bottom: 1.8rem;
}

.host-side-panel {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 1.8rem;
  z-index: 2;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: rgba(7, 15, 27, 0.8);
}

.host-side-panel img {
  width: 92px;
  height: 92px;
  border-radius: 18px;
  object-fit: cover;
}

.host-feature-list,
.app-metrics,
.app-badges {
  display: grid;
  gap: 1rem;
}

.host-feature-list,
.app-metrics {
  margin-top: 2rem;
}

.host-feature-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.host-feature,
.app-metric {
  padding: 1.25rem;
}

.host-feature span,
.app-metric span {
  color: var(--muted);
  line-height: 1.6;
}

.app-shell {
  padding: 2rem;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(10, 19, 34, 0.76), rgba(13, 27, 46, 0.52));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.app-badges {
  grid-template-columns: repeat(3, max-content);
  margin-top: 1.8rem;
}

.app-badges span {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: #dce8fb;
  font-size: 0.92rem;
}

.app-metrics {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.app-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.phone-mockup {
  width: min(100%, 320px);
  padding: 0.9rem;
  border-radius: 38px;
  background: linear-gradient(160deg, rgba(8, 17, 31, 0.96), rgba(18, 37, 66, 0.86));
}

.phone-topbar {
  width: 34%;
  height: 0.5rem;
  margin: 0.35rem auto 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.phone-screen {
  aspect-ratio: 9 / 18.5;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-card {
  position: absolute;
  right: 0;
  bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 24px;
  background: rgba(8, 18, 31, 0.82);
}

.play-icon {
  width: 54px;
  height: 54px;
  clip-path: polygon(20% 12%, 86% 50%, 20% 88%);
  background: linear-gradient(180deg, #34d399, #60a5fa 52%, #f59e0b);
  filter: drop-shadow(0 12px 20px rgba(96, 165, 250, 0.35));
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 1.8rem;
  border-radius: var(--radius-sm);
  transition:
    transform 0.5s var(--ease),
    border-color 0.4s var(--ease),
    box-shadow 0.5s var(--ease);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(93, 216, 255, 0.2);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.38), 0 0 36px rgba(93, 216, 255, 0.07);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1.2rem;
  border-radius: 16px;
  background: rgba(93, 216, 255, 0.1);
  border: 1px solid rgba(93, 216, 255, 0.16);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease-spring);
}

.service-card:hover .service-icon {
  background: rgba(93, 216, 255, 0.18);
  border-color: rgba(93, 216, 255, 0.3);
  transform: scale(1.1);
}

.accent-card {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(105, 227, 255, 0.09));
}

.about-media-frame {
  position: relative;
  min-height: 560px;
  border-radius: 34px;
  overflow: hidden;
}

.about-logo {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 140px;
  height: 140px;
  object-fit: contain;
  z-index: 2;
  padding: 1rem;
  border-radius: 24px;
  background: rgba(5, 11, 20, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-flyer {
  position: absolute;
  inset: 0;
}

.schedule-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2rem;
}

.schedule-box {
  padding: 1.5rem;
  border-radius: 22px;
  transition: border-color 0.4s var(--ease), transform 0.45s var(--ease);
}

.schedule-box:hover {
  transform: translateY(-3px);
  border-color: rgba(93, 216, 255, 0.18);
}

.text-link {
  color: #d9f5ff;
  font-weight: 600;
  transition: color 0.3s var(--ease);
}

.text-link:hover {
  color: #fff;
}

/* ── Region Chips (Brand-Card) ─────────────────────────── */

.region-chips {
  margin: 1.3rem 0 1.8rem;
}

.region-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(173, 214, 255, 0.4);
  margin-bottom: 0.75rem;
}

.region-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.region-tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.52rem 1.1rem;
  border-radius: 999px;
  font-size: 0.87rem;
  font-weight: 600;
  background: rgba(61, 232, 160, 0.07);
  border: 1px solid rgba(61, 232, 160, 0.16);
  color: #b4f0d8;
  letter-spacing: 0.01em;
  transition:
    background 0.35s var(--ease),
    border-color 0.35s var(--ease),
    color 0.3s var(--ease),
    transform 0.45s var(--ease-spring),
    box-shadow 0.4s var(--ease);
}

.region-tags span::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3de8a0;
  flex-shrink: 0;
  box-shadow: 0 0 7px rgba(61, 232, 160, 0.75);
}

.region-tags span:hover {
  background: rgba(61, 232, 160, 0.14);
  border-color: rgba(61, 232, 160, 0.32);
  color: #d8faee;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(61, 232, 160, 0.12);
}

/* ── Area Block (About-Sektion) ────────────────────────── */

.area-block {
  margin-top: 2.2rem;
}

.area-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
  color: rgba(173, 214, 255, 0.45);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.area-header svg {
  color: #3de8a0;
  flex-shrink: 0;
}

.area-cities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.area-city {
  position: relative;
  padding: 1.75rem 1.6rem 1.5rem;
  border-radius: 22px;
  background: linear-gradient(160deg,
    rgba(61, 232, 160, 0.08) 0%,
    rgba(61, 232, 160, 0.03) 100%);
  border: 1px solid rgba(61, 232, 160, 0.13);
  overflow: hidden;
  transition:
    background 0.45s var(--ease),
    border-color 0.45s var(--ease),
    transform 0.5s var(--ease-spring),
    box-shadow 0.45s var(--ease);
}

/* Accent-Linie oben */
.area-city::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg,
    transparent,
    rgba(61, 232, 160, 0.7),
    transparent);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}

/* Glow-Dot oben rechts */
.area-city::after {
  content: '';
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(61, 232, 160, 0.4);
  box-shadow: 0 0 12px rgba(61, 232, 160, 0.35);
  transition: box-shadow 0.45s var(--ease), background 0.45s var(--ease);
}

.area-city:hover {
  background: linear-gradient(160deg,
    rgba(61, 232, 160, 0.14) 0%,
    rgba(61, 232, 160, 0.06) 100%);
  border-color: rgba(61, 232, 160, 0.28);
  transform: translateY(-6px);
  box-shadow:
    0 20px 48px rgba(61, 232, 160, 0.11),
    0 6px 16px rgba(0, 0, 0, 0.28);
}

.area-city:hover::before {
  opacity: 1;
}

.area-city:hover::after {
  background: rgba(61, 232, 160, 0.7);
  box-shadow: 0 0 18px rgba(61, 232, 160, 0.55);
}

.area-city strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: #d8faee;
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.area-city span {
  font-size: 0.78rem;
  color: rgba(61, 232, 160, 0.48);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* „& Umgebung“ — blaue Variante */
.area-city-more {
  background: linear-gradient(160deg,
    rgba(93, 216, 255, 0.07) 0%,
    rgba(93, 216, 255, 0.02) 100%);
  border-color: rgba(93, 216, 255, 0.11);
}

.area-city-more::before {
  background: linear-gradient(90deg,
    transparent,
    rgba(93, 216, 255, 0.6),
    transparent);
}

.area-city-more::after {
  background: rgba(93, 216, 255, 0.3);
  box-shadow: 0 0 12px rgba(93, 216, 255, 0.25);
}

.area-city-more:hover {
  background: linear-gradient(160deg,
    rgba(93, 216, 255, 0.12) 0%,
    rgba(93, 216, 255, 0.05) 100%);
  border-color: rgba(93, 216, 255, 0.24);
  box-shadow:
    0 20px 48px rgba(93, 216, 255, 0.09),
    0 6px 16px rgba(0, 0, 0, 0.28);
}

.area-city-more:hover::after {
  background: rgba(93, 216, 255, 0.65);
  box-shadow: 0 0 18px rgba(93, 216, 255, 0.5);
}

.area-city-more strong {
  color: #cde8ff;
}

.area-city-more span {
  color: rgba(93, 216, 255, 0.42);
}

@media (max-width: 1080px) {
  .area-cities {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .area-cities {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
  .area-city {
    padding: 1.4rem 1.3rem 1.2rem;
  }
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card {
  padding: 2.2rem;
  border-radius: var(--radius-sm);
  text-align: center;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.4), 0 0 40px rgba(93, 216, 255, 0.09);
}

.stat-card strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: linear-gradient(135deg, #7ae8ff, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card span {
  color: #7a9bbf;
  font-size: 0.95rem;
}

.contact-section {
  padding-top: 1rem;
}

.contact-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2.6rem;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(8, 16, 30, 0.95), rgba(18, 40, 72, 0.7));
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.07) inset,
    0 2px 0 rgba(255,255,255,0.05) inset,
    var(--shadow);
}

/* ── FOOTER ─────────────────────────────────────────────── */

.site-footer {
  position: relative;
  padding: 5rem 0 0;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  inset: -4rem auto auto 50%;
  width: min(70rem, 90vw);
  height: 18rem;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(93, 216, 255, 0.07) 0%, rgba(157, 113, 255, 0.05) 45%, transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
}

.footer-brand-col .brand {
  margin-bottom: 1.1rem;
}

.footer-tagline {
  color: #567899;
  font-size: 0.93rem;
  line-height: 1.7;
  max-width: 28ch;
  margin: 0 0 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: #7a9bbf;
  transition:
    background 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-social-link:hover {
  background: rgba(93, 216, 255, 0.12);
  border-color: rgba(93, 216, 255, 0.24);
  color: #5dd8ff;
  transform: translateY(-3px);
}

.footer-nav-col h4,
.footer-cta-col h4 {
  margin: 0 0 1.2rem;
}

.footer-nav-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(173, 214, 255, 0.55);
}

.footer-nav-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-nav-col ul li a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #567899;
  font-size: 0.94rem;
  transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1), gap 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-nav-col ul li a:hover {
  color: #c8e4ff;
  gap: 0.6rem;
}

.ext-icon {
  opacity: 0.5;
  flex-shrink: 0;
}

.footer-cta-col p {
  color: #567899;
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0 0 1.2rem;
}

.footer-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: flex-start;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07) 30%, rgba(93,216,255,0.12) 50%, rgba(255,255,255,0.07) 70%, transparent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.6rem 0 2.4rem;
  flex-wrap: wrap;
}

.footer-copy {
  color: #3a566e;
  font-size: 0.88rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a {
  color: #3a566e;
  font-size: 0.88rem;
  transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-legal-links a:hover {
  color: #9dc5ef;
}

@media (max-width: 1080px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding-bottom: 2rem;
  }

  .footer-tagline {
    max-width: 100%;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(6px);
  transition:
    opacity 1s var(--ease),
    transform 1s var(--ease),
    filter 0.9s var(--ease);
}

.reveal-delay {
  transition-delay: 0.18s;
}

.reveal-delay-2 {
  transition-delay: 0.34s;
}

.reveal-delay-3 {
  transition-delay: 0.5s;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0px);
}

.floating-card {
  animation: float 10s cubic-bezier(0.37, 0, 0.63, 1) infinite;
}

.magnetic {
  transform-style: preserve-3d;
  transition: transform 0.5s var(--ease-spring);
}

.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.6s var(--ease);
}

@keyframes float {
  0%   { transform: translateY(0px)   rotate(0deg); }
  30%  { transform: translateY(-8px)  rotate(0.3deg); }
  60%  { transform: translateY(-16px) rotate(-0.3deg); }
  100% { transform: translateY(0px)   rotate(0deg); }
}

@keyframes orbPulse {
  0%, 100% { opacity: 0.55; transform: scale(1);   }
  50%       { opacity: 0.9;  transform: scale(1.18); }
}

@keyframes shimmerSlide {
  0%   { transform: translateX(-100%) skewX(-15deg); }
  100% { transform: translateX(250%)  skewX(-15deg); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0px); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1);    }
}

@media (max-width: 1080px) {
  .main-nav {
    display: none;
  }

  .hero-grid,
  .about-grid,
  .host-shell,
  .app-shell,
  .brand-grid,
  .contact-shell,
  .services-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .host-feature-list,
  .app-metrics {
    grid-template-columns: 1fr;
  }

  .hero-stack {
    min-height: 460px;
  }

  .host-stage,
  .app-visual {
    min-height: 540px;
  }

  .contact-shell {
    padding: 1.8rem;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 5rem 0;
  }

  .nav-shell {
    min-height: 74px;
  }

  .site-header .btn-small {
    display: none;
  }

  .hero {
    padding-top: 3rem;
  }

  .host-stage {
    min-height: 500px;
    padding: 1rem;
  }

  .host-screen {
    inset: 1rem 1rem 8.4rem;
  }

  .host-side-panel {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    grid-template-columns: 72px 1fr;
  }

  .host-side-panel img {
    width: 72px;
    height: 72px;
  }

  .host-mini-card-top,
  .host-mini-card-bottom {
    position: static;
  }

  .host-feature-list,
  .app-badges,
  .app-metrics {
    grid-template-columns: 1fr;
  }

  .app-shell {
    padding: 1.25rem;
  }

  .app-visual {
    min-height: 480px;
  }

  .play-card {
    position: static;
    margin-top: 1rem;
    justify-self: center;
  }

  .hero-card-main {
    inset: 0 0 5rem;
  }

  .hero-card-logo {
    width: 150px;
    height: 150px;
    padding: 1rem;
  }

  .hero-card-support {
    width: 200px;
    height: 124px;
    left: auto;
    right: 0;
  }

  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .about-media-frame {
    min-height: 460px;
  }

  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
