  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
 
  :root {
    --yellow: #F5C842;
    --yellow-dark: #D4A70A;
    --black: #0A0A0A;
    --white: #F7F5F0;
    --gray-mid: #888;
    --gray-light: #D8D5CE;
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --font-mono: 'DM Mono', monospace;
  }
 
  html { scroll-behavior: auto; }
  body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    overflow-x: hidden;
  }
 
  /* ── HERO STACKED ── */
  .hero-stacked {
    position: relative;
    height: 300vh;
  }
  .hero-stacked__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-stacked__bg {
    position: absolute;
    inset: 0;
    background: var(--black);
    z-index: 0;
  }
  .stacked-lines {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    transform: translateY(0);
    will-change: transform;
  }
  .stacked-line {
    font-family: var(--font-display);
    font-size: clamp(52px, 9vw, 120px);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
    white-space: nowrap;
    opacity: 0.12;
    transition: opacity 0.05s;
    user-select: none;
  }
  .stacked-line.active { opacity: 1; color: var(--yellow); }
  .stacked-line.near { opacity: 0.45; }
 
  /* ── MARQUEE SECTION ── */
  .marquee-section {
    position: relative;
    height: 200vh;
    background: var(--black);
  }
  .marquee-section__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
  }
  .marquee-row {
    overflow: hidden;
    padding: 4px 0;
  }
  .marquee-inner {
    display: flex;
    gap: 0;
    will-change: transform;
  }
  .marquee-text {
    font-family: var(--font-display);
    font-size: clamp(64px, 13vw, 170px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
    padding-right: 0.15em;
  }
  .marquee-row:nth-child(odd) .marquee-text { color: var(--yellow); }
  .marquee-row:nth-child(even) .marquee-text { color: var(--white); -webkit-text-stroke: 2px var(--white); color: transparent; }
 
  /* ── NOISE TEXTURE OVERLAY ── */
  .noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
  }
 
  /* ── DIVIDER TAG ── */
  .section-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .section-tag::after {
    content: '';
    display: block;
    height: 1px;
    width: 40px;
    background: var(--yellow);
    opacity: 0.5;
  }
 
  /* ── STORY SECTION ── */
  .story-section {
    background: var(--white);
    color: var(--black);
    padding: 120px 0 100px;
  }
  .story-section .section-tag { color: var(--black); opacity: 0.4; }
  .story-section .section-tag::after { background: var(--black); }
  .container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
  .story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .story-headline {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 88px);
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -0.02em;
  }
  .story-headline em {
    font-style: normal;
    color: var(--yellow-dark);
    display: block;
  }
  .story-body {
    padding-top: 8px;
  }
  .story-body p {
    font-size: 17px;
    line-height: 1.75;
    color: #333;
    margin-bottom: 1.4rem;
  }
  .story-body p:last-child { margin-bottom: 0; }
 
  /* Year badge */
  .year-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--black);
    color: var(--yellow);
    padding: 6px 16px;
    margin-bottom: 2rem;
  }
 
  /* ── MANIFESTO BAND ── */
  .manifesto {
    background: var(--yellow);
    padding: 80px 48px;
    overflow: hidden;
  }
  .manifesto__text {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--black);
    line-height: 0.95;
    letter-spacing: -0.02em;
    max-width: 960px;
    margin: 0 auto;
  }
  .manifesto__text span {
    display: inline-block;
    background: var(--black);
    color: var(--yellow);
    padding: 0 0.12em;
    line-height: 1.05;
  }
 
  /* ── VALUES SECTION ── */
  .values-section {
    background: var(--black);
    padding: 120px 0;
    border-top: 1px solid rgba(245,200,66,0.15);
  }
  .values-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
  }
  .values-headline {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 0.95;
    color: var(--white);
    max-width: 480px;
  }
  .values-count {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--gray-mid);
    letter-spacing: 0.15em;
  }
  .values-list { display: flex; flex-direction: column; }
  .value-item {
    display: grid;
    grid-template-columns: 60px 1fr 1fr;
    align-items: start;
    gap: 40px;
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .value-item.visible { opacity: 1; transform: translateY(0); }
  .value-num {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--yellow);
    letter-spacing: 0.1em;
    padding-top: 4px;
  }
  .value-title {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--white);
    line-height: 1;
  }
  .value-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-mid);
  }
 
  /* ── TEAM SECTION ── */
  .team-section {
    background: #111;
    padding: 120px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
  }
  .team-headline {
    font-family: var(--font-display);
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 0.92;
    color: var(--white);
    margin-bottom: 72px;
    max-width: 600px;
  }
  .team-headline em {
    font-style: normal;
    color: var(--yellow);
  }
  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .team-card {
    background: #1A1A1A;
    padding: 36px 28px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, background 0.3s;
    cursor: default;
    border-radius: 12px;
  }
  .team-card:hover { background: #222; }
  .team-card.visible { opacity: 1; transform: translateY(0); }
  .team-card:nth-child(2) { transition-delay: 0.1s; }
  .team-card:nth-child(3) { transition-delay: 0.2s; }
  .team-avatar {
    width: 64px;
    height: 64px;
    background: var(--yellow);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    color: var(--black);
    text-transform: uppercase;
    border-radius: 12px;
  }
  .team-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--white);
    margin-bottom: 4px;
  }
  .team-role {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 16px;
  }
  .team-bio { font-size: 14px; line-height: 1.65; color: var(--gray-mid); }
 
  /* ── TIMELINE SECTION ── */
  .timeline-section {
    background: var(--white);
    color: var(--black);
    padding: 120px 0;
  }
  .timeline-section .section-tag { color: #555; }
  .timeline-section .section-tag::after { background: #555; }
  .tl-headline {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 64px;
    line-height: 0.9;
    max-width: 500px;
  }
  .timeline { display: flex; flex-direction: column; }
  .tl-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 32px;
    padding: 28px 0;
    border-top: 1px solid rgba(0,0,0,0.08);
    opacity: 0;
    transform: translateX(-16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .tl-item.visible { opacity: 1; transform: translateX(0); }
  .tl-year {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    color: var(--yellow);
    letter-spacing: -0.02em;
    padding-top: 2px;
  }
  .tl-content-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
  }
  .tl-content-desc { font-size: 14px; line-height: 1.7; color: #555; }
 
  /* ── CTA CLOSER ── */
  .cta-section {
    background: var(--black);
    padding: 140px 0 120px;
    text-align: center;
    border-top: 1px solid rgba(245,200,66,0.1);
  }
  .cta-headline {
    font-family: var(--font-display);
    font-size: clamp(52px, 9vw, 130px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 0.88;
    color: var(--white);
    margin-bottom: 0;
  }
  .cta-headline .accent { color: var(--yellow); display: block; }
  .cta-sub {
    font-size: 16px;
    color: var(--gray-mid);
    margin: 28px auto 40px;
    max-width: 380px;
    line-height: 1.6;
  }
  .cta-btn {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: var(--yellow);
    color: var(--black);
    padding: 16px 44px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    border-radius: 10px;
  }
  .cta-btn:hover { background: #fff; transform: translateY(-2px); }
 
  /* ── SCROLL INDICATOR ── */
  .scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    animation: fadeOut 0.4s ease forwards;
    animation-play-state: paused;
  }
  .scroll-hint-line {
    width: 1px;
    height: 40px;
    background: var(--yellow);
    animation: lineDown 1.4s ease infinite;
  }
  .scroll-hint-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-mid);
  }
  @keyframes lineDown {
    0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
    40% { transform: scaleY(1); transform-origin: top; opacity: 1; }
    60% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
  }
  @keyframes fadeOut { to { opacity: 0; pointer-events: none; } }
 
  @media (max-width: 768px) {
    .story-grid { grid-template-columns: 1fr; gap: 40px; }
    .team-grid { grid-template-columns: 1fr; }
    .value-item { grid-template-columns: 40px 1fr; }
    .value-desc { grid-column: 2; }
    .container { padding: 0 24px; }
    .values-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  }