:root {
  /* Brand Palette - StockWatch inspired warm business casual */
  --bg-canvas: #f9f8f6;
  --bg-card: #ffffff;
  --bg-card-subtle: #f4f2ee;
  --bg-card-hover: #ffffff;
  
  --text-main: #2f2e40;
  --text-secondary: #5a5870;
  --text-muted: #8b889d;
  --text-inverse: #ffffff;
  
  --accent-primary: #c27367;
  --accent-primary-hover: #b06256;
  --accent-soft: rgba(194, 115, 103, 0.12);
  --accent-subtle: #fbf1ef;
  
  --brand-navy: #414059;
  --brand-navy-light: #52506e;
  
  --border-light: #eae6df;
  --border-focus: #c27367;
  
  --badge-bg: #f3efe9;
  --badge-text: #414059;
  --badge-accent-bg: #fcedea;
  --badge-accent-text: #a84f43;
  
  --shadow-sm: 0 1px 3px rgba(47, 46, 64, 0.04), 0 1px 2px rgba(47, 46, 64, 0.02);
  --shadow-md: 0 4px 16px -2px rgba(47, 46, 64, 0.06), 0 2px 6px -1px rgba(47, 46, 64, 0.03);
  --shadow-lg: 0 12px 28px -4px rgba(47, 46, 64, 0.08), 0 4px 10px -2px rgba(47, 46, 64, 0.03);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;

  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --container-max: 1120px;
}

/* Base resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  background-color: var(--bg-canvas);
  color: var(--text-main);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Header & Nav */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(249, 248, 246, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.2s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--brand-navy);
}

.logo-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--brand-navy) 0%, #2f2e40 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(65, 64, 89, 0.2);
}

.logo-text {
  font-weight: 800;
  letter-spacing: -0.03em;
}

.logo-dot {
  color: var(--accent-primary);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.75rem;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.15s ease;
  position: relative;
  padding: 0.25rem 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-primary);
  transition: width 0.2s ease;
  border-radius: 2px;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language Switcher */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  background-color: var(--badge-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 3px;
  gap: 2px;
}

.lang-btn {
  padding: 4px 10px;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  transition: all 0.15s ease;
}

.lang-btn.active {
  background-color: var(--bg-card);
  color: var(--brand-navy);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.lang-btn:hover:not(.active) {
  color: var(--brand-navy);
}

/* Mobile Nav Toggle */
.mobile-menu-toggle {
  display: none;
  padding: 8px;
  color: var(--brand-navy);
}

/* Hero Section */
.hero {
  padding: 5.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -10%;
  right: 5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(194, 115, 103, 0.08) 0%, rgba(249, 248, 246, 0) 70%);
  pointer-events: none;
  z-index: -1;
}

.hero-badge-wrap {
  display: inline-flex;
  margin-bottom: 1.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  background-color: var(--badge-bg);
  color: var(--badge-text);
  border: 1px solid var(--border-light);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--accent-primary);
}

.badge-accent {
  background-color: var(--badge-accent-bg);
  color: var(--badge-accent-text);
  border-color: rgba(194, 115, 103, 0.25);
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.035em;
  color: var(--brand-navy);
  margin-bottom: 1.5rem;
  max-width: 820px;
}

.hero-title .highlight {
  color: var(--accent-primary);
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 680px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 700;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--brand-navy);
  color: var(--text-inverse);
  box-shadow: 0 2px 6px rgba(65, 64, 89, 0.25);
}

.btn-primary:hover {
  background-color: #2e2c40;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(65, 64, 89, 0.3);
}

.btn-secondary {
  background-color: var(--bg-card);
  color: var(--brand-navy);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: #ffffff;
  border-color: #d8d3c9;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Sections Common */
.section {
  padding: 4.5rem 0;
  border-top: 1px solid var(--border-light);
}

.section-header {
  margin-bottom: 3rem;
  max-width: 640px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-primary);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--brand-navy);
  line-height: 1.25;
  margin-bottom: 0.85rem;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Grid & Cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: #dfdbd1;
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background-color: var(--accent-subtle);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--brand-navy);
  margin-bottom: 0.75rem;
}

.card-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Ventures Section Specifics */
.venture-card {
  padding: 2.25rem;
}

.venture-card.featured {
  border-color: rgba(194, 115, 103, 0.4);
  background: linear-gradient(180deg, #ffffff 0%, #fffcfb 100%);
}

.venture-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.venture-category {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-primary);
}

.venture-name {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--brand-navy);
  margin-top: 0.25rem;
}

.venture-content {
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.venture-meta {
  border-top: 1px solid var(--border-light);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.875rem;
}

.meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.meta-label {
  color: var(--text-muted);
  font-weight: 500;
}

.meta-val {
  font-weight: 600;
  color: var(--brand-navy);
}

.meta-link {
  color: var(--accent-primary);
  font-weight: 700;
  transition: color 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.meta-link:hover {
  color: var(--accent-primary-hover);
  text-decoration: underline;
}

/* Company / KvK Section */
.corporate-box {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.corporate-table {
  width: 100%;
  border-collapse: collapse;
}

.corporate-table tr {
  border-bottom: 1px solid var(--border-light);
}

.corporate-table tr:last-child {
  border-bottom: none;
}

.corporate-table th,
.corporate-table td {
  padding: 1.25rem 1.75rem;
  text-align: left;
  font-size: 0.9375rem;
}

.corporate-table th {
  width: 32%;
  color: var(--text-secondary);
  font-weight: 600;
  background-color: #faf9f7;
}

.corporate-table td {
  color: var(--brand-navy);
  font-weight: 600;
}

.copy-badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  background-color: var(--badge-bg);
  border: 1px solid var(--border-light);
  color: var(--brand-navy);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  margin-left: 0.75rem;
  transition: all 0.15s ease;
}

.copy-badge-btn:hover {
  background-color: var(--brand-navy);
  color: #ffffff;
  border-color: var(--brand-navy);
}

/* Contact Section */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.contact-card-box {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
}

.contact-item:hover {
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-md);
}

.contact-entity {
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.contact-address {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-navy);
}

/* Footer */
.footer {
  margin-top: auto;
  background-color: #f3efe9;
  border-top: 1px solid var(--border-light);
  padding: 3rem 0;
  color: var(--text-secondary);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-brand {
  max-width: 380px;
}

.footer-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-navy);
  transition: color 0.15s ease;
}

.footer-link:hover {
  color: var(--accent-primary);
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-legal-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Toast Notification for Clipboard Copy */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: var(--brand-navy);
  color: #ffffff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .corporate-table th {
    width: 40%;
  }
}

@media (max-width: 680px) {
  .nav-links {
    display: none;
  }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background-color: var(--bg-canvas);
    border-bottom: 1px solid var(--border-light);
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: var(--shadow-md);
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero {
    padding: 3.5rem 0 2.5rem;
  }
  .corporate-table, .corporate-table tbody, .corporate-table tr, .corporate-table th, .corporate-table td {
    display: block;
    width: 100%;
  }
  .corporate-table tr {
    padding: 1rem 1.25rem;
  }
  .corporate-table th {
    padding: 0 0 0.35rem 0;
    background: transparent;
  }
  .corporate-table td {
    padding: 0;
  }
  .footer-top {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }
}
