:root {
  --ink: #0d0c0b;
  --night: #130f12;
  --night-2: #1c1418;
  --paper: #f8f4ee;
  --paper-2: #efe8de;
  --text: #1f1717;
  --muted: #6b5d58;
  --light-muted: #cdbfb9;
  --white: #ffffff;
  --green: #25f21d;
  --green-dark: #0a8f20;
  --pink: #fb0367;
  --orange: #fd8b3d;
  --gold: #fdc872;
  --red: #e43b21;
  --border-dark: rgba(255, 255, 255, 0.12);
  --border-light: rgba(23, 15, 12, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --radius: 8px;
  --radius-lg: 20px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

section[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--night);
  color: var(--white);
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.shell {
  width: min(var(--shell), calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: fixed;
  z-index: 40;
  top: 14px;
  left: 50%;
  width: min(1180px, calc(100% - 28px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(12, 10, 11, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
}

.brand img {
  width: 154px;
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav a:hover {
  color: var(--green);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--green) 0%, #9dff62 100%);
  color: #081006;
  box-shadow: 0 14px 34px rgba(37, 242, 29, 0.28);
}

.button-primary::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -42%;
  width: 38%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  animation: buttonSheen 3.8s ease-in-out infinite;
  pointer-events: none;
}

.button-primary:hover {
  filter: brightness(1.06);
  box-shadow: 0 18px 42px rgba(37, 242, 29, 0.34);
}

.button-ticket {
  gap: 10px;
}

.button-ticket::before {
  content: "";
  position: relative;
  z-index: 1;
  order: 2;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M5.75%205.25h12.5A2.25%202.25%200%200%201%2020.5%207.5v2.15a2.35%202.35%200%200%200%200%204.7v2.15a2.25%202.25%200%200%201-2.25%202.25H5.75A2.25%202.25%200%200%201%203.5%2016.5v-2.15a2.35%202.35%200%200%200%200-4.7V7.5a2.25%202.25%200%200%201%202.25-2.25Z%27%20stroke%3D%27%23081006%27%20stroke-width%3D%272.2%27%20stroke-linejoin%3D%27round%27/%3E%3Cpath%20d%3D%27M9.7%207.65v8.7%27%20stroke%3D%27%23081006%27%20stroke-width%3D%272.2%27%20stroke-linecap%3D%27round%27%20stroke-dasharray%3D%271%203%27/%3E%3C/svg%3E") center / contain no-repeat;
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
  background: rgba(37, 242, 29, 0.12);
  color: var(--green);
  border: 1px solid rgba(37, 242, 29, 0.36);
}

.button-ghost {
  color: var(--white);
  border: 1px solid var(--border-dark);
  background: rgba(255, 255, 255, 0.06);
}

.button-dark {
  background: var(--night);
  color: var(--white);
}

.button-wide {
  width: 100%;
}

.section {
  padding: 112px 0;
}

.section-dark {
  position: relative;
  background: var(--night);
  color: var(--white);
  overflow: hidden;
}

.section-light {
  background: var(--paper);
  color: var(--text);
}

.hero {
  min-height: 100svh;
  padding: 126px 0 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 16%, rgba(251, 3, 103, 0.34), transparent 28%),
    radial-gradient(circle at 14% 78%, rgba(253, 139, 61, 0.2), transparent 26%),
    linear-gradient(120deg, rgba(19, 15, 18, 0.36), rgba(19, 15, 18, 0.84)),
    url("./assets/bg/tech-bg.webp") center/cover no-repeat;
  opacity: 0.9;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(19, 15, 18, 0.94) 0%, rgba(19, 15, 18, 0.66) 44%, rgba(19, 15, 18, 0.9) 100%),
    linear-gradient(180deg, rgba(19, 15, 18, 0.2), var(--night) 96%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.8fr);
  align-items: center;
  gap: 86px;
  min-height: calc(100svh - 180px);
  padding-bottom: 82px;
}

.date-line,
.section-kicker {
  margin: 0 0 24px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.manifesto h2,
.price-copy h2,
.offer-copy h2,
.about-copy h2,
.certificate-copy h2,
.support-card h2 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.92;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(46px, 3.9vw, 62px);
  line-height: 0.95;
}

.hero-copy {
  min-width: 0;
}

.hero-lead {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.18vw, 19px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.ticket-progress {
  width: min(520px, 100%);
  margin-top: 28px;
}

.ticket-progress-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticket-progress-row strong {
  color: var(--green);
  font-size: 13px;
}

.ticket-progress-bar {
  position: relative;
  height: 12px;
  overflow: hidden;
  border: 1px solid rgba(37, 242, 29, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.24);
}

.ticket-progress-bar span {
  display: block;
  width: var(--sold-percent, 0%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), #9dff62);
  box-shadow: 0 0 20px rgba(37, 242, 29, 0.42);
  transition: width 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.authority-strip {
  overflow: hidden;
  width: min(680px, 100%);
  margin-top: 28px;
  max-width: 100%;
  border: 1px solid var(--border-dark);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.84);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.authority-track {
  display: flex;
  width: max-content;
  animation: ticker 34s linear infinite;
}

.authority-group {
  display: flex;
  flex: 0 0 auto;
}

.authority-track span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding-right: 34px;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.authority-track span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin: 0 12px 0 18px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 14px rgba(253, 139, 61, 0.6);
}

.hero-media {
  position: relative;
  min-height: 640px;
}

.portrait-frame {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #1a1116;
  box-shadow: var(--shadow);
  animation: portraitFloat 8s ease-in-out infinite alternate;
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(19, 15, 18, 0.78));
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  transform: scaleX(-1);
}

.ticket-card {
  position: absolute;
  right: -28px;
  bottom: 42px;
  width: 190px;
  padding: 20px;
  border-radius: 18px;
  background: var(--paper);
  color: var(--text);
  box-shadow: var(--shadow);
}

.ticket-card span,
.ticket-card small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.ticket-card strong {
  display: block;
  margin: 4px 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 58px;
  font-weight: 400;
  line-height: 0.95;
  color: var(--pink);
}

.ticker {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: 44px;
  padding: 0;
  background: linear-gradient(90deg, var(--pink), var(--orange), var(--gold));
  color: #1a0809;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker 52s linear infinite;
  will-change: transform;
}

.ticker-group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.ticker span {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-right: 38px;
  font-size: 13px;
  font-weight: 1000;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes buttonSheen {
  0%,
  55% {
    left: -44%;
  }
  100% {
    left: 122%;
  }
}

@keyframes portraitFloat {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}

@keyframes proofCarousel {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.section-heading {
  max-width: 760px;
}

.section-heading.centered {
  margin: 0 auto;
  text-align: center;
}

.section-heading h2,
.manifesto h2,
.price-copy h2,
.offer-copy h2,
.about-copy h2,
.certificate-copy h2,
.support-card h2 {
  font-size: clamp(42px, 5vw, 78px);
}

.section-heading p:not(.section-kicker) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}

.pillar {
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(29, 16, 12, 0.08);
}

.pillar img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.pillar div {
  padding: 28px;
}

.pillar span {
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pillar h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.08;
}

.pillar p,
.check-list p,
.audience-grid p,
.market-cards p,
.timeline p,
.offer-copy p,
.about-copy p,
.certificate-copy p,
.certificate-feature p,
.support-card p,
.faq-list p {
  margin: 0;
  color: inherit;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 74px;
  align-items: start;
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-list p,
.audience-grid p {
  position: relative;
  padding: 20px 20px 20px 52px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 700;
}

.check-list p::before,
.audience-grid p::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 18px;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--pink), var(--gold));
  box-shadow: 0 0 0 4px rgba(251, 3, 103, 0.08);
}

@media (min-width: 900px) {
  .scroll-check-section {
    min-height: var(--checks-pin-height, calc(100svh + 680px));
    padding: 0;
    overflow: visible;
  }

  .scroll-check-sticky {
    --checks-left-fade: 0;
    --checks-right-fade: 1;
    position: sticky;
    top: 96px;
    display: block;
    height: calc(100svh - 96px);
    padding: 80px 0 58px;
    overflow: clip;
  }

  .scroll-check-section .section-heading {
    max-width: 780px;
    position: relative;
    z-index: 3;
  }

  .scroll-check-section .section-heading h2 {
    max-width: 740px;
  }

  .scroll-check-track {
    display: flex;
    width: max-content;
    gap: 14px;
    margin-top: 44px;
    position: relative;
    z-index: 1;
    transform: translate3d(var(--checks-x, 0px), 0, 0);
    will-change: transform;
  }

  .scroll-check-sticky::before,
  .scroll-check-sticky::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(48px, 7vw, 96px);
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.18s ease;
  }

  .scroll-check-sticky::before {
    left: -1px;
    opacity: var(--checks-left-fade);
    background: linear-gradient(90deg, var(--night) 0%, rgba(11, 7, 10, 0.86) 28%, transparent 100%);
  }

  .scroll-check-sticky::after {
    right: -1px;
    opacity: var(--checks-right-fade);
    background: linear-gradient(270deg, var(--night) 0%, rgba(11, 7, 10, 0.86) 28%, transparent 100%);
  }

  .scroll-check-track p {
    flex: 0 0 260px;
    min-height: 340px;
    padding: 112px 22px 30px;
    border-radius: var(--radius-lg);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045)),
      rgba(255, 255, 255, 0.055);
    color: rgba(255, 255, 255, 0.84);
    font-size: 16px;
    line-height: 1.45;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
  }

  .scroll-check-track p::before {
    top: 44px;
    left: 22px;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    box-shadow: 0 0 0 7px rgba(251, 3, 103, 0.08), 0 12px 28px rgba(251, 3, 103, 0.24);
  }
}

