:root {
  --bg: #0a1810;
  --bg-deep: #07110c;
  --surface: #0f2117;
  --surface-2: #10291b;
  --green: #009c3b;
  --green-bright: #00c24a;
  --green-dark: #006b28;
  --yellow: #ffd700;
  --blue: #3b82f6;
  --text: #f5f7f4;
  --soft: #b8c5bf;
  --muted: #7d8c85;
  --line: rgba(255, 255, 255, .14);
  --shadow: 0 24px 70px rgba(0, 0, 0, .44);
  --max: 1180px;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter/Inter-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
  overflow-x: hidden;
}

html.modal-open {
  overflow: hidden;
}

html.mobile-menu-open {
  overflow: hidden;
}

body {
  position: relative;
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  isolation: isolate;
}

body.modal-open {
  overflow: hidden;
}

body.mobile-menu-open {
  overflow: hidden;
}

.demo-loading-screen {
  display: none;
}

html.demo-slow-mode:not(.demo-ready) body > :not(.demo-loading-screen) {
  visibility: hidden;
}

html.demo-slow-mode .demo-loading-screen {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: block;
  background: var(--bg-deep);
  transition: opacity 280ms ease, visibility 280ms ease;
}

html.demo-slow-mode.demo-ready .demo-loading-screen {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

button,
input,
select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

.site-backdrop {
  display: none;
}

.topbar {
  position: fixed;
  z-index: 20;
  top: 14px;
  left: 50%;
  width: min(858px, calc(100vw - 56px));
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 7px 11px 7px 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(12, 29, 19, .96), rgba(5, 14, 9, .95));
  box-shadow: 0 18px 38px rgba(0, 0, 0, .56), inset 0 1px 0 rgba(255, 255, 255, .08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  backface-visibility: hidden;
  transform: translate3d(-50%, 0, 0);
  transition: border-color .18s ease, box-shadow .18s ease;
  will-change: border-color, box-shadow;
}

.topbar.is-compact {
  border-color: rgba(255, 255, 255, .20);
  background: linear-gradient(180deg, rgba(7, 17, 12, .98), rgba(5, 14, 9, .98));
  box-shadow: 0 14px 32px rgba(0, 0, 0, .50), inset 0 1px 0 rgba(255, 255, 255, .07);
}

.mobile-menu-toggle,
.mobile-menu,
.mobile-menu-backdrop {
  display: none;
}

.brand,
.nav a {
  color: var(--text);
  text-decoration: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 136px;
  margin-right: 12px;
  font-weight: 900;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid rgba(255, 255, 255, .15);
  box-shadow: inset 0 0 0 1px rgba(0, 194, 74, .12);
}

.brand-mark img {
  width: 38px;
  height: 38px;
  max-width: none;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
}

.brand-name {
  display: block;
  color: white;
  font-size: 10.5px;
  line-height: .88;
  letter-spacing: 0;
}

.brand-name strong {
  color: var(--yellow);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 19px;
  flex: 1;
  margin-left: 24px;
  font-size: 13px;
  color: white;
}

.nav a {
  color: white;
  font-weight: 900;
  white-space: nowrap;
}

.nav a:hover,
.nav a.is-active {
  color: var(--yellow);
}

.nav a {
  transition: color .16s ease, text-shadow .16s ease;
}

.nav a.is-active {
  text-shadow: 0 0 16px rgba(255, 215, 0, .20);
}

.nav-cta,
.register-cta,
.primary-action,
.ghost-action,
.material-card button,
.share-actions button,
.social-orbit button {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
}

.nav-cta,
.primary-action {
  color: white;
  background: linear-gradient(180deg, #05d457 0%, #00b847 62%, #00983b 100%);
  box-shadow: 0 14px 28px rgba(0, 194, 74, .28), inset 0 1px 0 rgba(255, 255, 255, .26), inset 0 -3px 0 rgba(0, 97, 37, .28);
  padding: 0 20px;
}

.nav-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 15px;
  overflow: hidden;
  font-size: 14px;
  transition: transform .18s ease, box-shadow .18s ease;
}

.nav-cta::after {
  content: "";
  position: absolute;
  inset: 1px 8px auto 8px;
  height: 42%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(0, 194, 74, .34), inset 0 1px 0 rgba(255, 255, 255, .28), inset 0 -3px 0 rgba(0, 97, 37, .32);
}

.nav-cta:focus-visible,
.register-cta:focus-visible,
.story-card:focus-visible {
  outline: 3px solid rgba(255, 215, 0, .74);
  outline-offset: 3px;
}

.nav-cta img {
  position: relative;
  z-index: 1;
  width: 17px;
  height: 17px;
}

.nav-cta span {
  position: relative;
  z-index: 1;
}

.register-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 5px 15px 5px 5px;
  color: white;
  border: 1px solid rgba(255, 255, 255, .18);
  background: linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .10), 0 10px 26px rgba(0, 0, 0, .24);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.register-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 215, 0, .46);
  background: linear-gradient(180deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .05));
}

