
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
:root{
  --burgundy:#731E28;
  --hunter:#1C4337;
  --navy:#1A1F2B;
  --heading:#222222;
  --cream:#F5F5F0;
  --offwhite:#F9F9F9;
  --tan:#E7E3DC;
  --body-copy:#6E6E6E;
  --gold:#C9A84C;
}
html{font-size:16px;scroll-behavior:smooth}
body{
  font-family:'DM Sans',sans-serif;
  color:var(--heading);
  background:var(--offwhite);
  -webkit-font-smoothing:antialiased;
}

/* ===== TOP BAR ===== */
.top-bar{
  background:var(--navy);
  text-align:center;
  padding:14px 20px;
}
.top-bar img{height:38px}

/* ===== HERO ===== */
.hero{
  max-width:960px;
  margin:0 auto;
  padding:32px 20px 48px;
}

.badge{
  background:var(--burgundy);
  color:#fff;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 24px;
  border-radius:6px;
  font-weight:700;
  font-size:1.05rem;
  letter-spacing:.4px;
  margin-bottom:20px;
}
.badge .icon{font-size:1.3rem}

.hero h1{
  font-family:'DM Serif Display',serif;
  font-size:clamp(1.8rem,4.5vw,2.65rem);
  line-height:1.2;
  color:var(--heading);
  max-width:680px;
  margin:0 auto 14px;
  text-align:center;
}
.hero h1 span{color:var(--hunter)}

.hero .subhead{
  font-style:italic;
  text-align:center;
  color:var(--body-copy);
  font-size:1.05rem;
  max-width:620px;
  margin:0 auto 32px;
  line-height:1.55;
}

/* ===== CONTENT ROW ===== */
.content-row{
  display:flex;
  gap:36px;
  align-items:flex-start;
  flex-wrap:wrap;
  justify-content:center;
}
.content-left{flex:1 1 340px;max-width:440px}
.content-right{flex:1 1 320px;max-width:420px}

/* ===== CEO PHOTO ===== */
.ceo-photo{
  width:100%;
  border-radius:14px;
  object-fit:cover;
  box-shadow:0 8px 30px rgba(0,0,0,.12);
}

