    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background: #fff;
      color: #1a1a1a;
    }
    
    .hero {
      background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
      color: #fff;
      padding: 1rem 2rem;

      text-align: center;
    }
    
    .hero-container {
      max-width: 700px;
      margin: 0 auto;
    }
    
    .logo {
      max-width: 150px;
      margin-top:.5rem;
      margin-bottom: .5rem;
//      filter: brightness(0) invert(1);
//      animation: fadeIn 0.8s ease-in;
    }
    
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    
    h1 {
      font-size: 2.2rem;
      font-weight: 900;
      line-height: 1.2;
      margin-bottom: 1rem;
      animation: slideDown 0.8s ease-out;
    }
    
    @keyframes slideDown {
      from { transform: translateY(-20px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }
    
    .hook {
      font-size: 1.1rem;
      color: #e0e0e0;
      margin-bottom: 2rem;
      line-height: 1.6;
      animation: slideUp 0.8s ease-out 0.2s both;
    }
    
    @keyframes slideUp {
      from { transform: translateY(20px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }
    
    .form-section {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      padding: 2rem;
      border-radius: 12px;
      margin-bottom: 2rem;
      animation: slideUp 0.8s ease-out 0.3s both;
    }
    
    .form-section h2 {
      font-size: 1.3rem;
      margin-bottom: 1rem;
      color: #fff;
    }
    
    .form-section p {
      color: #ddd;
      margin-bottom: 1.5rem;
      font-size: 0.95rem;
    }

    #signupFrm {
      background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
      color: #fff;
      padding: 1rem 2rem;
      text-align: center;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 12px;
    }

    #signupFrm .form-section {
      background: rgba(255, 255, 255, 0.1);
      padding: 3rem 2rem 2rem 2rem;
      animation: slideUp 0.8s ease-out 0.3s both;
      margin:2rem 1rem;
    }

    
    .form-group {
      margin-bottom: 1rem;
    }
    
    input {
      width: 100%;
      padding: .7rem;
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 6px;
      font-size: 1rem;
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
      font-family: inherit;
    }
    
    input::placeholder {
      color: #999;
    }
    
    input:focus {
      outline: none;
      background: rgba(255, 255, 255, 0.12);
      border-color: #f39c12;
      box-shadow: 0 0 10px rgba(243, 156, 18, 0.3);
    }
    
    button,input[type="button"] {
      width: 100%;
      padding: 1rem;
      background: #f39c12;
      color: #000;
      border: none;
      border-radius: 6px;
      font-size: 1.1rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    button:hover {
      background: #e67e22;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
    }
    
    .disclaimer {
      font-size: 0.8rem;
      color: #aaa;
      margin-top: 1rem;
    }
    
    .justin-photo {
      width: 100%;
      max-width: 280px;
      height: auto;
      border-radius: 12px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.2);
      margin: 2rem auto;
      display: block;
      animation: slideUp 0.8s ease-out 0.4s both;
    }
    
    .photo-caption {
      font-size: 0.85rem;
      color: #1a1a1a;
      font-weight: 600;
      margin-top: -1.5rem;
      margin-bottom: 2rem;
      animation: slideUp 0.8s ease-out 0.45s both;
    }
    
    .content {
      background: #fff;
      padding: 3rem 2rem 0rem 2rem;
    }
    
    .container {
      max-width: 700px;
      margin: 0 auto;
    }
    
    .story-section {
      margin-bottom: 2rem;
      animation: slideUp 0.8s ease-out 0.3s both;
    }
    
    .story-section h2 {
      font-size: 1.4rem;
      margin-bottom: 1rem;
      color: #1a1a1a;
      border-bottom: 3px solid #f39c12;
      padding-bottom: 0.5rem;
    }
    
    .story-section p {
      color: #555;
      margin-bottom: 1rem;
      line-height: 1.8;
    }
    
    .highlight {
      background: #fff3e0;
      border-left: 4px solid #f39c12;
      padding: 1.5rem;
      margin: 1.5rem 0;
      border-radius: 6px;
    }
    
    .metric-box {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin: 2rem 0;
    }
    
    .metric {
      background: #f9f9f9;
      padding: 1.5rem;
      border-radius: 8px;
      border-left: 4px solid #f39c12;
      text-align: center;
    }
    
    .metric-number {
      font-size: 2rem;
      font-weight: 900;
      color: #f39c12;
      margin-bottom: 0.5rem;
    }
    
    .metric-label {
      font-size: 0.9rem;
      color: #666;
    }
    
    .cta-section {
      background: #fff;
      padding: 0rem 2rem 3rem 2rem;
      text-align: center;
    }
    
    .cta-section .container {
      max-width: 700px;
      margin: 0 auto;
    }
    
    .cta-button {
      display: inline-block;
      padding: 1.2rem 2.5rem;
      background: #f39c12;
      color: #000;
      border: none;
      border-radius: 6px;
      font-size: 1.1rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    .cta-button:hover {
      background: #e67e22;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
    }
    
    .footer {
      background: #f0f0f0;
      padding: 2.5rem;
      text-align: center;
      color: #666;
      font-size: 0.75rem;
      line-height: 1.7;
    }
    
    .footer p {
      margin-bottom: 1rem;
    }
    
    .footer p:first-child {
      font-weight: 600;
      color: #333;
      margin-bottom: 1.5rem;
    }
    
    .footer-divider {
      width: 60px;
      height: 1px;
      background: #ddd;
      margin: 1.5rem auto;
    }
    
    .footer-section {
      margin-bottom: 1.5rem;
    }
    
    .footer-section-title {
      font-weight: 600;
      color: #333;
      margin-bottom: 0.5rem;
    }
    
    .profit-highlight {
      color: #FFD700;
      font-weight: bold;
      text-decoration: underline;
    }
    
    @media (max-width: 768px) {
      h1 {
        font-size: 2rem;
      }
      
      .metric-box {
        grid-template-columns: 1fr;
      }
    }
    
    @media (max-width: 480px) {
      h1 {
        font-size: 1.5rem;
      }
      
      input {
        padding: 0.9rem;
        font-size: 16px;
      }
      
      button {
        padding: 1rem;
        font-size: 1rem;
      }
    }

    input {
       margin-bottom:10px;
    }

    .grecaptcha-badge {
       bottom:-20px !important;
    }
