/* Page-scoped styles for compare.html */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg: #0a0a0a;
      --bg2: #111111;
      --bg3: #181818;
      --border: rgba(255,255,255,0.07);
      --border-bright: rgba(255,255,255,0.14);
      --lime: #bfff5e;
      --lime-dim: rgba(191,255,94,0.10);
      --lime-glow: rgba(191,255,94,0.28);
      --red-dim: rgba(255,80,80,0.10);
      --red: rgba(255,110,110,0.85);
      --white: #f0f0ec;
      --muted: rgba(240,240,236,0.50);
      --faint: rgba(240,240,236,0.22);
      --mono: 'DM Mono', monospace;
      --sans: 'Bodoni Moda', Georgia, serif;
      --body: 'Instrument Sans', system-ui, sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--white);
      font-family: var(--body);
      line-height: 1.7;
      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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 1000;
      opacity: 0.6;
    }

    /* Page hero */
    .page-hero {
      padding: 160px 48px 80px;
      border-bottom: 1px solid var(--border);
      position: relative;
      overflow: hidden;
    }

    .hero-grid-bg {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 100% 100% at 0% 50%, black 20%, transparent 80%);
    }

    .page-label {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--lime);
      margin-bottom: 24px;
      position: relative;
    }

    .page-title {
      font-family: var(--sans);
      font-size: clamp(36px, 5vw, 68px);
      font-weight: 900;
      font-variation-settings: 'opsz' 96;
      line-height: 1.05;
      letter-spacing: -0.02em;
      margin-bottom: 28px;
      position: relative;
      max-width: 860px;
    }

    .page-title em {
      font-style: italic;
      color: var(--lime);
    }

    .page-intro {
      font-size: 17px;
      color: var(--muted);
      max-width: 580px;
      line-height: 1.75;
      position: relative;
    }

    /* Main content wrapper */
    .compare-wrap {
      max-width: 1040px;
      margin: 0 auto;
      padding: 80px 48px 120px;
    }

    /* Section header */
    .section-label {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--lime);
      margin-bottom: 16px;
    }

    .section-title {
      font-family: var(--sans);
      font-size: clamp(26px, 3vw, 40px);
      font-weight: 700;
      font-variation-settings: 'opsz' 48;
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin-bottom: 12px;
    }

    .section-title em {
      font-style: italic;
      color: var(--lime);
    }

    .section-intro {
      font-size: 15px;
      color: var(--muted);
      margin-bottom: 40px;
      max-width: 560px;
      line-height: 1.75;
    }

    .section-block {
      margin-bottom: 100px;
    }

    .divider {
      width: 40px;
      height: 2px;
      background: var(--lime);
      margin: 80px 0;
    }

    /* ── COMPARISON TABLE ─────────────────────────── */
    .compare-table {
      width: 100%;
      border-collapse: collapse;
      border: 1px solid var(--border-bright);
      border-radius: 8px;
      overflow: hidden;
    }

    .compare-table thead th {
      padding: 20px 28px;
      text-align: left;
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      background: var(--bg2);
      border-bottom: 1px solid var(--border-bright);
    }

    .compare-table thead th:first-child {
      color: var(--faint);
      width: 22%;
    }

    .compare-table thead th.col-manual {
      color: var(--red);
      width: 37%;
    }

    .compare-table thead th.col-artdrop {
      color: var(--lime);
      width: 41%;
      background: rgba(191,255,94,0.04);
      border-left: 1px solid rgba(191,255,94,0.15);
    }

    .compare-table tbody tr {
      border-bottom: 1px solid var(--border);
      transition: background 0.12s;
    }

    .compare-table tbody tr:last-child {
      border-bottom: none;
    }

    .compare-table tbody tr:hover {
      background: var(--bg3);
    }

    .compare-table tbody tr.row-total {
      background: var(--bg2);
      border-top: 2px solid var(--border-bright);
    }

    .compare-table tbody tr.row-total:hover {
      background: var(--bg2);
    }

    .compare-table td {
      padding: 22px 28px;
      vertical-align: top;
    }

    .compare-table td.step-name {
      font-family: var(--mono);
      font-size: 12px;
      letter-spacing: 0.06em;
      color: var(--faint);
      padding-top: 24px;
    }

    .compare-table td.cell-manual {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.6;
    }

    .compare-table td.cell-artdrop {
      font-size: 14px;
      color: rgba(240,240,236,0.72);
      line-height: 1.6;
      background: rgba(191,255,94,0.03);
      border-left: 1px solid rgba(191,255,94,0.10);
    }

    .compare-table td.cell-artdrop .artdrop-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--lime);
      background: var(--lime-dim);
      border: 1px solid rgba(191,255,94,0.2);
      border-radius: 3px;
      padding: 3px 8px;
      margin-top: 8px;
    }

    .compare-table td.cell-artdrop .artdrop-badge svg {
      flex-shrink: 0;
    }

    .row-total td.step-name {
      font-family: var(--mono);
      font-size: 12px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .time-manual {
      font-family: var(--sans);
      font-size: 32px;
      font-weight: 900;
      font-variation-settings: 'opsz' 48;
      color: var(--red);
      line-height: 1;
    }

    .time-artdrop {
      font-family: var(--sans);
      font-size: 32px;
      font-weight: 900;
      font-variation-settings: 'opsz' 48;
      color: var(--lime);
      line-height: 1;
    }

    .time-sub {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.08em;
      margin-top: 6px;
    }

    .time-sub-manual {
      color: rgba(255,110,110,0.6);
    }

    .time-sub-artdrop {
      color: rgba(191,255,94,0.5);
    }

    /* ── COST COMPARISON ──────────────────────────── */
    .cost-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .cost-card {
      background: var(--bg2);
      border: 1px solid var(--border-bright);
      border-radius: 8px;
      padding: 32px;
    }

    .cost-card-artdrop {
      background: rgba(191,255,94,0.04);
      border-color: rgba(191,255,94,0.2);
    }

    .cost-card-label {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .cost-card-label-manual {
      color: var(--red);
    }

    .cost-card-label-artdrop {
      color: var(--lime);
    }

    .cost-line {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding: 11px 0;
      border-bottom: 1px solid var(--border);
      font-size: 14px;
    }

    .cost-line:last-of-type {
      border-bottom: none;
    }

    .cost-line-name {
      color: var(--muted);
    }

    .cost-line-price {
      font-family: var(--mono);
      font-size: 13px;
      color: var(--white);
    }

    .cost-total-row {
      margin-top: 20px;
      padding-top: 20px;
      border-top: 2px solid var(--border-bright);
      display: flex;
      justify-content: space-between;
      align-items: baseline;
    }

    .cost-total-label {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--faint);
    }

    .cost-total-price {
      font-family: var(--sans);
      font-size: 36px;
      font-weight: 900;
      font-variation-settings: 'opsz' 48;
      line-height: 1;
    }

    .cost-total-price-manual {
      color: var(--red);
    }

    .cost-total-price-artdrop {
      color: var(--lime);
    }

    .cost-total-cadence {
      font-family: var(--mono);
      font-size: 11px;
      color: var(--muted);
      margin-top: 6px;
      text-align: right;
    }

    .cost-note {
      margin-top: 24px;
      font-size: 13px;
      color: var(--faint);
      line-height: 1.7;
    }

    /* ── CONTROL SECTION ──────────────────────────── */
    .control-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .control-card {
      background: var(--bg2);
      border: 1px solid var(--border-bright);
      border-radius: 8px;
      padding: 28px 24px;
    }

    .control-icon {
      width: 36px;
      height: 36px;
      background: var(--lime-dim);
      border: 1px solid rgba(191,255,94,0.2);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }

    .control-card-title {
      font-family: var(--body);
      font-size: 15px;
      font-weight: 600;
      color: var(--white);
      letter-spacing: -0.01em;
      margin-bottom: 10px;
    }

    .control-card-body {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.75;
    }

    /* ── CTA SECTION ──────────────────────────────── */
    .cta-block {
      background: var(--bg2);
      border: 1px solid var(--border-bright);
      border-radius: 10px;
      padding: 64px 48px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-block-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 80% at 50% 120%, rgba(191,255,94,0.07) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-block-label {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--lime);
      margin-bottom: 22px;
      position: relative;
    }

    .cta-block-title {
      font-family: var(--sans);
      font-size: clamp(28px, 3.5vw, 48px);
      font-weight: 900;
      font-variation-settings: 'opsz' 72;
      line-height: 1.08;
      letter-spacing: -0.02em;
      margin-bottom: 18px;
      position: relative;
    }

    .cta-block-title em {
      font-style: italic;
      color: var(--lime);
    }

    .cta-block-sub {
      font-size: 15px;
      color: var(--muted);
      margin-bottom: 36px;
      position: relative;
      max-width: 440px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.7;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--mono);
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.05em;
      color: #0a0a0a;
      background: var(--lime);
      padding: 18px 36px;
      border-radius: 4px;
      text-decoration: none;
      border: none;
      position: relative;
      transition: transform 0.15s, box-shadow 0.15s;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 40px var(--lime-glow);
    }

    .cta-guarantee {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.08em;
      color: var(--faint);
      margin-top: 20px;
      position: relative;
    }

    /* ── PULL QUOTE ───────────────────────────────── */
    .pull-quote {
      font-family: var(--body);
      font-size: clamp(17px, 2vw, 22px);
      font-style: italic;
      font-weight: 600;
      line-height: 1.45;
      letter-spacing: -0.01em;
      color: var(--white);
      border-left: 3px solid var(--lime);
      padding: 6px 0 6px 28px;
      margin: 48px 0;
    }

    /* ── RESPONSIVE ───────────────────────────────── */
    @media (max-width: 900px) {
      .cost-grid { grid-template-columns: 1fr; }
      .control-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 768px) {
      .page-hero { padding: 120px 24px 60px; }
      .compare-wrap { padding: 60px 24px 80px; }
      .control-grid { grid-template-columns: 1fr; }
      .cta-block { padding: 48px 24px; }

      .compare-table thead th,
      .compare-table td {
        padding: 16px 14px;
      }

      .compare-table thead th:first-child,
      .compare-table td.step-name {
        display: none;
      }

      .compare-table thead th.col-manual,
      .compare-table thead th.col-artdrop {
        width: 50%;
      }
    }
