  :root {
    --amber: #E67E22;
    --amber-light: #F0A050;
    --amber-glow: #E67E2233;
    --espresso: #1A0E0A;
    --espresso-mid: #2C1810;
    --espresso-light: #3D2418;
    --cream: #FBF7F0;
    --cream-dark: #F0E8DA;
    --parchment: #E8DCC8;
    --gold: #D4A843;
    --gold-light: #E8C96A;
    --text-dark: #1A0E0A;
    --text-mid: #5C4033;
    --text-light: #8B7355;
    --text-on-dark: #F0E8DA;
    --text-on-dark-muted: #A89279;
    --green-proof: #4A7C59;
    --radius: 6px;
  }

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

  html {
    scroll-behavior: smooth;
    font-size: 16px;
    background: var(--espresso);
  }

  body {
    font-family: 'Source Sans 3', 'Georgia', serif;
    color: var(--text-dark);
    background: var(--espresso);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .section-label {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }

  .section-label::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--amber);
  }

  h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
  }

  .dark-section h2 { color: var(--cream); }

  p.lead {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-mid);
    max-width: 640px;
  }

  .dark-section p.lead { color: var(--text-on-dark-muted); }

  body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    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)' opacity='1'/%3E%3C/svg%3E");
    background-size: 200px;
  }

  /* ========== NAV ========== */
  .topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 2rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
  }

  .topbar.scrolled {
    background: rgba(26, 14, 10, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    padding: 0.6rem 2rem;
  }

  .topbar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .topbar-logo {
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    color: var(--cream);
    text-decoration: none;
    letter-spacing: -0.01em;
  }

  .topbar-logo span { color: var(--amber); }

  .topbar-nav {
    display: flex;
    gap: 0.2rem;
    justify-self: center;
  }

  .topbar-link {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    padding: 0.4rem 0.7rem;
    border-radius: 100px;
    transition: all 0.25s;
  }

  .topbar-link:hover { color: rgba(255,255,255,0.8); }

  .topbar-link.active {
    color: var(--cream);
    background: rgba(255,255,255,0.08);
  }

  .topbar-right {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    justify-self: end;
  }

  .lang-switcher {
    display: flex;
    gap: 0;
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    overflow: hidden;
  }

  .lang-btn {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    background: none;
    border: none;
    padding: 0.4rem 0.6rem;
    cursor: pointer;
    transition: all 0.25s;
  }

  .lang-btn:hover { color: rgba(255,255,255,0.8); }

  .lang-btn.active {
    color: var(--espresso);
    background: var(--amber);
  }

  .lang-select {
    display: none;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cream);
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    padding: 0.35rem 0.5rem;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(255,255,255,0.5)'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    padding-right: 1.4rem;
  }

  .lang-select option {
    background: var(--espresso);
    color: var(--cream);
  }

  .topbar-cta {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber);
    text-decoration: none;
    border: 1.5px solid var(--amber);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    transition: all 0.3s;
  }

  .topbar-cta:hover {
    background: var(--amber);
    color: var(--espresso);
  }

  /* ========== HERO ========== */
  .hero {
    min-height: 100vh;
    background: var(--espresso);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0 4rem;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 70% 40%, rgba(230, 126, 34, 0.08) 0%, transparent 70%),
      radial-gradient(ellipse 50% 50% at 20% 80%, rgba(212, 168, 67, 0.05) 0%, transparent 60%);
    pointer-events: none;
  }

  .hero-content { position: relative; z-index: 2; }

  .hero-eyebrow {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

  .hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 1.5px;
    background: var(--amber);
  }

  .hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 400;
    line-height: 1.05;
    color: var(--cream);
    margin-bottom: 2rem;
    max-width: 800px;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--amber);
  }

  .hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-on-dark-muted);
    max-width: 560px;
    margin-bottom: 3rem;
  }

  .hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
  }

  .hero-stat { display: flex; flex-direction: column; }

  .hero-stat-number {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    color: var(--amber);
    line-height: 1;
    margin-bottom: 0.3rem;
  }

  .hero-stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-on-dark-muted);
  }

  .hero-badge {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    height: 280px;
    border: 2px solid rgba(230, 126, 34, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  .hero-badge-inner {
    font-family: 'DM Serif Display', serif;
    font-size: 3.5rem;
    color: var(--amber);
    line-height: 1;
  }

  .hero-badge-text {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-on-dark-muted);
    margin-top: 0.5rem;
  }

  /* ========== EXPERIMENT ========== */
  .experiment {
    padding: 7rem 0;
    background: var(--cream);
    border-bottom: 1px solid var(--parchment);
  }

  .experiment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
  }

  .experiment-card {
    padding: 2.5rem;
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--parchment);
    position: relative;
  }

  .experiment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2.5rem;
    right: 2.5rem;
    height: 3px;
    background: linear-gradient(90deg, var(--amber), var(--gold));
    border-radius: 0 0 3px 3px;
  }

  .experiment-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
  }

  .experiment-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-mid);
  }

  /* ========== METRICS ========== */
  .metrics {
    padding: 7rem 0;
    background: var(--espresso);
    position: relative;
  }

  .metrics::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 10% 20%, rgba(230, 126, 34, 0.06) 0%, transparent 50%),
      radial-gradient(circle at 90% 80%, rgba(212, 168, 67, 0.04) 0%, transparent 50%);
    pointer-events: none;
  }

  .metrics .container { position: relative; z-index: 1; }

  .metrics-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 3rem;
  }

  .metric-card {
    padding: 2.5rem 1.5rem;
    background: var(--espresso-mid);
    text-align: center;
    transition: background 0.3s;
  }

  .metric-card:hover { background: var(--espresso-light); }

  .metric-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--gold);
  }

  .highlight .metric-icon {
    color: var(--amber);
  }

  .metric-number {
    font-family: 'DM Serif Display', serif;
    font-size: 2.2rem;
    color: var(--amber);
    line-height: 1;
    margin-bottom: 0.5rem;
  }

  .metric-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-on-dark-muted);
    line-height: 1.4;
  }

  .metric-card.highlight {
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.15), rgba(212, 168, 67, 0.08));
  }

  .metric-card.highlight .metric-number { font-size: 2.6rem; }

  /* ========== TRAFFIC TIMELINE ========== */
  .timeline-section {
    padding: 7rem 0;
    background: var(--cream);
    border-bottom: 1px solid var(--parchment);
  }

  .timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
  }

  .timeline-chart {
    position: relative;
    height: 320px;
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--parchment);
    padding: 2rem 2rem 3rem;
    overflow: hidden;
  }

  .timeline-chart-bg {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 2rem 3rem;
    pointer-events: none;
  }

  .chart-gridline {
    width: 100%;
    height: 1px;
    background: var(--parchment);
  }

  .chart-svg {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
  }

  .timeline-labels {
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 0.8rem;
    left: 2rem;
    right: 2rem;
  }

  .timeline-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-light);
  }

  .timeline-annotations {
    position: absolute;
    inset: 2rem 2rem 3rem;
    pointer-events: none;
    z-index: 2;
  }

  .annotation {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: auto;
  }

  .annotation-dot {
    width: 10px;
    height: 10px;
    background: var(--amber);
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 0 3px var(--amber-glow);
    margin-bottom: 0.4rem;
  }

  .annotation-line {
    width: 1px;
    height: 30px;
    background: var(--amber);
    opacity: 0.4;
    margin-bottom: 0.4rem;
  }

  .annotation-text {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--amber);
    white-space: nowrap;
    background: rgba(251,247,240,0.9);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
  }

  /* ========== ANALYTICS SHOWCASE ========== */
  .analytics-showcase {
    margin-top: 3rem;
    padding: 2.5rem;
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--parchment);
    display: flex;
    gap: 2.5rem;
    align-items: center;
  }

  .analytics-screenshot {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--parchment);
  }

  .analytics-callouts {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .callout {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }

  .callout-icon {
    width: 36px;
    height: 36px;
    background: rgba(230, 126, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
  }

  .callout-text h4 {
    font-family: 'DM Serif Display', serif;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
  }

  .callout-text p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
  }

  /* ========== PARTNERS ========== */
  .partners {
    padding: 7rem 0;
    background: var(--cream-dark);
  }

  .partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1px;
    background: var(--parchment);
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 3rem;
  }

  .partner-card {
    background: white;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: all 0.3s;
    cursor: default;
  }

  .partner-card:hover { background: rgba(230, 126, 34, 0.04); }
  .partner-card:hover .partner-name { color: var(--amber); }

  .partner-card a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .partner-logo {
    height: 50px;
    max-width: 110px;
    object-fit: contain;
    margin-bottom: 0.8rem;
    opacity: 0.75;
    transition: opacity 0.3s;
    filter: grayscale(30%);
  }

  .partner-card:hover .partner-logo {
    opacity: 1;
    filter: grayscale(0%);
  }

  .partner-name {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--text-dark);
    text-align: center;
    transition: color 0.3s;
    line-height: 1.3;
  }

  .partner-type {
    font-size: 0.65rem;
    color: var(--text-light);
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .partners-count {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 0.05em;
  }

  /* ========== PRIZES ========== */
  .prizes {
    padding: 7rem 0;
    background: var(--cream);
    border-bottom: 1px solid var(--parchment);
  }

  .prizes-hero-number {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
  }

  .prizes-hero-number .big {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--amber);
    line-height: 1;
  }

  .prizes-hero-number .unit {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 600;
  }

  .prizes-hero-number .plus {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    color: var(--text-light);
    margin: 0 0.3rem;
  }

  .prizes-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
  }

  .prizes-table thead th {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    text-align: left;
    padding: 1rem 1.5rem;
    border-bottom: 2px solid var(--parchment);
  }

  .prizes-table tbody td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--parchment);
    font-size: 0.95rem;
    color: var(--text-mid);
  }

  .prizes-table tbody tr:hover { background: rgba(230, 126, 34, 0.03); }

  .rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 0.5rem;
    border-radius: 100px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
  }

  .rank-badge.gold { background: #D4A843; color: white; }
  .rank-badge.silver { background: #A8A8A8; color: white; }
  .rank-badge.bronze { background: #B87333; color: white; }
  .rank-badge.other { background: var(--parchment); color: var(--text-mid); }

  .volume-bar {
    height: 8px;
    background: var(--parchment);
    border-radius: 100px;
    min-width: 120px;
  }

  .volume-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--amber), var(--gold));
    border-radius: 100px;
  }

  .volume-number {
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    color: var(--text-dark);
  }

  /* ========== WHAT WE PROVED ========== */
  .proved {
    padding: 7rem 0;
    background: var(--espresso);
    position: relative;
  }

  .proved::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(230, 126, 34, 0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .proved .container { position: relative; z-index: 1; }

  .proved-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }

  .proved-card {
    padding: 2.5rem;
    background: var(--espresso-mid);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    transition: border-color 0.3s;
  }

  .proved-card:hover { border-color: rgba(230, 126, 34, 0.2); }

  .proved-card-number {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    color: var(--amber);
    margin-bottom: 0.8rem;
    line-height: 1;
  }

  .proved-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.15rem;
    color: var(--cream);
    margin-bottom: 0.8rem;
    line-height: 1.3;
  }

  .proved-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-on-dark-muted);
  }

  .proved-card.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.12), rgba(212, 168, 67, 0.06));
    border-color: rgba(230, 126, 34, 0.15);
    text-align: center;
    padding: 3rem;
  }

  .proved-card.featured .proved-card-number { font-size: 3rem; }

  /* ========== CTA ========== */
  .cta-section {
    padding: 8rem 0;
    text-align: center;
    background: var(--cream);
  }

  .cta-section h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
  }

  .cta-section h2 em {
    font-style: italic;
    color: var(--amber);
  }

  .cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-mid);
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }

  .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    color: white;
    background: var(--amber);
    padding: 1.1rem 2.5rem;
    border-radius: 100px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(230, 126, 34, 0.3);
  }

  .cta-button:hover {
    background: var(--amber-light);
    box-shadow: 0 6px 30px rgba(230, 126, 34, 0.4);
    transform: translateY(-2px);
  }

  .cta-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
  }

  .cta-button:hover svg { transform: translateX(4px); }

  .cta-footnote {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: var(--text-light);
  }

  /* ========== FOOTER ========== */
  footer {
    padding: 3rem 0;
    background: var(--espresso);
    text-align: center;
  }

  footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-main p {
    font-size: 0.75rem;
    color: var(--text-on-dark-muted);
    letter-spacing: 0.03em;
    margin-bottom: 0.4rem;
  }

  .footer-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
  }

  .footer-links a {
    font-size: 0.7rem;
    color: var(--amber);
    text-decoration: none;
    transition: opacity 0.2s;
  }

  .footer-links a:hover { opacity: 0.8; }

  .footer-sep {
    font-size: 0.7rem;
    color: var(--text-on-dark-muted);
    opacity: 0.4;
  }

  footer a {
    color: var(--amber);
    text-decoration: none;
  }

  .footer-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    align-self: center;
  }

  .footer-brand:hover .footer-ic-logo { opacity: 1; }
  .footer-brand:hover .footer-by { opacity: 0.8; }

  .footer-by {
    font-size: 0.65rem;
    color: var(--text-on-dark-muted);
    opacity: 0.6;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
    transition: opacity 0.3s;
  }

  .footer-ic-logo {
    height: 18px;
    opacity: 0.5;
    transition: opacity 0.3s;
  }

  /* ========== COOKIE BANNER ========== */
  .cookie-banner {
    position: fixed;
    bottom: 1.25rem;
    left: 1.25rem;
    z-index: 1000;
    max-width: 380px;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .cookie-inner {
    background: var(--cream);
    border: 1px solid var(--parchment);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  }

  .cookie-top {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
  }

  .cookie-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--amber), var(--gold));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 0.9rem;
  }

  .cookie-top h3 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
  }

  .cookie-top p {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.5;
  }

  .cookie-actions {
    display: flex;
    gap: 0.4rem;
  }

  .cookie-btn {
    flex: 1;
    padding: 0.5rem 0.8rem;
    border-radius: var(--radius);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
  }

  .cookie-btn:hover { opacity: 0.85; }

  .cookie-btn.accept {
    background: linear-gradient(135deg, var(--amber), var(--gold));
    color: white;
  }

  .cookie-btn.decline {
    background: var(--parchment);
    color: var(--text-mid);
  }

  .cookie-btn.info {
    flex: 0;
    padding: 0.5rem 0.6rem;
    background: none;
    color: var(--text-light);
    font-size: 0.8rem;
  }

  .cookie-btn.info:hover { color: var(--text-mid); }

  /* ========== LEGAL MODAL ========== */
  .legal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }

  .legal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.2s ease;
  }

  .legal-panel {
    position: relative;
    background: var(--cream);
    border: 1px solid var(--parchment);
    border-radius: var(--radius);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 640px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .legal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--parchment);
  }

  .legal-header h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
  }

  .legal-close {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.3rem;
    font-size: 1rem;
    transition: color 0.2s;
  }

  .legal-close:hover { color: var(--text-dark); }

  .legal-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
  }

  .legal-company {
    background: white;
    border: 1px solid var(--parchment);
    border-radius: var(--radius);
    padding: 1rem 1.2rem;
    margin-bottom: 1.5rem;
  }

  .legal-company h4 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
  }

  .legal-company p {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.5;
  }

  .legal-company a {
    color: var(--amber);
    text-decoration: none;
    font-size: 0.85rem;
  }

  .legal-company a:hover { text-decoration: underline; }

  .legal-prefs {
    background: white;
    border: 1px solid var(--parchment);
    border-radius: var(--radius);
    padding: 1rem 1.2rem;
    margin-bottom: 1.5rem;
  }

  .legal-prefs-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
  }

  .legal-prefs h4 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
  }

  .legal-status {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 100px;
  }

  .legal-status.accepted { background: rgba(74, 124, 89, 0.1); color: var(--green-proof); }
  .legal-status.declined { background: rgba(192, 57, 43, 0.1); color: #c0392b; }
  .legal-status.unset { background: var(--parchment); color: var(--text-light); }

  .legal-prefs p {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
  }

  .legal-reset-btn {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius);
    border: 1px solid var(--parchment);
    background: white;
    color: var(--text-mid);
    cursor: pointer;
    transition: background 0.2s;
  }

  .legal-reset-btn:hover { background: var(--parchment); }

  .legal-content h3 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .legal-content h3:first-child { margin-top: 0; }

  .legal-content p {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.6;
  }

  .legal-content ul {
    list-style: disc;
    padding-left: 1.2rem;
    margin: 0.5rem 0;
  }

  .legal-content li {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 0.3rem;
  }

  .legal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--parchment);
  }

  @keyframes slideUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* ========== ANIMATIONS ========== */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .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; }

  /* ========== RESPONSIVE ========== */
  .landing-whats-new { grid-template-columns: repeat(4, 1fr); }

  @media (max-width: 900px) {
    .experiment-grid { grid-template-columns: 1fr; gap: 2rem; }
    .metrics-grid { grid-template-columns: repeat(2, 1fr); }
    .landing-whats-new { grid-template-columns: repeat(2, 1fr); }
    .proved-grid { grid-template-columns: 1fr; }
    .hero-badge { display: none; }
    .analytics-showcase { flex-direction: column; }
    .analytics-callouts { flex: 1; width: 100%; }
    .hero-stats { gap: 2rem; }
    .topbar-cta { display: none; }
    .topbar-nav { gap: 0; }
    .topbar-link { font-size: 0.65rem; padding: 0.35rem 0.5rem; }
  }

  @media (max-width: 600px) {
    .cookie-banner { left: 0.75rem; right: 0.75rem; max-width: none; }
    footer .container { flex-direction: column; text-align: center; }
    .container { padding: 0 1.2rem; }
    .metrics-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-stats { flex-direction: column; gap: 1.5rem; }
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .prizes-table { font-size: 0.85rem; }
    .prizes-table thead th,
    .prizes-table tbody td { padding: 0.8rem; }
    .timeline-chart { height: 240px; }
    .timeline-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .lang-switcher { display: none; }
    .lang-select { display: block; }
    .topbar { padding: 0.8rem 1rem; }
    .topbar.scrolled { padding: 0.5rem 1rem; }
    .topbar-link { font-size: 0.6rem; padding: 0.3rem 0.4rem; }
  }
