@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400&family=Bebas+Neue&display=swap');

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --black: #000;
    --white: #fff;
    --yellow: #FFE500;
    --red: #FF2020;
    --border: 3px solid #000;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--white);
    color: var(--black);
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    line-height: 1.5;
    cursor: crosshair;
  }

  a { color: inherit; text-decoration: none; }

  /* ===================== HEADER ===================== */
  header {
    border-bottom: var(--border);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: stretch;
  }

  .header-left {
    padding: 20px 28px;
    border-right: var(--border);
  }

  .site-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--black);
    color: var(--white);
    display: inline-block;
    padding: 4px 10px;
    margin-bottom: 12px;
  }

  .site-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 8vw, 96px);
    line-height: 0.9;
    letter-spacing: -1px;
  }

  .header-right {
    padding: 20px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 200px;
  }

  .header-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .header-nav a {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 0;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.1s;
  }

  .header-nav a:hover { background: var(--yellow); padding-left: 8px; }
  .header-nav a::after { content: '→'; }

  .header-date {
    font-size: 10px;
    color: #888;
    letter-spacing: 1px;
  }

  /* ===================== HERO ===================== */
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: var(--border);
    min-height: 70vh;
  }

  .hero-text {
    padding: 56px 48px;
    border-right: var(--border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .hero-overline {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 32px;
  }

  .hero-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(56px, 7vw, 112px);
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 40px;
  }

  .hero-headline em {
    font-style: normal;
    -webkit-text-stroke: 2px var(--black);
    color: transparent;
  }

  .hero-body {
    font-size: 16px;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 48px;
  }

  .hero-body strong { background: var(--yellow); padding: 0 3px; }

  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: var(--black);
    color: var(--white);
    padding: 16px 28px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: var(--border);
    transition: all 0.15s;
    width: fit-content;
  }

  .hero-cta:hover { background: var(--yellow); color: var(--black); }

  .hero-image {
    position: relative;
    overflow: hidden;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    filter: grayscale(15%) contrast(1.05);
    mix-blend-mode: multiply;
  }

  .hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(0,0,0,0.03) 3px,
      rgba(0,0,0,0.03) 4px
    );
    z-index: 1;
    pointer-events: none;
  }

  .hero-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--yellow);
    border-top: var(--border);
    padding: 12px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
    display: flex;
    justify-content: space-between;
  }
    to { transform: translateX(-50%); }
  }

  /* ===================== GRID SECTION ===================== */
  .grid-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: var(--border);
  }

  .grid-cell {
    padding: 40px 36px;
    border-right: var(--border);
  }

  .grid-cell:last-child { border-right: none; }

  .cell-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 80px;
    line-height: 1;
    color: #eee;
    margin-bottom: -10px;
  }

  .cell-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-top: 8px;
    border-top: var(--border);
  }

  .cell-body {
    font-size: 13px;
    color: #444;
    line-height: 1.7;
  }

  /* ===================== PULLQUOTE ===================== */
  .pullquote-section {
    background: var(--black);
    color: var(--white);
    padding: 80px 48px;
    border-bottom: var(--border);
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    align-items: start;
  }

  .pq-mark {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 160px;
    line-height: 0.8;
    color: var(--yellow);
  }

  .pq-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.1;
    letter-spacing: -0.5px;
  }

  .pq-source {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #888;
    margin-top: 24px;
    font-family: 'Space Mono', monospace;
  }

  /* ===================== REVIEWS ===================== */
  .reviews-section {
    border-bottom: var(--border);
  }

  .section-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 20px 36px;
    border-bottom: var(--border);
    background: var(--yellow);
  }

  .section-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 1px;
  }

  .section-header a {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: underline;
  }

  .review-row {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    align-items: center;
    gap: 0;
    border-bottom: var(--border);
    transition: background 0.1s;
  }

  .review-row:last-child { border-bottom: none; }
  .review-row:hover { background: #f5f5f5; }

  .review-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: #ccc;
    padding: 20px 16px;
    border-right: var(--border);
    text-align: center;
  }

  .review-info {
    padding: 20px 28px;
    border-right: var(--border);
  }

  .review-name {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 4px;
  }

  .review-meta {
    font-size: 11px;
    color: #888;
    letter-spacing: 1px;
  }

  .review-verdict {
    padding: 20px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    min-width: 160px;
  }

  .verdict-score {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    line-height: 1;
  }

  .verdict-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--black);
    color: var(--white);
    padding: 3px 8px;
  }

  .verdict-label.good { background: #1a7a1a; }
  .verdict-label.bad { background: var(--red); }

  /* ===================== ABOUT ===================== */
  .about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: var(--border);
  }

  .about-left {
    padding: 56px 48px;
    border-right: var(--border);
  }

  .about-left h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
    line-height: 1;
    margin-bottom: 32px;
  }

  .about-left p {
    font-size: 14px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 16px;
  }

  .about-left p a {
    border-bottom: 2px solid var(--black);
    font-weight: 700;
  }

  .about-left p a:hover { background: var(--yellow); }

  .about-right {
    padding: 56px 48px;
    background: #f5f5f5;
  }

  .fact-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 16px 0;
    border-bottom: 1px solid #ddd;
    font-size: 13px;
  }

  .fact-row:last-child { border-bottom: none; }
  .fact-key { color: #888; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-size: 10px; }
  .fact-val { font-weight: 700; text-align: right; }

  /* ===================== FOOTER ===================== */
  footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-top: var(--border);
  }

  .footer-cell {
    padding: 32px 36px;
    border-right: var(--border);
  }

  .footer-cell:last-child { border-right: none; }

  .footer-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    margin-bottom: 16px;
  }

  .footer-text {
    font-size: 12px;
    color: #666;
    line-height: 1.7;
  }

  .footer-disclaimer {
    background: var(--black);
    color: #888;
    padding: 16px 36px;
    font-size: 10px;
    letter-spacing: 1px;
    line-height: 1.6;
    border-top: var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  /* ===================== RESPONSIVE ===================== */
  @media (max-width: 768px) {
    header { grid-template-columns: 1fr; }
    .header-right { border-top: var(--border); flex-direction: row; flex-wrap: wrap; gap: 16px; }
    .hero { grid-template-columns: 1fr; }
    .hero-image { height: 320px; }
    .hero-text { padding: 36px 24px; }
    .grid-section { grid-template-columns: 1fr; }
    .grid-cell { border-right: none; border-bottom: var(--border); }
    .grid-cell:last-child { border-bottom: none; }
    .pullquote-section { grid-template-columns: 1fr; padding: 48px 24px; }
    .pq-mark { font-size: 80px; }
    .about-section { grid-template-columns: 1fr; }
    .about-left { border-right: none; border-bottom: var(--border); padding: 36px 24px; }
    .about-right { padding: 36px 24px; }
    footer { grid-template-columns: 1fr; }
    .footer-cell { border-right: none; border-bottom: var(--border); }
    .review-row { grid-template-columns: 48px 1fr; }
    .review-verdict { display: none; }
  }
