:root {
  --ink: #111114;
  --ink-soft: #5f5e64;
  --paper: #f5f2ed;
  --paper-deep: #ebe6de;
  --night: #0a0a0c;
  --night-soft: #17171a;
  --line: rgba(17, 17, 20, 0.13);
  --line-dark: rgba(255, 255, 255, 0.12);
  --accent: #ff5338;
  --accent-deep: #dd331e;
  --mint: #72e6be;
  --white: #fff;
  --display: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shell: min(1180px, calc(100% - 48px));
  --radius: 18px;
  color-scheme: light;
  font-family: var(--sans);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 7%, rgba(255, 83, 56, 0.08), transparent 25rem),
    var(--paper);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  content: "";
  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='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

img {
  max-width: 100%;
}

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

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

button {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 74px;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(245, 242, 237, 0.86);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: var(--shell);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.brand img {
  border-radius: 10px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 34px);
  margin-inline: auto;
}

.site-nav a {
  position: relative;
  color: #48474c;
  font-size: 0.82rem;
  font-weight: 700;
}

.site-nav a::after {
  position: absolute;
  inset: auto 0 -8px;
  height: 2px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 12px 30px rgba(221, 51, 30, 0.2);
}

.button-primary:hover {
  background: var(--accent-deep);
}

.button-secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(17, 17, 20, 0.24);
}

.button-small {
  min-height: 38px;
  padding-inline: 15px;
  font-size: 0.76rem;
}

.button-quiet {
  border-color: var(--line);
}

.button-quiet svg {
  width: 17px;
  fill: currentColor;
  stroke: none;
}

.hero {
  min-height: 790px;
  padding: 150px 0 90px;
  display: grid;
  grid-template-columns: minmax(0, 0.87fr) minmax(470px, 1.13fr);
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
}

.eyebrow {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #58575d;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 22px;
  height: 2px;
  background: var(--accent);
}

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

h1 {
  max-width: 700px;
  margin-bottom: 25px;
  font-size: clamp(3.7rem, 6.2vw, 6.5rem);
  line-height: 0.88;
  letter-spacing: -0.074em;
}

h1 em,
h2 em {
  color: var(--accent);
  font-family: var(--display);
  font-weight: 400;
}

.hero-lede {
  max-width: 610px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  line-height: 1.65;
}

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

.platform-note {
  margin-top: 23px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  color: #77757a;
  font-size: 0.73rem;
  font-weight: 650;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: #21c98d;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(33, 201, 141, 0.12);
}

.hero-art {
  position: relative;
  min-width: 0;
  isolation: isolate;
}

.app-window {
  position: relative;
  z-index: 2;
  padding: 9px;
  background: #17171a;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  box-shadow:
    0 50px 100px rgba(19, 15, 13, 0.24),
    0 10px 30px rgba(19, 15, 13, 0.16);
  transform: rotate(1.5deg);
}

.window-bar {
  height: 47px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.window-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.72rem;
}

.window-brand img {
  border-radius: 7px;
}

.window-controls {
  display: flex;
  gap: 6px;
}

.window-controls span {
  width: 8px;
  height: 8px;
  background: #48484d;
  border-radius: 50%;
}

.mock-player {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(255, 83, 56, 0.22), transparent 48%),
    linear-gradient(315deg, rgba(114, 230, 190, 0.12), transparent 40%),
    #080809;
  border-radius: 12px;
}

.mock-player::after {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.mock-glow {
  position: absolute;
  width: 290px;
  height: 290px;
  background: var(--accent);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.17;
}

.mock-logo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--white);
}

.mock-logo img {
  filter: drop-shadow(0 12px 24px rgba(255, 83, 56, 0.25));
}

.mock-logo p {
  margin: 0;
  color: #b8b8be;
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 1.3;
}

.mock-logo strong {
  color: var(--white);
}

.mock-controls {
  position: absolute;
  inset: auto 16px 14px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d6d6da;
  font-size: 0.63rem;
}

