@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/space-grotesk-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/space-grotesk-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0e0e13;
  --surface: #16161f;
  --surface-2: #1c1c28;
  --surface-form: #1e1e2c;
  --primary: #8ff5ff;
  --primary-dim: rgba(143, 245, 255, 0.12);
  --primary-border: rgba(143, 245, 255, 0.28);
  --cta: #22c55e;
  --cta-hover: #16a34a;
  --cta-glow: rgba(34, 197, 94, 0.35);
  --text: #f9f5fd;
  --muted: #a8a3b8;
  --danger: #f87171;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-head: 'Space Grotesk', system-ui, sans-serif;
  --container: min(1120px, 100% - 2rem);
  --nav-h: 3.25rem;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); }

.container { width: var(--container); margin-inline: auto; }

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  background: linear-gradient(90deg, #0b6d77 0%, #0a8fa0 42%, #0b6d77 100%);
  border-bottom: 1px solid rgba(0, 55, 62, 0.45);
  box-shadow: 0 4px 20px rgba(0, 70, 80, 0.35);
  color: #fff;
}

.nav__countdown {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}

.nav__countdown-label { opacity: 0.92; }

.countdown {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  font-family: var(--font-head);
  letter-spacing: 0.04em;
}

.countdown__unit {
  display: inline-flex;
  align-items: baseline;
  gap: 0.15rem;
}

.countdown__unit strong {
  font-size: 0.95rem;
  font-weight: 700;
  min-width: 1.35rem;
  text-align: center;
}

.countdown__unit small {
  font-size: 0.65rem;
  font-weight: 600;
  opacity: 0.85;
}

.countdown__sep { opacity: 0.55; font-weight: 400; }
.countdown__live { font-size: 0.72rem; letter-spacing: 0.06em; }

.hero {
  padding: 2rem 0 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 40%, rgba(143, 245, 255, 0.06), transparent 70%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1fr 0.85fr; gap: 2.5rem; }
}

.hero__eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.85rem;
}

.hero__title {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.hero__title-hook {
  display: block;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--primary);
  text-shadow: 0 0 40px rgba(143, 245, 255, 0.12);
}

.hero__title-main {
  display: block;
  font-size: clamp(1.25rem, 3.4vw, 1.9rem);
  line-height: 1.15;
  color: var(--text);
}

.hero__offer-date {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  line-height: 1.45;
}

.hero__timezone {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.85em;
}

.hero__subtitle {
  padding: 1rem 1.15rem;
  margin-bottom: 1.35rem;
  max-width: 32rem;
  font-size: clamp(0.95rem, 2.4vw, 1.05rem);
  font-weight: 500;
  line-height: 1.55;
  color: var(--text);
  background: var(--primary-dim);
  border: 1px solid var(--primary-border);
  border-left: 3px solid var(--primary);
  border-radius: 4px;
  box-shadow: 0 0 32px rgba(143, 245, 255, 0.06);
}

.hero__date-highlight { color: var(--primary); font-weight: 700; }
.hero__subtitle strong { color: var(--text); font-weight: 700; }

@media (max-width: 899px) {
  .hero__content { text-align: center; }
  .hero__subtitle { margin-inline: auto; }
}

@media (min-width: 900px) {
  .hero__content { text-align: left; }
}

.hero-bar {
  margin-top: 2.5rem;
  background: linear-gradient(90deg, #0b6d77 0%, #0a8fa0 50%, #0b6d77 100%);
  border-top: 1px solid rgba(143, 245, 255, 0.15);
  padding: 1.35rem 0;
}

.hero-bar__grid {
  display: grid;
  gap: 1.25rem 1rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .hero-bar__grid { grid-template-columns: repeat(4, 1fr); }
}

.hero-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
}

.hero-bar__icon {
  color: var(--primary);
  line-height: 0;
  margin-bottom: 0.15rem;
}

.hero-bar__label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.hero-bar__value {
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.hero__image-wrap {
  position: relative;
  align-self: end;
  line-height: 0;
}
.hero__image {
  display: block;
  width: 100%;
  max-height: min(520px, 70vh);
  object-fit: contain;
  object-position: bottom center;
}

@media (max-width: 899px) {
  .hero__image-wrap {
    margin-top: -0.25rem;
    margin-bottom: -0.5rem;
  }
  .hero__image {
    max-height: min(460px, 58vh);
  }
  .hero-bar {
    margin-top: 1.25rem;
  }
}

.form-card {
  background: var(--surface-form);
  border: 1px solid rgba(143, 245, 255, 0.35);
  border-radius: 4px;
  padding: 1.35rem 1.25rem;
  text-align: left;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 8px 40px rgba(0, 0, 0, 0.45),
    0 0 48px rgba(143, 245, 255, 0.08);
}

#capture-form { text-align: left; }

.form-card__title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 1rem;
  text-align: center;
}

.form-card__logo-wrap {
  overflow: hidden;
  margin-top: 1.15rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(143, 245, 255, 0.15);
  line-height: 0;
}

.form-card__logo {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-block: -14%;
}

.hero-mec-badge {
  display: flex;
  justify-content: center;
  padding: 1.5rem 1rem 1.75rem;
  background: var(--bg);
}

.hero-mec-badge__selo {
  width: clamp(6.5rem, 22vw, 8rem);
  height: clamp(6.5rem, 22vw, 8rem);
  object-fit: contain;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.45));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.form-group { margin-bottom: 0.85rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
  text-align: left;
}
.form-group input {
  width: 100%;
  padding: 0.75rem 0.85rem;
  font: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  outline: none;
  text-align: left;
  transition: border-color 0.15s;
}
.form-group input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(143, 245, 255, 0.12);
}

.btn-cta {
  width: 100%;
  margin-top: 0.25rem;
  padding: 1.05rem 1.25rem;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--cta);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 4px 20px var(--cta-glow);
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}
.btn-cta:hover:not(:disabled) {
  background: var(--cta-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px var(--cta-glow);
}
.btn-cta:disabled { opacity: 0.65; cursor: wait; box-shadow: none; }

.form-microcopy {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.45;
}

.form-card .form-microcopy { text-align: center; }
.form-error {
  margin-top: 0.65rem;
  font-size: 0.82rem;
  color: var(--danger);
}
