:root {
  color-scheme: dark;
  --ink: #0b0b0f;
  --white: #f9f9fb;
  --dim: #72727d;
  --red: #e50914;
  --red-hot: #ff3b45;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --easing: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: #09090d;
  color: var(--white);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }

/* Available only to keyboard users, so it does not alter the rendered design. */
.skip-link {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: .8rem;
  font-weight: 700;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
:where(a, button):focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
  box-shadow: 0 0 0 7px rgba(229, 9, 20, .52);
}
::selection { color: #fff; background: #b50710; }

/* Hero backdrop */
.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(760px, 100svh, 910px);
  overflow: hidden;
  background:
    radial-gradient(circle at 77% 44%, rgba(194, 7, 20, .18), transparent 24%),
    radial-gradient(circle at 13% 94%, rgba(139, 10, 20, .13), transparent 23%),
    linear-gradient(112deg, #09090e 0%, #0b0b10 52%, #121015 100%);
}
.container { width: min(1220px, calc(100% - 64px)); margin: 0 auto; }
.cinema-noise {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .032;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.95'/%3E%3C/svg%3E");
}
.ambient { position: absolute; z-index: -1; border-radius: 50%; filter: blur(15px); pointer-events: none; }
.ambient--one {
  top: -20rem;
  right: -15rem;
  width: 51rem;
  height: 51rem;
  opacity: .47;
  background: radial-gradient(circle, rgba(229, 9, 20, .33), rgba(229, 9, 20, .09) 35%, transparent 67%);
}
.ambient--two {
  bottom: -26rem;
  left: 15%;
  width: 34rem;
  height: 34rem;
  opacity: .23;
  background: radial-gradient(circle, #7d0911, transparent 67%);
}
.light-rays {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 7%;
  width: 45vw;
  height: 100%;
  opacity: .23;
  background: linear-gradient(110deg, transparent 4%, rgba(255, 56, 65, .02) 20%, rgba(255, 64, 70, .17) 49%, rgba(255, 44, 49, .01) 50%, transparent 75%);
  transform: skewX(-18deg);
  transform-origin: top;
}
.particles { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.particles i {
  position: absolute;
  top: var(--y);
  left: var(--x);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: rgba(255, 231, 211, .85);
  box-shadow: 0 0 9px 2px rgba(255, 98, 70, .25);
  animation: particle 7s ease-in-out var(--delay) infinite;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 15px;
  background: linear-gradient(110deg, rgba(25, 25, 31, .72), rgba(18, 18, 24, .45));
  box-shadow: 0 12px 42px rgba(0, 0, 0, .12), inset 0 1px 0 rgba(255, 255, 255, .05);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 1.28rem; font-weight: 760; letter-spacing: -.06em; }
.brand > span:last-child > span { color: var(--red); }
.brand-mark {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 19px;
  padding: 0 5px;
  border: 1px solid rgba(229, 9, 20, .8);
  border-radius: 4px;
  box-shadow: 0 0 18px rgba(229, 9, 20, .17);
  transform: skewX(-9deg);
}
.brand-mark i { display: block; width: 2px; border-radius: 2px; background: var(--red); }
.brand-mark i:nth-child(1), .brand-mark i:nth-child(3) { height: 7px; }
.brand-mark i:nth-child(2) { height: 11px; }
.nav-actions { display: flex; align-items: center; gap: 26px; color: #dbdbe0; font-size: .79rem; font-weight: 600; }
.nav-link { position: relative; padding: 5px 1px; color: #a5a5ae; transition: color .25s ease; }
.nav-link:hover { color: #fff; }
.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--red-hot);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--easing);
}
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-signin {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 9px;
  background: rgba(255, 255, 255, .025);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
  transition: transform .25s var(--easing), background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.nav-signin:hover {
  border-color: rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .095);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .17), inset 0 1px 0 rgba(255, 255, 255, .08);
  transform: translateY(-2px);
}
.nav-signin span { color: var(--red-hot); }

/* Hero content */
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  min-height: 680px;
  padding: 62px 0 96px;
}
.hero-copy { position: relative; z-index: 1; max-width: 605px; padding-bottom: 6px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 23px;
  color: #e3e3e7;
  font-size: .69rem;
  font-weight: 750;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red-hot);
  box-shadow: 0 0 0 4px rgba(229, 9, 20, .12), 0 0 13px var(--red);
  animation: pulse-dot 2.5s ease-in-out infinite;
}
h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(3.2rem, 5.3vw, 5.15rem);
  font-weight: 760;
  line-height: .96;
  letter-spacing: -.071em;
  text-shadow: 0 10px 35px rgba(0, 0, 0, .23);
  text-wrap: balance;
}
h1 em { color: var(--red-hot); font-style: normal; }
.hero-description {
  max-width: 490px;
  margin: 28px 0 0;
  color: #aaaab5;
  font-size: 1.02rem;
  line-height: 1.74;
  letter-spacing: -.012em;
}
.hero-actions { position: relative; display: flex; flex-wrap: wrap; gap: 13px; margin-top: 37px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 21px;
  border-radius: 12px;
  font-size: .88rem;
  font-weight: 730;
  letter-spacing: -.018em;
  transition: transform .3s var(--easing), box-shadow .3s var(--easing), background .3s ease, border-color .3s ease;
}
.button:hover { transform: translateY(-3px) scale(1.015); }
.button:active, .nav-signin:active { transform: translateY(0) scale(.985); }
.button--primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(132deg, #f4202b 0%, #e50914 47%, #bf020c 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(229, 9, 20, .25), inset 0 1px 0 rgba(255, 255, 255, .24);
}
.button--primary::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(108deg, transparent 20%, rgba(255, 255, 255, .18) 50%, transparent 80%);
  transform: translateX(-130%);
  transition: transform .55s ease;
}
.button--primary:hover {
  box-shadow: 0 19px 38px rgba(229, 9, 20, .36), 0 0 0 5px rgba(229, 9, 20, .1), inset 0 1px 0 rgba(255, 255, 255, .3);
}
.button--primary:hover::after { transform: translateX(130%); }
.button--primary span, .button--primary b { position: relative; z-index: 1; }
.button--primary b { font-size: 1.28rem; font-weight: 400; line-height: 0; }
.button--primary:focus-visible { box-shadow: 0 19px 38px rgba(229, 9, 20, .36), 0 0 0 5px rgba(229, 9, 20, .22), 0 0 0 8px #09090d; }
.button--primary.is-loading { pointer-events: none; cursor: wait; }
.button--primary.is-loading b { width: 16px; height: 16px; border: 2px solid rgba(255, 255, 255, .4); border-right-color: #fff; border-radius: 50%; color: transparent; font-size: 0; animation: cta-spin .7s linear infinite; }
.button--primary.has-attention { animation: cta-attention 1.1s var(--easing) 1; }
.button--secondary {
  border: 1px solid rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .045);
  color: #e8e8eb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
  backdrop-filter: blur(10px);
}
.button--secondary:hover {
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .095);
  box-shadow: 0 15px 30px rgba(0, 0, 0, .2);
}
.play-icon {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  padding-left: 2px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  color: var(--red-hot);
  font-size: .52rem;
}
.cta-reassurance {
  position: absolute;
  top: calc(100% + 9px);
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  color: #9898a3;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.cta-reassurance__check { color: var(--red-hot); font-size: .7rem; }
.benefits { display: flex; flex-wrap: wrap; gap: 9px; max-width: 500px; margin: 32px 0 0; padding: 0; color: #cacad0; font-size: .74rem; font-weight: 600; list-style: none; }
.benefits li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 31px;
  padding: 0 10px 0 8px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 8px;
  background: rgba(255, 255, 255, .026);
  transition: transform .25s var(--easing), background .25s ease, border-color .25s ease;
}
.benefits li:hover { border-color: rgba(229, 9, 20, .3); background: rgba(229, 9, 20, .07); transform: translateY(-2px); }
.check {
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border: 1px solid rgba(229, 9, 20, .46);
  border-radius: 50%;
  background: rgba(229, 9, 20, .07);
  color: var(--red-hot);
  font-size: .63rem;
}
.viewer-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin-top: 34px;
  padding: 8px 12px 8px 9px;
  border: 1px solid rgba(255, 255, 255, .065);
  border-radius: 11px;
  background: rgba(255, 255, 255, .025);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}