.play-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.timeline {
  height: 3px;
  flex: 1;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

.timeline i {
  width: 43%;
  height: 100%;
  display: block;
  background: var(--accent);
}

.mock-meta {
  min-height: 66px;
  padding: 13px 13px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}

.mock-meta > div {
  display: grid;
  gap: 5px;
}

.micro-label {
  color: #77777e;
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.mock-meta strong {
  font-size: 0.76rem;
}

.source-pill {
  padding: 6px 10px;
  color: var(--mint);
  background: rgba(114, 230, 190, 0.09);
  border: 1px solid rgba(114, 230, 190, 0.2);
  border-radius: 999px;
  font-size: 0.61rem;
  font-weight: 800;
}

.floating-card {
  position: absolute;
  z-index: 4;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(17, 17, 20, 0.09);
  border-radius: 13px;
  box-shadow: 0 16px 45px rgba(20, 17, 15, 0.17);
  backdrop-filter: blur(12px);
}

.floating-card > div:nth-child(2) {
  display: grid;
  gap: 3px;
}

.floating-card span {
  color: #78767b;
  font-size: 0.58rem;
  font-weight: 700;
}

.floating-card strong {
  font-size: 0.68rem;
}

.float-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--accent);
  border-radius: 9px;
  font-size: 0.8rem;
}

.floating-room {
  right: -20px;
  bottom: 80px;
}

.floating-room > i {
  width: 7px;
  height: 7px;
  margin-left: 5px;
  background: #20c98c;
  border-radius: 50%;
}

.floating-anilist {
  top: 77px;
  left: -25px;
}

.floating-anilist .float-icon {
  color: #0b704f;
  background: #b9f4de;
}

.orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 83, 56, 0.18);
  border-radius: 50%;
}

.orbit-one {
  width: 550px;
  height: 550px;
  top: -65px;
  right: -80px;
}

.orbit-two {
  width: 420px;
  height: 420px;
  top: 0;
  right: -15px;
  border-color: rgba(17, 17, 20, 0.09);
}

