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

  :root {
    --bg:           #0A0A0A;
    --surface:      #111111;
    --surface-hi:   #161616;
    --border:       #222222;
    --border-hi:    #333333;
    --text:         #E8E4DC;
    --text-muted:   #9A9A9A;
    --text-dim:     #555555;
    --accent:       #C8B89A;
    --accent-hi:    #E2C99E;
    --white:        #F5F1EA;
    --font-d:       'Bebas Neue', sans-serif;
    --font-b:       'DM Sans', sans-serif;
    --font-m:       'JetBrains Mono', monospace;

    /* ─────────────────────────────────────────────
       LAYOUT SYSTEM — single source of truth.
       Change values here, never inline.
       ───────────────────────────────────────────── */
    --container-max:    1360px;   /* one width for everything */
    --container-narrow:  760px;   /* prose / single-column blocks only */
    --gutter:             48px;   /* horizontal gutter, desktop */
    --gutter-mobile:      24px;   /* horizontal gutter, mobile */

    /* Vertical rhythm — only these three values for sections */
    --space-section:     144px;   /* between major sections */
    --space-section-sm:   96px;   /* tight section variant */
    --space-block:        48px;   /* block-internal padding */
    --space-block-sm:     32px;
    --grid-gap:           80px;   /* between columns inside a section */
  }

  /* ─────────────────────────────────────────────
     CONTAINER — every section uses this.
     One class. No per-section overrides.
     ───────────────────────────────────────────── */
  .container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--gutter);
  }
  .container--narrow {
    max-width: var(--container-narrow);
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-b);
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px;
    height: 80px;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
  }
  /* Truly center the nav links regardless of logo/lang width */
  .nav-links {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .nav-logo {
    font-family: var(--font-d);
    font-size: 20px;
    letter-spacing: 0.06em;
    color: var(--white);
    text-decoration: none;
    display: flex; align-items: center; gap: 10px;
  }
  .nav-logo span {
    display: inline-block;
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
  }
  .nav-logo-img {
    height: 38px;
    width: auto;
    filter: brightness(0) invert(1);
  }
  .nav-links {
    display: flex; align-items: center; gap: 36px;
    list-style: none;
  }
  .nav-links a {
    font-family: var(--font-b);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 150ms;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute; bottom: -3px; left: 0;
    width: 0; height: 1px;
    background: var(--accent);
    transition: width 200ms ease;
  }
  .nav-links a:hover { color: var(--accent); }
  .nav-links a:hover::after { width: 100%; }
  .nav-lang {
    font-family: var(--font-m);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    display: flex; gap: 4px; align-items: center;
  }
  .nav-lang a { color: var(--text-muted); text-decoration: none; transition: color 150ms; }
  .nav-lang a:hover, .nav-lang a.active { color: var(--accent); }
  .nav-lang span { color: var(--border-hi); }

  /* HAMBURGER MENU BUTTON */
  .nav-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    z-index: 101;
  }
  .nav-menu span {
    display: block;
    width: 28px;
    height: 1.5px;
    background: var(--accent);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.3s;
  }
  .nav-menu.active span:first-child {
    transform: rotate(45deg) translate(3px, 3px);
  }
  .nav-menu.active span:last-child {
    transform: rotate(-45deg) translate(3px, -3px);
  }

  /* MOBILE OVERLAY */
  .mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16,1,0.3,1);
  }
  .mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
  }
  .mobile-overlay-links {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
    align-items: center;
  }
  .mobile-overlay-links a {
    font-family: var(--font-d);
    font-size: clamp(32px, 8vw, 56px);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: color 0.3s;
  }
  .mobile-overlay-links a:hover {
    color: var(--accent);
  }
  .mobile-overlay .nav-lang {
    margin-top: 16px;
    font-size: 14px;
  }

  /* HERO */
  #hero {
    height: 100svh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    overflow: hidden;
  }
  .hero-slides {
    position: absolute; inset: 0;
  }
  .hero-slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 1400ms ease-in-out;
    overflow: hidden;
  }
  .hero-slide video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    animation: zoomSlow 10s ease-out forwards;
  }
  .hero-slide.active { opacity: 1; }
  @keyframes zoomSlow {
    from { transform: scale(1.1); }
    to   { transform: scale(1.0); }
  }
  .hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.25) 0%,
      rgba(0,0,0,0.1) 30%,
      rgba(0,0,0,0.6) 80%,
      rgba(0,0,0,0.85) 100%
    );
  }
  .hero-index {
    position: absolute; bottom: 88px; right: 32px; z-index: 3;
    font-family: var(--font-m);
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.1em;
  }
  .hero-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    z-index: 3;
    text-align: left;
    /* Align with .container — same math, same edge as every section */
    padding-left: max(var(--gutter), calc(50vw - (var(--container-max) / 2) + var(--gutter)));
    padding-right: var(--gutter);
    pointer-events: none;
  }
  h1.hero-title {
    font-family: var(--font-d);
    font-size: clamp(52px, 12vw, 160px);
    line-height: 0.9;
    letter-spacing: -0.01em;
    color: var(--white);
  }
  h1.hero-title .line1 {
    display: block;
    opacity: 0;
    animation: slideUp 700ms cubic-bezier(0.16,1,0.3,1) 200ms forwards;
  }
  h1.hero-title .line2 {
    display: block;
    color: var(--accent);
    -webkit-text-stroke: 0;
    opacity: 0;
    animation: slideUp 700ms cubic-bezier(0.16,1,0.3,1) 360ms forwards;
  }

  /* HERO INTRO BLOCK — below the image */
  .hero-intro {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
  }
  .hero-intro-inner {
    max-width: var(--container-max);
    margin-inline: auto;
    padding: var(--space-block) var(--gutter);
  }
  .hero-statements {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 52px;
    border-top: 1px solid var(--border);
  }
  .hero-statement {
    padding: 40px 0;
    position: relative;
  }
  .hero-statement:first-child {
    border-right: 1px solid var(--border);
    padding-right: 48px;
  }
  .hero-statement:last-child {
    padding-left: 48px;
  }
  .hero-statement-label {
    font-family: var(--font-m);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    display: block;
  }
  .hero-statement-text {
    font-family: var(--font-d);
    font-size: clamp(28px, 3.5vw, 52px);
    line-height: 1.0;
    letter-spacing: 0.01em;
    color: var(--white);
  }
  .hero-statement:last-child .hero-statement-text {
    color: var(--accent);
  }
  .hero-statement-year {
    display: inline-block;
    font-family: var(--font-m);
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 0.12em;
    margin-top: 14px;
    border-top: 1px solid var(--border);
    padding-top: 10px;
    width: 100%;
  }
  .hero-cta-row {
    display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
  }
  .btn-primary {
    background: var(--accent-hi);
    color: #0A0A0A;
    border: none;
    padding: 16px 28px;
    font-family: var(--font-b);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    transition: background 150ms, transform 150ms;
    white-space: nowrap;
  }
  .btn-primary:hover { background: var(--white); transform: translateY(-1px); }
  .btn-ghost {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-hi);
    padding: 15px 27px;
    font-family: var(--font-b);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    transition: border-color 150ms, color 150ms;
    white-space: nowrap;
  }
  .btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

  /* MARQUEE */
  .marquee-section {
    padding: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    background: var(--surface);
    height: 120px;
    display: flex;
    align-items: center;
  }
  .marquee-row {
    display: flex;
    width: max-content;
    align-items: center;
    height: 100%;
  }
  .marquee-row.r1 { animation: marquee 22s linear infinite; }
  .marquee-section:hover .marquee-row { animation-play-state: paused; }
  .marquee-item {
    display: flex; align-items: center; gap: 32px;
    padding: 0 32px;
    font-family: var(--font-d);
    font-size: clamp(48px, 7vw, 80px);
    letter-spacing: 0.04em;
    color: var(--text-dim);
    white-space: nowrap;
    line-height: 1;
    transition: color 150ms;
  }
  .marquee-item.accent { color: var(--accent); opacity: 0.5; }
  .marquee-sep {
    width: 8px; height: 8px;
    background: var(--border-hi);
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-block;
  }

  /* ─────────────────────────────────────────────
     SECTIONS — vertical rhythm only. Width comes
     from .container inside the section.
     ───────────────────────────────────────────── */
  section {
    padding-block: var(--space-section);
    padding-inline: 0;
  }
  section.section--sm {
    padding-block: var(--space-section-sm);
  }

  .section-label {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 48px;
  }
  .section-label .num {
    font-family: var(--font-m);
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 0.1em;
  }
  .section-label .line {
    width: 28px; height: 1px;
    background: var(--border-hi);
  }
  .section-label .text {
    font-family: var(--font-b);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  /* PROBLEM */
  #problem > .section-label,
  #problem > .inner,
  #problem > .stat-row {
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--gutter);
  }
  #problem .inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--grid-gap);
    align-items: start;
  }
  #problem h2 {
    font-family: var(--font-d);
    font-size: clamp(42px, 5vw, 72px);
    line-height: 0.95;
    letter-spacing: -0.01em;
    color: var(--white);
  }
  #problem .body-col p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 20px;
  }
  #problem .body-col p strong {
    color: var(--text);
    font-weight: 500;
  }
  .stat-row {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 80px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .stat-item {
    background: transparent;
    padding: 32px 28px;
    border-right: 1px solid var(--border);
  }
  .stat-item:last-child {
    border-right: none;
  }
  .stat-num {
    font-family: var(--font-d);
    font-size: 56px;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
  }
  .stat-label {
    font-family: var(--font-b);
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.5;
  }

  /* SERVICES */
  #services {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  #services .inner {
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--gutter);
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 48px;
  }
  .service-card {
    background: var(--surface);
    padding: 48px 40px;
    border: 1px solid transparent;
    transition: border-color 200ms ease, background 200ms ease;
    position: relative;
    overflow: hidden;
  }
  .service-img {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 400ms ease;
  }
  .service-card::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(10,10,10,0.82);
    transition: background 400ms ease;
    z-index: 0;
  }
  .service-card:hover .service-img { opacity: 1; }
  .service-card:hover::after { background: rgba(10,10,10,0.6); }
  .service-num, .service-title, .service-desc, .service-arrow {
    position: relative; z-index: 1;
  }
  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 300ms cubic-bezier(0.16,1,0.3,1);
  }
  .service-card:hover { background: var(--surface-hi); border-color: var(--accent); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-num {
    font-family: var(--font-m);
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 28px;
  }
  .service-title {
    font-family: var(--font-d);
    font-size: 28px;
    letter-spacing: 0.02em;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1;
  }
  .service-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 320px;
  }
  .service-arrow {
    position: absolute;
    bottom: 40px; right: 40px;
    font-size: 20px;
    color: var(--border-hi);
    transition: color 200ms, transform 200ms;
    /* Force text rendering instead of emoji on iOS Safari */
    font-family: var(--font-m), 'Helvetica Neue', sans-serif;
    font-variant-emoji: text;
    -webkit-font-feature-settings: "liga" off;
  }
  .service-card:hover .service-arrow {
    color: var(--accent);
    transform: translate(3px, -3px);
  }

  /* SYSTEM SECTION */
  #system-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }
  #system-section .inner {
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--gutter);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--grid-gap);
    align-items: center;
  }
  #system-section .inner--narrow {
    max-width: calc(var(--container-narrow) + (var(--gutter) * 2));
  }
  #system-section .inner--single {
    grid-template-columns: 1fr;
  }
  #system-section h2 {
    font-family: var(--font-d);
    font-size: clamp(36px, 4vw, 64px);
    line-height: 0.95;
    color: var(--white);
    margin-bottom: 28px;
  }
  #system-section p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
  }
  .pill-row {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-top: 32px;
  }
  .pill {
    font-family: var(--font-m);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    border: 1px solid var(--border-hi);
    padding: 6px 12px;
    transition: border-color 150ms, color 150ms;
  }
  .pill:hover { border-color: var(--accent); color: var(--accent); }

  /* MANIFESTO STRIP */
  #manifesto {
    padding: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    background: var(--surface);
  }
  .manifesto-inner {
    max-width: var(--container-max);
    margin-inline: auto;
    padding: var(--space-section-sm) var(--gutter);
  }
  .manifesto-quote {
    border-left: 2px solid var(--accent);
    padding-left: 32px;
    margin-bottom: 64px;
  }
  .manifesto-quote p {
    font-size: 20px;
    color: var(--text);
    line-height: 1.65;
    font-style: italic;
  }
  .manifesto-quote cite {
    display: block;
    margin-top: 16px;
    font-family: var(--font-m);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    font-style: normal;
  }

  /* CLOSING MANIFESTO */
  #closing {
    padding-block: var(--space-section);
    background: var(--bg);
    overflow: hidden;
  }
  .closing-inner {
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--gutter);
  }
  .closing-line {
    display: block;
    font-family: var(--font-d);
    color: var(--white);
    line-height: 0.88;
    letter-spacing: -0.01em;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 700ms cubic-bezier(0.16,1,0.3,1), transform 700ms cubic-bezier(0.16,1,0.3,1);
  }
  .closing-line.visible { opacity: 1; transform: translateY(0); }
  .closing-line.l1 { font-size: clamp(48px, 8vw, 112px); }
  .closing-line.l2 { font-size: clamp(36px, 6vw, 80px); color: transparent; -webkit-text-stroke: 1px rgba(200,184,154,0.35); padding-left: clamp(32px, 6vw, 120px); margin-top: 8px; }
  .closing-line.l3 { font-size: clamp(48px, 8vw, 112px); margin-top: 4px; }
  .closing-line.l4 { font-size: clamp(28px, 4vw, 64px); color: var(--accent); margin-top: 12px; padding-left: clamp(16px, 3vw, 64px); }

  /* CONTACT */
  #contact {
    background: var(--surface);
    border-top: 1px solid var(--border);
  }
  #contact .inner {
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--gutter);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--grid-gap);
    align-items: start;
  }
  #contact h2 {
    font-family: var(--font-d);
    font-size: clamp(40px, 5vw, 72px);
    line-height: 0.95;
    color: var(--white);
    margin-bottom: 24px;
  }
  #contact .subtext {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 100%;
    overflow-wrap: break-word;
  }
  .contact-cards {
    display: flex; flex-direction: column; gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
  }
  .contact-card {
    background: var(--surface-hi);
    padding: 28px 24px;
    display: grid; grid-template-columns: 90px 1fr;
    gap: 16px; align-items: start;
    transition: background 150ms;
    overflow: hidden;
  }
  .contact-card:hover { background: #1a1a1a; }
  .contact-region {
    font-family: var(--font-b);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding-top: 4px;
    line-height: 1.4;
  }
  .contact-city {
    font-family: var(--font-d);
    font-size: 20px;
    color: var(--white);
    letter-spacing: 0.04em;
    margin-bottom: 6px;
  }
  .contact-email {
    font-family: var(--font-m);
    font-size: 12px;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 150ms;
    display: block;
    word-break: break-all;
  }
  .contact-email:hover { color: var(--accent-hi); }
  .contact-phone {
    font-family: var(--font-m);
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
    letter-spacing: 0.04em;
  }

  /* FOOTER */
  footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding-block: var(--space-block);
  }
  .footer-inner {
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--gutter);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-logo {
    display: flex;
    align-items: center;
  }
  .footer-logo-img {
    height: 38px;
    width: auto;
    filter: brightness(0) invert(1);
  }
  .footer-legal {
    font-family: var(--font-b);
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 0.06em;
  }
  .footer-legal a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 150ms;
  }
  .footer-legal a:hover { color: var(--accent); }
  .footer-social {
    display: flex; gap: 20px;
  }
  .footer-social a {
    font-family: var(--font-m);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 150ms;
  }
  .footer-social a:hover { color: var(--accent); }

  /* ANIMATIONS */
  @keyframes slideUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  @keyframes pulse {
    0%   { transform: scale(1); opacity: 1; }
    100% { transform: scale(3.5); opacity: 0; }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  /* REVEAL */
  .reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
                transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-d1 { transition-delay: 100ms; }
  .reveal-d2 { transition-delay: 200ms; }
  .reveal-d3 { transition-delay: 300ms; }
  .reveal-d4 { transition-delay: 400ms; }

  .three-col-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
  }

  @media (max-width: 768px) {
    nav { padding: 0 var(--gutter-mobile); height: 70px; }
    .nav-links { display: none; }
    .nav-logo-img { height: 32px; }
    nav > .nav-lang { display: none; }
    .nav-menu { display: flex; }
    .hero-index { bottom: 32px; right: 24px; }
    .hero-content { top: auto; transform: none; bottom: 88px; left: 0; right: 0; padding-left: var(--gutter-mobile); padding-right: var(--gutter-mobile); text-align: center; }
    .hero-intro-inner { padding: var(--space-block-sm) var(--gutter-mobile); }
    .hero-statements { grid-template-columns: 1fr; gap: 0; }
    .hero-statement:first-child { border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; padding-bottom: 32px; }
    .hero-statement:last-child { padding-left: 0; padding-top: 32px; }
    .hero-statement-text { font-size: clamp(32px, 8vw, 44px); }
    .hero-cta-row { width: 100%; }
    .btn-primary, .btn-ghost { width: 100%; justify-content: center; box-sizing: border-box; }
    section { padding-block: var(--space-section-sm); }
    section.section--sm { padding-block: var(--space-block); }
    /* All container-bounded children swap to mobile gutter */
    .hero-intro-inner,
    #problem > .section-label,
    #problem > .inner,
    #problem > .stat-row,
    #services .inner,
    #system-section .inner,
    .manifesto-inner,
    .closing-inner,
    #contact .inner,
    .footer-inner {
      padding-inline: var(--gutter-mobile);
    }
    #problem .inner, #system-section .inner, #contact .inner { grid-template-columns: 1fr; gap: 40px; }
    .services-grid { grid-template-columns: 1fr; }
    .stat-row { grid-template-columns: 1fr; }
    .three-col-grid { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
    .manifesto-inner { padding-block: var(--space-section-sm); }
    .contact-card { grid-template-columns: 1fr; gap: 8px; padding: 24px 20px; }
    .contact-region { font-size: 9px; }
    .contact-city { font-size: 22px; }
  }

  /* IMAGE BREAKS */
  .img-break {
    width: 100%;
    aspect-ratio: 4 / 5;
    max-height: 80vh;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transition: opacity 1000ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .img-break.visible { opacity: 1; }
  .img-break-inner {
    position: absolute;
    inset: -25% 0;
    will-change: transform;
    overflow: hidden;
  }
  .break-video {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }
  .img-break-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
      to bottom,
      rgba(10,10,10,0.5) 0%,
      rgba(10,10,10,0.1) 50%,
      rgba(10,10,10,0.5) 100%
    );
  }

  /* SCROLLBAR */
  ::-webkit-scrollbar { width: 3px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: var(--border-hi); }

  /* SCROLL ARROWS */
  #scroll-nav {
    position: fixed;
    bottom: 136px;
    right: 20px;
    z-index: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: opacity 600ms ease;
  }
  #scroll-nav.hidden { opacity: 0; pointer-events: none; }
  #scroll-nav.scrolling { opacity: 1; }

  .snav-btn {
    width: 42px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10,10,10,0.82);
    border: 1px solid rgba(200,184,154,0.18);
    border-radius: 8px;
    cursor: pointer;
    color: rgba(200,184,154,0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: color 200ms ease, background 200ms ease, transform 150ms ease,
                box-shadow 200ms ease, border-color 200ms ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    flex-shrink: 0;
    animation: snavPulse 3s ease-in-out infinite;
  }
  .snav-btn:nth-child(2) { animation-delay: 1.5s; }

  @keyframes snavPulse {
    0%   { box-shadow: 0 0 0px rgba(200,184,154,0); }
    50%  { box-shadow: 0 0 14px rgba(200,184,154,0.22); }
    100% { box-shadow: 0 0 0px rgba(200,184,154,0); }
  }

  .snav-btn:hover {
    color: var(--accent);
    background: rgba(200,184,154,0.1);
    border-color: rgba(200,184,154,0.45);
    box-shadow: 0 0 22px rgba(200,184,154,0.3);
    animation: none;
  }
  .snav-btn:active { transform: scale(0.93); }

  /* Scroll-speed pulse — brighter glow on fast scroll */
  .snav-btn.pulse {
    color: var(--accent-hi);
    border-color: rgba(200,184,154,0.6);
    box-shadow: 0 0 28px rgba(200,184,154,0.45);
    animation: none;
  }

  /* Enhanced glow while scrolling */
  #scroll-nav.scrolling .snav-btn {
    animation: snavScrollGlow 0.8s ease-in-out infinite alternate;
  }
  @keyframes snavScrollGlow {
    from { box-shadow: 0 0 8px rgba(200,184,154,0.15); border-color: rgba(200,184,154,0.2); }
    to   { box-shadow: 0 0 22px rgba(200,184,154,0.35); border-color: rgba(200,184,154,0.5); }
  }

  .snav-btn.dimmed { opacity: 0.22; pointer-events: none; animation: none; }
  .snav-btn svg {
    width: 19px; height: 10px;
    stroke: currentColor; fill: none;
    stroke-width: 2;
    stroke-linecap: round; stroke-linejoin: round;
  }

  /* CLOSE BUTTON — between arrows, hidden until open */
  #snav-close {
    width: 42px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10,10,10,0.82);
    border: 1px solid rgba(200,184,154,0.35);
    border-radius: 8px;
    cursor: pointer;
    color: rgba(200,184,154,0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-family: var(--font-m);
    font-size: 11px;
    letter-spacing: 0.05em;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    /* hidden state */
    opacity: 0;
    pointer-events: none;
    transform: scale(0.6);
    transition: opacity 220ms ease, transform 220ms cubic-bezier(0.34,1.56,0.64,1),
                border-color 200ms, box-shadow 200ms, color 200ms;
    animation: none;
  }
  #snav-close.visible {
    opacity: 1;
    pointer-events: all;
    transform: scale(1);
  }
  #snav-close:hover {
    color: var(--accent-hi);
    border-color: rgba(200,184,154,0.6);
    box-shadow: 0 0 18px rgba(200,184,154,0.25);
  }
  #snav-close:active { transform: scale(0.93); }

  /* AMBIENT CURSOR GLOW */
  #cursor-glow {
    position: fixed;
    pointer-events: none;
    z-index: 1;
    width: 480px; height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,184,154,0.06) 0%, transparent 68%);
    transform: translate(-50%, -50%);
    top: -300px; left: -300px;
    transition: opacity 800ms ease;
    opacity: 0;
    will-change: top, left;
  }

  /* SCROLL PAGE GLOW */
  #scroll-glow {
    position: fixed;
    inset: 0;
    z-index: 200;
    pointer-events: none;
    background: radial-gradient(ellipse at 50% 50%,
      rgba(200,184,154,0.07) 0%,
      rgba(200,184,154,0.03) 40%,
      transparent 70%
    );
    opacity: 0;
    transition: opacity 600ms ease;
  }
  #scroll-glow.active {
    opacity: 1;
    animation: pageGlow 1.2s ease-in-out infinite alternate;
  }
  @keyframes pageGlow {
    from { opacity: 0.4; }
    to   { opacity: 1; }
  }

  /* TIMEZONE WIDGET */
  .tz-clocks {
    display: flex;
    gap: 0;
    margin-top: 20px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
  }
  .tz-clock {
    flex: 1;
    padding: 16px 20px;
    border-right: 1px solid var(--border);
  }
  .tz-clock:last-child { border-right: none; }
  .tz-label {
    font-family: var(--font-m);
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 8px;
    display: block;
  }
  .tz-time {
    font-family: var(--font-m);
    font-size: 22px;
    letter-spacing: 0.04em;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
  }
  .tz-date {
    font-family: var(--font-b);
    font-size: 10px;
    color: var(--text-dim);
    letter-spacing: 0.06em;
  }
  .tz-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    font-family: var(--font-m);
    font-size: 9px;
    color: var(--text-dim);
    letter-spacing: 0.1em;
  }
  .tz-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--text-dim);
    position: relative;
    flex-shrink: 0;
  }
  .tz-dot.online { background: #4ade80; }
  .tz-dot.online::after {
    content: '';
    position: absolute; inset: -3px;
    border-radius: 50%;
    background: rgba(74,222,128,0.3);
    animation: tzPulse 2s ease-out infinite;
  }
  @keyframes tzPulse {
    0%   { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
  }
  /* ── COOKIE BANNER ── */
  .cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9998;
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 20px 48px calc(20px + env(safe-area-inset-bottom, 0px)) 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    /* 3D transform forces own compositor layer — prevents iOS drift on scroll */
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    opacity: 1;
    visibility: visible;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.4s ease, visibility 0s linear 0s;
  }
  .cookie-banner.hidden {
    transform: translate3d(0, 110%, 0);
    -webkit-transform: translate3d(0, 110%, 0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.3s ease, visibility 0s linear 0.4s;
  }
  .cookie-banner p {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
  }
  .cookie-banner a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .cookie-banner-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
  }
  .cookie-banner-btn {
    background: var(--accent-hi);
    color: #0A0A0A;
    border: none;
    padding: 10px 28px;
    border-radius: 0;
    font-family: var(--font-b);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.3s;
  }
  .cookie-banner-btn:hover { opacity: 0.85; }
  .cookie-banner-btn--decline {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-hi);
  }

  /* ── LEGAL PAGE ── */
  .legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 140px 48px 80px;
  }
  .legal-content h1 {
    font-family: var(--font-d);
    font-size: clamp(32px, 4vw, 48px);
    color: var(--white);
    margin-bottom: 40px;
  }
  .legal-content h2 {
    font-family: var(--font-d);
    font-size: clamp(20px, 2.5vw, 28px);
    color: var(--white);
    margin-top: 48px;
    margin-bottom: 16px;
  }
  .legal-content p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 16px;
  }
  .legal-content a { color: var(--accent); }
  .legal-back {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 40px;
    letter-spacing: 0.05em;
    text-decoration: none;
  }

  /* Footer link style */
  .footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 150ms;
  }
  .footer-legal a:hover { color: var(--accent); }

  /* ── MOBILE COOKIE BANNER ── */
  @media (max-width: 768px) {
    .cookie-banner {
      flex-direction: column;
      padding: 20px 24px;
      gap: 16px;
      text-align: center;
    }
    .legal-content {
      padding: 120px 24px 60px;
    }
  }
