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

  /* ── PALETTE DEFINITIONS ── */
  :root {
    --accent:  #EBEBEB;
    --pop:     #777777;
    --bg:      #060606;
    --fg:      #F0F0F0;
    --surface: #111111;
    --mid:     #1E1E1E;
    --transition-speed: 0.45s;
  }

  /* ── BASE ── */
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--fg);
    font-family: 'Barlow', sans-serif;
    cursor: crosshair;
    overflow-x: hidden;
    transition: background var(--transition-speed) ease, color var(--transition-speed) ease;
  }
  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.03; pointer-events: none; z-index: 9999;
  }

  /* ── PALETTE SWITCHER PANEL (HIDDEN BY DEFAULT — unlock with DEGENZ956) ── */
  #palette-toggle {
    position: fixed;
    right: 0; top: 50%;
    transform: translateY(-50%) translateX(100%);
    z-index: 500;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(.34,1.56,.64,1), opacity 0.3s;
  }
  #palette-toggle.unlocked {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .palette-tab {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--accent);
    padding: 14px 8px;
    cursor: crosshair;
    border: none;
    transition: all 0.2s;
    opacity: 0.85;
    border-left: 2px solid rgba(0,0,0,0.2);
  }
  .palette-tab:hover, .palette-tab.active {
    opacity: 1;
    padding-right: 14px;
    transform: rotate(180deg) translateX(-4px);
  }
  .palette-tab.active { border-left: 3px solid rgba(255,255,255,0.4); }

  /* ── ANNOUNCE BAR ── */
  .announce {
    position: fixed; top: 0; left: 0; right: 0; z-index: 101;
    background: var(--pop);
    color: var(--bg);
    text-align: center;
    padding: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: background var(--transition-speed) ease, color var(--transition-speed) ease;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 32px; left: 0; right: 0; z-index: 100;
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 48px;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(128,128,128,0.2);
    transition: background var(--transition-speed) ease, border-color var(--transition-speed) ease;
  }
  nav { background: color-mix(in srgb, var(--bg) 88%, transparent); }

  .nav-logo {
    font-family: 'Bebas Neue', sans-serif; font-size: 2rem;
    letter-spacing: 0.12em; color: var(--accent); text-decoration: none;
    transition: color 0.2s;
  }
  .nav-logo span { color: var(--pop); transition: color 0.2s; }
  .nav-logo:hover { color: var(--pop); }
  .nav-logo:hover span { color: var(--accent); }

  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
    font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--fg); text-decoration: none; position: relative; transition: color 0.2s;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--accent); transition: width 0.25s ease;
  }
  .nav-links a:hover { color: var(--accent); }
  .nav-links a:hover::after { width: 100%; }

  /* ── HERO ── */
  #home {
    min-height: 100vh; display: flex; flex-direction: column;
    justify-content: center; padding: 140px 48px 80px;
    position: relative; overflow: hidden;
  }
  .hero-bg-text {
    position: absolute; font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(120px, 22vw, 320px);
    color: var(--accent); opacity: 0.06;
    letter-spacing: -0.02em; top: 50%; left: 50%;
    transform: translate(-50%, -50%); white-space: nowrap;
    pointer-events: none; animation: bgdrift 20s ease-in-out infinite alternate;
    transition: color var(--transition-speed) ease;
  }
  @keyframes bgdrift {
    from { transform: translate(-52%, -50%) rotate(-2deg); }
    to   { transform: translate(-48%, -50%) rotate(2deg); }
  }
  .hero-tag {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
    font-size: 0.8rem; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--pop); margin-bottom: 20px;
    animation: fadeUp 0.8s ease both;
    transition: color var(--transition-speed) ease;
  }
  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(58px, 10vw, 140px);
    line-height: 0.95; letter-spacing: 0.04em;
    animation: fadeUp 0.8s 0.15s ease both;
  }
  .hero-title .red { color: var(--accent); transition: color var(--transition-speed) ease; }
  .hero-title .outline { -webkit-text-stroke: 2px var(--fg); color: transparent; transition: -webkit-text-stroke-color var(--transition-speed) ease; }
  .hero-sub {
    font-family: 'Barlow', sans-serif; font-weight: 300;
    font-size: clamp(14px, 1.8vw, 20px); max-width: 480px;
    line-height: 1.7; color: color-mix(in srgb, var(--fg) 60%, transparent);
    margin-top: 28px; animation: fadeUp 0.8s 0.3s ease both;
    transition: color var(--transition-speed) ease;
  }
  .hero-ctas { display: flex; gap: 16px; margin-top: 44px; animation: fadeUp 0.8s 0.45s ease both; }

  .btn-primary {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
    font-size: 1rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--bg); background: var(--accent); border: none;
    padding: 16px 40px; text-decoration: none; display: inline-block;
    cursor: crosshair; transition: background 0.2s, transform 0.15s, color 0.2s;
    clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%);
  }
  .btn-primary:hover { background: var(--pop); transform: translateY(-2px); }
  .btn-ghost {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
    font-size: 1rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--fg); background: transparent;
    border: 2px solid color-mix(in srgb, var(--fg) 30%, transparent);
    padding: 16px 40px; text-decoration: none; display: inline-block;
    cursor: crosshair; transition: border-color 0.2s, color 0.2s;
  }
  .btn-ghost:hover { border-color: var(--fg); color: var(--fg); }

  .hero-ticker {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: var(--accent); padding: 10px 0;
    overflow: hidden; white-space: nowrap;
    transition: background var(--transition-speed) ease;
  }
  .ticker-inner {
    display: inline-flex; animation: ticker 140s linear infinite;
    font-family: 'Bebas Neue', sans-serif; font-size: 1rem;
    letter-spacing: 0.25em; color: var(--bg);
    transition: color var(--transition-speed) ease;
  }
  .ticker-inner span { margin: 0 40px; }
  @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

  /* ── SECTION HEADERS ── */
  .section-header { display: flex; align-items: baseline; gap: 20px; margin-bottom: 60px; }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 7vw, 96px); letter-spacing: 0.05em; line-height: 1;
  }
  .section-line {
    flex: 1; height: 2px;
    background: linear-gradient(to right, var(--accent), transparent);
    transition: background var(--transition-speed) ease;
  }
  .section-tag {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
    font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--pop); margin-bottom: 12px;
    transition: color var(--transition-speed) ease;
  }

  /* ── THE CODE ── */
  #code {
    padding: 140px 48px;
    background: var(--bg);
    border-top: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
    border-bottom: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
    transition: background var(--transition-speed) ease;
    position: relative; overflow: hidden;
  }
  #code::before {
    content: 'TRUTHS'; position: absolute;
    left: -40px; bottom: -60px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(140px, 22vw, 360px);
    color: var(--accent); opacity: 0.04;
    pointer-events: none; letter-spacing: 0.04em;
    transition: color var(--transition-speed) ease;
  }
  .code-list {
    max-width: 1100px; margin: 0 auto;
    display: flex; flex-direction: column;
    position: relative; z-index: 1;
  }
  .code-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 28px; align-items: baseline;
    padding: 26px 0;
    border-bottom: 1px solid color-mix(in srgb, var(--fg) 12%, transparent);
    transition: border-color var(--transition-speed) ease, transform 0.25s;
  }
  .code-item:first-child { border-top: 1px solid color-mix(in srgb, var(--fg) 12%, transparent); }
  .code-item:hover { transform: translateX(8px); }
  .code-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 3.6vw, 48px);
    color: var(--accent); letter-spacing: 0.05em;
    line-height: 1;
    transition: color var(--transition-speed) ease;
  }
  .code-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(24px, 3vw, 42px);
    line-height: 1.1; letter-spacing: 0.03em;
    color: var(--fg);
    transition: color var(--transition-speed) ease;
  }
  .code-text .accent {
    color: var(--accent);
    transition: color var(--transition-speed) ease;
  }

  /* ── ONE-WORD BAND ── */
  #oneword-band {
    background: var(--accent);
    padding: 16px 0;
    overflow: hidden; white-space: nowrap;
    transition: background var(--transition-speed) ease;
  }
  .oneword-track {
    display: inline-flex;
    animation: ow-scroll 76s linear infinite;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(18px, 2.2vw, 30px);
    letter-spacing: 0.18em;
    color: var(--bg);
    transition: color var(--transition-speed) ease;
  }
  .oneword-track span { padding: 0 22px; }
  .oneword-track .dot { color: var(--bg); opacity: 0.4; padding: 0 6px; }
  @keyframes ow-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  @media (max-width: 768px) {
    #code { padding: 80px 24px; }
    .code-item { grid-template-columns: 56px 1fr; gap: 16px; padding: 20px 0; }
    #oneword-band { padding: 12px 0; }
  }

  /* ── ABOUT ── */
  #about {
    padding: 120px 48px; background: var(--surface);
    position: relative; overflow: hidden;
    transition: background var(--transition-speed) ease;
  }
  #about::before {
    content: 'DGZ'; position: absolute; right: -60px; top: 50%;
    transform: translateY(-50%); font-family: 'Bebas Neue', sans-serif;
    font-size: 300px; color: var(--accent); opacity: 0.04; pointer-events: none;
    transition: color var(--transition-speed) ease;
  }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
  .about-manifesto { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 5vw, 64px); line-height: 1.05; letter-spacing: 0.04em; }
  .about-manifesto .accent { color: var(--accent); transition: color var(--transition-speed) ease; }
  .about-body p { font-weight: 300; font-size: 1.2rem; line-height: 1.85; color: color-mix(in srgb, var(--fg) 75%, transparent); margin-bottom: 26px; transition: color var(--transition-speed) ease; }
  .about-body p strong { color: var(--fg); font-weight: 600; }
  .about-stats { display: flex; gap: 40px; margin-top: 40px; padding-top: 40px; border-top: 1px solid color-mix(in srgb, var(--fg) 10%, transparent); }
  .stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--accent); line-height: 1; display: block; transition: color var(--transition-speed) ease; }
  .stat-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--fg) 40%, transparent); }

  /* ── CONTACT ── */
  #contact { padding: 120px 48px; transition: background var(--transition-speed) ease; }
  .contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
  .contact-info h3 { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; letter-spacing: 0.08em; margin-bottom: 20px; }
  .contact-info p { font-weight: 300; color: color-mix(in srgb, var(--fg) 60%, transparent); line-height: 1.8; margin-bottom: 40px; }
  .social-links { display: flex; flex-direction: column; gap: 12px; }
  .social-link {
    display: flex; align-items: center; gap: 16px;
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
    font-size: 1rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--fg); text-decoration: none; padding: 14px 20px;
    border: 1px solid color-mix(in srgb, var(--fg) 10%, transparent);
    transition: border-color 0.2s, background 0.2s, color 0.2s;
  }
  .social-link:hover { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 8%, transparent); color: var(--accent); }
  .social-link-icon { font-size: 1.2rem; width: 24px; text-align: center; }
  .contact-form { display: flex; flex-direction: column; gap: 16px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 8px; }
  .form-group label {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
    font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: color-mix(in srgb, var(--fg) 50%, transparent);
  }
  .form-group input, .form-group textarea, .form-group select {
    background: var(--surface); border: 1px solid color-mix(in srgb, var(--fg) 10%, transparent);
    color: var(--fg); font-family: 'Barlow', sans-serif; font-size: 0.95rem;
    padding: 14px 18px; outline: none; transition: border-color 0.2s, background var(--transition-speed) ease, color var(--transition-speed) ease;
    -webkit-appearance: none;
  }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--accent); }
  .form-group textarea { resize: vertical; min-height: 120px; }
  .form-group select option { background: var(--surface); }
  .form-submit {
    font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem;
    letter-spacing: 0.2em; color: var(--bg); background: var(--accent);
    border: none; padding: 18px; cursor: crosshair;
    transition: background 0.2s, transform 0.1s, color 0.2s;
    margin-top: 8px;
  }
  .form-submit:hover { background: var(--pop); transform: translateY(-2px); }

  /* ── FOOTER ── */
  .footer-socials { display: flex; gap: 18px; align-items: center; }
  .footer-socials a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px;
    border: 1px solid color-mix(in srgb, var(--fg) 25%, transparent);
    border-radius: 50%;
    color: color-mix(in srgb, var(--fg) 60%, transparent);
    text-decoration: none; font-size: 0.95rem;
    transition: all 0.2s ease;
  }
  .footer-socials a:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: color-mix(in srgb, var(--accent) 8%, transparent);
    transform: translateY(-2px);
  }
  footer {
    background: var(--surface); border-top: 2px solid color-mix(in srgb, var(--accent) 30%, transparent);
    padding: 48px; display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 24px; transition: background var(--transition-speed) ease, border-color var(--transition-speed) ease;
  }
  .footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; color: var(--accent); letter-spacing: 0.1em; transition: color var(--transition-speed) ease; }
  .footer-logo span { color: var(--pop); transition: color var(--transition-speed) ease; }
  .footer-copy { font-family: 'Barlow Condensed', sans-serif; font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: color-mix(in srgb, var(--fg) 30%, transparent); }
  .footer-links { display: flex; gap: 28px; list-style: none; }
  .footer-links a { font-family: 'Barlow Condensed', sans-serif; font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: color-mix(in srgb, var(--fg) 40%, transparent); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--accent); }

  /* ── SCROLL PROGRESS ── */
  .scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--accent); z-index: 200; transition: background var(--transition-speed) ease; }

  /* ── PALETTE LABEL TOAST ── */
  #palette-toast {
    position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(80px);
    background: var(--surface); color: var(--fg); border: 1px solid var(--accent);
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
    font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase;
    padding: 12px 28px; z-index: 600;
    transition: transform 0.4s cubic-bezier(.34,1.56,.64,1), opacity 0.3s, border-color var(--transition-speed) ease;
    opacity: 0; pointer-events: none;
  }
  #palette-toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

  /* ── COUNTDOWN TIMER ── */
  .countdown-wrap {
    display: flex; gap: 24px; margin-top: 40px;
    animation: fadeUp 0.8s 0.55s ease both;
  }
  .countdown-label {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
    font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 32px;
    animation: fadeUp 0.8s 0.5s ease both;
    transition: color var(--transition-speed) ease;
  }
  .cd-block {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    min-width: 64px;
  }
  .cd-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1; color: var(--fg);
    background: var(--surface);
    border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
    padding: 8px 16px;
    min-width: 72px; text-align: center;
    transition: background var(--transition-speed) ease, border-color var(--transition-speed) ease;
  }
  .cd-unit {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
    font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: color-mix(in srgb, var(--fg) 40%, transparent);
  }
  .cd-sep {
    font-family: 'Bebas Neue', sans-serif; font-size: 48px;
    color: var(--accent); line-height: 1; align-self: flex-start; padding-top: 8px;
    transition: color var(--transition-speed) ease;
  }

  /* ── NEWSLETTER ── */
  #newsletter {
    padding: 80px 48px;
    background: var(--accent);
    position: relative; overflow: hidden;
    transition: background var(--transition-speed) ease;
  }
  #newsletter::before {
    content: 'DGZ'; position: absolute;
    right: -40px; top: 50%; transform: translateY(-50%);
    font-family: 'Bebas Neue', sans-serif; font-size: 280px;
    color: rgba(0,0,0,0.07); pointer-events: none; white-space: nowrap;
  }
  .newsletter-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 60px; position: relative; z-index: 1;
    flex-wrap: wrap;
  }
  .newsletter-copy h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 72px);
    line-height: 0.95; letter-spacing: 0.04em;
    color: var(--bg);
    transition: color var(--transition-speed) ease;
  }
  .newsletter-copy p {
    font-family: 'Barlow', sans-serif; font-weight: 300;
    font-size: 0.95rem; color: color-mix(in srgb, var(--bg) 70%, transparent);
    margin-top: 10px; max-width: 320px;
    transition: color var(--transition-speed) ease;
  }
  .newsletter-form {
    display: flex; gap: 0; flex: 1; max-width: 480px;
  }
  .newsletter-input {
    flex: 1; background: rgba(0,0,0,0.15);
    border: 2px solid rgba(0,0,0,0.2); border-right: none;
    color: var(--bg); font-family: 'Barlow', sans-serif;
    font-size: 0.95rem; padding: 16px 20px; outline: none;
    transition: border-color 0.2s, background var(--transition-speed) ease;
  }
  .newsletter-input::placeholder { color: color-mix(in srgb, var(--bg) 45%, transparent); }
  .newsletter-input:focus { border-color: rgba(0,0,0,0.5); background: rgba(0,0,0,0.2); }
  .newsletter-btn {
    font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem;
    letter-spacing: 0.2em; color: var(--accent); background: var(--bg);
    border: 2px solid var(--bg); padding: 16px 28px;
    cursor: crosshair; white-space: nowrap;
    transition: background 0.2s, color 0.2s, transform 0.1s;
  }
  .newsletter-btn:hover { background: transparent; color: var(--bg); transform: translateY(-2px); }
  .newsletter-perks {
    display: flex; gap: 24px; margin-top: 16px; flex-wrap: wrap;
  }
  .newsletter-perk {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
    font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: color-mix(in srgb, var(--bg) 60%, transparent);
    display: flex; align-items: center; gap: 6px;
  }
  .newsletter-perk::before { content: '✓'; color: var(--bg); }

  /* ── MOBILE ── */
  @media (max-width: 768px) {
    nav { padding: 14px 24px; top: 28px; }
    .nav-links { display: none; }
    .announce { padding: 6px 8px; font-size: 0.7rem; }
    #home { padding: 120px 24px 60px; }
    #about, #contact, #newsletter { padding-left: 24px; padding-right: 24px; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .form-row { grid-template-columns: 1fr; }
    footer { flex-direction: column; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    #palette-toggle { top: auto; bottom: 20px; right: 0; transform: none; flex-direction: row; flex-wrap: wrap; justify-content: flex-end; max-width: 50vw; }
    .palette-tab { writing-mode: horizontal-tb; transform: none; font-size: 0.55rem; padding: 8px 6px; }
    .palette-tab:hover, .palette-tab.active { transform: none; padding: 8px 6px; }
    .countdown-wrap { gap: 12px; }
    .cd-num { min-width: 52px; padding: 6px 10px; }
    .newsletter-inner { flex-direction: column; gap: 32px; }
    .newsletter-form { max-width: 100%; width: 100%; }
  }

  /* ── ACCESSIBILITY: KEYBOARD FOCUS ── */
  *:focus { outline: none; }
  *:focus-visible {
    outline: 2px solid var(--pop);
    outline-offset: 3px;
  }
  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  .palette-tab:focus-visible {
    outline: 2px solid var(--pop);
    outline-offset: 3px;
  }

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

  /* ── SOCIAL ICONS (SVG) ── */
  .social-icon svg {
    width: 16px; height: 16px;
    fill: currentColor;
    display: block;
  }