.signal-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-inner {
  min-height: 110px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.signal-inner > div {
  min-height: 55px;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-right: 1px solid var(--line);
}

.signal-inner > div:last-child {
  border-right: 0;
}

.signal-inner strong {
  color: var(--accent);
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 400;
}

.signal-inner span {
  color: #69676d;
  font-size: 0.72rem;
  font-weight: 700;
}

.section {
  padding-block: 130px;
}

.section-heading {
  max-width: 750px;
  margin-bottom: 55px;
}

.section-heading h2,
.showcase-heading h2,
.together-copy h2,
.privacy-copy h2,
.torrent-callout h2,
.developer-copy h2,
.final-cta h2 {
  margin-bottom: 22px;
  font-size: clamp(2.75rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.section-heading > p:last-child,
.showcase-heading > p,
.together-copy > p,
.privacy-copy > p,
.torrent-callout > div > p:last-child,
.developer-copy > p,
.final-cta .section-shell > p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 14px;
}

.feature-card {
  position: relative;
  min-height: 310px;
  padding: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-card::before {
  position: absolute;
  inset: auto -60px -100px auto;
  width: 220px;
  height: 220px;
  content: "";
  background: var(--accent);
  border-radius: 50%;
  filter: blur(85px);
  opacity: 0;
  transition: opacity 250ms ease;
}

.feature-card:hover::before {
  opacity: 0.09;
}

.feature-card-large {
  grid-row: span 2;
  min-height: 634px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(to bottom, transparent 30%, rgba(10, 10, 12, 0.9)),
    radial-gradient(circle at 65% 22%, rgba(255, 83, 56, 0.3), transparent 30%),
    #111114;
  color: var(--white);
}

.feature-card-wide {
  grid-column: span 2;
  min-height: 310px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  gap: 0 22px;
  background: var(--paper-deep);
}

.feature-card-wide .card-number {
  grid-column: 1 / -1;
}

.feature-card-wide .achievement-stack {
  grid-column: 1 / -1;
}

.card-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: #99969a;
  font-family: var(--mono);
  font-size: 0.61rem;
}

.feature-icon {
  width: 45px;
  height: 45px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  background: rgba(255, 83, 56, 0.11);
  border-radius: 12px;
}

.feature-card-large .feature-icon {
  background: rgba(255, 83, 56, 0.18);
}

.feature-icon svg {
  width: 22px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3,
.privacy-card h3 {
  margin-bottom: 13px;
  font-size: 1.28rem;
  letter-spacing: -0.035em;
}

.feature-card p,
.privacy-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.65;
}

.feature-card-large p {
  color: #a8a7ad;
}

.mini-list {
  margin-top: 30px;
  display: grid;
  gap: 9px;
}

.mini-list span {
  padding-bottom: 9px;
  color: #d8d7dc;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.7rem;
}

.achievement-stack {
  margin-top: 28px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.achievement-stack span {
  padding: 7px 10px;
  color: #625f62;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(17, 17, 20, 0.08);
  border-radius: 999px;
  font-size: 0.61rem;
  font-weight: 750;
}

.showcase-section {
  padding-block: 120px;
  color: var(--white);
  background: var(--night);
}

.showcase-heading {
  margin-bottom: 45px;
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  align-items: end;
  gap: 70px;
}

.showcase-heading h2 {
  margin-bottom: 0;
}

.showcase-heading > p {
  margin-bottom: 7px;
  color: #99989e;
}

.showcase-frame {
  position: relative;
  aspect-ratio: 1.6 / 1;
  overflow: hidden;
  background: #151518;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.4);
}

.showcase-frame > img {
  width: 100%;
  height: 100%;
  display: block;
  background: #101012;
  object-fit: cover;
}

.showcase-topbar {
  position: absolute;
  z-index: 1;
  inset: 0 0 auto;
  height: 48px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #77767c;
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.92), rgba(10, 10, 12, 0.72));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  font-size: 0.62rem;
}

.showcase-topbar > span {
  display: flex;
  gap: 6px;
}

.showcase-topbar i {
  width: 8px;
  height: 8px;
  display: block;
  background: #45454a;
  border-radius: 50%;
}

.showcase-topbar strong {
  color: #aaa9ae;
  font-size: 0.65rem;
}

.showcase-topbar small {
  justify-self: end;
  font-size: 0.58rem;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 80px;
  align-items: end;
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 5px;
}

.provider-table {
  border-top: 1px solid var(--ink);
}

.provider-row {
  min-height: 74px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.7fr auto;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.provider-row strong {
  font-size: 0.9rem;
}

.provider-row span {
  color: #68666b;
  font-size: 0.75rem;
}

.provider-row i {
  min-width: 66px;
  padding: 5px 8px;
  color: #666469;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.57rem;
  font-style: normal;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
}

.provider-header {
  min-height: 48px;
}

.provider-header span {
  color: #99969a;
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.provider-caveat {
  margin: 22px 0 0;
  color: #817f83;
  font-size: 0.7rem;
}

.together-section {
  padding-block: 130px;
  color: var(--white);
  background: var(--accent);
}

.together-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(60px, 10vw, 150px);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.68);
}

.eyebrow-light > span {
  background: var(--white);
}

.together-copy h2 em,
.developer-copy h2 em {
  color: var(--white);
}

.together-copy > p {
  color: rgba(255, 255, 255, 0.8);
}

.check-list {
  padding: 0;
  margin: 30px 0;
  display: grid;
  gap: 14px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 25px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  line-height: 1.5;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  content: "✓";
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  font-size: 0.76rem;
  font-weight: 850;
}

.text-link span {
  transition: transform 150ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.light-link {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.room-card {
  overflow: hidden;
  color: var(--white);
  background: #121214;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  box-shadow: 0 40px 90px rgba(111, 18, 8, 0.25);
  transform: rotate(-1deg);
}

.room-header {
  min-height: 64px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.room-header > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.room-header strong {
  font-size: 0.78rem;
}

.room-header > span {
  color: #7f7e84;
  font-size: 0.55rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.live-dot {
  width: 7px;
  height: 7px;
  background: #25d998;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(37, 217, 152, 0.09);
}

.room-content {
  padding: 22px;
}

.room-show {
  padding: 22px;
  background:
    radial-gradient(circle at 90% 0, rgba(255, 83, 56, 0.25), transparent 40%),
    #1a1a1e;
  border-radius: 12px;
}

.room-show > span {
  color: #77767d;
  font-size: 0.53rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.room-show > strong {
  margin-top: 8px;
  display: block;
  font-size: 1rem;
}

.room-progress {
  height: 4px;
  margin-top: 28px;
  background: #35353a;
  border-radius: 4px;
}

.room-progress i {
  width: 77%;
  height: 100%;
  display: block;
  background: var(--accent);
  border-radius: inherit;
}

.room-show small {
  margin-top: 7px;
  display: block;
  color: #85848a;
  font-size: 0.56rem;
}

.participants {
  margin-block: 18px;
  display: grid;
  gap: 8px;
}

.participants > div {
  min-height: 43px;
  padding: 0 12px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  background: #19191c;
  border-radius: 9px;
}

.participants strong {
  font-size: 0.68rem;
}

.participants i {
  color: #77767c;
  font-size: 0.5rem;
  font-style: normal;
  font-weight: 850;
}

.avatar {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  font-size: 0.55rem;
  font-weight: 900;
}

.avatar-one { background: #df4a34; }
.avatar-two { background: #4d65cf; }
.avatar-three { background: #8b4dbd; }

.room-message {
  padding: 12px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
}

.room-message p {
  margin: 0;
  color: #b8b7bd;
  font-size: 0.64rem;
  line-height: 1.5;
}

.room-message p strong {
  display: block;
  color: var(--white);
}

.room-message small {
  color: #68676c;
  font-size: 0.5rem;
}

.privacy-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
}

.privacy-copy {
  position: sticky;
  top: 120px;
  align-self: start;
}

.privacy-cards {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.privacy-card {
  min-height: 140px;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 10px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.privacy-card > span {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.65rem;
}

.privacy-card h3 {
  margin-bottom: 8px;
}

.torrent-callout {
  margin-bottom: 130px;
  padding: 55px;
  display: grid;
  grid-template-columns: auto 1fr 0.75fr;
  gap: 35px;
  align-items: center;
  color: var(--white);
  background: var(--night-soft);
  border-radius: 22px;
}

.torrent-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: rgba(255, 83, 56, 0.1);
  border-radius: 16px;
}

.torrent-icon svg {
  width: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.torrent-callout h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.torrent-callout > div > p:last-child {
  margin-bottom: 0;
  color: #99989e;
  font-size: 0.84rem;
}

.torrent-stats {
  display: grid;
  gap: 12px;
}

.torrent-stats span {
  padding-bottom: 12px;
  display: grid;
  gap: 3px;
  color: #77767c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.62rem;
}

.torrent-stats strong {
  color: var(--white);
  font-size: 0.75rem;
}

.developer-section {
  color: var(--white);
  background: #0d0d0f;
}

.developer-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: center;
}

.developer-copy > p {
  color: #99989e;
}

.developer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
}

.button-outline-light:hover {
  background: rgba(255, 255, 255, 0.07);
}

.code-card {
  overflow: hidden;
  background: #151518;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.code-topbar {
  height: 44px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #66656b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-family: var(--mono);
  font-size: 0.58rem;
}

.code-topbar > div {
  display: flex;
  gap: 5px;
}

.code-topbar i {
  width: 7px;
  height: 7px;
  display: block;
  background: #3d3d42;
  border-radius: 50%;
}

.code-card pre {
  padding: 28px;
  margin: 0;
  overflow-x: auto;
}

.code-card code {
  color: #d2d1d6;
  font-family: var(--mono);
  font-size: 0.7rem;
  line-height: 2;
}

.code-prompt {
  color: var(--accent);
}

.code-muted {
  color: #636268;
}

.doc-links {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.doc-links a {
  min-height: 120px;
  padding: 25px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: 7px;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
  transition: background 160ms ease;
}

.doc-links a:last-child {
  border-right: 0;
}

.doc-links a:hover {
  background: rgba(255, 255, 255, 0.04);
}

.doc-links span {
  grid-column: 1 / -1;
  color: #67666c;
  font-size: 0.55rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.doc-links strong {
  font-size: 0.76rem;
}

.doc-links i {
  color: var(--accent);
  font-style: normal;
}

.final-cta {
  position: relative;
  padding-block: 150px;
  overflow: hidden;
  text-align: center;
}

.final-cta .section-shell {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta img {
  margin-bottom: 24px;
  border-radius: 23px;
  filter: drop-shadow(0 18px 35px rgba(255, 83, 56, 0.2));
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta h2 {
  margin-bottom: 20px;
}

.final-cta .section-shell > p {
  max-width: 560px;
}

.final-actions {
  margin-top: 18px;
  justify-content: center;
}

.final-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 650px;
  height: 300px;
  background: rgba(255, 83, 56, 0.1);
  border-radius: 50%;
  filter: blur(100px);
  transform: translate(-50%, -50%);
}

.site-footer {
  padding: 55px 0 24px;
  color: #aaa9ae;
  background: var(--night);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 50px;
  align-items: start;
}

.footer-brand {
  color: var(--white);
}

.footer-grid > div:first-child > p,
.footer-note {
  margin: 13px 0 0;
  color: #6c6b71;
  font-size: 0.65rem;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 13px 30px;
}

.footer-links a {
  font-size: 0.68rem;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-note {
  max-width: 340px;
  justify-self: end;
  text-align: right;
}

.footer-bottom {
  margin-top: 45px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  color: #55545a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.59rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@media (max-width: 1000px) {
  :root {
    --shell: min(100% - 36px, 860px);
  }

  .nav-github {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 135px;
  }

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

  .hero-art {
    width: min(700px, 95%);
    margin: 10px auto 0;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-card-large {
    grid-row: auto;
    min-height: 440px;
    grid-column: span 2;
  }

  .feature-card-wide {
    grid-column: span 2;
  }

  .together-grid,
  .developer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 55px;
  }

  .privacy-grid {
    gap: 50px;
  }

  .torrent-callout {
    grid-template-columns: auto 1fr;
  }

  .torrent-stats {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .site-header {
    height: 66px;
  }

  .nav-shell {
    justify-content: space-between;
  }

  .nav-toggle {
    width: 42px;
    height: 38px;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 6px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 10px;
  }

  .nav-toggle > span:not(.sr-only) {
    width: 17px;
    height: 2px;
    display: block;
    background: var(--ink);
    transition: transform 160ms ease;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    inset: 65px 14px auto;
    padding: 14px;
    display: none;
    align-items: stretch;
    background: rgba(245, 242, 237, 0.98);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 16px 50px rgba(20, 17, 15, 0.12);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 12px;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 125px 0 80px;
    gap: 55px;
  }

  h1 {
    font-size: clamp(3.4rem, 16vw, 5rem);
  }

  .hero-art {
    width: 100%;
  }

  .app-window {
    transform: none;
  }

  .mock-player {
    min-height: 250px;
  }

  .mock-logo {
    gap: 12px;
  }

  .mock-logo img {
    width: 68px;
  }

  .mock-logo p {
    font-size: 0.9rem;
  }

  .floating-card {
    transform: scale(0.86);
  }

  .floating-anilist {
    top: 50px;
    left: -20px;
    transform-origin: left;
  }

  .floating-room {
    right: -16px;
    bottom: 65px;
    transform-origin: right;
  }

  .signal-inner {
    grid-template-columns: 1fr 1fr;
  }

  .signal-inner > div {
    border-bottom: 1px solid var(--line);
  }

  .signal-inner > div:nth-child(2) {
    border-right: 0;
  }

  .signal-inner > div:nth-child(n + 3) {
    border-bottom: 0;
  }

  .section {
    padding-block: 90px;
  }

  .section-heading,
  .showcase-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .showcase-heading h2,
  .together-copy h2,
  .privacy-copy h2,
  .developer-copy h2,
  .final-cta h2 {
    font-size: clamp(2.65rem, 12vw, 4.2rem);
  }

  .feature-grid,
  .showcase-heading,
  .split-heading,
  .together-grid,
  .privacy-grid,
  .developer-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card-large,
  .feature-card-wide {
    min-height: 300px;
    grid-column: auto;
  }

  .feature-card-large {
    min-height: 440px;
  }

  .feature-card-wide {
    display: block;
  }

  .feature-card-wide .feature-icon {
    margin-top: 35px;
  }

  .showcase-section,
  .together-section {
    padding-block: 90px;
  }

  .showcase-heading,
  .split-heading {
    gap: 20px;
  }

  .showcase-topbar small {
    display: none;
  }

  .provider-row {
    padding: 17px 0;
    grid-template-columns: 1fr auto;
    gap: 7px 15px;
  }

  .provider-row span:nth-of-type(2) {
    grid-column: 1;
  }

  .provider-row i {
    grid-column: 2;
    grid-row: 1;
  }

  .provider-header {
    display: none;
  }

  .together-grid,
  .developer-grid {
    gap: 60px;
  }

  .room-card {
    transform: none;
  }

  .privacy-copy {
    position: static;
  }

  .privacy-grid {
    gap: 45px;
  }

  .torrent-callout {
    margin-bottom: 90px;
    padding: 35px 25px;
    grid-template-columns: 1fr;
  }

  .torrent-icon {
    width: 52px;
    height: 52px;
  }

  .torrent-stats {
    grid-column: auto;
  }

  .doc-links,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .doc-links a {
    min-height: 90px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  }

  .doc-links a:last-child {
    border-bottom: 0;
  }

  .footer-grid {
    gap: 30px;
  }

  .footer-note {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: clamp(2.9rem, 13vw, 3.35rem);
    letter-spacing: -0.065em;
  }

  h1 em {
    display: block;
  }

  .hero .eyebrow {
    font-size: 0.58rem;
    letter-spacing: 0.14em;
  }

  .hero-lede {
    font-size: 0.95rem;
  }

  .hero-actions,
  .final-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .platform-note {
    align-items: flex-start;
    gap: 7px;
    font-size: 0.66rem;
  }

  .platform-note span[aria-hidden] {
    display: none;
  }

  .mock-logo p {
    display: none;
  }

  .orbit-one {
    width: 430px;
    height: 430px;
    right: -14px;
  }

  .orbit-two {
    width: 350px;
    height: 350px;
    right: 0;
  }

  .mock-player {
    min-height: 220px;
  }

  .floating-card {
    display: none;
  }

  .signal-inner > div {
    padding-inline: 8px;
    gap: 8px;
  }

  .signal-inner strong {
    font-size: 1.5rem;
  }

  .signal-inner span {
    font-size: 0.62rem;
  }

  .feature-card {
    padding: 24px;
  }

  .privacy-card {
    grid-template-columns: 45px 1fr;
  }

  .code-card pre {
    padding: 20px;
  }

  .code-card code {
    font-size: 0.61rem;
  }

  .footer-bottom {
    gap: 12px;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
