  :root {
    --bg: #0D0E12;
    --panel: #15171D;
    --text: #E8E6E1;
    --muted: #6B6F76;
    --orange: #FF4D1A;
    --green: #3DDC97;
    --border: #2A2D35;
  }

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

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }

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

  /* ===== HEADER ===== */
  header {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
  }
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .logo .dot { color: var(--orange); }
  nav a {
    color: var(--orange);
    text-decoration: none;
    font-size: 0.9rem;
    margin-left: 24px;
    transition: color 0.15s;
  }
  nav a:hover { color: var(--text); }

  /* ===== HERO / CALCULATOR ===== */
  .hero {
    padding: 48px 0 32px;
  }
  .hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
  }
  .hero h1 .accent { color: var(--orange); }
  .calc-scope-note {
    color: var(--green);
    font-size: 0.8rem;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.04em;
    border-left: 2px solid var(--green);
    padding-left: 10px;
    margin: -20px 0 24px;
    max-width: 560px;
  }
  .hero p.sub {
    color: var(--muted);
    font-size: 1rem;
    max-width: 520px;
    margin-bottom: 32px;
  }

  /* Frame size selector */
  .frame-select {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
  }
  .frame-btn {
    background: var(--panel);
    border: 1px solid var(--border);
    color: var(--muted);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.15s;
  }
  .frame-btn:hover {
    border-color: var(--muted);
    color: var(--text);
  }
  .frame-btn.active {
    background: var(--orange);
    border-color: var(--orange);
    color: #0D0E12;
    font-weight: 700;
  }

  /* Calculator grid */
  .calc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  @media (min-width: 800px) {
    .calc-grid { grid-template-columns: 380px 1fr; gap: 24px; }
  }

  .inputs-panel, .osd-panel {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
  }

  .panel-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .panel-label::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    display: inline-block;
  }

  .field {
    margin-bottom: 18px;
  }
  .field label {
    display: block;
    font-size: 0.85rem;
    color: var(--text);
    margin-bottom: 6px;
    font-weight: 500;
  }
  .field .field-hint {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 4px;
  }
  .field select, .field input {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    padding: 10px 12px;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.15s;
  }
  .field select:focus, .field input:focus {
    border-color: var(--orange);
  }

  .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  /* ===== OSD RESULTS PANEL ===== */
  .osd-panel {
    background: #0A0B0E;
    position: relative;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    flex-direction: column;
  }
  /* corner brackets - OSD style */
  .osd-panel::before, .osd-panel::after,
  .osd-corner-tl, .osd-corner-br {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid var(--green);
    opacity: 0.4;
  }
  .osd-panel::before {
    top: 12px; left: 12px;
    border-right: none; border-bottom: none;
  }
  .osd-panel::after {
    bottom: 12px; right: 12px;
    border-left: none; border-top: none;
  }
  .osd-corner-tl {
    top: 12px; right: 12px;
    border-left: none; border-bottom: none;
  }
  .osd-corner-br {
    bottom: 12px; left: 12px;
    border-right: none; border-top: none;
  }

  .osd-stats {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    margin-top: 8px;
  }
  .osd-stat {
    background: #0A0B0E;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .osd-stat.full {
    grid-column: 1 / -1;
  }
  .osd-stat-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
  }
  .osd-stat-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
  }
  .osd-stat-value .unit {
    font-size: 1rem;
    color: var(--muted);
    font-weight: 400;
    margin-left: 6px;
  }
  .osd-stat-value.warn { color: var(--orange); }
  .osd-stat-sub {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 6px;
  }

  /* big speed stat */
  .speed-hero {
    background: linear-gradient(135deg, rgba(255,77,26,0.08), transparent);
    border-bottom: 1px solid var(--border);
    padding: 28px 20px;
    text-align: center;
  }
  .speed-hero-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 8px;
  }
  .speed-hero-value {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .speed-hero-value .unit {
    font-size: 1.2rem;
    color: var(--muted);
    font-weight: 500;
    margin-left: 8px;
  }
  .speed-hero-note {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 8px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  /* BUILD SCORE HERO */
  .build-score-hero {
    background: linear-gradient(135deg, rgba(61,220,151,0.06), transparent);
    border-bottom: 1px solid var(--border);
    padding: 22px 20px 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
  .bs-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 2px;
  }
  .bs-number {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 4rem;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--green);
  }
  .bs-personality {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.2;
    margin-top: 2px;
  }
  .bs-class-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    color: var(--muted);
    letter-spacing: 0.08em;
    margin-top: 2px;
  }
  .bs-bar-track {
    width: 100%;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    margin-top: 10px;
    overflow: hidden;
  }
  .bs-bar-fill {
    height: 100%;
    background: linear-gradient(to right, #FF4D1A 0%, #FF4D1A 50%, #3DDC97 75%, #3DDC97 100%);
    border-radius: 2px;
    width: 0%;
    transition: width 0.4s ease;
  }

  /* ===== AD SLOTS ===== */
  .ad-slot {
    background: var(--panel);
    border: 1px dashed var(--border);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    color: var(--muted);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 32px 0;
  }
  .ad-slot.inline {
    margin: 24px 0;
  }

  /* ===== CONTENT SECTIONS ===== */
  .section {
    padding: 40px 0;
    border-top: 1px solid var(--border);
  }
  .section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
  }
  .section p {
    color: var(--muted);
    font-size: 0.95rem;
    max-width: 680px;
    margin-bottom: 12px;
  }

  /* disclaimer */
  .disclaimer {
    font-size: 0.78rem;
    color: var(--muted);
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-top: 16px;
  }

  footer {
    border-top: 1px solid var(--border);
    padding: 32px 0;
    color: var(--muted);
    font-size: 0.8rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }
  footer .footer-logo .dot { color: var(--orange); }

  /* ===== COMPARISON PANEL ===== */
  .compare-wrap {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    margin-top: 24px;
  }
  .compare-note {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    font-size: 0.8rem;
    color: var(--muted);
    margin-left: 8px;
  }
  .compare-motors {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    align-items: end;
    margin: 16px 0 20px;
  }
  .compare-col-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
  }
  .compare-vs {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--muted);
    text-align: center;
    padding-bottom: 44px;
  }
  .cmp-select, .cmp-kv {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    padding: 10px 12px;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.15s;
    display: block;
    box-sizing: border-box;
  }
  .cmp-select:focus, .cmp-kv:focus { border-color: var(--orange); }
  .cmp-select { margin-bottom: 8px; }
  .compare-table {
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
  }
  .compare-row {
    display: grid;
    grid-template-columns: 110px 1fr 1fr;
    border-bottom: 1px solid var(--border);
  }
  .compare-row:last-child { border-bottom: none; }
  .compare-metric {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 16px;
    background: var(--bg);
    display: flex;
    align-items: center;
  }
  .compare-val {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--muted);
    padding: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid var(--border);
    transition: color 0.15s;
  }
  .compare-val.filled { color: var(--text); }
  .compare-val.winner { color: var(--green); }
  .cmp-unit {
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--muted);
    margin-left: 3px;
    align-self: flex-end;
    padding-bottom: 3px;
  }

  /* ===== ADDITIONAL TOOLS ===== */
  .tool-details {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-top: 12px;
  }
  .tool-summary {
    padding: 16px 24px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    user-select: none;
    transition: background 0.15s;
  }
  .tool-summary::-webkit-details-marker { display: none; }
  .tool-summary:hover { background: rgba(255,255,255,0.03); }
  .tool-summary::after { content: '+'; color: var(--orange); font-size: 1.1rem; font-weight: 700; }
  details[open] > .tool-summary::after { content: '−'; }
  .tool-body {
    padding: 24px;
    border-top: 1px solid var(--border);
  }
  .tool-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  @media (min-width: 640px) {
    .tool-grid { grid-template-columns: 260px 1fr; }
  }
  .tool-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
  }
  .tool-stat { background: var(--bg); padding: 16px; }
  .tool-stat-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
  }
  .tool-stat-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1.1;
  }
  .tool-stat-value .tunit { font-size: 0.8rem; font-weight: 400; color: var(--muted); margin-left: 3px; }
  .tool-stat-value.warn { color: var(--orange); }
  .batt-status {
    margin-top: 14px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    padding: 10px 14px;
    border-radius: 4px;
    background: rgba(61,220,151,0.08);
    color: var(--green);
    border: 1px solid rgba(61,220,151,0.2);
    line-height: 1.5;
  }
  .batt-status.warn {
    background: rgba(255,77,26,0.08);
    color: var(--orange);
    border-color: rgba(255,77,26,0.2);
  }
  .pitch-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
  }
  .pitch-table th {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    text-align: left;
    padding: 8px 14px;
    border-bottom: 1px solid var(--border);
    background: var(--bg);
  }
  .pitch-table td {
    padding: 8px 14px;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
  }
  .pitch-table tr:last-child td { border-bottom: none; }
  .pitch-table td.pitch-speed { color: var(--text); font-weight: 700; }
  .pitch-table tr.current-pitch td { background: rgba(61,220,151,0.06); }
  .pitch-table tr.current-pitch td.pitch-speed { color: var(--green); }

  /* ===== FRAME REFERENCE CARDS ===== */
  .frame-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
  }
  @media (min-width: 560px) { .frame-grid { grid-template-columns: 1fr 1fr; } }
  @media (min-width: 860px) { .frame-grid { grid-template-columns: repeat(3, 1fr); } }
  .frame-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 18px;
  }
  .frame-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 3px;
  }
  .frame-card-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);
    display: block;
    margin-bottom: 14px;
  }
  .frame-spec {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
    font-size: 0.82rem;
    padding: 5px 0;
    border-bottom: 1px solid var(--border);
  }
  .frame-spec:last-of-type { border-bottom: none; padding-bottom: 0; }
  .frame-spec-key { color: var(--muted); white-space: nowrap; }
  .frame-spec-val {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--text);
    text-align: right;
  }
  .frame-note {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 12px;
    line-height: 1.55;
  }

  /* === Whoop Tune Database === */
  .tune-disclaimer {
    background: rgba(255,77,26,.08);
    border-left: 3px solid var(--orange);
    border-radius: 0 6px 6px 0;
    padding: .75rem 1rem;
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: 1.5rem;
  }
  .tune-scroll-hint {
    display: none;
    text-align: center;
    font-size: .72rem;
    color: var(--muted);
    margin-bottom: .5rem;
  }
  @media (max-width: 860px) { .tune-scroll-hint { display: block; } }
  .tune-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 8px; }
  .tune-table {
    border-collapse: collapse;
    min-width: 820px;
    width: 100%;
    table-layout: fixed;
  }
  .tune-table th {
    background: var(--panel);
    color: var(--orange);
    font-family: 'JetBrains Mono', monospace;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: .65rem .75rem;
    text-align: left;
    border: 1px solid var(--border);
    white-space: nowrap;
  }
  .tune-table th:first-child { width: 64px; }
  .tune-table td { vertical-align: top; border: 1px solid var(--border); padding: .6rem .65rem; }
  .tune-row-label {
    background: var(--panel) !important;
    color: var(--orange);
    font-family: 'JetBrains Mono', monospace;
    font-size: .85rem;
    font-weight: 700;
    white-space: nowrap;
    text-align: center;
  }
  .tune-pair { display: flex; gap: .5rem; }
  .tune-block {
    flex: 1;
    background: var(--bg);
    border-radius: 6px;
    padding: .5rem .55rem;
    min-width: 0;
  }
  .tune-block-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: .58rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--muted);
    border-bottom: 1px solid var(--border);
    padding-bottom: .25rem;
    margin-bottom: .3rem;
  }
  .tune-block-label.ryfly { color: var(--orange); }
  .tune-sh {
    font-family: 'JetBrains Mono', monospace;
    font-size: .52rem;
    color: rgba(255,255,255,.22);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin: .3rem 0 .12rem;
  }
  .pid-cols, .pid-row {
    display: grid;
    grid-template-columns: .9rem 1fr 1fr 1fr;
    gap: 2px;
    margin-bottom: 1px;
  }
  .pid-ch { font-family: 'JetBrains Mono', monospace; font-size: .5rem; color: rgba(255,255,255,.18); text-align: center; }
  .pid-ax { font-family: 'JetBrains Mono', monospace; font-size: .56rem; color: rgba(255,255,255,.32); display: flex; align-items: center; }
  .pid-v {
    font-family: 'JetBrains Mono', monospace;
    font-size: .6rem;
    color: var(--green);
    text-align: center;
    background: rgba(61,220,151,.06);
    border-radius: 2px;
    padding: 1px 0;
  }
  .rate-type { font-family: 'JetBrains Mono', monospace; font-size: .56rem; color: rgba(255,255,255,.3); margin-bottom: 2px; }
  .tune-filter {
    font-size: .58rem;
    color: rgba(255,255,255,.28);
    font-style: italic;
    margin-top: .3rem;
    padding-top: .25rem;
    border-top: 1px solid var(--border);
  }

  /* === RYFLY SECTION === */
  .affiliate-disclosure {
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 28px;
    max-width: 680px;
  }
  .ryfly-subhead {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    color: var(--orange);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    margin-top: 36px;
  }
  .builds-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 8px;
  }
  @media (max-width: 700px) { .builds-grid { grid-template-columns: 1fr; } }
  .build-card {
    background: #0A0B0E;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 20px 20px 20px 20px;
    position: relative;
    overflow: hidden;
  }
  .bc-corner {
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid var(--green);
    opacity: 0.45;
  }
  .bc-tl { top: 10px; left: 10px; border-right: none; border-bottom: none; }
  .bc-tr { top: 10px; right: 10px; border-left: none; border-bottom: none; }
  .bc-bl { bottom: 10px; left: 10px; border-right: none; border-top: none; }
  .bc-br { bottom: 10px; right: 10px; border-left: none; border-top: none; }
  .build-card-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--orange);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .build-card-label::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
    display: inline-block;
  }
  .build-spec-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.82rem;
  }
  .build-spec-row:last-child { border-bottom: none; }
  .spec-key {
    color: var(--muted);
    font-size: 0.75rem;
    white-space: nowrap;
    min-width: 72px;
  }
  .spec-val {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    color: var(--text);
    flex: 1;
    line-height: 1.3;
  }
  .buy-btn {
    display: inline-block;
    background: var(--orange);
    color: #0D0E12;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 9px;
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.15s;
    flex-shrink: 0;
  }
  .buy-btn:hover { opacity: 0.8; }
  .picks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 4px;
  }
  @media (max-width: 800px) { .picks-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 500px) { .picks-grid { grid-template-columns: 1fr; } }
  .pick-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .pick-name {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
  }
  .pick-blurb {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.5;
    flex: 1;
  }
  .shop-btn {
    display: inline-block;
    background: var(--orange);
    color: #0D0E12;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 6px 14px;
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
    transition: opacity 0.15s;
    align-self: flex-start;
    margin-top: 4px;
  }
  .shop-btn:hover { opacity: 0.8; }

  /* === HIRE / CONTACT === */
  .hire-sub {
    color: var(--muted);
    font-size: 0.88rem;
    margin-bottom: 6px;
  }
  .hire-intro {
    color: var(--muted);
    font-size: 0.92rem;
    max-width: 600px;
    margin-bottom: 28px;
    line-height: 1.6;
  }
  .hire-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 36px;
  }
  @media (max-width: 640px) { .hire-cards { grid-template-columns: 1fr; } }
  .hire-card {
    background: #0A0B0E;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 22px;
    position: relative;
    overflow: hidden;
  }
  .hire-card-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--orange);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .hire-card-title::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
  }
  .hire-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .hire-card ul li {
    font-size: 0.85rem;
    color: var(--muted);
    padding-left: 14px;
    position: relative;
    line-height: 1.4;
  }
  .hire-card ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-size: 0.75rem;
  }
  .contact-form-wrap { max-width: 600px; }
  .contact-form-wrap .field { margin-bottom: 16px; }
  .contact-form-wrap .field label {
    display: block;
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 6px;
  }
  .contact-form-wrap .field input,
  .contact-form-wrap .field select,
  .contact-form-wrap .field textarea {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    padding: 10px 12px;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.15s;
  }
  .contact-form-wrap .field input:focus,
  .contact-form-wrap .field select:focus,
  .contact-form-wrap .field textarea:focus { border-color: var(--orange); }
  .contact-form-wrap .field textarea { resize: vertical; min-height: 110px; }
  .contact-submit {
    width: 100%;
    background: var(--orange);
    border: none;
    color: #0D0E12;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 13px;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.15s;
  }
  .contact-submit:hover { opacity: 0.85; }
  .contact-submit:disabled { opacity: 0.5; cursor: not-allowed; }
  .contact-success {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.88rem;
    color: var(--green);
    padding: 16px;
    border: 1px solid rgba(61,220,151,0.25);
    border-radius: 4px;
    display: none;
  }
  .contact-error {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 10px;
    display: none;
  }
  .contact-email-line {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 14px;
  }
  .contact-email-line a { color: var(--orange); text-decoration: none; }
  .contact-email-line a:hover { text-decoration: underline; }

  /* ===== MEET RYFLY ===== */
  .meet-ryfly-panel {
    background: #0A0B0E;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 40px;
    position: relative;
    margin-top: 24px;
  }
  .meet-ryfly-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
  @media (max-width: 680px) {
    .meet-ryfly-grid { grid-template-columns: 1fr; gap: 32px; }
    .meet-ryfly-panel { padding: 28px 20px; }
  }
  .ryfly-logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  .ryfly-logo-wrap img {
    max-width: 280px;
    width: 100%;
    display: block;
  }
  .ryfly-bio {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.65;
    max-width: none;
    margin-bottom: 0;
  }
  .gif-placeholder {
    background: var(--panel);
    border: 1px dashed var(--border);
    border-radius: 6px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  .gif-placeholder span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--muted);
    letter-spacing: 0.1em;
  }
  .ryfly-social {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
  }
  .social-btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 12px 24px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    transition: opacity 0.15s;
  }
  .social-btn:hover { opacity: 0.85; }
  .social-btn.yt { background: #FF0000; }
  .social-btn.ig { background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045); }
  .ryfly-follow-note {
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 0;
  }

  /* ===== RYFLY SIM PROMO ===== */
  #ryfly-sim h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    letter-spacing: -0.01em;
  }
  .sim-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .sim-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
    margin: 28px 0 32px;
  }
  .sim-feature-card {
    background: var(--panel);
    border: 1px solid var(--border);
    padding: 16px;
    border-radius: 4px;
  }
  .sim-feature-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .sim-feature-card p {
    font-size: 0.85rem;
    color: var(--text);
    line-height: 1.55;
    margin: 0;
    max-width: none;
  }
  .sim-launch-btn {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    color: var(--orange);
    border: 2px solid var(--orange);
    padding: 14px 34px;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.15s;
  }
  .sim-launch-btn:hover {
    background: var(--orange);
    color: var(--bg);
  }
  .sim-req-note {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 12px;
    margin-bottom: 0;
  }
  .sim-teaser-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    text-decoration: none;
    padding: 24px;
    margin-bottom: 20px;
    transition: border-color 0.15s;
    gap: 8px;
  }
  .sim-teaser-card:hover { border-color: var(--orange); }
  .sim-teaser-card img {
    /* negative margins only SHIFT a box, they don't grow it — width:100%
       resolves against the padded content area (same as the text below),
       so a plain 100% + negative margin still falls short of the card's
       true edges. Explicitly widen the box by the padding removed on each
       side (24px + 24px) so it actually reaches full-bleed. */
    width: calc(100% + 48px);
    height: auto;
    max-height: 200px;
    object-fit: cover;
    display: block;
    align-self: stretch;
    border-radius: 6px 6px 0 0;
    /* pull flush to the card's own edges despite its 24px padding, so the
       image's top corners actually land on the card's rounded corners */
    margin: -24px -24px 4px -24px;
  }
  .sim-teaser-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--green);
    text-transform: uppercase;
  }
  .sim-teaser-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
  }
  .sim-teaser-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
    max-width: none;
  }
  .sim-teaser-cta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    color: var(--orange);
    margin-top: 6px;
  }