.avatar-stack { display: flex; padding-left: 9px; }
.avatar-stack i {
  display: block;
  width: 26px;
  height: 26px;
  margin-left: -9px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 30%, #e7b796 0 17%, transparent 18%), linear-gradient(145deg, #372d38 42%, #ba6c55 43% 56%, #242431 57%);
}
.avatar-stack i:nth-child(2) { background: radial-gradient(circle at 50% 28%, #a66b48 0 17%, transparent 18%), linear-gradient(135deg, #1e1d29 42%, #534c6f 43% 56%, #191721 57%); }
.avatar-stack i:nth-child(3) { background: radial-gradient(circle at 50% 27%, #e7a77c 0 17%, transparent 18%), linear-gradient(135deg, #401e1d 42%, #e0aa6a 43% 56%, #2a2020 57%); }
.viewer-proof p { display: grid; gap: 2px; margin: 0; color: var(--dim); font-size: .68rem; }
.viewer-proof strong { color: #dedee3; font-size: .72rem; font-weight: 650; letter-spacing: -.01em; }

/* Phone preview */
.hero-visual {
  position: relative;
  display: grid;
  isolation: isolate;
  min-height: 560px;
  place-items: center;
  perspective: 1000px;
  transform: translate3d(var(--visual-x, 0), var(--visual-y, 0), 0);
  transition: transform .55s var(--easing);
}
.hero-visual::before {
  position: absolute;
  z-index: -1;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  content: "";
  opacity: .72;
  background: conic-gradient(from 165deg, transparent 0 16%, rgba(255, 60, 68, .08) 25%, rgba(229, 9, 20, .5) 43%, rgba(255, 126, 103, .17) 57%, transparent 72%);
  filter: blur(28px);
  animation: glow-orbit 9s linear infinite;
}
.hero-visual::after {
  position: absolute;
  z-index: -1;
  width: 465px;
  height: 465px;
  border: 1px solid rgba(255, 255, 255, .055);
  border-radius: 50%;
  content: "";
  box-shadow: inset 0 0 80px rgba(229, 9, 20, .05);
  transform: rotate(-17deg);
}
.phone { position: relative; z-index: 2; width: min(294px, 68vw); filter: drop-shadow(22px 33px 32px rgba(0, 0, 0, .56)); will-change: transform; animation: phone-float 6s ease-in-out infinite; }
.phone-bezel {
  position: relative;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 36px;
  background: linear-gradient(135deg, #676770 0%, #24242d 7%, #09090e 35%, #31313a 100%);
  box-shadow: 0 0 0 1px rgba(229, 9, 20, .08), inset 0 0 0 1px rgba(0, 0, 0, .7), inset 2px 2px 2px rgba(255, 255, 255, .12);
}
.phone-bezel::before, .phone-bezel::after { position: absolute; width: 3px; content: ""; background: #303038; }
.phone-bezel::before { top: 94px; right: -3px; height: 46px; border-radius: 0 3px 3px 0; }
.phone-bezel::after { top: 72px; left: -3px; height: 24px; border-radius: 3px 0 0 3px; }
.phone-island { position: absolute; z-index: 2; top: 14px; left: 50%; width: 83px; height: 20px; border-radius: 30px; background: #020204; transform: translateX(-50%); }
.app-screen { position: relative; min-height: 573px; overflow: hidden; border-radius: 29px; background: #121217; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .045); }
.app-topbar { display: flex; align-items: center; justify-content: space-between; height: 54px; padding: 14px 14px 2px; color: #f5f5f7; }
.app-logo { font-size: .63rem; font-weight: 800; letter-spacing: -.045em; }
.app-logo span { display: inline-grid; width: 13px; height: 13px; place-items: center; margin-right: 2px; border-radius: 3px; background: var(--red); color: #fff; font-size: .48rem; }
.search-button { display: grid; width: 25px; height: 25px; place-items: center; border-radius: 50%; background: #1d1d24; color: #fff; }
.search-button svg { width: 13px; fill: currentColor; }
.app-featured { position: relative; height: 185px; margin: 7px 9px 0; overflow: hidden; border-radius: 14px; background: #211312; }
.featured-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: radial-gradient(circle at 76% 22%, #d08b5a 0 2%, transparent 2.4%), radial-gradient(circle at 77% 22%, rgba(254, 204, 126, .15), transparent 17%), linear-gradient(115deg, #0e1017 0 34%, transparent 52%), linear-gradient(140deg, #271213 0%, #66251c 47%, #180c12 100%);
}
.featured-art::before {
  position: absolute;
  right: -13px;
  bottom: -27px;
  width: 165px;
  height: 185px;
  content: "";
  opacity: .92;
  background: linear-gradient(119deg, transparent 43%, #0c0b11 44% 58%, transparent 59%), linear-gradient(70deg, transparent 41%, rgba(5, 5, 7, .75) 42% 54%, transparent 55%);
  clip-path: polygon(44% 0, 61% 10%, 67% 34%, 92% 100%, 4% 100%, 31% 37%);
}
.featured-art::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(5, 5, 7, .3), transparent 58%), linear-gradient(0deg, rgba(5, 5, 8, .8), transparent 50%); }
.moon { position: absolute; top: 30px; right: 30px; width: 26px; height: 26px; border-radius: 50%; opacity: .9; background: #e0a15b; box-shadow: 0 0 28px 7px rgba(222, 112, 62, .38); }
.figure { position: absolute; z-index: 1; right: 58px; bottom: 9px; width: 43px; height: 103px; border-radius: 50% 48% 13px 13px; background: linear-gradient(90deg, #08090d 20%, #24222a 53%, #07080b 80%); }
.featured-copy { position: relative; z-index: 2; padding: 54px 15px 0; }
.featured-copy small { color: #f7ad7d; font-size: .39rem; font-weight: 700; letter-spacing: .13em; }
.featured-copy h2 { margin: 4px 0; font-size: 1.28rem; font-weight: 830; line-height: .84; letter-spacing: .04em; }
.featured-copy p { margin: 0; color: #c4c1c2; font-size: .46rem; }
.app-play { display: inline-flex; align-items: center; gap: 4px; height: 23px; margin-top: 10px; padding: 0 9px; border-radius: 6px; background: var(--red); color: #fff; font-size: .5rem; font-weight: 700; }
.app-play span { font-size: .48rem; }
.app-content { padding: 14px 10px 58px; }
.content-heading { display: flex; align-items: center; justify-content: space-between; }
.content-heading h3 { margin: 0; color: #f1f1f4; font-size: .68rem; font-weight: 750; letter-spacing: -.026em; }
.app-link { color: #ea5860; font-size: .46rem; }
.poster-row { display: flex; gap: 7px; margin-top: 9px; }
.poster { width: calc(33.333% - 4px); min-width: 0; }
.poster-art { position: relative; height: 105px; overflow: hidden; border-radius: 8px; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 8px 15px rgba(0, 0, 0, .16); }
.poster--amber .poster-art { background: linear-gradient(148deg, #33332a, #926322 48%, #120f0f); }
.poster--amber .poster-art::after { position: absolute; bottom: -10px; left: 38%; width: 32px; height: 93px; border-radius: 50% 50% 0 0; content: ""; background: linear-gradient(90deg, #1b1715 30%, #a47942 65%, #211812); box-shadow: -38px 25px 0 -10px rgba(31, 24, 15, .8); }
.poster--red .poster-art { background: radial-gradient(circle at 60% 28%, #ff6770 0 5%, transparent 6%), linear-gradient(150deg, #310b16, #b81825 50%, #180a10); }
.poster--red .poster-art::after { position: absolute; right: 12px; bottom: -5px; width: 44px; height: 83px; border-radius: 50% 40% 0 0; content: ""; background: linear-gradient(90deg, #211015 42%, #e74a48 43% 57%, #230c12 58%); }
.poster--blue .poster-art { background: radial-gradient(circle at 43% 22%, #d3eaff 0 4%, transparent 5%), linear-gradient(145deg, #0c1728, #275a78 45%, #11131b); }
.poster--blue .poster-art::after { position: absolute; bottom: -15px; left: 25px; width: 48px; height: 100px; border-radius: 50% 50% 0 0; content: ""; background: linear-gradient(90deg, #11151b 30%, #45626e 51%, #0d1219 72%); }
.poster-number { position: absolute; z-index: 1; top: 5px; left: 6px; color: rgba(255, 255, 255, .45); font-size: .35rem; font-weight: 800; }
.poster-name { position: absolute; z-index: 2; right: 5px; bottom: 7px; color: #fff; font-size: .43rem; font-weight: 850; line-height: .9; letter-spacing: .05em; text-align: right; }
.poster p { overflow: hidden; margin: 5px 0 0; color: #eeeef1; font-size: .52rem; font-weight: 640; text-overflow: ellipsis; white-space: nowrap; }
.poster small { color: #94949f; font-size: .42rem; }
.continue-heading { margin-top: 15px; }
.continue-card { display: flex; align-items: center; gap: 7px; margin-top: 8px; padding: 6px; border-radius: 8px; background: #1a1a20; }
.continue-art { width: 41px; height: 34px; border-radius: 5px; background: radial-gradient(circle at 70% 35%, #dd9e59 0 5%, transparent 7%), linear-gradient(130deg, #251826, #87513f, #121116); }
.continue-card div { flex: 1; min-width: 0; }
.continue-card b, .continue-card small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.continue-card b { color: #ececf0; font-size: .48rem; }
.continue-card small { margin-top: 3px; color: #9999a4; font-size: .4rem; }
.continue-card i { display: block; height: 2px; margin-top: 5px; border-radius: 2px; background: #393940; }
.continue-card i u { display: block; width: 57%; height: 100%; background: var(--red); }
.app-resume { display: grid; width: 21px; height: 21px; place-items: center; padding-left: 1px; border: 1px solid #4d4d57; border-radius: 50%; color: #fff; font-size: .42rem; }
.app-nav { position: absolute; right: 0; bottom: 0; left: 0; display: flex; justify-content: space-around; padding: 8px 12px 12px; border-top: 1px solid rgba(255, 255, 255, .04); background: rgba(17, 17, 22, .94); color: #92929d; }
.app-nav span { display: grid; justify-items: center; gap: 2px; font-size: .72rem; }
.app-nav small { font-size: .34rem; }
.app-nav .active { color: #f14b52; }
.phone-shadow { position: absolute; z-index: 0; top: 80%; left: 51%; width: 285px; height: 38px; border-radius: 50%; background: #000; filter: blur(22px); opacity: .7; transform: rotate(-5deg) translateX(-50%); }
.visual-orbit { position: absolute; z-index: -1; border: 1px solid rgba(255, 255, 255, .08); border-radius: 50%; }
.orbit--one { top: 3%; right: 2%; width: 470px; height: 470px; border-left-color: rgba(229, 9, 20, .35); transform: rotate(-29deg); }
.orbit--two { top: 18%; left: 5%; width: 330px; height: 330px; border-right-color: rgba(229, 9, 20, .23); transform: rotate(47deg); }
.floating-note { position: absolute; z-index: 3; display: flex; align-items: center; gap: 7px; padding: 10px 12px; border: 1px solid rgba(255, 255, 255, .15); border-radius: 10px; background: linear-gradient(135deg, rgba(38, 37, 45, .8), rgba(20, 20, 26, .62)); color: #e4e3e6; box-shadow: 0 16px 35px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .08); backdrop-filter: blur(10px); font-size: .6rem; font-weight: 650; }
.note--top { top: 16%; right: 2%; }
.note--top span { color: var(--red-hot); font-size: .86rem; }
.note--bottom { bottom: 14%; left: 7%; display: grid; gap: 2px; }
.note--bottom b { font-size: .75rem; }
.note--bottom span { color: #eeb33c; font-size: .48rem; letter-spacing: 1px; }

/* Supporting content and progressive enhancement */
.scroll-cue { position: absolute; bottom: 29px; left: 50%; display: grid; gap: 8px; justify-items: center; color: #777780; font-size: .52rem; font-weight: 700; letter-spacing: .14em; transform: translateX(-50%); transition: color .2s ease; }
.scroll-cue:hover { color: #d1d1d5; }
.scroll-cue i { position: relative; display: block; width: 19px; height: 30px; border: 1px solid #5e5e68; border-radius: 20px; }
.scroll-cue i::before { position: absolute; top: 5px; left: 50%; width: 2px; height: 5px; border-radius: 2px; content: ""; background: var(--red); transform: translateX(-50%); animation: scroll 1.6s ease-in-out infinite; }
.access-status {
  position: fixed;
  z-index: 15;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 10px;
  background: rgba(20, 20, 26, .78);
  color: #d9d9de;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255, 255, 255, .06);
  backdrop-filter: blur(12px);
  font-size: .68rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .45s ease, transform .45s var(--easing);
}
.access-status.is-visible { opacity: 1; transform: translateY(0); }
.access-status__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red-hot); box-shadow: 0 0 0 4px rgba(255, 59, 69, .1); }
.feature-strip { position: relative; display: grid; min-height: 82px; overflow: hidden; place-items: center; padding: 19px 24px; border-top: 1px solid rgba(255, 255, 255, .075); background: linear-gradient(90deg, #0d0d12, #111116 48%, #0d0d12); color: #adadb5; text-align: center; }
.feature-strip::before { position: absolute; top: 0; left: 20%; width: 60%; height: 1px; content: ""; background: linear-gradient(90deg, transparent, rgba(229, 9, 20, .65), transparent); }
.feature-strip p { position: relative; margin: 0; font-size: .72rem; letter-spacing: .02em; }
.feature-strip span { margin-right: 12px; color: var(--red-hot); font-size: .61rem; font-weight: 760; letter-spacing: .16em; }
.feature-strip i { margin: 0 10px; color: #da2830; font-style: normal; }
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .85s ease, transform .85s var(--easing); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.hero-visual[data-reveal] { transform: translate3d(var(--visual-x, 0px), calc(var(--visual-y, 0px) + 24px), 0); }
.hero-visual[data-reveal].is-visible { transform: translate3d(var(--visual-x, 0px), var(--visual-y, 0px), 0); }
html.no-js [data-reveal], html.no-js .hero-visual[data-reveal] { opacity: 1; transform: none; }

@keyframes phone-float { 0%, 100% { transform: rotate(5deg) translateY(-2px); } 50% { transform: rotate(4deg) translateY(-14px); } }
@keyframes particle { 0%, 100% { opacity: .2; transform: translateY(0) scale(.7); } 50% { opacity: .9; transform: translateY(-22px) scale(1); } }
@keyframes scroll { 0% { opacity: 0; transform: translate(-50%, 0); } 25%, 70% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 12px); } }
@keyframes glow-orbit { to { transform: rotate(360deg) scale(1.08); } }
@keyframes pulse-dot { 0%, 100% { box-shadow: 0 0 0 4px rgba(229, 9, 20, .12), 0 0 13px var(--red); } 50% { box-shadow: 0 0 0 7px rgba(229, 9, 20, .04), 0 0 18px var(--red-hot); } }
@keyframes cta-spin { to { transform: rotate(360deg); } }
@keyframes cta-attention { 0%, 100% { transform: translateY(0) scale(1); } 35% { transform: translateY(-3px) scale(1.025); } 65% { transform: translateY(-1px) scale(1.01); } }

@media (max-width: 900px) {
  .hero { min-height: auto; }
  .container { width: min(690px, calc(100% - 48px)); }
  .nav { margin-top: 14px; }
  .hero-grid { grid-template-columns: 1fr; gap: 10px; padding-top: 70px; text-align: center; }
  .hero-copy { margin: 0 auto; }
  .eyebrow, .viewer-proof { justify-content: center; }
  .hero-description { margin-right: auto; margin-left: auto; }
  .hero-actions, .benefits { justify-content: center; margin-right: auto; margin-left: auto; }
  .cta-reassurance { left: 50%; transform: translateX(-50%); }
  .hero-visual { min-height: 545px; margin-top: 6px; }
  .phone { width: 285px; }
  .scroll-cue { display: none; }
  .orbit--one { right: 8%; }
  .note--top { right: 9%; }
  .note--bottom { left: 11%; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 34px, 420px); }
  .nav { margin-top: 10px; padding: 10px 12px; }
  .nav-link { display: none; }
  .nav-actions { gap: 0; }
  .nav-signin { padding: 8px 11px; font-size: .72rem; }
  .hero-grid { min-height: 0; padding: 56px 0 0; }
  .eyebrow { margin-bottom: 17px; font-size: .61rem; }
  .hero-description { font-size: .91rem; line-height: 1.62; }
  .hero-actions { display: grid; grid-template-columns: minmax(0, 1.13fr) minmax(0, .87fr); gap: 9px; margin-top: 27px; }
  .button { min-width: 0; min-height: 49px; padding: 0 10px; gap: 8px; font-size: .76rem; white-space: nowrap; }
  .cta-reassurance { font-size: .61rem; }
  .benefits { display: grid; grid-template-columns: 1fr 1fr; justify-items: start; gap: 8px; max-width: 310px; margin-top: 25px; font-size: .66rem; }
  .benefits li { width: 100%; padding-right: 6px; }
  .viewer-proof { margin-top: 29px; }
  .hero-visual { min-height: 465px; margin-top: 23px; }
  .hero-visual::before { width: 310px; height: 310px; }
  .hero-visual::after { width: 370px; height: 370px; }
  .phone { width: 245px; }
  .app-screen { min-height: 478px; border-radius: 25px; }
  .app-topbar { height: 47px; padding-top: 11px; }
  .app-featured { height: 157px; }
  .featured-copy { padding-top: 41px; }
  .featured-copy h2 { font-size: 1.08rem; }
  .featured-art::before { transform: scale(.83); transform-origin: bottom right; }
  .app-content { padding-top: 11px; }
  .poster-art { height: 83px; }
  .continue-heading { margin-top: 11px; }
  .app-nav { padding-bottom: 9px; }
  .phone-bezel { padding: 7px; border-radius: 31px; }
  .phone-island { top: 11px; }
  .orbit--one { top: 7%; right: 50%; width: 390px; height: 390px; transform: translateX(50%) rotate(-29deg); }
  .orbit--two { left: 49%; width: 295px; height: 295px; transform: translateX(-50%) rotate(47deg); }
  .note--top { top: 13%; right: 0; }
  .note--bottom { bottom: 12%; left: 0; }
  .feature-strip { min-height: 95px; }
  .feature-strip p { max-width: 290px; line-height: 1.7; }
  .feature-strip span { display: block; margin: 0; }
  .feature-strip i { display: none; }
  .access-status { right: auto; bottom: 14px; left: 50%; transform: translate(-50%, 8px); white-space: nowrap; }
  .access-status.is-visible { transform: translate(-50%, 0); }
}

@media (max-width: 360px) {
  h1 { font-size: 2.78rem; }
  .nav-signin { font-size: .67rem; }
  .phone { width: 232px; }
  .cta-reassurance { font-size: .57rem; }
  .note--top { right: -7px; }
  .note--bottom { left: -7px; }
}

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