
      
    


      
     


      {} *{} {}
     


      #IE-warning {
        display: none;
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 9999;
        background: white;
      }
      .IE-warning-message {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
      }
    



 * { margin: 0; padding: 0; box-sizing: border-box; } :root { --navy: #2F4851; --teal: #3E9DBA; --gold: #E2A752; --gold-d: #C58446; --rust: #C66C53; --sky: #A4DEF6; --sky-pale: #EBF6FC; --sky-mid: #D6EFF8; --sky-dim: #B2D9EE; --silver: #D5D8DB; --white: #FFFFFF; --body: #3D5560; --gold-glow: rgba(226, 167, 82, 0.35); --section-pad: clamp(36px, 6vw, 48px); --text-body: 17px; --text-sm: 15px; --text-meta: 16px; } html { scroll-behavior: smooth; } body { font-family: 'Quicksand', sans-serif; font-weight: 400; font-size: var(--text-body); color: var(--navy); background: var(--white); line-height: 1.85; overflow-x: hidden; } /* ── ANIMATIONS ── */ @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } } @keyframes pulseGlow { 0%, 100% { box-shadow: 0 0 0 0 var(--gold-glow); } 50% { box-shadow: 0 0 0 10px transparent; } } @keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } } @keyframes fillBar { from { opacity: 0; transform: scaleX(0); transform-origin: left center; } to { opacity: 1; transform: scaleX(1); transform-origin: left center; } } @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; } } .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.55s ease, transform 0.55s ease; } .reveal.visible { opacity: 1; transform: translateY(0); } /* ── SHARED ── */ .wrap { max-width: min(720px, 92vw); margin: 0 auto; padding: var(--section-pad) clamp(16px, 4vw, 24px); } .eyebrow { font-family: 'PT Sans Narrow', sans-serif; font-weight: 700; font-size: 15px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; } h1, h2 { font-family: 'Quicksand', sans-serif; font-weight: 700; color: var(--navy); } h2 { font-size: clamp(24px, 3.5vw, 30px); line-height: 1.3; margin-bottom: 14px; } p { font-size: var(--text-body); color: var(--body); line-height: 1.85; margin-bottom: 12px; } .btn { display: inline-block; background: var(--gold); color: var(--navy); font-family: 'Quicksand', sans-serif; font-size: 17px; font-weight: 700; padding: 16px 36px; border-radius: 4px; border: none; cursor: pointer; letter-spacing: 0.04em; text-decoration: none; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 14px rgba(226, 167, 82, 0.35); } .btn:hover { background: var(--gold-d); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(226, 167, 82, 0.45); } .btn.wide { width: 100%; text-align: center; display: block; font-size: 18px; padding: 18px; } /* ── STICKY URGENCY BAR ── */ .urgency-bar { position: sticky; top: 0; z-index: 100; background: var(--navy); color: var(--white); padding: 10px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; box-shadow: 0 2px 12px rgba(47, 72, 81, 0.25); animation: fadeIn 0.5s ease; } .urgency-bar__msg { font-family: 'PT Sans Narrow', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; line-height: 1.4; } .urgency-bar__cta { font-family: 'PT Sans Narrow', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); text-decoration: none; white-space: nowrap; transition: color 0.2s; flex-shrink: 0; } .urgency-bar__cta:hover { color: var(--sky); } /* ── HERO ── */ .hero { background: linear-gradient(155deg, var(--sky-dim) 0%, var(--sky-mid) 45%, var(--sky-pale) 100%); padding: clamp(40px, 7vw, 56px) 24px clamp(36px, 6vw, 48px); text-align: center; border-bottom: 1px solid var(--silver); } .hero-tag { display: inline-block; background: var(--navy); color: var(--white); font-family: 'PT Sans Narrow', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; padding: 6px 16px; border-radius: 20px; margin-bottom: 20px; animation: fadeUp 0.6s ease 0.1s both; } .hero h1 { font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: clamp(34px, 7vw, 52px); line-height: 1.08; letter-spacing: 0.01em; color: var(--navy); margin-bottom: 8px; animation: fadeUp 0.6s ease 0.2s both; } .hero-tagline { font-family: 'PT Sans Narrow', sans-serif; font-weight: 400; font-size: clamp(18px, 2.8vw, 23px); color: var(--teal); letter-spacing: 0.04em; margin-bottom: 28px; animation: fadeUp 0.6s ease 0.3s both; } /* ── SAVINGS GAUGE ── */ .savings-gauge { max-width: min(480px, 92vw); margin: 0 auto 28px; background: var(--white); border: 1.5px solid rgba(62, 157, 186, 0.25); border-radius: 14px; padding: 24px 22px 20px; box-shadow: 0 8px 32px rgba(47, 72, 81, 0.08); animation: fadeUp 0.7s ease 0.4s both; } .gauge-labels { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; } .gauge-label { font-family: 'PT Sans Narrow', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; } .gauge-label--early { background: var(--rust); color: var(--white); padding: 4px 12px; border-radius: 20px; } .gauge-label--regular { color: var(--navy); opacity: 0.45; } .gauge-prices { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; } .gauge-price { font-family: 'Quicksand', sans-serif; font-weight: 700; line-height: 1; } .gauge-price--early { font-size: clamp(40px, 8vw, 52px); color: var(--navy); position: relative; display: inline-block; padding: 4px 8px; border-radius: 8px; animation: pulseGlow 2.5s ease infinite; } .gauge-price--regular { font-size: clamp(26px, 5vw, 32px); color: var(--navy); opacity: 0.5; text-decoration: line-through; text-decoration-color: var(--rust); } .gauge-track-wrap { position: relative; height: 14px; margin-bottom: 14px; padding: 0 10px; } .gauge-track { position: relative; height: 100%; background: var(--sky-mid); border-radius: 7px; overflow: visible; } .gauge-fill { position: absolute; inset: 0; border-radius: 7px; background: linear-gradient( 90deg, var(--teal) 0%, var(--sky) 40%, var(--sky-mid) 100% ); background-size: 200% 100%; animation: fillBar 1s ease 0.5s both, shimmer 4s linear 1.5s infinite; } .gauge-marker { position: absolute; left: 0; top: 50%; transform: translate(-50%, -50%); width: 20px; height: 20px; background: var(--gold); border: 3px solid var(--white); border-radius: 50%; box-shadow: 0 2px 8px rgba(226, 167, 82, 0.5); z-index: 2; } .gauge-foot { font-family: 'PT Sans Narrow', sans-serif; font-weight: 700; font-size: 15px; letter-spacing: 0.05em; color: var(--navy); text-transform: uppercase; } .hero-cta { animation: fadeUp 0.6s ease 0.55s both; } .hero-meta { font-family: 'PT Sans Narrow', sans-serif; font-size: var(--text-meta); color: var(--navy); margin-top: 20px; line-height: 1.75; animation: fadeUp 0.6s ease 0.65s both; } .hero-meta strong { color: var(--navy); font-weight: 700; } /* ── ABOUT + BENEFITS ── */ .about { background: var(--white); border-bottom: 1px solid var(--silver); } .about .wrap { max-width: min(680px, 94vw); padding-top: clamp(32px, 5vw, 48px); padding-bottom: clamp(32px, 5vw, 48px); } .about-grid { display: grid; grid-template-columns: 1fr; gap: 0; align-items: stretch; } .about-col { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: clamp(24px, 3vw, 36px) clamp(16px, 4vw, 24px); } .about-col--left { border-right: none; border-bottom: 1px solid var(--silver); padding-bottom: clamp(32px, 5vw, 40px); } .about-col__inner { width: 100%; max-width: 580px; } .about-copy p:last-child { margin-bottom: 0; } .benefit-grid { list-style: none; display: flex; flex-direction: column; gap: 12px; width: 100%; text-align: left; } .benefit-grid li { display: flex; align-items: flex-start; gap: 12px; font-size: var(--text-body); font-weight: 500; color: var(--navy); line-height: 1.65; } .benefit-grid li::before { content: ''; width: 9px; height: 9px; border-radius: 50%; background: var(--teal); flex-shrink: 0; margin-top: 8px; } /* ── ESSENTIALS (Details + Instructor) ── */ .essentials { background: linear-gradient(180deg, var(--sky-pale) 0%, var(--white) 100%); border-bottom: 1px solid var(--silver); } .essentials .wrap { max-width: min(960px, 94vw); } .details-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 28px; } .detail-box { background: var(--sky-pale); border-radius: 6px; padding: 18px; border-left: 3px solid var(--teal); transition: border-color 0.25s, box-shadow 0.25s; } .detail-box:hover { border-left-color: var(--gold); box-shadow: 0 4px 16px rgba(47, 72, 81, 0.06); } .detail-box .d-label { font-family: 'PT Sans Narrow', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); margin-bottom: 6px; } .detail-box .d-value { font-family: 'Quicksand', sans-serif; font-size: var(--text-body); font-weight: 700; color: var(--navy); line-height: 1.45; } .detail-box .d-sub { font-family: 'PT Sans Narrow', sans-serif; font-size: var(--text-body); color: var(--navy); opacity: 0.85; margin-top: 6px; line-height: 1.5; } .instructor-row { display: flex; gap: 20px; align-items: center; padding-top: 24px; border-top: 1px solid var(--silver); } .photo-circle { width: 300px; height: 300px; border-radius: 50%; flex-shrink: 0; background: var(--silver); border: 3px solid var(--teal); overflow: hidden; display: flex; align-items: center; justify-content: center; } .photo-circle img { width: 100%; height: 100%; object-fit: cover; } .photo-placeholder { font-size: 11px; color: var(--body); text-align: center; line-height: 1.4; padding: 8px; } .instructor-copy { flex: 1; min-width: 0; } .instructor-copy h2 { font-size: 24px; margin-bottom: 4px; } .instructor-copy .title-line { font-family: 'PT Sans Narrow', sans-serif; font-weight: 700; font-size: 14px; color: var(--teal); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; } .instructor-copy p { margin-bottom: 0; font-size: var(--text-body); } /* ── TESTIMONIALS ── */ .testimonials { padding-top: 32px; margin-top: 28px; border-top: 1px solid var(--silver); text-align: center; } .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 18px; text-align: left; } .testimonial-card { background: var(--white); border: 1px solid var(--silver); border-radius: 8px; padding: 22px 20px; border-top: 3px solid var(--teal); display: flex; flex-direction: column; justify-content: space-between; min-height: 100%; margin: 0; } .testimonial-card__quote { font-family: 'Quicksand', sans-serif; font-size: var(--text-body); font-weight: 400; color: var(--body); line-height: 1.8; margin-bottom: 16px; } .testimonial-card__quote::before { content: '\201C'; color: var(--teal); font-weight: 700; font-size: 1.25em; line-height: 0; margin-right: 2px; } .testimonial-card__author { font-family: 'PT Sans Narrow', sans-serif; font-size: var(--text-sm); font-weight: 700; color: var(--teal); letter-spacing: 0.04em; } /* ── REGISTRATION ── */ .register { background: linear-gradient(160deg, var(--sky-mid) 0%, var(--sky-pale) 55%, var(--white) 100%); padding: var(--section-pad) clamp(16px, 4vw, 24px); text-align: center; } .reg-inner { max-width: min(540px, 92vw); margin: 0 auto; } .price-strip { background: var(--navy); color: var(--white); border-radius: 10px; padding: 24px 22px; margin-bottom: 28px; text-align: center; } .price-strip__label { font-family: 'PT Sans Narrow', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sky); margin-bottom: 16px; } .price-strip__row { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 16px; } .price-strip__tier { display: flex; flex-direction: column; align-items: center; gap: 4px; } .price-strip__tier-label { font-family: 'PT Sans Narrow', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sky); } .price-strip__tier-label--early { background: var(--rust); color: var(--white); padding: 4px 14px; border-radius: 20px; } .price-strip__price { font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 42px; line-height: 1; color: var(--white); } .price-strip__price--regular { font-size: 30px; color: rgba(255, 255, 255, 0.55); text-decoration: line-through; text-decoration-color: var(--rust); } .price-strip__tier-note { font-family: 'PT Sans Narrow', sans-serif; font-size: var(--text-sm); color: rgba(255, 255, 255, 0.85); letter-spacing: 0.03em; } .price-strip__divider { width: 1px; height: 64px; background: rgba(255, 255, 255, 0.25); flex-shrink: 0; } .price-strip__includes { font-family: 'PT Sans Narrow', sans-serif; font-size: var(--text-sm); color: var(--white); letter-spacing: 0.03em; line-height: 1.6; padding-top: 14px; border-top: 1px solid rgba(255, 255, 255, 0.2); } .reg h2 { font-size: clamp(24px, 4vw, 28px); margin-bottom: 8px; } .reg-sub { font-family: 'PT Sans Narrow', sans-serif; font-size: var(--text-meta); color: var(--navy); margin-bottom: 24px; letter-spacing: 0.03em; } .reg-form { display: flex; flex-direction: column; gap: 12px; text-align: left; } .f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; } .f-group { display: flex; flex-direction: column; gap: 5px; } .f-group label { font-family: 'PT Sans Narrow', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal); } .f-opt { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--body); font-size: var(--text-sm); } .f-group input, .f-group select { font-family: 'Quicksand', sans-serif; font-size: var(--text-body); font-weight: 400; padding: 13px 14px; border: 1.5px solid var(--silver); border-radius: 4px; background: var(--white); color: var(--navy); outline: none; transition: border-color 0.2s; width: 100%; } .f-group input:focus, .f-group select:focus { border-color: var(--teal); } .f-group input::placeholder { color: var(--silver); font-weight: 400; } .policy-box { background: rgba(255, 255, 255, 0.75); border: 1px solid var(--silver); border-radius: 8px; padding: 14px 16px; margin-top: 4px; } .policy-box p { font-size: var(--text-sm); color: var(--navy); line-height: 1.75; margin-bottom: 0; } .policy-box strong { color: var(--navy); font-weight: 700; } .checkbox-row { display: flex; align-items: flex-start; gap: 10px; margin-top: 2px; position: relative; cursor: pointer; } .checkbox-row input[type="checkbox"] { width: 20px; height: 20px; flex-shrink: 0; margin-top: 4px; accent-color: var(--teal); cursor: pointer; position: relative; z-index: 2; pointer-events: auto; opacity: 1; appearance: auto; -webkit-appearance: checkbox; } .checkbox-row .checkbox-text { font-size: var(--text-sm) !important; font-weight: 500 !important; color: var(--navy) !important; letter-spacing: 0 !important; text-transform: none !important; cursor: pointer; line-height: 1.6; } .submit-area { margin-top: 8px; } .checkout-hint { font-family: 'PT Sans Narrow', sans-serif; font-size: var(--text-sm); color: var(--rust); text-align: center; margin-top: 10px; letter-spacing: 0.03em; } .f-note { font-family: 'PT Sans Narrow', sans-serif; font-size: var(--text-sm); color: var(--navy); text-align: center; margin-top: 10px; letter-spacing: 0.03em; } .secure { font-family: 'PT Sans Narrow', sans-serif; font-size: var(--text-sm); color: var(--navy); margin-top: 16px; display: flex; align-items: center; justify-content: center; gap: 5px; letter-spacing: 0.06em; text-transform: uppercase; } /* ── FOOTER ── */ footer { background: var(--navy); color: rgba(255, 255, 255, 0.55); text-align: center; padding: 22px 24px; font-family: 'PT Sans Narrow', sans-serif; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; } footer a { color: rgba(255, 255, 255, 0.75); text-decoration: none; } footer a:hover { color: var(--sky); } /* ── RESPONSIVE ── */ @media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } } @media (max-width: 580px) { .urgency-bar { flex-direction: column; text-align: center; padding: 10px 16px; } .urgency-bar__cta { white-space: normal; } .hero { padding-left: 16px; padding-right: 16px; } .hero-cta .btn { width: 100%; max-width: 340px; } .register { padding-left: 16px; padding-right: 16px; } .price-strip__divider { width: 80%; height: 1px; } } @media (max-width: 480px) { .f-row { grid-template-columns: 1fr; } .details-grid { grid-template-columns: 1fr; } .instructor-row { flex-direction: column; text-align: center; } .savings-gauge { padding: 20px 16px 18px; } .gauge-prices { gap: 8px; } } 

