/* Page layout styles (not part of the widget) */
    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: #050505;
      color: #ffffff;
      font-family: 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    /* Site nav */
    .site-
.site-nav-logo {
      font-family: 'Oswald', sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #D4AF37;
      text-decoration: none;
    }

    .site-nav-links {
      display: flex;
      gap: 24px;
      list-style: none;
    }

    .site-nav-links a {
      color: #a3a3a3;
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: color 0.2s;
    }

    .site-nav-links a:hover,
    .site-nav-links a.active {
      color: #D4AF37;
    }

    /* Hero section */
    .calc-hero {
      padding: 100px 24px 60px;
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
    }

    .calc-hero-eyebrow {
      display: inline-block;
      padding: 6px 16px;
      background: rgba(212, 175, 55, 0.1);
      border: 1px solid rgba(212, 175, 55, 0.25);
      border-radius: 50px;
      font-family: 'Oswald', sans-serif;
      font-size: 0.8rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #D4AF37;
      margin-bottom: 20px;
    }

    .calc-hero-title {
      font-family: 'Oswald', sans-serif;
      font-size: 3rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      line-height: 1.1;
      margin-bottom: 16px;
    }

    .calc-hero-title .gold {
      color: #D4AF37;
    }

    .calc-hero-desc {
      font-size: 1.1rem;
      color: #a3a3a3;
      line-height: 1.6;
      max-width: 600px;
      margin: 0 auto;
    }

    /* Calculator wrapper */
    .calc-wrapper {
      padding: 20px 24px 80px;
      max-width: 780px;
      margin: 0 auto;
      width: 100%;
    }

    .calc-learn-cta {
      text-align: center;
      margin-top: 18px;
    }

    .calc-learn-cta a {
      color: #cd7f32;
      text-decoration: none;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      font-size: 0.9rem;
    }

    .calc-learn-cta a:hover { color: #D4AF37; }

    /* Info section */
    .calc-info {
      padding: 60px 24px;
      max-width: 720px;
      margin: 0 auto;
    }

    .calc-info h3 {
      font-family: 'Oswald', sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #D4AF37;
      margin-bottom: 16px;
    }

    .calc-info p {
      color: #a3a3a3;
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 12px;
    }

    .tier-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 20px;
      list-style: none;
    }

    .tier-list li {
      padding: 10px 14px;
      border-radius: 8px;
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .tier-list li.tier-challenger { background: rgba(156, 163, 175, 0.1); color: #9ca3af; border: 1px solid rgba(156, 163, 175, 0.2); }
    .tier-list li.tier-contender { background: rgba(34, 197, 94, 0.1); color: #22c55e; border: 1px solid rgba(34, 197, 94, 0.2); }
    .tier-list li.tier-expert { background: rgba(239, 68, 68, 0.1); color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.2); }
    .tier-list li.tier-elite { background: rgba(192, 192, 192, 0.1); color: #c0c0c0; border: 1px solid rgba(192, 192, 192, 0.2); }
    .tier-list li.tier-legend { background: rgba(205, 127, 50, 0.12); color: #cd7f32; border: 1px solid rgba(205, 127, 50, 0.35); }
    .tier-list li.tier-freak { background: rgba(168, 85, 247, 0.1); color: #a855f7; border: 1px solid rgba(168, 85, 247, 0.2); }

    /* Footer */
    .site-footer {
      border-top: 1px solid #1a1a1a;
      padding: 30px 24px;
      text-align: center;
      color: #525252;
      font-size: 0.85rem;
      margin-top: auto;
    }

    .site-footer a {
      color: #D4AF37;
      text-decoration: none;
    }

    /* Responsive */
    @media (max-width: 600px) {
      .calc-hero { padding: 90px 20px 40px; }
      .calc-hero-title { font-size: 2rem; }
      .calc-hero-desc { font-size: 1rem; }
      .tier-list { grid-template-columns: repeat(2, 1fr); }
      .site-nav-links { display: none; }
    }
