:root {
  --bg: #141414;
  --bg-deep: #0b0c0d;
  --surface: #1d1d1f;
  --surface-2: #252527;
  --surface-3: #2c2c2f;
  --text: #f8f6f2;
  --muted: #b9b6b2;
  --muted-2: #807d7b;
  --line: rgba(255, 255, 255, 0.13);
  --line-dark: rgba(15, 15, 16, 0.14);
  --primary: #ff2d46;
  --primary-dark: #d82039;
  --gold: #f5bd57;
  --orange: #ff6b35;
  --teal: #42c4c9;
  --green: #57c995;
  --container: 1180px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

body.modal-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(245, 189, 87, 0.9);
  outline-offset: 4px;
}

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 16px;
  padding: 10px 14px;
  border-radius: 5px;
  background: var(--gold);
  color: #171414;
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  right: 0;
  left: 0;
  padding-top: env(safe-area-inset-top);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(14, 14, 15, 0.86);
  border-color: var(--line);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-word {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-word > span {
  color: var(--primary);
}

.logo-mark {
  position: relative;
  display: inline-grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 8px 8px 8px 3px;
  background: var(--primary);
  box-shadow: 4px 5px 0 rgba(255, 107, 53, 0.38);
  transform: rotate(-7deg);
}

.logo-mark::before,
.logo-mark::after,
.logo-mark > span {
  position: absolute;
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff6ee;
  content: "";
  transform: rotate(7deg);
}

.logo-mark::before {
  top: 8px;
  left: 8px;
}

.logo-mark::after {
  top: 8px;
  right: 8px;
}

.logo-mark > span {
  bottom: 7px;
  left: 12px;
  width: 7px;
  height: 4px;
  border-radius: 0 0 8px 8px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  margin-right: 4px;
}

.desktop-nav a,
.mobile-nav a:not(.button) {
  position: relative;
  color: rgba(248, 246, 242, 0.72);
  font-size: 14px;
  font-weight: 600;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--primary);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.mobile-nav a:not(.button):hover {
  color: #fff;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.4;
}

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

.button-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 11px 25px rgba(255, 45, 70, 0.24);
}

.button-primary:hover {
  background: #ff4058;
  box-shadow: 0 15px 30px rgba(255, 45, 70, 0.3);
}

.button-outline {
  min-height: 42px;
  padding: 0 15px;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.button-outline:hover {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.1);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.88);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.08);
}

.button-light {
  background: #fff6ee;
  color: #2a1815;
  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.2);
}

.button-light:hover {
  background: #fff;
}

.button-small {
  min-height: 40px;
  font-size: 13px;
}

.icon-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.icon-button:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.icon-button svg {
  width: 18px;
  height: 18px;
}

.menu-toggle {
  display: none;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 780px;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg-deep) url("assets/hero.png") 73% center / cover no-repeat;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 12, 13, 1) 0%, rgba(11, 12, 13, 0.97) 24%, rgba(11, 12, 13, 0.75) 48%, rgba(11, 12, 13, 0.22) 80%, rgba(11, 12, 13, 0.34) 100%);
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 35%;
  background: linear-gradient(0deg, var(--bg) 0%, rgba(20, 20, 20, 0) 100%);
  content: "";
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(116deg, transparent 42%, rgba(255, 45, 70, 0.04) 61%, rgba(66, 196, 201, 0.07) 100%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  min-height: 780px;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: 56px;
  padding-top: 76px;
  padding-bottom: 62px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 630px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.7px;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--primary);
}

.eyebrow-light {
  color: #ffd08c;
}

.eyebrow-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(255, 45, 70, 0.14);
}

.eyebrow-light .eyebrow-dot {
  box-shadow: 0 0 0 4px rgba(255, 208, 140, 0.14);
}

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

h1,
h2,
h3 {
  font-family: "Space Grotesk", Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: 76px;
  font-weight: 700;
  line-height: 0.99;
}

h1 em,
h2 em {
  color: var(--primary);
  font-style: normal;
}

