:root {
      --bg: #050814;
      --bg-soft: #0c1020;
      --card: #101424;
      --card-soft: #14192a;
      --primary: #ffcc00;
      --primary-glow: rgba(255,204,0,0.3);
      --primary-soft: rgba(255,204,0,0.1);
      --text-main: #f9fafb;
      --text-muted: #a3a8bd;
      --accent: #22c55e;
      --accent-glow: rgba(34,197,94,0.3);
      --danger: #ef4444;
      --orange: #fb923c;
      --border-soft: #252b43;
      --radius-xl: 32px;
      --radius-lg: 24px;
      --radius-md: 18px;
      --shadow: 0 20px 50px rgba(0,0,0,0.9);
      --glow-shadow: 0 0 30px var(--primary-glow);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: "Noto Kufi Arabic", system-ui, -apple-system, sans-serif;
      -webkit-tap-highlight-color: transparent;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }

    @keyframes pulse-glow {
      0%, 100% { box-shadow: 0 0 20px var(--primary-glow); }
      50% { box-shadow: 0 0 40px var(--primary-glow), 0 0 60px var(--primary-glow); }
    }

    @keyframes slide-in-right {
      from {
        opacity: 0;
        transform: translateX(-30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes slide-in-left {
      from {
        opacity: 0;
        transform: translateX(30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes fade-in-up {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes scale-in {
      from {
        opacity: 0;
        transform: scale(0.9);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    @keyframes shimmer {
      0% { background-position: -1000px 0; }
      100% { background-position: 1000px 0; }
    }

    @keyframes rotate-gradient {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.4; }
    }

    @keyframes bounce-subtle {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-5px); }
    }

    body {
      background: #050814;
      color: var(--text-main);
      min-height: 100vh;
      display: flex;
      justify-content: center;
      padding: 10px 8px 18px;
      position: relative;
      overflow-x: hidden;
    }

    body::before {
      content: '';
      position: fixed;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle at 50% 50%, rgba(255,204,0,0.03) 0%, transparent 50%),
                  radial-gradient(circle at 80% 20%, rgba(34,197,94,0.02) 0%, transparent 40%);
      animation: rotate-gradient 20s linear infinite;
      pointer-events: none;
      z-index: 0;
    }

    .app {
      width: 100%;
      max-width: 480px;
      position: relative;
      z-index: 1;
    }

    .shell {
      background: linear-gradient(150deg, rgba(5,8,20,0.95), rgba(17,22,41,0.95));
      border-radius: 36px;
      border: 1px solid rgba(255,204,0,0.2);
      box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.05);
      padding: 16px 12px 12px;
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(10px);
    }

    .shell::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 200px;
      background: radial-gradient(circle at top center, rgba(255,204,0,0.1) 0%, transparent 70%);
      pointer-events: none;
    }

    @media (min-width: 640px) {
      body {
        padding: 18px 12px 24px;
      }
      .shell {
        padding: 20px 18px 18px;
      }
    }

    /* Enhanced notch with glow */
    .notch {
      width: 90px;
      height: 5px;
      border-radius: 999px;
      background: linear-gradient(90deg, transparent, var(--primary), transparent);
      margin: 0 auto 14px;
      opacity: 0.6;
      animation: pulse-glow 3s ease-in-out infinite;
    }

    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 16px;
      animation: fade-in-up 0.6s ease-out;
    }

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

    .brand-logo {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      overflow: hidden;
      border: 2px solid var(--primary);
      background: linear-gradient(135deg, #020617, #0c1020);
      flex-shrink: 0;
      position: relative;
      animation: float 3s ease-in-out infinite;
      box-shadow: 0 4px 20px var(--primary-glow);
    }

    .brand-logo::before {
      content: '';
      position: absolute;
      inset: -2px;
      border-radius: 16px;
      padding: 2px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: 0.5;
    }

    .brand-logo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .brand-text h1 {
      font-size: 17px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      background: linear-gradient(135deg, var(--primary), #ffe57b);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 800;
    }

    .brand-text p {
      font-size: 11px;
      color: var(--text-muted);
      margin-top: 3px;
      line-height: 1.4;
      font-weight: 500;
    }

    .tag-pill {
      font-size: 10px;
      padding: 6px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255,204,0,0.3);
      color: var(--text-muted);
      background: rgba(4,7,20,0.95);
      white-space: nowrap;
      backdrop-filter: blur(10px);
      box-shadow: 0 4px 15px rgba(0,0,0,0.5);
      animation: slide-in-left 0.6s ease-out 0.2s both;
      font-weight: 600;
    }

    .tag-pill strong {
      color: var(--primary);
      font-weight: 700;
    }

    /* FOMO Alert Banner */
    .fomo-banner {
      border-radius: var(--radius-lg);
      background: linear-gradient(135deg, rgba(251,146,60,0.15), rgba(239,68,68,0.15));
      border: 1px solid rgba(251,146,60,0.4);
      padding: 10px 12px;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
      animation: scale-in 0.6s ease-out 0.2s both;
      position: relative;
      overflow: hidden;
    }

    .fomo-banner::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 200%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
      animation: shimmer 2s infinite;
    }

    .fomo-icon {
      font-size: 24px;
      animation: bounce-subtle 2s ease-in-out infinite;
    }

    .fomo-text {
      flex: 1;
      position: relative;
      z-index: 1;
    }

    .fomo-title {
      font-size: 13px;
      font-weight: 700;
      color: var(--orange);
      margin-bottom: 2px;
    }

    .fomo-subtitle {
      font-size: 11px;
      color: var(--text-muted);
      line-height: 1.5;
      font-weight: 500;
    }

    .live-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--danger);
      animation: blink 1.5s ease-in-out infinite;
      box-shadow: 0 0 10px var(--danger);
    }

    /* Enhanced hero with gradient border */
    .hero-card {
      border-radius: var(--radius-xl);
      background: linear-gradient(135deg, rgba(255,204,0,0.08) 0%, rgba(5,8,20,0.95) 60%);
      border: 1px solid rgba(255,204,0,0.3);
      padding: 16px 14px 14px;
      margin-bottom: 16px;
      position: relative;
      overflow: hidden;
      animation: scale-in 0.6s ease-out 0.3s both;
      box-shadow: 0 10px 40px rgba(255,204,0,0.1);
    }

    .hero-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 200%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,204,0,0.1), transparent);
      animation: shimmer 3s infinite;
    }

    .hero-img {
      border-radius: 24px;
      overflow: hidden;
      margin-bottom: 14px;
      border: 1px solid rgba(255,204,0,0.4);
      background: #020617;
      aspect-ratio: 16 / 9;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      box-shadow: 0 8px 30px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.1);
      transition: transform 0.3s ease;
    }

    .hero-img:hover {
      transform: scale(1.02);
    }

    .hero-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .hero-title {
      font-size: 20px;
      line-height: 1.6;
      margin-bottom: 8px;
      font-weight: 700;
      position: relative;
      z-index: 1;
    }

    .hero-title span {
      background: linear-gradient(135deg, var(--primary), #ffe57b);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 800;
    }

    .hero-sub {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 10px;
      position: relative;
      z-index: 1;
      font-weight: 500;
    }

    .hero-sub span {
      color: var(--primary);
      font-weight: 700;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 12px;
      font-size: 12px;
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(34,197,94,0.15), rgba(34,197,94,0.05));
      border: 1px solid rgba(34,197,94,0.5);
      color: #bbf7d0;
      margin-bottom: 10px;
      position: relative;
      z-index: 1;
      box-shadow: 0 4px 15px rgba(34,197,94,0.2);
      animation: pulse-glow 2s ease-in-out infinite;
      font-weight: 600;
    }

    .hero-badge span {
      font-size: 16px;
      animation: float 2s ease-in-out infinite;
    }

    /* Social Proof */
    .social-proof {
      border-radius: var(--radius-md);
      background: linear-gradient(135deg, rgba(34,197,94,0.08), rgba(5,8,20,0.95));
      border: 1px solid rgba(34,197,94,0.3);
      padding: 10px 12px;
      margin-bottom: 16px;
      animation: fade-in-up 0.6s ease-out 0.35s both;
    }

    .social-proof-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      text-align: center;
    }

    .social-stat {
      padding: 8px 4px;
    }

    .social-stat-value {
      font-size: 16px;
      font-weight: 800;
      color: var(--accent);
      display: block;
      margin-bottom: 2px;
    }

    .social-stat-label {
      font-size: 9px;
      color: var(--text-muted);
      font-weight: 600;
    }

    /* Enhanced counters with stagger animation */
    .counter-section {
      margin-bottom: 16px;
    }

    .counter-title {
      font-size: 14px;
      margin-bottom: 10px;
      color: var(--text-main);
      font-weight: 700;
      animation: fade-in-up 0.6s ease-out 0.4s both;
    }

    .counter-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 10px;
    }

    .counter-card {
      border-radius: var(--radius-md);
      background: linear-gradient(135deg, rgba(20,25,42,0.8), rgba(16,20,36,0.8));
      border: 1px solid rgba(255,204,0,0.15);
      padding: 12px 11px;
      font-size: 11px;
      line-height: 1.7;
      position: relative;
      overflow: hidden;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
    }

    .counter-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--primary), transparent);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .counter-card:hover {
      border-color: rgba(255,204,0,0.4);
      transform: translateY(-4px);
      box-shadow: 0 8px 25px rgba(255,204,0,0.15);
    }

    .counter-card:hover::before {
      opacity: 1;
    }

    .counter-card.animate {
      animation: fade-in-up 0.6s ease-out forwards;
    }

    .counter-card:nth-child(1) { animation-delay: 0.5s; }
    .counter-card:nth-child(2) { animation-delay: 0.6s; }
    .counter-card:nth-child(3) { animation-delay: 0.7s; }
    .counter-card:nth-child(4) { animation-delay: 0.8s; }
    .counter-card:nth-child(5) { animation-delay: 0.9s; }
    .counter-card:nth-child(6) { animation-delay: 1s; }
    .counter-card:nth-child(7) { animation-delay: 1.1s; }

    .counter-label {
      color: var(--text-muted);
      margin-bottom: 6px;
      font-size: 11px;
      font-weight: 500;
    }

    .counter-value {
      font-size: 20px;
      font-weight: 800;
      background: linear-gradient(135deg, var(--primary), #ffe57b);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: inline-block;
    }

    .counter-tag {
      position: absolute;
      left: 10px;
      top: 8px;
      font-size: 9px;
      color: rgba(255,204,0,0.6);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-weight: 700;
    }

    /* Enhanced CTA card */
    .cta-card {
      border-radius: var(--radius-lg);
      background: linear-gradient(135deg, rgba(16,20,36,0.9), rgba(5,8,20,0.9));
      border: 1px solid rgba(255,204,0,0.3);
      padding: 14px 12px 12px;
      margin-bottom: 16px;
      font-size: 12px;
      line-height: 1.9;
      position: relative;
      overflow: hidden;
      animation: scale-in 0.6s ease-out 0.5s both;
      backdrop-filter: blur(10px);
    }

    .cta-card::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,204,0,0.05) 0%, transparent 70%);
      animation: rotate-gradient 10s linear infinite;
      pointer-events: none;
    }

    .cta-card-title {
      font-size: 16px;
      margin-bottom: 8px;
      background: linear-gradient(135deg, var(--primary), #ffe57b);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 800;
      position: relative;
      z-index: 1;
    }

    .cta-card ul {
      padding-right: 20px;
      margin-top: 6px;
      position: relative;
      z-index: 1;
    }

    .cta-card li {
      margin-bottom: 8px;
      transition: transform 0.2s ease;
      font-weight: 500;
    }

    .cta-card li:hover {
      transform: translateX(-3px);
    }

    /* Enhanced steps */
    .steps-section {
      margin-bottom: 16px;
      animation: fade-in-up 0.6s ease-out 0.6s both;
    }

    .section-heading {
      font-size: 14px;
      margin-bottom: 10px;
      color: var(--text-main);
      font-weight: 700;
    }

    .step-card {
      border-radius: var(--radius-md);
      background: linear-gradient(135deg, rgba(20,25,42,0.8), rgba(16,20,36,0.8));
      border: 1px solid rgba(255,204,0,0.2);
      padding: 12px 11px;
      font-size: 12px;
      line-height: 1.9;
      margin-bottom: 8px;
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
    }

    .step-card::before {
      content: '';
      position: absolute;
      right: -100%;
      top: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,204,0,0.05), transparent);
      transition: right 0.5s ease;
    }

    .step-card:hover {
      border-color: rgba(255,204,0,0.4);
      transform: translateX(-3px);
      box-shadow: 0 8px 25px rgba(255,204,0,0.1);
    }

    .step-card:hover::before {
      right: 100%;
    }

    .step-title {
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 4px;
      font-size: 13px;
    }

    /* Testimonials */
    .testimonials-section {
      margin-bottom: 16px;
      animation: fade-in-up 0.6s ease-out 0.65s both;
    }

    .testimonial-card {
      border-radius: var(--radius-md);
      background: linear-gradient(135deg, rgba(20,25,42,0.8), rgba(16,20,36,0.8));
      border: 1px solid rgba(34,197,94,0.2);
      padding: 12px;
      margin-bottom: 8px;
      position: relative;
      backdrop-filter: blur(10px);
    }

    .testimonial-header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 8px;
    }

    .testimonial-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      font-weight: 700;
      color: #000;
    }

    .testimonial-info {
      flex: 1;
    }

    .testimonial-name {
      font-size: 12px;
      font-weight: 700;
      color: var(--text-main);
    }

    .testimonial-status {
      font-size: 10px;
      color: var(--accent);
      font-weight: 600;
    }

    .testimonial-stars {
      color: var(--primary);
      font-size: 14px;
    }

    .testimonial-text {
      font-size: 11px;
      line-height: 1.7;
      color: var(--text-muted);
      font-weight: 500;
    }

    /* Enhanced partners */
    .partners-card {
      border-radius: var(--radius-md);
      background: linear-gradient(135deg, rgba(16,20,36,0.9), rgba(5,8,20,0.9));
      border: 1px solid rgba(255,204,0,0.2);
      padding: 12px 11px;
      font-size: 12px;
      line-height: 1.8;
      margin-bottom: 16px;
      animation: scale-in 0.6s ease-out 0.7s both;
      backdrop-filter: blur(10px);
    }

    .partners-card strong {
      color: var(--text-main);
      font-size: 13px;
      font-weight: 700;
    }

    .partners-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      margin-top: 10px;
    }

    .broker-logo-item {
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid rgba(255,204,0,0.2);
      background: #fff;
      aspect-ratio: 16 / 9;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 8px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }

    .broker-logo-item:hover {
      transform: translateY(-4px);
      border-color: rgba(255,204,0,0.5);
      box-shadow: 0 8px 25px rgba(255,204,0,0.2);
    }

    .broker-logo-item img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .more-brokers {
      grid-column: 1 / -1;
      text-align: center;
      padding: 12px;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(255,204,0,0.1), transparent);
      border: 1px dashed rgba(255,204,0,0.3);
      font-size: 12px;
      color: var(--primary);
      font-weight: 700;
    }


    /* Broker chooser */
    .broker-chooser-card{
      border-radius: var(--radius-lg);
      background: linear-gradient(135deg, rgba(20,25,42,0.85), rgba(5,8,20,0.92));
      border: 1px solid rgba(255,204,0,0.22);
      padding: 14px 12px 12px;
      margin-bottom: 16px;
      backdrop-filter: blur(10px);
      box-shadow: 0 10px 35px rgba(0,0,0,0.55);
    }
    .broker-chooser-head{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:10px;
      margin-bottom: 10px;
    }
    .broker-chooser-title{
      font-size: 14px;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 6px;
    }
    .broker-chooser-sub{
      font-size: 11px;
      line-height: 1.8;
      color: var(--text-muted);
      font-weight: 500;
    }
    .broker-chooser-sub strong{ color: var(--primary); font-weight: 800; }
    .broker-badge{
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display:flex;
      align-items:center;
      justify-content:center;
      background: rgba(255,204,0,0.12);
      border: 1px solid rgba(255,204,0,0.28);
      box-shadow: 0 0 18px rgba(255,204,0,0.18);
      flex-shrink: 0;
    }
    .broker-controls{
      display:grid;
      gap:10px;
    }
    .broker-label{
      font-size: 10px;
      color: var(--text-muted);
      font-weight: 700;
      display:block;
      margin-bottom: 6px;
    }
    .broker-select{
      width:100%;
      border-radius: 16px;
      padding: 12px 12px;
      background: rgba(7,11,25,0.95);
      border: 1px solid rgba(255,204,0,0.25);
      color: var(--text-main);
      outline: none;
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
      transition: all .25s ease;
    }
    .broker-select:focus{
      border-color: rgba(255,204,0,0.6);
      box-shadow: 0 0 0 6px rgba(255,204,0,0.08);
    }
    .broker-calc{
      border-radius: 18px;
      background: rgba(16,20,36,0.65);
      border: 1px solid rgba(255,204,0,0.14);
      padding: 12px 11px;
    }
    .broker-input{
      width:100%;
      border-radius: 16px;
      padding: 12px 12px;
      background: rgba(5,8,20,0.9);
      border: 1px solid rgba(37,43,67,0.9);
      color: var(--text-main);
      outline: none;
      font-size: 12px;
      font-weight: 700;
      transition: all .25s ease;
    }
    .broker-input:focus{
      border-color: rgba(34,197,94,0.6);
      box-shadow: 0 0 0 6px rgba(34,197,94,0.08);
    }
    .broker-calc-row{
      display:grid;
      gap:10px;
      margin-top: 8px;
    }
    .broker-kpi{
      border-radius: 16px;
      padding: 10px 10px;
      background: linear-gradient(135deg, rgba(255,204,0,0.06), rgba(5,8,20,0.75));
      border: 1px solid rgba(255,204,0,0.16);
    }
    .broker-kpi-label{
      font-size: 10px;
      color: var(--text-muted);
      font-weight: 700;
      margin-bottom: 6px;
    }
    .broker-kpi-value{
      font-size: 16px;
      font-weight: 900;
      background: linear-gradient(135deg, var(--primary), #ffe57b);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1.2;
    }
    .broker-table-wrap{
      margin-top: 10px;
      border-radius: 18px;
      overflow:hidden;
      border: 1px solid rgba(255,204,0,0.12);
      background: rgba(7,11,25,0.6);
    }
    .broker-table-title{
      padding: 10px 12px;
      font-size: 11px;
      font-weight: 800;
      color: var(--primary);
      border-bottom: 1px solid rgba(255,204,0,0.12);
      background: rgba(255,204,0,0.06);
    }
    .broker-table{
      width:100%;
      border-collapse: collapse;
      font-size: 11px;
    }
    .broker-table th, .broker-table td{
      padding: 10px 12px;
      border-bottom: 1px solid rgba(37,43,67,0.7);
      text-align: right;
    }
    .broker-table th{
      color: var(--text-muted);
      font-weight: 800;
      background: rgba(5,8,20,0.6);
    }
    .broker-table td{
      color: var(--text-main);
      font-weight: 600;
    }
    .broker-pill{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding: 5px 10px;
      border-radius: 999px;
      border: 1px solid rgba(34,197,94,0.35);
      background: rgba(34,197,94,0.08);
      color: #bbf7d0;
      font-weight: 800;
      font-size: 10px;
      white-space: nowrap;
    }
    .broker-pill.muted{
      border-color: rgba(255,204,0,0.25);
      background: rgba(255,204,0,0.08);
      color: rgba(255,204,0,0.95);
    }
    @media (min-width: 420px){
      .broker-calc-row{ grid-template-columns: 1fr 1fr; }
    }


    /* Quick Links */
    .quick-links {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 8px;
      margin-bottom: 16px;
      animation: fade-in-up 0.6s ease-out 0.75s both;
    }

    .quick-link {
      border-radius: var(--radius-md);
      background: linear-gradient(135deg, rgba(20,25,42,0.8), rgba(16,20,36,0.8));
      border: 1px solid rgba(255,204,0,0.2);
      padding: 12px;
      text-align: center;
      text-decoration: none;
      color: var(--text-main);
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
    }

    .quick-link:hover {
      border-color: rgba(255,204,0,0.5);
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(255,204,0,0.15);
    }

    .quick-link-icon {
      font-size: 24px;
      margin-bottom: 6px;
      display: block;
    }

    .quick-link-text {
      font-size: 11px;
      font-weight: 700;
      color: var(--primary);
    }

    /* disclaimer */
    .disclaimer {
      font-size: 10px;
      color: var(--text-muted);
      line-height: 1.7;
      margin-top: 4px;
      opacity: 0.8;
      font-weight: 500;
    }

    /* Enhanced sticky bottom bar */
    .bottom-bar {
      position: sticky;
      bottom: 0;
      right: 0;
      left: 0;
      margin-top: 10px;
      padding-top: 10px;
      background: linear-gradient(to top, rgba(5,8,20,0.98) 70%, transparent);
      backdrop-filter: blur(20px);
      animation: fade-in-up 0.6s ease-out 0.8s both;
    }

    .btn-main {
      width: 100%;
      border-radius: 999px;
      border: none;
      padding: 15px 18px;
      font-size: 14px;
      font-weight: 800;
      background: linear-gradient(135deg, #ffcc00, #ffe57b);
      color: #17120a;
      box-shadow: 0 10px 40px rgba(255,204,0,0.4), 0 0 0 0 rgba(255,204,0,0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .btn-main::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      background: rgba(255,255,255,0.3);
      transform: translate(-50%, -50%);
      transition: width 0.6s, height 0.6s;
    }

    .btn-main:hover::before {
      width: 300px;
      height: 300px;
    }

    .btn-main:hover {
      transform: translateY(-2px);
      box-shadow: 0 15px 50px rgba(255,204,0,0.5), 0 0 0 8px rgba(255,204,0,0.1);
    }

    .btn-main:active {
      transform: translateY(0);
    }

    .btn-main span {
      font-size: 18px;
      position: relative;
      z-index: 1;
    }

    .btn-main-text {
      position: relative;
      z-index: 1;
    }

    .btn-sub {
      margin-top: 6px;
      width: 100%;
      border-radius: 999px;
      border: 1px solid rgba(255,204,0,0.3);
      background: rgba(7,11,25,0.98);
      color: var(--text-muted);
      padding: 11px 14px;
      font-size: 11px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
      font-weight: 600;
    }

    .btn-sub:hover {
      border-color: rgba(255,204,0,0.5);
      background: rgba(7,11,25,1);
      color: var(--text-main);
      transform: translateY(-1px);
    }

    a.btn-main,
    a.btn-sub,
    a.quick-link {
      text-decoration: none;
    }

    /* Scroll reveal animation */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease-out;
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }
