@font-face {
  font-family: "Lufga";
  src: url("../fonts/Lufga-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lufga";
  src: url("../fonts/Lufga-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lufga";
  src: url("../fonts/Lufga-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lufga";
  src: url("../fonts/Lufga-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Heading Now 47";
  src: url("../fonts/HeadingNowTrial-47Extrabold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0b0b0b;
  --bg-2: #111111;
  --surface: #171717;
  --surface-2: #212121;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.17);
  /* Identidade: vermelho. Ação de compra: verde, reservada aos CTAs. */
  --lime: #e50914;
  --lime-bright: #e50914;
  --lime-deep: #e50914;
  --lime-dark: #0b0b0b;
  --lime-glow: rgba(229, 9, 20, 0.4);
  --cta-green: #2fdb6f;
  --cta-green-bright: #67f394;
  --cta-green-dark: #05170b;
  --cta-green-glow: rgba(47, 219, 111, 0.52);
  --text: #f7f8f3;
  --muted: #a2a49d;
  --muted-2: #70736c;
  --display: "Heading Now 47", "Arial Black", sans-serif;
  --body: "Lufga", system-ui, sans-serif;
  --maxw: 1180px;
  --radius: 14px;
  --radius-lg: 22px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::selection,
::selection {
  background: var(--lime);
  color: var(--lime-dark);
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: rgba(229, 9, 20, 0.3);
  touch-action: manipulation;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--lime-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--text);
  color: var(--bg);
  font-weight: 700;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  position: relative;
  padding: 92px 0;
}

.section--tight {
  padding: 68px 0;
}

.center {
  text-align: center;
}

h1 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

h2 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

h3 {
  font-family: var(--body);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.h-lg {
  font-size: clamp(36px, 4.7vw, 58px);
}

.h-md {
  font-size: clamp(30px, 3.35vw, 42px);
}

.hl {
  color: var(--lime-bright);
}

.lead {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.body-mut {
  color: var(--muted);
}

.kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 9px 24px;
  border: 1px solid rgba(229, 9, 20, 0.48);
  border-radius: 999px;
  background: radial-gradient(130% 200% at 50% 0%, rgba(229, 9, 20, 0.16), rgba(11, 11, 11, 0.72));
  box-shadow: 0 0 22px -2px rgba(229, 9, 20, 0.23), inset 0 0 16px rgba(229, 9, 20, 0.1);
  color: var(--lime-bright);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 18px 32px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 220ms ease, filter 180ms ease, border-color 180ms ease;
}

.btn .arr {
  font-size: 1.15em;
  transition: transform 200ms ease;
}

.btn:hover .arr {
  transform: translateX(4px);
}

.btn--lime {
  border-color: rgba(103, 243, 148, 0.5);
  background: linear-gradient(180deg, var(--cta-green-bright), var(--cta-green));
  color: var(--cta-green-dark);
  box-shadow: 0 12px 30px -8px var(--cta-green-glow), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn--lime:hover {
  transform: translateY(-2px);
  filter: saturate(1.05) brightness(1.04);
  box-shadow: 0 18px 40px -8px rgba(47, 219, 111, 0.7);
}

.btn--dark {
  border-color: rgba(255, 255, 255, 0.22);
  background: var(--bg);
  color: var(--text);
  box-shadow: 0 18px 34px -18px rgba(0, 0, 0, 0.7);
}

.btn--dark:hover {
  transform: translateY(-2px);
  border-color: var(--lime-bright);
}

.btn--lg {
  min-height: 62px;
  padding: 21px 40px;
  font-size: 16px;
}

.btn--sm {
  min-height: 44px;
  padding: 13px 22px;
  font-size: 12px;
}

.btn--block {
  width: 100%;
  white-space: normal;
}

@keyframes pulse-lime {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 12px 30px -8px var(--cta-green-glow), 0 0 0 0 rgba(47, 219, 111, 0.34);
  }
  50% {
    transform: scale(1.025);
    box-shadow: 0 16px 36px -6px rgba(47, 219, 111, 0.7), 0 0 0 11px rgba(47, 219, 111, 0);
  }
}

.btn--pulse {
  animation: pulse-lime 2.6s ease-in-out infinite;
}

.topbar {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(11, 11, 11, 0.86);
  backdrop-filter: blur(14px);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 84px;
}

.topbar__urgency {
  display: flex;
  flex: none;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  white-space: nowrap;
}

.topbar__timer-label {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.countdown {
  display: flex;
  align-items: center;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.countdown__unit {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 3px;
}

.countdown__unit b {
  color: var(--lime-bright);
  font-family: var(--body);
  font-weight: 700;
}

.countdown__unit small {
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
}

.countdown > i {
  color: rgba(229, 9, 20, 0.48);
  font-style: normal;
}

.countdown--top {
  gap: 7px;
}

.countdown--top .countdown__unit b {
  font-size: 22px;
}

.countdown--top .countdown__unit small {
  font-size: 8px;
}

.countdown--top > i {
  font-size: 14px;
}

.topbar__limit {
  flex: 1 1 auto;
  margin: 0;
  padding-left: 24px;
  border-left: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
}

.topbar__limit b {
  color: var(--text);
  font-weight: 700;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  width: 186px;
  height: auto;
}

.logo--hero {
  margin-bottom: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 126px 0 38px;
  background:
    radial-gradient(120% 90% at 87% 0%, rgba(229, 9, 20, 0.21), transparent 55%),
    radial-gradient(90% 80% at 0% 100%, rgba(229, 9, 20, 0.07), transparent 60%),
    var(--bg);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.023) 0 1px, transparent 1px 46px);
  pointer-events: none;
}

.hero__scene {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.32) 28%, #000 60%);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.hero__grid > * {
  min-width: 0;
}

.hero__copy {
  padding: 22px 0 34px;
}

.hero h1 {
  margin: 40px 0 22px;
  font-size: clamp(42px, 4.1vw, 56px);
  overflow-wrap: anywhere;
}

.hero .lead {
  max-width: 560px;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 32px;
}

.hero__media {
  position: relative;
  margin-top: 16px;
  padding-bottom: 0;
}

.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.hero__visual.hero__visual--diagram {
  aspect-ratio: 641 / 495;
  overflow: visible;
}

.hero__visual img {
  position: absolute;
  z-index: 3;
  inset: -3% -4% -3%;
  width: 108%;
  max-width: none;
  height: 106%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(1.04) contrast(1.03) drop-shadow(0 0 32px rgba(229, 9, 20, 0.16));
  mask-image: radial-gradient(ellipse 82% 94% at 50% 48%, #000 50%, rgba(0, 0, 0, 0.96) 69%, transparent 100%);
}

.hero__visual .hero__diagram {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 46px rgba(0, 0, 0, 0.42)) drop-shadow(0 0 28px rgba(229, 9, 20, 0.1));
  -webkit-mask-image: none;
  mask-image: none;
}

.hero__scanline {
  position: absolute;
  z-index: 2;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(229, 9, 20, 0.04) 0 1px, transparent 1px 4px);
  mask-image: radial-gradient(100% 90% at 50% 35%, #000 40%, transparent 80%);
  opacity: 0.55;
  pointer-events: none;
}

.marquee {
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(0, 0, 0, 0.36);
  background: linear-gradient(90deg, var(--lime-deep), var(--lime) 50%, var(--lime-deep));
}

.marquee__row {
  display: flex;
  width: max-content;
  animation: marquee-scroll 38s linear infinite;
}

.marquee__track {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(19px, 2.2vw, 27px);
  font-weight: 800;
  letter-spacing: -0.015em;
  white-space: nowrap;
  text-transform: uppercase;
}

.marquee__track > span {
  padding: 0 26px;
}

.marquee__track > i {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72em;
  font-style: normal;
}

.marquee--rev .marquee__row {
  animation-direction: reverse;
}

.marquee:hover .marquee__row {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  to {
    transform: translateX(-50%);
  }
}

.shead {
  max-width: 790px;
  margin-bottom: 42px;
}

.shead.center {
  margin-right: auto;
  margin-left: auto;
}

.shead h2 {
  margin: 18px 0 18px;
}

.qual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.qual-card {
  min-width: 0;
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color 240ms ease, transform 240ms ease, background 240ms ease;
}

.qual-card:hover {
  transform: translateY(-3px);
  border-color: var(--lime);
  background: var(--surface-2);
}

.qual-card__ic {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border: 1px solid rgba(229, 9, 20, 0.34);
  border-radius: 14px;
  background: radial-gradient(120% 120% at 30% 20%, rgba(229, 9, 20, 0.2), rgba(229, 9, 20, 0.035));
  color: var(--lime-bright);
  font-family: var(--body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: inset 0 0 18px rgba(229, 9, 20, 0.14), 0 6px 18px -10px var(--lime-glow);
}

.qual-card h3 {
  margin: 12px 0 10px;
  font-size: 21px;
  line-height: 1.15;
}

.qual-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.bridge {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  overflow: hidden;
  margin-top: 36px;
  padding: 42px 46px;
  border-radius: var(--radius-lg);
  background: linear-gradient(100deg, var(--lime-deep), var(--lime));
  color: #fff;
}

.bridge::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(0, 0, 0, 0.08) 0 1px, transparent 1px 40px);
}

.bridge > * {
  position: relative;
  z-index: 2;
}

.bridge p {
  max-width: 650px;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.4;
}

.bridge p b {
  display: block;
  font-weight: 700;
}

.strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.strip__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 40%, rgba(229, 9, 20, 0.12), transparent 45%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 32px),
    var(--surface);
  text-align: center;
  transition: transform 450ms var(--ease), border-color 220ms ease;
}

.strip__panel:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 9, 20, 0.62);
}