.manifesto {
  padding: 0;
  background: linear-gradient(135deg, var(--paper) 0%, #fff 55%, #ffe4dc 100%);
  color: var(--text);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  align-items: start;
  min-height: unset;
  padding: 94px 0;
}

.manifesto-copy h2 {
  max-width: 900px;
}

.manifesto-copy .button {
  margin-top: 28px;
}

.market-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.market-cards article {
  min-height: 245px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--night);
  color: var(--white);
}

.market-cards strong {
  display: block;
  margin-bottom: 32px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 64px;
  line-height: 0.8;
  color: var(--green);
}

.market-cards p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.testimonial-rail {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  margin-top: 48px;
  padding: 6px 0 22px;
  scroll-snap-type: none;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  cursor: default;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.testimonial-rail::-webkit-scrollbar {
  display: none;
}

.testimonial-track {
  display: flex;
  width: max-content;
  cursor: default;
  animation: proofCarousel 46s linear infinite;
  will-change: transform;
}

.testimonial-rail:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-rail.is-dragging .testimonial-track {
  animation-play-state: paused;
}

.testimonial-group {
  display: flex;
  flex: 0 0 auto;
  gap: 18px;
  padding-right: 18px;
  cursor: default;
}

.testimonial-rail figure {
  flex: 0 0 clamp(320px, 30vw, 420px);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  background: #050505;
  cursor: default;
  scroll-snap-align: start;
}

.testimonial-rail img {
  width: 100%;
  height: clamp(520px, 48vw, 660px);
  object-fit: contain;
  background: #080808;
  cursor: default;
  user-select: none;
  -webkit-user-drag: none;
}

@media (max-width: 899px) {
  .testimonial-rail {
    scroll-snap-type: none;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .testimonial-track {
    animation-duration: 64s;
  }

  .testimonial-group {
    display: flex;
    gap: 14px;
    padding-right: 14px;
  }

  .testimonial-rail figure {
    flex: 0 0 min(78vw, 310px);
  }

  .testimonial-rail img {
    height: 390px;
  }
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.section-light .audience-grid p {
  border-color: var(--border-light);
  background: var(--white);
  color: var(--text);
  box-shadow: 0 14px 38px rgba(29, 16, 12, 0.06);
}

@media (min-width: 1021px) {
  .audience-section {
    overflow: visible;
  }

  .audience-split {
    align-items: start;
    min-height: calc(100svh - 126px);
  }

  .audience-sticky-copy {
    position: sticky;
    top: 126px;
    align-self: start;
  }

  .audience-sticky-copy.reveal,
  .audience-sticky-copy.reveal.is-visible {
    transform: none;
  }
}

.promise-band {
  padding: 86px 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(251, 3, 103, 0.3), transparent 30%),
    linear-gradient(90deg, var(--night), #261217);
}

.promise-content {
  max-width: 920px;
  text-align: center;
}

.promise-content p {
  margin: 0 auto;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  font-weight: 700;
}

.promise-content h2 {
  margin: 16px 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(62px, 9vw, 128px);
  font-weight: 400;
  line-height: 0.86;
  color: var(--green);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 48px;
}

.timeline article {
  position: relative;
  min-height: 128px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.timeline-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 128px;
  padding: 22px 18px;
  color: inherit;
}

.timeline time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  background: #e2dfd7;
  color: var(--text);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.timeline-label {
  color: var(--text);
  min-width: 0;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.08;
  text-align: right;
  overflow-wrap: anywhere;
}

.timeline article:last-child .timeline-label {
  font-size: clamp(17px, 1.4vw, 20px);
}

@media (min-width: 1021px) {
  .timeline article:last-child .timeline-label {
    font-size: clamp(15px, 1.2vw, 18px);
    overflow-wrap: normal;
    white-space: nowrap;
  }
}

.timeline-end-note {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  text-align: center;
}

.price-section {
  background:
    radial-gradient(circle at 82% 28%, rgba(37, 242, 29, 0.15), transparent 24%),
    linear-gradient(180deg, var(--night), #070707);
}

.price-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(350px, 0.62fr);
  gap: 64px;
  align-items: center;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.countdown span {
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(37, 242, 29, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--light-muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.countdown strong {
  display: block;
  color: var(--green);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 0.85;
}

.ticket-mockup {
  width: min(560px, 100%);
  margin-top: 34px;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.32));
}

.price-card {
  padding: 34px;
  border: 1px solid rgba(37, 242, 29, 0.28);
  border-radius: 24px;
  background: var(--paper);
  color: var(--text);
  box-shadow: var(--shadow);
}

.price-card-stack {
  display: grid;
  gap: 14px;
  align-self: center;
}

.price-card > p {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 900;
}

.price-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--green);
}

.price-stack {
  margin-bottom: 28px;
}

.price-stack span,
.price-stack small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-stack strong {
  display: block;
  margin: 12px 0 10px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(92px, 9vw, 132px);
  font-weight: 400;
  line-height: 0.82;
  color: var(--pink);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 48px;
}

.benefit-grid p {
  min-height: 210px;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 14px 38px rgba(29, 16, 12, 0.06);
}

.benefit-grid img {
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
}

.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: 76px;
  align-items: center;
}

.section-logo {
  width: min(330px, 86%);
  margin-bottom: 34px;
}

.section-logo-desktop {
  display: block;
  width: min(560px, 96%);
  margin-bottom: 38px;
}

.section-logo-mobile {
  display: none;
}

.offer-section .offer-copy > h2 {
  display: none;
}

.offer-copy p,
.about-copy p,
.certificate-copy p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.negative-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.offer-badges-mobile {
  display: none;
}

.negative-list span {
  padding: 11px 14px;
  border: 1px solid rgba(253, 200, 114, 0.26);
  border-radius: 999px;
  background: rgba(253, 200, 114, 0.08);
  color: #ffe0a3;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-copy .button,
.split .section-heading .button {
  margin-top: 28px;
}

.offer-badge-panel {
  align-self: stretch;
  display: flex;
  align-items: center;
  min-height: 420px;
  padding: 36px;
  border: 1px solid rgba(253, 200, 114, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 18%, rgba(253, 200, 114, 0.16), transparent 34%),
    radial-gradient(circle at 88% 82%, rgba(37, 242, 29, 0.1), transparent 30%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.24);
}

.offer-badge-panel .negative-list {
  gap: 14px;
  margin-top: 0;
}

.offer-badge-panel .negative-list span {
  padding: 15px 18px;
  font-size: 13px;
  line-height: 1.15;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1fr);
  gap: 76px;
  align-items: center;
}

.about-photo {
  overflow: hidden;
  border-radius: 28px;
  background: #171112;
  box-shadow: var(--shadow);
}

.about-photo img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  object-position: 50% 10%;
}

