:root {
  color-scheme: dark;
  --bg: #0c100e;
  --panel: #121915;
  --panel-2: #161d19;
  --line: rgba(220, 239, 225, 0.14);
  --text: #f5f3ec;
  --muted: #a6b0a9;
  --cream: #dfd4c7;
  --green: #88d49d;
  --green-deep: #315f40;
  --pink: #ff8daf;
  --pink-soft: #ffb2c7;
  --plum: #5d3449;
  --danger: #eb5d73;
  --radius: 28px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 78% 7%, rgba(255, 104, 154, 0.08), transparent 28rem),
    radial-gradient(circle at 8% 28%, rgba(90, 180, 112, 0.07), transparent 24rem),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.5;
  overflow-x: hidden;
}

::selection { background: var(--pink); color: #15100f; }
a { color: inherit; }
button, input { font: inherit; }

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .11;
  z-index: 30;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}

.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  backdrop-filter: blur(18px);
  background: rgba(12, 16, 14, .76);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.brand { display: inline-flex; gap: 10px; align-items: center; text-decoration: none; font-weight: 800; letter-spacing: -.02em; }
.brand-mark { color: var(--pink); }
.tiny-link { color: var(--muted); font: 700 13px/1 var(--mono); text-decoration: none; }
.tiny-link:hover { color: var(--green); }

.hero {
  min-height: 610px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 70px;
  padding-block: 90px 70px;
}
.kicker { margin: 0 0 12px; color: var(--green); text-transform: lowercase; font: 800 13px/1.2 var(--mono); letter-spacing: .08em; }
h1,h2 { margin: 0; line-height: .98; letter-spacing: -.055em; }
h1 { max-width: 760px; font-size: clamp(54px, 7vw, 96px); }
h1 em { color: var(--pink); font-style: normal; }
h2 { font-size: clamp(38px, 5vw, 62px); }
.lede { max-width: 690px; color: #c7cec9; font-size: clamp(17px, 2vw, 21px); margin: 28px 0 0; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.button { border-radius: 999px; padding: 14px 20px; text-decoration: none; font-weight: 900; border: 1px solid transparent; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--pink); color: #201414; }
.button.ghost { background: rgba(255,255,255,.03); border-color: var(--line); color: var(--cream); }

.hero-orb { position: relative; width: min(430px, 90vw); aspect-ratio: 1 / 1; margin: auto; display: grid; place-items: center; }
.orb-glow { position: absolute; inset: 11%; border-radius: 50%; background: var(--pink); filter: blur(42px); opacity: .14; }
.orb-core {
  width: 72%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 28%, rgba(255,255,255,.55), transparent 7%),
    radial-gradient(circle at 50% 40%, #ff9fbd 0, #ed6f99 49%, #bd476f 100%);
  border: 12px solid #ddcbd1;
  box-shadow: inset 0 -25px 55px rgba(74, 17, 43, .16), 0 24px 80px rgba(255, 105, 153, .14);
  color: #5a2d3d;
  font: 900 clamp(24px, 3vw, 38px)/.9 var(--mono);
  transform: rotate(-1.2deg);
}
.orb-foot { position: absolute; width: 21%; height: 13%; bottom: 8%; background: var(--cream); border-radius: 50% 50% 38% 62%; filter: drop-shadow(0 7px 0 rgba(0,0,0,.25)); }
.orb-foot.left { left: 20%; transform: rotate(-11deg); }
.orb-foot.right { right: 20%; transform: rotate(11deg) scaleX(-1); }

.basics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding-bottom: 110px; }
.basics article { position: relative; display: flex; gap: 14px; padding: 20px; border: 1px solid var(--line); background: rgba(255,255,255,.025); border-radius: 20px; }
.basics article > span { font-size: 24px; }
.basics strong { display: block; font: 800 14px/1.2 var(--mono); color: var(--cream); }
.basics p { margin: 6px 0 0; color: var(--muted); font-size: 14px; }

