  :root {
    --black: #080A0C;
    --dark: #0E1115;
    --card: #131820;
    --border: rgba(201,168,76,0.18);
    --gold: #C9A84C;
    --gold-light: #E8C876;
    --gold-dim: rgba(201,168,76,0.08);
    --text: #D4C9B4;
    --muted: #5E6472;
    --white: #F0EAE0;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html {
    scroll-behavior: smooth;
    /* Tells the UA to render scrollbars and native form controls dark. */
    color-scheme: dark;
  }

  body {
    background: var(--black);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    cursor: crosshair;
    -webkit-tap-highlight-color: rgba(201,168,76,0.2);
  }

  /* Anchor targets must clear the fixed header when jumped to. */
  :target,
  section[id],
  #main { scroll-margin-top: 90px; }

  a, button, input, textarea, label, summary { touch-action: manipulation; }

  /* ── GRID TEXTURE ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
      linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
  }

  /* ── NAV ── */
  /* Scoped to the id: the page also contains <nav> elements for the language
     switcher, which must not inherit the fixed header layout. */
  #mainNav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 48px;
    border-bottom: 1px solid transparent;
    transition: border-color 0.4s, background 0.4s, backdrop-filter 0.4s;
  }
  #mainNav.scrolled {
    border-color: var(--border);
    background: rgba(8,10,12,0.85);
    backdrop-filter: blur(16px);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }
  .logo-mark {
    width: 36px;
    height: 36px;
    border: 1px solid var(--gold);
    transform: rotate(45deg);
    position: relative;
    flex-shrink: 0;
  }
  .logo-mark::after {
    content: '';
    position: absolute;
    inset: 6px;
    background: var(--gold);
    transform: rotate(0deg);
  }
  .logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 200;
    font-size: 15px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
  }
  .logo-text span {
    color: var(--gold);
    font-weight: 500;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
  }
  .nav-links a {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--gold); }

  .nav-cta {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold) !important;
    border: 1px solid var(--border);
    padding: 10px 20px !important;
    transition: background 0.3s !important, border-color 0.3s !important;
  }
  .nav-cta:hover {
    background: var(--gold-dim) !important;
    border-color: var(--gold) !important;
    color: var(--gold-light) !important;
  }

  /* ── HERO ── */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 48px 80px;
    overflow: hidden;
    z-index: 1;
  }

  .hero-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    pointer-events: none;
  }
  .hero-glow-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
    bottom: 100px;
    left: -100px;
    pointer-events: none;
  }

  .hero-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.2s;
  }
  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(52px, 7vw, 96px);
    line-height: 1;
    color: var(--white);
    max-width: 800px;
    margin-bottom: 8px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.35s;
  }
  .hero-title em {
    font-style: italic;
    color: var(--gold);
  }

  .hero-title-line2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(52px, 7vw, 96px);
    line-height: 1;
    color: var(--white);
    max-width: 800px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.5s;
  }

  .hero-sub {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 560px;
    margin-bottom: 56px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.65s;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.8s;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    padding: 16px 32px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    position: relative;
    overflow: hidden;
  }
  .btn-primary::after {
    content: '→';
    font-size: 14px;
    transition: transform 0.3s;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
  .btn-primary:hover::after { transform: translateX(4px); }

  .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--border);
    padding: 15px 31px;
    text-decoration: none;
    transition: border-color 0.3s, background 0.3s;
  }
  .btn-ghost:hover { border-color: var(--gold); background: var(--gold-dim); }

  /* ISIN badge */
  .isin-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    border: 1px solid var(--border);
    padding: 12px 20px;
    margin-top: 56px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.95s;
    width: fit-content;
  }
  .isin-label {
    color: var(--muted);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }
  .isin-value {
    color: var(--gold);
    letter-spacing: 0.08em;
  }
  .isin-sep { color: var(--border); }

  /* Scroll indicator */
  .scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.5s;
  }
  .scroll-hint span {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }

  /* ── STATS BAR ── */
  .stats-bar {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
  }
  .stat-item {
    padding: 40px 48px;
    border-right: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
  }
  .stat-item:last-child { border-right: none; }
  .stat-item:nth-child(1) { animation-delay: 0.1s; }
  .stat-item:nth-child(2) { animation-delay: 0.2s; }
  .stat-item:nth-child(3) { animation-delay: 0.3s; }
  .stat-item:nth-child(4) { animation-delay: 0.4s; }
  .stat-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.6s;
  }
  .stat-item:hover::before { transform: scaleX(1); }
  .stat-label {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
  }
  .stat-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
  }
  .stat-note {
    font-size: 12px;
    color: var(--muted);
  }

  /* ── SECTIONS ── */
  section {
    position: relative;
    z-index: 1;
  }

  .section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 48px;
  }

  .section-tag {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .section-tag::after {
    content: '';
    flex: 1;
    height: 1px;
    max-width: 60px;
    background: var(--border);
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
  }
  .section-title em { font-style: italic; color: var(--gold); }

  .section-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted);
    max-width: 640px;
  }

  /* ── PRODUCT SECTION ── */
  .product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 80px;
  }

  .product-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 32px;
  }

  .feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(201,168,76,0.08);
  }
  .feature-list li:last-child { border-bottom: none; }
  .feature-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 1px solid var(--gold);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
  }
  .feature-icon::after {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
  }
  .feature-text strong {
    display: block;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 4px;
  }

  /* Allocation visual */
  .allocation-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 40px;
    position: sticky;
    top: 100px;
  }

  .alloc-title {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 32px;
  }

  .alloc-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .alloc-item {}
  .alloc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }
  .alloc-name {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: var(--text);
  }
  .alloc-pct {
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    color: var(--gold);
  }
  .alloc-bar {
    height: 2px;
    background: rgba(201,168,76,0.1);
    position: relative;
    overflow: hidden;
  }
  .alloc-fill {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0%;
  }

  .alloc-note {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: var(--muted);
    line-height: 1.6;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    letter-spacing: 0.05em;
  }

  /* ── HOW IT WORKS ── */
  .steps-section {
    background: var(--dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 80px;
  }

  .step-item {
    padding: 48px 40px;
    border-right: 1px solid var(--border);
    position: relative;
    transition: background 0.3s;
  }
  .step-item:last-child { border-right: none; }
  .step-item:hover { background: var(--gold-dim); }

  .step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    font-weight: 300;
    color: rgba(201,168,76,0.12);
    line-height: 1;
    margin-bottom: 24px;
  }
  .step-title {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 12px;
  }
  .step-body {
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted);
  }
  .step-line {
    position: absolute;
    top: 0; left: 40px;
    width: 40px;
    height: 2px;
    background: var(--gold);
  }

  /* ── DOCUMENT SECTION ── */
  .docs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 60px;
  }

  .doc-card {
    border: 1px solid var(--border);
    padding: 32px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    text-decoration: none;
    transition: border-color 0.3s, background 0.3s;
    position: relative;
    overflow: hidden;
    background: var(--card);
  }
  .doc-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s;
    transform-origin: left;
  }
  .doc-card:hover { border-color: rgba(201,168,76,0.4); background: var(--gold-dim); }
  .doc-card:hover::before { transform: scaleX(1); }

  .doc-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 0.05em;
  }
  .doc-info {}
  .doc-name {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 6px;
  }
  .doc-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
  }
  .doc-arrow {
    margin-left: auto;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 18px;
    align-self: center;
    transition: transform 0.3s;
  }
  .doc-card:hover .doc-arrow { transform: translateX(4px); }

  /* ── CONTACT ── */
  .contact-section {
    background: var(--dark);
    border-top: 1px solid var(--border);
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
  }

  .contact-info {}
  .contact-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
  }
  .contact-item:first-child { border-top: 1px solid var(--border); }
  .contact-label {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .contact-value {
    font-size: 15px;
    color: var(--white);
  }
  .contact-value a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-value a:hover { color: var(--gold-light); }

  .contact-form {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 48px;
  }

  .form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 32px;
  }

  .form-group {
    margin-bottom: 20px;
  }
  .form-label {
    display: block;
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
  }
  .form-input {
    width: 100%;
    background: transparent;
    border: 1px solid var(--border);
    padding: 14px 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: var(--white);
    transition: border-color 0.3s;
  }
  .form-input:focus { border-color: var(--gold); }
  .form-input::placeholder { color: var(--muted); }
  textarea.form-input { resize: vertical; min-height: 100px; }

  .form-submit {
    width: 100%;
    background: var(--gold);
    border: none;
    padding: 16px;
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--black);
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 8px;
  }
  .form-submit:hover { background: var(--gold-light); }

  /* ── FOOTER ── */
  footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px 32px;
  }

  .footer-left {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.08em;
  }
  .footer-left span { color: var(--gold); }

  .footer-disclaimer {
    font-size: 11px;
    color: var(--muted);
    max-width: 500px;
    line-height: 1.6;
    text-align: right;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
  }

  /* Scroll-triggered reveals */
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ── TYPOGRAPHY POLISH ── */
  h1, h2, h3, .hero-title, .hero-title-line2 { text-wrap: balance; }
  .hero-sub, .section-body, .product-description, .step-body,
  .doc-desc, .alloc-note, .footer-disclaimer { text-wrap: pretty; }
  .alloc-pct, .isin-value, .stat-value { font-variant-numeric: tabular-nums; }

  /* ── SKIP LINK ── */
  .skip-link {
    /* fixed, not absolute: the link must reach the top of the viewport when
       focused, even if the visitor has already scrolled down the page. */
    position: fixed;
    left: 16px;
    top: -100px;
    z-index: 200;
    padding: 12px 20px;
    background: var(--card);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: top 0.2s;
  }
  .skip-link:focus { top: 16px; }

  /* ── VISIBLE FOCUS ── */
  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
  }

  /* ── LANGUAGE SWITCHER ── */
  .lang-switch ul {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
  }
  .lang-switch a {
    /* Padding brings each target to the 24x24px minimum (WCAG 2.5.8). */
    display: inline-block;
    min-width: 26px;
    padding: 6px 5px;
    text-align: center;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s;
  }
  .lang-switch abbr {
    text-decoration: none;
    border: none;
    cursor: inherit;
  }
  .lang-switch a:hover { color: var(--gold); }
  .lang-switch a.is-active { color: var(--gold); }
  .lang-switch a.is-active abbr {
    border-bottom: 1px solid var(--gold);
    padding-bottom: 3px;
  }
  .lang-switch-footer { margin-left: auto; }

  /* Separates the language list from the section links inside the nav bar. */
  .nav-panel .lang-switch {
    padding-left: 32px;
    border-left: 1px solid var(--border);
  }

  /* ── NAV PANEL / MOBILE DRAWER ── */
  .nav-panel {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    background: none;
    border: 1px solid var(--border);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: border-color 0.3s;
  }
  .nav-toggle:hover { border-color: var(--gold); }
  .nav-toggle-bar {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--gold);
    transition: transform 0.3s, opacity 0.3s;
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(3.5px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  /* ── DOC CARDS: "on request" variant ── */
  .doc-card-muted {
    opacity: 0.55;
    align-items: center;
  }
  .doc-card-muted:hover {
    border-color: var(--border);
    background: none;
  }
  .doc-card-muted::before { display: none; }
  .doc-note {
    flex-shrink: 0;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--muted);
  }

  /* ── FORM: honeypot + status message ── */
  .hp-field {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .form-msg {
    display: none;
    margin-top: 16px;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    line-height: 1.6;
    letter-spacing: 0.1em;
    color: var(--gold);
  }
  .form-msg.is-visible { display: block; }
  .form-msg.is-error { color: #E0836B; }

  .form-submit[disabled] { cursor: progress; }
  .form-submit.is-done {
    background: #2A2A1E;
    color: var(--gold);
  }

  /* ── REDUCED MOTION ── */
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 1080px) {
    .nav-panel { gap: 24px; }
    .nav-links { gap: 24px; }
    .nav-panel .lang-switch { padding-left: 24px; }
  }

  @media (max-width: 900px) {
    #mainNav { padding: 16px 24px; }

    .nav-toggle { display: flex; }

    /* The drawer replaces the inline links instead of hiding navigation outright. */
    .nav-panel {
      position: fixed;
      inset: 69px 0 auto 0;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: 8px 24px 28px;
      background: rgba(8,10,12,0.97);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      max-height: calc(100vh - 69px);
      overflow-y: auto;
      overscroll-behavior: contain;
      transform: translateY(-8px);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
    }
    .nav-panel.is-open {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
    }

    .nav-links {
      flex-direction: column;
      align-items: stretch;
      gap: 0;
    }
    .nav-links li { border-bottom: 1px solid var(--border); }
    .nav-links a {
      display: block;
      padding: 18px 0;
      font-size: 12px;
    }
    /* !important is required here only because .nav-cta already uses it. */
    .nav-links .nav-cta {
      border: none;
      padding: 18px 0 !important;
    }

    .nav-panel .lang-switch {
      padding: 18px 0 0;
      border-left: none;
    }
    .nav-panel .lang-switch ul { gap: 4px; }
    .nav-panel .lang-switch a {
      min-width: 44px;
      padding: 12px 8px;
    }

    .hero { padding: 120px 24px 80px; }
    .stats-bar { grid-template-columns: 1fr 1fr; }
    .stat-item:nth-child(2) { border-right: none; }
    .section-inner { padding: 80px 24px; }
    .product-grid,
    .contact-grid,
    .docs-grid { grid-template-columns: 1fr; gap: 40px; }
    .steps-grid { grid-template-columns: 1fr; }
    .step-item { border-right: none; border-bottom: 1px solid var(--border); }
    .allocation-card { position: static; }
    .contact-form { padding: 32px 24px; }
    footer {
      flex-direction: column;
      align-items: flex-start;
      padding: 40px 24px;
    }
    .footer-disclaimer { text-align: left; }
    .lang-switch-footer { margin-left: 0; }
  }

  @media (max-width: 560px) {
    .stats-bar { grid-template-columns: 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 28px 24px; }
    .stat-item:last-child { border-bottom: none; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions a { text-align: center; }
    /* Wrapped onto several lines the interpuncts read as noise, so drop them. */
    .isin-badge { flex-wrap: wrap; gap: 6px 14px; }
    .isin-sep { display: none; }
    .doc-card { flex-direction: column; gap: 16px; }
    .doc-card-muted { align-items: flex-start; }
  }