  :root {
    --ground: #060912;
    --ground-2: #0C1220;
    --ground-3: #141B2C;
    --ground-4: #1A2334;
    --ink: #E8EEF7;
    --ink-2: #B8C3D6;
    --ink-3: #8898B0;
    --muted: #6B7A8F;
    --line: #1E2A3E;
    --line-2: #2A3549;
    --line-dashed: #24334A;

    --cyan: #22D3EE;
    --blue: #3B82F6;
    --gradient: linear-gradient(135deg, #22D3EE 0%, #3B82F6 100%);
    --gradient-soft: linear-gradient(135deg, rgba(34, 211, 238, 0.14) 0%, rgba(59, 130, 246, 0.14) 100%);

    --warm: #E5B577;
    --warm-soft: rgba(229, 181, 119, 0.12);
    --success: #4EAF88;
    --success-soft: rgba(78, 175, 136, 0.14);

    --sans: Inter, -apple-system, BlinkMacSystemFont, "system-ui", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  }

  :root[data-theme="light"] {
    --ground: #FAFBFD;
    --ground-2: #FFFFFF;
    --ground-3: #F0F4F9;
    --ground-4: #E6EBF2;
    --ink: #060912;
    --ink-2: #2A3B52;
    --ink-3: #4A5B73;
    --muted: #6B7A8F;
    --line: #DDE3EC;
    --line-2: #E8ECF3;
    --line-dashed: #D8DFE8;

    --cyan: #0891B2;
    --blue: #2563EB;
    --gradient: linear-gradient(135deg, #0891B2 0%, #2563EB 100%);
    --gradient-soft: linear-gradient(135deg, rgba(8, 145, 178, 0.08) 0%, rgba(37, 99, 235, 0.08) 100%);

    --warm: #B87A3D;
    --warm-soft: rgba(184, 122, 61, 0.12);
    --success: #2E7D5C;
    --success-soft: rgba(46, 125, 92, 0.12);
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    background: var(--ground);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-feature-settings: "ss01", "cv11";
    overflow-x: hidden;
  }

  @media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    html { scroll-behavior: auto; }
  }

  .wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; }

  /* Warm labels — no more monospace */
  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--cyan);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: -0.005em;
    margin-bottom: 22px;
  }
  .section-label::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 10px currentColor;
    flex: none;
  }

  h1, h2, h3, h4, h5 {
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 0;
    text-wrap: balance;
  }

  h1 {
    font-size: clamp(44px, 6vw, 76px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.035em;
  }
  h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin: 0 0 20px;
  }
  h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.015em;
    margin: 0 0 12px;
  }

  h1 em, h2 em {
    font-style: italic;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }

  p { margin: 0 0 16px; }
  a { color: var(--cyan); text-decoration: none; }
  a:hover { color: var(--blue); }

  :focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 3px;
    border-radius: 6px;
  }

  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 26px;
    border-radius: 100px;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    letter-spacing: -0.005em;
    white-space: nowrap;
  }
  .btn:hover { text-decoration: none; }
  .btn:active { transform: translateY(1px); }
  .btn svg { width: 16px; height: 16px; flex: none; }

  .btn-primary {
    background: var(--gradient);
    color: #061020;
    box-shadow: 0 8px 32px -8px rgba(34, 211, 238, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  }
  .btn-primary:hover {
    box-shadow: 0 12px 40px -8px rgba(34, 211, 238, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
    color: #061020;
  }

  .btn-ghost {
    background: var(--ground-3);
    color: var(--ink);
    border-color: var(--line-2);
  }
  .btn-ghost:hover { background: var(--ground-4); color: var(--ink); }

  .btn-lg { padding: 16px 30px; font-size: 16px; }
  .btn-sm { padding: 10px 18px; font-size: 13.5px; font-weight: 500; }

  /* Notice bar — warmer */
  .notice-bar {
    background: var(--ground-2);
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
    font-size: 13px;
    color: var(--ink-3);
    text-align: center;
    font-weight: 400;
  }
  .notice-bar strong { color: var(--ink-2); font-weight: 600; }

  /* Nav */
  nav.top {
    position: sticky;
    top: 16px;
    z-index: 40;
    padding: 0 20px;
    margin-top: 20px;
  }
  nav.top .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px 10px 24px;
    background: color-mix(in oklab, var(--ground-2) 80%, transparent);
    border: 1px solid var(--line);
    border-radius: 100px;
    backdrop-filter: saturate(1.6) blur(20px);
    -webkit-backdrop-filter: saturate(1.6) blur(20px);
  }
  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--ink);
  }
  .brand:hover { text-decoration: none; color: var(--ink); }
  .brand-mark {
    display: block;
    width: 30px;
    height: 30px;
    color: var(--ink);
  }
  .brand-name {
    font-family: var(--sans);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
  }
  nav.top .links {
    display: flex;
    gap: 8px;
    align-items: center;
  }
  nav.top .links > a {
    color: var(--ink-2);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 100px;
    transition: color 0.15s, background 0.15s;
  }
  nav.top .links > a:hover { color: var(--ink); background: var(--ground-3); text-decoration: none; }

  @media (max-width: 900px) {
    nav.top .links > a:not(.btn) { display: none; }
    nav.top .nav-inner { padding: 8px 8px 8px 20px; }
  }

  /* Hero */
  section.hero {
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
      linear-gradient(to bottom, transparent 0%, var(--ground) 90%),
      linear-gradient(color-mix(in oklab, var(--ink) 4%, transparent) 1px, transparent 1px),
      linear-gradient(90deg, color-mix(in oklab, var(--ink) 4%, transparent) 1px, transparent 1px);
    background-size: 100% 100%, 64px 64px, 64px 64px;
    mask-image: radial-gradient(ellipse at 50% 20%, black 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 20%, black 0%, transparent 75%);
  }
  .hero-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
  }
  .hero .wrap { position: relative; z-index: 1; }

  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 80px;
    align-items: center;
  }
  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 56px; align-items: start; }
    section.hero { padding: 60px 0 60px; }
  }

  h1.hero-title { margin-bottom: 28px; }

  .hero-sub {
    font-size: 19px;
    line-height: 1.55;
    color: var(--ink-2);
    max-width: 560px;
    margin: 0 0 40px;
  }

  .hero-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
  }

  .hero-audiences {
    display: flex;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    max-width: 620px;
    flex-wrap: wrap;
  }
  .hero-aud-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    color: var(--ink-2);
    font-size: 14.5px;
    line-height: 1.55;
    flex: 1;
    min-width: 220px;
  }
  .hero-aud-item strong {
    display: block;
    color: var(--ink);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 3px;
  }
  .hero-aud-item .tick {
    color: var(--cyan);
    font-size: 18px;
    line-height: 1;
    margin-top: 2px;
    flex: none;
  }

  /* Hero preview card — warmer, product-focused */
  .hero-preview {
    background: var(--ground-2);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.6);
  }
  .hero-preview::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, rgba(34, 211, 238, 0.1) 0%, transparent 55%);
    pointer-events: none;
  }
  .hero-preview > * { position: relative; }

  /* Browser chrome */
  .browser-bar {
    display: flex;
    align-items: center;
    padding: 12px 14px;
    gap: 12px;
    border-bottom: 1px solid var(--line);
  }
  .browser-bar .dots {
    display: flex;
    gap: 6px;
  }
  .browser-bar .dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--ground-4);
  }
  .browser-bar .url {
    flex: 1;
    background: var(--ground-3);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 12px;
    color: var(--ink-3);
    text-align: center;
    letter-spacing: -0.005em;
  }
  .browser-bar .url .lock {
    color: var(--success);
    margin-right: 6px;
  }

  .preview-body {
    padding: 24px 24px 20px;
  }
  .preview-greet {
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
  }
  .preview-greet-sub {
    font-size: 13.5px;
    color: var(--ink-3);
    margin-bottom: 22px;
  }
  .preview-tiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 22px;
  }
  .preview-tile {
    background: var(--ground-3);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 14px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .preview-tile .icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--gradient-soft);
    color: var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
  }
  .preview-tile .icon svg { width: 16px; height: 16px; }
  .preview-tile .n {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.015em;
  }
  .preview-tile .l {
    font-size: 11.5px;
    color: var(--ink-3);
    margin-top: 3px;
  }

  .preview-list-head {
    font-size: 12px;
    color: var(--ink-3);
    font-weight: 500;
    margin-bottom: 10px;
    padding: 0 4px;
  }
  .preview-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .preview-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 10px;
    border-radius: 8px;
    transition: background 0.15s ease;
  }
  .preview-item:hover { background: var(--ground-3); }
  .preview-item .avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--gradient-soft);
    color: var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex: none;
    letter-spacing: 0;
  }
  .preview-item .avatar.warm {
    background: var(--warm-soft);
    color: var(--warm);
  }
  .preview-item .avatar.success {
    background: var(--success-soft);
    color: var(--success);
  }
  .preview-item .body {
    flex: 1;
    min-width: 0;
  }
  .preview-item .from {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.005em;
  }
  .preview-item .subject {
    font-size: 12px;
    color: var(--ink-3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .preview-item .time {
    font-size: 11.5px;
    color: var(--muted);
    flex: none;
    letter-spacing: -0.005em;
  }

  .preview-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-top: 1px solid var(--line);
    margin-top: 4px;
  }
  .preview-foot .loc {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--ink-3);
    letter-spacing: -0.005em;
  }
  .preview-foot .loc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 8px var(--success);
    flex: none;
  }
  .preview-foot .brand-mini {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -0.005em;
  }

  /* Sections */
  section { padding: 100px 0; position: relative; }
  section .section-head {
    margin-bottom: 60px;
    max-width: 780px;
  }
  section .section-head p.lead {
    font-size: 19px;
    color: var(--ink-2);
    line-height: 1.55;
    max-width: 640px;
    margin: 0;
  }

  /* Features */
  #product { padding-top: 60px; }
  .features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  @media (max-width: 900px) {
    .features { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    .features { grid-template-columns: 1fr; }
  }
  .feat {
    padding: 32px;
    background: var(--ground-2);
    border: 1px solid var(--line);
    border-radius: 20px;
    transition: border-color 0.2s, background 0.2s;
    position: relative;
    overflow: hidden;
  }
  .feat::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, rgba(34, 211, 238, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
  }
  .feat:hover { border-color: var(--line-2); }
  .feat:hover::before { opacity: 1; }
  .feat > * { position: relative; }
  .feat-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 24px;
    color: var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-soft);
    border-radius: 12px;
    padding: 10px;
  }
  .feat-icon svg { width: 100%; height: 100%; }
  .feat h3 { margin-bottom: 12px; font-size: 19px; letter-spacing: -0.015em; }
  .feat p {
    color: var(--ink-2);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .feat .spec {
    font-size: 13px;
    color: var(--ink-3);
    line-height: 1.55;
    padding-top: 16px;
    border-top: 1px dashed var(--line-dashed);
  }
  .feat .spec strong { color: var(--ink-2); font-weight: 600; }

  /* Comparison */
  .compare-wrap {
    overflow-x: auto;
    background: var(--ground-2);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 4px;
  }
  table.compare {
    width: 100%;
    min-width: 720px;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 14.5px;
  }
  table.compare th, table.compare td {
    padding: 20px 24px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    vertical-align: middle;
  }
  table.compare thead th {
    font-family: var(--sans);
    font-weight: 600;
    color: var(--ink);
    font-size: 16px;
    padding: 28px 24px 22px;
  }
  table.compare thead th.suvern {
    background: var(--gradient-soft);
    position: relative;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }
  table.compare thead th.suvern::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }
  table.compare thead th .brand-line {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    display: block;
  }
  table.compare thead th.other .brand-line { color: var(--ink-2); }
  table.compare thead th .sub {
    font-size: 13px;
    color: var(--muted);
    font-weight: 400;
    margin-top: 6px;
    display: block;
  }
  table.compare tbody th {
    color: var(--ink-3);
    font-weight: 500;
    font-size: 13.5px;
    width: 220px;
  }
  table.compare tbody td.suvern {
    background: var(--gradient-soft);
    color: var(--ink);
    font-weight: 500;
  }
  table.compare tbody td { color: var(--ink-2); }
  table.compare tbody tr:last-child td.suvern {
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
  }
  table.compare tbody tr:last-child th, table.compare tbody tr:last-child td { border-bottom: 0; }
  table.compare .highlight {
    color: var(--cyan);
    font-weight: 600;
  }
  .compare-note {
    padding: 20px 24px;
    color: var(--muted);
    font-size: 13px;
    font-style: italic;
  }

  /* Pricing */
  #prijzen .section-head { margin-bottom: 40px; }
  .price-toggle-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
  }
  .price-toggle {
    display: inline-flex;
    padding: 6px;
    background: var(--ground-2);
    border: 1px solid var(--line);
    border-radius: 100px;
    gap: 4px;
  }
  .price-toggle button {
    padding: 12px 28px;
    background: transparent;
    color: var(--ink-3);
    border: 0;
    border-radius: 100px;
    font-family: var(--sans);
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s, background 0.25s;
    letter-spacing: -0.005em;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .price-toggle button .count {
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 100px;
    background: var(--ground-3);
    color: var(--muted);
    font-weight: 500;
  }
  .price-toggle button.active {
    background: var(--gradient);
    color: #061020;
  }
  .price-toggle button.active .count {
    background: rgba(6, 16, 32, 0.15);
    color: rgba(6, 16, 32, 0.7);
  }

  .price-view[hidden] { display: none; }

  .price-grid {
    display: grid;
    gap: 20px;
  }
  .price-grid.biz { grid-template-columns: repeat(3, 1fr); }
  .price-grid.con {
    grid-template-columns: repeat(2, 1fr);
    max-width: 820px;
    margin: 0 auto;
  }
  @media (max-width: 900px) {
    .price-grid.biz, .price-grid.con { grid-template-columns: 1fr; }
  }

  .price-col {
    padding: 40px 32px;
    background: var(--ground-2);
    border: 1px solid var(--line);
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .price-col.featured {
    border-color: transparent;
    background: linear-gradient(var(--ground-2), var(--ground-2)) padding-box,
                var(--gradient) border-box;
    padding-top: 56px;
  }
  .price-col.featured::before {
    content: "Meest gekozen";
    position: absolute;
    top: 20px;
    right: 24px;
    padding: 5px 14px;
    background: var(--gradient);
    color: #061020;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -0.005em;
    border-radius: 100px;
  }
  .price-col.featured::after {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle at top right, rgba(34, 211, 238, 0.1) 0%, transparent 60%);
    pointer-events: none;
  }
  .price-col > * { position: relative; }

  .price-tier .name {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
    display: block;
  }
  .price-tier .role {
    font-size: 13.5px;
    color: var(--ink-3);
    margin-top: 6px;
    display: block;
    font-style: italic;
  }
  .price-tag {
    margin: 24px 0 8px;
    display: flex;
    align-items: baseline;
    gap: 4px;
  }
  .price-tag .cur {
    font-size: 24px;
    color: var(--ink);
    font-weight: 700;
  }
  .price-tag .amount {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--ink);
    line-height: 1;
    font-variant-numeric: tabular-nums;
  }
  .price-tag .per {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.3;
    margin-left: 8px;
  }
  .price-desc {
    color: var(--ink-2);
    font-size: 14.5px;
    line-height: 1.55;
    margin: 20px 0 28px;
    min-height: 48px;
  }
  .price-cta {
    display: flex;
    width: 100%;
    text-align: center;
    margin-bottom: 32px;
    justify-content: center;
  }
  .price-features {
    list-style: none;
    padding: 24px 0 0;
    margin: 0;
    border-top: 1px solid var(--line);
    flex: 1;
  }
  .price-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 14.5px;
    line-height: 1.5;
    color: var(--ink-2);
  }
  .price-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gradient-soft);
  }
  .price-features li::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 20px;
    width: 8px;
    height: 4px;
    border-left: 1.5px solid var(--cyan);
    border-bottom: 1.5px solid var(--cyan);
    transform: rotate(-45deg);
  }
  .price-features li strong { color: var(--ink); font-weight: 600; }

  /* Add-ons */
  .addons-block {
    margin-top: 72px;
    padding: 36px;
    background: var(--ground-2);
    border: 1px solid var(--line);
    border-radius: 20px;
  }
  .addons-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 28px;
    flex-wrap: wrap;
  }
  .addons-head h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 8px 0 0;
    letter-spacing: -0.02em;
  }
  .addons-head p {
    font-size: 14.5px;
    color: var(--ink-3);
    margin: 6px 0 0;
    max-width: 380px;
    line-height: 1.5;
  }
  .addons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 40px;
  }
  @media (max-width: 700px) {
    .addons { grid-template-columns: 1fr; }
  }
  .addon-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 24px;
    padding: 16px 0;
    border-bottom: 1px dashed var(--line-dashed);
  }
  .addon-row:last-child { border-bottom: 0; }
  @media (max-width: 700px) {
    .addon-row:nth-last-child(2) { border-bottom: 1px dashed var(--line-dashed); }
  }
  .addon-row .name { color: var(--ink); font-size: 14.5px; line-height: 1.4; }
  .addon-row .p {
    font-size: 14px;
    color: var(--cyan);
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
    font-weight: 600;
  }

  /* Sovereignty */
  section.sov {
    background: var(--ground-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
  }
  section.sov::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at center, rgba(229, 181, 119, 0.08) 0%, transparent 60%);
    pointer-events: none;
  }
  .sov-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 80px;
    align-items: center;
    position: relative;
  }
  @media (max-width: 900px) {
    .sov-grid { grid-template-columns: 1fr; gap: 56px; }
  }
  .map-frame {
    aspect-ratio: 4 / 4.6;
    background: var(--ground);
    border: 1px solid var(--line);
    position: relative;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
  }
  .map-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(color-mix(in oklab, var(--ink) 4%, transparent) 1px, transparent 1px),
      linear-gradient(90deg, color-mix(in oklab, var(--ink) 4%, transparent) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 90%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 90%);
    pointer-events: none;
  }
  .map-frame > * { position: relative; }

  .map-svg {
    max-width: 220px;
    width: 100%;
    display: block;
    margin-bottom: 24px;
  }
  .map-svg .nl-shape {
    fill: var(--ground-3);
    stroke: var(--ink-2);
    stroke-width: 1.6;
    stroke-linejoin: round;
    stroke-linecap: round;
  }
  .map-svg .marker-dot {
    fill: var(--warm);
    stroke: var(--ground-2);
    stroke-width: 1.5;
  }
  .map-svg .marker-ring { fill: none; stroke: var(--warm); stroke-width: 1; opacity: 0.5; }
  .map-svg .marker-ring-2 { fill: none; stroke: var(--warm); stroke-width: 0.6; opacity: 0.25; }

  .map-caption {
    text-align: center;
  }
  .map-caption .city {
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
  }
  .map-caption .country {
    font-size: 14px;
    color: var(--ink-3);
  }

  /* Sovereignty content — warmer, no technical list */
  .sov-content h2 { margin-bottom: 24px; }
  .sov-lead {
    font-size: 18px;
    color: var(--ink-2);
    line-height: 1.65;
    margin-bottom: 32px;
  }
  .sov-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
  }
  .sov-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--ground);
    border: 1px solid var(--line);
    border-radius: 100px;
    font-size: 13.5px;
    color: var(--ink-2);
    font-weight: 500;
  }
  .sov-badge .b-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
    flex: none;
  }
  .sov-note {
    padding: 24px 28px;
    background: var(--warm-soft);
    border-left: 3px solid var(--warm);
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--ink-2);
  }
  .sov-note strong { color: var(--ink); font-weight: 600; }

  /* FAQ */
  .faq { max-width: 860px; }
  details.faq-item {
    border-bottom: 1px solid var(--line);
  }
  details.faq-item:first-child { border-top: 1px solid var(--line); }
  details.faq-item summary {
    padding: 28px 0;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--ink);
    transition: color 0.15s ease;
  }
  details.faq-item summary::-webkit-details-marker { display: none; }
  details.faq-item summary::after {
    content: "+";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--ground-3);
    border: 1px solid var(--line);
    border-radius: 50%;
    font-family: var(--sans);
    font-weight: 400;
    font-size: 20px;
    color: var(--ink-2);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
    flex: none;
    line-height: 1;
  }
  details.faq-item[open] summary::after {
    transform: rotate(45deg);
    background: var(--gradient);
    color: #061020;
    border-color: transparent;
  }
  details.faq-item summary:hover { color: var(--cyan); }
  details.faq-item .a {
    padding: 0 48px 28px 0;
    color: var(--ink-2);
    font-size: 15.5px;
    line-height: 1.65;
    max-width: 720px;
  }
  details.faq-item .a p { margin: 0 0 12px; }
  details.faq-item .a p:last-child { margin: 0; }

  /* Final CTA */
  section.cta {
    text-align: center;
    padding: 140px 0;
    border-top: 1px solid var(--line);
    position: relative;
    overflow: hidden;
  }
  section.cta::before {
    content: "";
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(34, 211, 238, 0.14) 0%, transparent 65%);
    pointer-events: none;
  }
  section.cta .wrap { position: relative; }
  section.cta h2 {
    font-size: clamp(40px, 5.5vw, 68px);
    max-width: 820px;
    margin: 0 auto 20px;
    letter-spacing: -0.035em;
  }
  section.cta p {
    font-size: 19px;
    color: var(--ink-2);
    max-width: 620px;
    margin: 0 auto 40px;
  }
  section.cta .actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Footer */
  footer {
    border-top: 1px solid var(--line);
    padding: 72px 0 40px;
    background: var(--ground-2);
  }
  .foot-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
  }
  @media (max-width: 780px) {
    .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  }
  .foot-brand p {
    color: var(--muted);
    font-size: 14px;
    max-width: 340px;
    margin-top: 20px;
    line-height: 1.55;
  }
  .foot-col h5 {
    font-size: 14px;
    color: var(--ink);
    font-weight: 600;
    margin: 0 0 18px;
    letter-spacing: -0.005em;
  }
  .foot-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .foot-col ul li { margin-bottom: 12px; }
  .foot-col ul li a {
    color: var(--ink-2);
    font-size: 14.5px;
    text-decoration: none;
  }
  .foot-col ul li a:hover { color: var(--ink); text-decoration: none; }
  .foot-bar {
    padding-top: 32px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--muted);
    font-size: 13px;
    flex-wrap: wrap;
    gap: 16px;
  }
  .foot-bar .krd {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    font-size: 13px;
  }