.register-plus {
  position: relative;
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #04120a;
  background: linear-gradient(180deg, #ffe45a 0%, var(--yellow) 58%, #f0b900 100%);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, .46), inset 0 -3px 0 rgba(155, 112, 0, .28), 0 7px 16px rgba(255, 215, 0, .20);
}

.register-plus::before,
.register-plus::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 3px;
  border-radius: 999px;
  background: #06120c;
}

.register-plus::after {
  transform: translateZ(0) rotate(90deg);
}

.register-plus.is-check {
  background: linear-gradient(180deg, #19d56a 0%, var(--green-bright) 62%, #008d39 100%);
}

.register-plus.is-check::before {
  content: "\2713";
  left: 50%;
  top: 50%;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
  transform: translate(-50%, -54%);
}

.register-plus.is-check::after {
  display: none;
}

.register-cta strong,
.register-cta small {
  display: block;
  line-height: 1;
  text-align: left;
}

.register-cta strong {
  font-size: 13px;
}

.register-cta small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  max-width: 96px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ghost-action {
  color: var(--yellow);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 215, 0, .34);
  padding: 0 18px;
}

.hero {
  height: max(860px, 100svh);
  position: relative;
  z-index: 1;
  display: block;
  padding: 112px 28px 72px;
  overflow: hidden;
  background: url("/assets/images/landing/banner-site-mobile.webp") top center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(5, 15, 9, .72) 0%, rgba(5, 15, 9, .20) 42%, rgba(5, 15, 9, 0) 66%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-content.reveal,
html.has-js .hero-content.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 900;
}

.kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(58px, 7.9vw, 108px);
  line-height: .82;
  letter-spacing: 0;
  font-weight: 950;
  text-shadow: 0 20px 45px rgba(0, 0, 0, .56);
}

h1 span,
h2 span {
  color: var(--yellow);
}

h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: .94;
  letter-spacing: 0;
  margin-bottom: 18px;
}

h3 {
  font-size: 21px;
  line-height: 1.08;
}

p {
  color: var(--soft);
  font-size: 17px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.story-card {
  width: min(356px, 100%);
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 12px 12px 15px;
  color: var(--text);
  text-decoration: none;
  border-radius: 25px;
  border: 1px solid rgba(0, 194, 74, .74);
  background: linear-gradient(180deg, rgba(9, 28, 17, .78), rgba(5, 17, 10, .72));
  box-shadow: 0 24px 54px rgba(0, 0, 0, .38), 0 0 32px rgba(0, 194, 74, .10), inset 0 1px 0 rgba(255, 255, 255, .05);
  backdrop-filter: blur(10px);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.story-card:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 224, 86, .94);
  box-shadow: 0 28px 62px rgba(0, 0, 0, .42), 0 0 38px rgba(0, 194, 74, .16), inset 0 1px 0 rgba(255, 255, 255, .06);
}

.story-card strong,
.story-card small {
  display: block;
}

.story-card small {
  margin-top: 4px;
  color: var(--yellow);
  font-weight: 900;
}

.circle-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--green-bright);
  box-shadow: 0 10px 22px rgba(0, 194, 74, .22);
  font-size: 0;
}

