:root {
  --ink: #070b14;
  --ink-2: #101827;
  --paper: #f4f6f8;
  --white: #ffffff;
  --muted: #667085;
  --line: #d8dee8;
  --gold: #f6a313;
  --gold-dark: #d78607;
  --teal: #0f766e;
  --red: #b42318;
  --shadow: 0 24px 70px rgba(7, 11, 20, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", sans-serif;
}

body,
button,
input,
textarea {
  letter-spacing: 0;
}

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

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

.container {
  margin: 0 auto;
  max-width: 1500px;
  padding: 0 24px;
  width: 100%;
}

.campaign-nav {
  align-items: center;
  background: rgba(7, 11, 20, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  padding: 14px clamp(18px, 4vw, 58px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.campaign-logo img {
  height: 38px;
  object-fit: contain;
  width: auto;
}

.campaign-links {
  align-items: center;
  display: flex;
  gap: 22px;
}

.campaign-links a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  font-weight: 700;
}

.campaign-links a:hover {
  color: #ffffff;
}

.btn {
  align-items: center;
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: #111827;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.35rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  background: var(--gold-dark);
  box-shadow: 0 16px 34px rgba(246, 163, 19, 0.28);
  color: #111827;
  transform: translateY(-2px);
}

.btn-small {
  min-height: 42px;
  padding: 0.68rem 1rem;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.btn-dark {
  background: var(--ink);
  border-color: var(--ink);
  color: #ffffff;
}

.btn-dark:hover {
  background: #000000;
  color: #ffffff;
}

.eyebrow {
  color: var(--red);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(246, 163, 19, 0.2),
      transparent 28%
    ),
    linear-gradient(115deg, #070b14 0%, #0d1422 50%, #151312 100%);
  color: #ffffff;
  overflow: hidden;
  padding: clamp(30px, 8vw, 50px) 0 clamp(44px, 6vw, 78px);
  position: relative;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 76px 76px;
  content: "";
  inset: 0;
  opacity: 0.22;
  position: absolute;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(36px, 6vw, 78px);
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.82fr);
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  font-size: clamp(2.75rem, 6vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
  margin: 16px 0 14px;
  max-width: 900px;
  text-wrap: balance;
}

.hero-tagline {
  color: var(--gold);
  display: block;
  font-size: clamp(1.05rem, 2.1vw, 1.45rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.04rem, 2vw, 1.24rem);
  line-height: 1.72;
  margin: 0;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-meta span {
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
  font-weight: 800;
  padding: 0.72rem 0.95rem;
}

.hero-media {
  isolation: isolate;
  min-height: auto;
  position: relative;
}

.hero-media::before {
  background: linear-gradient(
    135deg,
    rgba(246, 163, 19, 0.28),
    rgba(15, 118, 110, 0.2)
  );
  content: "";
  inset: 38px -28px -28px 42px;
  position: absolute;
  z-index: -1;
}

.hero-media img {
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.42);
  height: auto;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.price-stamp {
  background: var(--white);
  bottom: 28px;
  box-shadow: var(--shadow);
  color: var(--ink);
  left: -38px;
  padding: 18px;
  position: absolute;
  width: min(250px, 78vw);
}

.price-stamp span,
.price-stamp small {
  color: var(--red);
  display: block;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-stamp strong {
  display: block;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  margin: 6px 0;
}

.section {
  padding: clamp(64px, 8vw, 104px) 0;
}

.proof-bar {
  background: var(--ink);
  color: #ffffff;
  padding: 28px 0;
}

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

.proof-grid article,
.learn-grid article,
.pain-grid article,
.ticket-card,
.faq-list article {
  border-radius: 8px;
}

.proof-grid article {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
}

.proof-grid strong {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 6px;
}

.proof-grid span {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.split-grid,
.location-grid,
.faq-grid,
.immersion-box {
  align-items: start;
  display: grid;
  gap: clamp(28px, 6vw, 72px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.02;
  margin: 10px 0 16px;
  text-wrap: balance;
}

.section p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.76;
  margin: 0;
}

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

.learn-grid article {
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(7, 11, 20, 0.07);
  min-height: 180px;
  padding: 22px;
}

.learn-grid span,
.speaker-card span,
.ticket-card span {
  color: var(--teal);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.learn-grid strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.event-poster {
  background:
    radial-gradient(circle at 88% 82%, rgba(37, 211, 102, 0.16), transparent 22%),
    radial-gradient(circle at 12% 16%, rgba(246, 163, 19, 0.16), transparent 28%),
    linear-gradient(135deg, #070b14, #111827);
  color: #ffffff;
  padding: clamp(26px, 5vw, 58px) 0 clamp(46px, 7vw, 90px);
}

.poster-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #ffffff;
  display: block;
  overflow: hidden;
  padding: 0;
}

.poster-copy {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(24px, 3.4vw, 44px) 0 0;
}

.poster-copy .eyebrow,
.poster-copy h2,
.poster-copy p {
  grid-column: 1;
}

.poster-copy .btn {
  align-self: center;
  grid-column: 2;
  grid-row: 1 / span 3;
  justify-self: end;
}

.poster-copy h2 {
  color: #ffffff;
  font-size: clamp(2.2rem, 4.2vw, 4.7rem);
  font-weight: 900;
  line-height: 0.98;
  margin: 0;
  max-width: 1040px;
  text-wrap: balance;
}

.poster-copy h2 span {
  display: inline-block;
  white-space: nowrap;
}

.poster-copy p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0;
  max-width: 760px;
}

.poster-media {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  margin: 0;
  overflow: hidden;
}

.poster-media img {
  aspect-ratio: 2.85 / 1;
  height: auto;
  object-fit: cover;
  object-position: top;
  width: 100%;
}

.image-band {
  background: #ffffff;
  padding-top: clamp(64px, 8vw, 104px);
}

.image-band-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.35fr 0.9fr 0.8fr;
}

.image-band figure {
  background: var(--ink);
  color: #ffffff;
  height: clamp(280px, 28vw, 380px);
  margin: 0;
  overflow: hidden;
  position: relative;
}

.image-band figure::after {
  background: linear-gradient(180deg, transparent, rgba(7, 11, 20, 0.82));
  bottom: 0;
  content: "";
  height: 48%;
  left: 0;
  position: absolute;
  right: 0;
}

.image-band img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.image-band figure:last-child img {
  object-fit: cover;
  object-position: center 24%;
}

.image-band figure:nth-child(2) img {
    object-position: center;
}

.image-band figcaption {
  bottom: 18px;
  font-weight: 900;
  left: 18px;
  position: absolute;
  z-index: 1;
}

.dark-section,
.speakers,
.final-cta {
  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(246, 163, 19, 0.16),
      transparent 30%
    ),
    linear-gradient(135deg, #070b14, #101827);
  color: #ffffff;
}

.dark-section p,
.speakers p,
.final-cta p {
  color: rgba(255, 255, 255, 0.72);
}

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

.pain-grid article {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  line-height: 1.48;
  min-height: 126px;
  padding: 22px;
}

.audience {
  background:
    radial-gradient(circle at 12% 18%, rgba(246, 163, 19, 0.14), transparent 26%),
    #ffffff;
}

.audience-grid {
  align-items: center;
  display: grid;
  gap: clamp(28px, 6vw, 74px);
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
}

.audience-grid .btn {
  margin-top: 28px;
}

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

.audience-list span {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(7, 11, 20, 0.06);
  color: var(--ink);
  font-weight: 900;
  line-height: 1.25;
  padding: 14px 18px;
}

.audience-list span:nth-last-child(-n + 2) {
  grid-column: span 2;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head-inline {
  align-items: end;
  display: flex;
  justify-content: space-between;
  max-width: none;
}

.section-head-inline p {
  max-width: 410px;
}

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

.speaker-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  display: grid;
  gap: 22px;
  grid-template-columns: 210px 1fr;
  min-height: 320px;
  padding: 18px;
}

.speaker-card img {
  background: #111827;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.speaker-card img[src*="lindembergue"] {
  object-fit: contain;
  object-position: bottom center;
}

.speaker-card h3 {
  font-size: 1.45rem;
  margin: 0 0 12px;
}

.speaker-profile {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  display: grid;
  gap: clamp(22px, 4vw, 44px);
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  margin-bottom: 22px;
  overflow: hidden;
  padding: clamp(18px, 3vw, 30px);
}

.speaker-profile-primary {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.06)),
    radial-gradient(circle at 88% 12%, rgba(246, 163, 19, 0.16), transparent 28%);
}

.speaker-profile-secondary {
  margin-top: 22px;
}

.speaker-profile-media {
  background: rgba(255, 255, 255, 0.06);
  aspect-ratio: 4 / 5;
  max-height: none;
  overflow: hidden;
}

.speaker-profile-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.speaker-profile-media img[src*="lindembergue"] {
  object-fit: cover;
  object-position: center 5%;
}

.speaker-profile-copy {
  align-self: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.speaker-profile-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.04rem, 2vw, 1.2rem);
  line-height: 1.72;
  margin: 0;
}

.speaker-label {
  color: var(--gold);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.speaker-profile-copy h3,
.books-panel h3,
.section-mini-head h3,
.client-proof h3 {
  color: #ffffff;
  font-size: clamp(1.7rem, 3vw, 3.1rem);
  font-weight: 900;
  line-height: 1.04;
  margin: 0 0 14px;
  text-wrap: balance;
}

.speaker-proof-list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.speaker-proof-list span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.35;
  padding: 12px;
}

.authority-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  margin-top: 22px;
}

.books-panel,
.videos-panel,
.client-proof {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  overflow: hidden;
}

.books-panel {
  display: grid;
  gap: 18px;
  grid-template-rows: auto 1fr;
  min-height: 530px;
  padding: 24px;
}

.books-panel p,
.client-proof p {
  color: rgba(255, 255, 255, 0.72);
}

.books-panel strong {
  color: var(--gold);
  display: inline-flex;
  font-weight: 900;
  margin-top: 18px;
}

.books-panel img {
  align-self: end;
  aspect-ratio: 2 / 1;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  object-fit: contain;
  padding: 12px;
  width: 100%;
  height: clamp(150px, 18vw, 220px);
}

.videos-panel {
  display: flex;
  flex-direction: column;
  min-height: 530px;
  padding: 24px;
}

.section-mini-head {
  margin-bottom: 18px;
}

.section-mini-head h3 {
  font-size: clamp(1.4rem, 2.4vw, 2.35rem);
}

.video-player-shell {
  background:
    radial-gradient(circle at top left, rgba(246, 163, 19, 0.2), transparent 30%),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  margin-bottom: 16px;
  padding: 12px;
}

.video-frame {
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 8px;
  display: block;
  height: auto;
  width: 100%;
}

.videos-panel .video-carousel {
  margin-top: auto;
}

.video-carousel {
  display: grid;
  gap: 14px;
  grid-auto-columns: minmax(360px, 1fr);
  grid-auto-flow: column;
  overflow-x: auto;
  padding: 2px 2px 10px;
  scroll-snap-type: x proximity;
}

.video-carousel::-webkit-scrollbar {
  height: 8px;
}

.video-carousel::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.video-thumb {
  appearance: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #ffffff;
  cursor: pointer;
  display: grid;
  gap: 14px;
  grid-template-columns: 154px minmax(0, 1fr);
  padding: 12px;
  scroll-snap-align: start;
  text-align: left;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.video-thumb:hover {
  border-color: rgba(246, 163, 19, 0.38);
  transform: translateY(-2px);
}

.video-thumb:focus-visible {
  outline: 3px solid rgba(246, 163, 19, 0.42);
  outline-offset: 3px;
}

.video-thumb.is-active {
  background: rgba(246, 163, 19, 0.13);
  border-color: rgba(246, 163, 19, 0.52);
}

.video-thumb-media {
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.video-thumb-media::after {
  background: linear-gradient(180deg, rgba(7, 11, 20, 0) 22%, rgba(7, 11, 20, 0.78) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.video-thumb-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.video-thumb-badge {
  background: rgba(7, 11, 20, 0.76);
  border-radius: 999px;
  bottom: 8px;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
  left: 8px;
  padding: 5px 8px;
  position: absolute;
  z-index: 1;
}

.video-thumb-copy {
  align-self: center;
  min-width: 0;
}

.video-thumb-copy strong,
.video-thumb-copy span {
  display: block;
}

.video-thumb-copy strong {
  font-size: 0.98rem;
  line-height: 1.25;
  margin-bottom: 6px;
}

.video-thumb-copy span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.42;
}

.client-proof {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  margin-top: 22px;
  padding: 24px;
}

.client-proof img {
  aspect-ratio: 16 / 9;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  object-fit: contain;
  padding: 16px;
  width: 100%;
}

.client-proof-copy {
  max-width: 520px;
}

.ticket-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.conversion-strip {
  background: linear-gradient(135deg, #070b14, #111827);
  color: #ffffff;
  padding: clamp(34px, 5vw, 58px) 0;
}

.conversion-box {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.conversion-box h2 {
  color: #ffffff;
  font-size: clamp(1.8rem, 3.6vw, 3.2rem);
  font-weight: 900;
  line-height: 1.02;
  margin: 10px 0 12px;
  max-width: 920px;
}

.conversion-box p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin: 0;
  max-width: 760px;
}

.ticket-card {
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(7, 11, 20, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 24px;
  position: relative;
}

.ticket-card-featured {
  border-color: rgba(246, 163, 19, 0.65);
  box-shadow: 0 24px 70px rgba(246, 163, 19, 0.18);
  transform: translateY(-12px);
}

.ticket-card em {
  background: var(--red);
  color: #ffffff;
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 900;
  padding: 6px 10px;
  position: absolute;
  right: 18px;
  text-transform: uppercase;
  top: 18px;
}

.ticket-card strong {
  display: block;
  font-size: 2.35rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.ticket-card small {
  color: var(--muted);
  display: block;
  margin-bottom: 18px;
}

.lot-ladder {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
}

.lot-ladder b {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  display: block;
  font-size: 0.86rem;
  font-weight: 900;
  padding: 9px 12px;
}

.ticket-card-featured .lot-ladder b:first-child,
.lot-ladder-premium b {
  background: rgba(246, 163, 19, 0.14);
  border-color: rgba(246, 163, 19, 0.36);
}

.ticket-card ul {
  color: var(--muted);
  line-height: 1.6;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.ticket-card li {
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
}

.ticket-card li::before {
  color: var(--teal);
  content: ">";
  font-weight: 900;
  left: 0;
  position: absolute;
}

.ticket-card .btn {
  margin-top: auto;
}

.immersion {
  background: #ffffff;
}

.immersion-box {
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 44px);
}

.immersion-card,
.date-card {
  background: var(--ink);
  border-radius: 8px;
  color: #ffffff;
  padding: 24px;
}

.immersion-card strong,
.date-card strong {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.immersion-card span {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.82);
  display: block;
  padding: 10px 0;
}

.immersion-card .btn {
  margin-top: 18px;
  width: 100%;
}

.date-card span {
  color: var(--gold);
  display: block;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.date-card p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 18px;
}

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

.faq-list article {
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(7, 11, 20, 0.05);
  padding: 20px;
}

.faq-list h3 {
  font-size: 1.02rem;
  margin: 0 0 8px;
}

.final-cta {
  background:
    linear-gradient(135deg, rgba(7, 11, 20, 0.9), rgba(16, 24, 39, 0.82)),
    url("../img/evento/cartaz\ leitura\ recife\ \(9\).jpg") center 5% / cover no-repeat;
  text-align: center;
}

.final-box {
  max-width: 830px;
}

.final-box h2 {
  font-size: clamp(2.25rem, 5vw, 4.8rem);
}

.final-box p {
  margin: 0 auto 26px;
  max-width: 660px;
}

.footer {
  align-items: center;
  background: #030712;
  color: rgba(255, 255, 255, 0.68);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 22px clamp(18px, 4vw, 58px);
}

.footer a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.whatsapp-float {
  align-items: center;
  background: #25d366;
  border-radius: 999px;
  bottom: 18px;
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.34);
  color: #06240f;
  display: inline-flex;
  font-weight: 900;
  min-height: 54px;
  padding: 0 20px;
  position: fixed;
  right: 18px;
  z-index: 30;
}

.whatsapp-float::before {
  content: "Garantir ingresso";
}

@media (max-width: 980px) {
  .campaign-links {
    display: none;
  }

  .hero-grid,
  .split-grid,
  .poster-card,
  .audience-grid,
  .conversion-box,
  .location-grid,
  .faq-grid,
  .immersion-box,
  .speaker-grid,
  .speaker-profile,
  .authority-grid,
  .client-proof,
  .ticket-grid,
  .proof-grid,
  .image-band-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: auto;
  }

  .hero-media img {
    height: auto;
  }

  .price-stamp {
    bottom: 18px;
    left: 18px;
  }

  .section-head-inline {
    align-items: start;
    display: grid;
    gap: 12px;
  }

  .conversion-box .btn {
    width: fit-content;
  }

  .speaker-card {
    grid-template-columns: 180px 1fr;
  }

  .speaker-profile-media {
    min-height: auto;
  }

  .ticket-card-featured {
    transform: none;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 18px;
  }

  .campaign-nav {
    gap: 12px;
    padding: 12px 16px;
  }

  .campaign-logo img {
    height: 30px;
  }

  .btn {
    width: 100%;
  }

  .campaign-nav .btn {
    min-height: 38px;
    padding: 0.55rem 0.75rem;
    width: auto;
  }

  .hero {
    padding-top: 46px;
  }

  .hero-actions,
  .hero-meta {
    display: grid;
  }

  .hero-media img {
    height: auto;
  }

  .price-stamp {
    margin-top: 14px;
    position: static;
    width: 100%;
  }

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

  .speaker-card img {
    height: 360px;
  }

  .speaker-profile {
    padding: 16px;
  }

  .speaker-profile-media {
    min-height: auto;
  }

  .speaker-profile-media img {
    height: 100%;
  }

  .speaker-proof-list,
  .audience-list,
  .video-thumb {
    grid-template-columns: 1fr;
  }

  .audience-list span:nth-last-child(-n + 2) {
    grid-column: auto;
  }

  .books-panel,
  .videos-panel {
    min-height: auto;
  }

  .conversion-box .btn {
    width: 100%;
  }

  .video-carousel {
    grid-auto-columns: minmax(82vw, 1fr);
  }

  .books-panel,
  .videos-panel,
  .client-proof {
    padding: 18px;
  }

  .image-band figure {
    height: 280px;
  }

  .poster-card {
    padding: 14px;
  }

  .poster-copy {
    display: block;
    padding: 18px 4px 6px;
  }

  .poster-copy h2 span {
    display: block;
    white-space: normal;
  }

  .poster-copy .btn {
    margin-top: 22px;
  }

  .poster-media img {
    aspect-ratio: 2.85 / 1;
    object-fit: cover;
  }

  .footer {
    align-items: start;
    flex-direction: column;
  }

  .whatsapp-float {
    bottom: 12px;
    justify-content: center;
    left: 12px;
    right: 12px;
  }
}
