  :root{
    --bg: #050507;
    --bg-soft: #0a0a10;
    --panel: #0e0e16;
    --panel-border: rgba(155,110,255,0.16);
    --purple: #9b6eff;
    --purple-soft: #7b5cff;
    --purple-dim: rgba(155,110,255,0.35);
    --text: #eceaf5;
    --text-dim: #a9a5bd;
    --text-faint: #706c85;
    --green-ok: #4ade80;
    --red-err: #f87171;
    --font-pixel: 'Minecraftia', 'Press Start 2P', monospace;
  }

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

  html{ scroll-behavior: smooth; }

  body{
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
  }

  img{ max-width:100%; display:block; }
  a{ color: inherit; text-decoration: none; }
  button{ font-family: inherit; }

  a:focus-visible,
  button:focus-visible{
    outline: 2px solid var(--purple);
    outline-offset: 2px;
  }

  .display{
    font-family: var(--font-pixel);
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.5;
  }

  /* ============ PARTICLE BACKGROUND ============ */
  #particle-canvas{
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(123,92,255,0.10), transparent 60%), var(--bg);
  }

  .content{
    position: relative;
    z-index: 1;
  }

  .wrap{
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 6%;
  }

  /* ============ NAV ============ */
  header.nav{
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(5,5,7,0.72);
    border-bottom: 1px solid rgba(155,110,255,0.12);
  }
  .nav-inner{
    max-width: 1180px;
    margin: 0 auto;
    padding: 16px 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
  }
  .brand{
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .brand img{ height: 30px; width: auto; }
  .nav-links{
    display: flex;
    align-items: center;
    gap: 34px;
  }
  .nav-links a{
    font-family: var(--font-pixel);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-dim);
    transition: color 0.2s ease;
  }
  .nav-links a:hover{ color: var(--text); }
  .nav-cta{
    display: flex;
    align-items: center;
    gap: 14px;
  }
  /* ============ MOBILE NAV TOGGLE ============ */
  .nav-toggle{
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--panel-border);
    background: rgba(155,110,255,0.06);
    color: var(--text);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
  }
  .nav-toggle:hover{
    background: rgba(155,110,255,0.16);
    border-color: var(--purple-dim);
  }
  .nav-toggle svg{ width: 20px; height: 20px; fill: currentColor; }
  .nav-toggle .icon-close{ display: none; }
  .nav-toggle[aria-expanded="true"] .icon-open{ display: none; }
  .nav-toggle[aria-expanded="true"] .icon-close{ display: block; }
  .btn-discord-icon{
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--panel-border);
    background: rgba(155,110,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
  }
  .btn-discord-icon:hover{
    background: rgba(155,110,255,0.16);
    border-color: var(--purple-dim);
    transform: translateY(-2px);
  }
  .btn-discord-icon img.discord-icon-img{ width: 20px; height: 20px; object-fit: contain; }
  .btn-primary-sm{
    padding: 10px 20px;
    border-radius: 10px;
    background: var(--purple);
    color: #08050f;
    font-family: var(--font-pixel);
    font-weight: 700;
    font-size: 0.78rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .btn-primary-sm:hover{
    background: var(--purple-soft);
    box-shadow: 0 0 24px rgba(155,110,255,0.4);
  }

  /* ============ HERO ============ */
  .hero{
    padding: 110px 0 70px;
    text-align: center;
  }
  .hero-logo{
    max-width: 460px;
    margin: 0 auto 26px;
    filter: drop-shadow(0 0 40px rgba(123,92,255,0.25));
  }
  .hero-tag{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 999px;
    border: 1px solid var(--panel-border);
    background: rgba(155,110,255,0.06);
    color: var(--purple);
    font-family: var(--font-pixel);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 26px;
  }
  .hero-tag .dot{
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--green-ok);
    box-shadow: 0 0 8px var(--green-ok);
  }
  .hero h1{
    font-size: clamp(2.2rem, 4.6vw, 3.4rem);
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 18px;
  }
  .hero h1 span{ color: var(--purple); }
  .hero p.sub{
    color: var(--text-dim);
    font-size: 1.08rem;
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.6;
  }

  /* IP copy box */
  .ip-box{
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: var(--panel);
    border: 1px solid var(--panel-border);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 18px;
  }
  .ip-box .ip-label{
    padding: 16px 22px;
    font-family: var(--font-pixel);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.3px;
  }
  .ip-box button{
    padding: 16px 22px;
    background: rgba(155,110,255,0.1);
    border: none;
    border-left: 1px solid var(--panel-border);
    color: var(--purple);
    font-family: var(--font-pixel);
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
  }
  .ip-box button:hover{ background: rgba(155,110,255,0.2); }
  .ip-box button svg{ width: 16px; height: 16px; fill: currentColor; }
  .ip-box button.copied{ color: var(--green-ok); }

  .hero-actions{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }
  .btn-primary{
    padding: 15px 30px;
    border-radius: 12px;
    background: var(--purple);
    color: #08050f;
    font-family: var(--font-pixel);
    font-weight: 700;
    font-size: 0.82rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .btn-primary:hover{
    background: var(--purple-soft);
    box-shadow: 0 0 30px rgba(155,110,255,0.45);
    transform: translateY(-1px);
  }
  .btn-ghost{
    padding: 15px 30px;
    border-radius: 12px;
    background: transparent;
    color: var(--text);
    font-family: var(--font-pixel);
    font-weight: 600;
    font-size: 0.82rem;
    border: 1px solid var(--panel-border);
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .btn-ghost:hover{
    border-color: var(--purple-dim);
    background: rgba(155,110,255,0.06);
  }
  .btn-ghost svg{ width: 18px; height: 18px; fill: currentColor; }
  .btn-ghost img.discord-icon-img{ width: 18px; height: 18px; object-fit: contain; }

  /* ============ SECTION HEADERS ============ */
  .section{ padding: 70px 0; }
  .section-head{
    text-align: center;
    margin-bottom: 50px;
  }
  .section-eyebrow{
    color: var(--purple);
    font-family: var(--font-pixel);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .section-head h2{
    font-size: clamp(1.8rem, 3.4vw, 2.5rem);
    color: var(--text);
  }
  .section-head p{
    color: var(--text-dim);
    max-width: 520px;
    margin: 14px auto 0;
    line-height: 1.6;
  }
  .store-tax-note{
    color: var(--text-faint);
    font-size: 0.78rem;
    max-width: 520px;
    margin: 10px auto 0;
    line-height: 1.5;
  }

  /* ============ RANKS ============ */
  .ranks-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    align-items: stretch;
  }
  .rank-card{
    background: linear-gradient(180deg, var(--panel), #0a0a12);
    border: 1px solid var(--panel-border);
    border-radius: 22px;
    padding: 36px 30px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  }
  .rank-card:hover{
    transform: translateY(-6px);
    border-color: var(--purple-dim);
    box-shadow: 0 20px 50px rgba(123,92,255,0.14);
  }
  .rank-card.featured{
    border-color: rgba(155,110,255,0.5);
    background: linear-gradient(180deg, rgba(123,92,255,0.1), #0a0a12 60%);
  }
  .rank-badge{
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--purple);
    color: #08050f;
    font-family: var(--font-pixel);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 999px;
    white-space: nowrap;
  }
  .rank-logo{
    height: 46px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
  }
  .rank-logo img{ height: 100%; width: auto; }
  .rank-price{
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 4px;
  }
  .rank-price .amount{
    font-size: 1.9rem;
    font-weight: 400;
    color: var(--text);
    font-family: var(--font-pixel);
  }
  .rank-price .period{
    color: var(--text-faint);
    font-size: 0.95rem;
    font-weight: 500;
  }
  .rank-price-vat{
    color: var(--text-faint);
    font-size: 0.78rem;
    margin-bottom: 4px;
  }
  .rank-desc{
    color: var(--text-dim);
    font-size: 0.92rem;
    margin-bottom: 26px;
    line-height: 1.5;
  }
  .rank-perks{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 4px;
    flex-grow: 1;
  }
  .rank-perks li{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.4;
  }
  .rank-perks li svg{
    width: 16px; height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    fill: var(--purple);
  }
  .rank-note{
    font-size: 0.78rem;
    color: var(--text-faint);
    line-height: 1.55;
    padding-top: 16px;
    margin-bottom: 22px;
    border-top: 1px solid var(--panel-border);
  }
  .rank-buy{
    width: 100%;
    padding: 15px 0;
    border-radius: 12px;
    background: rgba(155,110,255,0.1);
    border: 1px solid var(--panel-border);
    color: var(--text);
    font-family: var(--font-pixel);
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .rank-card.featured .rank-buy{
    background: var(--purple);
    color: #08050f;
    border: none;
  }
  .rank-buy:hover{
    background: var(--purple);
    color: #08050f;
    border-color: var(--purple);
    box-shadow: 0 0 26px rgba(155,110,255,0.35);
  }

  /* ============ IN GAME TAGS ============ */
  .section-tags{ padding-top: 0; }
  .tags-grid{
    display: grid;
    grid-template-columns: minmax(0, 420px);
    justify-content: center;
  }
  .tag-preview-label{
    font-size: 0.82rem;
    color: var(--text-dim);
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
  }
  .tag-preview-frame{
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    border: 3px solid #d4af37;
    padding: 6px;
    margin-bottom: 22px;
    box-shadow: 0 0 18px rgba(212,175,55,0.18);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
  }
  .tag-preview-frame img{
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
  }
  .rank-card:hover .tag-preview-frame,
  .rank-card:focus-within .tag-preview-frame{
    border-color: #f0d987;
    box-shadow: 0 0 40px rgba(212,175,55,0.45), 0 0 6px rgba(212,175,55,0.6);
  }
  @media (prefers-reduced-motion: reduce){
    .tag-preview-frame{ transition: box-shadow 0.3s ease, border-color 0.3s ease; }
  }
  @media (max-width: 520px){
    .tag-preview-frame{ aspect-ratio: 4 / 3; }
  }

  /* ============ FOOTER ============ */
  footer{
    border-top: 1px solid rgba(155,110,255,0.12);
    padding: 46px 0 34px;
    margin-top: 40px;
  }
  .footer-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-brand{
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .footer-brand img{ height: 22px; width: auto; opacity: 0.85; }
  .footer-links{
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
  }
  .footer-links a{
    color: var(--text-faint);
    font-family: var(--font-pixel);
    font-size: 0.68rem;
    transition: color 0.2s ease;
  }
  .footer-links a:hover{ color: var(--text-dim); }
  .footer-note{
    color: var(--text-faint);
    font-size: 0.8rem;
    text-align: center;
    margin-top: 26px;
  }

  /* ============ MODAL ============ */
  .modal-overlay{
    position: fixed;
    inset: 0;
    background: rgba(3,3,6,0.78);
    backdrop-filter: blur(6px);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  .modal-overlay.open{ display: flex; }
  .modal{
    background: var(--panel);
    border: 1px solid var(--panel-border);
    border-radius: 22px;
    width: 100%;
    max-width: 440px;
    padding: 32px 30px 28px;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    animation: modalIn 0.25s ease;
  }
  @keyframes modalIn{
    from{ opacity:0; transform: translateY(14px) scale(0.98); }
    to{ opacity:1; transform: translateY(0) scale(1); }
  }
  .modal-close{
    position: absolute;
    top: 18px; right: 18px;
    width: 32px; height: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--panel-border);
    color: var(--text-dim);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
  }
  .modal-close:hover{ background: rgba(255,255,255,0.08); color: var(--text); }
  .modal-close svg{ width: 16px; height: 16px; fill: currentColor; }

  .modal-rank-logo{
    height: 34px;
    margin-bottom: 18px;
  }
  .modal-rank-logo img{ height: 100%; width: auto; }
  .modal h3{
    font-family: var(--font-pixel);
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1.5;
  }
  .modal .modal-price{
    color: var(--purple);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 22px;
  }

  .field-label{
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dim);
    margin-bottom: 9px;
  }
  .field-input-wrap{
    position: relative;
  }
  .field-input{
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    background: #08080e;
    border: 1.5px solid var(--panel-border);
    color: var(--text);
    font-size: 0.98rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.2s ease;
  }
  .field-input::placeholder{ color: var(--text-faint); }
  .field-input:focus{ border-color: var(--purple); }
  .field-input.valid{ border-color: var(--green-ok); }
  .field-input.invalid{ border-color: var(--red-err); }

  .field-status{
    min-height: 20px;
    font-size: 0.82rem;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .field-status.ok{ color: var(--green-ok); }
  .field-status.err{ color: var(--red-err); }
  .field-status svg{ width: 13px; height: 13px; fill: currentColor; flex-shrink: 0; }

  .mc-preview{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(155,110,255,0.05);
    border: 1px solid var(--panel-border);
    display: none;
  }
  .mc-preview.show{ display: flex; }
  .mc-preview img{
    width: 32px; height: 32px;
    border-radius: 6px;
    image-rendering: pixelated;
  }
  .mc-preview span{ font-size: 0.9rem; color: var(--text-dim); }
  .mc-preview strong{ color: var(--text); }

  .modal-submit{
    width: 100%;
    padding: 15px 0;
    border-radius: 12px;
    background: var(--purple);
    color: #08050f;
    font-family: var(--font-pixel);
    font-weight: 700;
    font-size: 0.82rem;
    border: none;
    cursor: pointer;
    margin-top: 22px;
    transition: all 0.2s ease;
    opacity: 0.5;
    pointer-events: none;
  }
  .modal-submit.enabled{
    opacity: 1;
    pointer-events: auto;
  }
  .modal-submit.enabled:hover{
    background: var(--purple-soft);
    box-shadow: 0 0 26px rgba(155,110,255,0.4);
  }
  .modal-submit .spinner{
    display: none;
    width: 16px; height: 16px;
    border: 2px solid rgba(8,5,15,0.3);
    border-top-color: #08050f;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    margin: 0 auto;
  }
  .modal-submit.loading span{ display: none; }
  .modal-submit.loading .spinner{ display: block; }
  @keyframes spin{ to{ transform: rotate(360deg); } }

  .checkout-error{
    display: none;
    margin-top: 14px;
    padding: 11px 14px;
    border-radius: 10px;
    background: rgba(248,113,113,0.08);
    border: 1px solid rgba(248,113,113,0.3);
    color: var(--red-err);
    font-size: 0.82rem;
    line-height: 1.5;
  }
  .checkout-error.show{ display: block; }
  .modal-secure{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 16px;
    color: var(--text-faint);
    font-size: 0.78rem;
  }
  .modal-secure svg{ width: 13px; height: 13px; fill: currentColor; }

  /* ============ LEGAL MODAL ============ */
  .legal-modal{
    background: var(--panel);
    border: 1px solid var(--panel-border);
    border-radius: 22px;
    width: 100%;
    max-width: 720px;
    max-height: 85vh;
    padding: 0;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    animation: modalIn 0.25s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .legal-modal-head{
    padding: 28px 60px 20px 30px;
    border-bottom: 1px solid var(--panel-border);
    flex-shrink: 0;
  }
  .legal-modal-head h3{
    font-family: var(--font-pixel);
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text);
  }
  .legal-modal-head p{
    color: var(--text-faint);
    font-size: 0.8rem;
    margin-top: 8px;
  }
  .legal-modal-body{
    padding: 24px 30px 34px;
    overflow-y: auto;
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.7;
  }
  .legal-modal-body::-webkit-scrollbar{ width: 8px; }
  .legal-modal-body::-webkit-scrollbar-thumb{ background: var(--panel-border); border-radius: 8px; }
  .legal-content h4{
    font-family: var(--font-pixel);
    font-size: 0.85rem;
    color: var(--text);
    margin: 26px 0 10px;
    line-height: 1.6;
  }
  .legal-content h4:first-child{ margin-top: 0; }
  .legal-content h5{
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text);
    margin: 16px 0 6px;
  }
  .legal-content p{ margin-bottom: 12px; }
  .legal-content ul, .legal-content ol{ margin: 0 0 12px 20px; }
  .legal-content li{ margin-bottom: 6px; }
  .legal-content a{ color: var(--purple); text-decoration: underline; }
  .legal-content strong{ color: var(--text); }
  .legal-content .legal-meta{
    color: var(--text-faint);
    font-size: 0.8rem;
    margin-bottom: 18px;
  }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 900px){
    .nav-toggle{ display: flex; order: 3; }
    .nav-cta{ order: 2; gap: 10px; }
    .nav-inner{ gap: 10px; padding: 14px 5%; }
    .brand img{ height: 24px; }
    .nav-links{
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      background: rgba(5,5,7,0.98);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(155,110,255,0.12);
      max-height: 0;
      overflow: hidden;
      visibility: hidden;
      transition: max-height 0.25s ease;
    }
    .nav-links.open{
      max-height: 320px;
      visibility: visible;
    }
    .nav-links a{
      padding: 16px 6%;
      border-top: 1px solid rgba(155,110,255,0.1);
      font-size: 0.85rem;
    }
    .ranks-grid{ grid-template-columns: 1fr; }
    .rank-card.featured{ order: -1; }
    .footer-inner{ flex-direction: column; text-align: center; }
  }
  @media (max-width: 480px){
    .nav-inner{ gap: 8px; padding: 12px 4%; }
    .brand img{ height: 20px; }
    .nav-toggle, .btn-discord-icon{ width: 36px; height: 36px; }
    .nav-toggle svg{ width: 18px; height: 18px; }
    .btn-discord-icon img.discord-icon-img{ width: 18px; height: 18px; }
    .btn-primary-sm{ padding: 9px 12px; font-size: 0.68rem; }
  }
  @media (prefers-reduced-motion: reduce){
    .nav-links{ transition: none; }
  }
  @media (max-width: 520px){
    .hero{ padding: 90px 0 50px; }
    .hero-logo{ max-width: 280px; }
    .legal-modal{ max-height: 90vh; }
    .legal-modal-head{ padding: 22px 44px 16px 20px; }
    .legal-modal-body{ padding: 18px 20px 26px; }
    .ip-box{ flex-direction: column; width: 100%; }
    .ip-box .ip-label{ text-align: center; width: 100%; overflow-wrap: anywhere; }
    .ip-box button{ border-left: none; border-top: 1px solid var(--panel-border); justify-content: center; width: 100%; }
    .hero-actions{ flex-direction: column; width: 100%; }
    .btn-primary, .btn-ghost{ width: 100%; justify-content: center; }
  }

/* ============ FAQ (compact) ============ */
.faq-compact{
  padding: 30px 0 0;
}
.faq-compact-heading{
  font-family: var(--font-pixel);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--purple);
  text-align: center;
  margin-bottom: 16px;
}
.faq-compact-list{
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.faq-compact-item{
  border-top: 1px solid var(--panel-border);
  padding: 10px 2px;
}
.faq-compact-item summary{
  cursor: pointer;
  color: var(--text-dim);
  font-size: 0.85rem;
  list-style: none;
}
.faq-compact-item summary::-webkit-details-marker{ display: none; }
.faq-compact-item summary:hover{ color: var(--text); }
.faq-compact-item summary:focus-visible{
  outline: 2px solid var(--purple);
  outline-offset: 3px;
  border-radius: 4px;
}
.faq-compact-item p{
  color: var(--text-faint);
  font-size: 0.82rem;
  line-height: 1.6;
  margin-top: 8px;
}

/* ============ MEET THE OWNERS ============ */
.owners-section{ padding: 70px 0; }
.owners{
  max-width: 760px;
  margin: 48px auto 0;
  padding: 28px 26px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 22px;
}
.owners-heading{
  font-size: 1.05rem;
  color: var(--text);
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.owners-body{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.owners-photo-frame{
  width: min(300px, 74vw);
  height: min(300px, 74vw);
  border-radius: 20px;
  border: 3px solid #d4af37;
  padding: 6px;
  flex-shrink: 0;
  box-shadow: 0 0 18px rgba(212,175,55,0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.owners-photo-frame img{
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 13px;
  object-fit: cover;
}
.owners-photo-frame:hover,
.owners-photo-frame:focus-within{
  transform: translateY(-4px) scale(1.02);
  border-color: #f0d987;
  box-shadow: 0 0 40px rgba(212,175,55,0.45), 0 0 6px rgba(212,175,55,0.6);
}
.owners-photo-frame:focus-visible{
  outline: 2px solid #d4af37;
  outline-offset: 4px;
}
@media (prefers-reduced-motion: reduce){
  .owners-photo-frame{ transition: box-shadow 0.3s ease, border-color 0.3s ease; }
  .owners-photo-frame:hover,
  .owners-photo-frame:focus-within{ transform: none; }
}
.owners-list{
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 340px;
}
.owner{
  text-align: center;
  padding-top: 12px;
  border-top: 1px solid var(--panel-border);
}
.owner:first-child{
  padding-top: 0;
  border-top: none;
}
.owner-name{
  font-family: var(--font-pixel);
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 4px;
}
.owner-role{
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.owner-social{
  display: inline-block;
  color: var(--purple);
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid var(--panel-border);
  border-radius: 999px;
  padding: 6px 14px;
  transition: all 0.2s ease;
}
.owner-social:hover{
  background: rgba(155,110,255,0.1);
  border-color: var(--purple-dim);
}
@media (max-width: 900px){
  .owners{ max-width: 100%; width: 100%; }
  .owners-body{ flex-direction: column; }
  .owners-list{ max-width: 100%; }
}