.hero-lede {
  max-width: 500px;
  margin-bottom: 32px;
  color: rgba(248, 246, 242, 0.73);
  font-size: 18px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.78);
}

.hero-proof strong,
.hero-proof small {
  display: block;
}

.hero-proof strong {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.hero-proof small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.proof-stack {
  display: inline-flex;
  padding-left: 8px;
}

.proof-avatar {
  display: inline-grid;
  width: 30px;
  height: 30px;
  margin-left: -8px;
  place-items: center;
  border: 2px solid #171718;
  border-radius: 50%;
  color: #271617;
  font-size: 10px;
  font-weight: 800;
}

.proof-avatar-a {
  background: #f2bf9a;
}

.proof-avatar-b {
  background: #d58b62;
}

.proof-avatar-c {
  background: #f0c76a;
}

.hero-stage {
  position: relative;
  min-height: 500px;
}

.hero-ui-card {
  position: absolute;
  right: 3%;
  bottom: 22px;
  width: 282px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(20, 20, 21, 0.84);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(15px);
  transform: rotate(2deg);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease);
}

.hero-ui-card:hover {
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.6);
  transform: rotate(0deg) translateY(-5px);
}

.hero-ui-thumb {
  position: relative;
  height: 158px;
  background: linear-gradient(145deg, rgba(17, 17, 18, 0.08), rgba(17, 17, 18, 0.75)), url("assets/hero.png") 75% center / 240% auto no-repeat;
}

.live-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 4px;
  background: rgba(15, 15, 16, 0.55);
  color: rgba(255, 255, 255, 0.85);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.live-pill span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 45, 70, 0.2);
}

.play-fab {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  background: rgba(255, 45, 70, 0.92);
  color: #fff;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, background 180ms ease;
}

.play-fab:hover {
  background: #ff4058;
  transform: translate(-50%, -50%) scale(1.08);
}

.play-fab svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.hero-ui-body {
  padding: 15px 16px 14px;
}

.hero-ui-meta,
.hero-ui-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.52);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.1px;
}

.hero-ui-meta span:first-child {
  color: var(--gold);
}

.hero-ui-body h2 {
  margin: 8px 0 12px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
}

.progress-track {
  height: 3px;
  margin-bottom: 9px;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.18);
}

.progress-track span {
  display: block;
  width: 64%;
  height: 100%;
  background: var(--primary);
}

.hero-ui-foot {
  letter-spacing: 0;
  text-transform: none;
}

.hero-ui-foot svg {
  width: 14px;
  height: 14px;
}

.hero-note {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 5px;
  background: rgba(17, 17, 18, 0.72);
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 600;
  backdrop-filter: blur(12px);
}

.hero-note svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
}

.hero-note strong {
  color: #fff;
  font-weight: 700;
}

.hero-note-top {
  top: 19%;
  right: 14%;
}

.hero-note-bottom {
  bottom: 3%;
  left: 4%;
  border-color: rgba(255, 45, 70, 0.36);
}

.hero-note-bottom svg {
  color: var(--primary);
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 32px;
  left: max(24px, calc((100% - var(--container)) / 2));
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.scroll-cue svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  animation: cue-bounce 1.8s ease-in-out infinite;
}

@keyframes cue-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.mood-strip {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: #1a1718;
}

.mood-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 24px;
  padding: 17px 0;
  color: rgba(255, 255, 255, 0.64);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  animation: marquee 34s linear infinite;
}

.mood-track b {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section {
  padding: 116px 0;
}

.shows-section {
  background: #f3f0e9;
  color: #191819;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 44px;
}

.section-heading h2,
.why-copy h2,
.download-copy h2,
.faq-grid h2,
.reward-copy h2 {
  margin-bottom: 0;
  font-size: 54px;
  font-weight: 700;
  line-height: 1.02;
}

.section-heading h2 em,
.why-copy h2 em,
.download-copy h2 em,
.faq-grid h2 em {
  color: var(--primary);
}

.section-intro {
  max-width: 330px;
  margin: 0;
  color: #625f5d;
  font-size: 16px;
  line-height: 1.6;
}

.show-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 14px;
}

