﻿:root {
  color-scheme: dark;
  --bg: #090b12;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-soft: rgba(255, 255, 255, 0.08);
  --panel: rgba(18, 18, 31, 0.92);
  --text: #eef1ff;
  --muted: #9ea4bd;
  --accent: #b87dff;
  --accent-strong: #7d47ff;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 34px 90px rgba(0, 0, 0, 0.25);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top, #241237 0%, #090b12 55%, #020205 100%);
  color: var(--text);
  overflow-x: hidden;
}

img,
picture,
svg {
  max-width: 100%;
  display: block;
}

button,
a {
  font: inherit;
}

main {
  min-height: calc(100vh - 96px);
}

.navbar {
  background: rgba(9, 10, 19, 0.96) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 2rem;
}

.navbar-brand img {
  width: 44px;
  height: auto;
}

.navbar .navbar-nav {
  align-items: center;
}

.navbar .nav-link,
.navbar .dropdown-toggle,
.navbar .navbar-brand {
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.navbar .nav-link:hover,
.navbar .active > .nav-link {
  color: var(--accent);
}

.navbar .dropdown-menu {
  background: rgba(9, 10, 19, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar .dropdown-item {
  color: var(--text);
  transition: background 0.2s ease, color 0.2s ease;
}

.navbar .dropdown-item:hover {
  background: rgba(184, 125, 255, 0.14);
  color: var(--accent);
}

.navbar-toggler {
  border-color: var(--border);
}

.navbar-toggler-icon {
  background-image: radial-gradient(circle, var(--text) 20%, transparent 20%), radial-gradient(circle, var(--text) 20%, transparent 20%), radial-gradient(circle, var(--text) 20%, transparent 20%);
  background-size: 4px 4px;
  background-position: left top, center center, right bottom;
  background-repeat: no-repeat;
}

.hero-desktop {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  min-height: calc(100vh - 96px);
  padding: 2rem 4rem;
}

.hero-text {
  max-width: 680px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(184, 125, 255, 0.16);
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.24em;
}

.hero-title {
  margin: 1.2rem 0 1rem;
  font-size: clamp(3rem, 5vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero-title span {
  color: #f5e8ff;
}

.hero-sub {
  max-width: 32rem;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--muted);
}

.hero-socials {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
}

.hero-socials a {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(184, 125, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.hero-socials a:hover {
  transform: translateY(-2px);
  background: rgba(184, 125, 255, 0.22);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.1rem;
}

.hero-buttons button {
  min-width: 150px;
  border-radius: 16px;
  padding: 0.95rem 1.5rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.hero-buttons button:hover {
  transform: translateY(-1px);
}

.hero-buttons button:first-child {
  background: linear-gradient(135deg, #7d47ff, #c585ff);
  color: white;
  box-shadow: 0 16px 40px rgba(125, 59, 255, 0.24);
}

.hero-buttons button.outline {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-buttons button.outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  filter: blur(12px);
  opacity: 0.6;
}

.hero-visual-img {
  position: relative;
  width: 100%;
  max-width: 560px;
  border-radius: 34px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 38px 80px rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mobiel {
  display: block;
  padding: 2rem 1.5rem 4rem;
}

.mobiel .Foto1 {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
}

.mobiel .container1 {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
}

.mobiel .Foto2 img {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
}

.mobiel .Tekst1B {
  max-width: 100%;
  margin: 0 auto;
  padding: 1rem 0 0;
}

.mobiel #Tekst1 {
  color: #eef1ff;
  font-size: 1.1rem;
  line-height: 1.7;
}

.mobiel footer {
  margin-top: 2rem;
  padding: 0 1rem;
}

.Knop {
  width: 100%;
  max-width: 360px;
  padding: 1rem 1.25rem;
  border: none;
  border-radius: 18px;
  background: linear-gradient(135deg, #7d47ff, #c585ff);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 18px 50px rgba(125, 59, 255, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.Knop:hover {
  transform: translateY(-2px);
}

.desktop {
  display: none;
}

@media (min-width: 1012px) {
  .mobiel {
    display: none;
  }

  .desktop {
    display: block;
  }
}

@media (max-width: 1011px) {
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }

  .hero-buttons button {
    width: 100%;
    min-width: 0;
    padding: 1.7rem 1.8rem;
    font-size: 1.1rem;
    border-radius: 24px;
  }

  .hero-buttons button.outline {
    padding: 1.7rem 1.8rem;
    font-size: 1.1rem;
  }
}

@media (max-width: 680px) {
  .hero-title {
    font-size: 2.8rem;
  }
}
