*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #EA4335;
  --red-dark:   #C53727;
  --red-light:  #FEF0EE;
  --red-mid:    rgba(234,67,53,0.10);
  --black:      #000000;
  --black-soft: #111111;
  --black-card: #1A1A1A;
  --gray:       #D3D3D3;
  --gray-light: #F5F5F5;
  --gray-mid:   #888888;
  --white:      #FFFFFF;
  --font-title: 'Montserrat', sans-serif;
  --font-body:  'Roboto', sans-serif;
  --radius:     6px;
  --radius-lg:  14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

.target-deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.08;
}

.topbar {
  background: var(--red);
  text-align: center;
  padding: 10px 20px;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--gray);
  backdrop-filter: blur(8px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-target {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.logo-wordmark {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.12em;
  color: var(--black);
  text-transform: uppercase;
  line-height: 1;
}

.logo-wordmark small {
  display: block;
  font-weight: 400;
  font-size: 8px;
  letter-spacing: 0.18em;
  color: var(--gray-mid);
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-partner {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

.nav-right { display: flex; align-items: center; gap: 24px; }

.nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--red); }

.btn-nav {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-nav:hover { background: var(--red-dark); transform: translateY(-1px); }

.hero {
  background: #1A1D24;
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 48px;
}

.hero-targets {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-targets .t1 {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  opacity: 0.06;
}

.hero-targets .t2 {
  position: absolute;
  left: -60px;
  bottom: -60px;
  width: 260px;
  height: 260px;
  opacity: 0.04;
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 32px;
  animation: fadeUp .6s ease both;
}

.hero-eyebrow span {
  width: 24px;
  height: 1px;
  background: var(--red);
  display: inline-block;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(234,67,53,0.15);
  border: 1px solid rgba(234,67,53,0.3);
  color: #F07060;
  font-family: var(--font-title);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}

.live-badge .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 1.8s infinite;
}

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

.hero h1 {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(34px, 5.5vw, 72px);
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp .7s .1s ease both;
}

.hero h1 .accent { color: var(--red); }

.hero-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(15px, 1.7vw, 18px);
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin-bottom: 48px;
  animation: fadeUp .7s .2s ease both;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 64px;
  animation: fadeUp .7s .3s ease both;
}

.btn-primary {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }

.countdown-wrap {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 36px;
  animation: fadeUp .7s .4s ease both;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.countdown-lbl {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 22px;
}

.countdown {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 28px;
  width: 100%;
}

.cd-unit-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.cd-num {
  font-family: var(--font-title);
  font-size: 68px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.03em;
}

.cd-lbl {
  font-family: var(--font-title);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

.cd-sep {
  font-family: var(--font-title);
  font-size: 54px;
  font-weight: 900;
  color: rgba(234,67,53,0.3);
  line-height: 1;
}

section { padding: 96px 48px; }
.container { max-width: 1060px; margin: 0 auto; }

.eyebrow {
  font-family: var(--font-title);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--red);
  display: inline-block;
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(26px, 3.5vw, 46px);
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-title .accent { color: var(--red); }

.section-body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: #555;
  max-width: 600px;
  line-height: 1.8;
}

.context { background: var(--gray-light); position: relative; overflow: hidden; }

.context-deco {
  position: absolute;
  right: -120px;
  top: -80px;
  width: 380px;
  height: 380px;
  opacity: 0.04;
  pointer-events: none;
}

.cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 52px;
}
@media(max-width:680px){ .cards-row { grid-template-columns: 1fr; } }

.ctx-card {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: box-shadow 0.2s;
}
.ctx-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }

.ctx-card.featured {
  border-color: var(--red);
  background: #fff;
}

.card-pill {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.card-pill.past { background: var(--gray-light); color: var(--gray-mid); border: 1px solid var(--gray); }
.card-pill.now  { background: rgba(234,67,53,0.1); color: var(--red); border: 1px solid rgba(234,67,53,0.25); }

.ctx-card h3 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 18px;
  color: var(--black);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.ctx-card.featured h3 { color: var(--red); }

.ctx-card p {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: #666;
  line-height: 1.75;
}

.audit-sec {
  background: #1A1D24;
  position: relative;
  overflow: hidden;
}

.audit-targets {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.audit-targets .t1 {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  opacity: 0.05;
}

.audit-box {
  background: var(--black-card);
  border: 1px solid rgba(234,67,53,0.2);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media(max-width:600px){ .audit-box { padding: 36px 24px; } }

.audit-box .section-title { color: #fff; margin-bottom: 10px; }
.audit-box .eyebrow { justify-content: center; }
.audit-box .eyebrow::before { display: none; }

.audit-meta {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  margin-bottom: 44px;
}
.audit-meta strong {
  color: var(--red);
  font-weight: 500;
}

.audit-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 580px;
  margin: 0 auto 48px;
  text-align: left;
}
@media(max-width:520px){ .audit-points { grid-template-columns: 1fr; } }

.audit-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.chk {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(234,67,53,0.12);
  border: 1px solid rgba(234,67,53,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.chk svg { width: 9px; height: 9px; }

.form-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.form-input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  padding: 13px 18px;
  outline: none;
  min-width: 190px;
  transition: border-color 0.2s;
}
.form-input::placeholder { color: rgba(255,255,255,0.28); }
.form-input:focus { border-color: var(--red); }

.confirm-msg {
  display: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--red);
  margin-top: 10px;
}

.form-note {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.2);
  margin-top: 4px;
}

.invitation { background: var(--white); }

.inv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
@media(max-width:720px){ .inv-grid { grid-template-columns: 1fr; gap: 48px; } }

.inv-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 36px;
}
.inv-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
}
.inv-details li::before {
  content: '';
  width: 2px;
  height: 16px;
  background: var(--red);
  border-radius: 1px;
  flex-shrink: 0;
}

.promo-card {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.promo-card-deco {
  position: absolute;
  right: -50px;
  top: -50px;
  width: 180px;
  height: 180px;
  opacity: 0.06;
  pointer-events: none;
}

.promo-tag {
  font-family: var(--font-title);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 24px;
}

.promo-code-wrap {
  display: inline-block;
  border: 2px dashed rgba(234,67,53,0.4);
  border-radius: var(--radius);
  padding: 18px 36px;
  margin-bottom: 20px;
}

.promo-code {
  font-family: var(--font-title);
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--red);
  text-transform: uppercase;
  line-height: 1;
}

.promo-desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
  line-height: 1.7;
}

