
  /* ─── Reset & Vars ─── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --bg: #0F1115;
    --card: #181C22;
    --card-hover: #1E232B;
    --border: #2A3040;
    --text: #F5F7FA;
    --text-dim: #6B7A8A;
    --text-mid: #9BA7B6;
    --accent: #C9082A;
    --accent-dim: rgba(201, 8, 42, 0.12);
    --accent-glow: rgba(201, 8, 42, 0.25);
    --green: #5BA3AD;
    --blue: #5BA3AD;
    --amber: #C9A857;
    --purple: #CD7E64;
    --font-display: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    /* Label categories (matching app theme) */
    --cat-decisive: #A67DB8;
    --cat-significance: #C9A857;
    --cat-competitiveness: #5BA3AD;
    --cat-highlights: #CD7E64;
    --cat-lowlights: #6B7A8A;
  }

  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* ─── Noise Overlay ─── */
  body::before {
    content: '';
    position: fixed; inset: 0;
    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='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 999;
  }

  /* ─── Nav ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 18px 20px;
    display: flex; align-items: center; justify-content: center;
    gap: 48px;
    background: rgba(15,17,21,0.85);
    backdrop-filter: blur(14px) saturate(1.4);
    border-bottom: 1px solid rgba(42,48,64,0.5);
    transition: background 0.3s;
  }
  .nav-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .nav-icon {
    width: 32px;
    height: 32px;
    border-radius: 7px;
    object-fit: cover;
  }
  .nav-logo span { color: var(--accent); }
  .nav-links { display: flex; gap: 36px; align-items: center; }
  .nav-links a {
    color: var(--text-mid);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--text); }
  .nav-cta {
    background: var(--accent);
    color: #0F1115 !important;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600 !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
  }
  .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px var(--accent-glow); }
  .nav-x-link {
    color: var(--text-mid);
    display: flex;
    align-items: center;
    transition: color 0.2s;
    line-height: 0;
  }
  .nav-x-link:hover { color: var(--text); }
  .nav-x-link svg { width: 18px; height: 18px; fill: currentColor; }
  .nav-x-link {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .nav-bmc-link {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-mid);
    display: flex;
    align-items: center;
    transition: color 0.2s;
    line-height: 0;
  }
  .nav-bmc-link:hover { color: var(--text); }
  .nav-bmc-link svg { width: auto; height: 18px; display: block; }

  /* ─── Hero ─── */
  .hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    padding: 100px 12px 80px;
    position: relative;
  }
  .hero-glow {
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,8,42,0.15) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    filter: blur(60px);
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent-dim);
    border: 1px solid rgba(201,8,42,0.3);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.5px;
    margin-bottom: 32px;
    position: relative;
  }
  .hero-badge .dot {
    width: 7px; height: 7px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
  }
  @keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }
  .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(44px, 7vw, 72px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -3px;
    color: var(--text);
    position: relative;
    max-width: 720px;
  }
  .hero h1 .accent { color: var(--accent); }
  .hero-sub {
    margin-top: 28px;
    font-size: 16px;
    color: var(--text-mid);
    max-width: 760px;
    font-weight: 300;
    line-height: 1.7;
    position: relative;
  }
  /* new layout: place text and phone side-by-side */
  .hero-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    width: 100%;
    max-width: 1300px;
  }
  .hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    max-width: 760px;
  }
  .hero-text .hero-actions { justify-content: flex-start; }
  @media (max-width: 768px) {
    .hero-inner { flex-direction: column; gap: 20px; }
    .hero-text { align-items: center; text-align: center; max-width: 680px; }
    .hero-text .hero-actions { justify-content: center; }
  }
  .hero-phone {
    margin-top: 48px;
    position: relative;
    z-index: 1;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
  }
  .hero-phone img {
    max-width: 640px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.06);
    background-color: rgba(255,255,255,0.01);
    box-shadow: 0 28px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
    object-fit: cover;
    transition: transform 0.25s ease;
  }
  .hero-phone img:hover { transform: translateY(-6px) scale(1.02); }
  @media (max-width: 1100px) {
    .hero-phone img { max-width: 540px; }
  }
  @media (max-width: 900px) {
    .hero-phone { gap: 12px; }
    .hero-phone img { max-width: 460px; border-radius: 18px; }
  }
  @media (max-width: 520px) {
    .hero-phone { flex-direction: column; gap: 14px; }
    .hero-phone img { max-width: 520px; width: 96%; }
  }
  .hero-actions {
    margin-top: 44px;
    display: flex; gap: 16px; align-items: center;
    position: relative;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  /* ─── Store Buttons ─── */
  .btn-store {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    min-width: 180px;
  }
  .btn-store:hover { transform: translateY(-2px); }
  .btn-apple {
    background: #fff;
    color: #000;
  }
  .btn-apple:hover { box-shadow: 0 8px 32px rgba(255,255,255,0.15); }
  .btn-google {
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--text);
  }
  .btn-store.btn-disabled {
    opacity: 0.6;
    pointer-events: none;
    cursor: default;
  }
  .btn-google:hover { box-shadow: 0 8px 32px rgba(201,8,42,0.15); border-color: var(--accent); }
  .btn-github {
    background: #24292e;
    border: 1px solid #444d56;
    color: #fff;
  }
  .btn-github:hover { box-shadow: 0 8px 32px rgba(255,255,255,0.1); border-color: #6a737d; }
  .store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .store-sub {
    font-size: 10px;
    font-weight: 400;
    opacity: 0.7;
    line-height: 1;
  }
  .store-name {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
  }
  .store-coming {
    font-size: 11px;
    color: var(--text-dim);
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
  }
  .store-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
  }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--accent);
    color: #0F1115;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px var(--accent-glow); }
  .btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--text-mid);
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: border-color 0.2s, color 0.2s;
  }
  .btn-secondary:hover { border-color: #444; color: var(--text); }

  /* ─── Section Utils ─── */
  section { padding: 80px 24px; }
  .section-inner { max-width: 1000px; margin: 0 auto; }
  .section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    color: var(--text);
    max-width: 560px;
  }
  .section-desc {
    color: var(--text-mid);
    font-size: 16px;
    max-width: 480px;
    margin-top: 16px;
    font-weight: 300;
    line-height: 1.7;
  }

  /* ─── Reveal Animation ─── */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ─── How It Works ─── */
  .how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 64px;
  }
  .how-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 28px;
    transition: border-color 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
  }
  .how-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.4s;
  }
  .how-card:hover { border-color: var(--accent); transform: translateY(-3px); }
  .how-card:hover::before { opacity: 1; }
  .how-num {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--border);
    line-height: 1;
    margin-bottom: 20px;
  }
  .how-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
  }
  .how-card p { color: var(--text-mid); font-size: 14px; line-height: 1.65; }

  /* ─── Features ─── */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 64px;
  }
  .feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    transition: border-color 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
  }
  .feature-card:hover { border-color: var(--accent); transform: translateY(-3px); }
  .feature-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 16px;
    display: block;
    color: var(--accent);
  }
  .feature-icon svg { width: 100%; height: 100%; display: block; }
  .feature-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
  }
  .feature-card p { color: var(--text-mid); font-size: 14px; line-height: 1.65; }
  .feature-card.coming-soon {
    opacity: 0.55;
    border-style: dashed;
  }
  .feature-card.coming-soon:hover { border-color: var(--border); transform: none; cursor: default; }
  .feature-badge {
    display: inline-block;
    background: var(--accent-dim);
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 6px;
    margin-bottom: 12px;
  }

  /* ─── Labels Showcase ─── */
  .labels-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 16px; }
  .labels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
    margin-top: 48px;
  }
  .label-chip {
    display: flex; align-items: center; gap: 12px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 18px;
    transition: border-color 0.25s, background 0.25s;
    cursor: default;
  }
  .label-chip:hover { border-color: var(--accent); background: var(--card-hover); }
  .label-chip .emoji { font-size: 18px; line-height: 1; flex-shrink: 0; }
  .label-chip .label-info { min-width: 0; }
  .label-chip .label-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .label-chip .label-cat {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 2px;
  }
  .cat-decisive { color: var(--cat-decisive); }
  .cat-significance { color: var(--cat-significance); }
  .cat-competitiveness { color: var(--cat-competitiveness); }
  .cat-highlights { color: var(--cat-highlights); }
  .cat-lowlights { color: var(--cat-lowlights); }

  /* ─── Score Demo Strip ─── */
  .score-strip {
    display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
    margin-top: 64px;
  }
  .score-pill {
    display: flex; align-items: center; gap: 10px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 12px 24px;
    transition: transform 0.2s;
  }
  .score-pill:hover { transform: scale(1.05); }
  .score-pill .score-emoji { font-size: 20px; }
  .score-pill .score-val {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
  }
  .score-pill .score-label { font-size: 11px; color: var(--text-dim); font-weight: 500; }
  /* Score border colors - gradient from dull to accent red */
  .sp-1 { border-color: #2B2F36; } .sp-1 .score-val { color: #4B5563; }
  .sp-3 { border-color: #4A4550; } .sp-3 .score-val { color: #6B6070; }
  .sp-5 { border-color: #6B5055; } .sp-5 .score-val { color: #8B6A6F; }
  .sp-7 { border-color: #8C5050; } .sp-7 .score-val { color: #A86060; }
  .sp-9 { border-color: #B84840; } .sp-9 .score-val { color: #C9082A; }
  .sp-10 { border-color: var(--accent); background: rgba(201,8,42,0.08); box-shadow: 0 0 24px var(--accent-glow); }
  .sp-10 .score-val { color: var(--accent); }

  /* ─── FAQ ─── */
  .faq-list { margin-top: 48px; max-width: 680px; }
  .faq-item {
    border-bottom: 1px solid var(--border);
  }
  .faq-item:first-child { border-top: 1px solid var(--border); }
  .faq-q {
    width: 100%;
    background: none; border: none;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    padding: 22px 0;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px;
    transition: color 0.2s;
  }
  .faq-q:hover { color: var(--accent); }
  .faq-q .faq-icon {
    font-size: 18px;
    color: var(--text-dim);
    transition: transform 0.3s, color 0.3s;
    flex-shrink: 0;
  }
  .faq-item.open .faq-icon { transform: rotate(45deg); color: var(--accent); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(.22,1,.36,1), padding 0.3s;
    color: var(--text-mid);
    font-size: 14px;
    line-height: 1.7;
  }
  .faq-item.open .faq-a { max-height: 300px; padding-bottom: 22px; }

  /* ─── Support / Contact ─── */
  .support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 48px;
  }
  .support-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 28px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.3s, transform 0.3s;
    display: flex; flex-direction: column; gap: 12px;
  }
  .support-card:hover { border-color: var(--accent); transform: translateY(-2px); }
  .support-card .support-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
  }
  .support-card h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--text); }
  .support-card p { color: var(--text-mid); font-size: 13px; line-height: 1.6; }
  .support-card .card-arrow { color: var(--text-dim); font-size: 18px; margin-top: auto; transition: transform 0.2s, color 0.2s; }
  .support-card:hover .card-arrow { transform: translateX(4px); color: var(--accent); }
  .si-email { background: rgba(91,163,173,0.15); }
  .si-gh { background: rgba(155,58,205,0.1); }
  .si-coffee { background: rgba(201,168,87,0.15); }
  .si-bug { background: rgba(205,126,100,0.15); }

  /* ─── Coffee CTA Banner ─── */
  .coffee-banner {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--card) 0%, #1E1D1A 100%);
    border: 1px solid rgba(201,168,87,0.3);
    border-radius: 24px;
    padding: 56px 48px;
    display: flex; align-items: center; justify-content: space-between; gap: 40px;
    flex-wrap: wrap;
  }
  .coffee-text h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.8px;
    margin-bottom: 10px;
  }
  .coffee-text p { color: var(--text-mid); font-size: 15px; max-width: 420px; font-weight: 300; }
  .btn-coffee {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--accent);
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
  }
  .btn-coffee:hover { transform: translateY(-2px); box-shadow: 0 6px 24px var(--accent-glow); }

  /* ─── Legal Sections ─── */
  .legal-section { padding: 100px 24px 60px; }
  .legal-toggle {
    max-width: 720px; margin: 48px auto 0;
  }
  .legal-btn {
    width: 100%;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    padding: 20px 24px;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    gap: 12px;
    transition: background 0.2s, border-color 0.2s;
    margin-bottom: 12px;
  }
  .legal-btn:hover { background: var(--card-hover); border-color: var(--accent); }
  .legal-btn .legal-chevron { transition: transform 0.3s; font-size: 14px; color: var(--text-dim); }
  .legal-btn.open .legal-chevron { transform: rotate(180deg); color: var(--accent); }
  .legal-content {
    max-height: 0; overflow: hidden;
    transition: max-height 0.5s cubic-bezier(.22,1,.36,1);
    background: var(--card);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 12px 12px;
    margin-top: -12px;
  }
  .legal-content.open { max-height: 2000px; }
  .legal-inner {
    padding: 32px 28px;
    color: var(--text-mid);
    font-size: 13px;
    line-height: 1.8;
  }
  .legal-inner h4 { color: var(--text); font-size: 14px; font-weight: 600; margin: 20px 0 6px; }
  .legal-inner h4:first-child { margin-top: 0; }
  .legal-inner ul { padding-left: 18px; margin: 8px 0; }
  .legal-inner li { margin-bottom: 4px; }
  .legal-inner a { color: var(--accent); text-decoration: none; }
  .legal-inner a:hover { text-decoration: underline; }

  /* ─── Footer ─── */
  footer {
    padding: 60px 24px 40px;
    text-align: center;
    border-top: 1px solid var(--border);
  }
  .footer-logo {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .footer-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
  }
  .footer-logo span { color: var(--accent); }
  footer p { color: var(--text-dim); font-size: 12px; }
  footer .footer-links { margin-top: 12px; display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
  footer .footer-links a { color: var(--text-dim); font-size: 12px; text-decoration: none; transition: color 0.2s; }
  footer .footer-links a:hover { color: var(--accent); }

  /* ─── Responsive ─── */
  @media (max-width: 768px) {
    nav { padding: 14px 20px; }
    .nav-links { display: none; }
    .how-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .support-grid { grid-template-columns: 1fr; }
    .coffee-banner { padding: 36px 28px; text-align: center; justify-content: center; }
    .coffee-text p { max-width: 100%; }
    section { padding: 60px 20px; }
    .labels-header { flex-direction: column; align-items: flex-start; }
  }
  @media (max-width: 480px) {
    .hero { padding: 120px 20px 60px; }
    .hero h1 { letter-spacing: -1.5px; }
    .hero-actions { flex-direction: column; width: 100%; }
    .btn-store { justify-content: center; width: 100%; }
    .btn-primary, .btn-secondary { justify-content: center; width: 100%; }
    .footer-links { gap: 16px; }
  }

  /* ─── Press / As Seen In ─── */
  .press-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 48px;
  }
  .press-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s, transform 0.3s;
  }
  .press-card:hover { border-color: var(--accent); transform: translateY(-3px); }
  .press-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #000;
  }
  .press-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
  }
  .press-card:hover .press-thumb img { transform: scale(1.04); }
  .press-play-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.35);
    transition: background 0.2s;
  }
  .press-card:hover .press-play-icon { background: rgba(201,8,42,0.5); }
  .press-play-icon svg { width: 48px; height: 48px; color: #fff; filter: drop-shadow(0 2px 12px rgba(0,0,0,0.7)); }
  .press-article-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    padding: 32px;
    background: var(--card-hover);
    border-bottom: 1px solid var(--border);
  }
  .press-body {
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
  }
  .press-source {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .press-source svg { width: 14px; height: 14px; }
  .press-source--yt { color: #FF0000; }
  .press-source--article { color: var(--accent); }
  .press-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.4;
  }
  .press-snippet { color: var(--text-mid); font-size: 13px; line-height: 1.65; }
  .press-cta {
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    margin-top: 8px;
  }
  @media (max-width: 768px) {
    .press-grid { grid-template-columns: 1fr; }
  }