.powers { padding: 30px 0 120px; scroll-margin-top: 90px; }
.section-head { display: flex; justify-content: space-between; gap: 20px; align-items: end; margin-bottom: 34px; }
.section-head.compact { margin-bottom: 26px; }
.carousel-count { flex: 0 0 auto; color: var(--muted); font: 800 14px/1 var(--mono); border: 1px solid var(--line); padding: 10px 14px; border-radius: 999px; }
.carousel { position: relative; }
.carousel-viewport { overflow: hidden; border-radius: var(--radius); outline: none; }
.carousel-track { display: flex; transition: transform .48s cubic-bezier(.2,.8,.2,1); will-change: transform; }
.slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1.07fr .93fr;
  min-height: 570px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
}
.slide-media {
  position: relative;
  min-height: 420px;
  background: #070b09;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}
.slide-media::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5,8,7,.28), rgba(5,8,7,.48)),
    radial-gradient(circle at 50% 50%, transparent 18%, rgba(5,8,7,.36) 78%);
  pointer-events: none;
}
.slide-media::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 4;
  box-shadow: inset -35px 0 60px rgba(12,16,14,.28), inset 0 0 80px rgba(0,0,0,.24);
  pointer-events: none;
}
.media-stage-shell,
.media-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
  box-sizing: border-box;
}
.media-stage-shell {
  display: grid;
  place-items: center;
  padding: 30px 34px;
}
.media-backdrop-image {
  position: absolute;
  inset: -8%;
  z-index: 0;
  width: 116%;
  height: 116%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: blur(34px) brightness(.34) saturate(.82);
  transform: scale(1.06);
  opacity: .9;
  pointer-events: none;
}
.media-primary-image {
  position: relative;
  z-index: 2;
  display: block;
  width: auto;
  height: auto;
  max-width: 96%;
  max-height: calc(100% - 48px);
  object-fit: contain;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 24px 62px rgba(0,0,0,.48), 0 0 0 1px rgba(255,255,255,.025);
}
.media-carousel {
  min-height: 420px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 14px;
  padding: 30px 30px 18px;
}
.media-carousel-stage {
  position: relative;
  z-index: 2;
  width: 96%;
  aspect-ratio: 16 / 9;
  min-width: 0;
  min-height: 0;
  align-self: center;
  justify-self: center;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 24px 62px rgba(0,0,0,.48), 0 0 0 1px rgba(255,255,255,.025);
  background: #080a09;
}
.slide-media .media-carousel-image {
  position: absolute;
  inset: 0;
  z-index: 2;
  transform: none;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: fill;
  opacity: 0;
  transition: opacity 1s ease;
  cursor: zoom-in;
  border: 0;
  border-radius: 18px;
  box-shadow: none;
}
.slide-media .media-carousel-image.active { opacity: 1; z-index: 3; }
.slide-media .media-carousel-image:focus-visible { outline: 2px solid var(--green); outline-offset: -3px; }
.media-carousel-dots, .fullscreen-media-dots { position: relative; display: flex; align-items: center; justify-content: center; gap: 7px; min-height: 12px; z-index: 3; }
.media-carousel-dots button, .fullscreen-media-dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 999px; background: #465048; cursor: pointer; transition: width .22s ease, background .22s ease, transform .22s ease; }
.media-carousel-dots button:hover, .fullscreen-media-dots button:hover { transform: scale(1.18); background: #68736b; }
.media-carousel-dots button.active, .fullscreen-media-dots button.active { width: 23px; background: var(--pink); }
.media-carousel-dots button:focus-visible, .fullscreen-media-dots button:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }
.art-media { width: min(68%, 350px); aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center; text-align: center; border: 1px solid rgba(255,255,255,.13); background: radial-gradient(circle at 35% 28%, rgba(255,255,255,.08), transparent 12%), linear-gradient(145deg, rgba(255,141,175,.22), rgba(38,86,52,.19)); box-shadow: 0 30px 90px rgba(0,0,0,.35); }
.art-media .icon { font-size: clamp(58px, 8vw, 100px); }
.art-media .label { display: block; margin-top: 10px; color: var(--cream); font: 900 16px/1 var(--mono); }
.slide-copy { padding: clamp(32px, 5vw, 68px); display: flex; flex-direction: column; justify-content: center; }
.slide-copy h3 { margin: 0; font-size: clamp(38px, 4vw, 59px); line-height: .98; letter-spacing: -.045em; }
.slide-copy .summary { font-size: 18px; color: #c5cdc7; margin: 22px 0 20px; }
.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.feature-list li { position: relative; padding-left: 23px; color: var(--cream); }
.feature-list li::before { content: '✦'; position: absolute; left: 0; color: var(--green); }
.cost { margin-top: 28px; align-self: flex-start; color: var(--pink-soft); background: rgba(255,141,175,.08); border: 1px solid rgba(255,141,175,.18); border-radius: 999px; padding: 9px 13px; font: 800 12px/1.2 var(--mono); }
.feature-notes { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; align-self: flex-start; }
.feature-notes .feature-note { margin-top: 0; }
.feature-note { margin-top: 12px; align-self: flex-start; border-radius: 14px; padding: 11px 13px; font: 800 12px/1.45 var(--mono); }
.feature-note.success { color: #bff0c8; background: rgba(72, 145, 90, .12); border: 1px solid rgba(103, 190, 124, .28); }
.feature-actions, .earn-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 14px; }
.feature-action, .earn-action { display: inline-flex; align-items: center; min-height: 38px; padding: 8px 13px; border-radius: 999px; border: 1px solid var(--line); color: var(--cream); text-decoration: none; font: 800 12px/1.2 var(--mono); background: rgba(255,255,255,.03); }
.feature-action:hover, .earn-action:hover { color: var(--green); border-color: rgba(136,212,157,.32); }
.video-button { margin-top: 14px; align-self: flex-start; border: 1px solid var(--line); color: var(--cream); background: rgba(255,255,255,.035); border-radius: 999px; padding: 10px 14px; font-weight: 850; cursor: pointer; }
.video-button:hover { border-color: rgba(136,212,157,.55); }
.carousel-arrow { position: absolute; z-index: 4; top: 50%; width: 48px; height: 48px; margin-top: -24px; border-radius: 50%; border: 1px solid rgba(255,255,255,.14); background: rgba(11,15,13,.85); color: var(--text); cursor: pointer; font-size: 21px; backdrop-filter: blur(12px); }
.carousel-arrow:hover { background: var(--green-deep); }
.carousel-arrow.prev { left: -24px; }
.carousel-arrow.next { right: -24px; }
.carousel-dots { display: flex; gap: 7px; justify-content: center; margin-top: 18px; }
.carousel-dots button { width: 9px; height: 9px; border-radius: 50%; border: 0; background: #465048; padding: 0; cursor: pointer; }
.carousel-dots button.active { width: 26px; border-radius: 999px; background: var(--pink); }
.swipe-note { color: #68736b; text-align: center; font: 700 11px/1 var(--mono); margin-top: 12px; }

.earn { padding: 25px 0 110px; scroll-margin-top: 90px; }
.earn-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.earn-card { position: relative; overflow: hidden; min-height: 210px; padding: 26px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.025); }
.earn-card.recommended { border-color: rgba(136,212,157,.48); background: linear-gradient(145deg, rgba(49,95,64,.30), rgba(255,255,255,.025)); box-shadow: inset 0 0 0 1px rgba(136,212,157,.08), 0 20px 55px rgba(39,90,52,.10); }
.recommended-badge { position: absolute; top: 18px; right: 18px; z-index: 2; padding: 7px 10px; border-radius: 999px; color: #0f2114; background: var(--green); font: 900 11px/1 var(--mono); }
.earn-card.has-image { min-height: 320px; display: flex; flex-direction: column; gap: 18px; align-items: stretch; }
.earn-card.has-image > div { order: 1; }
.earn-card.has-image > img { order: 2; margin-top: auto; }
.earn-card img { width: 100%; height: auto; object-fit: contain; border-radius: 17px; border: 1px solid rgba(255,255,255,.12); box-shadow: 0 20px 50px rgba(0,0,0,.35); }
.earn-icon { font-size: 26px; }
.earn-card h3 { margin: 14px 0 8px; font-size: 24px; }
.earn-card p { margin: 0; color: var(--muted); }
.earn-corner-note { position: absolute; top: 18px; right: 18px; z-index: 2; max-width: calc(100% - 110px); margin-top: 0; padding: 8px 10px; font-size: 11px; text-align: right; }

.booster-tiers { display: grid; gap: 9px; margin-top: 15px; }
.booster-tier { display: grid; grid-template-columns: minmax(118px, .72fr) minmax(0, 1.28fr); column-gap: 16px; row-gap: 3px; padding: 11px 13px; border: 1px solid rgba(136,212,157,.16); border-radius: 14px; background: rgba(8,20,12,.26); }
.booster-tier-heading { grid-row: 1 / span 2; align-self: center; display: flex; flex-direction: column; gap: 3px; }
.booster-tier-heading strong { color: #effaf1; font: 900 12px/1 var(--mono); text-transform: uppercase; letter-spacing: .04em; }
.booster-tier-heading span { color: #88d49d; font: 800 11px/1.25 var(--mono); }
.booster-tier-reward { color: #f3f7f3; font-weight: 800; line-height: 1.35; }
.booster-tier-detail { color: var(--muted); font-size: 13px; line-height: 1.35; }
.booster-reset-note { margin-top: 13px !important; padding-top: 12px; border-top: 1px solid rgba(136,212,157,.13); font-size: 13px; line-height: 1.45; }

.closing { display: grid; grid-template-columns: 1.3fr .7fr; gap: 30px; padding: 55px 0 115px; border-top: 1px solid var(--line); }
.closing h2 { max-width: 790px; font-size: clamp(36px, 4vw, 56px); }
.closing > div > p:last-child { color: var(--muted); max-width: 760px; font-size: 17px; }
.closing-card { align-self: end; border: 1px solid rgba(136,212,157,.25); background: rgba(76,139,91,.08); border-radius: 22px; padding: 22px; }
.closing-card p { margin: 0; color: #cdd7cf; }
.pulse-dot { display: block; width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px rgba(136,212,157,.08); margin-bottom: 16px; }
.footer { border-top: 1px solid var(--line); color: #677068; display: flex; justify-content: space-between; padding-block: 28px 40px; font: 700 11px/1 var(--mono); }

.video-modal { width: min(920px, calc(100% - 28px)); padding: 0; border: 1px solid var(--line); border-radius: 22px; overflow: visible; background: #080a09; color: white; }
.video-modal::backdrop { background: rgba(0,0,0,.8); backdrop-filter: blur(8px); }
.modal-close { position: absolute; top: -14px; right: -14px; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: #161c18; color: white; font-size: 24px; cursor: pointer; }
.video-frame { aspect-ratio: 16/9; }
.video-frame iframe { width: 100%; height: 100%; border: 0; display: block; border-radius: 22px; }

.video-modal.media-lightbox-modal {
  width: min(1360px, calc(100vw - 96px));
  max-width: 1360px;
  height: fit-content;
  min-height: 0;
  max-height: calc(100vh - 80px);
  margin: auto;
  overflow: visible;
}
.media-lightbox-modal .modal-close {
  top: 12px;
  right: 12px;
  z-index: 20;
  background: rgba(22,28,24,.94);
  box-shadow: 0 8px 24px rgba(0,0,0,.34);
}
.media-lightbox-frame {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  aspect-ratio: auto;
}
.fullscreen-media-carousel { position: relative; width: 100%; height: auto; min-height: 0; display: grid; grid-template-columns: 74px minmax(0, 1fr) 74px; grid-template-rows: auto 44px; align-items: center; background: #080a09; border-radius: 22px; overflow: hidden; }
.fullscreen-media-stage { grid-column: 2; grid-row: 1; width: 100%; height: auto; aspect-ratio: 16 / 9; min-width: 0; min-height: 0; align-self: center; overflow: hidden; border-radius: 14px; }
.fullscreen-media-image { width: 100% !important; height: 100% !important; max-width: none; max-height: none; object-fit: fill; display: block; border-radius: 14px !important; background: #080a09; box-shadow: 0 24px 70px rgba(0,0,0,.45); }
.fullscreen-media-nav { grid-row: 1; align-self: center; justify-self: center; z-index: 3; width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); background: rgba(22,28,24,.88); color: var(--text); font-size: 36px; line-height: 1; cursor: pointer; backdrop-filter: blur(12px); }
.fullscreen-media-nav:hover { background: var(--green-deep); }
.fullscreen-media-nav.prev { grid-column: 1; }
.fullscreen-media-nav.next { grid-column: 3; }
.fullscreen-media-nav:focus-visible { outline: 2px solid var(--green); outline-offset: 4px; }
.fullscreen-media-dots { grid-column: 1 / -1; grid-row: 2; align-self: center; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 20px; padding-top: 65px; }
  .hero-orb { width: min(330px, 80vw); }
  .basics { grid-template-columns: 1fr; }
  .slide { grid-template-columns: 1fr; }
  .slide-media { min-height: 330px; max-height: 440px; }
  .media-stage-shell, .media-carousel { min-height: 330px; }
  .media-stage-shell { padding: 22px; }
  .media-carousel { padding: 22px 22px 14px; }
  .slide-copy { padding: 34px 28px 40px; }
  .carousel-arrow.prev { left: 10px; }
  .carousel-arrow.next { right: 10px; }
  .earn-grid { grid-template-columns: 1fr; }
  .closing { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  .shell { width: min(100% - 24px, 1180px); }
  .topbar { height: 60px; padding-inline: 14px; }
  .tiny-link { display: none; }
  .hero { min-height: auto; padding: 56px 0 45px; }
  h1 { font-size: clamp(48px, 15vw, 66px); }
  .lede { font-size: 17px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .button { text-align: center; }
  .basics { padding-bottom: 75px; }
  .powers, .earn { padding-bottom: 80px; }
  .section-head { align-items: start; }
  .slide-media { min-height: 260px; }
  .media-stage-shell, .media-carousel { min-height: 260px; }
  .media-stage-shell { padding: 16px; }
  .media-carousel { padding: 16px 16px 12px; }
  .media-backdrop-image { filter: blur(24px) brightness(.3) saturate(.76); }
  .fullscreen-media-carousel { grid-template-columns: 48px minmax(0, 1fr) 48px; grid-template-rows: minmax(0, 1fr) 42px; }
  .fullscreen-media-stage { border-radius: 12px; }
  .fullscreen-media-nav { width: 40px; height: 40px; font-size: 29px; }
  .slide-copy h3 { font-size: 40px; }
  .summary { font-size: 16px !important; }
  .carousel-arrow { top: 210px; }
  .booster-tier { grid-template-columns: 1fr; }
  .booster-tier-heading { grid-row: auto; flex-direction: row; align-items: baseline; gap: 8px; }
  .closing { padding-bottom: 75px; }
  .footer { flex-direction: column; gap: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .media-carousel-image { opacity: 0 !important; }
  .media-carousel-image.active { opacity: 1 !important; }
  .media-carousel-dots button, .fullscreen-media-dots button { transition: none !important; }
}

.basics .video-button { position: absolute; top: 14px; right: 14px; margin-top: 0; padding: 8px 12px; font-size: 12px; line-height: 1; }
.video-frame video,
.video-frame img { width: 100%; height: 100%; object-fit: contain; display: block; border-radius: 22px; background: #080a09; }

/* Keep every Quote Quiz gallery frame visually identical, regardless of source image dimensions. */
.video-frame .fullscreen-media-image {
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  max-height: none;
  object-fit: fill;
}

/* Any content image can be opened in the same large-screen viewer. */
.zoomable-image { cursor: zoom-in; }
.zoomable-image:focus-visible { outline: 2px solid var(--green); outline-offset: 4px; }

.single-image-lightbox-frame { width: 100%; height: auto; aspect-ratio: auto; }
.single-image-lightbox {
  width: 100%;
  padding: 64px 74px 54px;
  box-sizing: border-box;
  display: grid;
  place-items: center;
  background: #080a09;
  border-radius: 22px;
}
.single-image-lightbox-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: calc(100vh - 190px);
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 24px 70px rgba(0,0,0,.45);
}

@media (max-width: 580px) {
  .single-image-lightbox { padding: 54px 18px 30px; }
}
