:root{
  --bg: #0b0b10;
  --panel: rgba(255,255,255,.06);
  --panel-2: rgba(255,255,255,.08);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.68);
  --line: rgba(255,255,255,.10);
  --shadow: 0 18px 40px rgba(0,0,0,.34);
  --radius: 16px;
  --radius-sm: 12px;
  --accent: #d8b4fe;
  --accent-2: #fbcfe8;
  --accent-3: #a7f3d0;
  --good: #7CFFCB;
  --warn: #ffd166;
  --shadow-soft: 0 18px 40px rgba(0,0,0,.34);
  --shadow-cute: 0 18px 40px rgba(0,0,0,.18);
  --title: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-spring: cubic-bezier(.2, .95, .2, 1);
}

*{ box-sizing: border-box; }
html,body{ height: 100%; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.45;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; text-decoration-color: rgba(255,255,255,.35); }

.container{
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
}

.skip{
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 12px;
  background: #11162a;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.skip:focus{ left: 12px; z-index: 5; }

.header{
  position: sticky;
  top: 0;
  z-index: 4;
  backdrop-filter: blur(10px);
  background: rgba(11,11,16,.78);
  border-bottom: 1px solid var(--line);
}
.header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.brand__dot{
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
}
.brand__text{ opacity: .95; }

.nav{
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav__link.is-active{
  color: rgba(255,255,255,.92);
  text-decoration: none;
  background: rgba(255,255,255,.06);
}
.nav__link{
  font-weight: 500;
  color: var(--muted);
  padding: 7px 10px;
  border-radius: 12px;
}
.nav__link--cta{
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
}
.nav__link--cta:hover{
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.18);
}
.nav__link:hover{
  color: var(--text);
  text-decoration: none;
  background: rgba(255,255,255,.05);
}

.hero{
  padding: 44px 0 18px;
}
.hero__inner{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 26px;
  align-items: center;
}
.hero__title{
  margin: 16px 0 12px;
  font-family: var(--title);
  font-size: clamp(34px, 5.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}
.hero__line{ display: block; }
.hero__line--accent{
  background: linear-gradient(90deg, rgba(216,180,254,1), rgba(251,207,232,1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead{
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  max-width: 60ch;
}

.pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  font-weight: 600;
  font-size: 13px;
}
.pill__dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(251,207,232,1);
}

.cta{
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.trust{
  margin-top: 16px;
}
.trust__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.trustCard{
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border-radius: 16px;
  padding: 12px 12px;
  box-shadow: 0 18px 48px rgba(0,0,0,.20);
  transition: transform 180ms var(--ease-out), border-color 180ms var(--ease-out), background 180ms var(--ease-out);
}
.trustCard:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.16);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
}
.trustCard__k{
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 13px;
}
.trustCard__v{
  margin-top: 6px;
  color: rgba(255,255,255,.76);
  font-weight: 600;
  font-size: 12.5px;
  line-height: 1.35;
}
.trust__note{
  margin-top: 10px;
  color: rgba(255,255,255,.70);
  font-weight: 600;
  font-size: 12.5px;
  max-width: 80ch;
  border-left: 2px solid rgba(255,209,102,.45);
  padding-left: 10px;
}

.btn{
  appearance: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  position: relative;
  will-change: transform;
}
.btn:hover{
  transform: translateY(-1px);
  text-decoration: none;
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
}
.btn:active{ transform: translateY(0px); }
.btn:focus-visible{
  outline: 2px solid rgba(255,116,200,.62);
  outline-offset: 2px;
}
.btn--primary{
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.10);
  box-shadow: none;
}
.btn--primary:hover{
  border-color: rgba(255,255,255,.20);
  background: rgba(255,255,255,.14);
}
.btn--ghost{
  background: transparent;
}

.heroStats{
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.heroStat{
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  min-width: 150px;
  box-shadow: var(--shadow-cute);
}
.heroStat__k{
  color: rgba(255,255,255,.70);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 11px;
}
.heroStat__v{
  margin-top: 6px;
  font-size: 16px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.heroFrame{
  height: 100%;
  display: grid;
  align-content: start;
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  position: relative;
  transform: translateZ(0);
  max-width: 420px;
  margin-left: auto;
}
.heroFrame__imgBtn{
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}
.heroFrame__imgBtn img{
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.02);
  transition: transform 260ms var(--ease-out);
}
.heroFrame__imgBtn:hover img{ transform: scale(1.06); }
.heroFrame__cap{
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.14);
}
.heroFrame__capTitle{
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: 16px;
}
.heroFrame__capSub{
  margin-top: 4px;
  color: rgba(255,255,255,.74);
  font-weight: 650;
  font-size: 13px;
}

.card{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.hero__art{
  min-height: 320px;
}
.preview{
  width: min(420px, calc(100% - 44px));
  padding: 22px;
  border-radius: 26px;
  background:
    radial-gradient(520px 320px at 18% 0%, rgba(255,116,200,.44), transparent 60%),
    radial-gradient(520px 320px at 88% 0%, rgba(181,140,255,.30), transparent 60%),
    rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 22px 70px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}
.preview__row{
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 14px;
  justify-content: space-between;
}
.traffic{
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.traffic__dot{
  width: 11px;
  height: 11px;
  border-radius: 999px;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.22),
    0 10px 18px rgba(0,0,0,.22);
  opacity: .95;
}
.traffic__dot--red{ background: #ff5aa5; }
.traffic__dot--yellow{ background: #ffd166; }
.traffic__dot--green{ background: #7CFFCB; }
.preview__hint{
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(255,255,255,.70);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.12);
}
.preview__title{
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 20px;
}
.preview__subtitle{
  color: var(--muted);
  font-weight: 600;
  margin-top: 2px;
}
.preview__grid{
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.tile{
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(12px 12px at 35% 40%, rgba(255,92,168,.95), transparent 60%),
    radial-gradient(12px 12px at 62% 62%, rgba(255,209,102,.95), transparent 60%),
    radial-gradient(12px 12px at 55% 30%, rgba(92,200,255,.90), transparent 60%),
    rgba(255,255,255,.04);
}
.tile--img{
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  transition: transform .14s ease, border-color .14s ease, filter .14s ease;
  filter: saturate(1.03) contrast(1.03);
  box-shadow:
    0 14px 30px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.10);
  position: relative;
}
.tile--img:hover{
  transform: translateY(-2px) scale(1.01);
  border-color: rgba(255,255,255,.22);
}
.tile--img:active{ transform: translateY(0px); }
.tile--img img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .18s ease;
}
.tile--img:hover img{ transform: scale(1.06); }

.tile--img::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.10), transparent 42%, rgba(0,0,0,.18));
  pointer-events: none;
  opacity: .55;
}