/* ===== FORM ===== */
.form-card{
  background:#fff;
  border:1px solid var(--tan);
  border-radius:14px;
  padding:28px 24px;
  box-shadow:0 8px 30px rgba(0,0,0,.06);
}
.form-card .form-heading{
  text-align:center;
  font-size:1.15rem;
  font-weight:800;
  color:var(--heading);
  margin:0 0 22px;
  padding:0 0 18px;
  border-bottom:1px solid #eee;
  line-height:1.35;
  letter-spacing:-0.01em;
}
.form-card .datetime-row{
  display:flex;
  justify-content:space-between;
  padding:10px 0;
  border-bottom:1px solid #eee;
  font-size:.92rem;
  color:var(--body-copy);
}
.form-card .datetime-row span:last-child{color:var(--heading);font-weight:600}
.form-card .tz-link{
  display:block;
  text-align:right;
  font-size:.78rem;
  color:var(--hunter);
  margin:4px 0 16px;
  cursor:pointer;
}
.form-card label{
  display:block;
  font-size:.78rem;
  font-weight:600;
  color:var(--body-copy);
  text-transform:uppercase;
  letter-spacing:.5px;
  margin-bottom:5px;
  margin-top:14px;
}
.form-card input[type="text"],
.form-card input[type="email"],
.form-card input[type="tel"]{
  width:100%;
  padding:10px 12px;
  border:1px solid #ddd;
  border-radius:8px;
  font-size:.95rem;
  font-family:inherit;
  outline:none;
  transition:border .2s;
}
.form-card input:focus{border-color:var(--hunter)}
.form-card .consent{
  display:flex;
  align-items:flex-start;
  gap:8px;
  margin-top:16px;
  font-size:.78rem;
  color:var(--body-copy);
  line-height:1.4;
}
.form-card .consent input{margin-top:3px}
.cta-btn{
  display:block;
  width:100%;
  margin-top:18px;
  padding:14px;
  background:var(--hunter);
  color:#fff;
  font-family:inherit;
  font-size:1.05rem;
  font-weight:700;
  border:none;
  border-radius:10px;
  cursor:pointer;
  letter-spacing:.3px;
  transition:background .2s,transform .1s;
  position:relative;
}
.cta-btn:hover{background:#245a49}
.cta-btn:active{transform:scale(.98)}
.cta-btn .arrow{
  position:absolute;
  right:18px;
  top:50%;
  transform:translateY(-50%);
  font-size:1.2rem;
}
.form-card .fine{
  font-size:.7rem;
  color:#aaa;
  text-align:center;
  margin-top:10px;
  line-height:1.4;
}

/* ===== BULLET POINTS ===== */
.bullets{
  max-width:960px;
  margin:0 auto;
  padding:36px 20px 32px;
}
.bullets-heading{
  text-align:center;
  font-weight:800;
  font-size:1.25rem;
  color:var(--ink);
  margin:0 0 26px;
  letter-spacing:-0.01em;
}
.bullet-item{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:20px;
}
.bullet-item .check{
  flex-shrink:0;
  width:24px;height:24px;
  background:var(--hunter);
  color:#fff;
  border-radius:5px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:.85rem;
  margin-top:2px;
}
.bullet-item p{
  font-size:.97rem;
  font-weight:600;
  color:var(--heading);
  line-height:1.5;
}

/* ===== STICKY FOOTER ===== */
.sticky-footer{
  position:fixed !important;
  bottom:0;left:0;right:0;
  background:var(--navy);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  padding:12px 20px;
  z-index:100;
  flex-wrap:wrap;
}
.sticky-footer .date-text{
  color:rgba(255,255,255,.7);
  font-size:.82rem;
  line-height:1.35;
}
.countdown{
  display:flex;
  gap:6px;
  align-items:center;
}
.countdown .unit{
  text-align:center;
}
.countdown .num{
  display:block;
  background:var(--burgundy);
  color:#fff;
  font-weight:700;
  font-size:1.15rem;
  padding:4px 8px;
  border-radius:5px;
  min-width:36px;
}
.countdown .lbl{
  font-size:.6rem;
  color:rgba(255,255,255,.45);
  text-transform:uppercase;
  letter-spacing:.8px;
  margin-top:2px;
}
.countdown .sep{color:var(--gold);font-weight:700;font-size:1.15rem}
.sticky-footer .reg-btn{
  background:var(--hunter);
  color:#fff;
  border:none;
  padding:10px 24px;
  border-radius:8px;
  font-family:inherit;
  font-weight:700;
  font-size:.88rem;
  letter-spacing:.5px;
  cursor:pointer;
  text-transform:uppercase;
  transition:background .2s;
}
.sticky-footer .reg-btn:hover{background:#245a49}

/* ===== SPACER FOR STICKY ===== */
.footer-spacer{height:70px}

/* ===== RESPONSIVE ===== */
@media(max-width:700px){
  .content-row{flex-direction:column;align-items:center}
  .content-left,.content-right{max-width:100%;flex:1 1 100%}
  .hero h1{font-size:1.6rem}
}
@media (min-width: 1024px) {
  .sticky-footer,
  .header,
  .site-header,
  .hero-header,
  .nurp-header {
    position: relative;
    left: 50%;
    right: 50%;
    width: 100vw;
    max-width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
  }

  .header .container,
  .site-header .container,
  .hero-header .container,
  .nurp-header .container {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 48px;
    padding-right: 48px;
  }
}

/* Make the top/header area full-width on desktop */
@media (min-width: 1024px) {
  .top-bar {
    position: relative;
    left: 50%;
    width: 100vw;
    max-width: 100vw;
    margin-left: -50vw;
  }

  .sticky-footer {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    z-index: 999999 !important;
  }
}

  .header .container,
  .site-header .container,
  .hero-header .container,
  .nurp-header .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 48px;
    padding-right: 48px;
  }
}
.nurp-footnote-ref {
  color: inherit;
  text-decoration: none;
}

.nurp-footnote-ref sup {
  font-size: 0.52em;
  line-height: 0;
  vertical-align: super;
  margin-left: 2px;
  font-weight: 700;
}

.nurp-footnote-ref:hover {
  text-decoration: none;
  opacity: 0.82;
}