@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@400;600;700&family=Space+Grotesk:wght@400;500;600&display=swap');

:root {
  color-scheme: dark;
  --bg: #0b0a07;
  --bg-2: #11100c;
  --ink: #f9f1df;
  --muted: #cbb891;
  --gold: #f0c56d;
  --gold-bright: #ffe0a3;
  --gold-deep: #d39a3d;
  --accent: #f5d18a;
  --line: rgba(245, 209, 138, 0.18);
  --card: rgba(22, 20, 14, 0.9);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html, body {
  padding: 0;
  margin: 0;
}

body {
  font-family: 'Space Grotesk', Arial, sans-serif;
  color: var(--ink);
  background: radial-gradient(1200px 900px at 10% -10%, rgba(245, 209, 138, 0.18), transparent 60%),
    radial-gradient(900px 700px at 90% 10%, rgba(211, 154, 61, 0.18), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(transparent 1px, rgba(255, 255, 255, 0.03) 1px),
    linear-gradient(90deg, transparent 1px, rgba(255, 255, 255, 0.03) 1px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: screen;
  z-index: 0;
}

main, header, footer {
  position: relative;
  z-index: 1;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.topbar {
  padding: 28px 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.topbar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo img {
  width: 180px;
  max-width: 45vw;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color 200ms ease;
  position: relative;
  padding: 6px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold));
  border-radius: 2px;
  transition: width 250ms ease;
}

.nav a:hover {
  color: var(--gold-bright);
}

.nav a:hover::after {
  width: 100%;
}

.cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(245, 209, 138, 0.35);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(8, 7, 5, 0.7);
  height: 40px;
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--muted);
  padding: 8px 12px;
  height: 100%;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
}

.lang-btn.is-active {
  color: #1a140a;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
}

.lang-btn:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.btn.primary {
  color: #1a140a;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 18px 30px rgba(211, 154, 61, 0.25);
}

.btn.ghost {
  color: var(--gold-bright);
  border-color: rgba(245, 209, 138, 0.35);
}

.btn[data-soon="true"] {
  opacity: 0.75;
  cursor: default;
}

.btn:hover {
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  padding: 48px 0 64px;
  position: relative;
  align-items: start;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--muted);
}

h1 {
  font-family: 'Fraunces', 'Times New Roman', serif;
  font-size: clamp(2.4rem, 3.5vw, 3.6rem);
  line-height: 1.05;
  margin: 12px 0 16px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--gold-bright) 50%, var(--ink) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.note {
  margin-top: 16px;
  font-size: 0.9rem;
  color: rgba(245, 209, 138, 0.7);
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  height: fit-content;
  margin-top: 10px;
}

.hero-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.hero-card .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--gold-bright);
  background: rgba(245, 209, 138, 0.1);
  border: 1px solid rgba(245, 209, 138, 0.3);
  padding: 6px 12px;
  border-radius: 999px;
  width: fit-content;
  animation: pillPulse 2.5s ease-in-out infinite;
}

.hero-card .pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-bright);
  animation: dotPulse 2.5s ease-in-out infinite;
}

@keyframes pillPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(245, 209, 138, 0.4);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(245, 209, 138, 0);
  }
}

@keyframes dotPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.85);
  }
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.section {
  padding: 64px 0;
}

.section-title {
  font-family: 'Fraunces', 'Times New Roman', serif;
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  margin: 0 0 20px;
}

