/*
Theme Name: Joystar Capital
Author: Joystar Capital
Version: 1.0
*/

/* Source: /var/www/joystar/index.html */
/* ============================================
       DESIGN TOKENS
    ============================================ */
    :root {
      --color-bg:         #ffffff;
      --color-surface:    #f5f5f5;
      --color-surface-2:  #ebebeb;
      --color-border:     rgba(0,0,0,0.09);
      --color-accent:     #6b3fd4;
      --color-accent-2:   #8b5cf6;
      --color-gold:       #c9920a;
      --color-green:      #16a34a;
      --color-text:       #0f0d0b;
      --color-text-muted: #6b6560;
      --color-gradient:   linear-gradient(135deg, #6b3fd4 0%, #c9920a 100%);

      --font-display: 'Playfair Display', Georgia, serif;
      --font-body:    'Inter', sans-serif;

      --text-xs:   0.75rem;
      --text-sm:   0.875rem;
      --text-base: 1rem;
      --text-lg:   1.125rem;
      --text-xl:   1.25rem;
      --text-2xl:  1.5rem;
      --text-3xl:  2rem;
      --text-4xl:  2.75rem;
      --text-5xl:  3.75rem;
      --text-6xl:  5rem;

      --radius-sm:  6px;
      --radius-md:  12px;
      --radius-lg:  20px;
      --radius-xl:  28px;

      --transition-fast: 0.2s ease;
      --transition-med:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* ============================================
       RESET & BASE
    ============================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      background-color: var(--color-bg);
      color: var(--color-text);
      font-family: var(--font-body);
      font-size: var(--text-base);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }
    ul, ol { list-style: none; }

    /* ============================================
       UTILITIES
    ============================================ */
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    @media (min-width: 768px)  { .container { padding: 0 40px; } }
    @media (min-width: 1200px) { .container { padding: 0 60px; } }

    .section-label {
      font-size: var(--text-xs);
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--color-accent-2);
      display: inline-block;
      margin-bottom: 16px;
    }

    .section-title {
      font-family: var(--font-display);
      font-size: var(--text-3xl);
      font-weight: 700;
      line-height: 1.15;
      color: var(--color-text);
    }

    @media (min-width: 768px) {
      .section-title { font-size: var(--text-4xl); }
    }

    .section-sub {
      font-size: var(--text-lg);
      color: var(--color-text-muted);
      margin-top: 12px;
      line-height: 1.7;
    }

    /* Entrance animation base */
    .reveal {
      opacity: 1;
      transform: translateY(0);
      transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                  transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Stagger delays */
    .reveal-d1 { transition-delay: 0.05s; }
    .reveal-d2 { transition-delay: 0.12s; }
    .reveal-d3 { transition-delay: 0.19s; }
    .reveal-d4 { transition-delay: 0.26s; }
    .reveal-d5 { transition-delay: 0.33s; }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 13px 28px;
      border-radius: var(--radius-sm);
      font-family: var(--font-body);
      font-size: var(--text-sm);
      font-weight: 600;
      letter-spacing: 0.02em;
      transition: background var(--transition-fast), transform var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
      cursor: pointer;
    }
    .btn:active { transform: scale(0.98); }

    .btn-primary {
      background: var(--color-accent);
      color: #fff;
    }
    .btn-primary:hover {
      background: var(--color-accent-2);
      transform: scale(1.02);
    }

    .btn-ghost {
      background: transparent;
      color: var(--color-text);
      border: 1px solid rgba(0,0,0,0.18);
    }
    .btn-ghost:hover {
      border-color: var(--color-accent);
      color: var(--color-accent);
      transform: scale(1.02);
    }

    .btn-sm {
      padding: 9px 20px;
      font-size: var(--text-xs);
    }

    /* Link hover underline */
    .link-hover {
      position: relative;
      display: inline-block;
    }
    .link-hover::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--color-accent-2);
      transition: width var(--transition-med);
    }
    .link-hover:hover::after { width: 100%; }
    /* ============================================
       HERO SECTION
    ============================================ */
    .hero {
      position: relative;
      min-height: 60vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      overflow: hidden;
      padding: 80px 0 60px;
    }

    /* Animated gradient mesh */
    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .hero-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 20% 30%, rgba(107,63,212,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 70%, rgba(201,146,10,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 50% 50%, rgba(22,163,74,0.05) 0%, transparent 60%);
      animation: meshPulse 12s ease-in-out infinite alternate;
    }
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 50% at 70% 20%, rgba(107,63,212,0.06) 0%, transparent 55%),
        radial-gradient(ellipse 40% 60% at 30% 80%, rgba(107,63,212,0.05) 0%, transparent 50%);
      animation: meshPulse2 15s ease-in-out infinite alternate;
    }

    @keyframes meshPulse {
      0%   { opacity: 0.6; transform: scale(1); }
      100% { opacity: 1;   transform: scale(1.04); }
    }
    @keyframes meshPulse2 {
      0%   { opacity: 0.5; transform: scale(1.02) translateX(-10px); }
      100% { opacity: 0.9; transform: scale(1) translateX(10px); }
    }

    /* Subtle grid lines */
    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(var(--color-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
      background-size: 80px 80px;
      mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 70%);
      opacity: 0.4;
    }

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

    .hero-overline {
      font-size: var(--text-xs);
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--color-accent-2);
      margin-bottom: 28px;
      opacity: 0;
      animation: fadeUp 0.8s 0.2s cubic-bezier(0.4,0,0.2,1) forwards;
    }

    .hero-headline {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 7vw, var(--text-6xl));
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -0.01em;
      color: var(--color-text);
      margin-bottom: 28px;
      max-width: 900px;
      opacity: 0;
      animation: fadeUp 0.8s 0.35s cubic-bezier(0.4,0,0.2,1) forwards;
    }

    .hero-headline .strikethrough {
      position: relative;
      display: inline-block;
      color: var(--color-text-muted);
    }
    .hero-headline .strikethrough::after {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      height: 2px;
      background: var(--color-accent);
      width: 0;
      transform: translateY(-50%);
      animation: strikeAnim 0.6s 1.1s ease forwards;
    }
    @keyframes strikeAnim { to { width: 100%; } }

    .hero-sub {
      font-size: clamp(var(--text-base), 2vw, var(--text-xl));
      color: var(--color-text-muted);
      max-width: 560px;
      line-height: 1.7;
      margin-bottom: 44px;
      opacity: 0;
      animation: fadeUp 0.8s 0.5s cubic-bezier(0.4,0,0.2,1) forwards;
    }

    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      opacity: 0;
      animation: fadeUp 0.8s 0.65s cubic-bezier(0.4,0,0.2,1) forwards;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
      50%       { opacity: 1;   transform: scaleY(1.1); }
    }

    /* ============================================
       POSITIONING STATEMENT
    ============================================ */
    .positioning {
      background: var(--color-surface);
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }
    .positioning::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background: linear-gradient(to bottom, transparent, var(--color-accent), transparent);
    }

    .positioning-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 60px;
    }
    @media (min-width: 900px) {
      .positioning-grid { grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
    }

    .positioning-quote {
      font-family: var(--font-display);
      font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
      font-weight: 700;
      line-height: 1.2;
      color: var(--color-text);
    }
    .positioning-quote em {
      font-style: normal;
      background: var(--color-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .positioning-points {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }
    .positioning-point p {
      font-size: var(--text-sm);
      color: var(--color-text-muted);
      line-height: 1.7;
      margin-top: 4px;
    }
    .positioning-point strong {
      font-size: var(--text-base);
      font-weight: 600;
      color: var(--color-text);
      display: block;
    }

    /* ============================================
       FUNDS SECTION
    ============================================ */
    .funds {
      padding: 100px 0;
      background: var(--color-bg);
    }

    .funds-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .funds-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }
    @media (min-width: 768px) { .funds-grid { grid-template-columns: repeat(3, 1fr); } }

    .fund-card {
      background: var(--color-surface-2);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-lg);
      padding: 40px 36px;
      transition: border-color var(--transition-med), transform var(--transition-med);
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }
    .fund-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(107,63,212,0.06) 0%, transparent 70%);
      opacity: 0;
      transition: opacity var(--transition-med);
    }
    .fund-card:hover {
      border-color: var(--color-accent);
      transform: translateY(-4px);
    }
    .fund-card:hover::before { opacity: 1; }

    .fund-icon {
      width: 52px;
      height: 52px;
      margin-bottom: 28px;
      border-radius: var(--radius-sm);
      background: rgba(107,63,212,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .fund-name {
      font-family: var(--font-display);
      font-size: var(--text-xl);
      font-weight: 700;
      color: var(--color-text);
      margin-bottom: 12px;
    }

    .fund-desc {
      font-size: var(--text-sm);
      color: var(--color-text-muted);
      line-height: 1.7;
      margin-bottom: 28px;
    }

    .fund-link {
      font-size: var(--text-sm);
      font-weight: 600;
      color: var(--color-accent-2);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: gap var(--transition-fast), color var(--transition-fast);
    }
    .fund-card:hover .fund-link { gap: 10px; color: var(--color-accent-2); }

    /* ============================================
       PORTFOLIO SECTION
    ============================================ */
    .portfolio {
      padding: 100px 0;
      background: var(--color-surface);
    }

    .portfolio-header {
      margin-bottom: 60px;
    }

    /* Mynt featured card */
    .portfolio-feature {
      background: linear-gradient(135deg, #e8f5e9 0%, #f1faf1 50%, #ffffff 100%);
      border: 1px solid rgba(104,201,90,0.2);
      border-radius: var(--radius-xl);
      padding: 48px;
      margin-bottom: 40px;
      position: relative;
      overflow: hidden;
      transition: border-color var(--transition-med);
    }
    .portfolio-feature:hover { border-color: rgba(104,201,90,0.45); }
    .portfolio-feature::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 400px;
      height: 400px;
      background: radial-gradient(ellipse at top right, rgba(104,201,90,0.08) 0%, transparent 65%);
    }
    .portfolio-feature-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
    }
    @media (min-width: 768px) {
      .portfolio-feature-inner { grid-template-columns: 1fr 1fr; align-items: center; }
    }

    .portfolio-feature-badge {
      font-size: var(--text-xs);
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #7ed96e;
      margin-bottom: 16px;
    }

    .portfolio-feature-name {
      font-family: var(--font-display);
      font-size: var(--text-4xl);
      font-weight: 800;
      color: var(--color-text);
      margin-bottom: 8px;
    }
    .portfolio-feature-name span { color: #7ed96e; }

    .portfolio-feature-tagline {
      font-size: var(--text-lg);
      color: rgba(240,240,242,0.7);
      margin-bottom: 20px;
      font-weight: 300;
    }

    .portfolio-feature-desc {
      font-size: var(--text-sm);
      color: var(--color-text-muted);
      line-height: 1.75;
      max-width: 440px;
    }

    .portfolio-feature-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 28px;
      padding: 12px 24px;
      border: 1px solid rgba(104,201,90,0.3);
      border-radius: var(--radius-sm);
      font-size: var(--text-sm);
      font-weight: 600;
      color: #7ed96e;
      transition: background var(--transition-fast), border-color var(--transition-fast);
    }
    .portfolio-feature-link:hover {
      background: rgba(104,201,90,0.08);
      border-color: rgba(104,201,90,0.6);
    }
    .portfolio-feature-right {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
    }
    .portfolio-invest-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 28px;
      padding: 12px 24px;
      border: 1px solid rgba(104,201,90,0.3);
      border-radius: var(--radius-sm);
      font-size: var(--text-sm);
      font-weight: 600;
      color: #7ed96e;
      transition: background var(--transition-fast), border-color var(--transition-fast);
      align-self: flex-start;
    }
    .portfolio-invest-link:hover {
      background: rgba(104,201,90,0.08);
      border-color: rgba(104,201,90,0.6);
    }

    /* Mynt logo mark */
    .mynt-logo {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .mynt-logo-mark {
      width: 72px;
      height: 72px;
      border-radius: var(--radius-md);
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .mynt-stats {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 24px;
    }
    .mynt-stat-row {
      display: flex;
      gap: 32px;
    }
    .mynt-stat strong {
      display: block;
      font-family: var(--font-display);
      font-size: var(--text-2xl);
      font-weight: 700;
      color: #7ed96e;
    }
    .mynt-stat span {
      font-size: var(--text-xs);
      color: var(--color-text-muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    /* Portfolio grid */
    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    @media (min-width: 600px)  { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }
    @media (min-width: 900px)  { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }

    .portfolio-card {
      background: var(--color-surface-2);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-md);
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      transition: border-color var(--transition-med), transform var(--transition-med);
    }
    .portfolio-card:hover {
      border-color: rgba(107,63,212,0.40);
      transform: translateY(-3px);
    }

    .portfolio-card-logo {
      width: 100%;
      height: 52px;
      border-radius: var(--radius-sm);
      background: transparent;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      flex-shrink: 0;
      padding: 8px 12px;
    }
    .portfolio-card-logo img {
      max-width: 100%;
      max-height: 36px;
      width: auto;
      height: auto;
      object-fit: contain;
    }
    .portfolio-card-logo .logo-fallback {
      font-family: var(--font-body);
      font-weight: 700;
      font-size: var(--text-xs);
      color: var(--color-text-muted);
      letter-spacing: 0.02em;
    }

    .portfolio-card-name {
      font-weight: 600;
      font-size: var(--text-sm);
      color: var(--color-text);
      line-height: 1.3;
    }
    .portfolio-card-name a {
      color: inherit;
      text-decoration: none;
    }
    .portfolio-card-name a:hover {
      text-decoration: underline;
      opacity: 0.8;
    }

    .portfolio-card-desc {
      font-size: var(--text-xs);
      color: var(--color-text-muted);
      line-height: 1.5;
      margin-top: 3px;
    }

    .portfolio-card-tag {
      display: inline-block;
      padding: 3px 10px;
      border-radius: 20px;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      background: rgba(107,63,212,0.08);
      color: var(--color-accent-2);
      border: 1px solid rgba(107,63,212,0.20);
      margin-top: auto;
      align-self: flex-start;
    }
    .portfolio-card-tag.gold {
      background: rgba(201,146,10,0.08);
      color: var(--color-gold);
      border-color: rgba(201,146,10,0.22);
    }
    .portfolio-card-tag.green {
      background: rgba(22,163,74,0.08);
      color: var(--color-green);
      border-color: rgba(22,163,74,0.20);
    }
    .portfolio-card-tag.neutral {
      background: rgba(0,0,0,0.04);
      color: var(--color-text-muted);
      border-color: rgba(0,0,0,0.10);
    }

    /* ============================================
       WHY JOYSTAR
    ============================================ */
    .why {
      padding: 100px 0;
      background: var(--color-bg);
    }

    .why-header {
      margin-bottom: 64px;
    }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
    }
    @media (min-width: 600px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }

    .why-item {
      background: var(--color-surface);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-lg);
      padding: 40px 36px;
      transition: border-color var(--transition-med);
    }
    .why-item:hover { border-color: rgba(107,63,212,0.30); }

    .why-icon {
      width: 48px;
      height: 48px;
      margin-bottom: 24px;
      color: var(--color-accent-2);
    }

    .why-title {
      font-family: var(--font-display);
      font-size: var(--text-xl);
      font-weight: 700;
      color: var(--color-text);
      margin-bottom: 12px;
    }

    .why-desc {
      font-size: var(--text-sm);
      color: var(--color-text-muted);
      line-height: 1.75;
    }

    /* ============================================
       METRICS BAR
    ============================================ */
    .metrics {
      background: var(--color-surface);
      border-top: 1px solid var(--color-border);
      border-bottom: 1px solid var(--color-border);
      padding: 72px 0;
    }

    .metrics-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
    }
    @media (min-width: 768px) { .metrics-grid { grid-template-columns: repeat(4, 1fr); } }

    .metric-item {
      text-align: center;
    }

    .metric-number {
      font-family: var(--font-display);
      font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
      font-weight: 800;
      background: var(--color-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1.1;
      display: block;
    }

    .metric-label {
      font-size: var(--text-sm);
      color: var(--color-text-muted);
      margin-top: 8px;
      letter-spacing: 0.04em;
    }

    /* ============================================
       ANALYST RATINGS
    ============================================ */
    .ratings {
      padding: 100px 0;
      background: var(--color-bg);
    }

    .ratings-header {
      margin-bottom: 60px;
    }

    .ratings-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }
    @media (min-width: 768px) { .ratings-grid { grid-template-columns: repeat(2, 1fr); } }

    .rating-card {
      background: var(--color-surface-2);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-xl);
      padding: 44px 40px;
      transition: border-color var(--transition-med);
    }
    .rating-card:hover { border-color: rgba(22,163,74,0.20); }

    .rating-card-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 32px;
      flex-wrap: wrap;
      gap: 16px;
    }

    .rating-company {
      font-family: var(--font-display);
      font-size: var(--text-2xl);
      font-weight: 700;
      color: var(--color-text);
    }

    .rating-ticker {
      font-size: var(--text-sm);
      color: var(--color-text-muted);
      margin-top: 4px;
    }

    .rating-badge {
      padding: 6px 16px;
      border-radius: 20px;
      font-size: var(--text-xs);
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .rating-badge.buy {
      background: rgba(22,163,74,0.10);
      color: var(--color-green);
      border: 1px solid rgba(22,163,74,0.20);
    }

    .rating-upside {
      font-family: var(--font-display);
      font-size: var(--text-5xl);
      font-weight: 800;
      color: var(--color-green);
      line-height: 1;
      margin-bottom: 8px;
    }

    .rating-upside-label {
      font-size: var(--text-sm);
      color: var(--color-text-muted);
      margin-bottom: 24px;
    }

    .rating-score {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .rating-score-bar {
      flex: 1;
      height: 4px;
      background: var(--color-border);
      border-radius: 2px;
      overflow: hidden;
    }
    .rating-score-fill {
      height: 100%;
      border-radius: 2px;
      background: linear-gradient(90deg, var(--color-green), var(--color-accent-2));
      transition: width 1.5s cubic-bezier(0.4,0,0.2,1);
      width: 0;
    }
    .rating-score-fill.animated { width: var(--fill-width); }

    .rating-score-val {
      font-size: var(--text-sm);
      font-weight: 600;
      color: var(--color-text-muted);
      white-space: nowrap;
    }

    /* ============================================
       PHILOSOPHY FEATURE
    ============================================ */
    .philosophy {
      padding: 120px 0;
      position: relative;
      overflow: hidden;
      text-align: center;
    }
    .philosophy::before {
      content: '';
      position: absolute;
      inset: 0;
      background: conic-gradient(
        from 0deg at 50% 50%,
        rgba(107,63,212,0.05) 0deg,
        rgba(201,146,10,0.05) 90deg,
        rgba(22,163,74,0.04) 180deg,
        rgba(107,63,212,0.05) 270deg,
        rgba(107,63,212,0.05) 360deg
      );
      animation: conicRotate 25s linear infinite;
    }
    @keyframes conicRotate { to { transform: rotate(360deg); } }

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

    .philosophy-lines {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      margin-bottom: 48px;
    }

    .philosophy-line {
      font-family: var(--font-display);
      font-size: clamp(var(--text-4xl), 8vw, var(--text-6xl));
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -0.01em;
    }
    .philosophy-line:nth-child(1) { color: var(--color-text); }
    .philosophy-line:nth-child(2) {
      background: var(--color-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .philosophy-line:nth-child(3) { color: rgba(15,13,11,0.22); }

    .philosophy-sub {
      font-size: var(--text-lg);
      color: var(--color-text-muted);
      max-width: 540px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* ============================================
       CONTACT / CTA SECTION
    ============================================ */
    .contact {
      padding: 100px 0;
      background: var(--color-surface);
    }

    .contact-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .contact-header .section-title {
      font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
      max-width: 900px;
      margin: 0 auto 60px;
    }
    @media (min-width: 768px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }

    .contact-path {
      background: var(--color-surface-2);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-lg);
      padding: 40px;
      transition: border-color var(--transition-med), transform var(--transition-med);
    }
    .contact-path:hover {
      border-color: rgba(107,63,212,0.30);
      transform: translateY(-2px);
    }

    .contact-path-icon {
      width: 48px;
      height: 48px;
      border-radius: var(--radius-sm);
      background: rgba(107,63,212,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      color: var(--color-accent-2);
    }

    .contact-path-title {
      font-family: var(--font-display);
      font-size: var(--text-xl);
      font-weight: 700;
      color: var(--color-text);
      margin-bottom: 8px;
    }

    .contact-path-desc {
      font-size: var(--text-sm);
      color: var(--color-text-muted);
      line-height: 1.7;
      margin-bottom: 24px;
    }

    .contact-address {
      text-align: center;
      border-top: 1px solid var(--color-border);
      padding-top: 48px;
    }

    .contact-address-label {
      font-size: var(--text-xs);
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--color-text-muted);
      margin-bottom: 16px;
    }

    .contact-address-main {
      font-family: var(--font-display);
      font-size: var(--text-xl);
      font-weight: 600;
      color: var(--color-text);
      margin-bottom: 8px;
    }

    .contact-address-details {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px 24px;
      font-size: var(--text-sm);
      color: var(--color-text-muted);
    }

    .contact-address-details a {
      color: var(--color-text-muted);
      transition: color var(--transition-fast);
    }
    .contact-address-details a:hover { color: var(--color-accent-2); }

    .contact-divider {
      width: 1px;
      height: 16px;
      background: var(--color-border);
      display: inline-block;
      vertical-align: middle;
    }

    /* ============================================
       FOOTER
    ============================================ */
    .footer {
      background: var(--color-bg);
      border-top: 1px solid var(--color-border);
      padding: 64px 0 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
      padding-bottom: 64px;
    }
    @media (min-width: 600px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 900px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; } }

    .footer-tagline {
      font-size: var(--text-sm);
      color: var(--color-text-muted);
      line-height: 1.7;
      max-width: 280px;
    }

    .footer-col-title {
      font-size: var(--text-xs);
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--color-text-muted);
      margin-bottom: 20px;
    }

    .footer-col ul {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-col a {
      font-size: var(--text-sm);
      color: var(--color-text-muted);
      transition: color var(--transition-fast);
      position: relative;
      display: inline-block;
    }
    .footer-col a::after {
      content: '';
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--color-accent-2);
      transition: width var(--transition-med);
    }
    .footer-col a:hover { color: var(--color-text); }
    .footer-col a:hover::after { width: 100%; }

    .footer-bottom {
      border-top: 1px solid var(--color-border);
      padding: 24px 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
    }

    .footer-bottom p, .footer-bottom a {
      font-size: var(--text-xs);
      color: var(--color-text-muted);
    }
    .footer-bottom a:hover { color: var(--color-text); }

    .footer-legal {
      display: flex;
      gap: 20px;
    }

    /* ============================================
       SECTION SPACING HELPERS
    ============================================ */
    section { scroll-margin-top: 72px; }
.jc-nav { position:fixed; top:0; left:0; right:0; z-index:10000; transition:background 0.3s ease, border-color 0.2s ease; border-bottom:1px solid transparent; }
  .jc-nav.scrolled { background:rgba(255,255,255,0.94); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px); border-bottom-color:rgba(0,0,0,0.09); }
  .jc-nav-inner { display:flex; align-items:center; justify-content:space-between; height:72px; gap:24px; max-width:1200px; margin:0 auto; padding:0 40px; }
  .jc-nav-logo img { height:52px; width:auto; display:block; }
  .jc-nav-links { display:none; align-items:center; gap:36px; }
  @media(min-width:900px){ .jc-nav-links { display:flex; } }
  .jc-nav-links a { font-size:0.875rem; font-weight:500; color:#6b6560; text-decoration:none; transition:color 0.2s ease; position:relative; font-family:'Inter',sans-serif; }
  .jc-nav-links a::after { content:''; position:absolute; bottom:-3px; left:0; width:0; height:1px; background:#8b5cf6; transition:width 0.3s ease; }
  .jc-nav-links a:hover { color:#0f0d0b; } .jc-nav-links a:hover::after { width:100%; }
  .jc-nav-actions { display:none; align-items:center; gap:12px; }
  @media(min-width:900px){ .jc-nav-actions { display:flex; } }
  .jc-btn { display:inline-flex; align-items:center; padding:9px 20px; border-radius:6px; font-family:'Inter',sans-serif; font-size:0.75rem; font-weight:600; text-decoration:none; cursor:pointer; transition:background 0.2s ease, transform 0.2s ease, color 0.2s ease, border-color 0.2s ease; border:none; }
  .jc-btn-primary { background:#6b3fd4; color:#fff; } .jc-btn-primary:hover { background:#8b5cf6; transform:scale(1.02); }
  .jc-btn-ghost { background:transparent; color:#0f0d0b; border:1px solid rgba(0,0,0,0.18); } .jc-btn-ghost:hover { border-color:#6b3fd4; color:#6b3fd4; transform:scale(1.02); }
  .jc-hamburger { display:flex; flex-direction:column; gap:5px; cursor:pointer; padding:8px; background:none; border:none; }
  @media(min-width:900px){ .jc-hamburger { display:none; } }
  .jc-hamburger span { display:block; width:22px; height:2px; background:#0f0d0b; border-radius:2px; transition:transform 0.3s ease, opacity 0.2s ease; }
  .jc-hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
  .jc-hamburger.open span:nth-child(2) { opacity:0; }
  .jc-hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
  .jc-mobile-menu { display:none; position:fixed; inset:0; background:#fff; z-index:10001; flex-direction:column; align-items:center; justify-content:center; gap:40px; }
  .jc-mobile-menu.open { display:flex; }
  .jc-mobile-menu a { font-family:'Playfair Display',Georgia,serif; font-size:2rem; font-weight:700; color:#6b6560; text-decoration:none; transition:color 0.2s ease; }
  .jc-mobile-menu a:hover { color:#0f0d0b; }
  .jc-mobile-actions { display:flex; flex-direction:column; align-items:center; gap:12px; margin-top:16px; }

  /* ── Contact Modal ─────────────────────────────────── */
  .jcm-overlay {
    display:none; position:fixed; inset:0; z-index:2000;
    background:rgba(15,13,11,0.55); backdrop-filter:blur(4px); -webkit-backdrop-filter:blur(4px);
    align-items:center; justify-content:center; padding:20px;
  }
  .jcm-overlay.open { display:flex; }
  .jcm-card {
    background:#fff; border-radius:20px; width:100%; max-width:480px;
    box-shadow:0 20px 60px rgba(0,0,0,0.18); overflow:hidden;
    animation:jcmSlideIn 0.28s cubic-bezier(0.34,1.26,0.64,1) both;
  }
  @keyframes jcmSlideIn { from { opacity:0; transform:translateY(24px) scale(0.97); } to { opacity:1; transform:none; } }
  .jcm-head {
    background:linear-gradient(135deg,#6b3fd4 0%,#8b5cf6 100%);
    padding:24px 28px 20px; display:flex; align-items:flex-start; justify-content:space-between;
  }
  .jcm-head-text strong { display:block; font-family:'Playfair Display',Georgia,serif; font-size:1.25rem; font-weight:700; color:#fff; line-height:1.2; }
  .jcm-head-text span { font-size:0.8125rem; color:rgba(255,255,255,0.72); margin-top:4px; display:block; }
  .jcm-close { background:none; border:none; cursor:pointer; padding:2px; line-height:0; flex-shrink:0; margin-top:2px; }
  .jcm-close svg { width:20px; height:20px; color:rgba(255,255,255,0.75); transition:color 0.2s; }
  .jcm-close:hover svg { color:#fff; }
  .jcm-body { padding:28px; }
  .jcm-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
  .jcm-group { display:flex; flex-direction:column; gap:7px; margin-bottom:16px; }
  .jcm-group.full { grid-column:1/-1; }
  .jcm-label { font-size:0.75rem; font-weight:600; color:#0f0d0b; letter-spacing:0.02em; font-family:'Inter',sans-serif; }
  .jcm-label .opt { font-weight:400; color:#6b6560; margin-left:3px; }
  .jcm-input {
    width:100%; padding:11px 14px; border:1px solid rgba(0,0,0,0.12); border-radius:6px;
    font-family:'Inter',sans-serif; font-size:0.875rem; color:#0f0d0b; background:#fff;
    outline:none; transition:border-color 0.2s ease, box-shadow 0.2s ease;
  }
  .jcm-input:focus { border-color:#8b5cf6; box-shadow:0 0 0 3px rgba(139,92,246,0.12); }
  .jcm-consent { display:flex; flex-direction:column; gap:14px; margin-bottom:20px; }
  .jcm-check { display:flex; align-items:flex-start; gap:10px; }
  .jcm-check input[type="checkbox"] { width:16px; height:16px; min-width:16px; margin-top:3px; accent-color:#6b3fd4; cursor:pointer; flex-shrink:0; }
  .jcm-check-content { display:flex; flex-direction:column; gap:3px; }
  .jcm-consent-body { font-size:0.8125rem; color:#6b6560; line-height:1.5; font-family:'Inter',sans-serif; }
  .jcm-consent-body.collapsed { display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
  .jcm-consent-toggle { background:none; border:none; padding:0; font-size:0.8125rem; color:#8b5cf6; cursor:pointer; font-family:'Inter',sans-serif; font-weight:500; text-align:left; }
  .jcm-submit {
    width:100%; padding:13px; background:#6b3fd4; color:#fff; border:none; border-radius:6px;
    font-family:'Inter',sans-serif; font-size:0.875rem; font-weight:600; cursor:pointer;
    transition:background 0.2s ease, transform 0.15s ease;
  }
  .jcm-submit:hover { background:#8b5cf6; transform:scale(1.01); }
  .jcm-submit:active { transform:scale(0.98); }
  .jcm-submit:disabled { background:#c4b5fd; cursor:not-allowed; transform:none; }
  .jcm-thanks { display:none; padding:40px 28px; text-align:center; }
  .jcm-thanks svg { width:44px; height:44px; color:#6b3fd4; margin:0 auto 14px; }
  .jcm-thanks strong { display:block; font-family:'Playfair Display',Georgia,serif; font-size:1.25rem; font-weight:700; color:#0f0d0b; margin-bottom:8px; }
  .jcm-thanks p { font-size:0.875rem; color:#6b6560; line-height:1.6; }
.jc-footer { background:#ffffff; border-top:1px solid rgba(0,0,0,0.09); padding:64px 0 0; font-family:'Inter',sans-serif; }
  .jc-footer-inner { width:100%; max-width:1200px; margin:0 auto; padding:0 40px; }
  .jc-footer-grid { display:grid; grid-template-columns:1fr; gap:48px; padding-bottom:64px; }
  @media(min-width:600px){ .jc-footer-grid { grid-template-columns:repeat(2,1fr); } }
  @media(min-width:900px){ .jc-footer-grid { grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; } }
  .jc-footer-logo { display:block; margin-bottom:16px; }
  .jc-footer-logo img { height:52px; width:auto; display:block; }
  .jc-footer-tagline { font-size:0.875rem; color:#6b6560; line-height:1.7; max-width:280px; }
  .jc-footer-col-title { font-size:0.75rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; color:#6b6560; margin-bottom:20px; }
  .jc-footer-col ul { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:12px; }
  .jc-footer-col a { font-size:0.875rem; color:#6b6560; text-decoration:none; transition:color 0.2s ease; }
  .jc-footer-col a:hover { color:#0f0d0b; }
  .jc-footer-bottom { border-top:1px solid rgba(0,0,0,0.09); padding:24px 0; display:flex; flex-wrap:wrap; justify-content:space-between; align-items:center; gap:12px; }
  .jc-footer-bottom p, .jc-footer-bottom a { font-size:0.75rem; color:#6b6560; text-decoration:none; }
  .jc-footer-bottom a:hover { color:#0f0d0b; }
  .jc-footer-legal { display:flex; gap:20px; }
html{overflow-x:hidden}

/* Source: /var/www/joystar/about-us.html */
:root {
      --color-bg:         #ffffff;
      --color-surface:    #f5f5f5;
      --color-surface-2:  #ebebeb;
      --color-border:     rgba(0,0,0,0.09);
      --color-accent:     #6b3fd4;
      --color-accent-2:   #8b5cf6;
      --color-gold:       #c9920a;
      --color-green:      #16a34a;
      --color-text:       #0f0d0b;
      --color-text-muted: #6b6560;
      --color-gradient:   linear-gradient(135deg, #6b3fd4 0%, #c9920a 100%);
      --font-display: 'Playfair Display', Georgia, serif;
      --font-body:    'Inter', sans-serif;
      --text-xs:   0.75rem; --text-sm:   0.875rem; --text-base: 1rem;
      --text-lg:   1.125rem; --text-xl:  1.25rem;  --text-2xl:  1.5rem;
      --text-3xl:  2rem;    --text-4xl:  2.75rem;  --text-5xl:  3.75rem;
      --radius-sm: 6px; --radius-md: 12px; --radius-lg: 20px;
      --transition-fast: 0.2s ease; --transition-med: 0.3s cubic-bezier(0.4,0,0.2,1);
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body { background: var(--color-bg); color: var(--color-text); font-family: var(--font-body); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }
    ul, ol { list-style: none; }
    .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    @media (min-width: 768px)  { .container { padding: 0 40px; } }
    @media (min-width: 1200px) { .container { padding: 0 60px; } }
    .section-label { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-accent-2); display: inline-block; margin-bottom: 16px; }
    .section-title { font-family: var(--font-display); font-size: var(--text-3xl); font-weight: 700; line-height: 1.15; color: var(--color-text); }
    @media (min-width: 768px) { .section-title { font-size: var(--text-4xl); } }
    .section-sub { font-size: var(--text-lg); color: var(--color-text-muted); margin-top: 12px; line-height: 1.7; }
    .reveal { opacity: 1; transform: translateY(0); transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1); }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-d1 { transition-delay: 0.05s; } .reveal-d2 { transition-delay: 0.12s; } .reveal-d3 { transition-delay: 0.19s; }
    .btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: var(--radius-sm); font-family: var(--font-body); font-size: var(--text-sm); font-weight: 600; letter-spacing: 0.02em; transition: background var(--transition-fast), transform var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast); cursor: pointer; }
    .btn:active { transform: scale(0.98); }
    .btn-primary { background: var(--color-accent); color: #fff; }
    .btn-primary:hover { background: var(--color-accent-2); transform: scale(1.02); }
    .btn-ghost { background: transparent; color: var(--color-text); border: 1px solid rgba(0,0,0,0.18); }
    .btn-ghost:hover { border-color: var(--color-accent); color: var(--color-accent); transform: scale(1.02); }
    .btn-sm { padding: 9px 20px; font-size: var(--text-xs); }
    /* PAGE HERO */
    .page-hero { padding: 200px 0 80px; background: var(--color-bg); position: relative; overflow: hidden; }
    .page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 15% 40%, rgba(107,63,212,0.07) 0%, transparent 60%), radial-gradient(ellipse 50% 50% at 85% 60%, rgba(201,146,10,0.06) 0%, transparent 55%); pointer-events: none; }
    .page-hero-label { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-accent-2); margin-bottom: 20px; }
    .page-hero-title { font-family: var(--font-display); font-size: var(--text-4xl); font-weight: 800; line-height: 1.1; color: var(--color-text); max-width: 700px; }
    @media (min-width: 768px) { .page-hero-title { font-size: var(--text-5xl); } }
    .page-hero-sub { font-size: var(--text-xl); color: var(--color-text-muted); margin-top: 20px; line-height: 1.7; max-width: 600px; }
    /* CONTENT */
    .content-section { padding: 80px 0; }
    .content-section.surface { background: var(--color-surface); }
    .content-section.surface-2 { background: var(--color-surface-2); }
    .content-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
    @media (min-width: 768px) { .content-grid { grid-template-columns: 1fr 1fr; } }
    .content-grid.thirds { grid-template-columns: 1fr; }
    @media (min-width: 768px) { .content-grid.thirds { grid-template-columns: repeat(3, 1fr); } }
    .content-block h3 { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 700; color: var(--color-text); margin-bottom: 16px; line-height: 1.25; }
    .content-block p { color: var(--color-text-muted); line-height: 1.75; }
    .content-block p + p { margin-top: 14px; }
    .content-block ul { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
    .content-block ul li { color: var(--color-text-muted); padding-left: 20px; position: relative; line-height: 1.65; }
    .content-block ul li::before { content: '—'; position: absolute; left: 0; color: var(--color-accent-2); font-size: var(--text-sm); }
    .card { background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 36px; transition: box-shadow var(--transition-med), transform var(--transition-med); }
    .card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-2px); }
    .card-icon { width: 44px; height: 44px; border-radius: var(--radius-md); background: var(--color-gradient); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
    .card-icon svg { color: white; }
    .card h3 { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; color: var(--color-text); margin-bottom: 12px; }
    .card p { color: var(--color-text-muted); font-size: var(--text-sm); line-height: 1.7; }
    .quote-block { border-left: 3px solid var(--color-accent-2); padding: 24px 32px; background: var(--color-surface); border-radius: 0 var(--radius-md) var(--radius-md) 0; margin: 32px 0; }
    .quote-block p { font-family: var(--font-display); font-size: var(--text-xl); font-style: italic; color: var(--color-text); line-height: 1.55; }
    .section-header { max-width: 700px; margin-bottom: 56px; }
    /* CTA SECTION */
    .cta-section { padding: 80px 0; background: var(--color-text); }
    .cta-section h2 { font-family: var(--font-display); font-size: var(--text-3xl); font-weight: 700; color: white; line-height: 1.2; }
    @media (min-width: 768px) { .cta-section h2 { font-size: var(--text-4xl); } }
    .cta-section p { color: rgba(255,255,255,0.65); font-size: var(--text-lg); margin-top: 16px; max-width: 520px; }
    .cta-inner { display: flex; flex-direction: column; gap: 32px; }
    @media (min-width: 768px) { .cta-inner { flex-direction: row; align-items: center; justify-content: space-between; } }
    .cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
    .btn-white { background: white; color: var(--color-text); }
    .btn-white:hover { background: var(--color-surface); transform: scale(1.02); }
    .btn-outline-white { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.3); }
    .btn-outline-white:hover { border-color: white; transform: scale(1.02); }
    /* FOOTER */
    .footer { background: var(--color-bg); border-top: 1px solid var(--color-border); padding: 64px 0 0; }
    .footer-grid { display: grid; grid-template-columns: 1fr; gap: 48px; padding-bottom: 64px; }
    @media (min-width: 600px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 900px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; } }
    .footer-tagline { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.7; max-width: 280px; }
    .footer-col-title { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-text-muted); margin-bottom: 20px; }
    .footer-col ul { display: flex; flex-direction: column; gap: 12px; }
    .footer-col a { font-size: var(--text-sm); color: var(--color-text-muted); transition: color var(--transition-fast); position: relative; display: inline-block; }
    .footer-col a::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 0; height: 1px; background: var(--color-accent-2); transition: width var(--transition-med); }
    .footer-col a:hover { color: var(--color-text); }
    .footer-col a:hover::after { width: 100%; }
    .footer-bottom { border-top: 1px solid var(--color-border); padding: 24px 0; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px; }
    .footer-bottom p, .footer-bottom a { font-size: var(--text-xs); color: var(--color-text-muted); }
    .footer-bottom a:hover { color: var(--color-text); }
    .footer-legal { display: flex; gap: 20px; }
    section { scroll-margin-top: 72px; }
.jc-nav { position:fixed; top:0; left:0; right:0; z-index:10000; transition:background 0.3s ease, border-color 0.2s ease; border-bottom:1px solid transparent; }
  .jc-nav.scrolled { background:rgba(255,255,255,0.94); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px); border-bottom-color:rgba(0,0,0,0.09); }
  .jc-nav-inner { display:flex; align-items:center; justify-content:space-between; height:72px; gap:24px; max-width:1200px; margin:0 auto; padding:0 40px; }
  .jc-nav-logo img { height:52px; width:auto; display:block; }
  .jc-nav-links { display:none; align-items:center; gap:36px; }
  @media(min-width:900px){ .jc-nav-links { display:flex; } }
  .jc-nav-links a { font-size:0.875rem; font-weight:500; color:#6b6560; text-decoration:none; transition:color 0.2s ease; position:relative; font-family:'Inter',sans-serif; }
  .jc-nav-links a::after { content:''; position:absolute; bottom:-3px; left:0; width:0; height:1px; background:#8b5cf6; transition:width 0.3s ease; }
  .jc-nav-links a:hover { color:#0f0d0b; } .jc-nav-links a:hover::after { width:100%; }
  .jc-nav-actions { display:none; align-items:center; gap:12px; }
  @media(min-width:900px){ .jc-nav-actions { display:flex; } }
  .jc-btn { display:inline-flex; align-items:center; padding:9px 20px; border-radius:6px; font-family:'Inter',sans-serif; font-size:0.75rem; font-weight:600; text-decoration:none; cursor:pointer; transition:background 0.2s ease, transform 0.2s ease, color 0.2s ease, border-color 0.2s ease; border:none; }
  .jc-btn-primary { background:#6b3fd4; color:#fff; } .jc-btn-primary:hover { background:#8b5cf6; transform:scale(1.02); }
  .jc-btn-ghost { background:transparent; color:#0f0d0b; border:1px solid rgba(0,0,0,0.18); } .jc-btn-ghost:hover { border-color:#6b3fd4; color:#6b3fd4; transform:scale(1.02); }
  .jc-hamburger { display:flex; flex-direction:column; gap:5px; cursor:pointer; padding:8px; background:none; border:none; }
  @media(min-width:900px){ .jc-hamburger { display:none; } }
  .jc-hamburger span { display:block; width:22px; height:2px; background:#0f0d0b; border-radius:2px; transition:transform 0.3s ease, opacity 0.2s ease; }
  .jc-hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
  .jc-hamburger.open span:nth-child(2) { opacity:0; }
  .jc-hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
  .jc-mobile-menu { display:none; position:fixed; inset:0; background:#fff; z-index:10001; flex-direction:column; align-items:center; justify-content:center; gap:40px; }
  .jc-mobile-menu.open { display:flex; }
  .jc-mobile-menu a { font-family:'Playfair Display',Georgia,serif; font-size:2rem; font-weight:700; color:#6b6560; text-decoration:none; transition:color 0.2s ease; }
  .jc-mobile-menu a:hover { color:#0f0d0b; }
  .jc-mobile-actions { display:flex; flex-direction:column; align-items:center; gap:12px; margin-top:16px; }

  /* ── Contact Modal ─────────────────────────────────── */
  .jcm-overlay {
    display:none; position:fixed; inset:0; z-index:2000;
    background:rgba(15,13,11,0.55); backdrop-filter:blur(4px); -webkit-backdrop-filter:blur(4px);
    align-items:center; justify-content:center; padding:20px;
  }
  .jcm-overlay.open { display:flex; }
  .jcm-card {
    background:#fff; border-radius:20px; width:100%; max-width:480px;
    box-shadow:0 20px 60px rgba(0,0,0,0.18); overflow:hidden;
    animation:jcmSlideIn 0.28s cubic-bezier(0.34,1.26,0.64,1) both;
  }
  @keyframes jcmSlideIn { from { opacity:0; transform:translateY(24px) scale(0.97); } to { opacity:1; transform:none; } }
  .jcm-head {
    background:linear-gradient(135deg,#6b3fd4 0%,#8b5cf6 100%);
    padding:24px 28px 20px; display:flex; align-items:flex-start; justify-content:space-between;
  }
  .jcm-head-text strong { display:block; font-family:'Playfair Display',Georgia,serif; font-size:1.25rem; font-weight:700; color:#fff; line-height:1.2; }
  .jcm-head-text span { font-size:0.8125rem; color:rgba(255,255,255,0.72); margin-top:4px; display:block; }
  .jcm-close { background:none; border:none; cursor:pointer; padding:2px; line-height:0; flex-shrink:0; margin-top:2px; }
  .jcm-close svg { width:20px; height:20px; color:rgba(255,255,255,0.75); transition:color 0.2s; }
  .jcm-close:hover svg { color:#fff; }
  .jcm-body { padding:28px; }
  .jcm-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
  .jcm-group { display:flex; flex-direction:column; gap:7px; margin-bottom:16px; }
  .jcm-group.full { grid-column:1/-1; }
  .jcm-label { font-size:0.75rem; font-weight:600; color:#0f0d0b; letter-spacing:0.02em; font-family:'Inter',sans-serif; }
  .jcm-label .opt { font-weight:400; color:#6b6560; margin-left:3px; }
  .jcm-input {
    width:100%; padding:11px 14px; border:1px solid rgba(0,0,0,0.12); border-radius:6px;
    font-family:'Inter',sans-serif; font-size:0.875rem; color:#0f0d0b; background:#fff;
    outline:none; transition:border-color 0.2s ease, box-shadow 0.2s ease;
  }
  .jcm-input:focus { border-color:#8b5cf6; box-shadow:0 0 0 3px rgba(139,92,246,0.12); }
  .jcm-consent { display:flex; flex-direction:column; gap:14px; margin-bottom:20px; }
  .jcm-check { display:flex; align-items:flex-start; gap:10px; }
  .jcm-check input[type="checkbox"] { width:16px; height:16px; min-width:16px; margin-top:3px; accent-color:#6b3fd4; cursor:pointer; flex-shrink:0; }
  .jcm-check-content { display:flex; flex-direction:column; gap:3px; }
  .jcm-consent-body { font-size:0.8125rem; color:#6b6560; line-height:1.5; font-family:'Inter',sans-serif; }
  .jcm-consent-body.collapsed { display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
  .jcm-consent-toggle { background:none; border:none; padding:0; font-size:0.8125rem; color:#8b5cf6; cursor:pointer; font-family:'Inter',sans-serif; font-weight:500; text-align:left; }
  .jcm-submit {
    width:100%; padding:13px; background:#6b3fd4; color:#fff; border:none; border-radius:6px;
    font-family:'Inter',sans-serif; font-size:0.875rem; font-weight:600; cursor:pointer;
    transition:background 0.2s ease, transform 0.15s ease;
  }
  .jcm-submit:hover { background:#8b5cf6; transform:scale(1.01); }
  .jcm-submit:active { transform:scale(0.98); }
  .jcm-submit:disabled { background:#c4b5fd; cursor:not-allowed; transform:none; }
  .jcm-thanks { display:none; padding:40px 28px; text-align:center; }
  .jcm-thanks svg { width:44px; height:44px; color:#6b3fd4; margin:0 auto 14px; }
  .jcm-thanks strong { display:block; font-family:'Playfair Display',Georgia,serif; font-size:1.25rem; font-weight:700; color:#0f0d0b; margin-bottom:8px; }
  .jcm-thanks p { font-size:0.875rem; color:#6b6560; line-height:1.6; }
.jc-footer { background:#ffffff; border-top:1px solid rgba(0,0,0,0.09); padding:64px 0 0; font-family:'Inter',sans-serif; }
  .jc-footer-inner { width:100%; max-width:1200px; margin:0 auto; padding:0 40px; }
  .jc-footer-grid { display:grid; grid-template-columns:1fr; gap:48px; padding-bottom:64px; }
  @media(min-width:600px){ .jc-footer-grid { grid-template-columns:repeat(2,1fr); } }
  @media(min-width:900px){ .jc-footer-grid { grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; } }
  .jc-footer-logo { display:block; margin-bottom:16px; }
  .jc-footer-logo img { height:52px; width:auto; display:block; }
  .jc-footer-tagline { font-size:0.875rem; color:#6b6560; line-height:1.7; max-width:280px; }
  .jc-footer-col-title { font-size:0.75rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; color:#6b6560; margin-bottom:20px; }
  .jc-footer-col ul { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:12px; }
  .jc-footer-col a { font-size:0.875rem; color:#6b6560; text-decoration:none; transition:color 0.2s ease; }
  .jc-footer-col a:hover { color:#0f0d0b; }
  .jc-footer-bottom { border-top:1px solid rgba(0,0,0,0.09); padding:24px 0; display:flex; flex-wrap:wrap; justify-content:space-between; align-items:center; gap:12px; }
  .jc-footer-bottom p, .jc-footer-bottom a { font-size:0.75rem; color:#6b6560; text-decoration:none; }
  .jc-footer-bottom a:hover { color:#0f0d0b; }
  .jc-footer-legal { display:flex; gap:20px; }
html{overflow-x:hidden}

/* Source: /var/www/joystar/our-focus.html */
:root {
      --color-bg:         #ffffff;
      --color-surface:    #f5f5f5;
      --color-surface-2:  #ebebeb;
      --color-border:     rgba(0,0,0,0.09);
      --color-accent:     #6b3fd4;
      --color-accent-2:   #8b5cf6;
      --color-gold:       #c9920a;
      --color-green:      #16a34a;
      --color-text:       #0f0d0b;
      --color-text-muted: #6b6560;
      --color-gradient:   linear-gradient(135deg, #6b3fd4 0%, #c9920a 100%);
      --font-display: 'Playfair Display', Georgia, serif;
      --font-body:    'Inter', sans-serif;
      --text-xs:   0.75rem; --text-sm:   0.875rem; --text-base: 1rem;
      --text-lg:   1.125rem; --text-xl:  1.25rem;  --text-2xl:  1.5rem;
      --text-3xl:  2rem;    --text-4xl:  2.75rem;  --text-5xl:  3.75rem;
      --radius-sm: 6px; --radius-md: 12px; --radius-lg: 20px;
      --transition-fast: 0.2s ease; --transition-med: 0.3s cubic-bezier(0.4,0,0.2,1);
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body { background: var(--color-bg); color: var(--color-text); font-family: var(--font-body); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }
    ul, ol { list-style: none; }
    .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    @media (min-width: 768px)  { .container { padding: 0 40px; } }
    @media (min-width: 1200px) { .container { padding: 0 60px; } }
    .section-label { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-accent-2); display: inline-block; margin-bottom: 16px; }
    .section-title { font-family: var(--font-display); font-size: var(--text-3xl); font-weight: 700; line-height: 1.15; color: var(--color-text); }
    @media (min-width: 768px) { .section-title { font-size: var(--text-4xl); } }
    .section-sub { font-size: var(--text-lg); color: var(--color-text-muted); margin-top: 12px; line-height: 1.7; }
    .reveal { opacity: 1; transform: translateY(0); transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1); }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-d1 { transition-delay: 0.05s; } .reveal-d2 { transition-delay: 0.12s; } .reveal-d3 { transition-delay: 0.19s; }
    .btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: var(--radius-sm); font-family: var(--font-body); font-size: var(--text-sm); font-weight: 600; letter-spacing: 0.02em; transition: background var(--transition-fast), transform var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast); cursor: pointer; }
    .btn:active { transform: scale(0.98); }
    .btn-primary { background: var(--color-accent); color: #fff; }
    .btn-primary:hover { background: var(--color-accent-2); transform: scale(1.02); }
    .btn-ghost { background: transparent; color: var(--color-text); border: 1px solid rgba(0,0,0,0.18); }
    .btn-ghost:hover { border-color: var(--color-accent); color: var(--color-accent); transform: scale(1.02); }
    .btn-sm { padding: 9px 20px; font-size: var(--text-xs); }
    /* PAGE HERO */
    .page-hero { padding: 200px 0 80px; background: var(--color-bg); position: relative; overflow: hidden; }
    .page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 15% 40%, rgba(107,63,212,0.07) 0%, transparent 60%), radial-gradient(ellipse 50% 50% at 85% 60%, rgba(201,146,10,0.06) 0%, transparent 55%); pointer-events: none; }
    .page-hero-label { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-accent-2); margin-bottom: 20px; }
    .page-hero-title { font-family: var(--font-display); font-size: var(--text-4xl); font-weight: 800; line-height: 1.1; color: var(--color-text); max-width: 700px; }
    @media (min-width: 768px) { .page-hero-title { font-size: var(--text-5xl); } }
    .page-hero-sub { font-size: var(--text-xl); color: var(--color-text-muted); margin-top: 20px; line-height: 1.7; max-width: 600px; }
    /* CONTENT */
    .content-section { padding: 80px 0; }
    .content-section.surface { background: var(--color-surface); }
    .content-section.surface-2 { background: var(--color-surface-2); }
    .content-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
    @media (min-width: 768px) { .content-grid { grid-template-columns: 1fr 1fr; } }
    .content-grid.thirds { grid-template-columns: 1fr; }
    @media (min-width: 768px) { .content-grid.thirds { grid-template-columns: repeat(3, 1fr); } }
    .content-block h3 { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 700; color: var(--color-text); margin-bottom: 16px; line-height: 1.25; }
    .content-block p { color: var(--color-text-muted); line-height: 1.75; }
    .content-block p + p { margin-top: 14px; }
    .content-block ul { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
    .content-block ul li { color: var(--color-text-muted); padding-left: 20px; position: relative; line-height: 1.65; }
    .content-block ul li::before { content: '—'; position: absolute; left: 0; color: var(--color-accent-2); font-size: var(--text-sm); }
    .card { background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 36px; transition: box-shadow var(--transition-med), transform var(--transition-med); }
    .card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-2px); }
    .card-icon { width: 44px; height: 44px; border-radius: var(--radius-md); background: var(--color-gradient); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
    .card-icon svg { color: white; }
    .card h3 { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; color: var(--color-text); margin-bottom: 12px; }
    .card p { color: var(--color-text-muted); font-size: var(--text-sm); line-height: 1.7; }
    .quote-block { border-left: 3px solid var(--color-accent-2); padding: 24px 32px; background: var(--color-surface); border-radius: 0 var(--radius-md) var(--radius-md) 0; margin: 32px 0; }
    .quote-block p { font-family: var(--font-display); font-size: var(--text-xl); font-style: italic; color: var(--color-text); line-height: 1.55; }
    .section-header { max-width: 700px; margin-bottom: 56px; }
    /* CTA SECTION */
    .cta-section { padding: 80px 0; background: var(--color-text); }
    .cta-section h2 { font-family: var(--font-display); font-size: var(--text-3xl); font-weight: 700; color: white; line-height: 1.2; }
    @media (min-width: 768px) { .cta-section h2 { font-size: var(--text-4xl); } }
    .cta-section p { color: rgba(255,255,255,0.65); font-size: var(--text-lg); margin-top: 16px; max-width: 520px; }
    .cta-inner { display: flex; flex-direction: column; gap: 32px; }
    @media (min-width: 768px) { .cta-inner { flex-direction: row; align-items: center; justify-content: space-between; } }
    .cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
    .btn-white { background: white; color: var(--color-text); }
    .btn-white:hover { background: var(--color-surface); transform: scale(1.02); }
    .btn-outline-white { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.3); }
    .btn-outline-white:hover { border-color: white; transform: scale(1.02); }
    /* FOOTER */
    .footer { background: var(--color-bg); border-top: 1px solid var(--color-border); padding: 64px 0 0; }
    .footer-grid { display: grid; grid-template-columns: 1fr; gap: 48px; padding-bottom: 64px; }
    @media (min-width: 600px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 900px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; } }
    .footer-tagline { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.7; max-width: 280px; }
    .footer-col-title { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-text-muted); margin-bottom: 20px; }
    .footer-col ul { display: flex; flex-direction: column; gap: 12px; }
    .footer-col a { font-size: var(--text-sm); color: var(--color-text-muted); transition: color var(--transition-fast); position: relative; display: inline-block; }
    .footer-col a::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 0; height: 1px; background: var(--color-accent-2); transition: width var(--transition-med); }
    .footer-col a:hover { color: var(--color-text); }
    .footer-col a:hover::after { width: 100%; }
    .footer-bottom { border-top: 1px solid var(--color-border); padding: 24px 0; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px; }
    .footer-bottom p, .footer-bottom a { font-size: var(--text-xs); color: var(--color-text-muted); }
    .footer-bottom a:hover { color: var(--color-text); }
    .footer-legal { display: flex; gap: 20px; }
    section { scroll-margin-top: 72px; }
.jc-nav { position:fixed; top:0; left:0; right:0; z-index:10000; transition:background 0.3s ease, border-color 0.2s ease; border-bottom:1px solid transparent; }
  .jc-nav.scrolled { background:rgba(255,255,255,0.94); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px); border-bottom-color:rgba(0,0,0,0.09); }
  .jc-nav-inner { display:flex; align-items:center; justify-content:space-between; height:72px; gap:24px; max-width:1200px; margin:0 auto; padding:0 40px; }
  .jc-nav-logo img { height:52px; width:auto; display:block; }
  .jc-nav-links { display:none; align-items:center; gap:36px; }
  @media(min-width:900px){ .jc-nav-links { display:flex; } }
  .jc-nav-links a { font-size:0.875rem; font-weight:500; color:#6b6560; text-decoration:none; transition:color 0.2s ease; position:relative; font-family:'Inter',sans-serif; }
  .jc-nav-links a::after { content:''; position:absolute; bottom:-3px; left:0; width:0; height:1px; background:#8b5cf6; transition:width 0.3s ease; }
  .jc-nav-links a:hover { color:#0f0d0b; } .jc-nav-links a:hover::after { width:100%; }
  .jc-nav-actions { display:none; align-items:center; gap:12px; }
  @media(min-width:900px){ .jc-nav-actions { display:flex; } }
  .jc-btn { display:inline-flex; align-items:center; padding:9px 20px; border-radius:6px; font-family:'Inter',sans-serif; font-size:0.75rem; font-weight:600; text-decoration:none; cursor:pointer; transition:background 0.2s ease, transform 0.2s ease, color 0.2s ease, border-color 0.2s ease; border:none; }
  .jc-btn-primary { background:#6b3fd4; color:#fff; } .jc-btn-primary:hover { background:#8b5cf6; transform:scale(1.02); }
  .jc-btn-ghost { background:transparent; color:#0f0d0b; border:1px solid rgba(0,0,0,0.18); } .jc-btn-ghost:hover { border-color:#6b3fd4; color:#6b3fd4; transform:scale(1.02); }
  .jc-hamburger { display:flex; flex-direction:column; gap:5px; cursor:pointer; padding:8px; background:none; border:none; }
  @media(min-width:900px){ .jc-hamburger { display:none; } }
  .jc-hamburger span { display:block; width:22px; height:2px; background:#0f0d0b; border-radius:2px; transition:transform 0.3s ease, opacity 0.2s ease; }
  .jc-hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
  .jc-hamburger.open span:nth-child(2) { opacity:0; }
  .jc-hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
  .jc-mobile-menu { display:none; position:fixed; inset:0; background:#fff; z-index:10001; flex-direction:column; align-items:center; justify-content:center; gap:40px; }
  .jc-mobile-menu.open { display:flex; }
  .jc-mobile-menu a { font-family:'Playfair Display',Georgia,serif; font-size:2rem; font-weight:700; color:#6b6560; text-decoration:none; transition:color 0.2s ease; }
  .jc-mobile-menu a:hover { color:#0f0d0b; }
  .jc-mobile-actions { display:flex; flex-direction:column; align-items:center; gap:12px; margin-top:16px; }

  /* ── Contact Modal ─────────────────────────────────── */
  .jcm-overlay {
    display:none; position:fixed; inset:0; z-index:2000;
    background:rgba(15,13,11,0.55); backdrop-filter:blur(4px); -webkit-backdrop-filter:blur(4px);
    align-items:center; justify-content:center; padding:20px;
  }
  .jcm-overlay.open { display:flex; }
  .jcm-card {
    background:#fff; border-radius:20px; width:100%; max-width:480px;
    box-shadow:0 20px 60px rgba(0,0,0,0.18); overflow:hidden;
    animation:jcmSlideIn 0.28s cubic-bezier(0.34,1.26,0.64,1) both;
  }
  @keyframes jcmSlideIn { from { opacity:0; transform:translateY(24px) scale(0.97); } to { opacity:1; transform:none; } }
  .jcm-head {
    background:linear-gradient(135deg,#6b3fd4 0%,#8b5cf6 100%);
    padding:24px 28px 20px; display:flex; align-items:flex-start; justify-content:space-between;
  }
  .jcm-head-text strong { display:block; font-family:'Playfair Display',Georgia,serif; font-size:1.25rem; font-weight:700; color:#fff; line-height:1.2; }
  .jcm-head-text span { font-size:0.8125rem; color:rgba(255,255,255,0.72); margin-top:4px; display:block; }
  .jcm-close { background:none; border:none; cursor:pointer; padding:2px; line-height:0; flex-shrink:0; margin-top:2px; }
  .jcm-close svg { width:20px; height:20px; color:rgba(255,255,255,0.75); transition:color 0.2s; }
  .jcm-close:hover svg { color:#fff; }
  .jcm-body { padding:28px; }
  .jcm-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
  .jcm-group { display:flex; flex-direction:column; gap:7px; margin-bottom:16px; }
  .jcm-group.full { grid-column:1/-1; }
  .jcm-label { font-size:0.75rem; font-weight:600; color:#0f0d0b; letter-spacing:0.02em; font-family:'Inter',sans-serif; }
  .jcm-label .opt { font-weight:400; color:#6b6560; margin-left:3px; }
  .jcm-input {
    width:100%; padding:11px 14px; border:1px solid rgba(0,0,0,0.12); border-radius:6px;
    font-family:'Inter',sans-serif; font-size:0.875rem; color:#0f0d0b; background:#fff;
    outline:none; transition:border-color 0.2s ease, box-shadow 0.2s ease;
  }
  .jcm-input:focus { border-color:#8b5cf6; box-shadow:0 0 0 3px rgba(139,92,246,0.12); }
  .jcm-consent { display:flex; flex-direction:column; gap:14px; margin-bottom:20px; }
  .jcm-check { display:flex; align-items:flex-start; gap:10px; }
  .jcm-check input[type="checkbox"] { width:16px; height:16px; min-width:16px; margin-top:3px; accent-color:#6b3fd4; cursor:pointer; flex-shrink:0; }
  .jcm-check-content { display:flex; flex-direction:column; gap:3px; }
  .jcm-consent-body { font-size:0.8125rem; color:#6b6560; line-height:1.5; font-family:'Inter',sans-serif; }
  .jcm-consent-body.collapsed { display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
  .jcm-consent-toggle { background:none; border:none; padding:0; font-size:0.8125rem; color:#8b5cf6; cursor:pointer; font-family:'Inter',sans-serif; font-weight:500; text-align:left; }
  .jcm-submit {
    width:100%; padding:13px; background:#6b3fd4; color:#fff; border:none; border-radius:6px;
    font-family:'Inter',sans-serif; font-size:0.875rem; font-weight:600; cursor:pointer;
    transition:background 0.2s ease, transform 0.15s ease;
  }
  .jcm-submit:hover { background:#8b5cf6; transform:scale(1.01); }
  .jcm-submit:active { transform:scale(0.98); }
  .jcm-submit:disabled { background:#c4b5fd; cursor:not-allowed; transform:none; }
  .jcm-thanks { display:none; padding:40px 28px; text-align:center; }
  .jcm-thanks svg { width:44px; height:44px; color:#6b3fd4; margin:0 auto 14px; }
  .jcm-thanks strong { display:block; font-family:'Playfair Display',Georgia,serif; font-size:1.25rem; font-weight:700; color:#0f0d0b; margin-bottom:8px; }
  .jcm-thanks p { font-size:0.875rem; color:#6b6560; line-height:1.6; }
.jc-footer { background:#ffffff; border-top:1px solid rgba(0,0,0,0.09); padding:64px 0 0; font-family:'Inter',sans-serif; }
  .jc-footer-inner { width:100%; max-width:1200px; margin:0 auto; padding:0 40px; }
  .jc-footer-grid { display:grid; grid-template-columns:1fr; gap:48px; padding-bottom:64px; }
  @media(min-width:600px){ .jc-footer-grid { grid-template-columns:repeat(2,1fr); } }
  @media(min-width:900px){ .jc-footer-grid { grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; } }
  .jc-footer-logo { display:block; margin-bottom:16px; }
  .jc-footer-logo img { height:52px; width:auto; display:block; }
  .jc-footer-tagline { font-size:0.875rem; color:#6b6560; line-height:1.7; max-width:280px; }
  .jc-footer-col-title { font-size:0.75rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; color:#6b6560; margin-bottom:20px; }
  .jc-footer-col ul { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:12px; }
  .jc-footer-col a { font-size:0.875rem; color:#6b6560; text-decoration:none; transition:color 0.2s ease; }
  .jc-footer-col a:hover { color:#0f0d0b; }
  .jc-footer-bottom { border-top:1px solid rgba(0,0,0,0.09); padding:24px 0; display:flex; flex-wrap:wrap; justify-content:space-between; align-items:center; gap:12px; }
  .jc-footer-bottom p, .jc-footer-bottom a { font-size:0.75rem; color:#6b6560; text-decoration:none; }
  .jc-footer-bottom a:hover { color:#0f0d0b; }
  .jc-footer-legal { display:flex; gap:20px; }
html{overflow-x:hidden}

/* Source: /var/www/joystar/contact.html */
/* ── Contact Modal ─────────────────────────────────── */
  .jcm-overlay {
    display:none; position:fixed; inset:0; z-index:2000;
    background:rgba(15,13,11,0.55); backdrop-filter:blur(4px); -webkit-backdrop-filter:blur(4px);
    align-items:center; justify-content:center; padding:20px;
  }
  .jcm-overlay.open { display:flex; }
  .jcm-card {
    background:#fff; border-radius:20px; width:100%; max-width:480px;
    box-shadow:0 20px 60px rgba(0,0,0,0.18); overflow:hidden;
    animation:jcmSlideIn 0.28s cubic-bezier(0.34,1.26,0.64,1) both;
  }
  @keyframes jcmSlideIn { from { opacity:0; transform:translateY(24px) scale(0.97); } to { opacity:1; transform:none; } }
  .jcm-head {
    background:linear-gradient(135deg,#6b3fd4 0%,#8b5cf6 100%);
    padding:24px 28px 20px; display:flex; align-items:flex-start; justify-content:space-between;
  }
  .jcm-head-text strong { display:block; font-family:'Playfair Display',Georgia,serif; font-size:1.25rem; font-weight:700; color:#fff; line-height:1.2; }
  .jcm-head-text span { font-size:0.8125rem; color:rgba(255,255,255,0.72); margin-top:4px; display:block; }
  .jcm-close { background:none; border:none; cursor:pointer; padding:2px; line-height:0; flex-shrink:0; margin-top:2px; }
  .jcm-close svg { width:20px; height:20px; color:rgba(255,255,255,0.75); transition:color 0.2s; }
  .jcm-close:hover svg { color:#fff; }
  .jcm-body { padding:28px; }
  .jcm-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
  .jcm-group { display:flex; flex-direction:column; gap:7px; margin-bottom:16px; }
  .jcm-group.full { grid-column:1/-1; }
  .jcm-label { font-size:0.75rem; font-weight:600; color:#0f0d0b; letter-spacing:0.02em; font-family:'Inter',sans-serif; }
  .jcm-label .opt { font-weight:400; color:#6b6560; margin-left:3px; }
  .jcm-input {
    width:100%; padding:11px 14px; border:1px solid rgba(0,0,0,0.12); border-radius:6px;
    font-family:'Inter',sans-serif; font-size:0.875rem; color:#0f0d0b; background:#fff;
    outline:none; transition:border-color 0.2s ease, box-shadow 0.2s ease;
  }
  .jcm-input:focus { border-color:#8b5cf6; box-shadow:0 0 0 3px rgba(139,92,246,0.12); }
  .jcm-consent { display:flex; flex-direction:column; gap:14px; margin-bottom:20px; }
  .jcm-check { display:flex; align-items:flex-start; gap:10px; }
  .jcm-check input[type="checkbox"] { width:16px; height:16px; min-width:16px; margin-top:3px; accent-color:#6b3fd4; cursor:pointer; flex-shrink:0; }
  .jcm-check-content { display:flex; flex-direction:column; gap:3px; }
  .jcm-consent-body { font-size:0.8125rem; color:#6b6560; line-height:1.5; font-family:'Inter',sans-serif; }
  .jcm-consent-body.collapsed { display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
  .jcm-consent-toggle { background:none; border:none; padding:0; font-size:0.8125rem; color:#8b5cf6; cursor:pointer; font-family:'Inter',sans-serif; font-weight:500; text-align:left; }
  .jcm-submit {
    width:100%; padding:13px; background:#6b3fd4; color:#fff; border:none; border-radius:6px;
    font-family:'Inter',sans-serif; font-size:0.875rem; font-weight:600; cursor:pointer;
    transition:background 0.2s ease, transform 0.15s ease;
  }
  .jcm-submit:hover { background:#8b5cf6; transform:scale(1.01); }
  .jcm-submit:active { transform:scale(0.98); }
  .jcm-submit:disabled { background:#c4b5fd; cursor:not-allowed; transform:none; }
  .jcm-thanks { display:none; padding:40px 28px; text-align:center; }
  .jcm-thanks svg { width:44px; height:44px; color:#6b3fd4; margin:0 auto 14px; }
  .jcm-thanks strong { display:block; font-family:'Playfair Display',Georgia,serif; font-size:1.25rem; font-weight:700; color:#0f0d0b; margin-bottom:8px; }
  .jcm-thanks p { font-size:0.875rem; color:#6b6560; line-height:1.6; }
.jc-nav { position:fixed; top:0; left:0; right:0; z-index:10000; transition:background 0.3s ease, border-color 0.2s ease; border-bottom:1px solid transparent; }
  .jc-nav.scrolled { background:rgba(255,255,255,0.94); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px); border-bottom-color:rgba(0,0,0,0.09); }
  .jc-nav-inner { display:flex; align-items:center; justify-content:space-between; height:72px; gap:24px; max-width:1200px; margin:0 auto; padding:0 40px; }
  .jc-nav-logo img { height:52px; width:auto; display:block; }
  .jc-nav-links { display:none; align-items:center; gap:36px; }
  @media(min-width:900px){ .jc-nav-links { display:flex; } }
  .jc-nav-links a { font-size:0.875rem; font-weight:500; color:#6b6560; text-decoration:none; transition:color 0.2s ease; position:relative; font-family:'Inter',sans-serif; }
  .jc-nav-links a::after { content:''; position:absolute; bottom:-3px; left:0; width:0; height:1px; background:#8b5cf6; transition:width 0.3s ease; }
  .jc-nav-links a:hover { color:#0f0d0b; } .jc-nav-links a:hover::after { width:100%; }
  .jc-nav-actions { display:none; align-items:center; gap:12px; }
  @media(min-width:900px){ .jc-nav-actions { display:flex; } }
  .jc-btn { display:inline-flex; align-items:center; padding:9px 20px; border-radius:6px; font-family:'Inter',sans-serif; font-size:0.75rem; font-weight:600; text-decoration:none; cursor:pointer; transition:background 0.2s ease, transform 0.2s ease, color 0.2s ease, border-color 0.2s ease; border:none; }
  .jc-btn-primary { background:#6b3fd4; color:#fff; } .jc-btn-primary:hover { background:#8b5cf6; transform:scale(1.02); }
  .jc-btn-ghost { background:transparent; color:#0f0d0b; border:1px solid rgba(0,0,0,0.18); } .jc-btn-ghost:hover { border-color:#6b3fd4; color:#6b3fd4; transform:scale(1.02); }
  .jc-hamburger { display:flex; flex-direction:column; gap:5px; cursor:pointer; padding:8px; background:none; border:none; }
  @media(min-width:900px){ .jc-hamburger { display:none; } }
  .jc-hamburger span { display:block; width:22px; height:2px; background:#0f0d0b; border-radius:2px; transition:transform 0.3s ease, opacity 0.2s ease; }
  .jc-hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
  .jc-hamburger.open span:nth-child(2) { opacity:0; }
  .jc-hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
  .jc-mobile-menu { display:none; position:fixed; inset:0; background:#fff; z-index:10001; flex-direction:column; align-items:center; justify-content:center; gap:40px; }
  .jc-mobile-menu.open { display:flex; }
  .jc-mobile-menu a { font-family:'Playfair Display',Georgia,serif; font-size:2rem; font-weight:700; color:#6b6560; text-decoration:none; transition:color 0.2s ease; }
  .jc-mobile-menu a:hover { color:#0f0d0b; }
  .jc-mobile-actions { display:flex; flex-direction:column; align-items:center; gap:12px; margin-top:16px; }

  /* ── Contact Modal ─────────────────────────────────── */
  .jcm-overlay {
    display:none; position:fixed; inset:0; z-index:2000;
    background:rgba(15,13,11,0.55); backdrop-filter:blur(4px); -webkit-backdrop-filter:blur(4px);
    align-items:center; justify-content:center; padding:20px;
  }
  .jcm-overlay.open { display:flex; }
  .jcm-card {
    background:#fff; border-radius:20px; width:100%; max-width:480px;
    box-shadow:0 20px 60px rgba(0,0,0,0.18); overflow:hidden;
    animation:jcmSlideIn 0.28s cubic-bezier(0.34,1.26,0.64,1) both;
  }
  @keyframes jcmSlideIn { from { opacity:0; transform:translateY(24px) scale(0.97); } to { opacity:1; transform:none; } }
  .jcm-head {
    background:linear-gradient(135deg,#6b3fd4 0%,#8b5cf6 100%);
    padding:24px 28px 20px; display:flex; align-items:flex-start; justify-content:space-between;
  }
  .jcm-head-text strong { display:block; font-family:'Playfair Display',Georgia,serif; font-size:1.25rem; font-weight:700; color:#fff; line-height:1.2; }
  .jcm-head-text span { font-size:0.8125rem; color:rgba(255,255,255,0.72); margin-top:4px; display:block; }
  .jcm-close { background:none; border:none; cursor:pointer; padding:2px; line-height:0; flex-shrink:0; margin-top:2px; }
  .jcm-close svg { width:20px; height:20px; color:rgba(255,255,255,0.75); transition:color 0.2s; }
  .jcm-close:hover svg { color:#fff; }
  .jcm-body { padding:28px; }
  .jcm-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
  .jcm-group { display:flex; flex-direction:column; gap:7px; margin-bottom:16px; }
  .jcm-group.full { grid-column:1/-1; }
  .jcm-label { font-size:0.75rem; font-weight:600; color:#0f0d0b; letter-spacing:0.02em; font-family:'Inter',sans-serif; }
  .jcm-label .opt { font-weight:400; color:#6b6560; margin-left:3px; }
  .jcm-input {
    width:100%; padding:11px 14px; border:1px solid rgba(0,0,0,0.12); border-radius:6px;
    font-family:'Inter',sans-serif; font-size:0.875rem; color:#0f0d0b; background:#fff;
    outline:none; transition:border-color 0.2s ease, box-shadow 0.2s ease;
  }
  .jcm-input:focus { border-color:#8b5cf6; box-shadow:0 0 0 3px rgba(139,92,246,0.12); }
  .jcm-consent { display:flex; flex-direction:column; gap:14px; margin-bottom:20px; }
  .jcm-check { display:flex; align-items:flex-start; gap:10px; }
  .jcm-check input[type="checkbox"] { width:16px; height:16px; min-width:16px; margin-top:3px; accent-color:#6b3fd4; cursor:pointer; flex-shrink:0; }
  .jcm-check-content { display:flex; flex-direction:column; gap:3px; }
  .jcm-consent-body { font-size:0.8125rem; color:#6b6560; line-height:1.5; font-family:'Inter',sans-serif; }
  .jcm-consent-body.collapsed { display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
  .jcm-consent-toggle { background:none; border:none; padding:0; font-size:0.8125rem; color:#8b5cf6; cursor:pointer; font-family:'Inter',sans-serif; font-weight:500; text-align:left; }
  .jcm-submit {
    width:100%; padding:13px; background:#6b3fd4; color:#fff; border:none; border-radius:6px;
    font-family:'Inter',sans-serif; font-size:0.875rem; font-weight:600; cursor:pointer;
    transition:background 0.2s ease, transform 0.15s ease;
  }
  .jcm-submit:hover { background:#8b5cf6; transform:scale(1.01); }
  .jcm-submit:active { transform:scale(0.98); }
  .jcm-submit:disabled { background:#c4b5fd; cursor:not-allowed; transform:none; }
  .jcm-thanks { display:none; padding:40px 28px; text-align:center; }
  .jcm-thanks svg { width:44px; height:44px; color:#6b3fd4; margin:0 auto 14px; }
  .jcm-thanks strong { display:block; font-family:'Playfair Display',Georgia,serif; font-size:1.25rem; font-weight:700; color:#0f0d0b; margin-bottom:8px; }
  .jcm-thanks p { font-size:0.875rem; color:#6b6560; line-height:1.6; }
.jc-footer { background:#ffffff; border-top:1px solid rgba(0,0,0,0.09); padding:64px 0 0; font-family:'Inter',sans-serif; }
  .jc-footer-inner { width:100%; max-width:1200px; margin:0 auto; padding:0 40px; }
  .jc-footer-grid { display:grid; grid-template-columns:1fr; gap:48px; padding-bottom:64px; }
  @media(min-width:600px){ .jc-footer-grid { grid-template-columns:repeat(2,1fr); } }
  @media(min-width:900px){ .jc-footer-grid { grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; } }
  .jc-footer-logo { display:block; margin-bottom:16px; }
  .jc-footer-logo img { height:52px; width:auto; display:block; }
  .jc-footer-tagline { font-size:0.875rem; color:#6b6560; line-height:1.7; max-width:280px; }
  .jc-footer-col-title { font-size:0.75rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; color:#6b6560; margin-bottom:20px; }
  .jc-footer-col ul { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:12px; }
  .jc-footer-col a { font-size:0.875rem; color:#6b6560; text-decoration:none; transition:color 0.2s ease; }
  .jc-footer-col a:hover { color:#0f0d0b; }
  .jc-footer-bottom { border-top:1px solid rgba(0,0,0,0.09); padding:24px 0; display:flex; flex-wrap:wrap; justify-content:space-between; align-items:center; gap:12px; }
  .jc-footer-bottom p, .jc-footer-bottom a { font-size:0.75rem; color:#6b6560; text-decoration:none; }
  .jc-footer-bottom a:hover { color:#0f0d0b; }
  .jc-footer-legal { display:flex; gap:20px; }
html{overflow-x:hidden}

/* Source: /var/www/joystar/privacy-policy.html */
:root {
      --color-bg:#ffffff; --color-surface:#f5f5f5; --color-surface-2:#ebebeb;
      --color-border:rgba(0,0,0,0.09); --color-accent:#6b3fd4; --color-accent-2:#8b5cf6;
      --color-text:#0f0d0b; --color-text-muted:#6b6560;
      --font-display:'Playfair Display',Georgia,serif; --font-body:'Inter',sans-serif;
      --text-xs:0.75rem; --text-sm:0.875rem; --text-base:1rem; --text-lg:1.125rem;
      --text-xl:1.25rem; --text-2xl:1.5rem; --text-3xl:2rem; --text-4xl:2.75rem;
      --radius-sm:6px; --radius-md:12px; --radius-lg:20px;
      --transition-fast:0.2s ease; --transition-med:0.3s cubic-bezier(0.4,0,0.2,1);
    }
    *,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
    html{scroll-behavior:smooth;font-size:16px;}
    body{background:var(--color-bg);color:var(--color-text);font-family:var(--font-body);line-height:1.6;-webkit-font-smoothing:antialiased;overflow-x:hidden;}
    img{max-width:100%;display:block;} a{color:inherit;text-decoration:none;} button{cursor:pointer;border:none;background:none;font-family:inherit;} ul,ol{list-style:none;}
    .container{width:100%;max-width:1200px;margin:0 auto;padding:0 24px;}
    @media(min-width:768px){.container{padding:0 40px;}}
    @media(min-width:1200px){.container{padding:0 60px;}}
    /* NAV */
    .nav{position:fixed;top:0;left:0;right:0;z-index:1000;transition:background var(--transition-med),border-color var(--transition-fast);border-bottom:1px solid transparent;}
    .nav.scrolled{background:rgba(255,255,255,0.94);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);border-bottom-color:var(--color-border);}
    .nav-inner{display:flex;align-items:center;justify-content:space-between;height:72px;gap:24px;}
    .nav-logo{display:flex;align-items:center;gap:10px;flex-shrink:0;}
    .nav-logo img{height:52px;width:auto;display:block;flex-shrink:0;}
    .nav-links{display:none;align-items:center;gap:36px;}
    @media(min-width:900px){.nav-links{display:flex;}}
    .nav-links a{font-size:var(--text-sm);font-weight:500;color:var(--color-text-muted);transition:color var(--transition-fast);position:relative;}
    .nav-links a::after{content:'';position:absolute;bottom:-3px;left:0;width:0;height:1px;background:var(--color-accent-2);transition:width var(--transition-med);}
    .nav-links a:hover{color:var(--color-text);} .nav-links a:hover::after{width:100%;}
    .nav-actions{display:none;align-items:center;gap:12px;}
    @media(min-width:900px){.nav-actions{display:flex;}}
    .btn{display:inline-flex;align-items:center;gap:8px;padding:13px 28px;border-radius:var(--radius-sm);font-family:var(--font-body);font-size:var(--text-sm);font-weight:600;letter-spacing:0.02em;transition:background var(--transition-fast),transform var(--transition-fast),color var(--transition-fast),border-color var(--transition-fast);cursor:pointer;}
    .btn-primary{background:var(--color-accent);color:#fff;} .btn-primary:hover{background:var(--color-accent-2);transform:scale(1.02);}
    .btn-ghost{background:transparent;color:var(--color-text);border:1px solid rgba(0,0,0,0.18);} .btn-ghost:hover{border-color:var(--color-accent);color:var(--color-accent);transform:scale(1.02);}
    .btn-sm{padding:9px 20px;font-size:var(--text-xs);}
    .nav-hamburger{display:flex;flex-direction:column;gap:5px;cursor:pointer;padding:8px;}
    @media(min-width:900px){.nav-hamburger{display:none;}}
    .nav-hamburger span{display:block;width:22px;height:2px;background:var(--color-text);transition:transform var(--transition-med),opacity var(--transition-fast);border-radius:2px;}
    .nav-hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
    .nav-hamburger.open span:nth-child(2){opacity:0;}
    .nav-hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}
    .nav-mobile{display:none;position:fixed;inset:0;background:var(--color-bg);z-index:999;flex-direction:column;align-items:center;justify-content:center;gap:40px;}
    .nav-mobile.open{display:flex;}
    .nav-mobile a{font-family:var(--font-display);font-size:var(--text-3xl);font-weight:700;color:var(--color-text-muted);transition:color var(--transition-fast);}
    .nav-mobile a:hover{color:var(--color-text);}
    .nav-mobile-actions{display:flex;flex-direction:column;align-items:center;gap:12px;margin-top:16px;}
    /* PAGE HERO */
    .page-hero{padding:140px 0 64px;background:var(--color-bg);position:relative;overflow:hidden;}
    .page-hero::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 70% 60% at 15% 40%,rgba(107,63,212,0.07) 0%,transparent 60%),radial-gradient(ellipse 50% 50% at 85% 60%,rgba(201,146,10,0.06) 0%,transparent 55%);pointer-events:none;}
    .page-hero-label{font-size:var(--text-xs);font-weight:600;letter-spacing:0.18em;text-transform:uppercase;color:var(--color-accent-2);margin-bottom:20px;}
    .page-hero-title{font-family:var(--font-display);font-size:var(--text-4xl);font-weight:800;line-height:1.1;color:var(--color-text);}
    .page-hero-sub{font-size:var(--text-lg);color:var(--color-text-muted);margin-top:16px;line-height:1.7;max-width:560px;}
    /* POLICY CONTENT */
    .policy-body{padding:64px 0 96px;}
    .policy-layout{display:grid;grid-template-columns:1fr;gap:64px;}
    @media(min-width:900px){.policy-layout{grid-template-columns:220px 1fr;align-items:start;}}
    .policy-toc{position:sticky;top:96px;}
    .policy-toc-title{font-size:var(--text-xs);font-weight:700;letter-spacing:0.14em;text-transform:uppercase;color:var(--color-text-muted);margin-bottom:16px;}
    .policy-toc ul{display:flex;flex-direction:column;gap:8px;}
    .policy-toc a{font-size:var(--text-sm);color:var(--color-text-muted);transition:color var(--transition-fast);line-height:1.4;}
    .policy-toc a:hover{color:var(--color-accent-2);}
    .policy-content{max-width:760px;}
    .policy-content .intro{font-size:var(--text-base);color:var(--color-text-muted);line-height:1.8;margin-bottom:48px;padding-bottom:48px;border-bottom:1px solid var(--color-border);}
    .policy-section{margin-bottom:48px;padding-bottom:48px;border-bottom:1px solid var(--color-border);scroll-margin-top:96px;}
    .policy-section:last-child{border-bottom:none;}
    .policy-section h2{font-family:var(--font-display);font-size:var(--text-2xl);font-weight:700;color:var(--color-text);margin-bottom:20px;line-height:1.25;}
    .policy-section h3{font-family:var(--font-display);font-size:var(--text-xl);font-weight:600;color:var(--color-text);margin:24px 0 12px;}
    .policy-section h4{font-size:var(--text-sm);font-weight:700;letter-spacing:0.05em;text-transform:uppercase;color:var(--color-accent-2);margin:20px 0 10px;}
    .policy-section p{color:var(--color-text-muted);line-height:1.8;margin-bottom:14px;font-size:var(--text-sm);}
    .policy-section ul{margin:12px 0 16px 0;display:flex;flex-direction:column;gap:8px;}
    .policy-section ul li{color:var(--color-text-muted);padding-left:20px;position:relative;line-height:1.7;font-size:var(--text-sm);}
    .policy-section ul li::before{content:'—';position:absolute;left:0;color:var(--color-accent-2);}
    .policy-section .sub-section{background:var(--color-surface);border-radius:var(--radius-md);padding:24px;margin:16px 0;}
    .policy-updated{display:inline-block;font-size:var(--text-xs);color:var(--color-text-muted);background:var(--color-surface);padding:6px 14px;border-radius:20px;margin-bottom:48px;}
    /* FOOTER */
    .footer{background:var(--color-bg);border-top:1px solid var(--color-border);padding:64px 0 0;}
    .footer-grid{display:grid;grid-template-columns:1fr;gap:48px;padding-bottom:64px;}
    @media(min-width:600px){.footer-grid{grid-template-columns:repeat(2,1fr);}}
    @media(min-width:900px){.footer-grid{grid-template-columns:2fr 1fr 1fr 1fr;gap:40px;}}
    .footer-brand .nav-logo{margin-bottom:16px;}
    .footer-tagline{font-size:var(--text-sm);color:var(--color-text-muted);line-height:1.7;max-width:280px;}
    .footer-col-title{font-size:var(--text-xs);font-weight:700;letter-spacing:0.14em;text-transform:uppercase;color:var(--color-text-muted);margin-bottom:20px;}
    .footer-col ul{display:flex;flex-direction:column;gap:12px;}
    .footer-col a{font-size:var(--text-sm);color:var(--color-text-muted);transition:color var(--transition-fast);}
    .footer-col a:hover{color:var(--color-text);}
    .footer-bottom{border-top:1px solid var(--color-border);padding:24px 0;display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;gap:12px;}
    .footer-bottom p,.footer-bottom a{font-size:var(--text-xs);color:var(--color-text-muted);}
    .footer-bottom a:hover{color:var(--color-text);}
    .footer-legal{display:flex;gap:20px;}
.jc-nav { position:fixed; top:0; left:0; right:0; z-index:10000; transition:background 0.3s ease, border-color 0.2s ease; border-bottom:1px solid transparent; }
  .jc-nav.scrolled { background:rgba(255,255,255,0.94); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px); border-bottom-color:rgba(0,0,0,0.09); }
  .jc-nav-inner { display:flex; align-items:center; justify-content:space-between; height:72px; gap:24px; max-width:1200px; margin:0 auto; padding:0 40px; }
  .jc-nav-logo img { height:52px; width:auto; display:block; }
  .jc-nav-links { display:none; align-items:center; gap:36px; }
  @media(min-width:900px){ .jc-nav-links { display:flex; } }
  .jc-nav-links a { font-size:0.875rem; font-weight:500; color:#6b6560; text-decoration:none; transition:color 0.2s ease; position:relative; font-family:'Inter',sans-serif; }
  .jc-nav-links a::after { content:''; position:absolute; bottom:-3px; left:0; width:0; height:1px; background:#8b5cf6; transition:width 0.3s ease; }
  .jc-nav-links a:hover { color:#0f0d0b; } .jc-nav-links a:hover::after { width:100%; }
  .jc-nav-actions { display:none; align-items:center; gap:12px; }
  @media(min-width:900px){ .jc-nav-actions { display:flex; } }
  .jc-btn { display:inline-flex; align-items:center; padding:9px 20px; border-radius:6px; font-family:'Inter',sans-serif; font-size:0.75rem; font-weight:600; text-decoration:none; cursor:pointer; transition:background 0.2s ease, transform 0.2s ease, color 0.2s ease, border-color 0.2s ease; border:none; }
  .jc-btn-primary { background:#6b3fd4; color:#fff; } .jc-btn-primary:hover { background:#8b5cf6; transform:scale(1.02); }
  .jc-btn-ghost { background:transparent; color:#0f0d0b; border:1px solid rgba(0,0,0,0.18); } .jc-btn-ghost:hover { border-color:#6b3fd4; color:#6b3fd4; transform:scale(1.02); }
  .jc-hamburger { display:flex; flex-direction:column; gap:5px; cursor:pointer; padding:8px; background:none; border:none; }
  @media(min-width:900px){ .jc-hamburger { display:none; } }
  .jc-hamburger span { display:block; width:22px; height:2px; background:#0f0d0b; border-radius:2px; transition:transform 0.3s ease, opacity 0.2s ease; }
  .jc-hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
  .jc-hamburger.open span:nth-child(2) { opacity:0; }
  .jc-hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
  .jc-mobile-menu { display:none; position:fixed; inset:0; background:#fff; z-index:10001; flex-direction:column; align-items:center; justify-content:center; gap:40px; }
  .jc-mobile-menu.open { display:flex; }
  .jc-mobile-menu a { font-family:'Playfair Display',Georgia,serif; font-size:2rem; font-weight:700; color:#6b6560; text-decoration:none; transition:color 0.2s ease; }
  .jc-mobile-menu a:hover { color:#0f0d0b; }
  .jc-mobile-actions { display:flex; flex-direction:column; align-items:center; gap:12px; margin-top:16px; }

  /* ── Contact Modal ─────────────────────────────────── */
  .jcm-overlay {
    display:none; position:fixed; inset:0; z-index:2000;
    background:rgba(15,13,11,0.55); backdrop-filter:blur(4px); -webkit-backdrop-filter:blur(4px);
    align-items:center; justify-content:center; padding:20px;
  }
  .jcm-overlay.open { display:flex; }
  .jcm-card {
    background:#fff; border-radius:20px; width:100%; max-width:480px;
    box-shadow:0 20px 60px rgba(0,0,0,0.18); overflow:hidden;
    animation:jcmSlideIn 0.28s cubic-bezier(0.34,1.26,0.64,1) both;
  }
  @keyframes jcmSlideIn { from { opacity:0; transform:translateY(24px) scale(0.97); } to { opacity:1; transform:none; } }
  .jcm-head {
    background:linear-gradient(135deg,#6b3fd4 0%,#8b5cf6 100%);
    padding:24px 28px 20px; display:flex; align-items:flex-start; justify-content:space-between;
  }
  .jcm-head-text strong { display:block; font-family:'Playfair Display',Georgia,serif; font-size:1.25rem; font-weight:700; color:#fff; line-height:1.2; }
  .jcm-head-text span { font-size:0.8125rem; color:rgba(255,255,255,0.72); margin-top:4px; display:block; }
  .jcm-close { background:none; border:none; cursor:pointer; padding:2px; line-height:0; flex-shrink:0; margin-top:2px; }
  .jcm-close svg { width:20px; height:20px; color:rgba(255,255,255,0.75); transition:color 0.2s; }
  .jcm-close:hover svg { color:#fff; }
  .jcm-body { padding:28px; }
  .jcm-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
  .jcm-group { display:flex; flex-direction:column; gap:7px; margin-bottom:16px; }
  .jcm-group.full { grid-column:1/-1; }
  .jcm-label { font-size:0.75rem; font-weight:600; color:#0f0d0b; letter-spacing:0.02em; font-family:'Inter',sans-serif; }
  .jcm-label .opt { font-weight:400; color:#6b6560; margin-left:3px; }
  .jcm-input {
    width:100%; padding:11px 14px; border:1px solid rgba(0,0,0,0.12); border-radius:6px;
    font-family:'Inter',sans-serif; font-size:0.875rem; color:#0f0d0b; background:#fff;
    outline:none; transition:border-color 0.2s ease, box-shadow 0.2s ease;
  }
  .jcm-input:focus { border-color:#8b5cf6; box-shadow:0 0 0 3px rgba(139,92,246,0.12); }
  .jcm-consent { display:flex; flex-direction:column; gap:14px; margin-bottom:20px; }
  .jcm-check { display:flex; align-items:flex-start; gap:10px; }
  .jcm-check input[type="checkbox"] { width:16px; height:16px; min-width:16px; margin-top:3px; accent-color:#6b3fd4; cursor:pointer; flex-shrink:0; }
  .jcm-check-content { display:flex; flex-direction:column; gap:3px; }
  .jcm-consent-body { font-size:0.8125rem; color:#6b6560; line-height:1.5; font-family:'Inter',sans-serif; }
  .jcm-consent-body.collapsed { display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
  .jcm-consent-toggle { background:none; border:none; padding:0; font-size:0.8125rem; color:#8b5cf6; cursor:pointer; font-family:'Inter',sans-serif; font-weight:500; text-align:left; }
  .jcm-submit {
    width:100%; padding:13px; background:#6b3fd4; color:#fff; border:none; border-radius:6px;
    font-family:'Inter',sans-serif; font-size:0.875rem; font-weight:600; cursor:pointer;
    transition:background 0.2s ease, transform 0.15s ease;
  }
  .jcm-submit:hover { background:#8b5cf6; transform:scale(1.01); }
  .jcm-submit:active { transform:scale(0.98); }
  .jcm-submit:disabled { background:#c4b5fd; cursor:not-allowed; transform:none; }
  .jcm-thanks { display:none; padding:40px 28px; text-align:center; }
  .jcm-thanks svg { width:44px; height:44px; color:#6b3fd4; margin:0 auto 14px; }
  .jcm-thanks strong { display:block; font-family:'Playfair Display',Georgia,serif; font-size:1.25rem; font-weight:700; color:#0f0d0b; margin-bottom:8px; }
  .jcm-thanks p { font-size:0.875rem; color:#6b6560; line-height:1.6; }
.jc-footer { background:#ffffff; border-top:1px solid rgba(0,0,0,0.09); padding:64px 0 0; font-family:'Inter',sans-serif; }
  .jc-footer-inner { width:100%; max-width:1200px; margin:0 auto; padding:0 40px; }
  .jc-footer-grid { display:grid; grid-template-columns:1fr; gap:48px; padding-bottom:64px; }
  @media(min-width:600px){ .jc-footer-grid { grid-template-columns:repeat(2,1fr); } }
  @media(min-width:900px){ .jc-footer-grid { grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; } }
  .jc-footer-logo { display:block; margin-bottom:16px; }
  .jc-footer-logo img { height:52px; width:auto; display:block; }
  .jc-footer-tagline { font-size:0.875rem; color:#6b6560; line-height:1.7; max-width:280px; }
  .jc-footer-col-title { font-size:0.75rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; color:#6b6560; margin-bottom:20px; }
  .jc-footer-col ul { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:12px; }
  .jc-footer-col a { font-size:0.875rem; color:#6b6560; text-decoration:none; transition:color 0.2s ease; }
  .jc-footer-col a:hover { color:#0f0d0b; }
  .jc-footer-bottom { border-top:1px solid rgba(0,0,0,0.09); padding:24px 0; display:flex; flex-wrap:wrap; justify-content:space-between; align-items:center; gap:12px; }
  .jc-footer-bottom p, .jc-footer-bottom a { font-size:0.75rem; color:#6b6560; text-decoration:none; }
  .jc-footer-bottom a:hover { color:#0f0d0b; }
  .jc-footer-legal { display:flex; gap:20px; }
html{overflow-x:hidden}

/* Source: /var/www/joystar/terms-of-service.html */
:root {
      --color-bg:#ffffff; --color-surface:#f5f5f5; --color-surface-2:#ebebeb;
      --color-border:rgba(0,0,0,0.09); --color-accent:#6b3fd4; --color-accent-2:#8b5cf6;
      --color-text:#0f0d0b; --color-text-muted:#6b6560;
      --font-display:'Playfair Display',Georgia,serif; --font-body:'Inter',sans-serif;
      --text-xs:0.75rem; --text-sm:0.875rem; --text-base:1rem; --text-lg:1.125rem;
      --text-xl:1.25rem; --text-2xl:1.5rem; --text-3xl:2rem; --text-4xl:2.75rem;
      --radius-sm:6px; --radius-md:12px; --radius-lg:20px;
      --transition-fast:0.2s ease; --transition-med:0.3s cubic-bezier(0.4,0,0.2,1);
    }
    *,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
    html{scroll-behavior:smooth;font-size:16px;}
    body{background:var(--color-bg);color:var(--color-text);font-family:var(--font-body);line-height:1.6;-webkit-font-smoothing:antialiased;overflow-x:hidden;}
    img{max-width:100%;display:block;} a{color:inherit;text-decoration:none;} button{cursor:pointer;border:none;background:none;font-family:inherit;} ul,ol{list-style:none;}
    .container{width:100%;max-width:1200px;margin:0 auto;padding:0 24px;}
    @media(min-width:768px){.container{padding:0 40px;}}
    @media(min-width:1200px){.container{padding:0 60px;}}
    /* NAV */
    .nav{position:fixed;top:0;left:0;right:0;z-index:1000;transition:background var(--transition-med),border-color var(--transition-fast);border-bottom:1px solid transparent;}
    .nav.scrolled{background:rgba(255,255,255,0.94);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);border-bottom-color:var(--color-border);}
    .nav-inner{display:flex;align-items:center;justify-content:space-between;height:72px;gap:24px;}
    .nav-logo{display:flex;align-items:center;gap:10px;flex-shrink:0;}
    .nav-logo img{height:52px;width:auto;display:block;flex-shrink:0;}
    .nav-links{display:none;align-items:center;gap:36px;}
    @media(min-width:900px){.nav-links{display:flex;}}
    .nav-links a{font-size:var(--text-sm);font-weight:500;color:var(--color-text-muted);transition:color var(--transition-fast);position:relative;}
    .nav-links a::after{content:'';position:absolute;bottom:-3px;left:0;width:0;height:1px;background:var(--color-accent-2);transition:width var(--transition-med);}
    .nav-links a:hover{color:var(--color-text);} .nav-links a:hover::after{width:100%;}
    .nav-actions{display:none;align-items:center;gap:12px;}
    @media(min-width:900px){.nav-actions{display:flex;}}
    .btn{display:inline-flex;align-items:center;gap:8px;padding:13px 28px;border-radius:var(--radius-sm);font-family:var(--font-body);font-size:var(--text-sm);font-weight:600;letter-spacing:0.02em;transition:background var(--transition-fast),transform var(--transition-fast),color var(--transition-fast),border-color var(--transition-fast);cursor:pointer;}
    .btn-primary{background:var(--color-accent);color:#fff;} .btn-primary:hover{background:var(--color-accent-2);transform:scale(1.02);}
    .btn-ghost{background:transparent;color:var(--color-text);border:1px solid rgba(0,0,0,0.18);} .btn-ghost:hover{border-color:var(--color-accent);color:var(--color-accent);transform:scale(1.02);}
    .btn-sm{padding:9px 20px;font-size:var(--text-xs);}
    .nav-hamburger{display:flex;flex-direction:column;gap:5px;cursor:pointer;padding:8px;}
    @media(min-width:900px){.nav-hamburger{display:none;}}
    .nav-hamburger span{display:block;width:22px;height:2px;background:var(--color-text);transition:transform var(--transition-med),opacity var(--transition-fast);border-radius:2px;}
    .nav-hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
    .nav-hamburger.open span:nth-child(2){opacity:0;}
    .nav-hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}
    .nav-mobile{display:none;position:fixed;inset:0;background:var(--color-bg);z-index:999;flex-direction:column;align-items:center;justify-content:center;gap:40px;}
    .nav-mobile.open{display:flex;}
    .nav-mobile a{font-family:var(--font-display);font-size:var(--text-3xl);font-weight:700;color:var(--color-text-muted);transition:color var(--transition-fast);}
    .nav-mobile a:hover{color:var(--color-text);}
    .nav-mobile-actions{display:flex;flex-direction:column;align-items:center;gap:12px;margin-top:16px;}
    /* PAGE HERO */
    .page-hero{padding:140px 0 64px;background:var(--color-bg);position:relative;overflow:hidden;}
    .page-hero::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 70% 60% at 15% 40%,rgba(107,63,212,0.07) 0%,transparent 60%),radial-gradient(ellipse 50% 50% at 85% 60%,rgba(201,146,10,0.06) 0%,transparent 55%);pointer-events:none;}
    .page-hero-label{font-size:var(--text-xs);font-weight:600;letter-spacing:0.18em;text-transform:uppercase;color:var(--color-accent-2);margin-bottom:20px;}
    .page-hero-title{font-family:var(--font-display);font-size:var(--text-4xl);font-weight:800;line-height:1.1;color:var(--color-text);}
    .page-hero-sub{font-size:var(--text-lg);color:var(--color-text-muted);margin-top:16px;line-height:1.7;max-width:560px;}
    /* POLICY CONTENT */
    .policy-body{padding:64px 0 96px;}
    .policy-layout{display:grid;grid-template-columns:1fr;gap:64px;}
    @media(min-width:900px){.policy-layout{grid-template-columns:220px 1fr;align-items:start;}}
    .policy-toc{position:sticky;top:96px;}
    .policy-toc-title{font-size:var(--text-xs);font-weight:700;letter-spacing:0.14em;text-transform:uppercase;color:var(--color-text-muted);margin-bottom:16px;}
    .policy-toc ul{display:flex;flex-direction:column;gap:8px;}
    .policy-toc a{font-size:var(--text-sm);color:var(--color-text-muted);transition:color var(--transition-fast);line-height:1.4;}
    .policy-toc a:hover{color:var(--color-accent-2);}
    .policy-toc a.toc-active{color:var(--color-accent-2);font-weight:600;}
    .policy-content{max-width:760px;}
    .policy-content .intro{font-size:var(--text-base);color:var(--color-text-muted);line-height:1.8;margin-bottom:48px;padding-bottom:48px;border-bottom:1px solid var(--color-border);}
    .policy-section{margin-bottom:48px;padding-bottom:48px;border-bottom:1px solid var(--color-border);scroll-margin-top:96px;}
    .policy-section:last-child{border-bottom:none;}
    .policy-section h2{font-family:var(--font-display);font-size:var(--text-2xl);font-weight:700;color:var(--color-text);margin-bottom:20px;line-height:1.25;}
    .policy-section h3{font-family:var(--font-display);font-size:var(--text-xl);font-weight:600;color:var(--color-text);margin:24px 0 12px;}
    .policy-section h4{font-size:var(--text-sm);font-weight:700;letter-spacing:0.05em;text-transform:uppercase;color:var(--color-accent-2);margin:20px 0 10px;}
    .policy-section p{color:var(--color-text-muted);line-height:1.8;margin-bottom:14px;font-size:var(--text-sm);}
    .policy-section ul{margin:12px 0 16px 0;display:flex;flex-direction:column;gap:8px;}
    .policy-section ul li{color:var(--color-text-muted);padding-left:20px;position:relative;line-height:1.7;font-size:var(--text-sm);}
    .policy-section ul li::before{content:'\2014';position:absolute;left:0;color:var(--color-accent-2);}
    .policy-section .sub-section{background:var(--color-surface);border-radius:var(--radius-md);padding:24px;margin:16px 0;}
    .policy-updated{display:inline-block;font-size:var(--text-xs);color:var(--color-text-muted);background:var(--color-surface);padding:6px 14px;border-radius:20px;margin-bottom:48px;}
    /* FOOTER */
    .footer{background:var(--color-bg);border-top:1px solid var(--color-border);padding:64px 0 0;}
    .footer-grid{display:grid;grid-template-columns:1fr;gap:48px;padding-bottom:64px;}
    @media(min-width:600px){.footer-grid{grid-template-columns:repeat(2,1fr);}}
    @media(min-width:900px){.footer-grid{grid-template-columns:2fr 1fr 1fr 1fr;gap:40px;}}
    .footer-brand .nav-logo{margin-bottom:16px;}
    .footer-tagline{font-size:var(--text-sm);color:var(--color-text-muted);line-height:1.7;max-width:280px;}
    .footer-col-title{font-size:var(--text-xs);font-weight:700;letter-spacing:0.14em;text-transform:uppercase;color:var(--color-text-muted);margin-bottom:20px;}
    .footer-col ul{display:flex;flex-direction:column;gap:12px;}
    .footer-col a{font-size:var(--text-sm);color:var(--color-text-muted);transition:color var(--transition-fast);}
    .footer-col a:hover{color:var(--color-text);}
    .footer-bottom{border-top:1px solid var(--color-border);padding:24px 0;display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;gap:12px;}
    .footer-bottom p,.footer-bottom a{font-size:var(--text-xs);color:var(--color-text-muted);}
    .footer-bottom a:hover{color:var(--color-text);}
    .footer-legal{display:flex;gap:20px;}
.jc-nav { position:fixed; top:0; left:0; right:0; z-index:10000; transition:background 0.3s ease, border-color 0.2s ease; border-bottom:1px solid transparent; }
  .jc-nav.scrolled { background:rgba(255,255,255,0.94); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px); border-bottom-color:rgba(0,0,0,0.09); }
  .jc-nav-inner { display:flex; align-items:center; justify-content:space-between; height:72px; gap:24px; max-width:1200px; margin:0 auto; padding:0 40px; }
  .jc-nav-logo img { height:52px; width:auto; display:block; }
  .jc-nav-links { display:none; align-items:center; gap:36px; }
  @media(min-width:900px){ .jc-nav-links { display:flex; } }
  .jc-nav-links a { font-size:0.875rem; font-weight:500; color:#6b6560; text-decoration:none; transition:color 0.2s ease; position:relative; font-family:'Inter',sans-serif; }
  .jc-nav-links a::after { content:''; position:absolute; bottom:-3px; left:0; width:0; height:1px; background:#8b5cf6; transition:width 0.3s ease; }
  .jc-nav-links a:hover { color:#0f0d0b; } .jc-nav-links a:hover::after { width:100%; }
  .jc-nav-actions { display:none; align-items:center; gap:12px; }
  @media(min-width:900px){ .jc-nav-actions { display:flex; } }
  .jc-btn { display:inline-flex; align-items:center; padding:9px 20px; border-radius:6px; font-family:'Inter',sans-serif; font-size:0.75rem; font-weight:600; text-decoration:none; cursor:pointer; transition:background 0.2s ease, transform 0.2s ease, color 0.2s ease, border-color 0.2s ease; border:none; }
  .jc-btn-primary { background:#6b3fd4; color:#fff; } .jc-btn-primary:hover { background:#8b5cf6; transform:scale(1.02); }
  .jc-btn-ghost { background:transparent; color:#0f0d0b; border:1px solid rgba(0,0,0,0.18); } .jc-btn-ghost:hover { border-color:#6b3fd4; color:#6b3fd4; transform:scale(1.02); }
  .jc-hamburger { display:flex; flex-direction:column; gap:5px; cursor:pointer; padding:8px; background:none; border:none; }
  @media(min-width:900px){ .jc-hamburger { display:none; } }
  .jc-hamburger span { display:block; width:22px; height:2px; background:#0f0d0b; border-radius:2px; transition:transform 0.3s ease, opacity 0.2s ease; }
  .jc-hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
  .jc-hamburger.open span:nth-child(2) { opacity:0; }
  .jc-hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
  .jc-mobile-menu { display:none; position:fixed; inset:0; background:#fff; z-index:10001; flex-direction:column; align-items:center; justify-content:center; gap:40px; }
  .jc-mobile-menu.open { display:flex; }
  .jc-mobile-menu a { font-family:'Playfair Display',Georgia,serif; font-size:2rem; font-weight:700; color:#6b6560; text-decoration:none; transition:color 0.2s ease; }
  .jc-mobile-menu a:hover { color:#0f0d0b; }
  .jc-mobile-actions { display:flex; flex-direction:column; align-items:center; gap:12px; margin-top:16px; }

  /* Contact Modal */
  .jcm-overlay {
    display:none; position:fixed; inset:0; z-index:2000;
    background:rgba(15,13,11,0.55); backdrop-filter:blur(4px); -webkit-backdrop-filter:blur(4px);
    align-items:center; justify-content:center; padding:20px;
  }
  .jcm-overlay.open { display:flex; }
  .jcm-card {
    background:#fff; border-radius:20px; width:100%; max-width:480px;
    box-shadow:0 20px 60px rgba(0,0,0,0.18); overflow:hidden;
    animation:jcmSlideIn 0.28s cubic-bezier(0.34,1.26,0.64,1) both;
  }
  @keyframes jcmSlideIn { from { opacity:0; transform:translateY(24px) scale(0.97); } to { opacity:1; transform:none; } }
  .jcm-head {
    background:linear-gradient(135deg,#6b3fd4 0%,#8b5cf6 100%);
    padding:24px 28px 20px; display:flex; align-items:flex-start; justify-content:space-between;
  }
  .jcm-head-text strong { display:block; font-family:'Playfair Display',Georgia,serif; font-size:1.25rem; font-weight:700; color:#fff; line-height:1.2; }
  .jcm-head-text span { font-size:0.8125rem; color:rgba(255,255,255,0.72); margin-top:4px; display:block; }
  .jcm-close { background:none; border:none; cursor:pointer; padding:2px; line-height:0; flex-shrink:0; margin-top:2px; }
  .jcm-close svg { width:20px; height:20px; color:rgba(255,255,255,0.75); transition:color 0.2s; }
  .jcm-close:hover svg { color:#fff; }
  .jcm-body { padding:28px; }
  .jcm-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
  .jcm-group { display:flex; flex-direction:column; gap:7px; margin-bottom:16px; }
  .jcm-group.full { grid-column:1/-1; }
  .jcm-label { font-size:0.75rem; font-weight:600; color:#0f0d0b; letter-spacing:0.02em; font-family:'Inter',sans-serif; }
  .jcm-label .opt { font-weight:400; color:#6b6560; margin-left:3px; }
  .jcm-input {
    width:100%; padding:11px 14px; border:1px solid rgba(0,0,0,0.12); border-radius:6px;
    font-family:'Inter',sans-serif; font-size:0.875rem; color:#0f0d0b; background:#fff;
    outline:none; transition:border-color 0.2s ease, box-shadow 0.2s ease;
  }
  .jcm-input:focus { border-color:#8b5cf6; box-shadow:0 0 0 3px rgba(139,92,246,0.12); }
  .jcm-consent { display:flex; flex-direction:column; gap:14px; margin-bottom:20px; }
  .jcm-check { display:flex; align-items:flex-start; gap:10px; }
  .jcm-check input[type="checkbox"] { width:16px; height:16px; min-width:16px; margin-top:3px; accent-color:#6b3fd4; cursor:pointer; flex-shrink:0; }
  .jcm-check-content { display:flex; flex-direction:column; gap:3px; }
  .jcm-consent-body { font-size:0.8125rem; color:#6b6560; line-height:1.5; font-family:'Inter',sans-serif; }
  .jcm-consent-body.collapsed { display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
  .jcm-consent-toggle { background:none; border:none; padding:0; font-size:0.8125rem; color:#8b5cf6; cursor:pointer; font-family:'Inter',sans-serif; font-weight:500; text-align:left; }
  .jcm-submit {
    width:100%; padding:13px; background:#6b3fd4; color:#fff; border:none; border-radius:6px;
    font-family:'Inter',sans-serif; font-size:0.875rem; font-weight:600; cursor:pointer;
    transition:background 0.2s ease, transform 0.15s ease;
  }
  .jcm-submit:hover { background:#8b5cf6; transform:scale(1.01); }
  .jcm-submit:active { transform:scale(0.98); }
  .jcm-submit:disabled { background:#c4b5fd; cursor:not-allowed; transform:none; }
  .jcm-thanks { display:none; padding:40px 28px; text-align:center; }
  .jcm-thanks svg { width:44px; height:44px; color:#6b3fd4; margin:0 auto 14px; }
  .jcm-thanks strong { display:block; font-family:'Playfair Display',Georgia,serif; font-size:1.25rem; font-weight:700; color:#0f0d0b; margin-bottom:8px; }
  .jcm-thanks p { font-size:0.875rem; color:#6b6560; line-height:1.6; }
.jc-footer { background:#ffffff; border-top:1px solid rgba(0,0,0,0.09); padding:64px 0 0; font-family:'Inter',sans-serif; }
  .jc-footer-inner { width:100%; max-width:1200px; margin:0 auto; padding:0 40px; }
  .jc-footer-grid { display:grid; grid-template-columns:1fr; gap:48px; padding-bottom:64px; }
  @media(min-width:600px){ .jc-footer-grid { grid-template-columns:repeat(2,1fr); } }
  @media(min-width:900px){ .jc-footer-grid { grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; } }
  .jc-footer-logo { display:block; margin-bottom:16px; }
  .jc-footer-logo img { height:52px; width:auto; display:block; }
  .jc-footer-tagline { font-size:0.875rem; color:#6b6560; line-height:1.7; max-width:280px; }
  .jc-footer-col-title { font-size:0.75rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; color:#6b6560; margin-bottom:20px; }
  .jc-footer-col ul { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:12px; }
  .jc-footer-col a { font-size:0.875rem; color:#6b6560; text-decoration:none; transition:color 0.2s ease; }
  .jc-footer-col a:hover { color:#0f0d0b; }
  .jc-footer-bottom { border-top:1px solid rgba(0,0,0,0.09); padding:24px 0; display:flex; flex-wrap:wrap; justify-content:space-between; align-items:center; gap:12px; }
  .jc-footer-bottom p, .jc-footer-bottom a { font-size:0.75rem; color:#6b6560; text-decoration:none; }
  .jc-footer-bottom a:hover { color:#0f0d0b; }
  .jc-footer-legal { display:flex; gap:20px; }
html{overflow-x:hidden}

/* Source: /var/www/joystar/resources.html */
:root {
      --color-bg:         #ffffff;
      --color-surface:    #f5f5f5;
      --color-surface-2:  #ebebeb;
      --color-border:     rgba(0,0,0,0.09);
      --color-accent:     #6b3fd4;
      --color-accent-2:   #8b5cf6;
      --color-gold:       #c9920a;
      --color-green:      #16a34a;
      --color-text:       #0f0d0b;
      --color-text-muted: #6b6560;
      --color-gradient:   linear-gradient(135deg, #6b3fd4 0%, #c9920a 100%);
      --font-display: 'Playfair Display', Georgia, serif;
      --font-body:    'Inter', sans-serif;
      --text-xs:   0.75rem; --text-sm:   0.875rem; --text-base: 1rem;
      --text-lg:   1.125rem; --text-xl:  1.25rem;  --text-2xl:  1.5rem;
      --text-3xl:  2rem;    --text-4xl:  2.75rem;  --text-5xl:  3.75rem;
      --radius-sm: 6px; --radius-md: 12px; --radius-lg: 20px;
      --transition-fast: 0.2s ease; --transition-med: 0.3s cubic-bezier(0.4,0,0.2,1);
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body { background: var(--color-bg); color: var(--color-text); font-family: var(--font-body); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }
    ul, ol { list-style: none; }
    .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    @media (min-width: 768px)  { .container { padding: 0 40px; } }
    @media (min-width: 1200px) { .container { padding: 0 60px; } }
    .section-label { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-accent-2); display: inline-block; margin-bottom: 16px; }
    .section-title { font-family: var(--font-display); font-size: var(--text-3xl); font-weight: 700; line-height: 1.15; color: var(--color-text); }
    @media (min-width: 768px) { .section-title { font-size: var(--text-4xl); } }
    .section-sub { font-size: var(--text-lg); color: var(--color-text-muted); margin-top: 12px; line-height: 1.7; }
    .reveal { opacity: 1; transform: translateY(0); transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1); }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-d1 { transition-delay: 0.05s; } .reveal-d2 { transition-delay: 0.12s; } .reveal-d3 { transition-delay: 0.19s; }
    .btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: var(--radius-sm); font-family: var(--font-body); font-size: var(--text-sm); font-weight: 600; letter-spacing: 0.02em; transition: background var(--transition-fast), transform var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast); cursor: pointer; }
    .btn:active { transform: scale(0.98); }
    .btn-primary { background: var(--color-accent); color: #fff; }
    .btn-primary:hover { background: var(--color-accent-2); transform: scale(1.02); }
    .btn-ghost { background: transparent; color: var(--color-text); border: 1px solid rgba(0,0,0,0.18); }
    .btn-ghost:hover { border-color: var(--color-accent); color: var(--color-accent); transform: scale(1.02); }
    .btn-sm { padding: 9px 20px; font-size: var(--text-xs); }
    /* PAGE HERO */
    .page-hero { padding: 200px 0 80px; background: var(--color-bg); position: relative; overflow: hidden; }
    .page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 15% 40%, rgba(107,63,212,0.07) 0%, transparent 60%), radial-gradient(ellipse 50% 50% at 85% 60%, rgba(201,146,10,0.06) 0%, transparent 55%); pointer-events: none; }
    .page-hero-label { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-accent-2); margin-bottom: 20px; }
    .page-hero-title { font-family: var(--font-display); font-size: var(--text-4xl); font-weight: 800; line-height: 1.1; color: var(--color-text); max-width: 700px; }
    @media (min-width: 768px) { .page-hero-title { font-size: var(--text-5xl); } }
    .page-hero-sub { font-size: var(--text-xl); color: var(--color-text-muted); margin-top: 20px; line-height: 1.7; max-width: 600px; }
    /* CONTENT */
    .content-section { padding: 80px 0; }
    .content-section.surface { background: var(--color-surface); }
    .content-section.surface-2 { background: var(--color-surface-2); }
    .content-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
    @media (min-width: 768px) { .content-grid { grid-template-columns: 1fr 1fr; } }
    .content-grid.thirds { grid-template-columns: 1fr; }
    @media (min-width: 768px) { .content-grid.thirds { grid-template-columns: repeat(3, 1fr); } }
    .content-block h3 { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 700; color: var(--color-text); margin-bottom: 16px; line-height: 1.25; }
    .content-block p { color: var(--color-text-muted); line-height: 1.75; }
    .content-block p + p { margin-top: 14px; }
    .content-block ul { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
    .content-block ul li { color: var(--color-text-muted); padding-left: 20px; position: relative; line-height: 1.65; }
    .content-block ul li::before { content: '—'; position: absolute; left: 0; color: var(--color-accent-2); font-size: var(--text-sm); }
    .card { background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 36px; transition: box-shadow var(--transition-med), transform var(--transition-med); }
    .card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-2px); }
    .card-icon { width: 44px; height: 44px; border-radius: var(--radius-md); background: var(--color-gradient); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
    .card-icon svg { color: white; }
    .card h3 { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; color: var(--color-text); margin-bottom: 12px; }
    .card p { color: var(--color-text-muted); font-size: var(--text-sm); line-height: 1.7; }
    .quote-block { border-left: 3px solid var(--color-accent-2); padding: 24px 32px; background: var(--color-surface); border-radius: 0 var(--radius-md) var(--radius-md) 0; margin: 32px 0; }
    .quote-block p { font-family: var(--font-display); font-size: var(--text-xl); font-style: italic; color: var(--color-text); line-height: 1.55; }
    .section-header { max-width: 700px; margin-bottom: 56px; }
    /* CTA SECTION */
    .cta-section { padding: 80px 0; background: var(--color-text); }
    .cta-section h2 { font-family: var(--font-display); font-size: var(--text-3xl); font-weight: 700; color: white; line-height: 1.2; }
    @media (min-width: 768px) { .cta-section h2 { font-size: var(--text-4xl); } }
    .cta-section p { color: rgba(255,255,255,0.65); font-size: var(--text-lg); margin-top: 16px; max-width: 520px; }
    .cta-inner { display: flex; flex-direction: column; gap: 32px; }
    @media (min-width: 768px) { .cta-inner { flex-direction: row; align-items: center; justify-content: space-between; } }
    .cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
    .btn-white { background: white; color: var(--color-text); }
    .btn-white:hover { background: var(--color-surface); transform: scale(1.02); }
    .btn-outline-white { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.3); }
    .btn-outline-white:hover { border-color: white; transform: scale(1.02); }
    /* FOOTER */
    .footer { background: var(--color-bg); border-top: 1px solid var(--color-border); padding: 64px 0 0; }
    .footer-grid { display: grid; grid-template-columns: 1fr; gap: 48px; padding-bottom: 64px; }
    @media (min-width: 600px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 900px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; } }
    .footer-tagline { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.7; max-width: 280px; }
    .footer-col-title { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-text-muted); margin-bottom: 20px; }
    .footer-col ul { display: flex; flex-direction: column; gap: 12px; }
    .footer-col a { font-size: var(--text-sm); color: var(--color-text-muted); transition: color var(--transition-fast); position: relative; display: inline-block; }
    .footer-col a::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 0; height: 1px; background: var(--color-accent-2); transition: width var(--transition-med); }
    .footer-col a:hover { color: var(--color-text); }
    .footer-col a:hover::after { width: 100%; }
    .footer-bottom { border-top: 1px solid var(--color-border); padding: 24px 0; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px; }
    .footer-bottom p, .footer-bottom a { font-size: var(--text-xs); color: var(--color-text-muted); }
    .footer-bottom a:hover { color: var(--color-text); }
    .footer-legal { display: flex; gap: 20px; }
    section { scroll-margin-top: 72px; }
.jc-nav { position:fixed; top:0; left:0; right:0; z-index:10000; transition:background 0.3s ease, border-color 0.2s ease; border-bottom:1px solid transparent; }
  .jc-nav.scrolled { background:rgba(255,255,255,0.94); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px); border-bottom-color:rgba(0,0,0,0.09); }
  .jc-nav-inner { display:flex; align-items:center; justify-content:space-between; height:72px; gap:24px; max-width:1200px; margin:0 auto; padding:0 40px; }
  .jc-nav-logo img { height:52px; width:auto; display:block; }
  .jc-nav-links { display:none; align-items:center; gap:36px; }
  @media(min-width:900px){ .jc-nav-links { display:flex; } }
  .jc-nav-links a { font-size:0.875rem; font-weight:500; color:#6b6560; text-decoration:none; transition:color 0.2s ease; position:relative; font-family:'Inter',sans-serif; }
  .jc-nav-links a::after { content:''; position:absolute; bottom:-3px; left:0; width:0; height:1px; background:#8b5cf6; transition:width 0.3s ease; }
  .jc-nav-links a:hover { color:#0f0d0b; } .jc-nav-links a:hover::after { width:100%; }
  .jc-nav-actions { display:none; align-items:center; gap:12px; }
  @media(min-width:900px){ .jc-nav-actions { display:flex; } }
  .jc-btn { display:inline-flex; align-items:center; padding:9px 20px; border-radius:6px; font-family:'Inter',sans-serif; font-size:0.75rem; font-weight:600; text-decoration:none; cursor:pointer; transition:background 0.2s ease, transform 0.2s ease, color 0.2s ease, border-color 0.2s ease; border:none; }
  .jc-btn-primary { background:#6b3fd4; color:#fff; } .jc-btn-primary:hover { background:#8b5cf6; transform:scale(1.02); }
  .jc-btn-ghost { background:transparent; color:#0f0d0b; border:1px solid rgba(0,0,0,0.18); } .jc-btn-ghost:hover { border-color:#6b3fd4; color:#6b3fd4; transform:scale(1.02); }
  .jc-hamburger { display:flex; flex-direction:column; gap:5px; cursor:pointer; padding:8px; background:none; border:none; }
  @media(min-width:900px){ .jc-hamburger { display:none; } }
  .jc-hamburger span { display:block; width:22px; height:2px; background:#0f0d0b; border-radius:2px; transition:transform 0.3s ease, opacity 0.2s ease; }
  .jc-hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
  .jc-hamburger.open span:nth-child(2) { opacity:0; }
  .jc-hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
  .jc-mobile-menu { display:none; position:fixed; inset:0; background:#fff; z-index:10001; flex-direction:column; align-items:center; justify-content:center; gap:40px; }
  .jc-mobile-menu.open { display:flex; }
  .jc-mobile-menu a { font-family:'Playfair Display',Georgia,serif; font-size:2rem; font-weight:700; color:#6b6560; text-decoration:none; transition:color 0.2s ease; }
  .jc-mobile-menu a:hover { color:#0f0d0b; }
  .jc-mobile-actions { display:flex; flex-direction:column; align-items:center; gap:12px; margin-top:16px; }

  /* ── Contact Modal ─────────────────────────────────── */
  .jcm-overlay {
    display:none; position:fixed; inset:0; z-index:2000;
    background:rgba(15,13,11,0.55); backdrop-filter:blur(4px); -webkit-backdrop-filter:blur(4px);
    align-items:center; justify-content:center; padding:20px;
  }
  .jcm-overlay.open { display:flex; }
  .jcm-card {
    background:#fff; border-radius:20px; width:100%; max-width:480px;
    box-shadow:0 20px 60px rgba(0,0,0,0.18); overflow:hidden;
    animation:jcmSlideIn 0.28s cubic-bezier(0.34,1.26,0.64,1) both;
  }
  @keyframes jcmSlideIn { from { opacity:0; transform:translateY(24px) scale(0.97); } to { opacity:1; transform:none; } }
  .jcm-head {
    background:linear-gradient(135deg,#6b3fd4 0%,#8b5cf6 100%);
    padding:24px 28px 20px; display:flex; align-items:flex-start; justify-content:space-between;
  }
  .jcm-head-text strong { display:block; font-family:'Playfair Display',Georgia,serif; font-size:1.25rem; font-weight:700; color:#fff; line-height:1.2; }
  .jcm-head-text span { font-size:0.8125rem; color:rgba(255,255,255,0.72); margin-top:4px; display:block; }
  .jcm-close { background:none; border:none; cursor:pointer; padding:2px; line-height:0; flex-shrink:0; margin-top:2px; }
  .jcm-close svg { width:20px; height:20px; color:rgba(255,255,255,0.75); transition:color 0.2s; }
  .jcm-close:hover svg { color:#fff; }
  .jcm-body { padding:28px; }
  .jcm-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
  .jcm-group { display:flex; flex-direction:column; gap:7px; margin-bottom:16px; }
  .jcm-group.full { grid-column:1/-1; }
  .jcm-label { font-size:0.75rem; font-weight:600; color:#0f0d0b; letter-spacing:0.02em; font-family:'Inter',sans-serif; }
  .jcm-label .opt { font-weight:400; color:#6b6560; margin-left:3px; }
  .jcm-input {
    width:100%; padding:11px 14px; border:1px solid rgba(0,0,0,0.12); border-radius:6px;
    font-family:'Inter',sans-serif; font-size:0.875rem; color:#0f0d0b; background:#fff;
    outline:none; transition:border-color 0.2s ease, box-shadow 0.2s ease;
  }
  .jcm-input:focus { border-color:#8b5cf6; box-shadow:0 0 0 3px rgba(139,92,246,0.12); }
  .jcm-consent { display:flex; flex-direction:column; gap:14px; margin-bottom:20px; }
  .jcm-check { display:flex; align-items:flex-start; gap:10px; }
  .jcm-check input[type="checkbox"] { width:16px; height:16px; min-width:16px; margin-top:3px; accent-color:#6b3fd4; cursor:pointer; flex-shrink:0; }
  .jcm-check-content { display:flex; flex-direction:column; gap:3px; }
  .jcm-consent-body { font-size:0.8125rem; color:#6b6560; line-height:1.5; font-family:'Inter',sans-serif; }
  .jcm-consent-body.collapsed { display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
  .jcm-consent-toggle { background:none; border:none; padding:0; font-size:0.8125rem; color:#8b5cf6; cursor:pointer; font-family:'Inter',sans-serif; font-weight:500; text-align:left; }
  .jcm-submit {
    width:100%; padding:13px; background:#6b3fd4; color:#fff; border:none; border-radius:6px;
    font-family:'Inter',sans-serif; font-size:0.875rem; font-weight:600; cursor:pointer;
    transition:background 0.2s ease, transform 0.15s ease;
  }
  .jcm-submit:hover { background:#8b5cf6; transform:scale(1.01); }
  .jcm-submit:active { transform:scale(0.98); }
  .jcm-submit:disabled { background:#c4b5fd; cursor:not-allowed; transform:none; }
  .jcm-thanks { display:none; padding:40px 28px; text-align:center; }
  .jcm-thanks svg { width:44px; height:44px; color:#6b3fd4; margin:0 auto 14px; }
  .jcm-thanks strong { display:block; font-family:'Playfair Display',Georgia,serif; font-size:1.25rem; font-weight:700; color:#0f0d0b; margin-bottom:8px; }
  .jcm-thanks p { font-size:0.875rem; color:#6b6560; line-height:1.6; }
.jc-footer { background:#ffffff; border-top:1px solid rgba(0,0,0,0.09); padding:64px 0 0; font-family:'Inter',sans-serif; }
  .jc-footer-inner { width:100%; max-width:1200px; margin:0 auto; padding:0 40px; }
  .jc-footer-grid { display:grid; grid-template-columns:1fr; gap:48px; padding-bottom:64px; }
  @media(min-width:600px){ .jc-footer-grid { grid-template-columns:repeat(2,1fr); } }
  @media(min-width:900px){ .jc-footer-grid { grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; } }
  .jc-footer-logo { display:block; margin-bottom:16px; }
  .jc-footer-logo img { height:52px; width:auto; display:block; }
  .jc-footer-tagline { font-size:0.875rem; color:#6b6560; line-height:1.7; max-width:280px; }
  .jc-footer-col-title { font-size:0.75rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; color:#6b6560; margin-bottom:20px; }
  .jc-footer-col ul { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:12px; }
  .jc-footer-col a { font-size:0.875rem; color:#6b6560; text-decoration:none; transition:color 0.2s ease; }
  .jc-footer-col a:hover { color:#0f0d0b; }
  .jc-footer-bottom { border-top:1px solid rgba(0,0,0,0.09); padding:24px 0; display:flex; flex-wrap:wrap; justify-content:space-between; align-items:center; gap:12px; }
  .jc-footer-bottom p, .jc-footer-bottom a { font-size:0.75rem; color:#6b6560; text-decoration:none; }
  .jc-footer-bottom a:hover { color:#0f0d0b; }
  .jc-footer-legal { display:flex; gap:20px; }
html{overflow-x:hidden}

/* Source: /var/www/joystar/blog/index.php */
*, *::before, *::after { box-sizing:border-box; }
    body { margin:0; font-family:'Inter',sans-serif; color:#0f0d0b; background:#fff; padding-top:72px; }

    .blog-hero { text-align:center; padding:64px 40px 48px; max-width:800px; margin:0 auto; }
    .blog-hero h1 { font-family:'Playfair Display',Georgia,serif; font-size:3rem; font-weight:700; margin:0 0 16px; line-height:1.15; }
    .blog-hero p { font-size:1.125rem; color:#6b6560; margin:0; line-height:1.6; }

    .blog-tabs { display:flex; flex-wrap:wrap; justify-content:center; gap:8px; max-width:1200px; margin:0 auto 48px; padding:0 40px; }
    .blog-tab { display:inline-block; padding:8px 20px; border-radius:100px; font-size:0.8125rem; font-weight:600; text-decoration:none; color:#6b6560; background:#f5f5f5; transition:all 0.2s ease; border:1px solid transparent; }
    .blog-tab:hover { color:#0f0d0b; background:#eee; }
    .blog-tab.active { color:#fff; background:#6b3fd4; border-color:#6b3fd4; }

    .blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:32px; max-width:1200px; margin:0 auto; padding:0 40px 64px; }
    @media(max-width:1024px) { .blog-grid { grid-template-columns:repeat(2,1fr); } }
    @media(max-width:640px) { .blog-grid { grid-template-columns:1fr; } .blog-hero h1 { font-size:2.25rem; } .blog-hero { padding:48px 24px 32px; } .blog-tabs, .blog-grid { padding:0 24px; } .blog-grid { padding-bottom:48px; } }

    .blog-card { background:#fff; border:1px solid rgba(0,0,0,0.08); border-radius:12px; overflow:hidden; transition:transform 0.2s ease, box-shadow 0.2s ease; display:flex; flex-direction:column; }
    .blog-card:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,0,0,0.08); }
    .blog-card-img { width:100%; height:180px; object-fit:cover; background:#f5f5f5; }
    .blog-card-body { padding:24px; display:flex; flex-direction:column; flex:1; }
    .blog-card-badge { display:inline-block; padding:4px 12px; border-radius:100px; font-size:0.6875rem; font-weight:600; text-transform:uppercase; letter-spacing:0.06em; color:#6b3fd4; background:rgba(107,63,212,0.08); margin-bottom:12px; width:fit-content; }
    .blog-card-title { font-family:'Playfair Display',Georgia,serif; font-size:1.25rem; font-weight:700; margin:0 0 8px; line-height:1.3; color:#0f0d0b; }
    .blog-card-meta { font-size:0.75rem; color:#6b6560; margin-bottom:12px; }
    .blog-card-summary { font-size:0.875rem; color:#6b6560; line-height:1.6; margin:0 0 16px; flex:1; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
    .blog-card-link { font-size:0.8125rem; font-weight:600; color:#6b3fd4; text-decoration:none; transition:color 0.2s; }
    .blog-card-link:hover { color:#8b5cf6; }
    .blog-card a { text-decoration:none; color:inherit; display:flex; flex-direction:column; height:100%; }

    .blog-pagination { display:flex; justify-content:center; align-items:center; gap:8px; padding:0 40px 80px; }
    .blog-page-link { display:inline-flex; align-items:center; justify-content:center; min-width:40px; height:40px; padding:0 12px; border-radius:8px; font-size:0.875rem; font-weight:500; text-decoration:none; color:#6b6560; background:#f5f5f5; transition:all 0.2s ease; }
    .blog-page-link:hover { color:#0f0d0b; background:#eee; }
    .blog-page-link.active { color:#fff; background:#6b3fd4; }
    .blog-page-link.disabled { opacity:0.4; pointer-events:none; }

    .blog-empty { text-align:center; padding:80px 40px; color:#6b6560; }
    .blog-empty h2 { font-family:'Playfair Display',Georgia,serif; font-size:1.5rem; color:#0f0d0b; margin:0 0 8px; }
    .blog-empty p { font-size:1rem; margin:0; }

/* Source: /var/www/joystar/blog/article.php */
*, *::before, *::after { box-sizing:border-box; }
    body { margin:0; font-family:'Inter',sans-serif; color:#0f0d0b; background:#fff; padding-top:72px; }
    .not-found { text-align:center; padding:120px 40px; }
    .not-found h1 { font-family:'Playfair Display',Georgia,serif; font-size:2.5rem; margin:0 0 16px; }
    .not-found p { color:#6b6560; font-size:1.125rem; margin:0 0 32px; }
    .not-found a { color:#6b3fd4; text-decoration:none; font-weight:600; }
    .not-found a:hover { color:#8b5cf6; }
*, *::before, *::after { box-sizing:border-box; }
    body { margin:0; font-family:'Inter',sans-serif; color:#0f0d0b; background:#fff; padding-top:72px; }

    .article-breadcrumb { max-width:720px; margin:0 auto; padding:32px 24px 0; font-size:0.8125rem; color:#6b6560; }
    .article-breadcrumb a { color:#6b6560; text-decoration:none; transition:color 0.2s; }
    .article-breadcrumb a:hover { color:#6b3fd4; }
    .article-breadcrumb span { margin:0 8px; }

    .article-main { max-width:720px; margin:0 auto; padding:32px 24px 80px; }
    .article-badge { display:inline-block; padding:5px 14px; border-radius:100px; font-size:0.6875rem; font-weight:600; text-transform:uppercase; letter-spacing:0.06em; color:#6b3fd4; background:rgba(107,63,212,0.08); margin-bottom:20px; text-decoration:none; transition:background 0.2s; }
    .article-badge:hover { background:rgba(107,63,212,0.14); }
    .article-main h1 { font-family:'Playfair Display',Georgia,serif; font-size:2.5rem; font-weight:700; margin:0 0 20px; line-height:1.2; }
    @media(max-width:640px) { .article-main h1 { font-size:1.75rem; } }
    .article-source { font-size:0.875rem; color:#6b6560; margin-bottom:40px; line-height:1.6; }
    .article-source a { color:#6b3fd4; text-decoration:none; }
    .article-source a:hover { text-decoration:underline; }

    .article-body p { font-size:1.0625rem; line-height:1.8; color:#333; margin:0 0 24px; }
    .article-body p:last-child { margin-bottom:0; }

    .article-tags { display:flex; flex-wrap:wrap; gap:8px; margin-top:40px; padding-top:32px; border-top:1px solid rgba(0,0,0,0.08); }
    .article-tag { display:inline-block; padding:5px 14px; border-radius:100px; font-size:0.75rem; font-weight:500; color:#6b6560; background:#f5f5f5; text-decoration:none; transition:all 0.2s; }
    .article-tag:hover { color:#0f0d0b; background:#eee; }

    .related-section { background:#f9f9f9; padding:80px 40px; }
    .related-inner { max-width:1200px; margin:0 auto; }
    .related-title { font-family:'Playfair Display',Georgia,serif; font-size:1.75rem; font-weight:700; margin:0 0 40px; text-align:center; }
    .related-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:32px; }
    @media(max-width:1024px) { .related-grid { grid-template-columns:repeat(2,1fr); } }
    @media(max-width:640px) { .related-grid { grid-template-columns:1fr; } .related-section { padding:48px 24px; } }

    .rel-card { background:#fff; border:1px solid rgba(0,0,0,0.08); border-radius:12px; overflow:hidden; transition:transform 0.2s ease, box-shadow 0.2s ease; }
    .rel-card:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,0,0,0.08); }
    .rel-card a { text-decoration:none; color:inherit; display:block; }
    .rel-card-body { padding:24px; }
    .rel-card-badge { display:inline-block; padding:4px 12px; border-radius:100px; font-size:0.6875rem; font-weight:600; text-transform:uppercase; letter-spacing:0.06em; color:#6b3fd4; background:rgba(107,63,212,0.08); margin-bottom:12px; }
    .rel-card-title { font-family:'Playfair Display',Georgia,serif; font-size:1.125rem; font-weight:700; margin:0 0 8px; line-height:1.3; color:#0f0d0b; }
    .rel-card-meta { font-size:0.75rem; color:#6b6560; }

/* WordPress pagination emits page-numbers; match legacy blog pagination. */
.blog-pagination .page-numbers {
  display:inline-flex; align-items:center; justify-content:center; min-width:40px; height:40px; padding:0 12px; border-radius:8px; font-size:0.875rem; font-weight:500; text-decoration:none; color:#6b6560; background:#f5f5f5; transition:all 0.2s ease;
}
.blog-pagination .page-numbers:hover { color:#0f0d0b; background:#eee; }
.blog-pagination .page-numbers.current { color:#fff; background:#6b3fd4; }
body { padding-top: 72px; }

/* Guard migrated logo blocks from stretching or crowding their cards. */
.portfolio-card-logo img {
  max-width: min(100%, 160px);
  max-height: 34px;
}
.portfolio-card-name,
.portfolio-card-desc {
  margin: 0;
}
.portfolio-feature-name img,
.portfolio-logo img {
  max-width: 220px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* WordPress wpautop can inject empty paragraph tags between imported card divs.
   In CSS grids those paragraphs become blank cells, breaking the intended 3-up rows. */
.funds-grid > p:empty,
.portfolio-grid > p:empty {
  display: none !important;
}

@media (min-width: 768px) {
  .funds-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Print/PDF hardening: browsers often disable background graphics in Save as PDF. */
@media print {
  * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  html,
  body {
    background: #fff !important;
    color: #0f0d0b !important;
    overflow: visible !important;
  }

  body {
    padding-top: 0 !important;
  }

  .jc-nav {
    position: static !important;
    background: #fff !important;
    border-bottom: 1px solid rgba(0,0,0,0.16) !important;
    box-shadow: none !important;
  }

  .jc-nav-actions,
  .jc-hamburger,
  .jc-mobile-menu,
  .jcm-overlay,
  .hero-bg,
  .hero-grid {
    display: none !important;
  }

  .hero {
    min-height: auto !important;
    padding: 72px 0 64px !important;
    overflow: visible !important;
  }

  .hero-overline,
  .hero-headline,
  .hero-sub,
  .hero-ctas,
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }

  .hero-headline,
  .positioning-quote,
  .section-title,
  .page-hero-title,
  .related-title {
    break-after: avoid;
  }

  .hero-headline .strikethrough,
  .positioning-quote em,
  .philosophy-word.muted,
  .philosophy-word {
    background: none !important;
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
    -webkit-text-fill-color: currentColor !important;
    color: #6b3fd4 !important;
  }

  .hero-headline .strikethrough::after {
    background: #6b3fd4 !important;
    width: 100% !important;
    animation: none !important;
  }

  .btn,
  .jc-btn,
  .fund-link,
  .portfolio-feature-link,
  .portfolio-invest-link {
    background: transparent !important;
    border: 1px solid #6b3fd4 !important;
    color: #6b3fd4 !important;
    box-shadow: none !important;
    text-decoration: none !important;
  }

  .positioning,
  .funds,
  .portfolio,
  .why,
  .metrics,
  .ratings,
  .philosophy,
  .contact,
  .content-section,
  .policy-body,
  .related-section {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  .fund-card,
  .portfolio-feature,
  .portfolio-tile,
  .why-card,
  .rating-card,
  .contact-path,
  .card,
  .blog-card,
  .rel-card {
    background: #fff !important;
    border: 1px solid rgba(0,0,0,0.18) !important;
    box-shadow: none !important;
    break-inside: avoid !important;
  }

  .portfolio-logo img,
  .jc-footer-logo img,
  .jc-nav-logo img {
    max-height: 52px !important;
    width: auto !important;
  }

  a[href^="mailto:"]::after,
  a[href^="tel:"]::after {
    content: "" !important;
  }
}

@media print {
  .hero {
    padding: 36px 0 28px !important;
  }
  .hero-headline {
    font-size: 46pt !important;
    line-height: 1.03 !important;
    margin-bottom: 18px !important;
    max-width: 100% !important;
  }
  .hero-sub {
    font-size: 16pt !important;
    line-height: 1.45 !important;
    margin-bottom: 24px !important;
    max-width: 640px !important;
  }
  .hero-ctas {
    gap: 24px !important;
  }
  .positioning,
  .funds,
  .portfolio,
  .why,
  .metrics,
  .ratings,
  .philosophy,
  .contact {
    padding-top: 28px !important;
    padding-bottom: 36px !important;
  }

  .section-header,
  .funds-header,
  .portfolio-header,
  .why-header,
  .ratings-header {
    margin-bottom: 18px !important;
  }

  .section-title {
    font-size: 24pt !important;
    line-height: 1.12 !important;
    margin-bottom: 8px !important;
  }

  .section-subtitle,
  .portfolio-feature-desc,
  .fund-desc,
  .portfolio-card-desc,
  .why-desc,
  .rating-note,
  .contact-path-desc {
    font-size: 9.5pt !important;
    line-height: 1.38 !important;
  }

  .funds-grid,
  .why-grid,
  .ratings-grid,
  .contact-paths {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .portfolio-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .fund-card,
  .portfolio-card,
  .portfolio-feature,
  .why-item,
  .rating-card,
  .contact-path,
  .card,
  .blog-card,
  .rel-card {
    border-radius: 8px !important;
    padding: 14px !important;
    min-height: 0 !important;
    height: auto !important;
    overflow: hidden !important;
  }

  .fund-card::before,
  .portfolio-feature::before {
    display: none !important;
  }

  .fund-icon,
  .why-icon {
    width: 28px !important;
    height: 28px !important;
    margin-bottom: 8px !important;
  }

  .fund-name,
  .portfolio-card-name,
  .why-title,
  .rating-company,
  .contact-path-title {
    font-size: 13pt !important;
    line-height: 1.2 !important;
    margin-bottom: 5px !important;
  }

  .fund-desc {
    margin-bottom: 10px !important;
  }

  .fund-link,
  .portfolio-feature-link,
  .portfolio-invest-link {
    display: inline-flex !important;
    width: auto !important;
    min-height: 0 !important;
    margin-top: 8px !important;
    padding: 4px 8px !important;
    border-radius: 6px !important;
    font-size: 8.5pt !important;
    line-height: 1.2 !important;
  }

  .portfolio-feature {
    margin-bottom: 14px !important;
  }

  .portfolio-feature-inner {
    display: grid !important;
    grid-template-columns: 1.35fr 1fr !important;
    gap: 14px !important;
    align-items: start !important;
  }

  .portfolio-feature-name {
    font-size: 18pt !important;
    line-height: 1.1 !important;
    margin-bottom: 4px !important;
  }

  .portfolio-feature-name img,
  .portfolio-logo img {
    max-width: 150px !important;
    max-height: 34px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
  }

  .portfolio-feature-tagline {
    font-size: 10pt !important;
    margin-bottom: 8px !important;
  }

  .mynt-stats {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    margin-top: 8px !important;
  }

  .mynt-stat-row {
    display: contents !important;
  }

  .mynt-stat strong {
    font-size: 15pt !important;
  }

  .mynt-stat span,
  .portfolio-card-tag,
  .rating-ticker,
  .rating-badge {
    font-size: 7.5pt !important;
    letter-spacing: 0.03em !important;
  }

  .portfolio-card {
    display: grid !important;
    grid-template-columns: 150px minmax(0, 1fr) 150px !important;
    align-items: center !important;
    column-gap: 10px !important;
    row-gap: 3px !important;
  }

  .portfolio-card-logo {
    width: 150px !important;
    height: 28px !important;
    justify-content: flex-start !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
  }

  .portfolio-card-logo img {
    max-width: 146px !important;
    max-height: 22px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
  }

  .portfolio-card > div:not(.portfolio-card-logo) {
    min-width: 0 !important;
    grid-column: 2 !important;
    grid-row: 1 / span 2 !important;
  }

  .portfolio-card-name {
    font-size: 11pt !important;
    line-height: 1.15 !important;
    margin: 0 0 2px !important;
  }

  .portfolio-card-desc {
    display: none !important;
  }

  .portfolio-card-tag {
    padding: 2px 6px !important;
    margin: 0 !important;
    justify-self: end !important;
    white-space: nowrap !important;
    grid-column: 3 !important;
    grid-row: 1 / span 2 !important;
  }

  .rating-card-header {
    margin-bottom: 10px !important;
    gap: 6px !important;
  }

  .rating-upside {
    font-size: 24pt !important;
    margin-bottom: 4px !important;
  }

  .metrics {
    padding-top: 22px !important;
    padding-bottom: 22px !important;
  }

  .metrics-grid {
    gap: 12px !important;
  }
}