.circle-arrow svg {
  width: 21px;
  height: 21px;
  stroke: white;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.hero-panel {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 7vw, 90px);
  bottom: 82px;
  width: 210px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(10, 24, 16, .68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-panel span,
.hero-panel small {
  color: var(--soft);
}

.hero-panel strong {
  display: block;
  color: var(--yellow);
  font-size: 48px;
  line-height: .9;
  margin: 10px 0;
}

.section {
  position: relative;
  z-index: 2;
  padding: clamp(72px, 10vw, 126px) clamp(18px, 6vw, 74px);
  background:
    radial-gradient(circle at 12% 4%, rgba(0, 194, 74, .08), transparent 34rem),
    linear-gradient(180deg, var(--bg) 0%, #06100b 100%);
}

.preview-band {
  width: 100%;
  padding: 104px 28px;
}

.preview-band.dark {
  background: var(--bg-deep);
}

.preview-band > * {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.about {
  padding-top: 70px;
}

.about-grid,
.conviction,
.social,
.manifesto {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 5fr) minmax(0, 6fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
}

.section-copy {
  max-width: 650px;
}

.about .section-copy {
  max-width: 690px;
}

.about .section-copy h2 {
  max-width: 650px;
  font-size: clamp(58px, 6.1vw, 78px);
  line-height: .86;
  letter-spacing: 0;
  margin-bottom: 18px;
}

.about .section-copy > p:not(.kicker) {
  max-width: 690px;
  color: rgba(245, 247, 244, .78);
  font-size: 18px;
  line-height: 1.48;
}

.badge-grid,
.metric-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.badge-grid > span,
.metric-row > span {
  min-height: 76px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .055);
  padding: 16px;
}

.about .badge-grid {
  gap: 14px 22px;
  margin-top: 34px;
}

.about .badge-grid > span {
  min-height: 106px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-color: rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .035);
}

.badge-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  color: var(--yellow);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.badge-grid small {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.badge-grid strong {
  color: var(--text);
}

.metric-row strong,
.social-stats strong {
  display: block;
  color: var(--yellow);
  font-size: 30px;
  line-height: 1;
}

.metric-row small,
.social-stats small {
  display: block;
  margin-top: 8px;
  color: var(--soft);
}

.social-stats {
  display: grid;
  grid-template-columns: 1.08fr .78fr 1fr;
  align-items: start;
  gap: 0;
  max-width: 500px;
  margin-top: 26px;
}

.social-stats > span {
  min-height: 62px;
  padding: 0 18px;
  border-left: 2px solid rgba(255, 215, 0, .72);
  display: grid;
  align-content: start;
  justify-items: center;
  text-align: center;
}

.social-stats > span:first-child {
  border-left: 0;
}

.social-stats strong {
  font-size: 27px;
  font-weight: 950;
  letter-spacing: 0;
}

.social-stats small {
  max-width: 128px;
  color: rgba(245, 247, 244, .72);
  font-size: 12px;
  line-height: 1.25;
  font-weight: 900;
}

.about-photo,
.conviction-stage,
.social-orbit {
  margin: 0;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.about-photo img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center 22%;
}

.group-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 54px 24px 44px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 16% 44%, rgba(0, 194, 74, .18), transparent 25rem),
    linear-gradient(135deg, #050a16, #071d50 48%, #07140e);
  box-shadow: var(--shadow);
}

section.preview-band.group-band,
section.preview-band.conviction,
section.preview-band.manifesto,
section.preview-band.social {
  max-width: none;
  margin: 0;
}

.group-copy {
  position: relative;
  z-index: 2;
  max-width: 690px;
  text-align: center;
}

.group-copy h2 {
  font-size: clamp(66px, 6.8vw, 88px);
  line-height: .88;
  font-weight: 950;
  letter-spacing: 0;
  margin-bottom: 20px;
}

.group-copy p:not(.kicker) {
  max-width: 680px;
  margin-inline: auto;
  font-size: 18px;
  line-height: 1.45;
}

.phone-mock {
  position: absolute;
  z-index: 1;
  width: 170px;
  height: 340px;
  padding: 10px;
  border-radius: 36px;
  border: 0;
  color: white;
  background: #050908;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .50);
  animation: phone-bob 5.8s ease-in-out infinite;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 28px;
  background: var(--bg-deep);
}

.phone-landing .phone-screen {
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(7, 17, 12, .08), rgba(7, 17, 12, .94)),
    url("/assets/images/landing/banner-site-desktop.webp") top center / cover;
}

.phone-landing strong {
  display: block;
  margin-bottom: 12px;
  font-size: 23px;
  line-height: .88;
  font-weight: 950;
  letter-spacing: 0;
}

.phone-cta {
  min-height: 42px;
  padding: 8px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--bg-deep);
  background: white;
  font-size: 9px;
  line-height: 1.15;
  font-weight: 900;
}

.phone-cta img {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.phone-chat .phone-screen {
  padding: 16px 12px 10px;
}

.chat-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.chat-head img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-bright);
}

.chat-head strong {
  font-size: 11px;
  line-height: 1.12;
  font-weight: 900;
}

.chat-bubble {
  margin-bottom: 9px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  background: rgba(255, 255, 255, .07);
}

.chat-bubble.is-live {
  background: rgba(0, 194, 74, .12);
}

.chat-bubble strong,
.chat-bubble span {
  display: block;
}

.chat-bubble strong {
  margin-bottom: 3px;
  color: var(--yellow);
  font-size: 9px;
  line-height: 1.1;
  font-weight: 900;
}

.chat-bubble span {
  color: white;
  font-size: 9px;
  line-height: 1.25;
  font-weight: 800;
}

.chat-input {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
}

.phone-left {
  left: 40px;
  top: 72px;
  transform: rotate(-8deg);
}

