/* === CSS Variables (Brand Colors) === */
    :root {
      --color-natural-bg: #FFFFFF;
      --color-natural-text: #2C3A23;
      --color-natural-heading: #1B2914;
      --color-muted: #6B7280;
      --color-neutral-light: #F3F4F6;
      --color-reddrix-red: #DA251D;
      --color-reddrix-yellow: #FDE910;
      --color-reddrix-green: #377D22;
      --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
      --font-serif: "Libre Baskerville", ui-serif, Georgia, serif;
    }

    /* === Reset & Base === */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-sans);
      background: var(--color-natural-bg);
      color: var(--color-natural-text);
      min-height: 100vh;
      -webkit-font-smoothing: antialiased;
    }
    ::selection { background: var(--color-neutral-light); color: var(--color-natural-heading); }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }
    a { text-decoration: none; color: inherit; }
    input, select { font-family: inherit; }

    /* === Animations === */
    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
    @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes fadeInLeft { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }
    @keyframes fadeInScale { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
    @keyframes slideDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
    @keyframes progressBar { from { width: 0; } to { width: var(--target-width); } }
    @keyframes expandHeight { from { max-height: 0; opacity: 0; } to { max-height: 1000px; opacity: 1; } }
    @keyframes collapseHeight { from { max-height: 1000px; opacity: 1; } to { max-height: 0; opacity: 0; } }

    .animate-fade-in { animation: fadeIn 0.4s ease forwards; }
    .animate-fade-in-up { animation: fadeInUp 0.5s ease forwards; }
    .animate-fade-in-left { animation: fadeInLeft 0.5s ease forwards; }
    .animate-scale-in { animation: fadeInScale 0.4s ease forwards; }
    .animate-pulse { animation: pulse 2s infinite; }

    /* === Scrollbar === */
    .custom-scrollbar::-webkit-scrollbar { width: 6px; height: 6px; }
    .custom-scrollbar::-webkit-scrollbar-track { background: transparent; }
    .custom-scrollbar::-webkit-scrollbar-thumb { background: var(--color-neutral-light); border-radius: 3px; }
    .custom-scrollbar::-webkit-scrollbar-thumb:hover { background: #d1d5db; }

    /* === Navigation === */
    .nav {
      position: fixed; top: 0; width: 100%; z-index: 50;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--color-neutral-light);
      box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }
    .nav-inner {
      max-width: 1280px; margin: 0 auto; padding: 0 24px;
      height: 80px; display: flex; align-items: center; justify-content: space-between;
    }
    .logo-wrap {
      display: flex; align-items: center; gap: 8px; cursor: pointer;
    }
    .logo-box {
      position: relative; padding: 8px 16px;
      background: var(--color-reddrix-green);
      border-radius: 12px; overflow: hidden;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      transform: skewX(-6deg);
      box-shadow: 0 4px 15px rgba(55,125,34,0.2);
      transition: box-shadow 0.2s;
    }
    .logo-box:hover { box-shadow: 0 6px 20px rgba(55,125,34,0.3); }
    .logo-brand { font-family: var(--font-serif); font-weight: 900; color: var(--color-reddrix-red); font-size: 22px; line-height: 1; letter-spacing: -0.5px; }
    .logo-sub { font-family: var(--font-sans); font-weight: 900; color: var(--color-reddrix-yellow); font-size: 9px; line-height: 1.2; letter-spacing: 3px; white-space: nowrap; }
    .logo-dot { position: absolute; top: -8px; right: -8px; width: 20px; height: 20px; background: var(--color-reddrix-yellow); opacity: 0.1; border-radius: 50%; }

    .nav-links { display: flex; align-items: center; gap: 40px; }
    .nav-link {
      font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 3px;
      color: rgba(44,58,35,0.6); transition: color 0.2s;
    }
    .nav-link:hover, .nav-link.active { color: var(--color-reddrix-green); }
    .nav-portal-btn {
      padding: 10px 24px; border-radius: 100px; font-size: 11px; font-weight: 900;
      text-transform: uppercase; letter-spacing: 3px;
      display: flex; align-items: center; gap: 8px;
      transition: all 0.2s; box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .nav-portal-btn.green { background: var(--color-reddrix-green); color: white; }
    .nav-portal-btn.red { background: var(--color-reddrix-red); color: white; }
    .nav-portal-btn:hover { opacity: 0.9; transform: scale(1.02); }
    .nav-mobile-btn { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; color: var(--color-reddrix-green); }
    .mobile-menu {
      display: none; position: absolute; top: 80px; left: 0; width: 100%;
      background: white; border-bottom: 1px solid var(--color-neutral-light);
      box-shadow: 0 10px 40px rgba(0,0,0,0.1); padding: 32px; z-index: 40;
    }
    .mobile-menu.open { display: block; animation: slideDown 0.2s ease; }
    .mobile-menu-links { display: flex; flex-direction: column; gap: 12px; }
    .mobile-nav-btn {
      display: flex; align-items: center; gap: 12px; padding: 16px;
      border-radius: 16px; font-size: 14px; font-weight: 900;
      text-transform: uppercase; letter-spacing: 2px;
      background: rgba(243,244,246,0.3); color: var(--color-natural-text);
      transition: all 0.2s;
    }
    .mobile-nav-btn.active { background: rgba(55,125,34,0.1); color: var(--color-reddrix-green); }
    .mobile-nav-btn.green { background: var(--color-reddrix-green); color: white; }
    .mobile-nav-btn.red { background: var(--color-reddrix-red); color: white; }

    /* === Page Wrapper === */
    .page { display: none; }
    .page.active { display: block; animation: fadeIn 0.4s ease; }

    /* === LANDING PAGE === */
    .hero {
      position: relative; padding-top: 128px; padding-bottom: 80px;
      overflow: hidden; background: white;
    }
    .hero-bg-bar {
      position: absolute; top: 0; left: 0; width: 100%; height: 300px;
      background: var(--color-reddrix-green);
      transform: skewY(-3deg) translateY(-80px);
      transform-origin: top left;
      z-index: 0;
    }
    .hero-inner {
      max-width: 1280px; margin: 0 auto; padding: 0 24px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
      align-items: center; position: relative; z-index: 10;
    }
    .hero-badge {
      display: inline-block; padding: 10px 24px;
      background: var(--color-reddrix-yellow); color: var(--color-reddrix-green);
      font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 3px;
      border-radius: 100px; box-shadow: 0 8px 30px rgba(253,233,16,0.3); margin-bottom: 32px;
    }
    .hero-h1 {
      font-family: var(--font-serif); font-size: clamp(52px, 8vw, 96px); font-weight: 700;
      color: var(--color-natural-heading); line-height: 1; margin-bottom: 32px;
      drop-shadow: 0 1px 2px rgba(0,0,0,0.1);
    }
    .hero-h1 span { color: var(--color-reddrix-green); font-style: italic; }
    .hero-desc { font-size: 20px; line-height: 1.6; color: var(--color-natural-text); max-width: 400px; font-weight: 500; opacity: 0.8; margin-bottom: 40px; }
    .hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
    .hero-cta {
      padding: 20px 48px; background: var(--color-reddrix-green); color: white;
      border-radius: 100px; font-size: 14px; font-weight: 900;
      text-transform: uppercase; letter-spacing: 3px;
      box-shadow: 0 8px 30px rgba(55,125,34,0.3); transition: all 0.2s;
    }
    .hero-cta:hover { transform: scale(1.05); }
    .hero-avatars { display: flex; align-items: center; }
    .hero-avatar {
      width: 48px; height: 48px; border-radius: 50%; border: 4px solid white;
      background: var(--color-neutral-light); overflow: hidden; margin-left: -12px;
    }
    .hero-avatar:first-child { margin-left: 0; }
    .hero-avatar img { width: 100%; height: 100%; object-fit: cover; }
    .hero-agent-count { padding-left: 16px; }
    .hero-agent-count .count { font-size: 14px; font-weight: 900; color: var(--color-reddrix-green); }
    .hero-agent-count .label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(44,58,35,0.6); }

    .hero-image-wrap { position: relative; }
    .hero-image-deco { position: absolute; inset: 0; background: rgba(55,125,34,0.2); border-radius: 64px; transform: rotate(6deg); transition: transform 0.7s; z-index: 0; }
    .hero-image-wrap:hover .hero-image-deco { transform: rotate(3deg); }
    .hero-image-inner {
      position: relative; z-index: 1;
      background: white; border-radius: 64px;
      overflow: hidden; border: 8px solid white;
      box-shadow: 0 25px 60px rgba(0,0,0,0.15);
      aspect-ratio: 4/5; max-width: 450px; max-height: 550px;
    }
    .hero-image-inner img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s; opacity: 0.95; }
    .hero-image-wrap:hover .hero-image-inner img { transform: scale(1.1); }
    .hero-image-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(55,125,34,0.6), transparent, transparent); }
    .hero-badge-float {
      position: absolute; bottom: 40px; left: 40px; right: 40px;
      background: rgba(255,255,255,0.2); backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.3); padding: 24px; border-radius: 24px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.2); display: flex; align-items: center; gap: 16px; color: white;
    }
    .hero-badge-icon {
      width: 48px; height: 48px; background: var(--color-reddrix-yellow);
      border-radius: 16px; display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 15px rgba(253,233,16,0.3); flex-shrink: 0;
    }
    .hero-badge-icon svg { color: var(--color-reddrix-green); }
    .hero-badge-label { font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; opacity: 0.7; }
    .hero-badge-value { font-size: 22px; font-weight: 700; }
    .hero-deco-blob { position: absolute; top: -40px; right: -40px; width: 128px; height: 128px; background: var(--color-reddrix-yellow); border-radius: 50%; filter: blur(48px); opacity: 0.3; }

    /* === Compensation Plan Section === */
    .plan-section { padding: 96px 0; background: rgba(243,244,246,0.3); border-top: 1px solid var(--color-neutral-light); }
    .plan-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
    .plan-card {
      background: var(--color-reddrix-green); border-radius: 48px; padding: 80px;
      color: white; position: relative; overflow: hidden; box-shadow: 0 25px 60px rgba(55,125,34,0.2);
    }
    .plan-card-deco1 { position: absolute; top: -128px; right: -128px; width: 256px; height: 256px; background: rgba(255,255,255,0.1); border-radius: 50%; filter: blur(48px); }
    .plan-card-deco2 { position: absolute; bottom: -128px; left: -128px; width: 256px; height: 256px; background: rgba(253,233,16,0.1); border-radius: 50%; filter: blur(48px); }
    .plan-grid { position: relative; z-index: 10; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
    .plan-eyebrow { font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 6px; color: var(--color-reddrix-yellow); }
    .plan-h2 { font-family: var(--font-serif); font-size: 64px; font-weight: 700; margin: 16px 0 48px; line-height: 1.1; }
    .plan-items { display: flex; flex-direction: column; gap: 24px; }
    .plan-item { display: flex; gap: 24px; }
    .plan-item:hover .plan-item-num { color: var(--color-reddrix-yellow); }
    .plan-item-num { font-size: 22px; font-family: var(--font-serif); color: rgba(253,233,16,0.6); transition: color 0.2s; }
    .plan-item-title { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
    .plan-item-desc { color: rgba(255,255,255,0.6); font-size: 14px; }
    .plan-widget { background: rgba(255,255,255,0.1); backdrop-filter: blur(16px); border-radius: 24px; padding: 40px; border: 1px solid rgba(255,255,255,0.2); }
    .plan-widget-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
    .plan-widget-label { font-size: 14px; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; color: var(--color-reddrix-yellow); }
    .plan-bars { display: flex; flex-direction: column; gap: 32px; margin-bottom: 40px; }
    .plan-bar-track { height: 8px; width: 100%; background: rgba(255,255,255,0.1); border-radius: 100px; overflow: hidden; }
    .plan-bar-fill { height: 100%; background: var(--color-reddrix-yellow); box-shadow: 0 0 15px rgba(253,233,16,0.5); border-radius: 100px; width: 0; transition: width 1.5s ease; }
    .plan-potential { background: rgba(255,255,255,0.05); border-radius: 16px; border: 1px solid rgba(255,255,255,0.1); padding: 24px; text-align: center; }
    .plan-potential-label { font-size: 10px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 4px; }
    .plan-potential-val { font-size: 40px; font-weight: 700; color: var(--color-reddrix-yellow); }

    /* === History Section === */
    .history-section { position: relative; padding: 96px 0; background: white; overflow: hidden; }
    .history-deco-leaf { position: absolute; top: 80px; right: 40px; opacity: 0.1; pointer-events: none; }
    .history-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
    .history-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .history-title-box { display: inline-block; margin-bottom: 48px; }
    .history-title-inner { background: var(--color-reddrix-green); padding: 12px 32px; border-radius: 0 32px 0 32px; box-shadow: 0 8px 25px rgba(55,125,34,0.3); }
    .history-title { font-family: var(--font-sans); font-weight: 900; color: white; font-size: 30px; text-transform: uppercase; letter-spacing: 2px; }
    .history-cards { display: flex; flex-direction: column; gap: 32px; margin-bottom: 40px; }
    .history-card {
      background: rgba(255,255,255,0.4); backdrop-filter: blur(8px);
      border: 1px solid var(--color-neutral-light); padding: 32px; border-radius: 24px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05); transition: box-shadow 0.2s; position: relative;
    }
    .history-card:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
    .history-card-leaf { position: absolute; top: 50%; transform: translateY(-50%); color: var(--color-reddrix-green); }
    .history-card:first-child .history-card-leaf { left: -16px; }
    .history-card:last-child .history-card-leaf { right: -16px; transform: translateY(-50%) rotate(180deg); }
    .history-card-year {
      display: inline-block; margin-bottom: 12px; padding: 6px 12px; border-radius: 999px;
      background: rgba(55,125,34,0.1); color: var(--color-reddrix-green); font-size: 11px;
      font-weight: 900; letter-spacing: 2px; text-transform: uppercase;
    }
    .history-card p { font-size: 20px; line-height: 1.6; color: var(--color-natural-text); font-weight: 500; }
    .history-nav { display: flex; gap: 16px; align-items: center; }
    .history-nav-btn {
      width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--color-reddrix-green);
      display: flex; align-items: center; justify-content: center; color: var(--color-reddrix-green);
      transition: all 0.2s;
    }
    .history-nav-btn:hover { background: var(--color-reddrix-green); color: white; }
    .history-nav-meta { display: flex; align-items: center; gap: 12px; min-height: 28px; }
    .history-position {
      display: inline-flex; align-items: center; justify-content: center; min-width: 60px;
      font-size: 10px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase;
      color: var(--color-muted);
    }
    .history-images { position: relative; }
    .history-img-main {
      position: relative; z-index: 10; width: 100%; aspect-ratio: 1;
      background: rgba(55,125,34,0.1); border-radius: 48px; overflow: hidden;
      border: 8px solid white; box-shadow: 0 25px 60px rgba(0,0,0,0.15);
      transform: skewY(3deg);
    }
    .history-img-main img { width: 100%; height: 100%; object-fit: cover; }
    .history-img-secondary {
      position: absolute; bottom: -40px; left: -40px; z-index: 20;
      width: 50%; aspect-ratio: 1; background: white;
      border-radius: 24px; overflow: hidden; border: 4px solid white;
      box-shadow: 0 12px 40px rgba(0,0,0,0.15); transform: skewX(-6deg);
    }
    .history-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
    .history-img-glow { position: absolute; top: 50%; right: -24px; z-index: 0; width: 256px; height: 256px; background: var(--color-reddrix-green); opacity: 0.2; border-radius: 50%; filter: blur(48px); transform: translateY(-50%); }

    /* === PRODUCT PAGE === */
    .product-header { max-width: 1280px; margin: 0 auto; padding: 128px 24px 80px; text-align: center; position: relative; }
    .product-deco { position: absolute; top: 0; left: 50%; transform: translateX(-50%); z-index: -1; opacity: 0.05; }
    .product-eyebrow { font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 6px; color: var(--color-reddrix-green); margin-bottom: 16px; display: block; }
    .product-h1 { font-family: var(--font-serif); font-size: clamp(48px, 8vw, 96px); font-weight: 700; color: var(--color-natural-heading); line-height: 1; }
    .product-h1 span { color: var(--color-reddrix-green); font-style: italic; }
    .product-main { max-width: 1280px; margin: 0 auto; padding: 0 24px 96px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    .product-img-wrap { position: relative; }
    .product-img-deco { position: absolute; inset: 0; background: rgba(253,233,16,0.2); border-radius: 64px; transform: rotate(-3deg); transition: transform 0.7s; }
    .product-img-wrap:hover .product-img-deco { transform: rotate(0deg); }
    .product-img-card {
      position: relative; background: white; border-radius: 64px;
      padding: 48px; box-shadow: 0 25px 60px rgba(0,0,0,0.1); border: 2px solid var(--color-neutral-light);
      overflow: hidden; display: flex; flex-direction: column; align-items: center; min-height: 600px; justify-content: center;
    }
    .product-img-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(55,125,34,0.05), transparent); }
    .product-bottle-fallback {
      position: relative; z-index: 10; display: flex; flex-direction: column; align-items: center;
    }
    .product-bottle {
      width: 200px; height: 360px; background: linear-gradient(to bottom, var(--color-reddrix-green), var(--color-reddrix-red));
      border-radius: 48px; display: flex; align-items: center; justify-content: center;
      box-shadow: 0 25px 60px rgba(55,125,34,0.4); flex-direction: column; padding: 24px;
    }
    .product-bottle-brand { font-family: var(--font-serif); font-weight: 900; color: white; font-size: 36px; line-height: 1.1; }
    .product-bottle-sub { font-size: 9px; color: var(--color-reddrix-yellow); font-weight: 900; text-transform: uppercase; letter-spacing: 3px; margin-top: 4px; }
    .product-icons { display: flex; gap: 24px; margin-top: 48px; position: relative; z-index: 10; }
    .product-icon-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
    .product-icon-box {
      width: 56px; height: 56px; background: white; border-radius: 16px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08); border: 1px solid var(--color-neutral-light);
      display: flex; align-items: center; justify-content: center; color: var(--color-reddrix-green);
    }
    .product-icon-label { font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; color: var(--color-muted); }
    .product-info { display: flex; flex-direction: column; gap: 40px; }
    .product-h2 { font-family: var(--font-serif); font-size: 48px; font-weight: 700; color: var(--color-natural-heading); line-height: 1.2; }
    .product-h2 span { color: var(--color-reddrix-green); text-decoration: underline; text-decoration-color: var(--color-reddrix-yellow); }
    .product-desc { font-size: 20px; color: var(--color-muted); line-height: 1.6; font-weight: 500; }
    .product-analysis { background: rgba(243,244,246,0.3); border-radius: 40px; padding: 32px; border: 1px solid var(--color-neutral-light); }
    .product-analysis-title { font-size: 12px; font-weight: 900; color: var(--color-reddrix-green); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 24px; }
    .analysis-rows { display: flex; flex-direction: column; gap: 0; }
    .analysis-row { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid white; padding: 12px 0; }
    .analysis-row:last-child { border-bottom: none; }
    .analysis-label { font-size: 14px; font-weight: 900; color: var(--color-natural-heading); }
    .analysis-val { font-size: 14px; font-weight: 900; color: var(--color-reddrix-green); }
    .product-cta {
      width: 100%; background: var(--color-reddrix-green); color: white;
      padding: 24px; border-radius: 32px; font-size: 14px; font-weight: 900;
      text-transform: uppercase; letter-spacing: 3px;
      box-shadow: 0 8px 30px rgba(55,125,34,0.2); transition: all 0.2s;
      display: flex; align-items: center; justify-content: center; gap: 16px;
    }
    .product-cta:hover { transform: scale(1.02); }
    .product-cta:active { transform: scale(0.98); }

    .impact-section { max-width: 1280px; margin: 0 auto; padding: 0 24px 96px; }
    .impact-card { background: var(--color-reddrix-green); border-radius: 64px; padding: 80px; color: white; position: relative; overflow: hidden; }
    .impact-card-deco { position: absolute; top: -128px; right: -128px; width: 384px; height: 384px; background: rgba(255,255,255,0.05); border-radius: 50%; filter: blur(48px); }
    .impact-h3 { font-family: var(--font-serif); font-size: 48px; font-weight: 700; margin-bottom: 64px; text-align: center; position: relative; z-index: 10; }
    .impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; position: relative; z-index: 10; }
    .impact-item { position: relative; }
    .impact-num { font-size: 64px; font-weight: 900; color: rgba(255,255,255,0.1); position: absolute; top: -40px; left: -24px; }
    .impact-name { font-size: 20px; font-weight: 900; margin-bottom: 16px; padding-top: 24px; display: flex; align-items: center; gap: 8px; }
    .impact-name svg { color: var(--color-reddrix-yellow); opacity: 0; transition: opacity 0.2s; width: 16px; height: 16px; }
    .impact-item:hover .impact-name svg { opacity: 1; }
    .impact-desc { color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 500; line-height: 1.6; }

    /* === DASHBOARD PAGE === */
    .dashboard-inner { max-width: 1280px; margin: 0 auto; padding: 112px 24px 80px; }
    .dashboard-header { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 48px; }
    .dashboard-eyebrow { font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 4px; color: rgba(55,125,34,0.6); margin-bottom: 8px; }
    .dashboard-h2 { font-family: var(--font-serif); font-size: 48px; font-weight: 700; color: var(--color-natural-heading); }
    .dashboard-stats {
      display: flex; background: white; padding: 8px; border-radius: 16px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05); border: 1px solid var(--color-neutral-light);
    }
    .dashboard-stat { padding: 8px 24px; }
    .dashboard-stat:first-child { border-right: 1px solid var(--color-neutral-light); }
    .dashboard-stat-label { font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; color: var(--color-muted); margin-bottom: 4px; }
    .dashboard-stat-val { font-size: 18px; font-weight: 900; color: var(--color-reddrix-green); }

    .wallet-row {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 32px;
      margin-bottom: 48px;
      align-items: start;
    }
    .wallet-card {
      background: linear-gradient(135deg, var(--color-reddrix-green), rgba(55,125,34,0.8));
      border-radius: 40px; padding: 40px; color: white;
      box-shadow: 0 25px 60px rgba(55,125,34,0.3); position: relative; overflow: hidden;
    }
    .wallet-card-glow { position: absolute; top: -80px; right: -80px; width: 256px; height: 256px; background: rgba(253,233,16,0.1); border-radius: 50%; filter: blur(48px); transition: transform 0.7s; }
    .wallet-card:hover .wallet-card-glow { transform: scale(1.1); }
    .wallet-card-inner { position: relative; z-index: 10; }
    .wallet-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
    .wallet-badge { display: flex; align-items: center; gap: 12px; }
    .wallet-icon {
      width: 48px; height: 48px; background: rgba(255,255,255,0.2); backdrop-filter: blur(16px);
      border-radius: 16px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.3);
    }
    .wallet-title { font-size: 14px; font-weight: 900; text-transform: uppercase; letter-spacing: 3px; color: rgba(255,255,255,0.8); }
    .wallet-arrow { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); }
    .wallet-rank-spotlight {
      display: flex;
      align-items: center;
      gap: 18px;
      padding: 18px 20px;
      margin-bottom: 24px;
      border-radius: 24px;
      background: linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
      border: 1px solid rgba(255,255,255,0.16);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
    }
    .wallet-rank-spotlight-badge {
      width: 118px;
      height: 118px;
      border-radius: 30px;
      overflow: hidden;
      flex-shrink: 0;
      border: 1px solid rgba(255,255,255,0.24);
      background: rgba(255,255,255,0.06);
      box-shadow: 0 18px 40px rgba(0,0,0,0.18);
    }
    .wallet-rank-spotlight-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .wallet-rank-spotlight-copy {
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .wallet-rank-spotlight-label {
      font-size: 10px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 3px;
      color: rgba(255,255,255,0.7);
    }
    .wallet-rank-spotlight-name {
      font-family: var(--font-serif);
      font-size: clamp(28px, 4vw, 42px);
      line-height: 1;
      font-weight: 700;
      color: white;
    }
    .wallet-rank-spotlight-meta {
      font-size: 12px;
      font-weight: 800;
      color: rgba(255,255,255,0.75);
      text-transform: uppercase;
      letter-spacing: 1.8px;
    }
    .wallet-rank-spotlight-next {
      font-size: 12px;
      font-weight: 900;
      color: var(--color-reddrix-yellow);
      text-transform: uppercase;
      letter-spacing: 1.6px;
    }
    .wallet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: end; }
    .wallet-label { font-size: 11px; font-weight: 900; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 12px; }
    .wallet-amount { font-size: clamp(36px, 5vw, 56px); font-weight: 900; letter-spacing: -1px; margin-bottom: 8px; }
    .wallet-trend { display: flex; align-items: center; gap: 8px; color: var(--color-reddrix-yellow); font-weight: 900; font-size: 12px; text-transform: uppercase; letter-spacing: 2px; }
    .wallet-actions { display: flex; flex-direction: column; gap: 16px; }
    .withdraw-btn {
      width: 100%; background: var(--color-reddrix-yellow); color: var(--color-reddrix-green);
      padding: 16px; border-radius: 16px; font-size: 11px; font-weight: 900;
      text-transform: uppercase; letter-spacing: 3px;
      box-shadow: 0 8px 25px rgba(253,233,16,0.3); transition: all 0.2s;
    }
    .withdraw-btn:hover { transform: scale(1.02); }
    .withdraw-btn:active { transform: scale(0.98); }
    .wallet-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .wallet-mini {
      background: rgba(255,255,255,0.1); backdrop-filter: blur(16px);
      padding: 16px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.1); text-align: center;
    }
    .wallet-mini-label { font-size: 9px; font-weight: 900; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 4px; }
    .wallet-mini-val { font-size: 14px; font-weight: 900; }
    .wallet-rankings {
      margin-top: 24px;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,0.2);
    }
    .wallet-rankings-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 16px;
      margin-bottom: 14px;
      flex-wrap: wrap;
    }
    .wallet-rankings-label {
      font-size: 10px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: rgba(255,255,255,0.65);
      margin-bottom: 4px;
    }
    .wallet-current-rank {
      font-size: 13px;
      font-weight: 900;
      color: white;
      letter-spacing: 0.2px;
    }
    .wallet-next-rank {
      font-size: 11px;
      font-weight: 800;
      color: var(--color-reddrix-yellow);
      text-transform: uppercase;
      letter-spacing: 1px;
      white-space: nowrap;
    }
    .wallet-rankings-grid {
      max-height: 210px;
      overflow-y: auto;
      display: grid;
      grid-template-columns: 1fr;
      gap: 8px;
      padding-right: 6px;
    }
    .wallet-rank-item {
      border: 1px solid rgba(255,255,255,0.18);
      background: rgba(255,255,255,0.08);
      border-radius: 14px;
      padding: 10px 12px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      transition: transform 0.2s ease, border-color 0.2s ease;
    }
    .wallet-rank-topline {
      display: flex;
      align-items: center;
      gap: 8px;
      min-width: 0;
    }
    .wallet-rank-badge {
      width: 30px;
      height: 30px;
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,0.3);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: white;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
      overflow: hidden;
    }
    .wallet-rank-badge-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .wallet-rank-item.current {
      border-color: rgba(253,233,16,0.7);
      background: rgba(253,233,16,0.16);
      box-shadow: 0 0 0 1px rgba(253,233,16,0.2) inset;
    }
    .wallet-rank-item.achieved {
      border-color: rgba(255,255,255,0.35);
      background: rgba(255,255,255,0.13);
    }
    .wallet-rank-item.locked {
      opacity: 0.78;
    }
    .wallet-rank-item:hover {
      transform: translateY(-1px);
      border-color: rgba(255,255,255,0.36);
    }
    .wallet-rank-left {
      display: flex;
      flex-direction: column;
      gap: 2px;
      min-width: 0;
    }
    .wallet-rank-name {
      font-size: 12px;
      font-weight: 900;
      color: white;
      text-transform: uppercase;
      letter-spacing: 1px;
      overflow-wrap: anywhere;
    }
    .wallet-rank-level {
      font-size: 10px;
      color: rgba(255,255,255,0.7);
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    .wallet-rank-right {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 3px;
    }
    .wallet-rank-tier {
      font-size: 9px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      color: rgba(255,255,255,0.8);
    }
    .wallet-rank-reward {
      font-size: 13px;
      font-weight: 900;
      color: white;
      white-space: nowrap;
    }
    .wallet-rank-item.tier-bronze .wallet-rank-badge {
      background: linear-gradient(145deg, #c0834c, #8b4e27);
      color: #fff7e8;
      border-color: rgba(255,221,190,0.45);
    }
    .wallet-rank-item.tier-silver .wallet-rank-badge {
      background: linear-gradient(145deg, #d9e0e7, #8d99a8);
      color: #f8fcff;
      border-color: rgba(240,247,255,0.45);
    }
    .wallet-rank-item.tier-gold .wallet-rank-badge {
      background: linear-gradient(145deg, #f5dc6c, #bf8c1f);
      color: #fffdf2;
      border-color: rgba(255,241,186,0.55);
    }
    .wallet-rank-item.tier-platinum .wallet-rank-badge {
      background: linear-gradient(145deg, #8ee1db, #2f8d98);
      color: #f1ffff;
      border-color: rgba(201,255,251,0.5);
    }
    .wallet-rank-item.tier-diamond .wallet-rank-badge {
      background: linear-gradient(145deg, #8fd7ff, #2c5ccf);
      color: #eef6ff;
      border-color: rgba(197,225,255,0.55);
      box-shadow: 0 0 18px rgba(113,177,255,0.3), inset 0 0 0 1px rgba(255,255,255,0.12);
    }
    .wallet-rank-item.tier-bronze .wallet-rank-tier { color: #f7d4b8; }
    .wallet-rank-item.tier-silver .wallet-rank-tier { color: #e6edf5; }
    .wallet-rank-item.tier-gold .wallet-rank-tier { color: #ffed9a; }
    .wallet-rank-item.tier-platinum .wallet-rank-tier { color: #a8f7ef; }
    .wallet-rank-item.tier-diamond .wallet-rank-tier { color: #b9dbff; }

    .activity-card {
      background: white; border-radius: 40px; border: 1px solid var(--color-neutral-light);
      box-shadow: 0 2px 8px rgba(0,0,0,0.05); padding: 32px; display: flex; flex-direction: column;
      height: clamp(520px, 70vh, 760px);
      min-height: 520px;
      overflow: hidden;
    }
    .activity-header { display: flex; justify-content: space-between; align-items: center; padding: 0 8px; margin-bottom: 32px; }
    .activity-title { font-weight: 900; color: var(--color-natural-heading); font-size: 20px; text-transform: uppercase; letter-spacing: -0.5px; }
    .activity-link { font-size: 10px; font-weight: 900; color: var(--color-reddrix-green); text-transform: uppercase; letter-spacing: 2px; }
    .activity-link:hover { text-decoration: underline; }
    .activity-list { display: flex; flex-direction: column; gap: 12px; overflow-y: auto; max-height: clamp(260px, 40vh, 340px); padding-right: 8px; flex: 1; min-height: 0; scrollbar-width: thin; }
    .tx-item {
      width: 100%; text-align: left; border-radius: 16px; border: 1px solid transparent;
      transition: all 0.2s; overflow: hidden; background: white; padding: 0;
      appearance: none; -webkit-appearance: none; cursor: pointer; display: block;
    }
    .tx-item.expanded { background: rgba(243,244,246,0.3); border-color: rgba(55,125,34,0.3); }
    .tx-item:not(.expanded):hover { border-color: var(--color-neutral-light); }
    .tx-header { padding: 20px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
    .tx-left { display: flex; align-items: center; gap: 16px; min-width: 0; }
    .tx-texts { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
    .tx-right { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; text-align: right; }
    .tx-icon {
      width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
      transition: all 0.2s;
    }
    .tx-icon.green { background: var(--color-reddrix-green); color: white; box-shadow: 0 4px 15px rgba(55,125,34,0.2); }
    .tx-icon.red { background: var(--color-reddrix-red); color: white; }
    .tx-type { font-size: 14px; font-weight: 900; color: var(--color-natural-heading); text-transform: uppercase; letter-spacing: 0.5px; line-height: 1.2; }
    .tx-date { font-size: 11px; font-weight: 700; color: var(--color-muted); line-height: 1.25; }
    .tx-amount { font-size: 16px; font-weight: 900; line-height: 1.2; }
    .tx-amount.green { color: var(--color-reddrix-green); }
    .tx-amount.red { color: var(--color-reddrix-red); }
    .tx-status { font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; color: var(--color-muted); line-height: 1.25; }
    .tx-detail {
      display: grid;
      grid-template-rows: 0fr;
      overflow: hidden;
      transition: grid-template-rows 0.3s ease, opacity 0.25s ease;
      opacity: 0;
    }
    .tx-item.expanded .tx-detail {
      grid-template-rows: 1fr;
      opacity: 1;
    }
    .tx-detail-inner { min-height: 0; padding: 0 20px 20px; border-top: 1px solid rgba(27,41,20,0.05); }
    .tx-detail-box { background: rgba(255,255,255,0.5); border-radius: 12px; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
    .tx-detail-box p { margin: 0; }
    .tx-detail-label { font-size: 9px; font-weight: 900; color: var(--color-muted); text-transform: uppercase; letter-spacing: 2px; display: block; margin-bottom: 4px; }
    .tx-detail-source { font-size: 12px; font-weight: 900; color: var(--color-reddrix-green); }
    .tx-detail-text { font-size: 12px; font-weight: 700; color: var(--color-natural-heading); line-height: 1.5; font-style: italic; overflow-wrap: anywhere; word-break: break-word; }

    /* Genealogy Controls */
    .genealogy-controls {
      display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
      background: white; padding: 16px; border-radius: 24px; border: 1px solid var(--color-neutral-light);
      box-shadow: 0 2px 8px rgba(0,0,0,0.05); gap: 16px; margin-bottom: 32px;
    }
    .view-toggle { display: flex; background: rgba(243,244,246,0.5); padding: 4px; border-radius: 16px; }
    .view-btn {
      padding: 8px 24px; border-radius: 12px; font-size: 12px; font-weight: 900;
      text-transform: uppercase; letter-spacing: 2px; transition: all 0.2s; color: var(--color-muted);
    }
    .view-btn.active { background: white; color: var(--color-reddrix-green); box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
    .view-btn:hover:not(.active) { color: var(--color-reddrix-green); }
    .search-wrap { position: relative; }
    .search-input {
      padding: 10px 16px 10px 40px; background: rgba(243,244,246,0.3);
      border: 1px solid transparent; border-radius: 16px; font-size: 12px; font-weight: 500;
      width: 256px; transition: all 0.2s; outline: none;
    }
    .search-input:focus { background: white; border-color: var(--color-neutral-light); box-shadow: 0 0 0 3px rgba(55,125,34,0.1); }
    .search-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--color-muted); }

    /* Genealogy List */
    .genealogy-panel { display: none; }
    .genealogy-panel.active { display: block; animation: fadeIn 0.3s ease; }
    .genealogy-card { background: white; border-radius: 40px; border: 1px solid var(--color-neutral-light); box-shadow: 0 2px 8px rgba(0,0,0,0.05); overflow: hidden; }
    .genealogy-card-header { padding: 24px 32px; border-bottom: 1px solid var(--color-neutral-light); background: rgba(243,244,246,0.05); display: flex; justify-content: space-between; align-items: center; }
    .genealogy-card-title { font-weight: 700; color: var(--color-natural-heading); display: flex; align-items: center; gap: 8px; }
    .genealogy-expand-btns { display: flex; gap: 16px; }
    .expand-btn { font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; }
    .expand-btn.green { color: var(--color-reddrix-green); }
    .expand-btn.green:hover { text-decoration: underline; }
    .expand-btn.muted { color: var(--color-muted); }
    .expand-btn.muted:hover { text-decoration: underline; }
    .genealogy-list { padding: 24px; overflow-y: auto; max-height: 500px; }

    /* Agent Node */
    .agent-node { width: 100%; }
    .agent-row {
      display: flex; align-items: center; justify-content: space-between;
      padding: 20px; border-radius: 16px; transition: all 0.2s; border: 2px solid transparent;
      cursor: pointer; margin-bottom: 8px;
    }
    .agent-row.expanded { background: rgba(55,125,34,0.05); border-color: rgba(55,125,34,0.2); margin-bottom: 12px; }
    .agent-row:not(.expanded):hover { background: rgba(243,244,246,0.3); }
    .agent-left { display: flex; align-items: center; gap: 20px; }
    .agent-chevron { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; transition: transform 0.2s; flex-shrink: 0; }
    .agent-chevron.collapsed { transform: rotate(-90deg); }
    .agent-chevron svg { color: var(--color-reddrix-green); }
    .agent-avatar {
      width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-weight: 900; font-size: 20px; position: relative; box-shadow: 0 2px 8px rgba(0,0,0,0.1); flex-shrink: 0;
    }
    .agent-avatar.active { background: var(--color-reddrix-green); color: white; }
    .agent-avatar.inactive { background: var(--color-neutral-light); color: var(--color-muted); }
    .agent-status-dot { position: absolute; bottom: -4px; right: -4px; width: 16px; height: 16px; background: #22c55e; border: 4px solid white; border-radius: 50%; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
    .agent-info-name { font-weight: 900; color: var(--color-natural-heading); font-size: 18px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
    .agent-name-text { cursor: help; transition: color 0.2s; text-decoration: underline; text-decoration-style: dotted; text-underline-offset: 4px; }
    .agent-name-text:hover { color: var(--color-reddrix-green); }
    .agent-level-badge { font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 3px; padding: 4px 12px; background: var(--color-reddrix-yellow); color: var(--color-reddrix-green); border-radius: 100px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
    .navigate-btn {
      font-size: 10px; font-weight: 900; background: var(--color-reddrix-green); color: white;
      padding: 6px 16px; border-radius: 8px; transition: all 0.2s; box-shadow: 0 2px 8px rgba(55,125,34,0.3);
    }
    .navigate-btn:hover { background: var(--color-reddrix-red); }
    .navigate-btn:active { transform: scale(0.95); }
    .agent-reg { font-size: 12px; font-weight: 900; color: var(--color-reddrix-green); text-transform: uppercase; letter-spacing: 2px; margin-top: 4px; }
    .agent-right { text-align: right; flex-shrink: 0; }
    .agent-volume { font-size: 20px; font-weight: 900; color: var(--color-reddrix-green); line-height: 1; }
    .agent-status-text { font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 3px; margin-top: 8px; }
    .agent-status-text.active { color: #16a34a; }
    .agent-status-text.pending { color: var(--color-reddrix-yellow); }
    .agent-status-text.inactive { color: var(--color-reddrix-red); }
    .agent-detail-panel { overflow: hidden; transition: max-height 0.3s ease, opacity 0.3s ease; max-height: 0; opacity: 0; }
    .agent-detail-panel.open { max-height: 200px; opacity: 1; }
    .agent-detail-inner { padding: 0 32px 24px 8px; }
    .agent-detail-box { background: white; border-radius: 24px; padding: 24px; border: 2px solid rgba(55,125,34,0.1); display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; box-shadow: inset 0 2px 8px rgba(0,0,0,0.03); }
    .agent-detail-item {}
    .agent-detail-item-label { font-size: 9px; font-weight: 900; color: var(--color-muted); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 4px; display: block; }
    .agent-detail-item-val { font-size: 13px; font-weight: 900; color: var(--color-natural-heading); font-style: italic; }
    .agent-detail-item-val.green { color: var(--color-reddrix-green); font-style: normal; }
    .agent-children { margin-left: 40px; padding-left: 24px; border-left: 2px solid rgba(243,244,246,0.5); margin-top: 8px; margin-bottom: 16px; display: flex; flex-direction: column; gap: 8px; }
    .agent-empty { padding: 80px 0; text-align: center; }
    .agent-empty svg { margin: 0 auto 16px; color: var(--color-neutral-light); }
    .agent-empty p { color: var(--color-muted); font-size: 14px; font-weight: 500; }

    /* Binary Tree */
    .binary-card {
      background: white; border-radius: 48px; border: 1px solid var(--color-neutral-light);
      box-shadow: 0 25px 60px rgba(0,0,0,0.08); padding: 48px 64px;
      display: flex; flex-direction: column; align-items: center; overflow: hidden;
    }
    .binary-header { width: 100%; display: flex; flex-direction: column; margin-bottom: 64px; gap: 24px; }
    .binary-title-row { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 24px; }
    .binary-h3 { font-family: var(--font-serif); font-size: 36px; font-weight: 700; color: var(--color-natural-heading); }
    .binary-sub { font-size: 11px; font-weight: 900; color: var(--color-reddrix-green); text-transform: uppercase; letter-spacing: 6px; margin-top: 8px; }
    .live-badge { display: flex; align-items: center; gap: 12px; padding: 12px 20px; background: #f0fdf4; border-radius: 16px; border: 1px solid #d1fae5; }
    .live-dot { width: 12px; height: 12px; border-radius: 50%; background: #22c55e; animation: pulse 2s infinite; }
    .live-label { font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 3px; color: #15803d; }
    .breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; background: rgba(243,244,246,0.2); padding: 16px; border-radius: 16px; border: 1px solid rgba(243,244,246,0.5); }
    .crumb-btn {
      font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 2px;
      padding: 8px 12px; border-radius: 8px; transition: all 0.2s; color: var(--color-muted);
    }
    .crumb-btn:hover:not(.current) { background: white; color: var(--color-reddrix-green); }
    .crumb-btn.current { background: var(--color-reddrix-green); color: white; box-shadow: 0 2px 8px rgba(55,125,34,0.3); }
    .crumb-sep { color: rgba(55,125,34,0.4); }

    .binary-scroll { width: 100%; overflow-x: auto; padding-bottom: 32px; }
    .binary-tree { min-width: 850px; padding: 48px 0; display: flex; flex-direction: column; align-items: center; }
    .binary-level0 { position: relative; display: flex; flex-direction: column; align-items: center; margin-bottom: 128px; }
    .binary-connector-v { position: absolute; top: 150px; width: 3px; height: 40px; background: rgba(55,125,34,0.2); }
    .binary-connector-h { position: absolute; top: 190px; width: 65%; height: 3px; background: rgba(55,125,34,0.2); border-radius: 100px; }
    .binary-level1 { width: 100%; display: flex; justify-content: space-between; margin-bottom: 128px; position: relative; }
    .binary-level1-item { position: relative; display: flex; flex-direction: column; align-items: center; width: 50%; }
    .binary-connector-v-up { position: absolute; top: -45px; width: 3px; height: 45px; background: rgba(55,125,34,0.2); }
    .binary-connector-v-down { position: absolute; top: 140px; width: 3px; height: 30px; background: rgba(55,125,34,0.2); }
    .binary-connector-h2 { position: absolute; top: 170px; width: 65%; height: 3px; background: rgba(55,125,34,0.2); border-radius: 100px; }
    .binary-level2 { width: 100%; display: flex; justify-content: space-between; }
    .binary-level2-half { width: 50%; display: flex; justify-content: space-around; }

    /* Power of 5 Network Chart - Horizontal Scrollable Levels */
    .binary-tree { padding: 48px 0; display: flex; flex-direction: column; align-items: center; }

    .power5-horizontal-container {
      width: 100%; display: flex; align-items: center; justify-content: center;
      position: relative; padding: 0 20px;
      max-width: 1600px; margin: 0 auto;
    }

    .power5-slides-container {
      width: 100%; overflow-x: auto; overflow-y: visible;
      display: flex; gap: 0; scroll-behavior: smooth;
      scroll-snap-type: x mandatory;
      min-height: 500px;
      -webkit-overflow-scrolling: touch;
      padding: 20px 0;
    }

    .power5-slides-container::-webkit-scrollbar {
      display: none;
    }

    .power5-slides-container {
      -ms-overflow-style: none; scrollbar-width: none;
    }

    .power5-level-slide {
      flex: 0 0 100%; min-width: 100%; display: flex;
      align-items: center; justify-content: center;
      scroll-snap-align: center; scroll-snap-stop: always;
      padding: 0 40px;
    }

    .power5-drilldown-btn {
      padding: 12px 32px; background: var(--color-reddrix-green); color: white;
      border: none; border-radius: 12px; font-weight: 900; font-size: 13px;
      letter-spacing: 2px; text-transform: uppercase; cursor: pointer;
      transition: all 0.3s ease; box-shadow: 0 4px 12px rgba(55,125,34,0.2);
      display: block; margin: 24px auto;
    }

    .power5-drilldown-btn:hover {
      background: var(--color-reddrix-red);
      transform: scale(1.05);
      box-shadow: 0 6px 16px rgba(218,37,29,0.3);
    }

    .power5-drilldown-btn:active {
      transform: scale(0.95);
    }

    .power5-drilldown-btn.power5-back-btn {
      background: rgba(55,125,34,0.15); color: var(--color-reddrix-green);
      border: 2px solid var(--color-reddrix-green);
    }

    .power5-drilldown-btn.power5-back-btn:hover {
      background: var(--color-reddrix-green);
      color: white;
      border-color: var(--color-reddrix-green);
    }

    .power5-level-section { 
      width: 100%; display: flex; flex-direction: column; align-items: center;
      margin-bottom: 0; padding: 20px 0; position: relative;
    }

    .power5-level-section.level-0 { margin-bottom: 0; }
    .power5-level-section.level-1 { margin-bottom: 0; }

    .power5-level-connector-line {
      display: none;
    }

    .power5-level-header { 
      font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: 3px;
      color: var(--color-reddrix-green); margin-bottom: 24px; width: 100%; text-align: center;
      position: relative; padding-top: 0; margin-top: 0;
    }

    .power5-level-section.level-0 .power5-level-header {
      font-size: 15px; letter-spacing: 3px; margin-bottom: 20px;
    }

    .power5-root-wrapper {
      display: flex; justify-content: center; align-items: center;
      padding: 20px; background: rgba(55,125,34,0.05); border-radius: 16px;
      border: 2px solid rgba(55,125,34,0.1);
    }

    /* Level 1 Layout */
    .power5-level-row { 
      width: 100%; display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
      padding: 0 20px; max-width: none; margin: 0 auto;
    }

    .power5-level2-container { 
      width: 100%; display: flex; flex-direction: column; gap: 40px; align-items: center;
      padding: 0 20px; max-width: none; margin: 0 auto;
    }

    /* Level 2 Groups */
    .power5-level2-group { 
      width: 100%; max-width: 800px; display: flex; flex-direction: column; align-items: center;
      padding: 24px; background: linear-gradient(135deg, rgba(55,125,34,0.02) 0%, rgba(55,125,34,0.05) 100%);
      border-radius: 14px; border: 2px solid rgba(55,125,34,0.1);
      position: relative;
    }

    .power5-level2-group::before {
      display: none;
    }

    .power5-group-parent { 
      font-size: 12px; font-weight: 700; color: var(--color-reddrix-green);
      margin-bottom: 20px; text-align: center; position: relative;
      padding: 8px 12px; background: white; border-radius: 8px; 
      border: 2px solid var(--color-reddrix-green); box-shadow: 0 2px 4px rgba(55,125,34,0.06);
    }

    .power5-group-parent-connector {
      display: none;
    }

    /* Level 2 Row */
    .power5-level2-row { 
      width: 100%; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;
    }

    /* Node Styling */
    .power5-level1-node .node-box,
    .power5-level2-node .node-box {
      transition: all 0.3s ease;
    }

    .power5-level1-node:hover .node-box,
    .power5-level2-node:hover .node-box {
      transform: translateY(-8px);
    }

    .power5-level2-node { 
      position: relative; display: flex; flex-direction: column; align-items: center;
      animation: fadeInUp 0.6s ease forwards;
    }

    .power5-level2-node.empty {
      pointer-events: none;
    }

    .node-box { display: flex; flex-direction: column; align-items: center; }
    .node-box.root .node-circle { width: 112px; height: 112px; background: var(--color-reddrix-green); box-shadow: 0 8px 30px rgba(55,125,34,0.3); ring: 8px solid rgba(55,125,34,0.3); }
    .node-circle {
      width: 96px; height: 96px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px; transition: all 0.5s; box-shadow: 0 8px 25px rgba(55,125,34,0.25);
      border: 4px solid white; position: relative;
      background: var(--color-reddrix-green);
    }
    .node-box:not(.root) .node-circle { outline: 4px solid rgba(55,125,34,0.2); }
    .node-box.root .node-circle { outline: 8px solid rgba(55,125,34,0.3); }
    .node-box:not(.root):hover .node-circle { transform: scale(1.1); background: var(--color-reddrix-red); }
    .node-active-dot { position: absolute; top: 8px; right: 8px; width: 24px; height: 24px; background: #22c55e; border-radius: 50%; border: 4px solid white; box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
    .node-btn {
      padding: 12px 24px; background: white; border: 4px solid var(--color-reddrix-green);
      border-radius: 16px; box-shadow: 0 8px 25px rgba(0,0,0,0.1);
      display: flex; flex-direction: column; align-items: center; min-width: 140px;
      transition: all 0.2s; cursor: pointer;
    }
    .node-btn:hover { background: var(--color-reddrix-yellow); border-color: var(--color-reddrix-yellow); transform: scale(1.05); }
    .node-btn:active { transform: scale(0.95); }
    .node-reg { font-family: var(--font-sans); font-weight: 900; font-size: 14px; letter-spacing: 3px; color: var(--color-reddrix-green); text-transform: uppercase; line-height: 1; }
    .node-name { font-size: 14px; font-weight: 900; color: var(--color-natural-heading); letter-spacing: -0.3px; margin-top: 4px; max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-style: italic; }
    .node-vacant { display: flex; flex-direction: column; align-items: center; opacity: 0.2; }
    .node-vacant-circle { width: 64px; height: 64px; border-radius: 50%; border: 4px dashed black; background: white; display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
    .node-vacant-label { padding: 6px 16px; background: var(--color-neutral-light); border: 1px solid rgba(0,0,0,0.1); border-radius: 6px; font-size: 8px; font-weight: 900; letter-spacing: 3px; color: var(--color-muted); }

    /* Network Node Box Styling (New) */
    .network-node-box {
      display: flex; flex-direction: column; align-items: center;
      animation: fadeInUp 0.5s ease forwards;
    }

    .network-node-circle {
      display: flex; align-items: center; justify-content: center;
      border-radius: 50%; background: var(--color-reddrix-green); color: white;
      border: 4px solid white; box-shadow: 0 6px 20px rgba(55,125,34,0.25);
      position: relative; margin-bottom: 12px; flex-shrink: 0;
      transition: all 0.3s ease;
    }

    .network-node-box.root .network-node-circle {
      width: 80px; height: 80px;
      box-shadow: 0 8px 30px rgba(55,125,34,0.35);
      outline: 6px solid rgba(55,125,34,0.2);
    }

    .network-node-box:not(.root) .network-node-circle {
      width: 72px; height: 72px;
      outline: 3px solid rgba(55,125,34,0.15);
    }

    .network-node-box.active:not(.root) .network-node-circle:hover {
      transform: scale(1.08);
      background: var(--color-reddrix-red);
      box-shadow: 0 8px 25px rgba(218,37,29,0.3);
    }

    .network-node-box.inactive .network-node-circle {
      opacity: 0.6;
      filter: grayscale(30%);
    }

    .network-node-status-dot {
      position: absolute; top: 4px; right: 4px;
      width: 18px; height: 18px; border-radius: 50%;
      background: rgba(255,255,255,0.3); border: 2px solid white;
      display: none;
    }

    .network-node-status-dot.active {
      display: block;
      background: #22c55e; box-shadow: 0 2px 8px rgba(34,197,94,0.4);
    }

    .network-node-btn {
      padding: 8px 16px; background: white; border: 3px solid var(--color-reddrix-green);
      border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      min-width: 130px; cursor: pointer; transition: all 0.2s ease;
      gap: 4px;
    }

    .network-node-btn:hover {
      background: var(--color-reddrix-yellow);
      border-color: var(--color-reddrix-yellow);
      transform: scale(1.04);
      box-shadow: 0 6px 16px rgba(253,233,16,0.3);
    }

    .network-node-btn:active {
      transform: scale(0.96);
    }

    .network-node-reg {
      font-weight: 900; font-size: 12px; letter-spacing: 2px;
      color: var(--color-reddrix-green); text-transform: uppercase; line-height: 1;
    }

    .network-node-name {
      font-size: 13px; font-weight: 700; color: var(--color-natural-heading);
      letter-spacing: -0.2px; max-width: 115px; overflow: hidden;
      text-overflow: ellipsis; white-space: nowrap; margin-top: 2px;
    }

    .network-node-vacant {
      display: flex; flex-direction: column; align-items: center;
      opacity: 0.25; animation: fadeIn 0.4s ease forwards;
    }

    .network-node-vacant .network-node-circle {
      width: 72px; height: 72px;
      border: 3px dashed rgba(55,125,34,0.4);
      background: rgba(243,244,246,0.5);
      box-shadow: none;
    }

    .network-node-vacant-label {
      padding: 6px 12px; background: var(--color-neutral-light);
      border: 1px solid rgba(55,125,34,0.2); border-radius: 6px;
      font-size: 10px; font-weight: 900; letter-spacing: 2px;
      color: var(--color-muted); text-transform: uppercase;
      margin-top: 8px;
    }

    .binary-legend { margin-top: 48px; padding: 24px 32px; background: rgba(243,244,246,0.3); border-radius: 32px; width: 100%; display: flex; flex-wrap: wrap; justify-content: center; gap: 32px 48px; border: 1px solid var(--color-neutral-light); }
    .legend-item { display: flex; align-items: center; gap: 16px; }
    .legend-dot { width: 24px; height: 24px; border-radius: 50%; box-shadow: 0 2px 8px rgba(0,0,0,0.1); flex-shrink: 0; }

    /* Commission Panel */
    .commission-panel {
      background: var(--color-reddrix-green); color: white; border-radius: 40px;
      padding: 40px; box-shadow: 0 8px 30px rgba(55,125,34,0.2); position: relative; overflow: hidden;
    }
    .commission-deco { position: absolute; bottom: -32px; right: -32px; width: 192px; height: 192px; opacity: 0.1; transform: rotate(12deg); }
    .commission-h3 { font-family: var(--font-serif); font-size: 24px; font-weight: 700; margin-bottom: 32px; }
    .commission-items { display: flex; flex-direction: column; gap: 32px; }
    .commission-item-label { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 8px; }
    .commission-item-name { font-weight: 500; color: rgba(255,255,255,0.7); }
    .commission-item-amount { font-weight: 700; }
    .commission-bar-track { height: 6px; width: 100%; background: rgba(255,255,255,0.1); border-radius: 100px; overflow: hidden; }
    .commission-bar { height: 100%; background: var(--color-reddrix-yellow); border-radius: 100px; width: 0; transition: width 1s ease; }
    .commission-net { margin-top: 48px; padding: 24px; background: rgba(255,255,255,0.05); border-radius: 16px; border: 1px solid rgba(255,255,255,0.1); }
    .commission-net-label { font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 3px; color: var(--color-reddrix-yellow); margin-bottom: 8px; }
    .commission-net-val { font-size: 40px; font-weight: 700; }
    .commission-net-note { font-size: 10px; color: rgba(255,255,255,0.4); margin-top: 8px; font-style: italic; }

    /* Modal */
    .modal-overlay {
      position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 24px;
      display: none;
    }
    .modal-overlay.open { display: flex; }
    .modal-backdrop { position: absolute; inset: 0; background: rgba(27,41,20,0.6); backdrop-filter: blur(16px); }
    .modal-card {
      position: relative; width: 100%; max-width: 448px; background: white;
      border-radius: 48px; padding: 40px; box-shadow: 0 25px 60px rgba(0,0,0,0.3); overflow: hidden;
      animation: fadeInScale 0.3s ease;
    }
    .modal-top-bar { position: absolute; top: 0; left: 0; width: 100%; height: 8px; background: linear-gradient(to right, var(--color-reddrix-green), var(--color-reddrix-yellow), var(--color-reddrix-red)); }
    .modal-h3 { font-family: var(--font-serif); font-size: 32px; font-weight: 700; color: var(--color-natural-heading); margin-bottom: 8px; }
    .modal-sub { font-size: 14px; color: var(--color-muted); margin-bottom: 32px; font-weight: 500; font-style: italic; }
    .modal-fields { display: flex; flex-direction: column; gap: 24px; margin-bottom: 0; }
    .modal-label { font-size: 10px; font-weight: 900; color: var(--color-muted); text-transform: uppercase; letter-spacing: 3px; display: block; margin-bottom: 8px; }
    .modal-input-wrap { position: relative; }
    .modal-prefix { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); font-weight: 900; color: var(--color-reddrix-green); }
    .modal-input {
      width: 100%; background: rgba(243,244,246,0.3); border: 2px solid transparent;
      border-radius: 16px; padding: 16px 16px 16px 40px; font-weight: 900; font-size: 20px;
      transition: all 0.2s; outline: none; font-family: inherit;
    }
    .modal-input:focus { border-color: var(--color-reddrix-green); background: white; }
    .modal-hint { font-size: 10px; color: var(--color-reddrix-green); font-weight: 700; font-style: italic; text-align: right; margin-top: 8px; }
    .modal-select {
      width: 100%; background: rgba(243,244,246,0.3); border: 2px solid transparent;
      border-radius: 16px; padding: 16px 24px; font-weight: 900; font-size: 14px;
      transition: all 0.2s; outline: none; font-family: inherit; appearance: none;
    }
    .modal-select:focus { border-color: var(--color-reddrix-green); background: white; }
    .modal-withdraw-options {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    .modal-option-btn {
      border: 1px solid rgba(27,41,20,0.12);
      background: rgba(243,244,246,0.55);
      border-radius: 12px;
      padding: 12px 14px;
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      color: var(--color-natural-heading);
      transition: all 0.2s;
    }
    .modal-option-btn.active {
      color: #fff;
      border-color: var(--color-reddrix-green);
      background: linear-gradient(135deg, var(--color-reddrix-green), #2d6e1c);
      box-shadow: 0 10px 24px rgba(55,125,34,0.25);
    }
    .modal-option-btn:hover { transform: translateY(-1px); }
    .modal-btns { display: flex; gap: 16px; padding-top: 16px; }
    .modal-cancel { flex: 1; padding: 16px; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; color: var(--color-muted); transition: color 0.2s; }
    .modal-cancel:hover { color: var(--color-reddrix-red); }
    .modal-confirm {
      flex: 2; background: var(--color-reddrix-green); color: white; padding: 16px; border-radius: 16px;
      font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 3px;
      box-shadow: 0 4px 15px rgba(55,125,34,0.2); transition: all 0.2s;
    }
    .modal-confirm:hover { transform: scale(1.02); }
    .modal-confirm:active { transform: scale(0.98); }

    .modal-payout-summary { margin-top: 24px; }
    .modal-payout-note {
      font-size: 13px; color: var(--color-muted); font-weight: 500; font-style: italic;
      margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid rgba(243,244,246,0.3);
    }
    .modal-payout-card {
      background: rgba(243,244,246,0.3); padding: 16px; border-radius: 12px;
    }
    .modal-payout-value {
      font-size: 15px; font-weight: 600; color: var(--color-natural-text);
      padding: 8px 0; word-break: break-word;
    }
    .modal-payout-details {
      font-size: 14px; font-weight: 500; color: var(--color-natural-text);
      padding: 8px 0; white-space: pre-wrap; word-break: break-word; line-height: 1.4;
    }
    .modal-payout-link {
      display: inline-block; margin-top: 12px; font-size: 12px; font-weight: 700;
      color: var(--color-reddrix-green); text-decoration: none; letter-spacing: 1px;
      transition: all 0.2s;
    }
    .modal-payout-link:hover { opacity: 0.8; transform: translateX(2px); }

    .activity-modal-card { max-width: 640px; }
    .activity-modal-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; margin-bottom: 24px; }
    .activity-modal-close {
      width: 40px; height: 40px; border-radius: 50%; background: rgba(243,244,246,0.8); color: var(--color-muted);
      font-size: 28px; line-height: 1; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
      transition: all 0.2s;
    }
    .activity-modal-close:hover { background: rgba(55,125,34,0.1); color: var(--color-reddrix-green); }
    .activity-modal-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
    .activity-modal-pill, .activity-modal-status {
      padding: 8px 14px; border-radius: 999px; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 2px;
    }
    .activity-modal-pill.green { background: rgba(55,125,34,0.1); color: var(--color-reddrix-green); }
    .activity-modal-pill.red { background: rgba(211,47,47,0.1); color: var(--color-reddrix-red); }
    .activity-modal-status.success { background: rgba(22,163,74,0.1); color: #16a34a; }
    .activity-modal-status.pending { background: rgba(253,233,16,0.18); color: #a16207; }
    .activity-modal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .activity-modal-field {
      background: rgba(243,244,246,0.35); border: 1px solid rgba(27,41,20,0.06); border-radius: 20px; padding: 16px;
    }
    .activity-modal-span { grid-column: 1 / -1; }
    .activity-modal-label { display: block; font-size: 9px; font-weight: 900; color: var(--color-muted); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
    .activity-modal-value { font-size: 18px; font-weight: 900; color: var(--color-natural-heading); }
    .activity-modal-value.green { color: var(--color-reddrix-green); }
    .activity-modal-value.red { color: var(--color-reddrix-red); }
    .activity-modal-source { font-size: 14px; font-weight: 900; color: var(--color-reddrix-green); overflow-wrap: anywhere; }
    .activity-modal-text { margin: 0; font-size: 14px; line-height: 1.6; color: var(--color-natural-text); overflow-wrap: anywhere; }

    /* Footer */
    footer { padding: 80px 0; background: white; border-top: 1px solid var(--color-neutral-light); }
    .footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
    .footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--color-neutral-light); }
    .footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
    .footer-desc { max-width: 280px; font-size: 14px; color: var(--color-natural-text); font-weight: 500; opacity: 0.6; }
    .footer-links { display: flex; gap: 40px; }
    .footer-link { font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; color: rgba(44,58,35,0.6); transition: color 0.2s; }
    .footer-link:hover { color: var(--color-reddrix-green); }
    .footer-join {
      padding: 16px 40px; background: var(--color-reddrix-green); color: white;
      border-radius: 100px; font-size: 14px; font-weight: 900; text-transform: uppercase; letter-spacing: 3px;
      box-shadow: 0 8px 25px rgba(55,125,34,0.1); transition: opacity 0.2s;
    }
    .footer-join:hover { opacity: 0.9; }
    .footer-bottom { padding-top: 32px; text-align: center; font-size: 10px; text-transform: uppercase; letter-spacing: 2px; color: var(--color-muted); font-weight: 700; }

    /* Medium screens */
    @media (max-width: 1100px) {
      .nav-links { gap: 20px; }
      .hero-inner { grid-template-columns: 1fr; gap: 40px; }
      .hero-image-inner { max-width: 100%; }
      .plan-grid { grid-template-columns: 1fr; }
      .plan-card { padding: 56px 48px; }
      .plan-widget { display: none; }
      .history-grid { grid-template-columns: 1fr; gap: 48px; }
      .history-img-secondary { display: none; }
      .product-main { grid-template-columns: 1fr; gap: 40px; }
      .product-img-card { min-height: 480px; }
      .impact-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
      .impact-card { padding: 56px 48px; }
      .impact-h3 { font-size: 40px; }
      .wallet-row { grid-template-columns: 1fr; }
      .wallet-grid { grid-template-columns: 1fr; }
      .wallet-rank-spotlight { align-items: flex-start; }
      .wallet-rank-spotlight-badge { width: 100px; height: 100px; }
      .wallet-rankings-grid { max-height: 240px; }
      .binary-card { padding: 40px 32px; }
      .agent-detail-box { grid-template-columns: 1fr 1fr; }
      .footer-top { gap: 32px; }
    }

    /* Responsive */
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-mobile-btn { display: flex; }
      .hero-inner { grid-template-columns: 1fr; }
      .hero-image-inner { max-width: 100%; max-height: 400px; }
      .plan-grid { grid-template-columns: 1fr; }
      .plan-card { padding: 40px 32px; }
      .plan-h2 { font-size: 48px; }
      .plan-widget { display: none; }
      .history-grid { grid-template-columns: 1fr; }
      .history-img-secondary { display: none; }
      .product-main { grid-template-columns: 1fr; }
      .product-img-card { min-height: 400px; }
      .impact-grid { grid-template-columns: 1fr 1fr; }
      .impact-card { padding: 40px 32px; }
      .impact-h3 { font-size: 36px; }
      .wallet-row { grid-template-columns: 1fr; }
      .wallet-grid { grid-template-columns: 1fr; }
      .wallet-next-rank { white-space: normal; }
      .wallet-rank-spotlight { flex-direction: column; }
      .wallet-rank-spotlight-badge { width: 92px; height: 92px; }
      .wallet-rank-right { align-items: flex-start; }
      .binary-card { padding: 32px 24px; }
      .agent-detail-box { grid-template-columns: 1fr 1fr; }
      .footer-top { flex-direction: column; align-items: center; text-align: center; }
      .footer-brand { align-items: center; }
      .footer-desc { text-align: center; }
    }
    @media (max-width: 480px) {
      .impact-grid { grid-template-columns: 1fr; }
      .search-input { width: 180px; }
      .wallet-rank-item { align-items: flex-start; flex-direction: column; }
      .wallet-rank-reward { font-size: 12px; }
      .wallet-rank-badge { width: 28px; height: 28px; border-radius: 9px; }
    }

