:root {
  --bg: #ffffff;
  --bg-accent: #f8fafc;
  --bg-dark: #0f172a;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --brand: #0d7b6a;
  --brand-light: #10b981;
  --accent: #3b82f6;
  --accent-light: #60a5fa;
  --hot: #f59e0b;
  --hot-light: #fbbf24;
  --success: #10b981;
  --error: #ef4444;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --header-height: 80px;
  --container-pad: clamp(16px, 6vw, 64px);
  --border-radius: 12px;
  --border-radius-lg: 16px;
}

* { 
  box-sizing: border-box; 
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.6;
  font-size: 16px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--container-pad);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  z-index: 100;
}

.brand {
  font-weight: 800;
  letter-spacing: -0.025em;
  font-size: 28px;
  color: var(--brand);
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--brand);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: var(--header-height);
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px var(--container-pad) 40px;
  position: relative;
  z-index: 10;
}

.headline {
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.025em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  max-width: 100%;
}

.headline-prefix { 
  opacity: 0.9; 
  color: var(--text);
  display: inline-block;
  vertical-align: baseline;
  white-space: nowrap;
}

.rotator {
  position: relative;
  display: inline-block;
  color: var(--brand);
  vertical-align: baseline;
  white-space: nowrap;
  min-width: 0;
}

.rotator-word { 
  position: absolute; 
  left: 5px; 
  top: 0; 
  white-space: nowrap;
  vertical-align: baseline;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}

.rotator-word--current {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

.rotator-measurer { 
  visibility: hidden; 
  white-space: nowrap; 
  position: absolute;
  height: 0;
  overflow: hidden;
}

.rotator-word::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 8px;
  background: linear-gradient(90deg, rgba(13, 123, 106, 0.1), rgba(13, 123, 106, 0.3), rgba(13, 123, 106, 0.1));
  filter: blur(4px);
}

.hero-subtitle {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 48px;
  font-weight: 400;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border: none;
  border-radius: var(--border-radius);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  color: inherit;
}