.show-card {
  position: relative;
  min-height: 252px;
  overflow: hidden;
  grid-column: span 3;
  border-radius: 8px;
  background: #252326 url("assets/hero.png") var(--position, 70% center) / 270% auto no-repeat;
  color: #fff;
  isolation: isolate;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}

.show-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 7, 8, 0.04) 20%, rgba(7, 7, 8, 0.17) 42%, rgba(7, 7, 8, 0.94) 100%);
  content: "";
}

.show-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.show-card:hover {
  box-shadow: 0 18px 30px rgba(33, 24, 22, 0.18);
  transform: translateY(-5px);
}

.show-card-wide {
  min-height: 430px;
  grid-column: span 6;
  background-size: 150% auto;
}

.show-card-tall {
  min-height: 430px;
  grid-column: span 3;
}

.show-card-short {
  min-height: 205px;
  grid-column: span 3;
}

.show-card-warm {
  background-color: #772d27;
  background-blend-mode: soft-light;
}

.show-card-gold {
  background-color: #7b5421;
  background-blend-mode: multiply;
}

.show-card-teal {
  background-color: #174d52;
  background-blend-mode: soft-light;
}

.show-card-content {
  position: absolute;
  right: 22px;
  bottom: 21px;
  left: 22px;
}

.show-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 12px;
}

.show-card-tags span {
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 3px;
  background: rgba(12, 12, 13, 0.32);
  color: rgba(255, 255, 255, 0.82);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  backdrop-filter: blur(5px);
}

.show-card h3 {
  max-width: 270px;
  margin-bottom: 5px;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.05;
}

.show-card-short h3 {
  font-size: 21px;
}

.show-card p {
  max-width: 250px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.card-play {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 36px;
  height: 36px;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 45, 70, 0.94);
}

.card-play:hover {
  border-color: #fff;
  background: var(--primary);
}

.card-play svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.catalog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
}

.catalog-footer p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #6f6a66;
  font-size: 13px;
}

.catalog-footer p svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}

.text-link svg {
  width: 16px;
  height: 16px;
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translate(2px, -2px);
}

.why-section {
  overflow: hidden;
  background: var(--bg);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(310px, 0.83fr) minmax(0, 1fr);
  align-items: center;
  gap: 110px;
}

.phone-wrap {
  position: relative;
  display: flex;
  min-height: 600px;
  align-items: center;
  justify-content: center;
}

.phone-glow {
  position: absolute;
  width: 310px;
  height: 390px;
  border-radius: 38%;
  background: rgba(255, 45, 70, 0.12);
  filter: blur(50px);
  transform: rotate(-14deg);
}

.phone {
  position: relative;
  z-index: 1;
  width: 296px;
  height: 602px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 36px;
  background: #08090a;
  box-shadow: 22px 26px 60px rgba(0, 0, 0, 0.52), -10px 12px 32px rgba(255, 45, 70, 0.14);
  transform: rotate(-5deg);
  transition: transform 300ms var(--ease);
}

.phone:hover {
  transform: rotate(-2deg) translateY(-7px);
}

.phone::before {
  position: absolute;
  z-index: 3;
  top: 110px;
  left: -4px;
  width: 3px;
  height: 54px;
  border-radius: 2px 0 0 2px;
  background: #36383a;
  content: "";
}

.phone::after {
  position: absolute;
  z-index: 3;
  top: 161px;
  right: -4px;
  width: 3px;
  height: 74px;
  border-radius: 0 2px 2px 0;
  background: #36383a;
  content: "";
}

.phone-speaker {
  position: absolute;
  z-index: 4;
  top: 16px;
  left: 50%;
  width: 72px;
  height: 18px;
  border-radius: 13px;
  background: #050506;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 29px;
  background: #1a1b1d;
}

.screen-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 31px 17px 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}

.screen-top > svg {
  width: 16px;
  height: 16px;
}

.screen-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.screen-mark {
  width: 14px;
  height: 14px;
  border-radius: 4px 4px 4px 1px;
  background: var(--primary);
  transform: rotate(-7deg);
}

