/* ═══════════════════════════════════════════════════
   soulc.com MOBILE — style-mobile.css
   All rules scoped under .mob-root
   ═══════════════════════════════════════════════════ */

.mob-root {
  --bg: #dfe3e8;
  --bg-light: #e8ecf1;
  --bg-dark: #d2d6db;
  --shadow-light: #ffffff;
  --shadow-dark: #b8bcc1;
  --accent: #D4864C;
  --text-primary: #3d4147;
  --text-secondary: #5f656d;
  --text-muted: #a3aab8;
  font-family: "Urbanist", sans-serif;
  text-transform: none;
  width: 100%; min-height: 100vh; min-height: 100dvh;
  display: flex; justify-content: center;
  background: var(--bg);
  overflow: hidden;
}
.mob-root *, .mob-root *::before, .mob-root *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}

  .mob-root .phone-frame {
    width: 100%; max-width: 393px;
    height: 100vh; height: 100dvh;
    background: var(--bg);
    display: flex; flex-direction: column;
    overflow: hidden;
    position: relative;
  }

  /* ═══ PERSISTENT HEADER — 68px ═══ */
  .mob-root .header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 18px 0; flex-shrink: 0;
    height: 68px;
  }
  .mob-root .hdr-left { display: flex; align-items: center; gap: 12px; }
  .mob-root .m-pwr-btn {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(145deg, var(--bg-light), var(--bg-dark));
    box-shadow: 5px 5px 12px var(--shadow-dark), -4px -4px 10px var(--shadow-light);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; border: none; transition: transform 0.2s;
  }
  .mob-root .m-pwr-btn:active { box-shadow: inset 3px 3px 7px var(--shadow-dark), inset -3px -3px 7px var(--shadow-light); }
  .mob-root .m-pwr-btn.selected { box-shadow: 0 0 0 2px var(--accent), 5px 5px 12px var(--shadow-dark), -4px -4px 10px var(--shadow-light); }
  .mob-root .m-pwr-inner {
    width: 30px; height: 30px; border-radius: 50%;
    background: linear-gradient(145deg, #fff, var(--bg));
    box-shadow: inset 1px 1px 2px rgba(255,255,255,0.8), 1px 1px 3px var(--shadow-dark);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); font-size: 14px;
  }
  .mob-root .m-lang-toggle {
    width: 64px; height: 28px; border-radius: 14px; background: var(--bg);
    box-shadow: inset 3px 3px 6px var(--shadow-dark), inset -3px -3px 6px var(--shadow-light);
    position: relative; display: flex; align-items: center;
  }
  .mob-root .m-lang-thumb {
    position: absolute; width: 30px; height: 22px; border-radius: 11px;
    background: linear-gradient(145deg, var(--bg-light), var(--bg));
    box-shadow: 2px 2px 5px var(--shadow-dark), -2px -2px 4px var(--shadow-light);
    top: 3px; left: 3px; transition: left 0.2s;
  }
  .mob-root .m-lang-labels { width: 100%; display: flex; justify-content: space-around; position: relative; z-index: 1; }
  .mob-root .m-lang-label { font-size: 8px; font-weight: 500; letter-spacing: 1px; color: var(--text-muted); }
  .mob-root .m-lang-label.active { color: var(--text-secondary); }
  .mob-root .contact-btn {
    padding: 10px 20px; border-radius: 16px; border: none;
    background: linear-gradient(145deg, var(--bg-light), var(--bg-dark));
    box-shadow: 5px 5px 12px var(--shadow-dark), -4px -4px 10px var(--shadow-light);
    font-family: 'Urbanist', sans-serif; font-size: 10px; font-weight: 400;
    letter-spacing: 3px; color: var(--text-secondary); cursor: pointer;
    min-height: 40px; display: flex; align-items: center; transition: color 0.2s;
  }
  .mob-root .contact-btn:active { box-shadow: inset 3px 3px 7px var(--shadow-dark), inset -2px -2px 5px var(--shadow-light); color: var(--accent); }
  .mob-root .contact-btn.selected { box-shadow: 0 0 0 2px var(--accent), 5px 5px 12px var(--shadow-dark), -4px -4px 10px var(--shadow-light); color: var(--accent); }

  /* ═══ VIEW CONTAINER ═══ */
  .mob-root .view-container {
    flex: 1; min-height: 0;
    position: relative;
  }
  .mob-root .view {
    position: absolute; inset: 0;
    padding: 14px 16px 24px;
    display: flex; flex-direction: column;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .mob-root .view.active { opacity: 1; pointer-events: auto; }

  /* ═══ SHARED BRAND SECTION ═══ */
  .mob-root .shared-brand {
    flex-shrink: 0;
    padding: 10px 16px 0;
    transition: opacity 0.3s, max-height 0.3s;
    max-height: 200px; overflow: hidden;
  }
  .mob-root .shared-brand.hidden {
    opacity: 0; max-height: 0; padding: 0 16px;
    pointer-events: none;
  }

  /* ═══════════════════════════
     VIEW: TOP
     ═══════════════════════════ */
  .mob-root .brand-card {
    border-radius: 24px;
    background: linear-gradient(145deg, var(--bg-light), var(--bg));
    box-shadow: none;
    padding: 20px 24px 14px; text-align: center; flex-shrink: 0;
  }
  .mob-root .m-brand-main { font-family: 'Allura', cursive; font-size: 38px; color: var(--text-primary); line-height: 1.1; margin-bottom: 4px; }
  .mob-root .m-brand-sub { display: flex; justify-content: center; gap: 24px; font-size: 9px; font-weight: 300; letter-spacing: 5px; color: var(--text-muted); }
  .mob-root .brand-message {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 18px; font-style: italic; font-weight: 400;
    letter-spacing: 1px; line-height: 1.5;
    color: var(--text-secondary);
    text-align: center; margin-bottom: 16px;
  }
  /* VU Meter — year-linked */
  .mob-root .vu-section { margin-top: 12px; }
  .mob-root .vu-well {
    height: 80px; border-radius: 14px;
    background: linear-gradient(180deg, #2a2418 0%, #1e1a14 100%);
    box-shadow: inset 4px 4px 10px var(--shadow-dark), inset -3px -3px 8px rgba(60,50,35,0.15);
    position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(212,134,76,0.08);
  }
  .mob-root .vu-svg { width: 320px; height: 72px; }
  .mob-root .vu-needle-g {
    transform-origin: 160px 68px;
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
  }
  /* Warm glow when active */
  .mob-root .vu-well::after {
    content: '';
    position: absolute; bottom: 0; left: 20%; right: 20%; height: 30px;
    background: radial-gradient(ellipse at center bottom, rgba(212,134,76,0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  /* Service grid 2x2 — knob style */
  .mob-root .service-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 14px; flex-shrink: 0; margin-bottom: 14px;
  }
  .mob-root .svc-card {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    cursor: pointer; -webkit-tap-highlight-color: transparent;
    gap: 6px; padding: 6px 0;
  }
  /* Top label */
  .mob-root .svc-label {
    font-family: 'Urbanist', sans-serif; font-size: 8px; font-weight: 400;
    letter-spacing: 3px; color: var(--text-muted); transition: color 0.3s;
    text-align: center;
  }
  .mob-root .svc-card.active .svc-label { color: var(--accent); }
  /* Knob outer ring (track) */
  .mob-root .svc-knob-wrap {
    position: relative;
    width: 110px; height: 110px;
  }
  /* SVG arc track + accent arc */
  .mob-root .svc-knob-svg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    transform: rotate(-90deg);
  }
  .mob-root .svc-arc-track {
    fill: none;
    stroke: var(--bg-dark);
    stroke-width: 5;
    stroke-linecap: round;
    filter: drop-shadow(1px 1px 2px rgba(163,170,184,0.3));
  }
  .mob-root .svc-arc-accent {
    fill: none;
    stroke: var(--accent);
    stroke-width: 5;
    stroke-linecap: round;
    opacity: 0.3;
    transition: opacity 0.3s, stroke-dasharray 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
  }
  .mob-root .svc-card.active .svc-arc-accent { opacity: 0.85; }
  /* Knob body — raised neumorphic circle */
  .mob-root .svc-knob {
    position: absolute;
    top: 12px; left: 12px; right: 12px; bottom: 12px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--bg-light), var(--bg));
    box-shadow: 6px 6px 14px var(--shadow-dark), -5px -5px 12px var(--shadow-light);
    transition: box-shadow 0.25s;
  }
  .mob-root .svc-card:active .svc-knob {
    box-shadow: 3px 3px 8px var(--shadow-dark), -2px -2px 6px var(--shadow-light);
  }
  /* Indicator dot on knob */
  .mob-root .svc-knob-dot {
    position: absolute; top: 8px; left: 50%;
    width: 6px; height: 6px; border-radius: 50%;
    transform: translateX(-50%);
    background: rgba(163,170,184,0.3);
    transition: background 0.3s, box-shadow 0.3s;
  }
  .mob-root .svc-card.active .svc-knob-dot {
    background: radial-gradient(circle at 40% 35%, #fff4d0, #e8a040 60%, #D4864C);
    box-shadow: 0 0 4px rgba(212,134,76,0.6);
    animation: ledPulse 2.5s ease-in-out infinite;
  }
  /* Inner circle highlight */
  .mob-root .svc-knob::after {
    content: '';
    position: absolute; top: 18%; left: 18%; right: 18%; bottom: 18%;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(255,255,255,0.08), transparent);
    pointer-events: none;
  }
  /* Bottom brand label */
  .mob-root .svc-brand {
    font-family: 'Josefin Sans', sans-serif; font-size: 10px; font-weight: 400;
    letter-spacing: 3px; color: var(--text-primary); transition: color 0.3s;
    text-align: center;
  }
  .mob-root .svc-card.active .svc-brand { color: var(--accent); }

  .mob-root .nav-row { display: flex; gap: 10px; justify-content: center; flex-shrink: 0; margin-top: 10px; }
  .mob-root .nav-btn {
    flex: 1; max-width: 120px; padding: 12px 8px; border-radius: 16px; border: none;
    background: linear-gradient(145deg, var(--bg-light), var(--bg));
    box-shadow: 5px 5px 12px var(--shadow-dark), -4px -4px 10px var(--shadow-light);
    font-family: 'Urbanist', sans-serif; font-size: 10px; font-weight: 400;
    letter-spacing: 3px; color: var(--text-secondary); cursor: pointer; text-align: center;
    transition: color 0.2s;
  }
  .mob-root .nav-btn:active { box-shadow: inset 3px 3px 7px var(--shadow-dark), inset -2px -2px 5px var(--shadow-light); color: var(--accent); }
  .mob-root .nav-btn.selected { box-shadow: 0 0 0 2px var(--accent), 5px 5px 12px var(--shadow-dark), -4px -4px 10px var(--shadow-light); color: var(--accent); }

  @keyframes ledPulse { 0%,100% { opacity:1; } 50% { opacity:0.7; } }


  /* ═══════════════════════════
     VIEW: SERVICE DETAIL
     ═══════════════════════════ */

  /* Large deep well — record player */
  .mob-root .detail-player {
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    padding: 6px 0 14px;
  }
  .mob-root .detail-well-rim {
    width: 220px; height: 220px; border-radius: 50%;
    background: linear-gradient(145deg, var(--bg-light), var(--bg-dark));
    box-shadow: 5px 5px 14px var(--shadow-dark), -4px -4px 10px var(--shadow-light);
    padding: 6px;
    position: relative;
  }
  .mob-root .detail-well {
    width: 100%; height: 100%; border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #2e3038, #15171c 70%);
    box-shadow:
      inset 8px 8px 20px rgba(0,0,0,0.6),
      inset -4px -4px 14px rgba(0,0,0,0.3),
      inset 0 0 30px rgba(0,0,0,0.4);
    position: relative; overflow: hidden;
  }
  .mob-root .detail-well::after {
    content: ''; position: absolute; inset: 0; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.05);
    pointer-events: none;
  }
  /* Disc inside well */
  .mob-root .detail-disc {
    width: 85%; height: 85%; border-radius: 50%;
    position: absolute; top: 7.5%; left: 7.5%;
    background:
      radial-gradient(circle, transparent 28%, rgba(60,60,60,0.04) 29%, transparent 30%),
      radial-gradient(circle, transparent 42%, rgba(60,60,60,0.03) 43%, transparent 44%),
      radial-gradient(circle, transparent 56%, rgba(60,60,60,0.02) 57%, transparent 58%),
      radial-gradient(circle, transparent 70%, rgba(60,60,60,0.015) 71%, transparent 72%),
      radial-gradient(circle, transparent 84%, rgba(60,60,60,0.01) 85%, transparent 86%),
      conic-gradient(from 0deg, rgba(50,50,55,0.95), rgba(30,30,35,1), rgba(50,50,55,0.95), rgba(30,30,35,1), rgba(50,50,55,0.95), rgba(30,30,35,1)),
      #2a2a2e;
  }
  .mob-root .detail-label {
    position: absolute; top: 50%; left: 50%;
    width: 45%; height: 45%; transform: translate(-50%,-50%);
    border-radius: 50%; overflow: hidden; z-index: 2;
  }
  .mob-root .detail-label img { width: 100%; height: 100%; object-fit: cover; }
  .mob-root .detail-hole {
    position: absolute; top: 50%; left: 50%;
    width: 6%; height: 6%; transform: translate(-50%,-50%);
    border-radius: 50%; background: rgba(30,30,35,0.8);
    box-shadow: inset 1px 1px 2px rgba(0,0,0,0.5); z-index: 3;
  }
  .mob-root .detail-sheen {
    position: absolute; inset: 0; border-radius: 50%;
    background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.06) 45%, transparent 55%);
    z-index: 4; pointer-events: none;
  }
  /* Tonearm */
  .mob-root .detail-arm {
    position: absolute; top: 8px; right: 24px; z-index: 5;
    transform-origin: 5px 5px; transform: rotate(25deg);
  }
  .mob-root .arm-pivot { width: 10px; height: 10px; border-radius: 50%; background: linear-gradient(145deg,#ccc,#999); box-shadow: 1px 1px 3px rgba(0,0,0,0.3); }
  .mob-root .arm-bar { width: 2px; height: 70px; background: linear-gradient(180deg,#bbb,#888); margin: -1px 0 0 4px; border-radius: 1px; }
  .mob-root .arm-head { width: 6px; height: 10px; background: linear-gradient(180deg,#888,#555); margin-left: 2px; border-radius: 0 0 2px 2px; }
  /* Unified detail card — title + lyrics */
  .mob-root .detail-card {
    flex-shrink: 0;
    height: 290px;
    border-radius: 22px;
    background: linear-gradient(145deg, var(--bg-light), var(--bg));
    box-shadow: 5px 5px 14px var(--shadow-dark), -4px -4px 10px var(--shadow-light);
    padding: 14px 16px 16px;
    margin-bottom: 12px;
    display: flex; flex-direction: column;
  }

  /* Player info bar — inside card */
  .mob-root .detail-info {
    flex-shrink: 0;
    height: 70px;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 0 10px;
  }
  .mob-root .detail-info-left { display: flex; align-items: center; gap: 10px; }
  .mob-root .detail-led-bar {
    width: 4px; height: 28px; border-radius: 2px;
    background: var(--bg);
    box-shadow: inset 1px 1px 3px var(--shadow-dark), inset -1px -1px 2px var(--shadow-light);
    position: relative;
    display: flex; align-items: flex-start; justify-content: center;
    padding-top: 4px;
  }
  .mob-root .detail-led {
    width: 6px; height: 6px; border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, #fff4d0 0%, #ffe090 20%, #e8a040 50%, #D4864C 75%);
    box-shadow: 0 0 3px 1px rgba(255,220,100,0.8), 0 0 8px 3px rgba(230,170,60,0.5);
    animation: ledPulse 2.5s ease-in-out infinite;
  }
  .mob-root .detail-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 14px; font-weight: 400; letter-spacing: 3px; color: var(--text-primary);
  }
  .mob-root .detail-subtitle {
    font-size: 9px; font-weight: 300; letter-spacing: 2px; color: var(--text-muted); margin-top: 1px;
  }
  .mob-root .detail-tagline {
    font-size: 9px; font-weight: 400; letter-spacing: 1px; color: var(--accent); margin-top: 2px; opacity: 0.8;
  }
  .mob-root .detail-ext-link {
    width: 32px; height: 32px; border-radius: 50%;
    background: linear-gradient(145deg, var(--bg-light), var(--bg-dark));
    box-shadow: 3px 3px 7px var(--shadow-dark), -2px -2px 5px var(--shadow-light);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); text-decoration: none; font-size: 12px;
    transition: color 0.2s, box-shadow 0.2s;
  }
  .mob-root .detail-ext-link:hover { color: var(--accent); box-shadow: 4px 4px 8px var(--shadow-dark), -3px -3px 6px var(--shadow-light), 0 0 0 2px var(--accent); }
  .mob-root .detail-ext-link:active { box-shadow: inset 2px 2px 5px var(--shadow-dark), inset -2px -2px 4px var(--shadow-light); color: var(--accent); }

  /* Lyrics area — neumorphic inset, fixed height */
  .mob-root .detail-lyrics {
    flex: 1; min-height: 0;
    border-radius: 16px;
    background: var(--bg);
    box-shadow: inset 5px 5px 14px var(--shadow-dark), inset -4px -4px 10px var(--shadow-light);
    padding: 16px 20px;
  }
  .mob-root .lyric-line {
    font-size: 13px; font-weight: 300; line-height: 2;
    color: var(--text-secondary);
    transition: color 0.3s;
  }
  .mob-root .lyric-line.highlight { color: var(--text-primary); font-weight: 400; }

  /* Detail mini knobs — 4 in a row */
  .mob-root .detail-knobs {
    display: flex; justify-content: center; gap: 24px;
    flex-shrink: 0; padding: 6px 0;
  }
  .mob-root .detail-knob-item {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    cursor: pointer; -webkit-tap-highlight-color: transparent;
  }
  .mob-root .detail-knob-wrap {
    position: relative; width: 52px; height: 52px;
  }
  .mob-root .detail-knob-svg {
    position: absolute; inset: 0; width: 100%; height: 100%;
    transform: rotate(-90deg);
  }
  .mob-root .dk-arc-track {
    fill: none; stroke: var(--bg-dark); stroke-width: 4;
    stroke-linecap: round;
  }
  .mob-root .dk-arc-accent {
    fill: none; stroke: var(--accent); stroke-width: 4;
    stroke-linecap: round; opacity: 0.25;
    transition: opacity 0.3s, stroke-dasharray 0.5s;
  }
  .mob-root .detail-knob-item.active .dk-arc-accent { opacity: 0.85; }
  .mob-root .dk-body {
    position: absolute; top: 7px; left: 7px; right: 7px; bottom: 7px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--bg-light), var(--bg));
    box-shadow: 3px 3px 7px var(--shadow-dark), -2px -2px 5px var(--shadow-light);
  }
  .mob-root .dk-dot {
    position: absolute; top: 5px; left: 50%;
    width: 4px; height: 4px; border-radius: 50%;
    transform: translateX(-50%);
    background: rgba(163,170,184,0.3); transition: background 0.3s, box-shadow 0.3s;
  }
  .mob-root .detail-knob-item.active .dk-dot {
    background: radial-gradient(circle at 40% 35%, #fff4d0, #e8a040 60%, #D4864C);
    box-shadow: 0 0 3px rgba(212,134,76,0.5);
    animation: ledPulse 2.5s ease-in-out infinite;
  }
  .mob-root .dk-label {
    font-family: 'Urbanist', sans-serif; font-size: 9px; font-weight: 400;
    letter-spacing: 2px; color: var(--text-muted); transition: color 0.3s;
  }
  .mob-root .detail-knob-item.active .dk-label { color: var(--accent); }

  /* ═══════════════════════════
     VIEW: COMPANY / TEAM / HISTORY / CONTACT
     ═══════════════════════════ */

  /* Shared content well */
  .mob-root .content-well {
    flex-shrink: 0;
    border-radius: 22px;
    background: linear-gradient(145deg, var(--bg-light), var(--bg));
    box-shadow: 4px 4px 10px var(--shadow-dark), -3px -3px 8px var(--shadow-light);
    padding: 20px 18px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .mob-root .content-well::-webkit-scrollbar { width: 3px; }
  .mob-root .content-well::-webkit-scrollbar-thumb { background: var(--bg-dark); border-radius: 2px; }

  .mob-root .content-header {
    font-size: 11px; font-weight: 600; letter-spacing: 4px;
    color: var(--accent); margin-bottom: 16px; text-align: center;
  }

  /* Company — image well + info */
  .mob-root .company-img-well {
    width: 160px; height: 160px; border-radius: 50%; margin: 0 auto 16px;
    background: var(--bg);
    box-shadow: inset 5px 5px 14px var(--shadow-dark), inset -4px -4px 10px var(--shadow-light);
    overflow: hidden;
  }
  .mob-root .company-img-well img { width: 100%; height: 100%; object-fit: cover; }
  .mob-root .info-row {
    display: flex; justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(163,170,184,0.15);
    font-size: 11px;
  }
  .mob-root .info-label { font-weight: 400; color: var(--text-muted); letter-spacing: 1px; }
  .mob-root .info-value { font-weight: 400; color: var(--text-primary); text-align: right; }

  /* Team — member cards */
  .mob-root .team-member {
    display: flex; align-items: center; gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(163,170,184,0.15);
  }
  .mob-root .team-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--bg);
    box-shadow: inset 3px 3px 8px var(--shadow-dark), inset -2px -2px 6px var(--shadow-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: var(--text-muted); flex-shrink: 0;
  }
  .mob-root .m-team-name { font-size: 12px; font-weight: 500; color: var(--text-primary); letter-spacing: 1px; }
  .mob-root .team-role { font-size: 9px; font-weight: 300; color: var(--text-muted); letter-spacing: 1px; margin-top: 2px; }



  /* Contact — form elements */
  .mob-root .contact-input {
    width: 100%; padding: 12px 16px; border-radius: 14px; border: none;
    background: var(--bg);
    box-shadow: inset 4px 4px 10px var(--shadow-dark), inset -3px -3px 8px var(--shadow-light);
    font-family: 'Urbanist', sans-serif; font-size: 12px; color: var(--text-primary);
    margin-bottom: 10px; outline: none;
  }
  .mob-root .contact-input::placeholder { color: var(--text-muted); }
  .mob-root .contact-textarea {
    width: 100%; padding: 12px 16px; border-radius: 14px; border: none;
    background: var(--bg);
    box-shadow: inset 4px 4px 10px var(--shadow-dark), inset -3px -3px 8px var(--shadow-light);
    font-family: 'Urbanist', sans-serif; font-size: 12px; color: var(--text-primary);
    margin-bottom: 10px; outline: none; resize: none; height: 100px;
  }
  .mob-root .contact-textarea::placeholder { color: var(--text-muted); }
  .mob-root .contact-submit {
    width: 100%; padding: 14px; border-radius: 18px; border: none;
    background: linear-gradient(145deg, var(--bg-light), var(--bg-dark));
    box-shadow: 5px 5px 12px var(--shadow-dark), -4px -4px 10px var(--shadow-light);
    font-family: 'Urbanist', sans-serif; font-size: 11px; font-weight: 500;
    letter-spacing: 4px; color: var(--accent); cursor: pointer; transition: color 0.2s, box-shadow 0.2s;
  }
  .mob-root .contact-submit:active { box-shadow: inset 3px 3px 7px var(--shadow-dark), inset -2px -2px 5px var(--shadow-light); }

  /* Access tags */
  .mob-root .m-access-tag {
    font-size: 8px; font-weight: 600; letter-spacing: 2px;
    color: var(--accent); margin-bottom: 2px;
  }
  .mob-root .legal-link {
    color: var(--accent); text-decoration: none;
  }
  .mob-root .legal-link:active { text-decoration: underline; }

  /* ═══ ORG CHART ═══ */
  .mob-root .org-top { display: flex; flex-direction: column; align-items: center; }
  .mob-root .org-node-main {
    padding: 10px 24px; border-radius: 14px;
    background: linear-gradient(145deg, var(--bg-light), var(--bg-dark));
    box-shadow: 4px 4px 10px var(--shadow-dark), -3px -3px 8px var(--shadow-light);
    text-align: center;
  }
  .mob-root .org-node-name {
    font-size: 9px; font-weight: 600; letter-spacing: 2px;
    color: var(--text-secondary);
  }
  .mob-root .org-connector-down {
    width: 2px; height: 12px;
    background: rgba(163,170,184,0.3);
    margin: 0 auto;
  }
  .mob-root .org-desc-box {
    width: 100%;
    border-radius: 12px;
    background: var(--bg);
    box-shadow: inset 3px 3px 8px var(--shadow-dark), inset -2px -2px 6px var(--shadow-light);
    padding: 10px 14px; text-align: center;
    box-sizing: border-box;
  }
  .mob-root .org-desc-text {
    font-size: 11px; font-weight: 400; line-height: 1.6;
    color: var(--text-primary);
  }
  .mob-root .org-desc-text strong { font-weight: 600; color: var(--text-primary); }
  .mob-root .org-highlight {
    box-shadow: inset 3px 3px 8px var(--shadow-dark), inset -2px -2px 6px var(--shadow-light),
                0 0 0 1.5px rgba(212,134,76,0.2);
  }
  .mob-root .org-connector-h {
    display: flex; justify-content: center; padding: 0 40px;
    margin: 4px 0;
  }
  .mob-root .org-line-h {
    width: 100%; height: 2px;
    background: rgba(163,170,184,0.3);
  }
  .mob-root .m-org-branches {
    display: flex; gap: 10px;
  }
  .mob-root .org-branch {
    flex: 1; display: flex; flex-direction: column; align-items: center;
  }
  .mob-root .org-node-sub {
    padding: 8px 10px; border-radius: 12px;
    background: linear-gradient(145deg, var(--bg-light), var(--bg-dark));
    box-shadow: 3px 3px 7px var(--shadow-dark), -2px -2px 5px var(--shadow-light);
    text-align: center; margin-bottom: 6px;
  }
  .mob-root .org-node-sub .org-node-name { font-size: 7px; letter-spacing: 1.5px; line-height: 1.4; }
  .mob-root .org-clients-row {
    display: flex; flex-direction: column; align-items: center;
    margin-top: 6px;
  }

  /* ═══ HISTORY — HORIZONTAL CARD SLIDER ═══ */
  .mob-root .hist-viewport {
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
  }
  .mob-root .m-hist-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  }
  .mob-root .hist-card {
    flex: 0 0 100%;
    padding: 8px 12px 0;
    display: flex; align-items: flex-start; justify-content: center;
  }
  .mob-root .hist-card-inner {
    width: 100%;
    height: 220px;
    border-radius: 18px;
    background: var(--bg);
    box-shadow: inset 4px 4px 10px var(--shadow-dark), inset -3px -3px 8px var(--shadow-light);
    padding: 24px 20px;
    text-align: center;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
  }
  .mob-root .hist-card.current .hist-card-inner {
    box-shadow: inset 4px 4px 10px var(--shadow-dark), inset -3px -3px 8px var(--shadow-light),
                0 0 0 1.5px rgba(212,134,76,0.25);
  }
  .mob-root .hist-card-year {
    font-family: 'Urbanist', sans-serif;
    font-size: 20px; font-weight: 600; letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 8px;
  }
  .mob-root .hist-card-name {
    font-size: 14px; font-weight: 600; letter-spacing: 0.5px;
    color: var(--text-primary);
    margin-bottom: 10px;
  }
  .mob-root .hist-card-desc {
    font-size: 11px; font-weight: 400; line-height: 1.8;
    color: var(--text-primary);
  }
  .mob-root .hist-card-link {
    display: inline-block; margin-top: 10px;
    padding: 6px 16px; border-radius: 12px;
    background: linear-gradient(145deg, var(--bg-light), var(--bg-dark));
    box-shadow: 3px 3px 7px var(--shadow-dark), -2px -2px 5px var(--shadow-light);
    font-size: 9px; font-weight: 500; letter-spacing: 2px;
    color: var(--accent); text-decoration: none;
    transition: color 0.2s, box-shadow 0.2s;
  }
  .mob-root .hist-card-link:hover { box-shadow: 3px 3px 7px var(--shadow-dark), -2px -2px 5px var(--shadow-light), 0 0 0 2px var(--accent); }
  .mob-root .hist-card-link:active { box-shadow: inset 2px 2px 5px var(--shadow-dark), inset -2px -2px 4px var(--shadow-light); }
  /* Nav arrows + dots */
  .mob-root .hist-nav {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; padding: 14px 0 2px; flex-shrink: 0;
  }
  .mob-root .hist-arrow {
    width: 32px; height: 32px; border-radius: 50%; border: none;
    background: linear-gradient(145deg, var(--bg-light), var(--bg-dark));
    box-shadow: 3px 3px 8px var(--shadow-dark), -2px -2px 6px var(--shadow-light);
    font-size: 10px; color: var(--text-secondary); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: color 0.2s, box-shadow 0.2s;
    -webkit-tap-highlight-color: transparent;
  }
  .mob-root .hist-arrow:active { box-shadow: inset 2px 2px 5px var(--shadow-dark), inset -2px -2px 4px var(--shadow-light); color: var(--accent); }
  .mob-root .hist-dots {
    display: flex; gap: 6px; align-items: center;
  }
  .mob-root .hist-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--bg-dark);
    box-shadow: inset 1px 1px 2px var(--shadow-dark), inset -1px -1px 1px var(--shadow-light);
    transition: background 0.3s, box-shadow 0.3s;
  }
  .mob-root .hist-dot.active {
    background: var(--accent);
    box-shadow: 0 0 4px rgba(212,134,76,0.4);
  }

  /* ═══ LEGAL MODAL ═══ */
  .mob-root .legal-modal {
    position: absolute; inset: 0;
    background: var(--bg);
    z-index: 100;
    display: flex; flex-direction: column;
    transform: translateX(100%);
    opacity: 0; pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }
  .mob-root .legal-modal.active { transform: translateX(0); opacity: 1; pointer-events: auto; }
  .mob-root .legal-header {
    display: flex; align-items: center; gap: 10px;
    padding: 22px 18px 12px;
    flex-shrink: 0;
  }
  .mob-root .legal-back {
    padding: 8px 14px; border-radius: 14px; border: none;
    background: linear-gradient(145deg, var(--bg-light), var(--bg-dark));
    box-shadow: 4px 4px 10px var(--shadow-dark), -3px -3px 8px var(--shadow-light);
    font-family: 'Urbanist', sans-serif; font-size: 10px; font-weight: 400;
    letter-spacing: 2px; color: var(--text-secondary); cursor: pointer;
    display: flex; align-items: center; gap: 6px;
    transition: color 0.2s;
  }
  .mob-root .legal-back:active { box-shadow: inset 3px 3px 7px var(--shadow-dark), inset -2px -2px 5px var(--shadow-light); color: var(--accent); }
  .mob-root .legal-title {
    font-size: 11px; font-weight: 600; letter-spacing: 3px; color: var(--accent);
  }
  .mob-root .legal-body {
    flex: 1; min-height: 0;
    margin: 0 16px 24px;
    border-radius: 18px;
    background: var(--bg);
    box-shadow: inset 4px 4px 12px var(--shadow-dark), inset -3px -3px 8px var(--shadow-light);
    padding: 20px 16px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .mob-root .legal-body::-webkit-scrollbar { width: 3px; }
  .mob-root .legal-body::-webkit-scrollbar-thumb { background: var(--bg-dark); border-radius: 2px; }
  .mob-root .legal-body p {
    font-size: 10px; font-weight: 400; line-height: 1.8;
    color: var(--text-primary); margin-bottom: 10px;
  }
  .mob-root .legal-body strong { font-weight: 600; }

/* ═══════════════════════════════════════════════════
   DISPLAY SWITCHING — PC vs MOBILE
   Desktop: .mob-root hidden, .panel visible
   Mobile (≤768px): .mob-root visible, .panel hidden
   ═══════════════════════════════════════════════════ */

/* Desktop: hide mobile */
.mob-root { display: none !important; }

/* Mobile: show mobile, hide PC */
@media (max-width: 768px) {
  .mob-root {
    display: flex !important;
    width: 100%; min-height: 100vh; min-height: 100dvh;
    justify-content: center;
    overflow: hidden;
  }
  .panel { display: none !important; }
}
