:root {
  color-scheme: dark;
  --bg: #050607;
  --panel: #0e1116;
  --line: rgba(255, 255, 255, .18);
  --muted: rgba(246, 250, 255, .72);
  --pink: #ff42c7;
  --orange: #ff7a30;
  --yellow: #ffe75a;
  --green: #74ff59;
  --cyan: #62f3ff;
  --violet: #a45cff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    linear-gradient(90deg, rgba(255,66,199,.12), transparent 18%, rgba(98,243,255,.10) 60%, transparent),
    var(--bg);
  color: #f8fbff;
}

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

.review-top {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 62px;
  padding: 10px clamp(14px, 3vw, 28px);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 6, 7, .86);
  backdrop-filter: blur(16px);
}

.review-brand {
  font-weight: 950;
}

.review-top nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.review-top nav a,
.demo-copy a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 950;
}

.review-hero {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: clamp(42px, 8vw, 92px) 0 24px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.review-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(48px, 9vw, 118px);
  line-height: .88;
  letter-spacing: 0;
}

.review-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.42;
}

.review-strip {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.review-strip a {
  min-height: 112px;
  padding: 14px;
  border-right: 1px solid var(--line);
  background: rgba(255,255,255,.045);
  font-weight: 900;
  line-height: 1.15;
}

.review-strip a:last-child {
  border-right: 0;
}

.review-strip span {
  display: block;
  margin-bottom: 22px;
  color: var(--cyan);
  font-size: 12px;
  letter-spacing: .1em;
}

.demo-panel {
  width: min(1440px, calc(100% - 28px));
  margin: 0 auto 42px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.02));
}

.demo-copy {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(260px, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: clamp(16px, 2.2vw, 24px);
  border-bottom: 1px solid var(--line);
}

.demo-copy h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 58px);
  line-height: .95;
}

.demo-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

iframe {
  display: block;
  width: 100%;
  height: min(820px, 86vh);
  border: 0;
  background: #050607;
}

#acqpr01 {
  border-color: rgba(98,243,255,.34);
}

#acqpr02 {
  border-color: rgba(255,66,199,.34);
}

#acqpr03 {
  border-color: rgba(255,231,90,.34);
}

#acqpr04 {
  border-color: rgba(255,122,48,.34);
}

#acqpr05 {
  border-color: rgba(164,92,255,.34);
}

@media (max-width: 900px) {
  .review-strip {
    grid-template-columns: 1fr;
  }

  .review-strip a {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .review-strip a:last-child {
    border-bottom: 0;
  }

  .review-strip span {
    margin-bottom: 5px;
  }

  .demo-copy {
    grid-template-columns: 1fr;
  }

  iframe {
    height: 760px;
  }
}

@media (max-width: 520px) {
  .review-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-top nav {
    justify-content: flex-start;
  }

  .review-top nav a {
    min-width: 44px;
  }

  iframe {
    height: 720px;
  }
}