.screen-hero {
  position: relative;
  display: flex;
  height: 228px;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 11px;
  padding: 16px;
  overflow: hidden;
  border-radius: 9px;
  background: linear-gradient(180deg, rgba(15, 15, 16, 0.03), rgba(15, 15, 16, 0.9)), url("assets/hero.png") 73% center / 245% auto no-repeat;
}

.screen-hero-copy {
  position: relative;
  z-index: 1;
}

.screen-hero-copy small,
.screen-hero-copy strong,
.screen-hero-copy span {
  display: block;
}

.screen-hero-copy small {
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.screen-hero-copy strong {
  max-width: 140px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.05;
}

.screen-hero-copy span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 9px;
}

.screen-play {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
}

.screen-play svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.screen-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 17px 11px;
  color: #fff;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.screen-section-title svg {
  width: 15px;
  height: 15px;
  color: var(--primary);
}

.screen-row {
  display: flex;
  gap: 9px;
  padding: 0 17px;
}

.screen-poster {
  display: flex;
  width: 70px;
  height: 96px;
  align-items: flex-end;
  padding: 8px;
  overflow: hidden;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.05;
}

.poster-one { background: linear-gradient(165deg, rgba(236, 112, 62, 0.2), rgba(24, 25, 29, 0.92)), url("assets/hero.png") 90% center / 360% auto no-repeat; }
.poster-two { background: linear-gradient(165deg, rgba(236, 190, 77, 0.2), rgba(24, 25, 29, 0.95)), url("assets/hero.png") 78% center / 360% auto no-repeat; }
.poster-three { background: linear-gradient(165deg, rgba(64, 191, 197, 0.2), rgba(24, 25, 29, 0.95)), url("assets/hero.png") 68% center / 360% auto no-repeat; }

.screen-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-around;
  padding: 12px 6px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(21, 22, 24, 0.95);
}

.screen-nav span {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
}

.screen-nav svg {
  width: 15px;
  height: 15px;
}

.screen-nav .active {
  color: var(--primary);
}

.why-copy .section-intro {
  margin-top: 25px;
  margin-bottom: 32px;
  color: var(--muted);
}

.feature-list {
  border-top: 1px solid var(--line);
}

.feature-item {
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr);
  gap: 15px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.feature-number {
  color: var(--primary);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.feature-item h3 {
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 600;
}

.feature-item p {
  max-width: 450px;
  margin-bottom: 0;
  color: var(--muted-2);
  font-size: 14px;
  line-height: 1.5;
}

.why-copy > .text-link {
  margin-top: 28px;
}

.reward-band {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 208, 140, 0.2);
  border-bottom: 1px solid rgba(255, 208, 140, 0.2);
  background: #3a1f20;
}

.reward-band::before {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(128deg, transparent 0 23px, rgba(255, 255, 255, 0.025) 23px 24px);
  content: "";
  pointer-events: none;
}

.reward-grid {
  position: relative;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) auto;
  align-items: center;
  gap: 27px;
  padding-top: 55px;
  padding-bottom: 55px;
}

.reward-emblem {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(255, 217, 158, 0.52);
  border-radius: 50%;
  background: rgba(245, 189, 87, 0.14);
  color: var(--gold);
}

.reward-emblem svg {
  width: 29px;
  height: 29px;
}

.reward-emblem span {
  position: absolute;
  margin: 38px 0 0 38px;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border: 2px solid #3a1f20;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.reward-copy h2 {
  color: #fff;
}

.reward-copy h2 em {
  color: #ffd08c;
}

.reward-copy p:last-child {
  max-width: 530px;
  margin: 17px 0 0;
  color: rgba(255, 243, 224, 0.7);
}

.download-section {
  background: #f3f0e9;
  color: #191819;
}

.download-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  align-items: center;
  gap: 88px;
}

.download-copy .section-intro {
  margin-top: 24px;
  color: #625f5d;
}

.download-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 27px;
  color: #4c4946;
  font-size: 13px;
  font-weight: 600;
}

.download-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.download-points svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

.download-panel {
  padding: 26px;
  border: 1px solid rgba(23, 22, 23, 0.15);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 22px 60px rgba(55, 44, 31, 0.1);
}