.about-copy {
  align-self: start;
  padding-top: 58px;
}

.about-mobile-kicker {
  display: none;
  color: var(--muted);
}

.about-copy .section-kicker {
  margin-bottom: 36px;
}

.about-copy p {
  color: var(--muted);
}

.about-copy h2 {
  font-size: clamp(34px, 3.7vw, 58px);
}

.about-copy .button {
  margin-top: 30px;
}

.certificate-section {
  background:
    linear-gradient(135deg, rgba(251, 3, 103, 0.2), transparent 35%),
    var(--night);
  color: var(--white);
}

.certificate-desktop-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 56px;
  align-items: center;
}

.certificate-bonus-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 0.96fr);
  gap: 64px;
  align-items: center;
  margin-top: 84px;
}

.certificate-mobile-grid {
  display: none;
}

.certificate-aside,
.certificate-bonus-media {
  display: grid;
  justify-items: center;
}

.certificate-robot-art {
  display: block;
  width: min(100%, 680px);
  justify-self: center;
  border-radius: 28px;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.34);
}

.robot-note {
  padding: 34px;
  border: 1px solid var(--border-dark);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
}

.robot-note span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.robot-note p {
  max-width: 320px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.certificate-copy .button {
  margin-top: 30px;
}

.certificate-bonus-copy .section-kicker {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.certificate-apostila-art {
  display: block;
  width: min(100%, 540px);
  justify-self: center;
  filter: drop-shadow(0 32px 52px rgba(0, 0, 0, 0.4));
}

.certificate-feature {
  display: grid;
  justify-items: center;
  text-align: center;
}

.certificate-mockup {
  width: min(100%, 430px);
  justify-self: center;
  filter: drop-shadow(0 28px 46px rgba(0, 0, 0, 0.42));
}

.certificate-apostila-mobile {
  display: block;
  width: min(100%, 540px);
  filter: drop-shadow(0 28px 44px rgba(29, 16, 12, 0.18));
}

.certificate-feature h2 {
  margin: 34px 0 0;
  color: var(--text);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(38px, 5.2vw, 72px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.certificate-feature .section-kicker {
  margin: 30px 0 0;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.certificate-feature p {
  max-width: 570px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 24px;
  line-height: 1.45;
}

.certificate-feature .button {
  margin-top: 42px;
  min-width: min(100%, 420px);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

@media (min-width: 1021px) {
  .faq-section {
    overflow: visible;
  }

  .faq-sticky-copy {
    position: sticky;
    top: 126px;
    align-self: start;
  }

  .faq-sticky-copy.reveal,
  .faq-sticky-copy.reveal.is-visible {
    transform: none;
  }
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  display: block;
  padding: 22px 58px 22px 24px;
  color: var(--text);
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 18px;
  color: var(--pink);
  font-size: 26px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  padding: 0 24px 24px;
  color: var(--muted);
}

.support-section {
  padding: 80px 0;
}

.support-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 42px;
  border: 1px solid var(--border-dark);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.055);
}

.support-card h2 {
  font-size: clamp(38px, 4vw, 64px);
}

.support-card p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.74);
}

.footer {
  padding: 44px 0 118px;
  background: #070707;
  color: rgba(255, 255, 255, 0.62);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 12px;
  font-weight: 700;
}

.footer img {
  width: 160px;
}

.modal {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(650px, 100%);
  max-height: min(820px, calc(100svh - 44px));
  overflow: auto;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 2%, rgba(251, 3, 103, 0.22), transparent 32%),
    #141414;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.modal-heading {
  max-width: 460px;
  margin: 0 auto 24px;
  text-align: center;
}

.modal-heading img {
  width: 180px;
  margin: 0 auto 22px;
}

.modal-heading h2 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 400;
  line-height: 0.92;
}