.strip__panel strong {
  margin-top: 20px;
  font-family: var(--body);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.strip__panel p {
  color: var(--muted);
  font-size: 16px;
}

.panel-icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 2px solid var(--lime-bright);
  border-radius: 50%;
  background: rgba(229, 9, 20, 0.035);
  color: var(--lime-bright);
  box-shadow: 0 0 0 12px rgba(229, 9, 20, 0.045), 0 0 30px rgba(229, 9, 20, 0.2);
  transition: transform 320ms var(--ease), background 240ms ease, box-shadow 240ms ease;
}

.panel-icon svg {
  width: 46px;
  height: 46px;
}

.strip__panel:hover .panel-icon {
  transform: translateY(-3px) scale(1.04);
  background: rgba(229, 9, 20, 0.075);
  box-shadow: 0 0 0 12px rgba(229, 9, 20, 0.06), 0 0 38px rgba(229, 9, 20, 0.3);
}

.panel-icon--ai {
  border-radius: 31% 50% 31% 50%;
}

.pillars-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(229, 9, 20, 0.12), transparent 60%),
    var(--bg-2);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.pillar {
  min-width: 0;
  padding: 28px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 240ms ease, border-color 240ms ease;
}

.pillar:hover {
  transform: translateY(-4px);
  border-color: var(--lime);
}

