  * { margin: 0; padding: 0; box-sizing: border-box; }
  h1, h2, h3 { margin: 0; font-size: inherit; font-weight: inherit; }
  
  body {
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
  }

  /* Preserve Allura cursive casing */
  .brand-main, .comp-info-name { text-transform: none; }
  /* Preserve Japanese text */
  .ci-value, .ci-label, .team-desc, .player-title { text-transform: none; }

  .panel {
    width: 1200px;
    background: linear-gradient(170deg, #f0f2f5 0%, #ebeef2 40%, #e8ecf0 100%);
    border-radius: 32px;
    padding: 28px 40px 32px 40px;
    box-shadow:
      0 1px 1px rgba(0,0,0,0.03),
      0 4px 8px rgba(0,0,0,0.03),
      0 12px 32px rgba(0,0,0,0.06),
      0 32px 64px rgba(0,0,0,0.08),
      inset 0 2px 0 rgba(255,255,255,0.75),
      inset 0 -1px 0 rgba(0,0,0,0.02);
  }

  .top-bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin-bottom: 40px;
  }
  .top-left { display: flex; align-items: center; gap: 14px; justify-self: start; }
  .power-btn {
    width: 42px; height: 42px; border-radius: 50%; border: none;
    background: linear-gradient(145deg, #f1f3f7, #e6e9ee);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: #D4864C; font-size: 16px;
    box-shadow: 3px 3px 8px rgba(0,0,0,0.1), -2px -2px 6px rgba(255,255,255,0.7);
    text-decoration: none;
  }
  .dropdown {
    padding: 16px 36px; border-radius: 28px;
    border: 1px solid rgba(0,0,0,0.06);
    background: linear-gradient(180deg, #ffffff 0%, #f4f4f6 100%);
    font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 500;
    letter-spacing: 3px; color: rgba(60,60,70,0.6); cursor: pointer;
    box-shadow:
      0 2px 8px rgba(0,0,0,0.06),
      0 1px 2px rgba(0,0,0,0.04),
      inset 0 1px 1px rgba(255,255,255,0.9);
    appearance: none; text-align: center; min-width: 160px;
    transition: all 0.3s; text-decoration: none;
  }
  .dropdown:hover {
    color: #D4864C;
    border-color: #D4864C;
  }
  .dropdown.active {
    color: #D4864C;
    border-color: #D4864C;
    box-shadow: inset 1px 1px 4px rgba(0,0,0,0.06);
  }
  .top-right { justify-self: center; }
  .menu-btn {
    width: 46px; height: 46px; border-radius: 50%; border: none;
    background: linear-gradient(145deg, #f1f3f7, #e6e9ee);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-family: 'Poppins', sans-serif;
    font-size: 11px; font-weight: 500; color: #aaa;
    box-shadow: 3px 3px 8px rgba(0,0,0,0.1), -2px -2px 6px rgba(255,255,255,0.7);
    transition: all 0.25s; text-decoration: none;
  }
  .menu-btn:hover {
    color: #D4864C;
    box-shadow: 3px 3px 8px rgba(0,0,0,0.1), -2px -2px 6px rgba(255,255,255,0.7), inset 0 0 0 1.5px #D4864C;
  }
  .menu-btn.active {
    color: #D4864C;
    box-shadow: 3px 3px 8px rgba(0,0,0,0.1), -2px -2px 6px rgba(255,255,255,0.7), inset 0 0 0 1.5px #D4864C;
  }

  .main-area {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    justify-items: stretch;
    margin-bottom: 0;
  }

  .knob-side { display: flex; flex-direction: column; align-items: stretch; gap: 14px; height: 460px; }
  .knob-well {
    width: 100%; height: 460px; min-height: 460px; max-height: 460px; border-radius: 28px;
    overflow: hidden; position: relative;
  }
  .knob-side:first-child .knob-well {
    background: linear-gradient(160deg, #e5e8ed, #ebeef3);
    box-shadow: inset 3px 3px 8px rgba(0,0,0,0.08), inset -2px -2px 5px rgba(255,255,255,0.5);
  }
  .knob-side:last-child .knob-well {
    background: linear-gradient(200deg, #e5e8ed, #ebeef3);
    box-shadow: inset -3px 3px 8px rgba(0,0,0,0.08), inset 2px -2px 5px rgba(255,255,255,0.5);
  }
  /* Inset shadow overlay - stays on top of full-bleed content */
  .knob-side:first-child .knob-well::after {
    content: '';
    position: absolute; inset: 0;
    border-radius: 28px;
    box-shadow: inset 3px 3px 8px rgba(0,0,0,0.08), inset -2px -2px 5px rgba(255,255,255,0.5);
    pointer-events: none;
    z-index: 2;
  }
  .knob-side:last-child .knob-well::after {
    content: '';
    position: absolute; inset: 0;
    border-radius: 28px;
    box-shadow: inset -3px 3px 8px rgba(0,0,0,0.08), inset 2px -2px 5px rgba(255,255,255,0.5);
    pointer-events: none;
    z-index: 2;
  }
  .knob-well .knob-circle {
    width: 460px; height: 460px; position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(0deg);
    cursor: pointer; transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    text-decoration: none; display: block;
  }
  .knob-well .knob-circle:hover { transform: translate(-50%, -50%) rotate(45deg) scale(1.02); }
  .knob-well .knob-circle:active { transform: translate(-50%, -50%) rotate(90deg) scale(0.98); }
  .knob-well .knob-circle img {
    width: 100%; height: 100%; object-fit: contain;
    filter: drop-shadow(5px 5px 14px rgba(0,0,0,0.13)) drop-shadow(-4px -4px 10px rgba(255,255,255,0.5));
  }
  .knob-well .knob-circle .knob-text {
    position: absolute; top: 48%; left: 50%; transform: translate(-50%, -50%) rotate(0deg);
    font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 300;
    color: #bbb; letter-spacing: 2px; pointer-events: none; white-space: nowrap;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1), color 0.4s;
  }
  .knob-well .knob-circle:hover .knob-text {
    transform: translate(-50%, -50%) rotate(-45deg);
    color: #D4864C;
  }

  .center-area {
    display: flex; flex-direction: column; align-items: center;
    gap: 16px; padding: 0 10px; width: 380px;
  }
  .brand-title { text-align: center; padding-bottom: 16px; }
  .brand-title .brand-main {
    font-family: 'Allura', cursive; font-size: 42px; font-weight: 400;
    font-style: normal; letter-spacing: 2px; line-height: 1.2;
    text-transform: none; white-space: nowrap;
    background: linear-gradient(135deg, #888 0%, #bbb 15%, #e8e8e8 30%, #fff 45%, #ccc 55%, #999 65%, #ddd 80%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(1px 2px 1px rgba(0,0,0,0.25)) drop-shadow(-0.5px -0.5px 0px rgba(255,255,255,0.8));
    display: inline-block;
  }
  .brand-title .brand-sub {
    font-family: 'Poppins', sans-serif; font-size: 8px; font-weight: 400;
    letter-spacing: 6px; color: #b5b2ad; margin-top: 2px; text-transform: uppercase;
    display: flex; justify-content: center; gap: 40px;
  }
  .tuner-area { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 5px; }
  .tuner-label {
    font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 600;
    letter-spacing: 4px; color: #a09d98; text-transform: uppercase;
  }
  .tuner-window {
    width: 100%; height: 56px;
    background: linear-gradient(180deg, #d6d8dc, #e7eaf0 25%, #ecedf0 75%, #e0e2e5);
    border-radius: 14px;
    box-shadow: inset 3px 3px 8px rgba(0,0,0,0.10), inset -2px -2px 5px rgba(255,255,255,0.40), 0 1px 2px rgba(255,255,255,0.5);
    position: relative; overflow: hidden;
  }
  .tuner-needle {
    position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
    background: #cc3333; transform: translateX(-50%); z-index: 10;
    box-shadow: 0 0 6px rgba(204,51,51,0.4);
    transition: box-shadow 0.3s, width 0.3s;
  }
  .tuner-needle.active {
    width: 3px;
    box-shadow: 0 0 12px rgba(204,51,51,0.7), 0 0 24px rgba(204,51,51,0.3);
  }
  .tuner-needle::before {
    content: ''; position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
    width: 8px; height: 8px; background: #cc3333; border-radius: 50%;
    box-shadow: 0 0 4px rgba(204,51,51,0.5);
  }
  .tuner-window::after {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 50px; height: 100%; z-index: 8; pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10) 30%, rgba(255,255,255,0.16) 50%, rgba(255,255,255,0.10) 70%, transparent);
  }
  .tuner-dial { position: absolute; top: 0; height: 100%; display: flex; align-items: flex-end; transition: left 0.4s ease-in-out; }
  .tuner-year {
    width: 44px; flex-shrink: 0; display: flex; flex-direction: column;
    align-items: center; justify-content: flex-end; height: 100%; position: relative;
  }
  .tuner-year .tick {
    position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
    width: 1.5px; height: 18px; background: #a0a0a0;
  }
  .tuner-year .tick.major { height: 26px; width: 2px; background: #777; }
  .tuner-year .tick.faded { background: #ccc; height: 12px; }
  .tuner-year .year-num {
    font-family: 'Poppins', sans-serif; font-size: 8px; font-weight: 400;
    color: #a0a0a0; letter-spacing: 0.5px; margin-bottom: 5px; white-space: nowrap;
  }
  .tuner-year .year-num.highlight { font-weight: 600; color: #666; font-size: 10px; }

  .knob-single { display: flex; flex-direction: column; align-items: center; gap: 5px; cursor: pointer; }
  .knob-single .knob-top-label {
    font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 600;
    letter-spacing: 3px; color: #a09d98; text-transform: uppercase;
    transition: color 0.4s;
  }
  .knob-single:hover .knob-top-label { color: #D4864C; }
  .knob-single .knob-circle {
    width: 140px; height: 140px; position: relative;
    cursor: pointer; transition: transform 0.3s;
  }
  .knob-single .knob-circle:hover { transform: scale(1.05); }
  .knob-single .knob-circle img {
    width: 100%; height: 100%; object-fit: contain;
    filter: drop-shadow(4px 4px 10px rgba(0,0,0,0.10)) drop-shadow(-3px -3px 8px rgba(255,255,255,0.5));
  }
  .knob-single .knob-bottom-label {
    font-family: 'Poppins', sans-serif; font-size: 8px; font-weight: 400;
    letter-spacing: 3px; color: #b5b2ad; text-transform: uppercase;
  }
  .knob-single .knob-text-small {
    position: absolute; top: 48%; left: 50%; transform: translate(-50%, -50%);
    font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 300;
    color: #bbb; letter-spacing: 1px; pointer-events: none; white-space: nowrap;
    transition: color 0.4s;
  }
  .knob-single:hover .knob-text-small { color: #D4864C; }

  .mini-speaker-well {
    width: 160px; height: 80px; border-radius: 16px;
    background: linear-gradient(180deg, #e0e4ea, #e8ebf0 30%, #eceff4 70%, #e6e9ee);
    box-shadow: inset 2px 2px 6px rgba(0,0,0,0.07), inset -1px -1px 4px rgba(255,255,255,0.30);
    overflow: hidden;
    margin-top: -8px;
  }
  .mini-speaker-well canvas { display: block; }

  /* === PLAYER WRAPPER === */
  .player-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    justify-items: center;
  }

  .player-display {
    width: 380px; height: 100px; border-radius: 20px;
    background: linear-gradient(160deg, 
      rgba(255,255,255,0.65) 0%, 
      rgba(240,242,247,0.55) 40%, 
      rgba(235,238,243,0.50) 70%, 
      rgba(255,255,255,0.60) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
      inset 0 1px 1px rgba(255,255,255,0.8),
      inset 0 -1px 1px rgba(0,0,0,0.03),
      0 2px 8px rgba(0,0,0,0.06),
      0 8px 24px rgba(0,0,0,0.04);
    display: flex; align-items: center; padding: 12px 16px; gap: 14px;
    overflow: hidden; position: relative;
    border: 1px solid rgba(255,255,255,0.6);
  }
  .player-display::before {
    content: ''; position: absolute; inset: 0;
    border-radius: 20px; pointer-events: none; z-index: 1;
    background: linear-gradient(160deg, rgba(255,255,255,0.3) 0%, transparent 50%);
  }
  .player-display::after {
    content: ''; position: absolute; inset: 0; border-radius: 20px;
    background: none;
    pointer-events: none; z-index: 1;
  }
  .player-artwork {
    width: 76px; height: 76px; border-radius: 14px; overflow: hidden; flex-shrink: 0;
    background: rgba(0,0,0,0.04);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 2;
  }
  .player-artwork img { width: 100%; height: 100%; object-fit: contain; transition: opacity 1s; }
  .player-info {
    flex: 1; display: flex; flex-direction: column; justify-content: center;
    gap: 4px; min-width: 0; z-index: 2;
  }
  .player-title {
    font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 300;
    color: rgba(40,40,45,0.75); letter-spacing: 0.5px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; z-index: 2;
    transition: opacity 1s;
  }
  .player-sub {
    font-family: 'Poppins', sans-serif; font-size: 9px; font-weight: 400;
    color: rgba(40,40,45,0.45); letter-spacing: 1px; z-index: 2;
    transition: opacity 0.6s;
  }
  .player-controls { display: flex; align-items: center; gap: 16px; margin-top: 4px; }
  .ctrl-btn {
    font-size: 11px; color: rgba(40,40,45,0.35); cursor: pointer;
    transition: color 0.2s; line-height: 1; z-index: 2;
  }
  .ctrl-btn:hover { color: rgba(40,40,45,0.7); }
  .ctrl-btn.play {
    font-size: 15px; color: rgba(40,40,45,0.6); width: 28px; height: 28px;
    border-radius: 50%; background: rgba(0,0,0,0.04);
    display: flex; align-items: center; justify-content: center;
  }
  .player-progress { margin-top: 4px; z-index: 2; }
  .progress-bar { width: 100%; height: 4px; border-radius: 2px; background: rgba(0,0,0,0.06); }
  .progress-fill { width: 35%; height: 100%; border-radius: 2px; background: rgba(40,40,45,0.2); }

  .bottom-bar {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
  }
  .sync-btn {
    padding: 16px 36px; border-radius: 28px;
    border: 1px solid rgba(0,0,0,0.06);
    background: linear-gradient(180deg, #ffffff 0%, #f4f4f6 100%);
    font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 500;
    letter-spacing: 3px; color: rgba(60,60,70,0.6); cursor: pointer;
    box-shadow:
      0 2px 8px rgba(0,0,0,0.06),
      0 1px 2px rgba(0,0,0,0.04),
      inset 0 1px 1px rgba(255,255,255,0.9);
    transition: all 0.3s; text-decoration: none; text-transform: uppercase;
    min-width: 160px; text-align: center;
  }
  .sync-btn:hover {
    color: #D4864C;
    border-color: #D4864C;
  }
  .sync-btn.active {
    color: #D4864C;
    border-color: #D4864C;
    box-shadow: inset 1px 1px 4px rgba(0,0,0,0.06);
  }

  /* === COMPANY IN-KNOB === */
  .knob-default,
  .knob-company-img,
  .knob-team-chart,
  .knob-contact-access,
  .knob-company-info,
  .knob-team-info,
  .knob-contact-form,
  .knob-history-visual,
  .knob-history-detail {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
  }
  .knob-default {
    display: flex; align-items: center; justify-content: center;
  }
  .knob-company-img {
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
  }
  .knob-company-img img {
    width: 100%; height: 100%;
    object-fit: contain;
    transition: opacity 0.5s ease;
    border-radius: 8px;
  }
  .knob-company-img img.padded { padding: 40px; }

  .knob-company-info {
    display: flex; flex-direction: column;
    justify-content: center;
    padding: 28px 28px 28px 24px;
    overflow: hidden;
  }
  .comp-info-header {
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }
  .comp-info-label {
    font-size: 11px; font-weight: 500;
    color: rgba(0,0,0,0.3);
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .comp-info-name {
    font-family: 'Allura', cursive;
    font-size: 24px; font-weight: 400;
    color: rgba(0,0,0,0.55);
    margin-top: 2px;
  }
  .comp-info-since {
    display: inline;
    font-size: 10px; font-weight: 400;
    color: rgba(0,0,0,0.3);
    letter-spacing: 1.5px;
    margin-left: 8px;
    text-transform: uppercase;
  }
  .comp-info-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .comp-info-row {
    display: flex;
    gap: 12px;
    font-size: 12px;
    line-height: 1.6;
    color: rgba(0,0,0,0.18);
    transition: color 0.4s;
  }
  .comp-info-row.active {
    color: rgba(0,0,0,0.55);
  }
  .comp-info-row:hover {
    color: rgba(0,0,0,0.35);
  }
  .ci-label {
    flex-shrink: 0;
    width: 80px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-align: right;
  }
  .ci-value {
    font-weight: 300;
  }

  /* === TEAM IN-KNOB === */
  .knob-team-chart {
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
  }
  .org-chart {
    display: flex; flex-direction: column;
    align-items: center; gap: 16px;
    width: 100%;
  }
  .org-node {
    text-align: center;
    padding: 14px 20px;
    border-radius: 14px;
    background: linear-gradient(145deg, #f3f5f9, #e8ebf0);
    box-shadow: 3px 3px 8px rgba(0,0,0,0.06), -2px -2px 5px rgba(255,255,255,0.6);
    transition: all 0.4s;
    min-width: 160px;
    font-family: 'Poppins', sans-serif;
  }
  .org-node.highlight {
    box-shadow: 3px 3px 8px rgba(0,0,0,0.06), -2px -2px 5px rgba(255,255,255,0.6), inset 0 0 0 1.5px #D4864C;
  }
  .org-name {
    font-family: 'Poppins', sans-serif;
    font-size: 11px; font-weight: 500;
    color: rgba(0,0,0,0.5);
    letter-spacing: 1px;
    line-height: 1.5;
  }
  .org-role {
    font-size: 11px; font-weight: 400;
    color: rgba(0,0,0,0.4);
    letter-spacing: 0.5px;
    margin-top: 6px;
  }
  .org-connectors {
    display: flex; gap: 80px;
  }
  .org-line {
    width: 1.5px; height: 20px;
    background: rgba(0,0,0,0.08);
  }
  .org-branches {
    display: flex; gap: 16px;
  }
  .org-clients {
    margin-top: 4px;
  }
  .org-clients-label {
    font-family: 'Poppins', sans-serif;
    font-size: 10px; font-weight: 400;
    color: rgba(0,0,0,0.15);
    letter-spacing: 3px;
  }

  .knob-team-info {
    display: flex; flex-direction: column;
    justify-content: center;
    padding: 28px 28px 28px 24px;
    overflow: hidden;
  }
  .team-info-body {
    display: flex; flex-direction: column;
    gap: 16px;
  }
  .team-block {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    transition: opacity 0.4s;
    opacity: 0.25;
  }
  .team-block.active {
    opacity: 1;
  }
  .team-block:hover {
    opacity: 0.6;
  }
  .team-name {
    font-size: 11px; font-weight: 500;
    color: rgba(0,0,0,0.5);
    letter-spacing: 1px;
    margin-bottom: 4px;
  }
  .team-desc {
    font-size: 12px; font-weight: 300;
    color: rgba(0,0,0,0.45);
    line-height: 1.7;
    letter-spacing: 0.3px;
  }

  /* === CONTACT IN-KNOB === */
  .knob-contact-access {
    display: flex; align-items: center; justify-content: center;
    padding: 28px;
  }
  .access-list {
    width: 100%;
    display: flex; flex-direction: column;
    gap: 18px;
  }
  .access-item {
    padding: 12px 16px;
    border-radius: 12px;
    background: linear-gradient(145deg, #f3f5f9, #e8ebf0);
    box-shadow: 2px 2px 6px rgba(0,0,0,0.04), -1px -1px 4px rgba(255,255,255,0.5);
    transition: all 0.4s;
    opacity: 0.35;
  }
  .access-item.active {
    opacity: 1;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.04), -1px -1px 4px rgba(255,255,255,0.5), inset 0 0 0 1.5px #D4864C;
  }
  .access-tag {
    font-size: 7px; font-weight: 500;
    color: #D4864C;
    letter-spacing: 2px;
    margin-bottom: 3px;
  }
  .access-name {
    font-size: 12px; font-weight: 500;
    color: rgba(0,0,0,0.5);
    letter-spacing: 0.5px;
    text-transform: none;
  }
  .access-addr {
    font-size: 11px; font-weight: 300;
    color: rgba(0,0,0,0.35);
    margin-top: 2px;
    text-transform: none;
  }
  .access-footer {
    text-align: center;
    padding-top: 8px;
    border-top: 1px solid rgba(0,0,0,0.04);
  }
  .access-tel {
    font-size: 14px; font-weight: 400;
    color: rgba(0,0,0,0.4);
    letter-spacing: 1px;
  }
  .access-hours {
    font-size: 9px; font-weight: 300;
    color: rgba(0,0,0,0.2);
    margin-top: 2px;
    text-transform: none;
  }

  /* Legal scroll view */
  .legal-scroll {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex; flex-direction: column;
    overflow: hidden;
  }
  .legal-back {
    flex-shrink: 0;
    padding: 14px 20px 8px;
    font-size: 10px; font-weight: 400;
    color: #D4864C;
    cursor: pointer;
    letter-spacing: 1px;
    text-transform: none;
  }
  .legal-back:hover { opacity: 0.7; }
  .legal-heading {
    font-size: 13px; font-weight: 500;
    color: rgba(0,0,0,0.45);
    letter-spacing: 1px;
    padding: 0 20px 10px;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    text-transform: none;
  }
  .legal-content {
    flex: 1;
    overflow-y: auto;
    padding: 0;
  }
  .legal-text {
    padding: 14px 20px 24px;
  }
  .legal-text p {
    font-size: 10px; font-weight: 300;
    color: rgba(0,0,0,0.45);
    line-height: 1.8;
    margin: 0 0 10px;
    text-transform: none;
  }
  .legal-text strong {
    font-weight: 500;
    color: rgba(0,0,0,0.5);
  }
  .legal-content::-webkit-scrollbar {
    width: 4px;
  }
  .legal-content::-webkit-scrollbar-track {
    background: transparent;
  }
  .legal-content::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.08);
    border-radius: 2px;
  }

  .knob-contact-form {
    display: flex; flex-direction: column;
    justify-content: center;
    padding: 24px 24px 24px 20px;
    overflow: hidden;
  }
  .contact-form-body {
    display: flex; flex-direction: column;
    gap: 8px;
  }
  .cf-group { width: 100%; }
  .cf-input, .cf-select, .cf-textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.06);
    background: #ffffff;
    box-shadow: inset 1px 1px 3px rgba(0,0,0,0.04), inset -1px -1px 2px rgba(255,255,255,0.4);
    font-family: 'Poppins', sans-serif;
    font-size: 11px; font-weight: 300;
    color: rgba(0,0,0,0.6);
    outline: none;
    transition: border-color 0.3s;
    text-transform: none;
  }
  .cf-input:focus, .cf-select:focus, .cf-textarea:focus {
    border-color: #D4864C;
  }
  .cf-input::placeholder, .cf-textarea::placeholder {
    color: rgba(0,0,0,0.2);
  }
  .cf-select { appearance: none; cursor: pointer; }
  .cf-textarea { resize: none; }
  .cf-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
  }
  .cf-check {
    font-size: 8px; font-weight: 300;
    color: rgba(0,0,0,0.3);
    display: flex; align-items: center; gap: 4px;
    cursor: pointer;
    text-transform: none;
  }
  .cf-check input { width: 12px; height: 12px; }
  .cf-link {
    color: #D4864C; text-decoration: none;
  }
  .cf-submit {
    padding: 8px 24px;
    border-radius: 18px;
    border: none;
    background: linear-gradient(145deg, #ffffff, #f0f2f6);
    font-family: 'Poppins', sans-serif;
    font-size: 10px; font-weight: 500;
    letter-spacing: 1px;
    color: #b0ada8;
    cursor: pointer;
    box-shadow: 3px 3px 8px rgba(0,0,0,0.06), -2px -2px 5px rgba(255,255,255,0.7);
    transition: all 0.3s;
    text-transform: none;
  }
  .cf-submit:hover {
    color: #D4864C;
    box-shadow: 3px 3px 8px rgba(0,0,0,0.06), -2px -2px 5px rgba(255,255,255,0.7), inset 0 0 0 1.5px #D4864C;
  }

  /* === HISTORY IN-KNOB === */
  .knob-history-visual {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 32px 24px;
  }
  .hist-timeline {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    flex: 1;
  }
  .hist-track {
    width: 4px;
    height: 300px;
    background: rgba(0,0,0,0.06);
    border-radius: 2px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  .hist-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.4s;
    z-index: 1;
  }
  .hist-dot.active {
    background: #D4864C;
    box-shadow: 0 0 12px rgba(212,134,76,0.4);
    transform: scale(1.3);
  }
  .hist-year-label {
    position: absolute;
    left: 20px; top: 50%;
    transform: translateY(-50%);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 10px; font-weight: 300;
    color: rgba(0,0,0,0.2);
    letter-spacing: 1px;
    white-space: nowrap;
    transition: color 0.4s;
  }
  .hist-dot.active .hist-year-label {
    color: #D4864C;
    font-weight: 500;
  }
  .hist-pointer {
    display: none;
  }
  .hist-visual-label {
    text-align: center;
    margin-top: 24px;
    flex-shrink: 0;
  }
  .hist-big-year {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 40px; font-weight: 300;
    color: rgba(0,0,0,0.12);
    letter-spacing: 4px;
    line-height: 1;
    transition: all 0.4s;
  }
  .hist-service-tag {
    font-size: 12px; font-weight: 500;
    color: #D4864C;
    letter-spacing: 3px;
    margin-top: 6px;
    transition: all 0.4s;
  }

  .knob-history-detail {
    display: flex; flex-direction: column;
    justify-content: flex-start;
    padding: 24px 24px 24px 20px;
    overflow: hidden;
  }
  .hist-detail-body {
    flex: 1;
    overflow: hidden;
    position: relative;
  }
  .hist-detail-body::before,
  .hist-detail-body::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 30px;
    z-index: 2;
    pointer-events: none;
  }
  .hist-detail-body::before {
    top: 0;
    background: linear-gradient(to bottom, #e8ebf0 0%, transparent 100%);
  }
  .hist-detail-body::after {
    bottom: 0;
    background: linear-gradient(to top, #e8ebf0 0%, transparent 100%);
  }
  .hist-scroll-track {
    display: flex; flex-direction: column;
    gap: 10px;
    transition: transform 0.8s ease;
  }
  .hist-card {
    padding: 14px 16px;
    border-radius: 12px;
    background: linear-gradient(145deg, #f3f5f9, #e8ebf0);
    box-shadow: 2px 2px 6px rgba(0,0,0,0.03), -1px -1px 4px rgba(255,255,255,0.4);
    opacity: 0.25;
    transition: opacity 0.5s, box-shadow 0.5s;
    flex-shrink: 0;
  }
  .hist-card.active {
    opacity: 1;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.04), -1px -1px 4px rgba(255,255,255,0.5), inset 0 0 0 1.5px #D4864C;
  }
  .hist-card-year {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 10px; font-weight: 300;
    color: #D4864C;
    letter-spacing: 2px;
    margin-bottom: 2px;
  }
  .hist-card-name {
    font-size: 13px; font-weight: 500;
    color: rgba(0,0,0,0.5);
    letter-spacing: 1px;
  }
  .hist-card-desc {
    font-size: 11px; font-weight: 300;
    color: rgba(0,0,0,0.35);
    line-height: 1.7;
    margin-top: 4px;
    text-transform: none;
  }
  .hist-card-link {
    display: inline-block;
    margin-top: 6px;
    font-size: 10px; font-weight: 400;
    color: #D4864C;
    letter-spacing: 1px;
    text-decoration: none;
    transition: opacity 0.3s;
  }
  .hist-card-link:hover { opacity: 0.6; }

  /* === BOSSDESIGN IN-KNOB: LYRICS (LEFT) === */
  .knob-bd-lyrics {
    display: flex; flex-direction: column;
    justify-content: center;
    padding: 32px 28px 28px 28px;
    overflow: hidden;
    height: 100%;
  }
  .bd-lyrics-header {
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .bd-lyrics-artist {
    font-size: 13px; font-weight: 500;
    color: rgba(0,0,0,0.45);
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .bd-lyrics-title {
    font-size: 18px; font-weight: 300;
    color: rgba(0,0,0,0.7);
    margin-top: 4px;
    letter-spacing: 0.5px;
    text-transform: none;
  }
  .bd-lyrics-h2 {
    font-size: 10px; font-weight: 400;
    color: rgba(0,0,0,0.32);
    letter-spacing: 2px;
    margin-top: 4px;
    text-transform: none;
  }
  .bd-lyrics-body {
    display: flex; flex-direction: column;
    gap: 18px;
  }
  .bd-line {
    font-size: 14px; font-weight: 300;
    color: rgba(0,0,0,0.28);
    line-height: 1.8;
    letter-spacing: 0.5px;
    transition: color 0.5s;
    cursor: default;
    text-transform: none;
  }
  .bd-line.active {
    color: rgba(0,0,0,0.72);
  }

  /* === BOSSDESIGN IN-KNOB: RECORD PLAYER (RIGHT) === */
  .knob-bd-player {
    display: flex; flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 20px 16px;
    height: 100%;
    position: relative;
  }

  /* Tonearm */
  .bd-tonearm {
    position: absolute;
    right: 28px; top: 24px;
    z-index: 3;
    transform-origin: 12px 12px;
    transform: rotate(0deg);
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
  }
  .bd-tonearm.playing {
    transform: rotate(20deg);
  }
  .bd-arm-pivot {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: linear-gradient(145deg, #f0f0f0, #d8d8d8);
    box-shadow: 2px 2px 6px rgba(0,0,0,0.1), -1px -1px 3px rgba(255,255,255,0.7);
    position: absolute;
    top: 0; left: 0;
    z-index: 2;
  }
  .bd-arm-pivot::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #ccc;
    box-shadow: inset 1px 1px 2px rgba(0,0,0,0.15);
  }
  .bd-arm-bar {
    position: absolute;
    top: 12px; left: 10px;
    width: 3px; height: 140px;
    background: linear-gradient(180deg, #d0d0d0, #b8b8b8);
    border-radius: 2px;
    transform-origin: top center;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.08);
  }
  .bd-arm-head {
    position: absolute;
    top: 148px; left: 5px;
    width: 14px; height: 20px;
    background: linear-gradient(180deg, #c0c0c0, #a0a0a0);
    border-radius: 2px 2px 1px 1px;
    box-shadow: 1px 2px 4px rgba(0,0,0,0.12);
  }
  .bd-arm-head::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 50%;
    transform: translateX(-50%);
    width: 2px; height: 4px;
    background: #888;
    border-radius: 0 0 1px 1px;
  }

  /* Disc */
  .bd-disc-wrap {
    width: 260px; height: 260px;
    flex-shrink: 0;
    position: relative;
  }
  .bd-disc {
    width: 100%; height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  }
  .bd-disc img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }
  .bd-disc.spinning {
    animation: discSpin 12s linear infinite;
  }
  @keyframes discSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  .bd-disc-ring {
    position: absolute; inset: 0;
    border-radius: 50%;
    box-shadow:
      inset 0 0 0 1px rgba(255,255,255,0.3),
      inset 0 0 30px rgba(0,0,0,0.1);
    pointer-events: none;
  }
  .bd-disc-hole {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 16px; height: 16px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ebeef3, #e0e3e8);
    box-shadow:
      inset 1px 1px 3px rgba(0,0,0,0.1),
      0 0 0 2px rgba(255,255,255,0.5);
  }

  /* Info */
  .bd-player-info {
    text-align: center;
    margin-top: 12px;
    margin-bottom: 4px;
  }
  .bd-jacket-name {
    font-size: 18px; font-weight: 600;
    color: rgba(0,0,0,0.55);
    letter-spacing: 2px;
  }

  /* Controls */
  .bd-player-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 4px;
  }
  .bd-ctrl-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(0,0,0,0.1);
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(0,0,0,0.3);
    font-size: 16px;
    transition: all 0.3s;
    text-decoration: none;
  }
  .bd-ctrl-btn:hover {
    color: #D4864C;
    border-color: #D4864C;
  }
  .bd-ctrl-ext {
    width: 52px; height: 52px;
    border-width: 2px;
    color: rgba(0,0,0,0.35);
  }
  .bd-ctrl-ext:hover {
    color: #D4864C;
    border-color: #D4864C;
  }

  /* Record player backgrounds - perforated metal */
  .knob-bd-player {
    background:
      radial-gradient(circle, rgba(0,0,0,0.03) 1px, transparent 1px),
      linear-gradient(145deg, #fafafb, #f0f0f2);
    background-size: 8px 8px, 100% 100%;
    border-radius: 28px;
  }
  .knob-ms-player {
    background:
      radial-gradient(circle, rgba(0,0,0,0.03) 1px, transparent 1px),
      linear-gradient(215deg, #fafafb, #f0f0f2);
    background-size: 8px 8px, 100% 100%;
    border-radius: 28px;
  }

  /* === MIND'S IN-KNOB: RECORD PLAYER (LEFT, MIRRORED) === */
  .knob-ms-player {
    display: flex; flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 20px 16px;
    height: 100%;
    position: relative;
  }

  /* Tonearm - left side (mirrored) */
  .ms-tonearm {
    position: absolute;
    left: 28px; top: 24px;
    z-index: 3;
    transform-origin: 12px 12px;
    transform: rotate(0deg);
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
  }
  .ms-tonearm.playing {
    transform: rotate(-20deg);
  }

  /* MIND'S lyrics (RIGHT knob-well) */
  .knob-ms-lyrics {
    display: flex; flex-direction: column;
    padding: 32px 28px;
    height: 100%;
    justify-content: center;
  }
  .ms-line {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(0,0,0,0.28);
    transition: color 0.5s ease;
    margin-bottom: 6px;
  }
  .ms-line.active {
    color: rgba(0,0,0,0.72);
  }

  /* ========================================
     RESPONSIVE - TABLET (max-width: 768px)
     ======================================== */
  @media (max-width: 768px) {
    body { padding: 0; min-height: 100vh; }
    .panel {
      width: 100%; border-radius: 0;
      padding: 20px 16px 24px 16px;
      min-height: 100vh;
    }

    /* Top bar */
    .top-bar {
      grid-template-columns: auto 1fr auto;
      margin-bottom: 20px;
    }
    .top-spacer { display: none; }
    .top-right { justify-self: end; }
    .power-btn { width: 36px; height: 36px; font-size: 14px; }
    .menu-btn { padding: 8px 16px; font-size: 9px; min-width: auto; }

    /* Brand */
    .brand-title { padding-bottom: 10px; }
    .brand-title .brand-main { font-size: 30px; }
    .brand-title .brand-sub { font-size: 7px; letter-spacing: 4px; gap: 20px; }

    /* Main area: stack vertically */
    .main-area {
      grid-template-columns: 1fr;
      gap: 16px;
    }
    .knob-side { height: auto; }
    .knob-well {
      height: 320px; min-height: 320px; max-height: 320px;
      border-radius: 20px;
    }
    .knob-well .knob-circle {
      width: 320px; height: 320px;
    }
    .knob-well .knob-circle .knob-text {
      font-size: 13px;
    }

    /* Center area */
    .center-area { width: 100%; padding: 0; order: -1; }
    .tuner-label { font-size: 9px; letter-spacing: 3px; }
    .tuner-window { height: 48px; border-radius: 10px; }

    /* Carousel */
    .knob-single .knob-circle { width: 100px; height: 100px; }
    .knob-single .knob-top-label { font-size: 9px; letter-spacing: 2px; }
    .knob-single .knob-bottom-label { font-size: 7px; }
    .knob-single .knob-text-small { font-size: 10px; }
    .mini-speaker-well { width: 120px; height: 60px; border-radius: 12px; }

    /* Player */
    .player-wrapper {
      display: flex; flex-wrap: wrap; justify-content: center;
      gap: 10px; margin-top: 16px;
    }
    .player-wrapper .player-display { order: -1; width: 100%; }
    .player-wrapper .sync-btn { font-size: 9px; letter-spacing: 3px; padding: 8px 20px; }
    .player-display { height: 80px; border-radius: 16px; padding: 10px 12px; gap: 10px; }
    .player-artwork { width: 56px; height: 56px; border-radius: 10px; min-width: 56px; }
    h1.player-title { font-size: 11px; }
    .player-sub { font-size: 8px; }
    .player-controls { gap: 10px; }
    .ctrl-btn { width: 28px; height: 28px; font-size: 10px; }
    .ctrl-btn.play { width: 36px; height: 36px; font-size: 12px; }
    .player-progress { height: 3px; border-radius: 2px; }

    /* Inner content boxes */
    .comp-info-header { padding: 12px 14px; }
    .comp-info-title { font-size: 9px; }
    .comp-info-name { font-size: 10px; }
    .comp-info-desc { font-size: 7px; }
    .ci-row { padding: 5px 14px; }
    .ci-label { font-size: 8px; min-width: 60px; }
    .ci-value { font-size: 9px; }

    /* Contact form */
    .contact-form-header { padding: 12px 14px; }
    .cf-input, .cf-textarea { padding: 10px 12px; font-size: 11px; }
    .cf-submit { padding: 10px; font-size: 10px; }

    /* History */
    .hist-track { height: 220px; }
    .hist-big-year { font-size: 28px; }
    .hist-service-tag { font-size: 10px; }

    /* Team org chart */
    .org-node { padding: 6px 10px; font-size: 9px; }
    .team-desc { font-size: 9px; }

    /* Bossdesign embedded */
    .knob-bd-lyrics { padding: 20px 18px; }
    .bd-lyrics-header { margin-bottom: 18px; }
    .bd-lyrics-artist { font-size: 11px; }
    .bd-lyrics-title { font-size: 15px; }
    .bd-lyrics-body { gap: 12px; }
    .bd-line { font-size: 12px; }
    .bd-disc-wrap { width: 170px; height: 170px; }
    .bd-arm-bar { height: 100px; }
    .bd-arm-head { top: 108px; }
    .bd-jacket-name { font-size: 15px; }
    .bd-ctrl-btn { width: 36px; height: 36px; font-size: 14px; }
    .bd-ctrl-ext { width: 44px; height: 44px; }
    /* Minds embedded */
    .knob-ms-lyrics { padding: 20px 18px; }
    .ms-line { font-size: 12px; }
    .ms-tonearm { left: 20px; }
  }

  /* ========================================
     RESPONSIVE - MOBILE (max-width: 480px)
     ======================================== */
  @media (max-width: 480px) {
    .panel { padding: 14px 12px 20px 12px; }

    .top-bar { margin-bottom: 14px; }
    .power-btn { width: 32px; height: 32px; font-size: 12px; }
    .menu-btn { padding: 6px 12px; font-size: 8px; letter-spacing: 2px; }

    .brand-title .brand-main { font-size: 24px; }
    .brand-title .brand-sub { font-size: 6px; letter-spacing: 3px; gap: 16px; }

    .knob-well {
      height: 260px; min-height: 260px; max-height: 260px;
    }
    .knob-well .knob-circle {
      width: 260px; height: 260px;
    }
    .knob-well .knob-circle .knob-text { font-size: 11px; }

    .tuner-window { height: 40px; }
    .knob-single .knob-circle { width: 80px; height: 80px; }
    .knob-single .knob-top-label { font-size: 8px; }
    .knob-single .knob-text-small { font-size: 9px; }
    .mini-speaker-well { width: 100px; height: 50px; }

    .player-display { height: 70px; padding: 8px 10px; }
    .player-art { width: 48px; height: 48px; }
    h1.player-title { font-size: 10px; }
    .player-controls button { width: 24px; height: 24px; font-size: 9px; }
    .ctrl-play { width: 32px; height: 32px; font-size: 11px; }

    .ci-label { font-size: 7px; min-width: 50px; }
    .ci-value { font-size: 8px; }
    .cf-input, .cf-textarea { padding: 8px 10px; font-size: 10px; }

    .hist-track { height: 180px; }
    .hist-big-year { font-size: 24px; }
    .hist-card-name { font-size: 11px; }
    .hist-card-desc { font-size: 9px; }

    /* Bossdesign embedded */
    .knob-bd-lyrics { padding: 16px 14px; }
    .bd-lyrics-header { margin-bottom: 14px; padding-bottom: 10px; }
    .bd-lyrics-artist { font-size: 10px; }
    .bd-lyrics-title { font-size: 13px; }
    .bd-lyrics-body { gap: 10px; }
    .bd-line { font-size: 11px; }
    .bd-disc-wrap { width: 140px; height: 140px; }
    .bd-arm-bar { height: 80px; }
    .bd-arm-head { top: 88px; }
    .bd-tonearm { right: 20px; top: 20px; }
    .bd-jacket-name { font-size: 13px; }
    .bd-ctrl-btn { width: 32px; height: 32px; font-size: 12px; }
    .bd-ctrl-ext { width: 38px; height: 38px; }
    .bd-player-controls { gap: 14px; }
    /* Minds embedded */
    .knob-ms-lyrics { padding: 16px 14px; }
    .ms-line { font-size: 11px; }
    .ms-tonearm { left: 14px; top: 20px; }
  }