.phone-right {
  right: 72px;
  top: 72px;
  transform: rotate(7deg);
  animation-delay: .7s;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.presence .section-heading {
  max-width: var(--max);
  margin-bottom: 26px;
  text-align: left;
}

.presence .section-heading h2 {
  max-width: 960px;
  font-size: clamp(48px, 4.55vw, 58px);
  line-height: .92;
}

.presence .section-heading p:not(.kicker) {
  max-width: 640px;
  margin-inline: 0;
}

.section-heading.with-action {
  max-width: 1280px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 26px;
  text-align: left;
}

.section-heading.with-action > div {
  max-width: 760px;
  margin: 0;
}

.materials .section-heading.with-action > div {
  max-width: min(100%, 1220px);
}

.materials .section-heading h2 {
  max-width: 1220px;
  font-size: clamp(52px, 4.65vw, 64px);
  line-height: .88;
  font-weight: 950;
  letter-spacing: 0;
}

.materials .section-heading p:not(.kicker) {
  max-width: 760px;
}

.presence-track {
  width: 100%;
  max-width: none;
  margin: 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 250px;
  gap: 14px;
  overflow-x: auto;
  padding: 8px 2px 18px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.carousel-wrap {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
}

.presence .carousel-wrap {
  width: min(1042px, calc(100vw - 40px));
  max-width: none;
  margin-left: max(20px, calc((100vw - var(--max)) / 2));
  margin-right: 0;
}

.carousel-button {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--bg);
  background: white;
  box-shadow: var(--shadow);
  cursor: pointer;
  font-size: 28px;
  transform: translateY(-50%);
}

.carousel-button.prev {
  left: -18px;
}

.carousel-button.next {
  right: -18px;
}

.presence-track::-webkit-scrollbar {
  display: none;
}

.materials-track {
  scrollbar-width: none;
}

.materials-track::-webkit-scrollbar {
  display: none;
}

.presence-card {
  position: relative;
  min-height: 348px;
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--surface);
  cursor: pointer;
  isolation: isolate;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.presence-card:hover,
.material-card:hover {
  transform: translateY(-4px) scale(1.025);
}

.material-card:hover,
.material-card:focus-visible {
  border-color: rgba(255, 215, 0, .85);
  box-shadow: 0 22px 54px rgba(0, 0, 0, .34), 0 0 0 1px rgba(0, 190, 86, .24);
  outline: none;
}

.presence-card:hover,
.presence-card:focus-visible {
  border-color: rgba(255, 209, 0, .7);
  box-shadow: 0 22px 54px rgba(0, 0, 0, .34);
  outline: none;
}

.presence-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: .9;
  transition: transform .35s ease, opacity .25s ease, filter .25s ease;
  z-index: 0;
}

.presence-card:hover img,
.presence-card:focus-visible img {
  opacity: .96;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.045);
}

.presence-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  border: 2px solid var(--yellow);
  box-shadow:
    inset 0 0 0 1px rgba(0, 190, 86, .36),
    0 0 0 1px rgba(0, 190, 86, .28);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.presence-card:hover::before,
.presence-card:focus-visible::before {
  opacity: 1;
}

.presence-card::after {
  content: "";
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(0deg, rgba(5, 15, 10, .98), transparent);
  z-index: 1;
}

.presence-card span,
.presence-card h3 {
  position: relative;
  z-index: 3;
}

.presence-card > span:not(.open-gallery) {
  display: inline-block;
  margin: 244px 14px 8px;
  padding: 8px 11px 7px;
  border-radius: 999px;
  color: #06170f;
  background: var(--yellow);
  font-weight: 900;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
}

.presence-card h3 {
  margin: 0 14px 18px;
  max-width: 226px;
  font-size: 20px;
  line-height: .98;
}

.open-gallery {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin: 0;
  color: white;
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .65);
  transform: translateY(-2px);
  opacity: .92;
  transition: transform .2s ease, opacity .2s ease;
}

.presence-card:hover .open-gallery,
.presence-card:focus-visible .open-gallery {
  transform: translateY(-2px) translateX(2px);
  opacity: 1;
}

.conviction {
  grid-template-columns: minmax(0, 5fr) minmax(300px, 6fr);
}

.manifesto-copy h2,
.social-copy h2 {
  font-size: clamp(42px, 5.3vw, 72px);
  line-height: .92;
}

.manifesto-copy h2 {
  max-width: 600px;
  font-size: clamp(56px, 5.9vw, 82px);
  line-height: .86;
  font-weight: 950;
  letter-spacing: 0;
}

.conviction-copy h2 {
  max-width: 650px;
  font-size: clamp(52px, 5.8vw, 78px);
  line-height: .88;
  font-weight: 950;
  letter-spacing: 0;
}