.modal-heading p,
.form-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 700;
}

#_form_107_ {
  display: grid;
  gap: 14px;
  width: min(520px, 100%);
  margin: 0 auto;
}

#_form_107_ label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

#_form_107_ input[type="email"],
#_form_107_ input[type="tel"],
#_form_107_ input[type="text"] {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  outline: 0;
  background: #fff;
  color: #0f172a;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

#_form_107_ input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(37, 242, 29, 0.22);
}

#_form_107_ ._submit {
  margin-top: 8px;
  font-family: "Montserrat", system-ui, sans-serif;
}

.form-note {
  text-align: center;
}

.modal-open {
  overflow: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.62s ease, transform 0.62s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal,
  .ticker-track,
  .authority-track,
  .testimonial-track,
  .portrait-frame,
  .button-primary::after {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .testimonial-group[aria-hidden="true"] {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) and (min-width: 900px) {
  .scroll-check-section {
    min-height: auto;
    padding: 112px 0;
  }

  .scroll-check-sticky {
    position: static;
    height: auto;
    padding: 0;
    overflow: visible;
  }

  .scroll-check-sticky::before,
  .scroll-check-sticky::after {
    display: none;
  }

  .scroll-check-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: auto;
    transform: none;
  }

  .scroll-check-track p {
    flex: auto;
    min-height: auto;
    padding: 20px 20px 20px 52px;
  }
}

@media (hover: hover) {
  .pillar,
  .market-cards article,
  .timeline article,
  .benefit-grid p,
  .mockup-stack img,
  .testimonial-rail figure {
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  }

  .pillar:hover,
  .market-cards article:hover,
  .timeline article:hover,
  .benefit-grid p:hover,
  .mockup-stack img:hover,
  .testimonial-rail figure:hover {
    transform: translateY(-4px);
  }

  .market-cards article:hover,
  .timeline article:hover {
    border-color: rgba(37, 242, 29, 0.32);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
  }
}

@media (max-width: 1020px) {
  .nav {
    display: none;
  }

  .topbar {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .hero-grid,
  .split,
  .manifesto-grid,
  .price-grid,
  .offer-grid,
  .about-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 38px;
  }

  .hero-media {
    min-height: 560px;
  }

  .ticket-card {
    right: 18px;
  }

  .pillar-grid,
  .market-cards,
  .timeline,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .manifesto-grid {
    min-height: unset;
  }

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

  .about-copy {
    padding-top: 0;
  }

  .section-logo-desktop {
    display: block;
    width: min(330px, 88%);
    margin-bottom: 34px;
  }

  .section-logo-mobile {
    display: none;
  }

  .offer-section .offer-copy > h2 {
    display: none;
  }
}

@media (max-width: 700px) {
  section[id] {
    scroll-margin-top: 108px;
  }

  .shell {
    width: min(100% - 28px, var(--shell));
  }

  .topbar {
    top: 10px;
    width: calc(100% - 20px);
    padding: 8px 8px 8px 12px;
  }

  .brand img {
    width: 118px;
  }

  .topbar .button {
    min-height: 38px;
    max-width: 148px;
    padding: 0 12px;
    font-size: 10px;
    white-space: normal;
    line-height: 1.05;
  }

  .section {
    padding: 74px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 96px;
  }

  .hero-grid {
    min-height: unset;
    padding-bottom: 40px;
  }

  .hero-copy {
    padding-top: 210px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(8, 5, 7, 0.46) 0%, rgba(8, 5, 7, 0.08) 24%, rgba(8, 5, 7, 0.34) 38%, rgba(8, 5, 7, 0.9) 54%, rgba(8, 5, 7, 0.99) 86%),
      linear-gradient(90deg, rgba(8, 5, 7, 0.48) 0%, rgba(8, 5, 7, 0.12) 52%, rgba(8, 5, 7, 0.42) 100%),
      url("./assets/photos/luciana-hero-mobile-img3914-q90.webp") center -34px / cover no-repeat;
    opacity: 1;
  }

  .hero-bg::after {
    background:
      radial-gradient(circle at 68% 22%, rgba(251, 3, 103, 0.1), transparent 30%),
      linear-gradient(180deg, rgba(19, 15, 18, 0.08) 0%, rgba(19, 15, 18, 0.5) 52%, var(--night) 100%);
  }

  .date-line,
  .section-kicker {
    margin-bottom: 18px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .hero h1 {
    font-size: clamp(33px, 9.4vw, 40px);
    line-height: 0.96;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.5;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 14px;
  }

  .ticket-progress {
    margin-top: 18px;
  }

  .button {
    width: 100%;
    white-space: normal;
    line-height: 1.08;
  }

  .authority-strip {
    width: 100%;
    margin-top: 18px;
  }

  .authority-track {
    animation-duration: 42s;
  }

  .authority-track span {
    min-height: 40px;
    padding-right: 22px;
    font-size: 9px;
    letter-spacing: 0;
  }

  .authority-track span::before {
    width: 7px;
    height: 7px;
    margin: 0 9px 0 14px;
  }

  .hero-media {
    display: none;
  }

  .ticker span {
    min-height: 44px;
    margin-right: 30px;
    font-size: 12px;
    line-height: 1;
  }

  .certificate-section {
    background: var(--paper);
    color: var(--text);
  }

  .certificate-desktop-grid,
  .certificate-bonus-grid {
    display: none;
  }

  .certificate-mobile-grid {
    display: grid;
    gap: 46px;
  }

  .section-heading h2,
  .manifesto h2,
  .price-copy h2,
  .offer-copy h2,
  .about-copy h2,
  .support-card h2 {
    font-size: clamp(42px, 14vw, 62px);
  }

  .section-logo-desktop {
    display: block;
    width: min(330px, 88%);
    margin-bottom: 34px;
  }

  .section-logo-mobile {
    display: none;
  }

  .offer-section .offer-copy > h2 {
    display: none;
  }

  .audience-sticky-copy h2 {
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1.02;
  }

  .pillar-grid,
  .market-cards,
  .timeline,
  .benefit-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .pillar div {
    padding: 22px;
  }

  .split,
  .offer-grid,
  .about-grid,
  .faq-grid {
    gap: 34px;
  }

  .manifesto-grid {
    gap: 38px;
    padding: 0;
  }

  .manifesto {
    padding: 48px 0 74px;
  }

  .manifesto-copy.reveal,
  .manifesto-copy.reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .market-cards article,
  .timeline article,
  .benefit-grid p {
    min-height: auto;
  }

  .timeline {
    gap: 10px;
  }

  .timeline-trigger {
    min-height: 92px;
  }

  #depoimentos {
    padding-top: 122px;
  }

  .benefit-grid p {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.48s ease, transform 0.54s cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: var(--benefit-delay, 0ms);
  }

  .benefit-grid p.benefit-card-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .market-cards strong {
    margin-bottom: 28px;
  }

  .testimonial-rail {
    grid-auto-columns: minmax(210px, 78vw);
  }

  .testimonial-rail img {
    height: 390px;
  }

  .promise-band {
    padding: 64px 0;
  }

  .promise-content h2 {
    font-size: clamp(58px, 18vw, 88px);
  }

  .countdown {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 12px;
  }

  .price-card {
    padding: 24px;
  }

  .price-stack strong {
    font-size: 92px;
  }

  .about-photo img {
    height: 560px;
  }

  .about-copy {
    padding-top: 0;
  }

  .about-copy h2 {
    font-size: clamp(31px, 8.5vw, 38px);
    line-height: 1.04;
  }

  .about-mobile-kicker {
    display: block;
    margin-bottom: 0;
    font-size: 17px;
    line-height: 1.2;
    letter-spacing: 0.1em;
  }

  .about-copy-kicker {
    display: none;
  }

  .offer-apostila-mockup,
  .offer-certificate-mockup {
    display: none;
  }

  .offer-badge-panel {
    display: none;
  }

  .offer-badges-mobile {
    display: flex;
  }

  .certificate-feature h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .certificate-feature p {
    font-size: 20px;
  }

  .certificate-mockup {
    width: min(100%, 350px);
  }

  .certificate-apostila-mobile {
    width: min(100%, 350px);
  }

  .support-card {
    padding: 28px;
    border-radius: 22px;
  }

  .support-card h2 {
    font-size: clamp(34px, 9vw, 40px);
    line-height: 1.03;
  }

  .footer {
    padding-bottom: 104px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .modal {
    padding: 14px;
  }

  .modal-dialog {
    padding: 28px 18px;
    border-radius: 20px;
  }

  .modal-heading img {
    width: 150px;
  }
}