.download-panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.app-badge {
  display: inline-grid;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 12px 12px 12px 4px;
  background: var(--primary);
  box-shadow: 4px 5px 0 rgba(255, 107, 53, 0.28);
  transform: rotate(-6deg);
}

.app-badge span {
  width: 18px;
  height: 10px;
  border: 3px solid #fff4ea;
  border-top: 0;
  border-radius: 0 0 13px 13px;
  transform: rotate(6deg);
}

.download-panel-head strong,
.download-panel-head small {
  display: block;
}

.download-panel-head strong {
  color: #191819;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 19px;
}

.download-panel-head small {
  margin-top: 2px;
  color: #827d77;
  font-size: 12px;
}

.platform-badge {
  margin-left: auto;
  padding: 6px 8px;
  border: 1px solid rgba(23, 22, 23, 0.14);
  border-radius: 4px;
  color: #6e6964;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.download-divider {
  height: 1px;
  margin: 24px 0 19px;
  background: rgba(23, 22, 23, 0.12);
}

.download-panel-label {
  margin-bottom: 12px;
  color: #5e5953;
  font-size: 13px;
  font-weight: 700;
}

.store-buttons {
  display: grid;
  gap: 9px;
}

.store-button {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 11px;
  padding: 10px 13px;
  border: 1px solid rgba(23, 22, 23, 0.2);
  border-radius: 6px;
  background: #19191a;
  color: #fff;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.store-button:hover {
  border-color: var(--primary);
  background: #252527;
  transform: translateX(3px);
}

.store-icon {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 5px;
}

.store-icon svg {
  width: 16px;
  height: 16px;
}

.store-button span:nth-child(2) {
  min-width: 0;
}

.store-button small,
.store-button strong {
  display: block;
}

.store-button small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.2;
}

.store-button strong {
  margin-top: 2px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.1;
}

.store-arrow {
  width: 16px;
  height: 16px;
  margin-left: auto;
  color: var(--gold);
}

.store-note {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 16px 0 0;
  color: #817b73;
  font-size: 11px;
}

.store-note svg {
  width: 15px;
  height: 15px;
  color: var(--green);
}

.faq-section {
  background: var(--bg);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 110px;
}

.faq-grid .section-intro {
  margin-top: 25px;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item > button {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
}

.faq-item > button svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  color: var(--primary);
  transition: transform 200ms ease;
}

.faq-item.is-open > button svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-width: 610px;
  padding: 0 40px 22px 0;
  color: var(--muted);
  font-size: 14px;
}

.faq-answer p {
  margin-bottom: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #0f1011;
}

.footer-top {
  display: flex;
  min-height: 110px;
  align-items: center;
  gap: 24px;
}

.footer-top p {
  margin: 0 0 0 auto;
  color: var(--muted-2);
  font-size: 13px;
}

.footer-socials {
  display: flex;
  gap: 8px;
  margin-left: 20px;
}

.footer-socials a {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.66);
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.footer-socials a:hover {
  border-color: var(--primary);
  background: rgba(255, 45, 70, 0.1);
  color: #fff;
}

.footer-socials svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #6f6d6b;
  font-size: 11px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a:hover {
  color: #fff;
}

.toast {
  position: fixed;
  z-index: 80;
  right: 20px;
  bottom: 20px;
  max-width: min(360px, calc(100% - 40px));
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: #252527;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 13px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.preview-modal[hidden],
.toast[hidden] {
  display: none;
}

.preview-modal {
  position: fixed;
  z-index: 70;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.preview-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 7, 0.8);
  backdrop-filter: blur(9px);
}

.preview-dialog {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  padding: 20px 22px 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: #1d1d1f;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.preview-close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(15, 15, 16, 0.52);
}

.preview-art {
  display: grid;
  height: 210px;
  margin: -20px -22px 24px;
  place-items: center;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(150deg, rgba(15, 15, 16, 0.1), rgba(15, 15, 16, 0.8)), url("assets/hero.png") 76% center / 185% auto no-repeat;
}