.conviction-stage {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.conviction-stage img {
  width: min(390px, 82%);
  aspect-ratio: .72;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.stat-bubble {
  position: absolute;
  max-width: 180px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 215, 0, .24);
  border-radius: 22px;
  color: white;
  background:
    linear-gradient(135deg, rgba(255, 215, 0, .28), rgba(255, 215, 0, .12) 48%, rgba(7, 17, 12, .72));
  box-shadow: 0 18px 42px rgba(0, 0, 0, .24);
  backdrop-filter: blur(14px);
  animation: float-bob 3.5s ease-in-out infinite;
}

.stat-bubble.top {
  right: 44px;
  top: 86px;
}

.stat-bubble.bottom {
  left: 56px;
  bottom: 100px;
  animation-delay: .7s;
}

.stat-bubble strong,
.stat-bubble small {
  display: block;
}

.stat-bubble strong {
  color: var(--yellow);
  font-size: 28px;
  line-height: .95;
}

.stat-bubble small {
  margin-top: 8px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 800;
}

.yellow-action,
.ghost-button {
  min-height: 44px;
  border-radius: 999px;
  padding: 0 18px;
  border: 1px solid rgba(255, 215, 0, .35);
  color: var(--bg-deep);
  background: var(--yellow);
  cursor: pointer;
  font-weight: 900;
}

.ghost-button {
  color: var(--text);
  background: rgba(255, 255, 255, .06);
  border-color: var(--line);
}

.icon-action {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.icon-action img {
  width: 18px;
  height: 18px;
}

.materials-track {
  width: 100%;
  max-width: none;
  margin: 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 274px;
  gap: 18px;
  overflow-x: auto;
  padding: 22px 2px 24px;
  scroll-snap-type: x mandatory;
}

.materials .carousel-wrap {
  width: min(1140px, calc(100vw - 72px));
  max-width: none;
  margin-left: max(36px, calc((100vw - var(--max)) / 2));
  margin-right: 0;
}

.material-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 0;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--surface);
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.material-card::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .94), rgba(0, 0, 0, .18), transparent);
}

.material-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.material-card span,
.material-card h3,
.material-card p {
  position: relative;
  z-index: 1;
  margin-left: 18px;
  margin-right: 18px;
}

.material-card span {
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--bg-deep);
  background: var(--yellow);
  font-weight: 900;
  font-size: 12px;
}

.material-card p {
  margin-bottom: 18px;
  font-size: 12px;
  line-height: 1.35;
}

.material-card.locked {
  padding: 22px;
  justify-content: center;
  background:
    radial-gradient(circle at 0 0, rgba(0, 194, 74, .18), transparent 18rem),
    rgba(255, 255, 255, .055);
  cursor: pointer;
}

.material-card.locked::after {
  display: none;
}

.exclusive-card {
  align-items: center;
  text-align: center;
}

.exclusive-card span,
.exclusive-card h3,
.exclusive-card p {
  margin-left: 0;
  margin-right: 0;
}

.exclusive-card span {
  align-self: center;
  margin-bottom: 18px;
}

.exclusive-card h3 {
  max-width: 210px;
  font-size: 23px;
  line-height: 1.02;
}

.exclusive-card p {
  max-width: 200px;
  color: var(--soft);
  font-weight: 800;
}

.materials .exclusive-card:hover,
.materials .exclusive-card:focus-visible {
  border-color: rgba(255, 215, 0, .9);
  box-shadow: 0 22px 54px rgba(0, 0, 0, .34), 0 0 0 1px rgba(0, 190, 86, .24);
}

.materials-join {
  max-width: 430px;
  text-align: center;
}

.materials-join p {
  margin-top: 14px;
  color: white;
  font-size: 21px;
  line-height: 1.16;
  font-weight: 900;
}

.manifesto {
  grid-template-columns: minmax(0, 5fr) minmax(320px, 6fr);
}

.word-stack {
  height: 520px;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 10%, #000 90%, transparent);
}

.word-list {
  display: grid;
  gap: 16px;
  will-change: transform;
  animation: wordsUp 28s linear infinite;
}

.word-list:nth-child(2) {
  animation: wordsDown 32s linear infinite;
}

.word {
  min-height: 70px;
  display: grid;
  align-items: center;
  padding: 0 6px;
  color: rgba(245, 247, 244, .78);
  font-size: clamp(26px, 2.55vw, 36px);
  line-height: .92;
  font-weight: 950;
  text-transform: uppercase;
  text-shadow: 0 10px 22px rgba(0, 0, 0, .6);
}

.word-list:first-child .word:nth-child(6n + 1),
.word-list:first-child .word:nth-child(6n + 3),
.word-list:first-child .word:nth-child(6n + 4),
.word-list:first-child .word:nth-child(6n + 5) {
  color: var(--yellow);
}

.posts {
  background: var(--bg);
}

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

.post-grid article {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, .86)),
    url("/assets/images/landing/banner-site-mobile.webp") center / cover;
  box-shadow: var(--shadow);
}

.post-grid strong {
  color: var(--yellow);
  font-size: 13px;
  text-transform: uppercase;
}

.post-grid span {
  margin-top: 10px;
  font-size: 22px;
  line-height: 1.05;
  font-weight: 900;
}