.pillar .pidx {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--lime);
  color: var(--lime-dark);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 8px 18px -6px var(--lime-glow);
}

.pillar h3 {
  margin: 18px 0 10px;
  font-size: 19px;
  line-height: 1.15;
}

.pillar p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
}

.event-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.event-card__photo {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 40%, rgba(229, 9, 20, 0.12), transparent 52%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 42px),
    #0d0d0d;
}

.event-card__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
}

.event-card__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 42px;
}

.event-meta {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}

.event-meta .row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.event-meta .ic {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(229, 9, 20, 0.28);
  border-radius: 10px;
  background: var(--surface-2);
  color: var(--lime-bright);
  font-size: 12px;
  font-weight: 700;
}

.event-meta .row b {
  display: block;
  font-size: 16px;
}

.event-meta .row span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.offer-band {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(100% 120% at 50% -10%, rgba(229, 9, 20, 0.17), transparent 55%),
    var(--bg);
}

.urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  max-width: 900px;
  margin: 0 auto 44px;
  padding: 30px 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 24% 50%, rgba(229, 9, 20, 0.1), transparent 38%),
    var(--surface);
}

.urgency__timer {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.urgency__eyebrow {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.countdown--large {
  gap: 12px;
}

.countdown--large .countdown__unit {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.countdown--large .countdown__unit b {
  font-size: 46px;
  line-height: 0.78;
}

.countdown--large .countdown__unit small {
  font-size: 8px;
  letter-spacing: 0.1em;
}

.countdown--large > i {
  align-self: flex-start;
  margin-top: 4px;
  font-size: 27px;
}

.urgency__vline {
  width: 1px;
  align-self: stretch;
  background: var(--line);
}

.urgency__limit {
  max-width: 235px;
  margin: 0;
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: uppercase;
}

.urgency__limit strong {
  display: block;
  color: var(--lime-bright);
  font-family: var(--body);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 0.95;
}

.tickets {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 590px;
  margin: 0 auto;
}

.ticket {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 38px 34px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.ticket--feat {
  scroll-margin-top: 118px;
  border-color: var(--lime);
  background: linear-gradient(180deg, rgba(229, 9, 20, 0.07), var(--surface) 31%);
  box-shadow: 0 0 0 1px var(--lime), 0 30px 70px -30px rgba(229, 9, 20, 0.36);
}

.ticket--feat:target {
  outline: 2px solid var(--lime-bright);
  outline-offset: 7px;
}

.ticket__tag {
  position: absolute;
  top: -15px;
  left: 50%;
  width: max-content;
  max-width: calc(100% - 30px);
  transform: translateX(-50%);
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--lime-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.ticket__head {
  margin: 10px 0 20px;
  font-size: 30px;
  line-height: 0.98;
}

.ticket__pricing {
  margin-bottom: 28px;
}

.ticket__price-old {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ticket__price-old s {
  text-decoration-color: var(--lime-deep);
  text-decoration-thickness: 2px;
}

.ticket__price {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  color: var(--cta-green-bright);
}

.ticket__price .cur {
  margin-top: 8px;
  font-size: 19px;
  font-weight: 700;
}

.ticket__price .val {
  color: var(--cta-green-bright);
  font-family: var(--body);
  font-size: 66px;
  font-weight: 700;
  line-height: 0.8;
}

.ticket ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
  list-style: none;
}

.ticket li {
  display: flex;
  gap: 11px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.ticket li::before {
  content: "";
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--lime)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231d2300' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center / 11px no-repeat;
}

.offer-note {
  max-width: 660px;
  margin: 28px auto 0;
  font-size: 13px;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.bonus {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  gap: 22px;
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color 240ms ease, transform 240ms ease;
}

.bonus:hover {
  transform: translateY(-3px);
  border-color: var(--lime);
}

.bonus__visual {
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  border: 1px solid rgba(229, 9, 20, 0.32);
  border-radius: 26px;
  background:
    radial-gradient(circle, rgba(229, 9, 20, 0.18), transparent 58%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 24px),
    var(--surface-2);
  color: var(--lime-bright);
  font-family: var(--body);
  font-size: 38px;
  font-weight: 700;
  box-shadow: inset 0 0 24px rgba(229, 9, 20, 0.08);
}

.bonus__n {
  color: var(--lime-bright);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bonus h3 {
  margin: 7px 0 8px;
  font-size: 21px;
  line-height: 1.15;
}

.bonus p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.scope {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 150px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(229, 9, 20, 0.1), transparent 50%),
    var(--surface);
}

.scope span {
  position: absolute;
  top: 12px;
  right: 18px;
  color: rgba(229, 9, 20, 0.15);
  font-family: var(--body);
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
}

.scope p {
  position: relative;
  z-index: 2;
  max-width: 260px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
}

.scope-action {
  margin-top: 44px;
}

.specialist-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}

.specialist {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 52px;
}

.specialist > * {
  min-width: 0;
}

.specialist__visual {
  position: relative;
  isolation: isolate;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 38%, rgba(229, 9, 20, 0.14), transparent 50%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 38px),
    var(--surface);
}

.specialist__visual::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: -8%;
  bottom: -8%;
  left: -8%;
  height: 37%;
  background:
    radial-gradient(ellipse 40% 54% at 18% 100%, rgba(15, 18, 14, 0.95), transparent 72%),
    radial-gradient(ellipse 42% 58% at 82% 100%, rgba(15, 18, 14, 0.94), transparent 72%),
    linear-gradient(180deg, transparent 0%, rgba(15, 15, 15, 0.24) 30%, rgba(15, 15, 15, 0.9) 76%, #0f0f0f 100%);
  filter: blur(12px);
  pointer-events: none;
}

.specialist__portrait {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 11%;
  filter: saturate(0.94) contrast(1.03);
  transform: scale(1.012);
}

.specialist h2 {
  margin: 18px 0 16px;
}

.creds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 26px 0;
}

.cred {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.cred .ic {
  color: var(--lime-bright);
  font-family: var(--body);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.cred p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.cred p b {
  color: var(--text);
}

.guarantee {
  display: grid;
  grid-template-columns: 230px 1fr;
  align-items: center;
  gap: 44px;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.seal {
  position: relative;
  display: grid;
  place-items: center;
  width: 220px;
  height: 220px;
  border: 2px solid var(--lime);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(229, 9, 20, 0.18), transparent 61%),
    var(--surface-2);
  box-shadow: inset 0 0 0 12px var(--surface), inset 0 0 0 14px rgba(229, 9, 20, 0.35), 0 24px 50px rgba(229, 9, 20, 0.2);
}

.seal span {
  font-family: var(--body);
  font-size: 70px;
  font-weight: 700;
  color: var(--lime-bright);
}

.seal i {
  position: absolute;
  top: 38px;
  right: 38px;
  color: var(--lime-bright);
  font-size: 30px;
  font-style: normal;
}

.guarantee h2 {
  margin: 16px 0;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 840px;
  margin: 0 auto;
}

.faq__item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color 200ms ease;
}

.faq__item.open {
  border-color: var(--lime);
}

.faq__item h3 {
  line-height: 1.2;
}

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 68px;
  padding: 21px 26px;
  border: 0;
  background: none;
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

.faq__q .tog {
  position: relative;
  flex: none;
  width: 26px;
  height: 26px;
}

.faq__q .tog::before,
.faq__q .tog::after {
  content: "";
  position: absolute;
  border-radius: 2px;
  background: var(--lime-bright);
  transition: transform 240ms ease;
}

.faq__q .tog::before {
  top: 12px;
  right: 4px;
  left: 4px;
  height: 2px;
}

.faq__q .tog::after {
  top: 4px;
  bottom: 4px;
  left: 12px;
  width: 2px;
}

.faq__item.open .tog::after {
  transform: scaleY(0);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease;
}

.faq__a-in {
  padding: 0 26px 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.footer {
  padding: 72px 0 104px;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}

.footer__cta {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.footer__cta h2 {
  margin: 18px 0;
}

.footer__cta .lead {
  max-width: 610px;
  margin: 0 auto 26px;
}

.support-link {
  margin-top: 22px;
}

.support-link a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: underline;
  text-decoration-color: var(--lime);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.footer__brand {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.footer__brand img {
  width: 150px;
  height: auto;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 11px;
  letter-spacing: 0.03em;
}

.stickybar {
  position: fixed;
  z-index: 70;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(90deg, var(--lime-deep), var(--lime) 55%, var(--lime-deep));
  box-shadow: 0 -10px 30px -10px rgba(0, 0, 0, 0.65);
  transform: translateY(120%);
  transition: transform 400ms ease;
}

.stickybar.show {
  transform: translateY(0);
}

.stickybar__inner {
  display: flex;
  align-items: center;
  gap: 22px;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.stickybar__label {
  flex: none;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}

.stickybar__label b {
  font-weight: 700;
}

.stickybar__progress {
  flex: 1;
  min-width: 0;
}

.stickybar__bar {
  position: relative;
  height: 24px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
}

.stickybar__bar > i {
  position: absolute;
  inset: 0;
  width: 78%;
  border-radius: inherit;
  background: #fff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.45);
}

.stickybar__bar b {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.stickybar .btn {
  flex: none;
  border-color: rgba(103, 243, 148, 0.58);
  background: linear-gradient(180deg, var(--cta-green-bright), var(--cta-green));
  color: var(--cta-green-dark);
  box-shadow: 0 10px 24px -10px rgba(5, 23, 11, 0.72);
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms var(--ease);
}

.reveal-ready .reveal.in {
  opacity: 1;
  transform: none;
}

.hero__copy > *,
.hero__media {
  animation: hero-in 760ms var(--ease) both;
}

.hero__copy > :nth-child(2) {
  animation-delay: 70ms;
}

.hero__copy > :nth-child(3) {
  animation-delay: 120ms;
}

.hero__copy > :nth-child(4),
.hero__copy > :nth-child(5),
.hero__copy > :nth-child(6) {
  animation-delay: 180ms;
}

.hero__media {
  animation-delay: 140ms;
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .topbar__limit {
    font-size: 11px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero__media {
    width: min(100%, 540px);
  }

  .hero__visual {
    aspect-ratio: 4 / 5;
  }

  .qual-grid,
  .scope-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .event-card__photo {
    min-height: 420px;
  }

  .specialist {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .specialist__visual {
    width: min(100%, 520px);
    aspect-ratio: 1 / 1;
  }

  .guarantee {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 68px 0;
  }

  .section--tight {
    padding: 56px 0;
  }

  .topbar__inner {
    gap: 14px;
    height: 72px;
  }

  .topbar__urgency {
    gap: 3px;
  }

  .topbar__timer-label {
    font-size: 8px;
  }

  .countdown--top {
    gap: 5px;
  }

  .countdown--top .countdown__unit b {
    font-size: 19px;
  }

  .countdown--top .countdown__unit small {
    font-size: 7px;
  }

  .countdown--top > i {
    font-size: 11px;
  }

  .topbar__limit {
    max-width: 170px;
    padding-left: 14px;
    font-size: 10px;
  }

  .topbar .btn {
    min-height: 42px;
    padding: 11px 16px;
    font-size: 10px;
  }

  .hero {
    padding-top: 102px;
  }

  .hero h1 {
    font-size: clamp(44px, 12.5vw, 56px);
  }

  .hero__copy {
    text-align: center;
  }

  .logo--hero,
  .hero .lead {
    margin-right: auto;
    margin-left: auto;
  }

  .hero__cta {
    align-items: stretch;
  }

  .hero__media {
    margin-right: auto;
    margin-left: auto;
  }

  .qual-grid,
  .scope-grid,
  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .strip {
    grid-template-columns: 1fr;
    max-width: 390px;
    margin-right: auto;
    margin-left: auto;
  }

  .bridge {
    flex-direction: column;
    align-items: center;
    padding: 32px 26px;
    text-align: center;
  }

  .pillars {
    grid-template-columns: 1fr;
  }

  .event-card__info {
    padding: 30px 24px;
  }

  .urgency {
    flex-direction: column;
    gap: 20px;
    padding: 28px 24px;
  }

  .urgency__vline {
    width: min(100%, 420px);
    height: 1px;
    align-self: center;
  }

  .urgency__timer {
    align-items: center;
  }

  .urgency__limit {
    max-width: 300px;
    text-align: center;
  }

  .bonus {
    grid-template-columns: 96px 1fr;
    gap: 16px;
    padding: 16px;
  }

  .bonus__visual {
    width: 90px;
    height: 90px;
    font-size: 30px;
  }

  .creds {
    grid-template-columns: 1fr;
  }

  .guarantee {
    gap: 28px;
    padding: 34px 24px;
  }

  .seal {
    width: 190px;
    height: 190px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .stickybar__inner {
    gap: 12px;
    padding: 0 14px;
  }

  .stickybar__label {
    display: none;
  }

  .stickybar .btn {
    min-width: 190px;
  }
}

@media (max-width: 520px) {
  .wrap {
    padding: 0 16px;
  }

  .topbar__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 132px;
    grid-template-rows: auto auto;
    column-gap: 8px;
    row-gap: 0;
    height: 80px;
  }

  .topbar__urgency {
    grid-row: 1;
    grid-column: 1;
    align-self: end;
    gap: 2px;
  }

  .topbar__timer-label {
    font-size: 8px;
  }

  .countdown--top {
    gap: 4px;
  }

  .countdown--top .countdown__unit {
    gap: 2px;
  }

  .countdown--top .countdown__unit b {
    font-size: 17px;
  }

  .countdown--top .countdown__unit small {
    font-size: 6px;
  }

  .countdown--top > i {
    font-size: 9px;
  }

  .topbar__limit {
    grid-row: 2;
    grid-column: 1;
    align-self: start;
    max-width: none;
    margin-top: 2px;
    padding-left: 0;
    border-left: 0;
    font-size: 9px;
    line-height: 1.1;
  }

  .topbar .btn {
    grid-row: 1 / 3;
    grid-column: 2;
    width: 132px;
    max-width: 132px;
    min-height: 44px;
    padding: 10px 12px;
  }

  .logo img {
    width: 154px;
  }

  .hero h1 {
    margin-top: 32px;
    font-size: clamp(44px, 12.5vw, 52px);
  }

  .btn {
    width: 100%;
    white-space: normal;
  }

  .hero__visual {
    aspect-ratio: 4 / 5;
  }

  .hero__visual img {
    inset: -2% -3% -3%;
    width: 106%;
    height: 105%;
  }

  .urgency {
    padding: 26px 16px;
  }

  .countdown--large {
    gap: 7px;
  }

  .countdown--large .countdown__unit {
    gap: 5px;
  }

  .countdown--large .countdown__unit b {
    font-size: 36px;
  }

  .countdown--large .countdown__unit small {
    font-size: 7px;
  }

  .countdown--large > i {
    margin-top: 2px;
    font-size: 21px;
  }

  .urgency__limit {
    font-size: 16px;
  }

  .urgency__limit strong {
    font-size: 30px;
  }

  .qual-card,
  .pillar {
    text-align: center;
  }

  .qual-card__ic,
  .pillar .pidx {
    margin-right: auto;
    margin-left: auto;
  }

  .event-card__photo {
    min-height: 320px;
  }

  .event-meta .row {
    text-align: left;
  }

  .ticket {
    padding: 38px 22px 24px;
  }

  .ticket__price .val {
    font-size: 54px;
  }

  .ticket__head {
    font-size: 26px;
  }

  .bonus {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bonus__visual {
    margin: 0 auto;
  }

  .scope p {
    max-width: 235px;
  }

  .faq__q,
  .faq__a-in {
    padding-right: 20px;
    padding-left: 20px;
  }

  .stickybar__progress {
    display: none;
  }

  .stickybar .btn {
    width: 100%;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn--pulse,
  .marquee__row,
  .hero__copy > *,
  .hero__media {
    animation: none;
  }

  .reveal-ready .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .qual-card,
  .pillar,
  .bonus,
  .panel-icon,
  .strip__panel {
    transition: none;
  }
}
