:root {
  --bg: #07070b;
  --bg-soft: #0d0d14;
  --surface: #12121b;
  --surface-2: #171724;
  --text: #f7f5f8;
  --muted: #aaa7b4;
  --pink: #ff2d6f;
  --pink-2: #ff5f93;
  --cyan: #16b7c9;
  --line: rgba(255,255,255,.11);
  --radius: 24px;
  --shadow: 0 24px 80px rgba(0,0,0,.42);
  --container: 1180px;
  --header-h: 78px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safari-safe-top: 0px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); -webkit-text-size-adjust: 100%; text-size-adjust: 100%; overflow-x: hidden; overflow-x: clip; }
body { margin: 0; min-width: 320px; overflow-x: hidden; overflow-x: clip; color: var(--text);
  background:
    radial-gradient(circle at 0% 18%, rgba(255,45,111,.38), transparent 34%),
    radial-gradient(circle at 100% 30%, rgba(0,143,169,.55), transparent 40%),
    linear-gradient(90deg, #7b123f 0%, #26345f 44%, #075e70 100%);
  background-attachment: scroll;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-user-select: none;
  -moz-user-select: none;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  user-select: none;
}
input,
textarea,
code {
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}
html.menu-open,
body.menu-open {
    overflow: hidden;
    overscroll-behavior: none;
}
.no-js .main-nav{
    display:none;
}
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
::selection { background: var(--pink); color: white; }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--pink);
  transform: translateY(-180%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
.container {
  width: min(
      calc(100% - 40px - var(--safe-left) - var(--safe-right)),
      var(--container)
    );
  margin-inline: auto;
  padding-left: var(--safe-left);
  padding-right: var(--safe-right);
}
.section { padding: 68px 0; position: relative; }
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: calc(var(--header-h) + var(--safe-top));
  padding-top: var(--safe-top);
  border-bottom: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(
    90deg,
    rgba(160, 12, 82, .68) 0%,
    rgba(73, 31, 92, .62) 42%,
    rgba(0, 117, 133, .66) 100%
  );
  backdrop-filter: blur(18px);
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.header-inner {
  width: min(calc(100% - 32px), 1280px);
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  align-items: center;
}
.brand {
  width: 145px;
  height: 92px;
  display: flex;
  align-items: flex-start;
  padding-top: 1px;
  overflow: visible;
}
.brand img{
  width: 95px;
  height: auto;
  display: block;
}
.brand img.is-small{
    transform: scale(.82);
}
.main-nav {
  display: flex;
  justify-content: center;
  gap: 42px;
}
.main-nav a {
  position: relative;
  padding: 12px 0;
  color: rgba(255,255,255,.76);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .02em;
  transition: color .2s ease;
  transform: translateY(-8px);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}
.main-nav a:hover,
.main-nav a:focus-visible { color: #fff; }
.main-nav a.is-active{
    color:#fff;
}
.main-nav a.is-active::after{
    transform:scaleX(1);
    transform-origin:left;
}
.main-nav a:not(.is-active)::after{
    transform:scaleX(0);
    transform-origin:right;
}
@media (hover: hover) {

.main-nav a:hover:not(.is-active)::after {
    transform: scaleX(1);
    transform-origin: left;
    }
}
.main-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}
.header-socials {
    position: absolute;
    right: 22px;
    top: 50%;
    display: flex;
    align-items: center;
    gap: 0;
    transform: translateY(-50%);
    z-index: 5;
}
.header-socials a {
    width: 44px;
    height: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    transform: none;
}

.header-socials a:focus:not(:focus-visible) {
    transform: none;
    filter: none;
}
.header-socials img {
    width: 58px !important;
    height: 58px !important;
    max-width: none;
    object-fit: contain;
}
.menu-toggle{
    display:none;
    position:absolute;
    right:16px;
    top:50%;
    transform:translateY(-50%);
    visibility:hidden;
    pointer-events:none;
}
.button {
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 850;
  font-size: 15px;
  letter-spacing: .01em;
  transition: transform .18s ease, filter .18s ease, border-color .18s ease, background .18s ease;
}
.button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button:focus-visible { outline: 3px solid rgba(34,211,238,.65); outline-offset: 3px; }
.button--primary {
  color: white;
  background: linear-gradient(135deg, #ff175d 0%, #ff3d7b 60%, #ff5a8f 100%);
  box-shadow: 0 12px 34px rgba(255,45,111,.28), inset 0 1px rgba(255,255,255,.25);
}
.button--primary:hover { filter: brightness(1.08); }
.button--glass {
  color: #fff;
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(10px);
}
.button--glass:hover { border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.11); }
.button--small { min-height: 44px; padding: 0 18px; border-radius: 12px; font-size: 13px; }
.button--full { width: 100%; }
.play-dot {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--pink);
  background: white;
  font-size: 10px;
  padding-left: 2px;
}
.hero {
  min-height: 100svh;
  padding: calc(var(--header-h) + var(--safe-top) + 34px) 0 64px;
  box-shadow: inset 0 -120px 120px rgba(7,7,11,.35);
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  position: relative;
  z-index: 5;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -4;
  background: url("assets/images/hero.webp") center center / cover no-repeat;
  transform: none;
  opacity: .82;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(
      90deg,
      rgba(160, 12, 82, .68) 0%,
      rgba(120, 31, 96, .62) 28%,
      rgba(25, 76, 112, .30) 62%,
      rgba(0, 117, 133, .52) 100%
      ),
    linear-gradient(
      180deg,
      rgba(7, 7, 11, .06) 0%,
      rgba(7, 7, 11, .10) 58%,
      rgba(7, 7, 11, .20) 100%
      );
}
.hero::after {
  display: none;
}
.hero-glow {
  position: absolute;
  width: 720px;
  height: 720px;
  right: -230px;
  top: 80px;
  z-index: -2;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,45,111,.23), transparent 67%);
  filter: blur(8px);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
  gap: 68px;
  align-items: center;
  min-width: 0;
}
.hero-copy { max-width: 650px; }
.platform-label {
    display: none;
}
.platform-label span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 6px rgba(255,45,111,.14), 0 0 22px rgba(255,45,111,.8);
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .008em;
}
h1 {
  margin-bottom: 24px;
  font-size: clamp(58px, 6vw, 98px);
  line-height: .92;
  text-wrap: balance;
  text-shadow: 0 8px 44px rgba(0,0,0,.36);
}
h1 em {
    color: #ff4d8d;
    font-style: normal;
    text-shadow:
        0 0 10px rgba(255,45,111,.35),
        0 0 24px rgba(255,45,111,.45),
        0 2px 12px rgba(0,0,0,.45);
}
.hero-lead {
  max-width: 610px;
  margin-bottom: 32px;
  color: rgba(255,255,255,.78);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
}
.hero-actions { display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 760px;}
.store-note {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 18px;
  max-width: 760px;
  align-items: stretch;
}
.store-pill {
  min-height: 72px;
  padding: 12px 22px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 18px;
  display: flex;
  justify-content: center; 
  align-items: center;
  gap: 16px;
  color: #fff;
  background: rgba(6,6,12,.58);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: transform .18s ease, filter .18s ease, border-color .18s ease, background .18s ease;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
}
.store-pill:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  border-color: rgba(255,255,255,.42);
}
.store-pill:active {
  transform: translateY(0);
}
.store-pill:focus-visible {
  outline: 3px solid rgba(34,211,238,.65);
  outline-offset: 3px;
}
.store-pill svg {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}
.store-pill:nth-child(2) svg {
  fill: currentColor;
  stroke: none;
  width: 36px;
  height: 36px;
  transform: translateY(-2px);
}
.store-pill span {
  display: block;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  white-space: normal;
  word-break: keep-all;
}
.store-pill small {
  display: none;
}
.hero-visual {
  position: relative;
  min-height: 550px;
}
.hero-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 28px;
  background: #111;
  box-shadow: var(--shadow);
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card--back {
  width: 250px;
  height: 390px;
  top: 20px;
  right: -60px;
  transform: rotate(7deg);
  opacity: .92;
  z-index: 0;
}
.hero-card--front {
  width: min(470px, 90%);
  height: 360px;
  left: -8px;
  bottom: 28px;
  transform: rotate(-3deg);
  overflow: visible;
}
.hero-card--front > img { border-radius: inherit; }
.hero-card-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: -29px;
  min-height: 62px;
  padding: 10px 16px;
  display: grid;
  grid-template-columns: 12px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 10px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  background: rgba(10,10,16,.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 36px rgba(0,0,0,.34);
}
.hero-card-caption .status-dot { grid-row: 1 / span 2; width: 9px; height: 9px; border-radius: 50%; background: #53f58c; box-shadow: 0 0 12px rgba(83,245,140,.9); }
.hero-card-caption strong { font-size: 13px; }
.hero-card-caption small { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.floating-tag {
  position: absolute;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  background: rgba(255,45,111,.86);
  box-shadow: 0 8px 22px rgba(255,45,111,.24);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
  transform: rotate(-6deg);
}
.floating-tag--one { left: -50px; top: 200px; }
.floating-tag--two { right: 20px; bottom: 80px; background: rgba(22,22,31,.9); transform: rotate(5deg); }
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: 30px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 18px;
  background: rgba(7,7,11,.18);
  backdrop-filter: blur(6px);
  z-index: 100;
  cursor: pointer;
  pointer-events: auto;
}
.scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: #fff;
  transform: translateX(-50%);
  animation: scrollCue 1.7s infinite;
}
.scroll-cue--up {
  position: relative;
  left: auto;
  bottom: auto;
  margin: 34px auto 0;
  transform: none;
  align-self: center;
}
.scroll-cue--up span {
  animation: scrollCueUp 1.7s infinite;
}
@keyframes scrollCueUp {
    0% {
      opacity: 0;
      transform: translate(-50%,16px);
    }
    35% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      transform: translate(-50%,0);
    }
}
@keyframes scrollCue { 0% { opacity: 0; transform: translate(-50%,0); } 35% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%,16px); } }
.eyebrow {
  margin-bottom: 12px;
  color: var(--pink-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading--split { max-width: none; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(260px, .55fr); gap: 50px; align-items: end; }
.section-heading h2,
.feature-band-copy h2,
.final-cta h2,
.community-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(44px, 5vw, 74px);
  line-height: 1.09;
  letter-spacing: .01em;
}
.section-heading > p:last-child,
.section-heading--split > p,
.feature-band-copy > p,
.community-copy > p,
.final-cta-inner > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.section-heading--split > p { margin-bottom: 4px; }
.trailer { background: transparent; margin-top: 0; padding-top: 88px; padding-bottom: 125px; }
#trailer{
    scroll-margin-top:78px;
}
.video-frame {
  position: relative;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  box-shadow: 0 30px 90px rgba(0,0,0,.42);
}
.video-frame::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,45,111,.35), transparent 32%, transparent 70%, rgba(34,211,238,.22));
  filter: blur(20px);
}
.video-frame video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 19px; background: #000; }
.video-label {
  position: absolute;
  left: 28px;
  bottom: 28px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  background: rgba(5,5,8,.75);
  backdrop-filter: blur(10px);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  pointer-events: none;
}
.video-label span { width: 7px; height: 7px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 12px rgba(255,45,111,.9); }
.game { overflow: hidden; }
#game{
    scroll-margin-top:78px;
}
.game::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -280px;
  top: 20%;
  border-radius: 50%;
  background: rgba(255,45,111,.11);
  filter: blur(110px);
}
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.pillar-card {
  position: relative;
  min-height: 330px;
  padding: 28px 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: transparent;
  transition:
    transform .24s ease,
    border-color .24s ease;
}
.pillar-card:hover { transform: translateY(-7px); border-color: rgba(255,45,111,.38); background: linear-gradient(180deg, rgba(255,45,111,.08), rgba(255,255,255,.02)); }
.pillar-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -70px;
  bottom: -70px;
  border-radius: 50%;
  background: var(--card-glow, rgba(255,45,111,.18));
  filter: blur(38px);
}
.pillar-card--cars { --card-glow: rgba(34,211,238,.16); }
.pillar-card--action { --card-glow: rgba(255,156,72,.18); }
.pillar-card--style { --card-glow: rgba(153,102,255,.18); }
.pillar-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  background: rgba(255,255,255,.05);
}
.pillar-icon svg { width: 34px; height: 34px; fill: none; stroke: var(--pink-2); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.pillar-number { position: absolute; top: 30px; right: 24px; color: rgba(255,255,255,.24); font-size: 12px; font-weight: 900; letter-spacing: .14em; }
.pillar-card h3 { margin-bottom: 12px; font-size: 22px; }
.pillar-card p { margin: 0; color: rgba(255,255,255,.82); font-size: 14px; line-height: 1.6; }
.pillar-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter:
  brightness(1.45)
  contrast(1.08)
  saturate(1.12);
  z-index: 0;
}
.pillar-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
      linear-gradient(
          180deg,
          rgba(5,5,10,.12) 0%,
          rgba(5,5,10,.28) 55%,
          rgba(5,5,10,.68) 100%
      );
    pointer-events: none;
}
.pillar-icon,
.pillar-card h3,
.pillar-card p {
  position: relative;
  z-index: 2;
}
.pillar-number {
  z-index: 2;
}
.feature-band { padding-top: 40px; }
.feature-band-grid {
  min-height: 630px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #0e0e15;
  box-shadow: var(--shadow);
}
.feature-band-media { position: relative; min-height: 530px; overflow: hidden; }
.feature-band-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 55%, #0e0e15 100%), linear-gradient(180deg, transparent 65%, rgba(14,14,21,.45)); }
.feature-band-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-band-copy { padding: 68px 62px; align-self: center; }
.feature-band-copy h2 { font-size: clamp(42px, 4.8vw, 70px); }
.check-list { margin: 34px 0 0; padding: 0; list-style: none; display: grid; gap: 0; }
.check-list li { min-height: 58px; display: flex; align-items: center; gap: 15px; border-top: 1px solid var(--line); color: rgba(255,255,255,.86); font-size: 14px; font-weight: 700; }
.check-list li:last-child { border-bottom: 1px solid var(--line); }
.check-list span { color: var(--pink-2); font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.map-pulse { position: absolute; z-index: 2; width: 14px; height: 14px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 0 rgba(255,45,111,.55); animation: pulse 2s infinite; }
.map-pulse--one { left: 36%; top: 38%; }
.map-pulse--two { left: 62%; top: 28%; animation-delay: .6s; background: var(--cyan); }
.map-pulse--three { left: 53%; top: 62%; animation-delay: 1.1s; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,45,111,.55); } 70% { box-shadow: 0 0 0 22px rgba(255,45,111,0); } 100% { box-shadow: 0 0 0 0 rgba(255,45,111,0); } }
.media { overflow: hidden; }
.gallery {
  display: grid;
  grid-template-columns: 1.35fr .75fr;
  grid-auto-rows: 300px;
  gap: 14px;
}
.gallery-card {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #111;
}
.gallery-card:nth-child(3), .gallery-card:nth-child(4), .gallery-card:nth-child(5) { grid-column: span 1; }
.gallery-card:nth-child(3) { grid-column: 1 / 2; }
.gallery-card:nth-child(4) { grid-column: 2 / 3; }
.gallery-card:nth-child(5) { grid-column: 1 / 3; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.7,.2,1), filter .35s ease; }
.gallery-card:hover img { transform: scale(1.035); filter: saturate(1.08); }
.gallery-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 48%, rgba(0,0,0,.78) 100%); pointer-events: none; }
.gallery-card figcaption { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 20px; display: grid; gap: 4px; }
.gallery-card figcaption strong { font-size: 18px; }
.gallery-card figcaption span { color: rgba(255,255,255,.66); font-size: 12px; }
.gallery-hint { display: none; }
.community-panel {
  min-height: 480px;
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,45,111,.23);
  border-radius: 32px;
  background:
  radial-gradient(circle at 70% 50%, rgba(255,45,111,.16), transparent 35%),
  linear-gradient(135deg, #11111a, #0b0b11);
  box-shadow: var(--shadow);
  min-width: 0;
}
.community { display: flex; align-items: center; padding-bottom: 100px; }
#community { scroll-margin-top:60px; }
.community-art { align-self: stretch; min-height: 480px; position: relative; overflow: hidden; }
.community-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 58%, #101017 100%), linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.38)); }
.community-art img { width: 100%; height: 100%; object-fit: cover; }
.community-copy { min-width: 0; padding: 58px 62px 58px 30px; display: flex; flex-direction: column;}
.community-copy h2 { font-size: clamp(42px, 4.8vw, 68px); }
.social-links {
  width: 100%;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.social-links a {
  min-height: 90px;
  padding: 14px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
  transition:
    transform .2s ease,
    border-color .2s ease,
    background .2s ease;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.social-links a.tap {
    transform: translateY(-4px);
    border-color: rgba(255,45,111,.45);
    background: rgba(255,45,111,.07);
}
.social-links a:focus:not(:focus-visible) {
    outline: none;
}
.social-links img {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  object-fit: contain;
}
.social-links span {
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: normal;
  text-align: center;
}
.faq { background: transparent; padding-top: 88px; padding-bottom: 200px;}
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 86px; align-items: start; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { min-height: 76px; padding: 18px 2px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-size: 17px; font-weight: 800; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { position: relative; flex: 0 0 30px; width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 50%; }
.accordion summary span::before, .accordion summary span::after { content: ""; position: absolute; left: 50%; top: 50%; width: 10px; height: 2px; background: #fff; transform: translate(-50%,-50%); transition: transform .2s ease; }
.accordion summary span::after { transform: translate(-50%,-50%) rotate(90deg); }
.accordion details[open] summary span::after { transform: translate(-50%,-50%) rotate(0deg); }
.accordion p {
  margin: -4px 46px 14px 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}
.accordion a {
  color: #ff2d6f;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease;
}
.accordion a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.accordion ul {
  margin: 8px 0 16px;
  padding-left: 22px;
  list-style: disc;
}
.accordion li {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}
.accordion li::marker {
  color: var(--muted);
}
.final-screen {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
.final-screen-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("assets/images/footer-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  filter: brightness(.9) saturate(1.05);
}
.final-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
      linear-gradient(
          90deg,
          rgba(123,18,63,.78) 0%,
          rgba(72,45,104,.56) 34%,
          rgba(22,83,119,.54) 66%,
          rgba(7,94,112,.72) 100%
      ),
      linear-gradient(
          180deg,
          rgba(8,8,12,.28) 0%,
          rgba(8,8,12,.12) 45%,
          rgba(8,8,12,.34) 100%
      );
}
.final-cta {
  position: relative;
  z-index: 2;
  flex: 1;
  min-height: calc(100vh - 130px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.final-cta .eyebrow {
  margin: 18px 0 50px;
  color: rgba(255,255,255,.74);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .18em;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}
.final-logo {
  width: 200px;
  height: auto;
  margin: 0 auto 18px;
  margin-bottom: 26px;
  filter: drop-shadow(0 0 24px rgba(255,255,255,.12));
  display: block;
}
.final-cta > p:not(.eyebrow) {
  margin: 14px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 20px;
  line-height: 1.45;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}
.final-screen {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0;
}
.final-cta-inner { position: relative; z-index: 2; max-width: 750px; }
.final-cta-inner > img { width: 210px; margin: 0 auto -20px; filter: drop-shadow(0 0 30px rgba(255,45,111,.18)); }
.final-cta h2 { margin: 0 0 22px; font-size: clamp(54px, 7vw, 90px); }
.final-cta-inner > p { max-width: 580px; margin-inline: auto; }
.final-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 980px;
  margin: 36px auto 0;
}
.button--store {
  color: #fff;
  background: rgba(6,6,12,.72);
  border-color: rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
}
.button--store {
    gap: 12px;
}
.button--store svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}
.button--store:last-child svg {
  fill: currentColor;
  stroke: none;
  width: 20px;
  height: 20px;
  transform: translateY(-1px);
}
.button--store:hover {
  transform: translateY(-2px);
  background: rgba(10,10,18,.88);
  border-color: rgba(255,255,255,.42);
  filter: brightness(1.08);
}
.site-footer {
  position: relative;
  z-index: 2;
  padding: 26px 0;
  border-top: none;
  background: transparent;
}
.footer-inner {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 20px;
}
.brand--footer {
  width: 110px;
  height: 60px;
  display: flex;
  align-items: flex-start;
}
.brand--footer img {
  width: 108px;
  height: auto;
  transform: translateY(-1px);
}
.footer-inner p { margin: 0; color: rgba(255,255,255,.43); font-size: 11px; line-height: 1.5; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255,255,255,.56); font-size: 12px; font-weight: 700; }
.footer-links a:hover { color: #fff; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.mobile-socials {
  display: none;
}

@media (max-width: 1040px) {
:root {
    --container: 940px;
}

.header-inner{ grid-template-columns:120px 1fr; }
.brand{ width:110px; }
.brand img{ width:95px; }
.main-nav{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:nowrap;
  gap:22px;
  transform:none;
  position: relative;
  left: -52px;
}
.main-nav a{
  padding:8px 0;
  font-size:clamp(14px,1.8vw,16px);
  white-space:nowrap;
  transform:none;
  transform:translateY(-20%);
}
.header-socials{
    display:none;
}
.hero-grid {
  grid-template-columns: minmax(0,1.05fr) minmax(320px,.95fr);
  gap:32px;
}
.hero-visual {
  min-height:500px;
}
.hero-card--front {
  height:320px;
}
.hero-card--back {
  width:215px;
  height:350px;
}
.floating-tag--one{
  left:-18px;
  top:150px;
}

.floating-tag--two{
  right:0;
  bottom:48px;
}
.pillars-grid {
  grid-template-columns:repeat(2,1fr);
}
.pillar-card {
  min-height:285px;
}
.pillar-icon {
  margin-bottom:38px;
}
.feature-band-copy {
  padding:50px 42px;
}
.community-copy {
  padding:45px 42px 45px 20px;
}
.faq-grid {
  gap:50px;
}}

@media (max-width: 820px) {
  :root { --header-h: 68px; }
  .container { width: min(calc(100% - 30px), var(--container)); }
  .section { padding: 82px 0; }
  .header-inner { width: calc(100% - 24px); grid-template-columns: 1fr auto auto; gap: 10px; }
  .header-inner > .header-socials { display: none;}
  .brand { width: 128px; height: 62px; }
  .brand img { width: 78px; }
  .mobile-socials {
    display: grid;
    gap: 0;
    margin-top: 0;
    padding-top: 20px;
    border-top: none;
  }
  .mobile-socials-title {
    border-top: 1px solid var(--line);
    padding-top: 20px;
    margin-bottom: 10px;
    color: var(--pink-2);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
  }
  .mobile-socials a {
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0;
    border-bottom: 1px solid var(--line);
  }
  .mobile-socials img {
    width: 34px;
    height: 34px;
    object-fit: contain;
  }
  .mobile-socials span {
    color: rgba(255,255,255,.82);
    font-size: 20px;
    font-weight: 800;
  }
  
  .menu-toggle {
    display:grid;
    visibility:visible;
    pointer-events:auto;
    order: 3;
    width: 46px;
    height: 46px;
    padding: 12px 10px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 12px;
    display: grid;
    align-content: center;
    gap: 5px;
    cursor: pointer;
    background: rgba(255,255,255,.045);
  }
  .menu-toggle span:not(.sr-only) { width: 100%; height: 2px; border-radius: 0; background: #fff; transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); visibility: hidden; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .header-cta { min-height: 44px; padding: 0 13px; font-size: 11px; }
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    min-height: calc(100svh - var(--header-h));
    padding: 20px 24px 24px;
    display: grid;
    align-content: start;
    justify-content: stretch;
    gap: 0;
    background: rgba(7,7,11,.97);
    backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform .25s ease,
    opacity .2s ease,
    visibility 0s linear .25s;;
  }
  .main-nav.is-open { transform: translateX(0); opacity: 1; visibility: visible; pointer-events: auto; 
        transition:
        transform .25s ease,
        opacity .2s ease;}
  .main-nav a { min-height: 62px; display: flex; align-items: center; border-bottom: 1px solid var(--line); font-size: 20px; }
  .main-nav a::after { display: none; }
  .hero { min-height: auto; padding: calc(var(--header-h) + var(--safe-top) + 48px) 0 72px; align-items: flex-start; margin-bottom: -1px;}
  .hero::before { background: linear-gradient(180deg, rgba(6,6,10,.76), rgba(6,6,10,.88) 48%, rgba(7,7,11,.97) 100%); }
  .hero-bg { background-position: 60% 50%; opacity: .85; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy { max-width: 690px; }
  h1 { font-size: clamp(56px, 11vw, 86px); }
  .hero-lead { max-width: 560px; }
  .hero-visual { width: min(100%, 620px); min-height: 420px; justify-self: center; }
  .hero-card--front { width: 77%; height: 290px; left: 4%; bottom: 35px; }
  .hero-card--back { width: 190px; height: 310px; right: 6%; }
  .floating-tag--one{
    left:8px;
    top:110px;
  }
  .floating-tag--two{
    right:10px;
    bottom:60px;
  }
  .scroll-cue { display: none; }
  .section-heading--split { grid-template-columns: 1fr; gap: 10px; }
  .video-label { display: none; }
  .feature-band-grid { grid-template-columns: 1fr; }
  .feature-band-media { min-height: 420px; }
  .feature-band-media::after { background: linear-gradient(180deg, transparent 56%, #0e0e15 100%); }
  .feature-band-copy { padding: 18px 34px 48px; }
  .gallery { grid-auto-rows: 240px; }
  .community-panel { grid-template-columns: 1fr; }
  .community-art { min-height: 360px; }
  .community-art::after { background: linear-gradient(180deg, transparent 58%, #101017 100%); }
  .community-copy { padding: 16px 34px 44px; }
  .faq-grid { grid-template-columns: 1fr; gap: 22px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 12px; }
  }

@media (max-width: 600px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .section { padding: 70px 0; }
  .header-cta { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .menu-toggle { order: initial; }
  .hero { padding-top: calc(var(--header-h) + var(--safe-top) + 40px); }
  .platform-label { margin-bottom: 16px; font-size: 11px; }
   h1 { margin-bottom: 18px; font-size: clamp(50px, 15.2vw, 72px); line-height: .91; }
  .hero-lead { margin-bottom: 26px; font-size: 16px; line-height: 1.52; }
  .hero-actions,
  .store-note {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: none;
  }
  .hero-actions .button,
  .store-pill {
    min-height: 64px;
    border-radius: 16px;
  }
  .store-pill {
    padding: 12px 16px;
  }
  .store-pill svg {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }
  .store-pill span {
    font-size: 20px;
  }
  .store-pill small {
  font-size: 11px;
  }
  .hero-visual { min-height: 350px; margin-top: 4px; }
  .hero-card--front { width: 84%; height: 225px; left: 0; bottom: 44px; }
  .hero-card--back { width: 145px; height: 250px; top: -10px; right: 3%; }
  .hero-card-caption { left: 12px; right: 12px; bottom: -25px; }
  .floating-tag {
    padding: 8px 12px;
    font-size: 10px;
  }
  .floating-tag--one {
    left: 12px;
    top: 75px;
    transform: rotate(-5deg);
  }
  .floating-tag--two {
    right: 18px;
    bottom: 90px;
    transform: rotate(5deg);
  }
  .section-heading { margin-bottom: 32px; }
  .section-heading h2,
  .feature-band-copy h2,
  .community-copy h2 { font-size: clamp(40px, 12.4vw, 58px); }
  .section-heading > p:last-child,
  .section-heading--split > p,
  .feature-band-copy > p,
  .community-copy > p,
  .final-cta-inner > p { font-size: 15px; }
  .video-frame { padding: 5px; border-radius: 18px; }
  .video-frame video { border-radius: 13px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar-card { min-height: 245px; padding: 24px; }
  .pillar-icon { margin-bottom: 30px; }
  .feature-band { padding-top: 10px; }
  .feature-band-grid { border-radius: 22px; }
  .feature-band-media { min-height: 310px; }
  .feature-band-copy { padding: 8px 22px 32px; }
  .final-actions {
  grid-template-columns: 1fr;
  }
  .gallery {
    width: calc(100% + 12px);
    margin-right: -12px;
    padding-right: 12px;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
  }
  .gallery::-webkit-scrollbar { display: none; }
  .gallery-card,
  .gallery-card:nth-child(n) {
    flex: 0 0 86%;
    height: 270px;
    grid-column: auto;
    scroll-snap-align: start;
  }
  .gallery-card:nth-child(2) { flex-basis: 70%; }
  .gallery-hint { margin-top: 14px; display: flex; justify-content: center; gap: 9px; color: rgba(255,255,255,.45); font-size: 11px; font-weight: 700; }
  .gallery-hint span { color: var(--pink); }
  .community-panel { border-radius: 22px; }
  .community-art { min-height: 220px; }
  .community-copy { padding: 8px 22px 30px; }
  .social-links { grid-template-columns: 1fr 1fr; }
  .social-links a { min-height: 78px; padding: 12px 9px; text-align: center; }
  .social-links span { font-size: 15px; }
  .social-links small { font-size: 10px; }
  .accordion summary { min-height: 68px; font-size: 15px; }
  .accordion p { margin-right: 0; font-size: 14px; }
  .final-cta { min-height: 560px; }
  .final-cta h2 { font-size: clamp(50px, 15vw, 72px); }
  .brand--footer {
    width: 90px;
    height: 48px;
    justify-content: center;
}
.brand--footer img {
    width: 100px;
    transform: translateY(-10px);
}
}

/* ===== FAQ Show More ===== */

.faq-hidden{
    display:none;
}
.faq-hidden.is-visible{
    display:block;
}
.faq-more{
    display:flex;
    justify-content:center;

    margin-top:32px;
}

/* ===== Pointer states ===== */

@media (hover: hover) {

    .button:hover,
    .store-pill:hover,
    .social-links a:hover,
    .header-socials a:hover,
    .gallery-card:hover,
    .pillar-card:hover {

        transition: inherit;

    }

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

    .store-pill:hover {
        transform: translateY(-2px);
        filter: brightness(1.08);
        border-color: rgba(255,255,255,.42);
    }

    .social-links a:hover {
        transform: translateY(-4px);
        border-color: rgba(255,45,111,.45);
        background: rgba(255,45,111,.07);
    }

    .header-socials a:hover {
        transform: scale(1.08);
        filter: drop-shadow(0 0 8px rgba(255,45,111,.55));
    }

    .gallery-card:hover img {
        transform: scale(1.035);
        filter: saturate(1.08);
    }

    .pillar-card:hover {
        transform: translateY(-7px);
        border-color: rgba(255,45,111,.38);
        background: linear-gradient(
            180deg,
            rgba(255,45,111,.08),
            rgba(255,255,255,.02)
        );
    }

}

@media (hover: none) {

    .button:active {
        transform: translateY(-2px);
    }

    .store-pill:active {
        transform: translateY(-2px);
        filter: brightness(1.08);
        border-color: rgba(255,255,255,.42);
    }

    .social-links a:active {
        transform: translateY(-4px);
        border-color: rgba(255,45,111,.45);
        background: rgba(255,45,111,.07);
    }

    .header-socials a:active {
        transform: scale(1.08);
        filter: drop-shadow(0 0 8px rgba(255,45,111,.55));
    }
  }

  html.is-safari .site-header{
    height: calc(
        var(--header-h) + var(--safari-safe-top)
    );
    padding-top: var(--safari-safe-top);
  }
  html.is-safari .hero{
    padding-top: calc(
        var(--header-h)
        + 34px
    );
  }

  @media (max-width:820px){
    html.is-safari .hero{
        padding-top: calc(
            var(--header-h)
            + 48px
        );
    }
  }

  @media (max-width:600px){
    html.is-safari .hero{
        padding-top: calc(
            var(--header-h)
            + 40px
        );
    }
  }

@media (max-height: 500px) and (orientation: landscape) {
:root{ --header-h: 58px; }
.hero .scroll-cue{ display:none; }
.section{ padding: 48px 0; }
.trailer{ padding-top: 48px; }
.header-inner{ height:58px; }
.brand{ width:95px; height:58px; }
.brand img{ width:68px; }
.main-nav{ transform: translateY(8px); }
.main-nav a{ font-size:16px; padding:8px 0; }
.section{ padding:16px 0; }
.section-heading{ margin-bottom:24px; }
.section-heading h2,
.feature-band-copy h2,
.community-copy h2,
.final-cta h2{ 
    font-size:clamp(32px,3.8vw,42px);
    line-height:.95;
    margin-bottom:8px; }
.section-heading > p:last-child,
.section-heading--split > p,
.feature-band-copy > p,
.community-copy > p,
.final-cta > p:not(.eyebrow),
.accordion p,
.accordion li{
    font-size:14px;
    line-height:1.45;
}
.eyebrow{
    font-size:11px;
    margin-bottom:6px;
}

.section-heading{
    margin-bottom:18px;
}
.pillar-card{
    min-height:220px;
    padding:20px;
    }
.pillar-icon{
    margin-bottom:20px;
    }
.feature-band-media{
    min-height:220px;
    }
.community-art{
    min-height:220px;
    }
.video-frame{
    padding:6px;
    }
.hero{
    min-height:100dvh;
    padding-top:calc(var(--header-h) + var(--safe-top) + 12px);
    padding-bottom:20px;
}
.hero-bg{
    background-position:center 35%;
}
.hero-grid{
    gap:28px;
}
.hero-copy{
    max-width:560px;
}
h1{
    font-size:clamp(38px,6vw,54px);
    margin-bottom:12px;
}
.hero-lead{
    margin-bottom:18px;
    font-size:15px;
    line-height:1.45;
    max-width:520px;
}
.hero-actions{
    gap:10px;
}
.store-note{
    margin-top:12px;
    gap:10px;
}
.store-pill{
    height:56px;
    padding:10px 16px;
}
.store-pill span{
    font-size:18px;
}
.hero-visual{
    min-height:280px;
}
.hero-card--front{
    height:250px;
}
.hero-card--back{
    width:170px;
    height:260px;
}
.hero-card-caption{
    bottom:-18px;
}
.floating-tag{
    display:none;
}
.trailer{
    padding-top:24px;
    padding-bottom:24px;
}
#trailer{
    scroll-margin-top:58px;
}
.section-heading--split{
    gap:12px;
    align-items:center;
}

.section-heading{
    margin-bottom:12px;
}

.section-heading h2{
    margin-bottom:6px;
}

.eyebrow{
    margin-bottom:6px;
}

.video-frame{
    padding:2px;
    border-radius:14px;
    border-width:1px;
    box-shadow:none;
}
.video-frame::before{
    filter:blur(8px);
    opacity:.35;
}
.video-frame video{
    aspect-ratio:16 / 8.5;
    border-radius:12px;
}
.trailer .section-heading h2{
    font-size:clamp(34px,4.2vw,48px);
}
.trailer .container{
    width:min(92%, 900px)
}
.community-panel{
    min-height:auto;
    align-items:start;
}

.community-art{
    min-height:220px;
}

.community-copy{
    transform:translateY(-30px)
}
.social-links{
    margin-top:12px;
}
.social-links span{
    font-size:14px;
}
.social-links a{
    height:64px;
    padding:10px;
}

.social-links img{
    width:48px;
    height:48px;
}
.feature-band-grid{
    min-height:auto;
    grid-template-columns:40% 60%;
}

.feature-band-media{
    min-height:180px;
}

.feature-band-copy{
    padding:20px 24px;
}

.check-list{
    margin-top:18px;
}

.check-list li{
    min-height:42px;
    font-size:13px;
}

.check-list span{
    font-size:10px;
}
.final-cta{
    min-height:calc(100dvh - 58px);
    justify-content:flex-end;
    padding-top:0;
    padding-bottom:18px;
}
.final-cta > *{
    transform:translateY(30px);
}
}
.site-footer{
    padding:14px 0;
}
.final-logo{
    width:150px;
    margin-bottom:10px;
}
.final-cta .eyebrow{
    margin:6px 0 12px;
}
.final-cta > p:not(.eyebrow){
    margin-top:18px;
}

.final-logo{
    margin-bottom:10px;
}

.final-cta h2{
    margin-bottom:10px;
    line-height:.8;
}

.final-cta > p:not(.eyebrow){
    margin-top:18px;
}

.final-actions{
    margin-top:50px;
}
.brand--footer{
    width:80px;
    height:42px;
}

.brand--footer img{
    width:78px;
    transform:translateY(-1px);
}

.footer-inner{
    gap:12px;
}

/* ===== iOS Safari fixes ===== */

html.is-safari .hero-grid,
html.is-safari .community-panel{
    min-width:0;
}

/* ===== iOS Safari fixes ===== */

html.is-safari .hero-grid,
html.is-safari .community-panel{
    min-width:0;
}

html.is-safari .store-pill,
html.is-safari .social-links a{
    box-sizing:border-box;
    overflow:hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