.social-orbit {
  position: relative;
  width: min(540px, 100%);
  height: 540px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.social-orbit img {
  width: 178px;
  height: 178px;
  min-height: 0;
  object-fit: cover;
  border: 8px solid var(--green-bright);
  border-radius: 38px;
  box-shadow: 0 22px 58px rgba(0, 194, 74, .26);
}

.action-hint {
  display: inline-flex;
  margin: 8px 0 28px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 215, 0, .34);
  border-radius: 16px;
  color: white;
  background: rgba(255, 215, 0, .10);
  font-size: 14px;
  font-weight: 900;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .16);
}

.ring-lg {
  width: 430px;
  height: 430px;
}

.ring-md {
  width: 270px;
  height: 270px;
}

.network-icon {
  position: absolute;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 18px;
  display: grid;
  place-items: center;
  padding: 9px;
  background: rgba(7, 17, 12, .72);
  box-shadow: var(--shadow);
  animation: float-bob 4.2s ease-in-out infinite;
}

.network-icon img {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
}

.instagram { left: 238px; top: 23px; }
.tiktok { left: 414px; top: 115px; animation-delay: .3s; }
.youtube { left: 345px; top: 424px; animation-delay: .6s; }
.facebook { left: 30px; top: 182px; animation-delay: .9s; }
.whatsapp { left: 453px; top: 238px; border: 0; cursor: pointer; animation-delay: 1.2s; }

.site-footer {
  position: relative;
  z-index: 2;
  padding: 34px 20px 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted);
  background: var(--bg);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-align: center;
}

.site-footer a {
  color: var(--yellow);
  text-decoration: none;
}

.cookie-banner {
  position: fixed;
  z-index: 19;
  left: 24px;
  bottom: 24px;
  width: min(656px, calc(100vw - 48px));
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(7, 17, 12, .94);
  box-shadow: var(--shadow);
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner p {
  margin: 0;
  flex: 1;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 800;
}

.cookie-banner a {
  color: var(--yellow);
  font-weight: 900;
  text-decoration: none;
}

.cookie-banner button {
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  color: #07110c;
  background: var(--yellow);
  font-weight: 900;
  cursor: pointer;
}

.float-whatsapp img {
  width: 18px;
  height: 18px;
}

.float-whatsapp {
  position: fixed;
  z-index: 18;
  right: 28px;
  bottom: 26px;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  background: linear-gradient(135deg, var(--green), var(--green-bright));
  box-shadow: 0 16px 34px rgba(0, 194, 74, .28);
  cursor: pointer;
  font-weight: 900;
  animation: float-bob 3.2s ease-in-out infinite;
}

dialog {
  border: 0;
  padding: 0;
  color: var(--text);
  background: transparent;
  max-width: 100vw;
  max-height: 100vh;
  overflow: hidden;
}

dialog::backdrop {
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(5px);
}

.lead-form,
.material-modal {
  width: min(560px, calc(100vw - 28px));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  background: linear-gradient(145deg, rgba(15, 33, 23, .98), rgba(5, 18, 11, .98));
  box-shadow: var(--shadow);
}

.material-modal {
  width: min(940px, calc(100vw - 28px));
}

.lead-form {
  width: min(760px, calc(100vw - 56px));
  max-height: min(620px, calc(100vh - 40px));
  padding: clamp(22px, 4vw, 30px);
  overflow-x: hidden;
  overflow-y: auto;
}

.lead-form h2 {
  max-width: 610px;
  margin: 8px 0 18px;
  font-size: clamp(34px, 5vw, 46px);
  line-height: .94;
}

.lead-form > p:not(.kicker) {
  display: none;
}

.lead-form input,
.lead-form select,
.city-combobox-button {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 14px;
  color: var(--text);
  background: rgba(255, 255, 255, .08);
  margin: 6px 0;
}

.native-city-select {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.city-combobox {
  position: relative;
  margin: 6px 0;
}

.city-combobox-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--soft);
  text-align: left;
  cursor: pointer;
}

.city-combobox-button[aria-expanded="true"] {
  border-color: rgba(255, 215, 0, .65);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, .10);
}

.city-options {
  position: absolute;
  z-index: 20;
  inset-inline: 0;
  top: calc(100% + 8px);
  max-height: min(280px, 42vh);
  overflow: auto;
  border: 1px solid rgba(255, 215, 0, .28);
  border-radius: 14px;
  background: #07180f;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .55);
  padding: 6px;
}

.city-options button {
  width: 100%;
  min-height: 38px;
  border: 0;
  border-radius: 10px;
  padding: 8px 12px;
  color: var(--text);
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-weight: 800;
}

.city-options button:hover,
.city-options button:focus-visible {
  color: var(--bg-deep);
  background: var(--yellow);
  outline: none;
}

.lead-form input::placeholder {
  color: var(--soft);
}

.check-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 14px;
  margin: 12px 0 18px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 800;
}

.check-row input {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  padding: 0;
}

