  :root {
        --sol-gold: #ffca2f;
        --deep-navy: #004987;
        --maroon: #8b1526;
        --charcoal: #1f2128;
        --white: #ffffff;
        --mid: #4b4f58;
        --light: #ffffff;
      }
  
  * {
              margin: 0;
              padding: 0;
              box-sizing: border-box;
          }

          body {
              font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
              background: var(--charcoal);
              color: #1e293b;
              line-height: 1.6;
              overflow-x: hidden;
          }

          .hero {
              position: relative;
              min-height: 100vh;
              display: flex;
              align-items: center;
              justify-content: center;
              background: linear-gradient(135deg,var(--white) 0%, var(--sol-gold) 100%);
              padding: 2rem;
              overflow: hidden;
          }

          .hero::before {
              content: '';
              position: absolute;
              inset: 0;
              background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg%3E%3Cgfill=nonefill-rule=evenodd%3E%3Cgfill=%23fffffffill-opacity=0.05%3E%3Cpathd=M36-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM64V0H4v4H0v2h4v4h2V6h4V4H6z/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
              pointer-events: none;
          }

          .hero-content {
              position: relative;
              text-align: center;
              max-width: 800px;
              z-index: 10;
              padding: 3rem 2rem;
          }

          .hero h1 {
              font-size: clamp(2.5rem, 6vw, 4rem);
              font-weight: 700;
              color: var(--charcoal);
              margin-bottom: 1rem;
              line-height: 1.1;
          }

          .hero p {
              font-size: clamp(1rem, 3vw, 1.25rem);
              color: var(--mid);
              margin-bottom: 2rem;
              max-width: 600px;
              margin-left: auto;
              margin-right: auto;
          }

          /* Popup Modal */
          .popup-overlay {
              position: fixed;
              inset: 0;
              background: rgba(0, 0, 0, 0.6);
              backdrop-filter: blur(8px);
              z-index: 1000;
              display: none;
              opacity: 0;
              transition: opacity 0.3s ease;
              align-items: center;
              justify-content: center;
              padding: 1rem;
          }

          .popup-overlay.active {
              display: flex;
              opacity: 1;
          }

          .popup-modal {
              background: white;
              border-radius: 16px;
              max-width: 500px;
              width: 100%;
              padding: 2.5rem 2rem;
              text-align: center;
              transform: translateY(20px) scale(0.95);
              transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
              box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
          }

          .popup-overlay.active .popup-modal {
              transform: translateY(0) scale(1);
          }

          .popup-header {
              margin-bottom: 1.5rem;
          }

          .popup-header h2 {
              font-size: 1.75rem;
              font-weight: 700;
              color: #1e293b;
              margin-bottom: 0.5rem;
          }

          .popup-header p {
              color: #64748b;
              font-size: 0.95rem;
          }

          .popup-form input[type="email"] {
              width: 100%;
              padding: 1rem 1.25rem;
              border: 2px solid #e2e8f0;
              border-radius: 12px;
              font-size: 1rem;
              outline: none;
              transition: border-color 0.2s;
          }

          /* Popup Modal */
          .popup-overlay {
              position: fixed;
              inset: 0;
              background: rgba(0, 0, 0, 0.6);
              backdrop-filter: blur(8px);
              z-index: 1000;
              display: none;
              opacity: 0;
              transition: opacity 0.3s ease;
              align-items: center;
              justify-content: center;
              padding: 1rem;
          }

          .popup-overlay.active {
              display: flex;
              opacity: 1;
          }

          .popup-modal {
              background: white;
              border-radius: 16px;
              max-width: 500px;
              width: 100%;
              padding: 2.5rem 2rem;
              text-align: center;
              transform: translateY(20px)
  scale(0.95);
              transition: transform 0.3s
  cubic-bezier(0.33, 1, 0.68, 1);
              box-shadow: 0 25px 50px -12px
  rgba(0, 0, 0, 0.25);
          }

          .popup-overlay.active .popup-modal {
              transform: translateY(0) scale(1);
          }

          .popup-header {
              margin-bottom: 1.5rem;
          }

          .popup-header h2 {
              font-size: 1.75rem;
              font-weight: 700;
              color: #1e293b;
              margin-bottom: 0.5rem;
          }

          .popup-header p {
              color: #64748b;
              font-size: 0.95rem;
          }

          .popup-form {
              margin-bottom: 1.5rem;
          }

          .popup-form input[type="email"] {
              width: 100%;
              padding: 1rem 1.25rem;
              border: 2px solid #e2e8f0;
              border-radius: 12px;
              font-size: 1rem;
              outline: none;
              transition: border-color 0.2s;
              background: #f8fafc;
              color: #1e293b;
              outline: none;
              transition: border-color 0.2s;
              background: #f8fafc;
              color: #1e293b;
          }

          .popup-form input[type="email"]:focus {
              border-color: var(--maroon);
              background: white;
          }

          .popup-form button {
              width: 100%;
              padding: 1rem;
              background: var(--maroon);
              color: white;
              border: none;
              border-radius: 12px;
              font-size: 1rem;
              font-weight: 600;
              cursor: pointer;
              transition: transform 0.2s, box-shadow 0.2s;
              margin-top: 0.75rem;
          }

          .popup-form button:hover {
              transform: translateY(-2px);
              box-shadow: 0 10px 20px -10px var(--maroon);
          }

          .popup-close {
              position: absolute;
              top: 1rem;
              right: 1rem;
              background: transparent;
              border: none;
              font-size: 1.5rem;
              color: #64748b;
              cursor: pointer;
              transition: color 0.2s;
              padding: 0.5rem;
              line-height: 1;
          }

          .popup-close:hover {
              color: #1e293b;
          }

          /* Trigger Button */
          .hero-cta {
              display: inline-flex;
              align-items: center;
              gap: 0.75rem;
              padding: 1rem 2rem;
              background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon) 100%);
              color: white;
              border: none;
              border-radius: 12px;
              font-size: 1.1rem;
              font-weight: 600;
              cursor: pointer;
              transition: all 0.3s;
              box-shadow: 0 4px 15px -3px rgba(139, 21, 38, 0.4);
          }

          .hero-cta:hover {
              transform: translateY(-2px);
              box-shadow: 0 10px 25px -5px var(--maroon);
          }

          .hero-cta svg {
              width: 24px;
              height: 24px;
          }

          /* Footer */
          footer {
              text-align: center;
              padding: 2rem;
              color: #64748b;
              font-size: 0.9rem;
          }