.btn-copy {
  background: transparent;
  border: 1px solid rgba(234,67,53,0.4);
  color: var(--red);
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 11px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.btn-copy:hover { background: rgba(234,67,53,0.1); border-color: var(--red); }

.copy-ok {
  display: none;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--red);
  font-weight: 500;
  margin-top: 10px;
}


.final {
  background: var(--red);
  padding: 88px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-deco {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 320px;
  height: 320px;
  pointer-events: none;
  opacity: 0.12;
}

.final h2 {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(26px, 4vw, 56px);
  color: #fff;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.final p {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  max-width: 460px;
  margin: 0 auto 44px;
  position: relative;
  z-index: 2;
}

.btn-white {
  display: inline-block;
  background: #fff;
  color: var(--red);
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 18px 44px;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.18); }

footer {
  background: #1A1D24;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-wordmark {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.footer-sep {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.15);
}

.footer-partner {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.footer-right {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.2);
}

@keyframes fadeUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity:1; transform:none; }

.target-svg {
  width: 100%;
  height: 100%;
}

@media(max-width:600px){
  section { padding: 64px 24px; }
  .hero { padding: 80px 24px 64px; }
  .nav { padding: 0 24px; }
  .nav-link, .nav-partner { display: none; }
}


.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  display: block;
  height: 100px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.audit-cta-only {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.audit-calendar-btn {
  min-width: 320px;
  text-align: center;
}

@media (max-width: 480px) {
  .audit-calendar-btn {
    min-width: auto;
    width: 100%;
  }
}


@media (max-width: 600px) {
  .countdown {
    gap: 14px;
    flex-wrap: wrap;
  }

  .hero {
  background: #1A1D24;
  min-height: 92vh;
  position: relative;
  overflow: hidden;
  padding: 80px 48px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 760px;
}

.countdown-wrap {
  width: 100%;
  max-width: 1060px;
  margin: 40px auto 0;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  animation: fadeUp .7s .4s ease both;
}

.countdown-lbl {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 22px;
}

.countdown {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 28px;
  width: 100%;
}

.cd-unit-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.cd-num {
  font-family: var(--font-title);
  font-size: 68px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.03em;
}

.cd-lbl {
  font-family: var(--font-title);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

.cd-sep {
  font-family: var(--font-title);
  font-size: 54px;
  font-weight: 900;
  color: rgba(234,67,53,0.3);
  line-height: 1;
}

@media (max-width: 600px) {
  .hero {
    padding: 80px 24px 64px;
  }

  .countdown {
    gap: 14px;
    flex-wrap: wrap;
  }

  .cd-num {
    font-size: 44px;
  }

  .cd-sep {
    font-size: 34px;
  }
}


.context .container {
  max-width: 1060px;
  margin: 0 auto;
}

.cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 52px;
}

.context-cta {
  width: 100%;
  margin-top: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.context-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.context {
  text-align: initial;
}

.context-cta {
  grid-column: 1 / -1;
}