.check-row a {
  color: var(--yellow);
  font-weight: 900;
}

.lead-submit-row {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.lead-submit-row .primary-action {
  min-width: min(260px, 100%);
  justify-content: center;
}

.form-status {
  display: block;
  margin-top: 12px;
  color: var(--soft);
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.form-status[hidden] {
  display: none;
}

.dialog-close {
  float: right;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: white;
  background: rgba(255, 255, 255, .1);
  cursor: pointer;
  font-size: 24px;
}

@media (max-width: 720px) {
  .lead-form {
    width: min(760px, calc(100vw - 24px));
    max-height: calc(100vh - 24px);
    border-radius: 22px;
    padding: 22px;
  }

  .lead-form h2 {
    font-size: clamp(32px, 10vw, 42px);
    line-height: .95;
  }

  .lead-form input,
  .lead-form select {
    min-height: 46px;
  }
}

.preview-frame {
  position: relative;
  min-height: 460px;
  border: 1px solid var(--line);
  border-radius: 22px;
  display: grid;
  place-items: center;
  margin: 20px 0;
  background:
    linear-gradient(135deg, rgba(255, 215, 0, .18), rgba(0, 156, 59, .16)),
    url("/assets/images/landing/banner-site-mobile.webp") center / cover;
  overflow: hidden;
}

.preview-frame img,
.preview-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-frame video {
  background: #020805;
}

.preview-frame.is-video {
  background: #020805;
}

.preview-frame .preview-label {
  position: relative;
  z-index: 2;
  align-self: center;
  justify-self: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .58);
  font-weight: 900;
}

.preview-frame.is-video .preview-label {
  align-self: start;
  justify-self: start;
  margin: 14px;
  background: rgba(0, 0, 0, .64);
}

.material-modal-grid {
  display: grid;
  grid-template-columns: minmax(260px, 330px) minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
}

.material-modal-copy {
  min-width: 0;
}

.material-modal-copy h2 {
  margin-bottom: 10px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: .96;
}

.material-modal-description {
  margin-bottom: 22px;
  color: var(--soft);
  font-size: 15px;
}

.dialog-label {
  margin: 18px 0 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 900;
}

.share-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.share-actions button {
  min-height: 42px;
  padding: 0 16px;
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .07);
  box-shadow: none;
}

.share-actions .share-primary {
  color: white;
  border-color: rgba(0, 194, 74, .35);
  background: linear-gradient(180deg, #05d457 0%, #00b847 62%, #00983b 100%);
}

.social-share-actions button:nth-child(2) {
  border-color: rgba(233, 64, 87, .42);
}

.social-share-actions button:nth-child(3) {
  border-color: rgba(24, 119, 242, .42);
}

.material-status {
  display: block;
  margin-top: 12px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}

.material-status[hidden] {
  display: none;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .65s ease, transform .65s ease;
}

html.has-js .reveal {
  opacity: 1;
  transform: translateY(0);
}

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

@media (min-width: 761px) {
  .hero {
    background-image: url("/assets/images/landing/banner-site-desktop.webp");
    background-attachment: fixed;
  }
}

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

  .topbar {
    width: calc(100vw - 24px);
    justify-content: space-between;
    padding-left: 12px;
  }

  .register-cta {
    display: none;
  }

  .about {
    padding-top: 104px;
  }

  .about-grid,
  .conviction,
  .social,
  .manifesto,
  .post-grid,
  .section-heading.with-action {
    grid-template-columns: 1fr;
    display: grid;
  }

  .section-heading.with-action {
    align-items: start;
  }

  .phone-mock {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: 170px;
    min-height: 260px;
    margin-bottom: 28px;
  }

  .phone-left {
    display: block;
  }

  .phone-right {
    display: none;
  }

  .group-card {
    min-height: 620px;
  }

  .conviction-stage {
    min-height: 470px;
  }

  .hero-panel {
    display: none;
  }
}