.btn-primary {
  background: var(--brand);
  color: white;
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  background: var(--brand-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-secondary {
  background: white;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-2px);
}

.btn-icon {
  font-size: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(13, 123, 106, 0.1);
  color: var(--brand);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid rgba(13, 123, 106, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.badge::before {
  content: '🚀';
  font-size: 1rem;
}

.badge:hover {
  background: rgba(13, 123, 106, 0.15);
  border-color: rgba(13, 123, 106, 0.3);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(13, 123, 106, 0.2);
}

/* Map Section */
.map-wrap {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 500px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  overflow: hidden;
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.map-image,
.europe-geom {
  position: absolute;
  inset: 0;
  width: 100%;
  display: block;
  pointer-events: none;
}

/*
.map-image {
  object-fit: cover;
  opacity: 0.9;
  filter: brightness(1.2) contrast(1.3) saturate(1.4);
  transform: scale(1.05);
  transition: transform 0.3s ease;
}*/

/* Removed hover zoom effect for cleaner experience */

/* Simple Map Overlay */
.map-overlay {
  position: absolute;
  top: 38.2%; /* Golden ratio: 1/φ ≈ 0.618, so 61.8% from top = 38.2% from top */
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.map-info {
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 1.5rem;
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.map-info p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
}

/* Map section is now clean and simple - no markers */

.sparkles .star {
  position: absolute;
  left: calc(50% + var(--x));
  top: calc(50% + var(--y));
  width: 10px;
  height: 10px;
  border-radius: 50%;
  color: var(--c, #fbbf24);
  background: radial-gradient(circle, currentColor 0%, rgba(0,0,0,0) 65%);
  box-shadow: 0 0 12px currentColor, 0 0 24px currentColor;
  opacity: 0;
  transform: translate(-50%, -50%) scale(var(--scale, 1));
  animation: sparklePop 1800ms ease-in-out var(--delay, 0ms) infinite;
}

@keyframes sparklePop {
  0% { 
    opacity: 0; 
    transform: translate(-50%, -50%) scale(0.25) rotate(0deg); 
  }
  15% { 
    opacity: 1; 
    transform: translate(-50%, -50%) scale(var(--scale, 1)) rotate(180deg); 
  }
  60% { 
    opacity: 0.9; 
  }
  100% { 
    opacity: 0; 
    transform: translate(-50%, -50%) scale(0.25) rotate(360deg); 
  }
}

/* Features Section */
.features {
  padding: 80px 0;
  background: var(--bg-accent);
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 64px;
  color: var(--text);
  letter-spacing: -0.025em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.feature {
  background: white;
  padding: 32px;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 24px;
  display: block;
}

.feature h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
}

.feature p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Footer */
.site-footer {
  background: var(--bg-dark);
  color: white;
  padding: 64px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  margin-bottom: 48px;
  align-items: start;
}

.footer-brand .brand {
  font-size: 32px;
  margin-bottom: 16px;
  color: white;
}

.footer-brand p {
  color: var(--text-light);
  font-size: 18px;
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: white;
}

.footer-section a {
  display: block;
  color: var(--text-light);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
}

.imprint {
  margin-bottom: 24px;
}

.imprint strong {
  display: block;
  margin-bottom: 16px;
  color: white;
}

.imprint-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px 32px;
  margin-bottom: 24px;
  color: var(--text-light);
  font-size: 14px;
}

@media (min-width: 768px) {
  .imprint-grid { 
    grid-template-columns: 1fr 1fr; 
  }
}

.attribution {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
}

.attribution a {
  color: var(--accent-light);
  text-decoration: none;
}

.attribution a:hover {
  text-decoration: underline;
}

.legal-note {
  font-size: 12px;
  color: var(--text-light);
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    max-width: 90%;
  }
  
  .hero-content {
    padding: 3rem 2rem;
  }
  
  .headline {
    font-size: clamp(2rem, 6vw, 3rem);
    gap: 8px;
  }
  
  .hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    max-width: 600px;
  }
  
  .map-wrap {
    height: 50vh;
    min-height: 400px;
  }
  
  .map-info {
    padding: 1.25rem;
  }
  
  .map-info h3 {
    font-size: 1.25rem;
  }
  
  .map-info p {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 1rem var(--container-pad);
  }
  
  .nav {
    gap: 1.5rem;
  }
  
  .nav-link {
    font-size: 0.9rem;
  }
  
  /* Headline is now always two lines - no changes needed */
  
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
  
  .map-wrap {
    height: 45vh;
    min-height: 350px;
    overflow: hidden;
  }
  
  .map-image,
  .europe-geom {
    width: 142.86%; /* 100% / 0.7 = 142.86% to compensate for 30% crop */
    transform: translateX(0); /* Keep left-aligned, just crop from right */
  }
  
  .map-overlay {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 3rem);
    max-width: 400px;
  }
  
  .map-info {
    text-align: center;
    padding: 1.25rem;
  }
  
  .map-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .map-info p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-section h4 {
    font-size: 1rem;
  }
  
  .footer-section a {
    font-size: 0.9rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature {
    padding: 1.5rem;
  }
  
  .feature h3 {
    font-size: 1.25rem;
  }
  
  .feature p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .container {
    max-width: 95%;
  }
  
  .site-header {
    padding: 0.75rem var(--container-pad);
  }
  
  .brand {
    font-size: 1.5rem;
  }
  
  .nav {
    gap: 1rem;
  }
  
  .nav-link {
    font-size: 0.85rem;
  }

  .hero-content {
    padding: 2rem 1rem;
  }
  
  .headline {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    gap: 6px;
    line-height: 1.2;
  }
  
  .headline-prefix {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
  
  .rotator {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
  
  .hero-subtitle {
    font-size: clamp(0.9rem, 4vw, 1.1rem);
    max-width: 100%;
    margin-bottom: 2rem;
  }
  
  .hero-actions {
    gap: 0.75rem;
  }
  
  .btn {
    max-width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .btn-icon {
    font-size: 1rem;
  }
  
  .badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }
  
  .map-wrap {
    height: 40vh;
    min-height: 300px;
    overflow: hidden;
  }
  
  .map-image,
  .europe-geom {
    width: 142.86%; /* 100% / 0.7 = 142.86% to compensate for 30% crop */
    transform: translateX(0); /* Keep left-aligned, just crop from right */
  }
  
  .map-overlay {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 2rem);
    max-width: 350px;
  }
  
  .map-info {
    padding: 1rem;
  }
  
  .map-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
  }
  
  .map-info p {
    font-size: 0.85rem;
    line-height: 1.3;
  }

  .features {
    padding: 2rem 1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }
  
  .feature {
    padding: 1.25rem;
  }
  
  .feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .feature h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
  
  .feature p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .site-footer {
    padding: 2rem 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
  
  .footer-brand .brand {
    font-size: 1.5rem;
  }
  
  .footer-brand p {
    font-size: 0.9rem;
  }
  
  .footer-section h4 {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
  }
  
  .footer-section a {
    font-size: 0.85rem;
    padding: 0.25rem 0;
  }
  
  .footer-bottom {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
  }
  
  .imprint {
    font-size: 0.8rem;
  }
  
  .attribution {
    font-size: 0.75rem;
  }
  
  .legal-note {
    font-size: 0.8rem;
  }
}

@media (max-width: 360px) {
  .headline {
    font-size: clamp(1.5rem, 9vw, 2rem);
    gap: 4px;
  }
  
  .headline-prefix {
    font-size: clamp(1.25rem, 8vw, 1.75rem);
  }
  
  .rotator {
    font-size: clamp(1.25rem, 8vw, 1.75rem);
  }
  
  .hero-subtitle {
    font-size: clamp(0.85rem, 4.5vw, 1rem);
  }
  
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .map-wrap {
    height: 35vh;
    min-height: 250px;
    overflow: hidden;
  }
  
  .map-image,
  .europe-geom {
    width: 142.86%; /* 100% / 0.7 = 142.86% to compensate for 30% crop */
    transform: translateX(0); /* Keep left-aligned, just crop from right */
  }
}

/* Landscape orientation adjustments for mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-content {
    padding: 1.5rem 2rem;
  }
  
  .headline {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 0.75rem;
  }
  
  .hero-subtitle {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    margin-bottom: 1.5rem;
  }
  
  .map-wrap {
    height: 60vh;
    min-height: 200px;
  }
}