.preview-play {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: var(--primary);
}

.preview-play svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.preview-dialog h2 {
  margin-bottom: 11px;
  font-size: 28px;
  line-height: 1.08;
}

.preview-dialog > p:not(.eyebrow) {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms var(--ease), transform 650ms var(--ease);
}

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

[data-reveal-delay="100"] { transition-delay: 100ms; }
[data-reveal-delay="120"] { transition-delay: 120ms; }

@media (max-width: 1000px) {
  .desktop-nav {
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 0.78fr);
    gap: 32px;
  }

  h1 {
    font-size: 66px;
  }

  .hero-ui-card {
    right: 0;
  }

  .hero-note-top {
    right: 2%;
  }

  .why-grid,
  .faq-grid {
    gap: 70px;
  }

  .download-grid {
    gap: 54px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .desktop-nav,
  .nav-actions .button-outline {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .mobile-nav {
    display: grid;
    gap: 17px;
    padding: 0 18px 22px;
    border-top: 1px solid var(--line);
    background: rgba(14, 14, 15, 0.96);
    backdrop-filter: blur(17px);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav a:not(.button) {
    padding: 3px 0;
  }

  .mobile-nav .button {
    width: 100%;
    margin-top: 2px;
  }

  .hero {
    min-height: 780px;
    align-items: flex-start;
    background-position: 69% center;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(11, 12, 13, 0.99) 0%, rgba(11, 12, 13, 0.9) 32%, rgba(11, 12, 13, 0.42) 73%, rgba(11, 12, 13, 0.72) 100%);
  }

  .hero-grid {
    display: block;
    min-height: 780px;
    padding-top: 140px;
  }

  .hero-copy {
    max-width: 620px;
  }

  .hero-stage {
    min-height: 250px;
    margin-top: 8px;
  }

  .hero-ui-card {
    right: 1%;
    bottom: 0;
  }

  .hero-note-top {
    top: 12px;
    left: 2%;
    right: auto;
  }

  .hero-note-bottom {
    bottom: 25px;
    left: 1%;
  }

  .scroll-cue {
    bottom: 20px;
    left: 18px;
  }

  .section {
    padding: 85px 0;
  }

  .section-heading,
  .download-grid,
  .faq-grid {
    display: block;
  }

  .section-heading h2,
  .why-copy h2,
  .download-copy h2,
  .faq-grid h2,
  .reward-copy h2 {
    font-size: 46px;
  }

  .section-heading .section-intro {
    margin-top: 20px;
  }

  .show-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .show-card-wide,
  .show-card-tall {
    min-height: 360px;
    grid-column: span 2;
  }

  .show-card-short {
    min-height: 250px;
    grid-column: span 1;
  }

  .why-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
  }

  .why-copy .section-intro {
    max-width: 520px;
  }

  .phone-wrap {
    min-height: 560px;
    width: 100%;
  }

  .reward-grid {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 18px;
  }

  .reward-emblem {
    width: 60px;
    height: 60px;
  }

  .reward-emblem span {
    margin: 32px 0 0 32px;
  }

  .reward-grid .button {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 6px;
  }

  .download-grid {
    display: block;
  }

  .download-panel {
    max-width: 520px;
    margin-top: 35px;
  }

  .faq-grid > :first-child {
    margin-bottom: 37px;
  }

  .footer-top {
    flex-wrap: wrap;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .footer-top p {
    width: 100%;
    margin: 0;
  }

  .footer-socials {
    margin-left: auto;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .nav-wrap {
    min-height: 68px;
    padding-right: max(0px, env(safe-area-inset-right));
    padding-left: max(0px, env(safe-area-inset-left));
  }

  .brand-word {
    font-size: 20px;
  }

  .hero {
    min-height: 775px;
    background-position: 67% center;
  }

  .hero-grid {
    min-height: 775px;
    padding-top: 118px;
    padding-bottom: 40px;
  }

  h1 {
    margin-bottom: 19px;
    font-size: 52px;
  }

  .hero-lede {
    max-width: 420px;
    margin-bottom: 25px;
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    max-width: 330px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    margin-top: 24px;
  }

  .hero-stage {
    min-height: 215px;
    margin-top: 11px;
  }

  .hero-ui-card {
    right: 2px;
    width: 235px;
    transform: rotate(1deg);
  }

  .hero-ui-thumb {
    height: 126px;
  }

  .hero-ui-body {
    padding: 12px 13px;
  }

  .hero-ui-body h2 {
    font-size: 15px;
  }

  .hero-note {
    padding: 8px 9px;
    font-size: 10px;
  }

  .hero-note-top {
    top: 0;
    left: 0;
  }

  .hero-note-bottom {
    bottom: 10px;
    left: 0;
  }

  .scroll-cue {
    display: none;
  }

  .mood-track {
    gap: 18px;
    font-size: 11px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading h2,
  .why-copy h2,
  .download-copy h2,
  .faq-grid h2,
  .reward-copy h2 {
    font-size: 39px;
  }

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

  .show-grid {
    gap: 10px;
  }

  .show-card-wide,
  .show-card-tall {
    min-height: 300px;
  }

  .show-card-short {
    min-height: 218px;
  }

  .show-card-content {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .show-card h3 {
    font-size: 21px;
  }

  .show-card-short h3 {
    font-size: 17px;
  }

  .show-card p {
    max-width: 170px;
    font-size: 11px;
  }

  .show-card-tags {
    gap: 4px;
    margin-bottom: 8px;
  }

  .show-card-tags span {
    padding: 4px 5px;
    font-size: 8px;
  }

  .card-play {
    width: 32px;
    height: 32px;
  }

  .catalog-footer {
    display: block;
    margin-top: 17px;
  }

  .catalog-footer .text-link {
    margin-top: 12px;
  }

  .phone {
    width: 264px;
    height: 536px;
    border-radius: 32px;
  }

  .phone-screen {
    border-radius: 25px;
  }

  .screen-hero {
    height: 197px;
  }

  .screen-poster {
    width: 61px;
    height: 84px;
    font-size: 9px;
  }

  .screen-nav span {
    font-size: 7px;
  }

  .reward-grid {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .reward-copy p:last-child {
    margin-top: 12px;
    font-size: 14px;
  }

  .reward-grid .button {
    width: 100%;
  }

  .download-panel {
    padding: 19px;
  }

  .platform-badge {
    display: none;
  }

  .store-button strong {
    font-size: 16px;
  }

  .faq-item > button {
    min-height: 66px;
    font-size: 16px;
  }

  .faq-answer {
    padding-right: 18px;
    font-size: 13px;
  }

  .footer-bottom {
    display: block;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .footer-links {
    gap: 14px;
    margin-top: 10px;
  }

  .preview-dialog {
    padding-right: 18px;
    padding-left: 18px;
  }

  .preview-art {
    margin-right: -18px;
    margin-left: -18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* App-first refresh: the landing page uses the supplied product icon and app capabilities. */
.logo-image {
  display: block;
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 4px 5px 0 rgba(255, 107, 53, 0.32);
  transform: rotate(-5deg);
}

h1 em,
h2 em,
h3 em {
  color: inherit;
  font-style: normal;
}

.hero-ui-thumb {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(18, 19, 22, 0.12), rgba(18, 19, 22, 0.86)), url("assets/sisireel-app-icon.png") center / 86px no-repeat, repeating-linear-gradient(135deg, #681524 0 20px, #9f182d 20px 40px, #3b1620 40px 60px);
}

.app-symbol {
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.36);
  overflow: hidden;
}

.app-symbol img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-ui-meta span:first-child {
  color: rgba(255, 255, 255, 0.86);
}

.hero-ui-meta span:last-child {
  color: var(--gold);
}

.features-section {
  background: #f3f0e9;
  color: #191819;
}

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

.app-feature-card {
  position: relative;
  display: flex;
  min-height: 382px;
  flex-direction: column;
  overflow: hidden;
  padding: 24px 24px 154px;
  border: 1px solid rgba(22, 20, 22, 0.12);
  border-radius: 8px;
  isolation: isolate;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}

.app-feature-card:hover {
  box-shadow: 0 18px 32px rgba(31, 23, 21, 0.13);
  transform: translateY(-5px);
}

.app-feature-card-primary {
  border-color: rgba(255, 45, 70, 0.56);
  background: var(--primary);
  color: #fff;
}

.app-feature-card-dark {
  border-color: rgba(255, 255, 255, 0.13);
  background: #1d1d1f;
  color: #fff;
}

.app-feature-card-gold {
  border-color: rgba(177, 124, 36, 0.4);
  background: #f5bd57;
  color: #241b16;
}

.feature-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feature-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 7px;
  opacity: 0.9;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
}

.feature-index {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  opacity: 0.6;
}

.feature-card-copy {
  position: relative;
  z-index: 1;
  max-width: 280px;
  margin-top: 24px;
  padding-top: 0;
}

.feature-card-copy h3 {
  margin-bottom: 10px;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.08;
}

.feature-card-copy p {
  margin-bottom: 0;
  color: currentColor;
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.72;
}

.feature-visual {
  position: absolute;
  z-index: -1;
  right: 23px;
  bottom: 22px;
  left: 23px;
  height: 102px;
  border: 1px solid currentColor;
  border-radius: 8px;
  opacity: 0.16;
}

.feature-visual-feed {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 7px;
  padding: 11px;
}

.feature-visual-feed span {
  display: block;
  border-radius: 4px;
  background: currentColor;
}

.feature-visual-feed span:first-child {
  grid-row: span 2;
  opacity: 0.95;
}

.feature-visual-feed span:nth-child(2) { opacity: 0.65; }
.feature-visual-feed span:nth-child(3) { opacity: 0.42; }

.feature-visual-feed b {
  display: block;
  grid-column: 2 / -1;
  border-radius: 4px;
  background: currentColor;
  opacity: 0.5;
}

.feature-visual-list {
  display: grid;
  gap: 9px;
  padding: 13px;
}

.feature-visual-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 23px;
  padding: 0 9px;
  border-radius: 4px;
  background: currentColor;
}

.feature-visual-list span:nth-child(2) { opacity: 0.75; }
.feature-visual-list span:nth-child(3) { opacity: 0.52; }

.feature-visual-list svg {
  width: 12px;
  height: 12px;
  color: #1d1d1f;
  opacity: 0.9;
}

.feature-visual-reward {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 16px;
}

.feature-visual-reward strong {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 42px;
  line-height: 1;
}

.feature-visual-reward span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.screen-brand img {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  object-fit: cover;
}

.screen-hero {
  background: linear-gradient(180deg, rgba(15, 15, 16, 0.08), rgba(15, 15, 16, 0.88)), url("assets/sisireel-app-icon.png") center / 92px no-repeat, linear-gradient(145deg, #471520, #a01b32 54%, #1e1d24);
}

.screen-hero-copy strong {
  max-width: 165px;
}

.screen-play {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
}

.screen-play svg {
  width: 15px;
  height: 15px;
}

.screen-poster {
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px;
  text-align: center;
}

.screen-poster svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

.screen-poster span {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 9px;
  font-weight: 600;
}

.poster-one { background: linear-gradient(155deg, #ef4b5d, #6f1728); }
.poster-two { background: linear-gradient(155deg, #f4ca73, #a8621d); }
.poster-three { background: linear-gradient(155deg, #54c8c9, #1d5962); }

.app-badge {
  overflow: hidden;
}

.app-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 820px) {
  .app-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .app-feature-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .app-feature-grid {
    grid-template-columns: 1fr;
  }

  .app-feature-card:last-child {
    grid-column: auto;
  }

  .app-feature-card {
    min-height: 330px;
    padding-bottom: 136px;
  }

  .feature-card-copy h3 {
    font-size: 23px;
  }
}

/* Keep the first viewport filled; the next section should start below the fold. */
.hero,
.hero-grid {
  min-height: 100svh;
}

@supports (height: 100dvh) {
  .hero,
  .hero-grid {
    min-height: 100dvh;
  }
}