/* ============ Nextcloud-style app nav in hero preview ============ */
.nc-nav {
  display: flex;
  align-items: center;
  padding: 8px 14px;
  gap: 10px;
  background: linear-gradient(180deg, var(--ground-3), var(--ground-2));
  border-bottom: 1px solid var(--line);
}
.nc-brand {
  color: var(--ink);
  display: flex;
  align-items: center;
}
.nc-brand-mark {
  width: 22px;
  height: 22px;
}
.nc-apps {
  display: flex;
  gap: 2px;
  flex: 1;
  justify-content: center;
  padding: 0 8px;
}
.nc-app {
  background: transparent;
  border: 0;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  padding: 0;
}
.nc-app:hover { background: var(--ground-4); color: var(--ink-2); }
.nc-app.active {
  background: var(--gradient-soft);
  color: var(--cyan);
}
.nc-app svg { width: 15px; height: 15px; }
.nc-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nc-icon-btn {
  background: transparent;
  border: 0;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.nc-icon-btn:hover { background: var(--ground-4); color: var(--ink-2); }
.nc-icon-btn svg { width: 14px; height: 14px; }
.nc-avatar-sm {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--warm-soft);
  color: var(--warm);
  font-size: 10.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============ Nextcloud-style dashboard widgets ============ */
.preview-widgets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}
.nc-widget {
  background: var(--ground-3);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
}
.nc-widget.nc-widget-wide { margin-top: 0; }
.widget-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.widget-head svg {
  width: 13px;
  height: 13px;
  color: var(--cyan);
}
.widget-head .w-count {
  margin-left: auto;
  font-size: 10.5px;
  padding: 1px 6px;
  border-radius: 100px;
  background: var(--gradient-soft);
  color: var(--cyan);
  font-weight: 700;
}
.widget-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 11.5px;
  color: var(--ink-2);
  line-height: 1.35;
}
.widget-item .w-time {
  font-size: 10.5px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  flex: none;
  min-width: 34px;
}
.widget-item .w-title {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.widget-item .w-avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gradient-soft);
  color: var(--cyan);
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.widget-item .w-avatar.w-warm { background: var(--warm-soft); color: var(--warm); }
.widget-item .w-filetype {
  padding: 2px 5px;
  border-radius: 3px;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex: none;
}
.widget-item .w-filetype.docx { background: rgba(59, 130, 246, 0.16); color: #6398E8; }
.widget-item .w-filetype.xlsx { background: rgba(78, 175, 136, 0.16); color: var(--success); }
.widget-item .w-filetype.pdf { background: rgba(248, 113, 113, 0.16); color: var(--danger); }
.widget-item .w-filetype.pptx { background: rgba(229, 181, 119, 0.16); color: var(--warm); }

/* ============ Map: Wadden + Zeeland ============ */
.map-svg .wadden {
  fill: var(--ground-3);
  stroke: var(--ink-2);
  stroke-width: 1;
  opacity: 0.7;
}
.map-svg .zeeland {
  fill: var(--ground-3);
  stroke: var(--ink-2);
  stroke-width: 1.4;
  stroke-linejoin: round;
  opacity: 0.85;
}

/* ============ Preview image (Nextcloud screenshot) ============ */
.preview-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--line);
}
.hero-preview:has(.preview-img) {
  background: transparent;
  border: 0;
  padding: 0;
  overflow: visible;
}
.hero-preview:has(.preview-img)::before { display: none; }

/* ============ Sovereignty section: single column when no map ============ */
.sov-grid.sov-grid-single {
  grid-template-columns: minmax(0, 780px);
  justify-content: center;
  text-align: left;
}
@media (max-width: 900px) {
  .sov-grid.sov-grid-single { grid-template-columns: 1fr; }
}
