@font-face {
  font-family: 'BLS Sans';
  src: url('https://assets.blsmedia.de/fonts/BLS_sans_regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BLS Sans';
  src: url('https://assets.blsmedia.de/fonts/BLS_sans_bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg:           #f8f8f8;
  --white:        #ffffff;
  --black:        #0a0a0a;
  --text:         #1a1a1a;
  --muted:        #6e6e73;
  --border:       #e4e4e8;
  --accent:       #ff6b3d;
  --accent-light: rgba(255,107,61,.09);
  --accent-brd:   rgba(255,107,61,.22);
  --accent-glow:  rgba(255,107,61,.3);
  --green:        #16a34a;
  --green-light:  rgba(22,163,74,.08);
  --blue:         #2563eb;
  --blue-light:   rgba(37,99,235,.08);
  --shadow:       0 1px 3px rgba(0,0,0,.05), 0 4px 16px rgba(0,0,0,.04);
  --shadow-lg:    0 8px 32px rgba(0,0,0,.10);
  --shadow-xl:    0 20px 60px rgba(0,0,0,.12);
  --r:            14px;
  --font-body:    'BLS Sans', system-ui, -apple-system, sans-serif;
  --max-w:        1200px;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  background:var(--bg);
  color:var(--text);
  font-family:var(--font-body);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

nav {
  position:fixed; top:0; left:0; right:0; z-index:100;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(24px); -webkit-backdrop-filter:blur(24px);
  border-bottom:1px solid var(--border);
  padding:0 40px; height:72px;
  display:flex; align-items:center; justify-content:center;
  transition:box-shadow .3s;
}
nav.scrolled { box-shadow:0 1px 8px rgba(0,0,0,.06); }
.nav-inner {
  width:100%; max-width:var(--max-w);
  display:flex; align-items:center; justify-content:space-between;
}
.nav-logo { display:flex; align-items:center; text-decoration:none; gap:12px; }
.nav-logo img { height:44px; width:auto; object-fit:contain; transition:opacity .2s; }
.nav-logo:hover img { opacity:.75; }
.nav-logo-text {
  font-size:18px; font-weight:700; color:var(--black); letter-spacing:-.02em;
}
.nav-links { display:flex; align-items:center; gap:8px; }
.nav-link {
  font-size:13px; font-weight:400; color:var(--muted); text-decoration:none;
  padding:8px 16px; border-radius:10px; transition:all .2s;
}
.nav-link:hover { color:var(--text); background:var(--accent-light); }
.nav-cta {
  font-size:13px; font-weight:400; color:#fff; text-decoration:none;
  background:var(--accent); padding:10px 24px; border-radius:10px;
  transition:all .2s; box-shadow:0 2px 12px var(--accent-glow);
}
.nav-cta:hover { background:#e85c2e; transform:translateY(-1px); box-shadow:0 4px 20px var(--accent-glow); }

/* HERO */
.hero {
  min-height:100vh;
  display:flex; align-items:center; justify-content:center;
  position:relative; overflow:hidden;
  background:var(--white);
  padding:120px 24px 80px;
}
.hero-bg {
  position:absolute; inset:0; pointer-events:none; overflow:hidden;
}
.hero-bg::before {
  content:''; position:absolute;
  width:800px; height:800px; border-radius:50%;
  background:radial-gradient(circle, rgba(255,107,61,.08) 0%, transparent 70%);
  top:-200px; right:-200px;
}
.hero-bg::after {
  content:''; position:absolute;
  width:600px; height:600px; border-radius:50%;
  background:radial-gradient(circle, rgba(37,99,235,.05) 0%, transparent 70%);
  bottom:-150px; left:-150px;
}
.hero-grid {
  position:absolute; inset:0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size:60px 60px;
  opacity:.3;
}
.hero-inner {
  position:relative; z-index:1; max-width:var(--max-w);
  display:grid; grid-template-columns:1fr 1fr; gap:80px;
  align-items:center;
}
@media(max-width:900px){ .hero-inner { grid-template-columns:1fr; gap:48px; text-align:center; } }

.hero-left { display:flex; flex-direction:column; gap:24px; }
.hero-tag {
  display:inline-flex; align-items:center; gap:8px; width:fit-content;
  background:var(--accent-light); border:1px solid var(--accent-brd);
  border-radius:20px; padding:6px 16px;
  font-size:12px; font-weight:400; color:var(--accent);
  letter-spacing:.06em; text-transform:uppercase;
}
@media(max-width:900px){ .hero-tag { margin:0 auto; } }
.hero-tag-dot { width:6px; height:6px; background:var(--accent); border-radius:50%; }
.hero h1 {
  font-size:56px; font-weight:700; line-height:1.08; letter-spacing:-.03em;
  color:var(--black);
  min-height:1.2em;
}
@media(max-width:600px){ .hero h1 { font-size:38px; } }
.hero h1 .rotator-label { color:var(--black); }
.word-rotator {
  display:inline-block;
  color:var(--accent);
  position:relative;
  vertical-align:bottom;
}
.word-rotator::after {
  content:'|';
  animation:blink .9s step-end infinite;
  margin-left:2px;
  color:var(--accent);
  font-weight:400;
}
@keyframes blink {
  50% { opacity:0; }
}
.hero p {
  font-size:18px; font-weight:400; line-height:1.6; color:var(--muted);
  max-width:520px;
}
@media(max-width:900px){ .hero p { margin:0 auto; } }
.hero-actions {
  display:flex; gap:12px; flex-wrap:wrap;
}
@media(max-width:900px){ .hero-actions { justify-content:center; } }
.btn-primary {
  font-family:var(--font-body); font-size:15px; font-weight:400; color:#fff;
  background:var(--accent); border:none; cursor:pointer;
  padding:14px 32px; border-radius:12px; text-decoration:none;
  transition:all .2s; box-shadow:0 4px 16px var(--accent-glow);
  display:inline-flex; align-items:center; gap:8px;
}
.btn-primary:hover { background:#e85c2e; transform:translateY(-2px); box-shadow:0 6px 24px var(--accent-glow); }
.btn-secondary {
  font-family:var(--font-body); font-size:15px; font-weight:400; color:var(--text);
  background:var(--white); border:1.5px solid var(--border); cursor:pointer;
  padding:14px 32px; border-radius:12px; text-decoration:none;
  transition:all .2s; display:inline-flex; align-items:center; gap:8px;
}
.btn-secondary:hover { border-color:var(--accent); color:var(--accent); transform:translateY(-2px); box-shadow:var(--shadow-lg); }

.hero-right {
  display:flex; justify-content:center; align-items:center;
  position:relative;
}
.hero-visual {
  width:100%; max-width:500px; aspect-ratio:1;
  position:relative;
}
.hero-ring {
  position:absolute; inset:0; border-radius:50%;
  border:1.5px solid var(--border);
}
.hero-ring:nth-child(1) { transform:scale(.6); }
.hero-ring:nth-child(2) { transform:scale(.8); }
.hero-ring:nth-child(3) { transform:scale(1); }
.hero-ring:nth-child(4) { transform:scale(1.2); border-color:var(--accent-brd); }
.hero-center {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:80px; height:80px; border-radius:50%;
  background:var(--accent); 
  box-shadow:0 0 40px var(--accent-glow), 0 0 80px rgba(255,107,61,.15);
  display:flex; align-items:center; justify-content:center;
}
.hero-center svg { width:36px; height:36px; color:#fff; }
.hero-orbit {
  position:absolute; top:50%; left:50%; width:100%; height:100%;
  animation:orbit 20s linear infinite; transform-origin:0 0;
}
.hero-orbit:nth-child(5) { animation-duration:25s; }
.hero-orbit:nth-child(6) { animation-duration:30s; animation-direction:reverse; }
.hero-orbit-dot {
  position:absolute; width:8px; height:8px; border-radius:50%;
  background:var(--accent); opacity:.4;
}
.hero-orbit-dot:nth-child(1) { top:-4px; left:50%; }
.hero-orbit-dot:nth-child(2) { bottom:-4px; left:50%; }
.hero-orbit-dot:nth-child(3) { left:-4px; top:50%; }
.hero-orbit-dot:nth-child(4) { right:-4px; top:50%; }

@keyframes orbit {
  from { transform:rotate(0deg); }
  to { transform:rotate(360deg); }
}

/* LOGO BAR */
.logo-bar {
  background:var(--white);
  border-bottom:1px solid var(--border);
  padding:32px 24px;
  text-align:center;
}
.logo-bar-label {
  font-size:11px; font-weight:400; color:var(--muted);
  letter-spacing:.1em; text-transform:uppercase; margin-bottom:20px;
}
.logo-bar-grid {
  max-width:var(--max-w); margin:0 auto;
  display:flex; justify-content:center; align-items:center; gap:40px;
  flex-wrap:wrap;
  font-size:13px; color:var(--muted);
}

/* SECTIONS */
.section {
  padding:100px 24px;
  max-width:var(--max-w); margin:0 auto;
}
.section-alt { background:var(--white); max-width:none; padding:100px 24px; }
.section-alt-inner { max-width:var(--max-w); margin:0 auto; }
.section-header {
  text-align:center; max-width:640px; margin:0 auto 60px;
}
.section-tag {
  display:inline-flex; align-items:center; gap:8px;
  font-size:11px; font-weight:400; color:var(--accent);
  letter-spacing:.1em; text-transform:uppercase; margin-bottom:16px;
}
.section-tag::before { content:''; width:6px; height:6px; background:var(--accent); border-radius:50%; }
.section h2 {
  font-size:40px; font-weight:700; line-height:1.12; letter-spacing:-.02em;
  color:var(--black); margin-bottom:16px;
}
@media(max-width:600px){ .section h2 { font-size:30px; } }
.section h2 span { color:var(--accent); }
.section-sub {
  font-size:17px; line-height:1.7; color:var(--muted);
}

/* FEATURES GRID */
.features-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px;
}
@media(max-width:860px){ .features-grid { grid-template-columns:1fr 1fr; } }
@media(max-width:540px){ .features-grid { grid-template-columns:1fr; } }
.feature-card {
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--r); padding:32px;
  transition:all .3s; position:relative; overflow:hidden;
  box-shadow:var(--shadow);
}
.feature-card:hover {
  border-color:var(--accent-brd);
  box-shadow:var(--shadow-lg);
  transform:translateY(-4px);
}
.feature-card-accent {
  position:absolute; top:0; left:0; right:0; height:3px;
  background:var(--accent); transform:scaleX(0); transform-origin:left;
  transition:transform .4s;
}
.feature-card:hover .feature-card-accent { transform:scaleX(1); }
.feature-icon {
  width:48px; height:48px; border-radius:12px;
  background:var(--accent-light); border:1px solid var(--accent-brd);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:20px;
}
.feature-icon svg { width:22px; height:22px; color:var(--accent); stroke-width:1.5; }
.feature-card h3 {
  font-size:17px; font-weight:700; color:var(--black); margin-bottom:10px;
}
.feature-card p {
  font-size:14px; line-height:1.7; color:var(--muted);
}

/* PROVISION CARD */
.provision-card {
  background:linear-gradient(135deg, var(--accent) 0%, #e85c2e 100%);
  border-radius:24px; padding:56px 48px; position:relative; overflow:hidden;
}
@media(max-width:600px){ .provision-card { padding:36px 24px; } }
.provision-card::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse 80% 60% at 30% 50%, rgba(255,255,255,.12) 0%, transparent 60%);
}
.provision-card::after {
  content:''; position:absolute; top:-50%; right:-20%;
  width:400px; height:400px; border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 60%);
}
.provision-content {
  position:relative; z-index:1;
  display:flex; align-items:center; justify-content:space-between; gap:40px;
}
@media(max-width:700px){ .provision-content { flex-direction:column; text-align:center; } }
.provision-text h3 {
  font-size:28px; font-weight:700; color:#fff; margin-bottom:10px; letter-spacing:-.01em;
}
.provision-text p {
  font-size:16px; line-height:1.6; color:rgba(255,255,255,.85);
  max-width:480px;
}
.provision-number {
  font-size:72px; font-weight:700; color:#fff;
  line-height:1; letter-spacing:-.03em; flex-shrink:0;
}
@media(max-width:600px){ .provision-number { font-size:56px; } }
.provision-number small {
  font-size:20px; font-weight:400; opacity:.8;
}

/* AUDIENCE */
.audience-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:20px;
}
@media(max-width:700px){ .audience-grid { grid-template-columns:1fr; } }
.audience-card {
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--r); padding:40px; position:relative; overflow:hidden;
  box-shadow:var(--shadow);
}
.audience-card:first-child { background:linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%); border-color:#2a2a2a; }
.audience-card:first-child h3 { color:#fff; }
.audience-card:first-child p { color:rgba(255,255,255,.65); }
.audience-card:first-child .audience-label { color:var(--accent); border-color:var(--accent-brd); background:var(--accent-light); }
.audience-label {
  font-size:11px; font-weight:400; color:var(--accent);
  letter-spacing:.08em; text-transform:uppercase;
  display:inline-block; padding:4px 12px; border-radius:6px;
  background:var(--accent-light); border:1px solid var(--accent-brd);
  margin-bottom:16px;
}
.audience-card h3 {
  font-size:20px; font-weight:700; color:var(--black); margin-bottom:10px;
}
.audience-card p {
  font-size:14px; line-height:1.7; color:var(--muted);
  margin-bottom:20px;
}
.audience-list { list-style:none; display:flex; flex-direction:column; gap:8px; }
.audience-list li {
  font-size:13px; color:var(--muted); display:flex; align-items:center; gap:8px;
}
.audience-list li::before {
  content:''; width:5px; height:5px; border-radius:50%;
  background:var(--accent); flex-shrink:0;
}
.audience-card:first-child .audience-list li { color:rgba(255,255,255,.65); }

/* CTA SECTION */
.cta-section {
  text-align:center; padding:80px 24px;
  max-width:640px; margin:0 auto;
}
.cta-section h2 {
  font-size:36px; font-weight:700; line-height:1.15; letter-spacing:-.02em;
  color:var(--black); margin-bottom:16px;
}
.cta-section p {
  font-size:17px; line-height:1.7; color:var(--muted); margin-bottom:28px;
}
.cta-actions { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* FOOTER */
footer {
  background:var(--black); color:rgba(255,255,255,.5);
  padding:60px 24px 32px;
}
.footer-inner {
  max-width:var(--max-w); margin:0 auto;
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px;
}
@media(max-width:700px){ .footer-inner { grid-template-columns:1fr 1fr; gap:32px; } }
@media(max-width:400px){ .footer-inner { grid-template-columns:1fr; } }
.footer-brand {}
.footer-brand img { height:40px; width:auto; margin-bottom:12px; }
.footer-brand p { font-size:13px; line-height:1.7; max-width:280px; }
.footer-col h4 {
  font-size:12px; font-weight:400; color:rgba(255,255,255,.7);
  letter-spacing:.08em; text-transform:uppercase; margin-bottom:16px;
}
.footer-col a {
  display:block; font-size:13px; color:rgba(255,255,255,.45);
  text-decoration:none; padding:4px 0; transition:color .2s;
}
.footer-col a:hover { color:var(--accent); }
.footer-bottom {
  max-width:var(--max-w); margin:40px auto 0;
  padding-top:24px; border-top:1px solid rgba(255,255,255,.08);
  font-size:12px; text-align:center; color:rgba(255,255,255,.3);
}

/* ANIMATIONS */
.fade-in {
  opacity:0; transform:translateY(24px);
  transition:opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity:1; transform:translateY(0);
}

/* MOBILE MENU */
.mobile-toggle {
  display:none; background:none; border:none; cursor:pointer;
  width:32px; height:32px; flex-direction:column; align-items:center; justify-content:center; gap:5px;
}
.mobile-toggle span {
  display:block; width:20px; height:2px; background:var(--black);
  border-radius:2px; transition:all .3s;
}
@media(max-width:640px){
  .mobile-toggle { display:flex; }
  .nav-links {
    position:fixed; top:72px; left:0; right:0; bottom:0;
    background:rgba(255,255,255,.98); backdrop-filter:blur(24px);
    flex-direction:column; align-items:center; justify-content:center; gap:16px;
    transform:translateX(100%); transition:transform .3s;
    z-index:99;
  }
  .nav-links.open { transform:translateX(0); }
  .nav-link { font-size:20px; padding:12px 24px; }
}