.section{
  padding: 28px 0 44px;
}
.section--tight{
  padding-top: 10px;
  padding-bottom: 26px;
}
.section--alt{
  padding-top: 44px;
  background: linear-gradient(180deg, rgba(255,255,255,.00), rgba(255,116,200,.05));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.section__head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.section__head h2{
  line-height: 1.2;
}
.section__sub{
  line-height: 1.35;
  max-width: 70ch;
}
.download{
  padding: 18px;
  background:
    radial-gradient(620px 260px at 18% 0%, rgba(255,116,200,.18), transparent 60%),
    radial-gradient(620px 260px at 82% 0%, rgba(181,140,255,.16), transparent 60%),
    rgba(255,255,255,.05);
}
.download__top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.download__thumb{
  width: 108px;
  height: 72px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  box-shadow:
    0 18px 44px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.08);
  flex: 0 0 auto;
}
.download__thumb img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.02);
}
.download__k{
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: 20px;
  font-family: var(--title);
}
.download__v{
  margin-top: 6px;
  color: rgba(255,255,255,.86);
  font-weight: 700;
}
.download__meta{
  margin-top: 6px;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}
.download__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.download__grid{
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 14px;
}
.download__item{
  grid-column: span 12;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.12);
  border-radius: 16px;
  padding: 12px 12px;
}
.download__label{
  color: rgba(255,255,255,.70);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 11px;
}
.download__value{
  margin-top: 6px;
  color: rgba(255,255,255,.86);
  font-weight: 650;
  line-height: 1.45;
  word-break: break-word;
}

