    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --bg:        #07090e;
      --bg2:       #0d1018;
      --text:      #ddd8cd;
      --muted:     #6b6b6b;
      --accent:    #c6ff00;
      --border:    rgba(255,255,255,0.07);
      --ff-display: 'DM Serif Display', serif;
      --ff-head:   'Cormorant Garamond', serif;
      --ff-ui:     'Syne', sans-serif;
    }

    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--ff-ui);
      overflow-x: hidden;
      cursor: none;
    }

    /* ─── PAGE HERO ──────────────────────────────────────────── */
    #page-hero {
      position: relative;
      min-height: 60vh;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 0 6vw 80px;
      overflow: hidden;
    }

    /* background graphic: large faded letters */
    #page-hero::before {
      content: 'NOUS';
      position: absolute;
      right: -2vw; top: 50%;
      transform: translateY(-50%);
      font-family: var(--ff-display);
      font-size: clamp(120px, 18vw, 220px);
      font-weight: 400;
      color: rgba(255,255,255,0.025);
      pointer-events: none;
      line-height: 1;
      letter-spacing: -.04em;
      user-select: none;
    }

    /* accent horizontal line */
    #page-hero::after {
      content: '';
      position: absolute;
      bottom: 0; left: 6vw; right: 6vw;
      height: 1px;
      background: linear-gradient(to right, var(--accent), transparent 60%);
    }

    .page-label {
      font-family: var(--ff-ui);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: var(--accent);
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 28px;
      opacity: 0;
      animation: fadeUp .6s .1s forwards;
    }
    .page-label::before { content: ''; width: 28px; height: 1px; background: var(--accent); }

    .page-title {
      font-family: var(--ff-display);
      font-size: clamp(3rem, 7vw, 7rem);
      font-weight: 400;
      line-height: 1.0;
      letter-spacing: -.03em;
      color: #fff;
      margin-bottom: 28px;
      opacity: 0;
      animation: fadeUp .8s .2s forwards;
    }
    .page-title em { font-style: italic; color: var(--accent); }

    .page-intro {
      font-family: var(--ff-head);
      font-size: clamp(1.1rem, 1.8vw, 1.4rem);
      font-weight: 300;
      font-style: italic;
      line-height: 1.7;
      color: rgba(221,216,205,0.65);
      max-width: 680px;
      opacity: 0;
      animation: fadeUp .7s .35s forwards;
    }

    /* ─── MANIFESTO ──────────────────────────────────────────── */
    #manifesto {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 0;
      padding: 100px 6vw;
      border-bottom: 1px solid var(--border);
    }

    .manifesto-side {
      padding-right: 60px;
      border-right: 1px solid var(--border);
    }
    .manifesto-side-label {
      font-family: var(--ff-ui);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 20px;
    }
    .manifesto-side-num {
      font-family: var(--ff-display);
      font-size: clamp(4rem, 8vw, 8rem);
      font-weight: 400;
      line-height: 1;
      color: rgba(255,255,255,0.06);
      letter-spacing: -.04em;
    }

    .manifesto-content {
      padding-left: 60px;
    }
    .manifesto-content h2 {
      font-family: var(--ff-display);
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      font-weight: 400;
      line-height: 1.1;
      color: #fff;
      margin-bottom: 28px;
    }
    .manifesto-content h2 em { font-style: italic; color: var(--accent); }
    .manifesto-content p {
      font-family: var(--ff-head);
      font-size: clamp(1rem, 1.3vw, 1.18rem);
      line-height: 1.85;
      color: rgba(221,216,205,0.65);
      margin-bottom: 22px;
    }

    /* ─── VALUES ─────────────────────────────────────────────── */
    #values {
      padding: 100px 6vw;
      border-bottom: 1px solid var(--border);
    }

    .values-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 64px;
    }
    .values-header h2 {
      font-family: var(--ff-display);
      font-size: clamp(2rem, 3.5vw, 3.5rem);
      font-weight: 400;
      color: #fff;
      line-height: 1.05;
    }
    .values-header h2 em { font-style: italic; color: var(--accent); }
    .values-header p {
      font-family: var(--ff-ui);
      font-size: 12px;
      color: var(--muted);
      max-width: 280px;
      text-align: right;
      line-height: 1.7;
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
    }
    .value-card {
      background: var(--bg);
      padding: 40px 36px 44px;
      position: relative;
      overflow: hidden;
      transition: background .3s ease;
    }
    .value-card:hover { background: var(--bg2); }
    .value-card::after {
      content: '';
      position: absolute;
      top: 0; left: 36px; right: 36px;
      height: 2px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .4s cubic-bezier(.16,1,.3,1);
    }
    .value-card:hover::after { transform: scaleX(1); }

    .value-num {
      font-family: var(--ff-ui);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .25em;
      color: var(--accent);
      margin-bottom: 20px;
    }
    .value-title {
      font-family: var(--ff-display);
      font-size: clamp(1.4rem, 1.8vw, 1.9rem);
      font-weight: 400;
      color: #fff;
      margin-bottom: 16px;
      line-height: 1.1;
    }
    .value-desc {
      font-family: var(--ff-ui);
      font-size: 12.5px;
      line-height: 1.8;
      color: rgba(221,216,205,0.5);
    }

    /* ─── TEAM ───────────────────────────────────────────────── */
    #team {
      padding: 100px 6vw;
      border-bottom: 1px solid var(--border);
    }

    .team-header {
      margin-bottom: 64px;
    }
    .team-header-label {
      font-family: var(--ff-ui);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--accent);
      display: flex; align-items: center; gap: 10px;
      margin-bottom: 20px;
    }
    .team-header-label::before { content: ''; width: 28px; height: 1px; background: var(--accent); }
    .team-header h2 {
      font-family: var(--ff-display);
      font-size: clamp(2rem, 3.5vw, 3.5rem);
      font-weight: 400;
      color: #fff;
      line-height: 1.05;
    }
    .team-header h2 em { font-style: italic; color: var(--accent); }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .team-card {
      position: relative;
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .6s ease, transform .6s cubic-bezier(.16,1,.3,1);
    }
    .team-card.visible { opacity: 1; transform: translateY(0); }
    .team-card:nth-child(2) { transition-delay: .1s; }
    .team-card:nth-child(3) { transition-delay: .2s; }
    .team-card:nth-child(4) { transition-delay: .3s; }

    .team-photo {
      position: relative;
      height: 280px;
      overflow: hidden;
      margin-bottom: 20px;
      background: var(--bg2);
    }
    .team-photo img {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: saturate(0) brightness(.9);
      transition: filter .5s ease, transform .6s cubic-bezier(.16,1,.3,1);
    }
    .team-card:hover .team-photo img {
      filter: saturate(0.7) brightness(1);
      transform: scale(1.04);
    }
    .team-photo::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(7,9,14,0.7) 0%, transparent 50%);
      pointer-events: none;
    }

    /* Monogram fallback */
    .team-monogram {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--ff-display);
      font-size: 4rem;
      color: rgba(198,255,0,0.15);
      pointer-events: none;
    }

    .team-name {
      font-family: var(--ff-head);
      font-size: 1.3rem;
      font-weight: 600;
      color: #fff;
      margin-bottom: 4px;
    }
    .team-role {
      font-family: var(--ff-ui);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 12px;
    }
    .team-bio {
      font-family: var(--ff-ui);
      font-size: 12px;
      line-height: 1.75;
      color: rgba(221,216,205,0.45);
    }

    /* ─── CHIFFRES ───────────────────────────────────────────── */
    #chiffres {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      background: var(--accent);
      position: relative;
      overflow: hidden;
    }
    #chiffres::before {
      content: '';
      position: absolute; inset: 0;
      background: repeating-linear-gradient(-55deg, transparent, transparent 18px,
        rgba(7,9,14,0.05) 18px, rgba(7,9,14,0.05) 19px);
      pointer-events: none;
    }

    .chiffre-item {
      padding: 60px 40px;
      border-right: 1px solid rgba(7,9,14,0.1);
      position: relative;
      z-index: 1;
    }
    .chiffre-item:last-child { border-right: none; }

    .chiffre-num {
      font-family: var(--ff-display);
      font-size: clamp(2.8rem, 4vw, 4.5rem);
      font-weight: 400;
      color: var(--bg);
      line-height: 1;
      margin-bottom: 12px;
    }
    .chiffre-num em { font-style: italic; }
    .chiffre-label {
      font-family: var(--ff-ui);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: rgba(7,9,14,0.55);
    }
    .chiffre-desc {
      font-family: var(--ff-ui);
      font-size: 11px;
      color: rgba(7,9,14,0.4);
      margin-top: 6px;
      line-height: 1.5;
    }

    /* ─── MEMBERSHIP ─────────────────────────────────────────── */
    #join-member {
      position: relative;
      background: var(--bg2);
      padding: 90px 12vw;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      overflow: hidden;
      border-top: 1px solid var(--border);
      transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1);
    }
    #join-member.will-animate { opacity: 0; transform: translateY(40px); }
    #join-member.will-animate.visible { opacity: 1; transform: translateY(0); }
    #join-member::before {
      content: '';
      position: absolute; inset: 0;
      background: repeating-linear-gradient(-55deg, transparent, transparent 18px,
        rgba(198,255,0,0.02) 18px, rgba(198,255,0,0.02) 19px);
      pointer-events: none;
    }

    .member-label {
      font-family: var(--ff-ui); font-size: 10px; font-weight: 700;
      letter-spacing: .3em; text-transform: uppercase;
      color: var(--accent);
      display: flex; align-items: center; gap: 10px;
      margin-bottom: 28px; position: relative;
    }
    .member-label::before, .member-label::after {
      content: ''; width: 28px; height: 1px; background: var(--accent); flex-shrink: 0;
    }
    .member-title {
      font-family: var(--ff-display); font-size: clamp(2rem, 2.8vw, 3rem);
      font-weight: 400; line-height: 1.08; color: #fff; margin-bottom: 18px;
    }
    .member-title em { font-style: italic; color: var(--accent); }
    .member-perks {
      list-style: none; margin-bottom: 36px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 14px 48px;
      text-align: left; max-width: 580px; position: relative;
    }
    .member-perks li {
      font-family: var(--ff-ui); font-size: 12.5px;
      color: rgba(221,216,205,0.5);
      display: flex; align-items: flex-start; gap: 10px; line-height: 1.5;
    }
    .member-perks li::before { content: '→'; color: var(--accent); font-weight: 700; font-size: 12px; flex-shrink: 0; margin-top: 1px; }
    .member-cta {
      display: inline-flex; align-items: center; gap: 12px;
      background: var(--accent); color: var(--bg);
      font-family: var(--ff-ui); font-size: 11px; font-weight: 700;
      letter-spacing: .18em; text-transform: uppercase;
      text-decoration: none; padding: 16px 36px;
      position: relative; overflow: hidden; transition: gap .3s ease;
    }
    .member-cta::before {
      content: ''; position: absolute; inset: 0; background: #fff;
      transform: translateX(-101%); transition: transform .4s cubic-bezier(.76,0,.24,1);
    }
    .member-cta:hover::before { transform: translateX(0); }
    .member-cta span, .member-cta svg { position: relative; z-index: 1; }
    .member-cta:hover { gap: 18px; }
    .member-cta svg { transition: transform .3s; }
    .member-cta:hover svg { transform: translateX(5px); }