@media (max-width: 560px) {
  .brand-name {
    display: block;
    font-size: 8px;
    line-height: .9;
  }

  .topbar {
    top: 18px;
    width: min(168px, calc(100vw - 40px));
    min-height: 34px;
    justify-content: space-between;
    gap: 6px;
    padding: 4px 7px 4px 8px;
    border-color: rgba(255, 255, 255, .18);
    background: linear-gradient(180deg, rgba(8, 23, 14, .92), rgba(3, 10, 7, .90));
    box-shadow: 0 12px 28px rgba(0, 0, 0, .48), inset 0 1px 0 rgba(255, 255, 255, .08);
  }

  .brand {
    min-width: 0;
    margin-right: 0;
    gap: 6px;
  }

  .brand-mark {
    width: 24px;
    height: 24px;
  }

  .brand-mark img {
    width: 24px;
    height: 24px;
  }

  .nav-cta {
    display: none;
  }

  .mobile-menu-toggle {
    width: 28px;
    height: 28px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    width: 12px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: rgba(255, 255, 255, .88);
  }

  .hero {
    height: 920px;
    padding: 385px 18px 44px;
  }

  h1 {
    max-width: 92vw;
    font-size: clamp(54px, 15vw, 58px);
  }

  h1 span {
    display: inline-block;
    max-width: 100%;
  }

  .preview-band {
    padding: 72px 20px;
  }

  .about {
    padding-top: 78px;
  }

  .about .section-copy h2 {
    font-size: clamp(44px, 12vw, 52px);
    line-height: .9;
  }

  .materials .section-heading h2 {
    font-size: clamp(40px, 10.8vw, 44px);
    line-height: .92;
  }

  .about .section-copy > p:not(.kicker) {
    font-size: 16px;
  }

  .about .badge-grid > span {
    min-height: 92px;
  }

  .conviction .stat-bubble.top {
    top: -18px;
    right: 12px;
    max-width: 150px;
    padding: 12px 14px;
  }

  .conviction .stat-bubble.top strong {
    font-size: 26px;
  }

  .hero-actions {
    align-items: stretch;
    margin-top: 24px;
  }

  .story-card,
  .ghost-action {
    width: 100%;
  }

  .badge-grid,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .social-stats {
    grid-template-columns: 1fr .58fr 1.12fr;
    max-width: 100%;
  }

  .social-stats > span {
    min-height: 58px;
    padding-inline: 12px;
  }

  .social-stats strong {
    font-size: 24px;
  }

  .social-stats small {
    font-size: 11px;
  }

  .presence-track,
  .materials-track {
    grid-auto-columns: minmax(260px, 86vw);
  }

  .presence .carousel-button.prev {
    left: 8px;
  }

  .presence .carousel-button.next {
    right: 8px;
  }

  .materials .carousel-wrap {
    width: calc(100vw - 40px);
    margin-left: 20px;
  }

  .materials .carousel-button.prev {
    left: 8px;
  }

  .materials .carousel-button.next {
    right: 8px;
  }

  .word-stack {
    height: 300px;
    gap: 18px;
  }

  .word-list {
    gap: 12px;
  }

  .word {
    min-height: 48px;
    padding-inline: 0;
    font-size: 20px;
  }

  .social-orbit {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .social-orbit > img {
    width: 178px;
    height: 178px;
    flex-basis: 178px;
  }

  .orbit-ring {
    display: none;
  }

  .network-icon {
    position: static;
  }

  .float-whatsapp {
    right: 18px;
    bottom: 14px;
    min-height: 44px;
    padding: 0 14px;
    font-size: 14px;
  }

  .float-whatsapp img {
    width: 16px;
    height: 16px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .material-modal {
    width: min(560px, calc(100vw - 24px));
    max-height: calc(100vh - 24px);
    overflow-y: auto;
    border-radius: 22px;
    padding: 20px;
  }

  .material-modal-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .preview-frame {
    min-height: 320px;
  }

  .mobile-menu-backdrop {
    position: fixed;
    z-index: 80;
    inset: 0;
    display: block;
    background: rgba(0, 0, 0, .48);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease;
  }

  .mobile-menu-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu {
    position: fixed;
    z-index: 81;
    top: 16px;
    right: 16px;
    width: min(250px, calc(100vw - 56px));
    min-height: 450px;
    display: block;
    padding: 18px 16px 20px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: #040821;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .58);
    transform: translateX(calc(100% + 28px));
    transition: transform .22s ease;
  }

  .mobile-menu.is-open {
    transform: translateX(0);
  }

  .mobile-menu-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 30px;
    height: 30px;
    border: 0;
    color: rgba(255, 255, 255, .80);
    background: transparent;
    font-size: 24px;
    font-weight: 900;
    cursor: pointer;
  }

  .mobile-menu-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 6px 0 24px;
    color: white;
    text-decoration: none;
    font-size: 10px;
    line-height: .9;
    font-weight: 900;
  }

  .mobile-menu-brand img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
  }

  .mobile-menu-brand strong {
    color: var(--yellow);
  }

  .mobile-menu-nav {
    display: grid;
    gap: 0;
    margin-bottom: 18px;
  }

  .mobile-menu-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0 8px;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
  }

  .mobile-menu-nav a:nth-child(4) {
    color: var(--yellow);
    background: rgba(255, 255, 255, .06);
  }

  .mobile-menu-community {
    width: 100%;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 9px;
    color: white;
    background: linear-gradient(180deg, #22df6b 0%, #06bd4d 100%);
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
  }

  .mobile-menu-community img {
    width: 16px;
    height: 16px;
  }
}

@keyframes float-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes phone-bob {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -14px; }
}

@keyframes wordsUp {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

@keyframes wordsDown {
  from { transform: translateY(-50%); }
  to { transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

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