.section__head h2{
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.section__sub{
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}

.mod{
  padding: 18px;
}
.mod--spaced{
  margin-top: 16px;
}
.mod__top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.mod__title{
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.mod__desc{
  margin: 8px 0 0;
  color: var(--muted);
  max-width: 66ch;
}

.badges{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.badge{
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  background: rgba(255,255,255,.06);
  font-weight: 700;
  font-size: 12px;
}
.badge:nth-child(1){ border-color: rgba(255,116,200,.34); }
.badge:nth-child(2){ border-color: rgba(181,140,255,.34); }
.badge:nth-child(3){ border-color: rgba(255,179,225,.34); }
.badge:nth-child(4){ border-color: rgba(124,255,203,.24); }

.mod__grid{
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.modMedia{
  margin-top: 12px;
}
.modMedia__img img{
  aspect-ratio: 2 / 1;
}

.modMedia{
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.modMedia__img{
  padding: 0;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,.03);
  cursor: zoom-in;
}
.modMedia__img img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.communityCta{
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.84);
}
.communityCta__copy{
  font-weight: 550;
  color: rgba(255,255,255,.78);
}
.mod__box{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.12);
  border-radius: var(--radius-sm);
  padding: 14px;
}
.mod__k{
  font-weight: 800;
  letter-spacing: -0.02em;
}
.mod__k--mt{
  margin-top: 14px;
}
.mod__v{
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 500;
}

.list{
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(255,255,255,.80);
}
.list li{ margin: 6px 0; }

.actions{
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.shots{
  margin-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 14px;
}
.shots__head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.shots__sub{
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}
.shots__grid{
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.shot{
  margin: 0;
  grid-column: span 6;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  transition: transform 180ms var(--ease-out), border-color 180ms var(--ease-out), filter 180ms var(--ease-out);
}
.shot img{
  cursor: zoom-in;
}
.shot img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  filter: saturate(1.05) contrast(1.02);
}
.shot:hover{
  border-color: rgba(255,255,255,.16);
  transform: translateY(-2px);
}

.lightbox{
  position: fixed;
  inset: 0;
  z-index: 50;
}
.lightbox[hidden]{ display: none; }
.lightbox__backdrop{
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(6px);
  cursor: zoom-out;
  animation: fadeIn 160ms var(--ease-out) both;
}
.lightbox__inner{
  position: relative;
  margin: 6vh auto;
  width: min(1100px, calc(100% - 36px));
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(16,10,28,.76);
  box-shadow: 0 30px 120px rgba(0,0,0,.65);
  overflow: hidden;
  animation: popIn 220ms var(--ease-out) both;
}
.lightbox__img{
  width: 100%;
  height: auto;
  display: block;
  max-height: 78vh;
  object-fit: contain;
  background: rgba(0,0,0,.35);
}
.lightbox__close{
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
  font-weight: 800;
  padding: 8px 10px;
  cursor: pointer;
}
.lightbox__close:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
}

@keyframes fadeIn{
  from{ opacity: 0; }
  to{ opacity: 1; }
}
@keyframes popIn{
  from{ opacity: 0; transform: translate3d(0, 10px, 0) scale(.985); }
  to{ opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

.install{
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.stats{
  padding: 16px 16px 14px;
}
.stats__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.stat{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.10);
  border-radius: 16px;
  padding: 12px 12px;
  overflow: hidden;
  position: relative;
}
.stat::after{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 180px at 20% 0%, rgba(255,116,200,.10), transparent 60%);
  pointer-events: none;
  opacity: .9;
}
.stat__k{
  color: rgba(255,255,255,.70);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 11px;
  position: relative;
  z-index: 1;
}
.stat__v{
  margin-top: 6px;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: 22px;
  position: relative;
  z-index: 1;
}
.stats__note{
  margin-top: 12px;
  color: rgba(255,255,255,.74);
  font-weight: 600;
  font-size: 12.5px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 12px;
}

.features{
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.feature{
  grid-column: span 6;
  padding: 16px;
  background: rgba(255,255,255,.04);
  transition: transform 180ms var(--ease-out), border-color 180ms var(--ease-out);
}
.feature:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.16);
}
.feature__k{
  font-weight: 900;
  letter-spacing: -0.02em;
}
.feature__v{
  margin-top: 8px;
  color: rgba(255,255,255,.76);
  font-weight: 600;
}

.section__head--small{
  margin-top: 18px;
  margin-bottom: 12px;
}
.section__head--small h3{
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.faq__list{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.quotes{
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.reviews{
  margin-top: 12px;
}
.reviews__marquee{
  display: flex;
  gap: 14px;
  overflow: hidden;
  padding: 6px 0 14px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.reviews__track{
  display: flex;
  gap: 12px;
  min-width: max-content;
  animation: reviewsScroll 38s linear infinite;
}
.reviews__marquee:hover .reviews__track{
  animation-play-state: paused;
}
@keyframes reviewsScroll{
  from{ transform: translate3d(0,0,0); }
  to{ transform: translate3d(-50%,0,0); }
}
.reviews__grid{
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.reviews__grid .quote{
  grid-column: span 4;
}
.quote{
  grid-column: span 4;
  padding: 16px;
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.10);
  transition: transform 180ms var(--ease-out), border-color 180ms var(--ease-out);
}
.quote:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.16);
}
.quote__text{
  font-weight: 750;
  letter-spacing: -0.01em;
  line-height: 1.45;
}
.quote__by{
  margin-top: 10px;
  color: rgba(255,255,255,.70);
  font-weight: 650;
  font-size: 13px;
}
.faqItem{
  padding: 14px;
  background: rgba(255,255,255,.04);
}
.faqItem__q{
  cursor: pointer;
  font-weight: 900;
  letter-spacing: -0.02em;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.faqItem__q::-webkit-details-marker{ display: none; }
.faqItem__q::after{
  content: "+";
  font-family: var(--mono);
  color: rgba(255,255,255,.70);
}
.faqItem[open] .faqItem__q::after{ content: "–"; }
.faqItem__a{
  margin-top: 10px;
  color: rgba(255,255,255,.76);
  font-weight: 600;
  line-height: 1.5;
}

.safety{
  padding: 18px;
}
.safety__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.safety__item{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.12);
  border-radius: var(--radius-sm);
  padding: 14px;
}
.safety__k{
  font-weight: 900;
  letter-spacing: -0.02em;
}
.safety__note{
  margin-top: 12px;
  color: rgba(255,255,255,.74);
  font-weight: 600;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 12px;
}
.install__card{
  padding: 16px;
  background: rgba(255,255,255,.03);
}
.install__title{
  font-weight: 900;
  letter-spacing: -0.02em;
}
.ol{
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(255,255,255,.80);
}
.ol li{ margin: 8px 0; }
.install__links{
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.toast{
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(82,255,168,.18);
  background: rgba(82,255,168,.10);
  color: rgba(255,255,255,.88);
  font-weight: 700;
  font-size: 12px;
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.toast.is-on{
  opacity: 1;
  transform: translateY(0px);
}

.steps{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}
.step{
  padding: 16px;
  background: rgba(255,255,255,.03);
}
.step__num{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: rgba(124,92,255,.18);
  border: 1px solid rgba(124,92,255,.28);
}
.step__title{
  margin-top: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.step__text{
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 500;
}
.mono{ font-family: var(--mono); }

.footer{
  padding: 22px 0 36px;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.14);
}
.footer__inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer__title{
  font-weight: 900;
  letter-spacing: -0.02em;
}
.footer__sub{
  margin-top: 4px;
  color: var(--muted);
  font-weight: 500;
}
.footer__links{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.78);
  font-weight: 600;
}

@media (max-width: 900px){
  .hero__inner{ grid-template-columns: 1fr; }
  .hero__art{ min-height: 260px; }
  .mod__grid{ grid-template-columns: 1fr; }
  .shots__grid{ grid-template-columns: 1fr; }
  .shot{ grid-column: span 12; }
  .install{ grid-template-columns: 1fr; }
  .trust__grid{ grid-template-columns: 1fr; }
  .safety__grid{ grid-template-columns: 1fr; }
  .stats__grid{ grid-template-columns: 1fr 1fr; }
  .feature{ grid-column: span 12; }
  .quote{ grid-column: span 12; }
  .reviews__grid .quote{ grid-column: span 12; }
  .modMedia{ grid-template-columns: 1fr; }
  .communityCta{ align-items: flex-start; }
  .heroFrame{ max-width: 100%; margin-left: 0; }
}

@media (prefers-reduced-motion: reduce){
  .reviews__track{ animation: none !important; }
  html{ scroll-behavior: auto; }
}

@media (prefers-reduced-motion: reduce){
  *{
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .sparkles{ display: none !important; }
  [data-reveal]{
    opacity: 1;
    transform: none;
    filter: none;
  }
}