#about .section-title {
  margin-top: 10px;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.about-split {
  align-items: start;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.about-text {
  display: flex;
  flex-direction: column;
  align-self: start;
  gap: 16px;
}

.about-image {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.about-image img {
  width: min(560px, 100%);
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.lang-block {
  background: rgba(15, 13, 9, 0.9);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  display: grid;
  gap: 14px;
}

.lang-block h4 {
  margin: 0;
  color: var(--gold-bright);
}

.lang-block p {
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.highlight-card {
  background: rgba(14, 12, 9, 0.85);
  border: 1px solid rgba(245, 209, 138, 0.25);
  border-radius: 16px;
  padding: 14px 16px;
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.highlight-card strong {
  color: var(--gold-bright);
  font-size: 0.95rem;
}

.highlight-card span {
  font-size: 0.9rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.card {
  background: rgba(16, 14, 10, 0.9);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
  transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 209, 138, 0.4);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(245, 209, 138, 0.15);
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(245, 209, 138, 0.1);
  border: 1px solid rgba(245, 209, 138, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.2rem;
}

.card h5 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.timeline {
  display: grid;
  gap: 0;
  position: relative;
  padding-left: 48px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), rgba(245, 209, 138, 0.2));
  border-radius: 2px;
}

.timeline-item {
  display: grid;
  gap: 6px;
  padding: 20px 22px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(16, 14, 10, 0.6);
  position: relative;
  margin-bottom: 16px;
  transition: border-color 200ms ease, background 200ms ease;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item:hover {
  border-color: rgba(245, 209, 138, 0.4);
  background: rgba(16, 14, 10, 0.9);
}

.timeline-item::before {
  content: attr(data-step);
  position: absolute;
  left: -48px;
  top: 20px;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a140a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.timeline-item span {
  color: var(--gold-bright);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

footer {
  padding: 48px 0 64px;
  border-top: 1px solid rgba(245, 209, 138, 0.2);
  color: var(--muted);
}

footer .footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

footer a {
  color: var(--gold-bright);
  text-decoration: none;
  transition: color 200ms ease;
}

footer a:hover {
  color: var(--ink);
}

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

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--gold-bright);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(245, 209, 138, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease, border-color 200ms ease;
}

.social-links a:hover {
  background: rgba(245, 209, 138, 0.15);
  border-color: rgba(245, 209, 138, 0.5);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: var(--gold-bright);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 900ms ease forwards;
}

.reveal.delay-1 { animation-delay: 120ms; }
.reveal.delay-2 { animation-delay: 220ms; }
.reveal.delay-3 { animation-delay: 320ms; }
.reveal.delay-4 { animation-delay: 420ms; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lang-section {
  display: none;
}

body[data-lang="nl"] .lang-section[data-lang="nl"],
body[data-lang="en"] .lang-section[data-lang="en"] {
  display: block;
}

body[data-lang="nl"] .footer-links .lang-section[data-lang="nl"],
body[data-lang="en"] .footer-links .lang-section[data-lang="en"] {
  display: inline;
}

body[data-lang="nl"] .nav.lang-section[data-lang="nl"],
body[data-lang="en"] .nav.lang-section[data-lang="en"] {
  display: flex;
}

body[data-lang="nl"] .cta.lang-section[data-lang="nl"],
body[data-lang="en"] .cta.lang-section[data-lang="en"] {
  display: flex;
}

body[data-lang="nl"] .cards.lang-section[data-lang="nl"],
body[data-lang="en"] .cards.lang-section[data-lang="en"] {
  display: grid;
}

body[data-lang="nl"] .about-highlights.lang-section[data-lang="nl"],
body[data-lang="en"] .about-highlights.lang-section[data-lang="en"] {
  display: grid;
}

body[data-lang="nl"] .hero-card.lang-section[data-lang="nl"],
body[data-lang="en"] .hero-card.lang-section[data-lang="en"] {
  display: grid;
}

body[data-lang="nl"] .timeline.lang-section[data-lang="nl"],
body[data-lang="en"] .timeline.lang-section[data-lang="en"] {
  display: grid;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-bottom: 48px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-right {
    justify-content: flex-start;
  }

  .nav {
    flex-wrap: wrap;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
    margin-bottom: 24px;
  }

  .timeline {
    padding-left: 40px;
  }

  .timeline::before {
    left: 14px;
  }

  .timeline-item::before {
    left: -40px;
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .btn:hover {
    transform: none;
  }
}
