:root {
  --void: #08090b;
  --carbon: #101216;
  --graphite: #181c21;
  --slate: #252b32;
  --paper: #f3f2ed;
  --paper-raised: #faf9f5;
  --ink: #14171b;
  --muted: #687078;
  --white: #f7f9fb;
  --action: #ff6154;
  --action-strong: #ef4d5f;
  --geometry: #ff9854;
  --warm: #d6a36d;
  --line-dark: rgba(247, 249, 251, 0.14);
  --line-light: rgba(20, 23, 27, 0.16);
  --display: "Geist", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shell: min(1240px, calc(100vw - 48px));
  --product-hunt-height: 38px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--product-hunt-height) + var(--header-height));
}

body {
  margin: 0;
  background: var(--void);
  color: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
  font: inherit;
}

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

::selection {
  background: var(--action);
  color: var(--ink);
}

.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;
  z-index: 1000;
  top: calc(var(--product-hunt-height) + 12px);
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--paper-raised);
  color: var(--ink);
  transform: translateY(calc(-100% - var(--product-hunt-height) - 16px));
  transition: transform 180ms ease;
}

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

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

.section-dark {
  background: var(--void);
  color: var(--white);
}

.section-carbon {
  background: var(--carbon);
  color: var(--white);
}

.section-paper {
  background: var(--paper);
  color: var(--ink);
}

.product-hunt-banner {
  position: fixed;
  z-index: 110;
  inset: 0 0 auto;
  height: var(--product-hunt-height);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff6154;
  color: #24100e;
  text-decoration: none;
  transition: background-color 160ms ease;
}

.product-hunt-banner:hover {
  background: #f8574a;
}

.product-hunt-banner:focus-visible {
  outline-color: #fff;
  outline-offset: -4px;
}

.product-hunt-banner-inner {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  line-height: 1;
}

.product-hunt-banner-mark {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: #e84f43;
  font-family: var(--display);
  font-weight: 700;
}

.product-hunt-banner strong {
  font-weight: 700;
}

.product-hunt-banner-cta {
  border-bottom: 1px solid rgba(36, 16, 14, 0.46);
  font-weight: 650;
}

.product-hunt-banner svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 160ms ease;
}

.product-hunt-banner:hover svg {
  transform: translateX(3px);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: var(--product-hunt-height) 0 auto;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 max(24px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid transparent;
  background: rgba(8, 9, 11, 0.9);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line-dark);
  background: rgba(8, 9, 11, 0.97);
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -0.025em;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(247, 249, 251, 0.68);
  font-size: 13px;
  font-weight: 500;
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--white);
}

.site-nav .nav-affiliate {
  gap: 8px;
}

.nav-commission {
  min-height: 20px;
  display: inline-flex;
  align-items: center;
  padding: 0 7px;
  border-radius: 999px;
  background: var(--action);
  color: #071019;
  font: 700 9px/1 var(--body);
  letter-spacing: .01em;
  white-space: nowrap;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 22px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(247, 249, 251, 0.36);
  font: 11px/1 var(--mono);
}

.language-switch button {
  min-width: 28px;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: none;
  color: rgba(247, 249, 251, 0.45);
  cursor: pointer;
}

.language-switch button[aria-pressed="true"] {
  color: var(--white);
}

.menu-button {
  display: none;
}

.mobile-nav-tools {
  display: none;
}

.button {
  appearance: none;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 14px;
  font-family: var(--body);
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.button:active {
  transform: translateY(0);
}

@property --aurora-x {
  syntax: "<number>";
  initial-value: 0.5;
  inherits: true;
}

@property --aurora-w {
  syntax: "<number>";
  initial-value: 1;
  inherits: true;
}

@property --aurora-h {
  syntax: "<number>";
  initial-value: 1;
  inherits: true;
}

@property --aurora-edge {
  syntax: "<number>";
  initial-value: 0;
  inherits: true;
}

@property --aurora-spike {
  syntax: "<number>";
  initial-value: 1;
  inherits: true;
}

@property --aurora-spike-2 {
  syntax: "<number>";
  initial-value: 1;
  inherits: true;
}

@property --aurora-spike-3 {
  syntax: "<number>";
  initial-value: 1;
  inherits: true;
}

.button-aurora {
  --aurora-field:
    radial-gradient(ellipse calc(36px * var(--aurora-w)) calc(15px * var(--aurora-h)) at calc(var(--aurora-x) * 100%) calc(100% + 2px), rgba(255, 50, 100, .72), transparent),
    radial-gradient(ellipse calc(30px * var(--aurora-w)) calc(13px * var(--aurora-h)) at calc(var(--aurora-x) * 100% + 39px) calc(100% - 4px), rgba(40, 180, 220, .68), transparent),
    radial-gradient(ellipse calc(33px * var(--aurora-w)) calc(14px * var(--aurora-h)) at calc(var(--aurora-x) * 100% - 36px) calc(100% - 2px), rgba(50, 200, 80, .7), transparent),
    radial-gradient(ellipse calc(29px * var(--aurora-w)) calc(15px * var(--aurora-h)) at calc(var(--aurora-x) * 100% - 54px) calc(100% - 7px), rgba(180, 40, 240, .68), transparent),
    radial-gradient(ellipse calc(27px * var(--aurora-w)) calc(13px * var(--aurora-h)) at calc(var(--aurora-x) * 100% + 51px) calc(100% - 5px), rgba(255, 160, 30, .66), transparent),
    radial-gradient(ellipse calc(36px * var(--aurora-w)) calc(11px * var(--aurora-h)) at calc(var(--aurora-x) * 100% + 21px) calc(100% - 8px), rgba(100, 70, 255, .68), transparent);
  position: relative;
  z-index: 0;
  isolation: isolate;
  overflow: hidden;
  transform: translateZ(0);
  border-color: rgba(247, 249, 251, .2);
  background: rgba(13, 13, 16, .92);
  color: var(--white);
  animation:
    aurora-travel 3.1s linear infinite,
    aurora-edge-fade 3.1s linear infinite,
    aurora-spike 4.2s ease-in-out infinite,
    aurora-spike-2 5.3s ease-in-out infinite,
    aurora-spike-3 6.7s -4.8s ease-in-out infinite;
}

.button-aurora:hover {
  border-color: rgba(247, 249, 251, .4);
  background: rgba(22, 22, 27, .96);
}

.button-aurora-label {
  position: relative;
  z-index: 3;
}

.button-aurora::before,
.button-aurora::after,
.button-aurora-bloom {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.button-aurora::before {
  z-index: 0;
  background: var(--aurora-field);
  -webkit-mask-image: radial-gradient(ellipse calc(78px * var(--aurora-w)) calc(60px * var(--aurora-h)) at calc(var(--aurora-x) * 100%) 100%, #fff 0%, rgba(255, 255, 255, .5) 45%, transparent 100%);
  mask-image: radial-gradient(ellipse calc(78px * var(--aurora-w)) calc(60px * var(--aurora-h)) at calc(var(--aurora-x) * 100%) 100%, #fff 0%, rgba(255, 255, 255, .5) 45%, transparent 100%);
  filter: saturate(.9);
  opacity: calc(var(--aurora-edge) * .36);
}

.button-aurora::after {
  z-index: 2;
  padding: 1px;
  background:
    radial-gradient(ellipse calc(24px * var(--aurora-w)) calc(28px * var(--aurora-h)) at calc(var(--aurora-x) * 100%) calc(100% + 2px), rgba(255, 255, 255, .38), transparent 65%),
    var(--aurora-field);
  -webkit-mask:
    radial-gradient(ellipse calc(78px * var(--aurora-w)) calc(60px * var(--aurora-h)) at calc(var(--aurora-x) * 100%) 100%, #fff 0%, rgba(255, 255, 255, .5) 45%, transparent 100%),
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: source-in, xor;
  mask:
    radial-gradient(ellipse calc(78px * var(--aurora-w)) calc(60px * var(--aurora-h)) at calc(var(--aurora-x) * 100%) 100%, #fff 0%, rgba(255, 255, 255, .5) 45%, transparent 100%),
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: intersect, exclude;
  opacity: calc(var(--aurora-edge) * .78);
}

.button-aurora-bloom {
  z-index: 1;
  background:
    radial-gradient(ellipse 4px calc(52px * var(--aurora-spike)) at calc(var(--aurora-x) * 100% - 48px) 100%, rgba(100, 70, 255, .64), transparent),
    radial-gradient(ellipse 5px calc(47px * var(--aurora-spike-2)) at calc(var(--aurora-x) * 100% + 43px) 100%, rgba(50, 200, 100, .62), transparent),
    radial-gradient(ellipse 4px calc(60px * var(--aurora-spike-3)) at calc(var(--aurora-x) * 100% + 103px) 100%, rgba(40, 140, 255, .64), transparent);
  filter: blur(3px) saturate(.9);
  opacity: calc(var(--aurora-edge) * .42);
}

@keyframes aurora-travel {
  0% { --aurora-x: .06; --aurora-w: .5; }
  10% { --aurora-x: .15; --aurora-w: .8; }
  20% { --aurora-x: .25; --aurora-w: 1.1; }
  30% { --aurora-x: .35; --aurora-w: 1.3; }
  40% { --aurora-x: .44; --aurora-w: 1.45; }
  50% { --aurora-x: .5; --aurora-w: 1.5; }
  60% { --aurora-x: .56; --aurora-w: 1.45; }
  70% { --aurora-x: .65; --aurora-w: 1.3; }
  80% { --aurora-x: .75; --aurora-w: 1.1; }
  90% { --aurora-x: .85; --aurora-w: .8; }
  100% { --aurora-x: .94; --aurora-w: .5; }
}

@keyframes aurora-edge-fade {
  0%, 12.5%, 87.5%, 100% { --aurora-edge: 0; }
  32.5%, 67.5% { --aurora-edge: 1; }
}

@keyframes aurora-spike {
  0%, 56%, 100% { --aurora-spike: .16; }
  66% { --aurora-spike: 1.42; }
  76% { --aurora-spike: .22; }
}

@keyframes aurora-spike-2 {
  0%, 43%, 100% { --aurora-spike-2: .14; }
  52% { --aurora-spike-2: 1.28; }
  61% { --aurora-spike-2: .2; }
}

@keyframes aurora-spike-3 {
  0%, 67%, 100% { --aurora-spike-3: .12; }
  74% { --aurora-spike-3: 1.56; }
  83% { --aurora-spike-3: .18; }
}

.button-small {
  min-height: 40px;
  padding-inline: 16px;
  border-radius: 11px;
  font-size: 13px;
}

.button-primary {
  background: var(--action);
  color: #2a0d0a;
}

.button-primary:hover {
  background: #ff7b70;
}

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

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

.button-outline {
  border-color: rgba(247, 249, 251, 0.32);
  background: transparent;
  color: var(--white);
}

.button-outline:hover {
  border-color: var(--white);
  background: rgba(247, 249, 251, 0.06);
}

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

.button-full {
  width: 100%;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(247, 249, 251, 0.74);
  font-size: 14px;
  font-weight: 550;
}

.text-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 160ms ease;
}

.text-link:hover {
  color: var(--white);
}

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

.text-link.dark-link {
  color: var(--ink);
}

.text-link.dark-link:hover {
  color: rgba(20, 23, 27, .68);
}

.hero {
  min-height: 800px;
  padding: calc(var(--product-hunt-height) + var(--header-height) + 88px) 0 92px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(590px, 1.28fr);
  align-items: center;
  gap: 30px;
}

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

.hero-copy h1,
.section-heading h2,
.media-copy h2,
.pricing-heading h2,
.final-layout h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero-copy h1 {
  max-width: 670px;
  font-size: clamp(56px, 6.1vw, 94px);
  line-height: 0.96;
}

.hero-copy > p {
  max-width: 570px;
  margin: 32px 0 0;
  color: rgba(247, 249, 251, 0.65);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 22px;
  margin-top: 36px;
}

.hero-copy .hero-trust {
  margin-top: 22px;
  color: rgba(247, 249, 251, 0.42);
  font: 11px/1.5 var(--mono);
  letter-spacing: 0.015em;
}

.hero-stage {
  position: relative;
  width: min(760px, 59vw);
  height: 545px;
  margin-right: -80px;
  isolation: isolate;
}

.ambient-plane {
  position: absolute;
  z-index: -1;
  inset: 42px 0 38px 50px;
  background: var(--graphite);
  clip-path: polygon(8% 0, 100% 9%, 92% 93%, 0 100%);
  opacity: 0.62;
}

.display {
  position: absolute;
  filter: drop-shadow(0 32px 38px rgba(0, 0, 0, 0.48));
}

.display-left {
  z-index: 2;
  width: 35%;
  left: 0;
  top: 178px;
}

.display-center {
  z-index: 3;
  width: 43%;
  left: 28%;
  top: 92px;
}

.display-right {
  z-index: 2;
  width: 36%;
  right: 0;
  top: 148px;
}

.screen {
  position: relative;
  aspect-ratio: 16 / 10;
  padding: 8px;
  border: 1px solid #3e444b;
  border-radius: 13px;
  background: #090a0c;
}

.wallpaper {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 7px;
  background-image: url("../assets/color_hero.png");
  background-repeat: no-repeat;
  background-size: 300% 100%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.09);
}

.display-left .wallpaper { background-position: 0 50%; }
.display-center .wallpaper { background-position: 50% 50%; }
.display-right .wallpaper { background-position: 100% 50%; }

.stand {
  position: relative;
  display: block;
  width: 30%;
  height: 47px;
  margin: -1px auto 0;
  border-bottom: 7px solid #1f2227;
}

.stand::before {
  content: "";
  position: absolute;
  inset: 0 36% 5px;
  background: #20242a;
}

.section-heading h2,
.media-copy h2,
.pricing-heading h2,
.final-layout h2 {
  font-size: clamp(42px, 5.1vw, 72px);
  line-height: 1.01;
}

.section-heading p,
.pricing-heading p,
.media-copy > p,
.final-layout > div > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 10%;
}

.split-heading p {
  max-width: 490px;
  padding-bottom: 6px;
}

.proof {
  padding: 140px 0 150px;
}

.mode-demo {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  min-height: 560px;
  margin-top: 86px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.mode-tabs {
  border-right: 1px solid var(--line-light);
}

.mode-tabs button {
  width: 100%;
  min-height: 150px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 8px;
  align-items: start;
  padding: 34px 28px 28px 0;
  border: 0;
  border-bottom: 1px solid var(--line-light);
  background: transparent;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, padding-left 180ms ease;
}

.mode-tabs button:last-child {
  border-bottom: 0;
}

.mode-tabs button:hover {
  color: var(--ink);
}

.mode-tabs button[aria-selected="true"] {
  padding-left: 14px;
  color: var(--ink);
  box-shadow: inset 3px 0 0 var(--action-strong);
}

.tab-index {
  padding-top: 3px;
  color: #8b9299;
  font: 10px/1 var(--mono);
}

.mode-tabs strong,
.mode-tabs small {
  display: block;
}

.mode-tabs strong {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.025em;
}

.mode-tabs small {
  margin-top: 7px;
  color: #737a81;
  font-size: 13px;
  line-height: 1.45;
}

.mode-panel {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 4% 28px 7%;
  overflow: hidden;
}

.demo-stage {
  position: relative;
  width: 100%;
  min-height: 360px;
}

.demo-display {
  position: absolute;
  transition: opacity 360ms ease, transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.demo-left { width: 31%; left: 0; top: 104px; }
.demo-center { width: 39%; left: 30%; top: 48px; }
.demo-right { width: 31%; right: 0; top: 87px; }

.demo-screen {
  display: block;
  aspect-ratio: 16 / 10;
  border: 7px solid #1a1d22;
  border-radius: 11px;
  background-image: url("../assets/color_hero.png");
  background-repeat: no-repeat;
  background-size: 300% 100%;
  box-shadow: 0 24px 30px rgba(22, 27, 31, 0.18);
  transition: background-image 220ms ease, background-position 360ms ease;
}

.demo-left .demo-screen { background-position: 0 50%; }
.demo-center .demo-screen { background-position: 50% 50%; }
.demo-right .demo-screen { background-position: 100% 50%; }

.demo-display::after {
  content: "";
  display: block;
  width: 22%;
  height: 33px;
  margin: 0 auto;
  border-bottom: 5px solid #25292e;
  background: linear-gradient(90deg, transparent 37%, #25292e 37%, #25292e 63%, transparent 63%);
}

.demo-horizon {
  position: absolute;
  z-index: 3;
  top: 188px;
  left: -5%;
  width: 110%;
  height: 1px;
  background: var(--action-strong);
  transition: opacity 220ms ease, transform 400ms ease;
}

[data-mode-panel="individual"] .demo-horizon {
  opacity: 0;
}

[data-mode-panel="individual"] .demo-left .demo-screen {
  background-image: url("https://media.walltune.app/thumbnails/CBF6156E-D903-467A-83F6-5BB1D7E796DE.jpg");
  background-size: cover;
}

[data-mode-panel="individual"] .demo-center .demo-screen {
  background-image: url("https://media.walltune.app/thumbnails/2D4CEB9D-4634-4263-8DB3-CD6F879D2AF5.jpg");
  background-size: cover;
}

[data-mode-panel="individual"] .demo-right .demo-screen {
  background-image: url("https://media.walltune.app/thumbnails/5DF160C4-D1BA-43B1-9F74-36634962709E.jpg");
  background-size: cover;
}

.demo-stage.is-reconnecting .demo-right {
  opacity: 0;
  transform: translate(90px, 20px);
}

.demo-stage.is-restored .demo-right {
  animation: restore-display 780ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes restore-display {
  from { opacity: 0; transform: translate(90px, 20px); }
  to { opacity: 1; transform: translate(0, 0); }
}

.mode-status {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--line-light);
  color: #4e565d;
  font-size: 12px;
}

.status-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--geometry);
  box-shadow: 0 0 0 4px rgba(114, 212, 207, 0.13);
}

.mode-measure {
  margin-left: auto;
  color: #8a9095;
  font: 10px/1 var(--mono);
}

.system {
  padding: 150px 0;
}

.narrow-heading {
  max-width: 900px;
}

.narrow-heading p {
  max-width: 650px;
  margin-top: 30px;
  color: rgba(247, 249, 251, 0.57);
}

.system-chapter {
  display: grid;
  grid-template-columns: minmax(250px, 0.76fr) minmax(560px, 1.24fr);
  gap: 9%;
  align-items: center;
  min-height: 510px;
  padding: 76px 0;
  border-top: 1px solid var(--line-dark);
}

.system-chapter:first-of-type {
  margin-top: 90px;
}

.system-chapter:last-of-type {
  border-bottom: 1px solid var(--line-dark);
}

.chapter-number {
  display: block;
  margin-bottom: 72px;
  color: var(--action);
  font: 11px/1 var(--mono);
}

.chapter-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.chapter-copy p {
  max-width: 450px;
  margin: 24px 0 0;
  color: rgba(247, 249, 251, 0.58);
  font-size: 16px;
}

.identity-map {
  position: relative;
  min-height: 330px;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  background: #0b0d10;
  overflow: hidden;
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 97, 84, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 97, 84, 0.07) 1px, transparent 1px);
  background-size: 36px 36px;
}

.map-display {
  position: absolute;
  z-index: 2;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 97, 84, 0.45);
  border-radius: 7px;
  background: rgba(24, 28, 33, 0.92);
  box-shadow: 0 0 0 4px rgba(255, 97, 84, 0.04);
}

.map-display span,
.map-display b {
  font: 9px/1 var(--mono);
  font-weight: 400;
}

.map-display span { color: var(--white); }
.map-display b { color: rgba(255, 97, 84, 0.72); }
.map-one { width: 25%; left: 7%; top: 43%; }
.map-two { width: 33%; left: 34%; top: 24%; }
.map-three { width: 24%; right: 6%; top: 39%; }

.map-path {
  position: absolute;
  z-index: 3;
  inset: 26px 20px 10px;
  width: calc(100% - 40px);
  height: calc(100% - 36px);
  fill: none;
  stroke: var(--geometry);
  stroke-dasharray: 4 7;
  stroke-width: 1;
  opacity: 0.66;
}

.adapt-sequence {
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.sequence-row {
  min-height: 94px;
  display: grid;
  grid-template-columns: 72px 1fr 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(247, 249, 251, 0.46);
}

.sequence-row:last-child {
  border-bottom: 0;
}

.sequence-row.active {
  margin-inline: -12px;
  border: 1px solid rgba(255, 97, 84, 0.38);
  border-radius: 12px;
  background: var(--graphite);
  color: var(--white);
}

.sequence-time {
  color: var(--action);
  font: 11px/1 var(--mono);
}

.sequence-rule {
  font-size: 13px;
}

.sequence-row strong {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 550;
}

.native-object {
  min-height: 360px;
  padding: 0 8%;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  background: url("../assets/color_hero.png") center/cover;
  overflow: hidden;
}

.mac-menu {
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border-radius: 0 0 10px 10px;
  background: rgba(9, 10, 12, 0.86);
  color: var(--white);
  font-size: 11px;
}

.menu-icons {
  color: rgba(247, 249, 251, 0.7);
}

.native-popover {
  width: min(330px, 90%);
  margin: 46px 0 0 auto;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: #171a1f;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}

.native-popover > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.native-popover img { border-radius: 10px; }
.native-popover strong,
.native-popover small { display: block; }
.native-popover strong { font-size: 14px; }
.native-popover small { color: rgba(247, 249, 251, 0.52); font-size: 11px; }
.native-popover button {
  width: 100%;
  min-height: 42px;
  margin-top: 17px;
  border: 0;
  border-radius: 10px;
  background: var(--action);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.art {
  padding: 150px 0 130px;
}

.art-heading p {
  color: rgba(247, 249, 251, 0.55);
}

.art-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.75fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  height: 720px;
  margin-top: 80px;
}

.art-piece {
  position: relative;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: var(--graphite);
}

.art-feature { grid-row: 1 / 3; }

.art-piece img,
.art-piece video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.art-piece::after {
  content: "";
  position: absolute;
  inset: 48% 0 0;
  background: linear-gradient(transparent, rgba(5, 6, 8, 0.86));
  pointer-events: none;
}

.art-piece figcaption {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  padding: 24px;
}

.art-piece strong,
.art-piece small {
  display: block;
}

.art-piece strong {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 550;
  letter-spacing: -0.02em;
}

.art-piece small,
.art-kind {
  margin-top: 4px;
  color: rgba(247, 249, 251, 0.58);
  font-size: 11px;
}

.art-kind {
  font-family: var(--mono);
}

.light-link {
  margin-top: 34px;
}

.scenes-feature {
  padding: 145px 0;
}

.media-layout {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 10%;
  align-items: center;
}

.media-copy > p {
  max-width: 500px;
  margin-top: 26px;
}

.plain-list {
  margin: 48px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.plain-list li {
  min-height: 58px;
  display: grid;
  grid-template-columns: 45px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  font-size: 13px;
}

.plain-list li span:first-child {
  color: #80868c;
  font: 10px/1 var(--mono);
}

.media-workflow {
  min-height: 460px;
  display: grid;
  grid-template-columns: 0.75fr 100px 1.25fr;
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 62px 44px 32px;
  border: 1px solid var(--line-light);
  border-radius: 16px;
  background: var(--paper-raised);
}

.source-file {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.file-preview {
  aspect-ratio: 16 / 10;
  display: block;
  border-radius: 10px;
  background: url("../assets/color_hero.png") center/cover;
  box-shadow: 0 18px 28px rgba(20, 23, 27, 0.14);
}

.source-file strong,
.source-file small {
  display: block;
}

.source-file strong {
  font-size: 12px;
}

.source-file small {
  color: #7b8186;
  font: 9px/1.6 var(--mono);
}

.workflow-arrow {
  width: 100%;
  fill: none;
  stroke: var(--action-strong);
  stroke-dasharray: 4 5;
  stroke-width: 1.2;
}

.workflow-displays {
  position: relative;
  min-height: 220px;
}

.workflow-displays span {
  position: absolute;
  aspect-ratio: 16 / 10;
  border: 5px solid #20242a;
  border-radius: 8px;
  background-image: url("../assets/color_hero.png");
  background-size: 300% 100%;
  box-shadow: 0 17px 24px rgba(20, 23, 27, 0.16);
}

.workflow-displays span:nth-child(1) { width: 42%; left: 0; top: 70px; background-position: 0 50%; }
.workflow-displays span:nth-child(2) { z-index: 2; width: 51%; left: 25%; top: 25px; background-position: 50% 50%; }
.workflow-displays span:nth-child(3) { width: 41%; right: 0; top: 60px; background-position: 100% 50%; }

.media-workflow > p {
  grid-column: 1 / -1;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  border-top: 1px solid var(--line-light);
  color: #62696f;
  font-size: 11px;
}

.pricing {
  padding: 80px 0 135px;
}

.trial-banner {
  min-height: 148px;
  display: grid;
  grid-template-columns: 98px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 20px 32px;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  background: #171a1f;
  margin-bottom: 20px;
}

.trial-number {
  color: var(--action);
  font: 72px/1 var(--display);
  font-weight: 600;
  letter-spacing: -0.06em;
}

.trial-banner strong,
.trial-banner small {
  display: block;
}

.trial-banner strong {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 550;
}

.trial-banner small {
  margin-top: 6px;
  color: rgba(247, 249, 251, 0.52);
  font-size: 12px;
}

.pricing-heading {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  gap: 12%;
  padding: 0 0 68px;
}

.pricing-heading p {
  max-width: 470px;
  color: rgba(247, 249, 251, 0.55);
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.price-option {
  min-height: 650px;
  display: flex;
  flex-direction: column;
  padding: 38px;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  background: #13161a;
}

.price-direct {
  border-color: rgba(255, 97, 84, 0.36);
}

.price-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
}

.option-tag {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 97, 84, 0.1);
  color: var(--action);
  font: 9px/1 var(--mono);
  text-transform: uppercase;
}

.price-option h3 {
  margin: 46px 0 0;
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-top: 26px;
  color: var(--white);
}

.price-amount .price-currency {
  align-self: flex-start;
  margin-top: 8px;
  color: rgba(247, 249, 251, .58);
  font: 500 17px/1 var(--display);
}

.price-amount strong {
  font: 600 clamp(46px, 5vw, 68px)/.9 var(--display);
  letter-spacing: -.04em;
}

.price-amount small {
  color: rgba(247, 249, 251, .45);
  font: 10px/1 var(--mono);
  text-transform: uppercase;
}

.price-amount + p {
  margin-top: 20px;
}

.price-option > p {
  max-width: 470px;
  margin: 22px 0 0;
  color: rgba(247, 249, 251, 0.54);
  font-size: 14px;
}

.price-option h4 {
  margin: 34px 0 0;
  color: rgba(247, 249, 251, 0.48);
  font: 10px/1 var(--mono);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-option ul {
  margin: 32px 0 38px;
  padding: 0;
  list-style: none;
}

.price-option li {
  min-height: 38px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(247, 249, 251, 0.09);
  color: rgba(247, 249, 251, 0.75);
  font-size: 12px;
}

.price-option li::before {
  content: "";
  width: 8px;
  height: 4px;
  flex: 0 0 auto;
  margin: -2px 14px 0 2px;
  border-bottom: 1.5px solid var(--action);
  border-left: 1.5px solid var(--action);
  transform: rotate(-45deg);
}

.price-option li.is-unavailable {
  color: rgba(247, 249, 251, 0.42);
}

.price-option li.is-unavailable::before {
  width: 9px;
  height: 0;
  margin-top: 0;
  border: 0;
  border-top: 1.5px solid rgba(247, 249, 251, 0.36);
  transform: none;
}


.checkout-status {
  min-height: 18px;
  margin: 12px 0 0 !important;
  color: rgba(247, 249, 251, 0.62) !important;
  font-size: 12px !important;
  line-height: 1.45;
  text-align: center;
}

.checkout-status[hidden] {
  display: block;
  visibility: hidden;
}

.pricing-disclosure {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) 1fr;
  gap: 48px;
  margin-top: 18px;
  padding: 28px 30px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  color: rgba(247, 249, 251, 0.62);
}

.pricing-disclosure strong {
  color: var(--white);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 550;
}

.pricing-disclosure p {
  max-width: 68ch;
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.browser-extension-band {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
  margin-top: 74px;
  padding: 50px 0 2px;
  border-top: 1px solid var(--line-dark);
}

.browser-extension-copy {
  max-width: 410px;
}

.browser-extension-copy .section-kicker {
  color: var(--action);
}

.browser-extension-copy h3 {
  margin: 18px 0 0;
  font-family: var(--display);
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.browser-extension-copy p {
  max-width: 38ch;
  margin: 20px 0 0;
  color: rgba(247, 249, 251, 0.56);
  font-size: 14px;
}

.browser-extension-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.browser-extension-item {
  min-width: 0;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 12px;
  border-right: 1px solid var(--line-dark);
  color: var(--white);
  text-align: center;
  text-decoration: none;
}

.browser-extension-item:last-child {
  border-right: 0;
}

.browser-extension-item img {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: contain;
}

.browser-extension-item strong {
  margin-top: 14px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
}

.browser-extension-item small {
  margin-top: 6px;
  color: rgba(247, 249, 251, 0.46);
  font: 9px/1.25 var(--mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.browser-extension-item.is-coming {
  opacity: 0.48;
}

.browser-extension-item.is-actionable {
  transition: background-color 160ms ease, color 160ms ease;
}

.browser-extension-item.is-actionable small {
  color: var(--action);
}

.browser-extension-item.is-actionable:hover,
.browser-extension-item.is-actionable:focus-visible {
  background: rgba(255, 97, 84, 0.08);
}

.browser-extension-item.is-actionable:focus-visible {
  outline: 2px solid var(--action);
  outline-offset: -2px;
}

.final-cta {
  padding: 145px 0 120px;
  overflow: hidden;
}

.final-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.65fr;
  gap: 15%;
  align-items: end;
}

.final-layout > div > p {
  max-width: 430px;
  margin-bottom: 30px;
}

.site-footer {
  padding: 68px 0 36px;
  border-top: 1px solid var(--line-dark);
  background: var(--void);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1.5fr) repeat(3, minmax(112px, 1fr));
  align-items: start;
  gap: 48px 36px;
}

.footer-brand-copy,
.footer-copyright {
  margin: 0;
}

.footer-brand-copy {
  max-width: 250px;
  margin-top: 20px;
  color: rgba(247, 249, 251, 0.54);
  font-size: 13px;
  line-height: 1.6;
}

.footer-copyright {
  margin-top: 38px;
  color: rgba(247, 249, 251, 0.38);
  font-size: 11px;
}

.footer-group h2 {
  margin: 4px 0 18px;
  color: rgba(247, 249, 251, 0.86);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0;
}

.footer-group nav {
  display: grid;
  gap: 12px;
}

.footer-group a {
  width: fit-content;
  color: rgba(247, 249, 251, 0.5);
  font-size: 13px;
  line-height: 1.45;
  transition: color 160ms ease;
}

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

@media (max-width: 1040px) {
  .footer-inner {
    grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(120px, 1fr));
  }
}

@media (max-width: 1040px) {
  :root { --shell: min(100% - 40px, 920px); }

  .site-header {
    grid-template-columns: auto 1fr auto;
    padding-inline: 22px;
  }

  .site-nav {
    display: flex;
    justify-self: center;
    gap: 18px;
  }

  .header-actions .language-switch {
    display: none;
  }

  .hero {
    padding-top: 138px;
  }

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

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

  .hero-stage {
    width: 100%;
    max-width: 820px;
    margin: 24px 0 -20px;
  }

  .mode-demo {
    grid-template-columns: 250px 1fr;
  }

  .system-chapter {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 6%;
  }

  .media-layout {
    gap: 7%;
  }

  .media-workflow {
    grid-template-columns: 0.7fr 60px 1.3fr;
    padding-inline: 28px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100vw - 32px);
    --product-hunt-height: 34px;
    --header-height: 66px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 16px;
  }

  .header-actions {
    display: none;
  }

  .menu-button {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 0;
    background: none;
    cursor: pointer;
  }

  .menu-button span:not(.sr-only) {
    width: 22px;
    height: 1px;
    background: var(--white);
    transition: transform 180ms ease;
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) { transform: translateY(3.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }

  .site-nav {
    position: fixed;
    inset: calc(var(--product-hunt-height) + var(--header-height)) 0 0;
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-self: stretch;
    gap: 0;
    padding: 32px 16px;
    background: var(--void);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 68px;
    border-bottom: 1px solid var(--line-dark);
    color: var(--white);
    font-family: var(--display);
    font-size: 28px;
    letter-spacing: -0.03em;
  }

  .site-nav .nav-affiliate {
    justify-content: space-between;
  }

  .nav-commission {
    min-height: 24px;
    padding-inline: 9px;
    font-size: 10px;
  }

  .mobile-nav-tools {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
  }

  .mobile-nav-tools .language-switch {
    display: flex;
  }

  .mobile-nav-tools .language-switch button {
    min-height: 48px;
  }

  .mobile-nav-tools > .button {
    min-height: 48px;
    border-bottom: 0;
    color: var(--ink);
    font-family: var(--body);
    font-size: 13px;
    letter-spacing: 0;
  }

  .hero {
    min-height: auto;
    padding: 118px 0 74px;
  }

  .hero-copy h1 {
    font-size: clamp(46px, 12.4vw, 52px);
  }

  .hero-copy > p {
    margin-top: 24px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 28px;
  }

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

  .hero-stage {
    height: 330px;
    margin-top: 28px;
  }

  .display-left { top: 114px; }
  .display-center { top: 58px; }
  .display-right { top: 96px; }
  .screen { padding: 4px; border-radius: 7px; }
  .wallpaper { border-radius: 4px; }
  .stand { height: 28px; border-bottom-width: 4px; }

  .section-heading h2,
  .media-copy h2,
  .pricing-heading h2,
  .final-layout h2 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .split-heading,
  .pricing-heading,
  .media-layout,
  .final-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .proof,
  .system,
  .art,
  .scenes-feature,
  .final-cta {
    padding-block: 94px;
  }

  .proof .section-heading p,
  .art .section-heading p {
    margin-top: 22px;
  }

  .mode-demo {
    grid-template-columns: 1fr;
    min-height: 0;
    margin-top: 54px;
  }

  .mode-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
    overflow-x: auto;
  }

  .mode-tabs button {
    min-width: 105px;
    min-height: 92px;
    display: block;
    padding: 18px 10px;
    border-right: 1px solid var(--line-light);
    border-bottom: 0;
  }

  .mode-tabs button[aria-selected="true"] {
    padding-left: 10px;
    box-shadow: inset 0 -3px 0 var(--action-strong);
  }

  .mode-tabs button > span:last-child { display: block; }
  .tab-index { display: none; }
  .mode-tabs strong { font-size: 14px; }
  .mode-tabs small { display: none; }

  .mode-panel {
    padding: 38px 0 10px;
  }

  .demo-stage { min-height: 260px; }
  .demo-left { top: 84px; }
  .demo-center { top: 44px; }
  .demo-right { top: 70px; }
  .demo-screen { border-width: 4px; border-radius: 7px; }
  .demo-display::after { height: 22px; border-bottom-width: 3px; }
  .demo-horizon { top: 138px; }
  .mode-measure { display: none; }

  .narrow-heading p {
    margin-top: 24px;
  }

  .system-chapter {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 44px;
    padding: 62px 0;
  }

  .system-chapter:first-of-type { margin-top: 58px; }
  .chapter-number { margin-bottom: 36px; }
  .chapter-copy h3 { font-size: 36px; }
  .identity-map { min-height: 260px; }
  .map-display { padding: 7px; }
  .map-display b { display: none; }

  .sequence-row {
    min-height: 76px;
    grid-template-columns: 58px 1fr;
    gap: 14px;
    padding-inline: 14px;
  }

  .sequence-row strong { grid-column: 2; margin-top: -18px; font-size: 14px; }
  .native-object { min-height: 315px; padding-inline: 14px; }

  .art-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.35fr 0.8fr 0.8fr;
    height: 850px;
    margin-top: 50px;
  }

  .art-feature { grid-column: 1 / -1; grid-row: auto; }
  .art-piece figcaption { padding: 16px; }
  .art-piece strong { font-size: 13px; }
  .art-kind { display: none; }

  .media-workflow {
    min-height: 390px;
    grid-template-columns: 0.72fr 30px 1.28fr;
    padding: 36px 18px 18px;
  }

  .workflow-displays { min-height: 180px; }
  .source-file strong { word-break: break-word; }
  .source-file small { display: none; }

  .pricing {
    padding-bottom: 94px;
  }

  .trial-banner {
    grid-template-columns: 62px 1fr;
    padding: 24px 18px;
  }

  .trial-number { font-size: 58px; }
  .trial-banner .button { grid-column: 1 / -1; }
  .pricing-heading { padding: 86px 0 48px; }

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

  .price-option {
    min-height: 500px;
    padding: 28px 22px;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 24px;
  }

  .footer-brand-block {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 420px) {
  .hero-stage { height: 285px; }
  .display-left { top: 103px; }
  .display-center { top: 52px; }
  .display-right { top: 88px; }

  .art-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.25fr 0.8fr 0.8fr;
    gap: 12px;
    height: 720px;
  }

  .art-feature { grid-column: 1 / -1; }

  .art-piece figcaption { padding: 12px; }
  .art-piece strong { font-size: 12px; }

  .media-workflow {
    grid-template-columns: 0.65fr 18px 1.35fr;
  }

  .footer-group nav {
    gap: 0;
  }

  .footer-group a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

/* Cinematic product hero and animated proof */
.hero-cinematic {
  min-height: 1030px;
  padding: calc(var(--product-hunt-height) + var(--header-height) + 72px) 0 64px;
  background: var(--void);
}

.hero-cinematic .hero-inner {
  display: block;
}

.hero-cinematic .hero-copy {
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
}

.hero-cinematic .hero-copy h1 {
  position: relative;
  width: fit-content;
  max-width: none;
  margin-inline: auto;
  font-size: clamp(64px, 7.4vw, 96px);
  line-height: 0.94;
}

.hero-cinematic .hero-copy > p {
  max-width: 680px;
  margin: 26px auto 0;
  font-size: clamp(16px, 1.3vw, 19px);
}

.hero-cinematic .hero-actions {
  justify-content: center;
  margin-top: 30px;
}

.hero-cinematic .hero-copy .hero-trust {
  margin: 18px auto 0;
}

.notarized-seal {
  position: absolute;
  top: -28px;
  right: -118px;
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  margin: 0;
  color: rgba(247, 249, 251, .76);
  pointer-events: none;
}

.notarized-seal-text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: currentColor;
  font: 700 8px/1 var(--body);
  letter-spacing: .14em;
  animation: notarized-seal-spin 22s linear infinite;
}

.notarized-seal-apple {
  width: 34px;
  height: 34px;
  fill: var(--white);
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, .36));
}

@keyframes notarized-seal-spin {
  to { transform: rotate(360deg); }
}

.hero-visual {
  position: relative;
  max-width: 1180px;
  height: 610px;
  margin: 36px auto 0;
  isolation: isolate;
}

.hero-cinematic .hero-stage {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 550px;
  margin: 0;
}

.hero-cinematic .display {
  filter: drop-shadow(0 30px 38px rgba(0, 0, 0, 0.58));
}

.hero-cinematic .display-left {
  width: 34%;
  left: 0;
  top: 132px;
}

.hero-cinematic .display-center {
  width: 42%;
  left: 29%;
  top: 58px;
}

.hero-cinematic .display-right {
  width: 34%;
  right: 0;
  top: 116px;
}

.hero-cinematic .screen {
  padding: 7px;
  border-color: rgba(247, 249, 251, 0.24);
  background: #07080a;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.hero-cinematic .screen video {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 7px;
  background: url("../assets/color_hero.png") center / cover;
  object-fit: cover;
}

.hero-cinematic .display-left video { object-position: left center; }
.hero-cinematic .display-center video { object-position: center; }
.hero-cinematic .display-right video { object-position: right center; }

.hero-cinematic .stand {
  height: 45px;
}

.bento-proof {
  padding: 144px 0 150px;
}

.bento-heading {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.bento-heading p {
  max-width: 610px;
  margin: 26px auto 0;
}

.product-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 272px 272px 256px;
  gap: 16px;
  margin-top: 76px;
}

.bento-card {
  position: relative;
  min-width: 0;
  padding: 30px;
  border: 1px solid rgba(20, 23, 27, 0.13);
  border-radius: 16px;
  background: var(--carbon);
  color: var(--white);
  overflow: hidden;
}

.bento-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(transparent, rgba(8, 9, 11, 0.28));
  pointer-events: none;
}

.bento-copy {
  position: relative;
  z-index: 5;
  max-width: 430px;
}

.bento-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(21px, 2.1vw, 30px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.bento-copy p {
  max-width: 48ch;
  margin: 10px 0 0;
  color: rgba(247, 249, 251, 0.52);
  font-size: 13px;
  line-height: 1.5;
}

.bento-span {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
  background: #0c0e11;
}

.bento-individual {
  grid-column: 8 / 13;
  grid-row: 1;
}

.bento-reconnect {
  grid-column: 8 / 13;
  grid-row: 2;
}

.bento-profiles {
  grid-column: 1 / 6;
  grid-row: 3;
}

.bento-import {
  grid-column: 6 / 13;
  grid-row: 3;
}

.bento-span-stage {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 18px;
  left: 24px;
  height: 330px;
}

.bento-monitor {
  position: absolute;
  display: block;
  filter: drop-shadow(0 18px 20px rgba(0, 0, 0, 0.34));
}

.bento-monitor::after {
  content: "";
  display: block;
  width: 22%;
  height: 29px;
  margin: 0 auto;
  border-bottom: 4px solid #262b31;
  background: linear-gradient(90deg, transparent 38%, #262b31 38%, #262b31 62%, transparent 62%);
}

.bento-monitor i {
  display: block;
  aspect-ratio: 16 / 10;
  border: 6px solid #22262c;
  border-radius: 10px;
  background: url("../assets/color_hero.png") no-repeat;
  background-size: 300% 100%;
}

.span-left { width: 37%; left: 1%; top: 90px; }
.span-center { z-index: 2; width: 46%; left: 27%; top: 20px; }
.span-right { width: 37%; right: 1%; top: 76px; }
.span-left i { background-position: 0 50%; }
.span-center i { background-position: 50% 50%; }
.span-right i { background-position: 100% 50%; }

.individual-screens {
  position: absolute;
  right: 24px;
  bottom: 20px;
  left: 24px;
  height: 108px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.individual-screens > span {
  position: relative;
  border: 4px solid #262b31;
  border-radius: 8px;
  overflow: hidden;
}

.individual-screens i,
.individual-screens b {
  position: absolute;
  inset: 0;
  display: block;
  background-position: center;
  background-size: cover;
}

.individual-screens span:nth-child(1) i { background-image: url("https://media.walltune.app/thumbnails/CBF6156E-D903-467A-83F6-5BB1D7E796DE.jpg"); }
.individual-screens span:nth-child(2) i { background-image: url("https://media.walltune.app/thumbnails/2D4CEB9D-4634-4263-8DB3-CD6F879D2AF5.jpg"); }
.individual-screens span:nth-child(3) i { background-image: url("https://media.walltune.app/thumbnails/5DF160C4-D1BA-43B1-9F74-36634962709E.jpg"); }
.individual-screens span:nth-child(1) b { background-image: url("https://media.walltune.app/thumbnails/BCD3DE49-E2B4-4E27-A5C2-D97CB1846D69.jpg"); }
.individual-screens span:nth-child(2) b { background-image: url("../assets/color_hero.png"); }
.individual-screens span:nth-child(3) b { background-image: url("https://media.walltune.app/thumbnails/CC82F5CD-C2D2-4E22-9859-F5FD10D2E19D.jpg"); }
.individual-screens b { animation: individual-change 8s ease-in-out infinite; }
.individual-screens span:nth-child(2) b { animation-delay: -2.6s; }
.individual-screens span:nth-child(3) b { animation-delay: -5.2s; }

@keyframes individual-change {
  0%, 32%, 100% { opacity: 0; transform: scale(1.02); }
  44%, 78% { opacity: 1; transform: scale(1); }
}

.reconnect-stage {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  height: 100px;
}

.reconnect-stage > span {
  position: absolute;
  bottom: 10px;
  width: 28%;
  aspect-ratio: 16 / 10;
  border: 4px solid #272c32;
  border-radius: 7px;
  background: url("../assets/color_hero.png") center / 300% 100%;
}

.reconnect-stage > span:nth-child(1) { left: 3%; background-position: left; }
.reconnect-stage > span:nth-child(2) { left: 35%; background-position: center; }
.reconnect-stage > span:nth-child(3) { right: 3%; background-position: right; }
.returning-display { animation: return-display 7s cubic-bezier(0.16, 1, 0.3, 1) infinite; }

.reconnect-path {
  position: absolute;
  right: 4%;
  bottom: 0;
  width: 27%;
  height: 1px;
  background: var(--geometry);
  transform-origin: right;
  animation: reconnect-path 7s ease-in-out infinite;
}

@keyframes return-display {
  0%, 18% { opacity: 1; transform: translateX(0); }
  32%, 48% { opacity: 0; transform: translateX(58px); }
  65%, 100% { opacity: 1; transform: translateX(0); }
}

@keyframes reconnect-path {
  0%, 48% { opacity: 0; transform: scaleX(0); }
  62%, 82% { opacity: 1; transform: scaleX(1); }
  100% { opacity: 0; transform: scaleX(1); }
}

.profile-sequence {
  position: absolute;
  right: 28px;
  bottom: 24px;
  left: 28px;
  border-top: 1px solid var(--line-dark);
}

.profile-sequence span {
  position: relative;
  z-index: 2;
  min-height: 38px;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line-dark);
}

.profile-sequence i,
.profile-sequence b {
  font-style: normal;
  font-weight: 400;
}

.profile-sequence i {
  color: var(--action);
  font: 9px/1 var(--mono);
}

.profile-sequence b {
  font-size: 11px;
}

.profile-sequence em {
  position: absolute;
  z-index: 1;
  top: 3px;
  right: -8px;
  left: -8px;
  height: 32px;
  border: 1px solid rgba(255, 97, 84, 0.38);
  border-radius: 8px;
  background: rgba(255, 97, 84, 0.05);
  animation: profile-context 8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes profile-context {
  0%, 26% { transform: translateY(0); }
  36%, 62% { transform: translateY(38px); }
  72%, 94% { transform: translateY(76px); }
  100% { transform: translateY(0); }
}

.import-sequence {
  position: absolute;
  right: 30px;
  bottom: 24px;
  left: 30px;
  height: 112px;
  display: grid;
  grid-template-columns: 0.55fr 0.35fr 1fr;
  align-items: center;
  gap: 18px;
}

.import-file {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 10px;
  color: rgba(247, 249, 251, 0.66);
  font: 9px/1.3 var(--mono);
  animation: import-file 6.5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.import-file i {
  width: 42px;
  aspect-ratio: 1;
  display: block;
  border-radius: 8px;
  background: url("../assets/color_hero.png") center / cover;
}

.import-route {
  height: 1px;
  background: var(--action);
  transform-origin: left;
  animation: import-route 6.5s ease-in-out infinite;
}

.import-monitors {
  height: 88px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 5px;
}

.import-monitors i {
  aspect-ratio: 16 / 10;
  display: block;
  border: 3px solid #292e34;
  border-radius: 5px;
  background: url("../assets/color_hero.png") no-repeat;
  background-size: 300% 100%;
  opacity: 0.42;
  animation: import-ready 6.5s ease-in-out infinite;
}

.import-monitors i:nth-child(1) { background-position: left; }
.import-monitors i:nth-child(2) { background-position: center; animation-delay: 100ms; }
.import-monitors i:nth-child(3) { background-position: right; animation-delay: 200ms; }

@keyframes import-file {
  0%, 24%, 100% { opacity: 1; transform: translateX(0); }
  42%, 66% { opacity: 0.36; transform: translateX(26px); }
}

@keyframes import-route {
  0%, 28% { opacity: 0.2; transform: scaleX(0); }
  46%, 78% { opacity: 1; transform: scaleX(1); }
  100% { opacity: 0.2; transform: scaleX(0); }
}

@keyframes import-ready {
  0%, 44%, 100% { opacity: 0.42; filter: saturate(0.55); }
  62%, 82% { opacity: 1; filter: saturate(1); }
}

@media (max-width: 1040px) {
  .hero-cinematic {
    min-height: 940px;
  }

  .hero-cinematic .hero-stage {
    max-width: none;
  }

  .product-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 460px 280px 280px;
  }

  .bento-span { grid-column: 1 / -1; grid-row: 1; }
  .bento-individual { grid-column: 1; grid-row: 2; }
  .bento-reconnect { grid-column: 2; grid-row: 2; }
  .bento-profiles { grid-column: 1; grid-row: 3; }
  .bento-import { grid-column: 2; grid-row: 3; }

  .bento-span-stage {
    max-width: 780px;
    right: 8%;
    left: 8%;
    height: 290px;
  }
}

@media (max-width: 760px) {
  .hero-cinematic {
    min-height: auto;
    padding: calc(var(--product-hunt-height) + 112px) 0 70px;
  }

  .hero-cinematic .hero-copy {
    max-width: 540px;
  }

  .hero-cinematic .hero-copy h1 {
    max-width: 370px;
    margin-inline: auto;
    font-size: clamp(48px, 13.2vw, 56px);
    line-height: 0.96;
  }

  .hero-cinematic .hero-copy > p {
    max-width: 530px;
    margin-top: 22px;
    font-size: 15px;
  }

  .hero-cinematic .hero-actions {
    margin-top: 26px;
  }

  .hero-cinematic .hero-copy .hero-trust {
    margin-top: 16px;
  }

  .hero-visual {
    height: 370px;
    margin-top: 20px;
  }

  .hero-cinematic .hero-stage {
    height: 320px;
  }

  .hero-cinematic .display-left { width: 36%; top: 104px; }
  .hero-cinematic .display-center { width: 45%; left: 27.5%; top: 57px; }
  .hero-cinematic .display-right { width: 36%; top: 92px; }
  .hero-cinematic .screen { padding: 4px; }
  .hero-cinematic .stand { height: 27px; }

  .bento-proof {
    padding: 96px 0;
  }

  .bento-heading {
    text-align: left;
  }

  .bento-heading p {
    margin-left: 0;
  }

  .product-bento {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 52px;
  }

  .bento-card {
    min-height: 300px;
    padding: 24px;
  }

  .bento-span { min-height: 430px; }
  .bento-profiles { min-height: 310px; }
  .bento-import { min-height: 330px; }
  .bento-copy h3 { font-size: 25px; }

  .bento-span-stage {
    right: 12px;
    bottom: 8px;
    left: 12px;
    height: 250px;
  }

  .span-left { top: 80px; }
  .span-center { top: 30px; }
  .span-right { top: 68px; }

  .individual-screens,
  .reconnect-stage {
    right: 18px;
    left: 18px;
  }

  .profile-sequence,
  .import-sequence {
    right: 22px;
    left: 22px;
  }

  .import-sequence {
    grid-template-columns: 0.62fr 0.22fr 1fr;
    gap: 10px;
  }

  .import-file {
    grid-template-columns: 38px 1fr;
    gap: 7px;
  }

  .import-file i { width: 38px; }
}

@media (max-width: 420px) {
  .hero-cinematic .hero-copy h1 {
    max-width: 350px;
    font-size: 47px;
  }

  .hero-cinematic .hero-actions {
    align-items: stretch;
  }

  .hero-visual {
    height: 340px;
  }

  .hero-cinematic .hero-stage {
    height: 290px;
  }

  .hero-cinematic .display-left { top: 100px; }
  .hero-cinematic .display-center { top: 56px; }
  .hero-cinematic .display-right { top: 90px; }
  .bento-span { min-height: 400px; }
  .bento-span-stage { height: 222px; }

  .import-file b { display: none; }
  .import-sequence { grid-template-columns: 42px 0.25fr 1fr; }
}

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

/* Product-first revision: real WallTune surfaces, no invented calibration graphics. */
.hero-cinematic {
  min-height: auto;
  padding-bottom: 48px;
  background: var(--void);
}

.hero-product {
  width: min(1560px, calc(100vw - 32px));
  max-width: none;
  height: auto;
  min-height: 500px;
  margin-top: 48px;
  margin-left: 50%;
  padding-bottom: 0;
  transform: translateX(-50%);
}

.display-mode-switch {
  position: relative;
  z-index: 4;
  width: max-content;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 3px;
  margin: 0 auto 18px;
  padding: 4px;
  border: 1px solid rgba(247, 249, 251, 0.16);
  border-radius: 13px;
  background: #111317;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.display-mode-switch button {
  min-height: 36px;
  padding: 0 14px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: rgba(247, 249, 251, 0.58);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, transform 120ms ease;
}

.display-mode-switch button:hover {
  color: var(--white);
}

.display-mode-switch button:active {
  transform: scale(0.98);
}

.display-mode-switch button[aria-pressed="true"] {
  background: var(--white);
  color: var(--ink);
}

.hero-desktop-scene {
  --desktop-gap: 12px;
  position: relative;
  z-index: 3;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--desktop-gap);
  transition: grid-template-columns 420ms cubic-bezier(0.22, 1, 0.36, 1), gap 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-desktop-scene[data-display-mode="single"] {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0fr);
  gap: 0;
}

.desktop-surface {
  position: relative;
  width: 100%;
  max-width: 980px;
  min-width: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 14px;
  background: #111317;
  box-shadow:
    inset 0 0 0 1px rgba(247, 249, 251, 0.16),
    0 28px 60px rgba(0, 0, 0, 0.44);
  transition: opacity 240ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-desktop-scene[data-display-mode="single"] .desktop-surface-left {
  justify-self: center;
}

.hero-desktop-scene[data-display-mode="single"] .desktop-surface-right {
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px) scale(0.96);
}

.desktop-wallpaper {
  position: absolute;
  top: 0;
  bottom: 0;
  width: calc(200% + var(--desktop-gap));
  max-width: none;
  height: 100%;
  display: block;
  object-fit: cover;
}

.desktop-surface-left .desktop-wallpaper {
  left: 0;
}

.desktop-surface-right .desktop-wallpaper {
  right: 0;
}

.hero-desktop-scene[data-display-mode="single"] .desktop-wallpaper {
  right: auto;
  left: 0;
  width: 100%;
}

.desktop-menu {
  position: relative;
  z-index: 3;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  background: transparent;
  color: #fff;
  font: 9px/1 -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9), 0 0 6px rgba(0, 0, 0, 0.48);
}

.desktop-menu-left,
.desktop-menu-right {
  display: inline-flex;
  align-items: center;
}

.desktop-menu-left {
  gap: 10px;
}

.desktop-menu-right {
  gap: 8px;
}

.desktop-apple {
  width: 11px;
  font-size: 13px;
  line-height: 1;
  text-align: center;
}

.desktop-menu-app {
  font-weight: 700;
}

.desktop-status-icon {
  width: 13px;
  height: 11px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.78));
}

.desktop-control-center {
  width: 12px;
}

.desktop-notch {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 50%;
  width: 86px;
  height: 18px;
  border-radius: 0 0 10px 10px;
  background: #050607;
  transform: translateX(-50%);
}

.desktop-dock {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 8px;
  width: 72%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.38));
  transform: translateX(-50%);
}

.hero-product .hero-light-spill {
  position: relative;
  z-index: 1;
  width: 110%;
  height: clamp(112px, 10vw, 150px);
  margin: 16px -5% -100px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.72) 14%, rgba(0, 0, 0, 0.44) 42%, transparent 96%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.72) 14%, rgba(0, 0, 0, 0.44) 42%, transparent 96%);
  pointer-events: none;
}

.hero-reflection-grid {
  --reflection-desktop-gap: 12px;
  width: 90.909%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--reflection-desktop-gap);
  margin-inline: auto;
  opacity: 0.34;
  filter: blur(16px) saturate(1.12);
  -webkit-filter: blur(16px) saturate(1.12);
  transform: translateZ(0);
  transform-origin: center top;
}

.reflection-surface {
  position: relative;
  width: 100%;
  max-width: 980px;
  min-width: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  transform: scaleY(-1);
  transform-origin: center;
}

.reflection-wallpaper {
  position: absolute;
  top: 0;
  bottom: 0;
  width: calc(200% + var(--reflection-desktop-gap));
  max-width: none;
  height: 100%;
  display: block;
  object-fit: cover;
}

.reflection-surface-left .reflection-wallpaper {
  left: 0;
}

.reflection-surface-right .reflection-wallpaper {
  right: 0;
}

.hero-desktop-scene[data-display-mode="single"] + .hero-light-spill {
  width: min(1078px, 110%);
  margin-right: auto;
  margin-left: auto;
}

.hero-desktop-scene[data-display-mode="single"] + .hero-light-spill .hero-reflection-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0fr);
  gap: 0;
}

.hero-desktop-scene[data-display-mode="single"] + .hero-light-spill .reflection-surface-left {
  justify-self: center;
}

.hero-desktop-scene[data-display-mode="single"] + .hero-light-spill .reflection-surface-right {
  opacity: 0;
}

.hero-desktop-scene[data-display-mode="single"] + .hero-light-spill .reflection-wallpaper {
  right: auto;
  left: 0;
  width: 100%;
}

.hero-demo-caption {
  position: relative;
  z-index: 2;
  width: min(640px, calc(100% - 32px));
  margin: 16px auto 20px;
  text-align: center;
}

.hero-demo-caption-title,
.hero-demo-caption-body {
  margin: 0;
  font-family: var(--body);
}

.hero-demo-caption-title {
  color: rgba(247, 249, 251, 0.9);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.hero-demo-caption-body {
  max-width: 62ch;
  margin: 9px auto 0;
  color: rgba(247, 249, 251, 0.6);
  font-size: 14px;
  line-height: 1.55;
}

.product-bento {
  grid-template-rows: 280px 380px 450px 310px;
}

.evidence-card {
  min-height: 0;
  padding: 28px;
  background: #0d0f12;
}

.evidence-card::after {
  z-index: 3;
  top: 0;
  height: 58%;
  background: linear-gradient(180deg, rgba(8, 9, 11, 0.96) 0%, rgba(8, 9, 11, 0.7) 50%, transparent 100%);
}

.evidence-card .bento-copy {
  z-index: 5;
}

.evidence-media {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: #111317;
}

.evidence-media video,
.evidence-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.evidence-contain {
  padding: 108px 24px 20px;
  background: #101216;
}

.evidence-contain img {
  object-fit: contain;
}

.evidence-linked {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
}

.evidence-align {
  grid-column: 8 / 13;
  grid-row: 1;
}

.evidence-focus {
  grid-column: 8 / 13;
  grid-row: 2;
  background: #111318;
  isolation: isolate;
}

.evidence-focus::after {
  z-index: 2;
  inset: 0;
  height: auto;
  background: linear-gradient(180deg, rgba(7, 8, 10, 0.92) 0%, rgba(7, 8, 10, 0.62) 48%, rgba(7, 8, 10, 0.84) 100%);
}

.focus-wallpapers,
.focus-wallpapers img {
  position: absolute;
  inset: 0;
}

.focus-wallpapers {
  z-index: 1;
  background: #111318;
}

.focus-wallpapers img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 480ms ease-in, transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

.focus-wallpapers img.is-active {
  opacity: 1;
  transform: scale(1);
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.focus-switch {
  position: absolute;
  z-index: 5;
  right: 24px;
  bottom: 18px;
  left: 24px;
  display: grid;
  padding: 6px 12px;
  border: 1px solid rgba(247, 249, 251, 0.14);
  border-radius: 14px;
  background: rgba(18, 19, 23, 0.86);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}

.focus-switch-heading {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-inline: 4px;
  color: rgba(247, 249, 251, 0.48);
  font: 600 9px/1 var(--body);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.focus-option {
  position: relative;
  min-width: 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 4px;
  border: 0;
  background: transparent;
  color: rgba(247, 249, 251, 0.76);
  font: 550 12px/1.2 var(--body);
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, background-color 240ms ease;
}

.focus-option:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 38px;
  height: 1px;
  background: rgba(247, 249, 251, 0.1);
}

.focus-option:hover {
  color: #fff;
}

.focus-option.is-active {
  color: #fff;
}

.focus-option:focus-visible {
  outline: 2px solid #ff5a4f;
  outline-offset: 2px;
  border-radius: 8px;
}

.focus-option-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15), 0 3px 8px rgba(0, 0, 0, 0.22);
}

.focus-option-icon img {
  width: 18px;
  height: 18px;
  display: block;
}

.focus-option-gaming {
  background: linear-gradient(145deg, #179dff, #0671e8);
}

.focus-option-night {
  background: linear-gradient(145deg, #8c75ff, #5b45e4);
}

.focus-option-reduce {
  background: linear-gradient(145deg, #b85cff, #e026c8);
}

.focus-option-state {
  margin-left: auto;
  color: rgba(247, 249, 251, 0.42);
  font-size: 10px;
  opacity: 0;
  transform: translateX(3px);
  transition: opacity 180ms ease, transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.focus-option.is-active .focus-option-state {
  color: #ff766d;
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .focus-wallpapers img {
    transform: none;
    transition: none;
  }
}

.evidence-playback {
  grid-column: 1 / 6;
  grid-row: 4;
}

.evidence-import {
  grid-column: 6 / 13;
  grid-row: 4;
}

.evidence-lockscreen {
  grid-column: 1 / 8;
  grid-row: 3;
}

.evidence-performance {
  grid-column: 8 / 13;
  grid-row: 3;
  background: #15191e;
}

.evidence-performance::after {
  display: none;
}

.evidence-performance .performance-copy h3 {
  font-size: clamp(24px, 2vw, 29px);
}

.performance-metrics {
  position: absolute;
  z-index: 5;
  right: 28px;
  bottom: 24px;
  left: 28px;
}

.performance-monitor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.performance-monitor-grid h4 {
  min-height: 24px;
  margin: 0 0 9px;
  color: rgba(247, 249, 251, .78);
  font: 650 9px/1.2 var(--body);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.performance-specs {
  margin: 0;
  border-top: 1px solid var(--line-dark);
}

.performance-specs div {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line-dark);
}

.performance-specs dt,
.performance-specs dd {
  margin: 0;
  font-size: 10px;
  line-height: 1.3;
}

.performance-specs dt {
  color: rgba(247, 249, 251, .38);
}

.performance-specs dd {
  color: rgba(247, 249, 251, .9);
  font-weight: 650;
  text-align: right;
}

.performance-system-specs {
  margin-top: 18px;
}

.scene-capture {
  aspect-ratio: 1432 / 1080;
  overflow: hidden;
  border: 1px solid rgba(20, 23, 27, 0.14);
  border-radius: 16px;
  background: #111317;
  box-shadow: 0 28px 70px rgba(12, 14, 17, 0.12);
}

.scene-capture video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.final-layout {
  grid-template-columns: 1.3fr 0.7fr;
}

@media (max-width: 1040px) {
  .hero-product {
    min-height: 420px;
  }

  .notarized-seal {
    top: -24px;
    right: -78px;
    bottom: auto;
    width: 82px;
    height: 82px;
    margin: 0;
  }

  .desktop-menu-item {
    display: none;
  }

  .product-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 440px 380px 450px 300px;
  }

  .evidence-linked { grid-column: 1 / -1; grid-row: 1; }
  .evidence-align { grid-column: 1; grid-row: 2; }
  .evidence-focus { grid-column: 2; grid-row: 2; }
  .evidence-lockscreen { grid-column: 1; grid-row: 3; }
  .evidence-performance { grid-column: 2; grid-row: 3; }
  .evidence-playback { grid-column: 1; grid-row: 4; }
  .evidence-import { grid-column: 2; grid-row: 4; }
}

@media (max-width: 760px) {
  .notarized-seal {
    top: -54px;
    right: 2px;
    width: 72px;
    height: 72px;
  }

  .notarized-seal-apple {
    width: 27px;
    height: 27px;
  }

  .hero-product {
    min-height: 0;
    margin-top: 34px;
    padding-bottom: 0;
  }

  .display-mode-switch {
    margin-bottom: 14px;
  }

  .display-mode-switch button {
    min-height: 34px;
    padding-inline: 12px;
    font-size: 11px;
  }

  .hero-desktop-scene {
    --desktop-gap: 10px;
  }

  .desktop-surface { border-radius: 10px; }
  .desktop-menu { height: 16px; padding-inline: 6px; font-size: 6px; }
  .desktop-menu-left { gap: 4px; }
  .desktop-menu-item { display: none; }
  .desktop-apple { width: 8px; font-size: 9px; }
  .desktop-menu-right { gap: 4px; }
  .desktop-status-icon { width: 8px; height: 7px; stroke-width: 1.8; }
  .desktop-control-center { display: none; }
  .desktop-notch { width: 44px; height: 11px; border-radius: 0 0 6px 6px; }
  .desktop-dock { bottom: 5px; width: 74%; }

  .hero-product .hero-light-spill {
    height: 72px;
    margin-top: 10px;
    margin-bottom: -22px;
  }

  .hero-reflection-grid {
    --reflection-desktop-gap: 10px;
    opacity: 0.3;
    filter: blur(16px) saturate(1.1);
    -webkit-filter: blur(16px) saturate(1.1);
  }

  .hero-demo-caption {
    width: min(560px, calc(100% - 32px));
    margin-top: 12px;
  }

  .hero-demo-caption-title {
    font-size: 17px;
  }

  .hero-demo-caption-body {
    font-size: 14px;
  }

  .product-bento {
    display: flex;
  }

  .evidence-card {
    min-height: 360px;
  }

  .evidence-focus {
    min-height: 430px;
  }

  .evidence-performance {
    min-height: 500px;
  }

  .evidence-linked {
    min-height: 410px;
  }

  .evidence-contain {
    padding-top: 116px;
  }

  .evidence-linked { order: 1; }
  .evidence-align { order: 2; }
  .evidence-lockscreen { order: 3; }
  .evidence-playback { order: 4; }
  .evidence-performance { order: 5; }
  .evidence-focus { order: 6; }
  .evidence-import { order: 7; }

  .pricing-disclosure {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 22px;
  }

  .browser-extension-band {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 58px;
    padding-top: 42px;
  }

  .browser-extension-copy {
    max-width: 520px;
  }

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

  .browser-extension-item:nth-child(2) {
    border-right: 0;
  }

  .browser-extension-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .final-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .evidence-card,
  .evidence-linked {
    min-height: 330px;
  }

  .evidence-card {
    padding: 22px;
  }

  .evidence-focus {
    min-height: 430px;
  }

  .evidence-performance {
    min-height: 500px;
  }

  .hero-desktop-scene { --desktop-gap: 8px; }
  .hero-reflection-grid { --reflection-desktop-gap: 8px; }
  .desktop-surface { border-radius: 8px; }
  .desktop-menu { height: 13px; padding-inline: 5px; font-size: 5px; }
  .desktop-apple { width: 7px; font-size: 8px; }
  .desktop-notch { width: 34px; height: 8px; border-radius: 0 0 5px 5px; }
  .desktop-dock { bottom: 4px; width: 76%; }
}

/* =========================================================
   Calibrated SPA pages
   ========================================================= */

.spa-screen[hidden] {
  display: none !important;
}

.spa-screen.is-active {
  animation: page-materialize 360ms cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes page-materialize {
  from { opacity: .7; clip-path: inset(0 0 18px 0); }
  to { opacity: 1; clip-path: inset(0); }
}

body:not([data-route="home"]) {
  background: var(--paper);
}

body:not([data-route="home"]) .product-hunt-banner {
  display: none;
}

body:not([data-route="home"]) .site-header {
  top: 0;
}

body:not([data-route="home"]) .skip-link {
  top: 12px;
}

.page-screen {
  min-height: 74vh;
  padding-top: var(--header-height);
}

.page-dark {
  background: var(--void);
  color: var(--white);
}

.page-paper {
  background: var(--paper);
  color: var(--ink);
}

.page-screen h1,
.page-screen h2,
.page-screen h3 {
  font-family: var(--display);
  letter-spacing: -0.035em;
}

.page-screen h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3rem, 6.6vw, 5.6rem);
  font-weight: 600;
  line-height: .96;
  text-wrap: balance;
}

.page-screen h1:focus {
  outline: none;
}

.page-screen p {
  text-wrap: pretty;
}

.page-hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(380px, .75fr);
  gap: 9%;
  align-items: center;
  padding-block: 96px 110px;
}

.page-hero-copy > p {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(247, 249, 251, .64);
  font-size: 18px;
  line-height: 1.7;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
}

.page-status {
  font: 11px/1.6 var(--mono) !important;
  color: rgba(247, 249, 251, .42) !important;
}

.download-ready {
  width: min(620px, calc(100% - 48px));
  min-height: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 106px 76px;
  text-align: center;
}

.download-icon-stage {
  position: relative;
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
}

.download-ready-icon {
  position: relative;
  z-index: 2;
  width: 104px;
  height: 104px;
  object-fit: contain;
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, .42));
  transform-origin: 50% 88%;
  animation: download-icon-bounce 2.2s infinite;
}

.download-icon-ring {
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(247, 249, 251, .14);
  border-radius: 28px;
  opacity: 0;
  animation: download-ring-expand 3s linear infinite;
}

.download-icon-ring-two { animation-delay: 1s; }
.download-icon-ring-three { animation-delay: 2s; }

@keyframes download-icon-bounce {
  0%, 65%, 100% {
    transform: translateY(0) scaleY(1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }
  20% {
    transform: translateY(-38px) scaleY(1.04);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19);
  }
  40% {
    transform: translateY(0) scaleY(.96);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }
  50% {
    transform: translateY(-12px) scaleY(1.02);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19);
  }
}

@keyframes download-ring-expand {
  0% { opacity: .68; transform: scale(1); }
  100% { opacity: 0; transform: scale(2.15); }
}

.download-ready-copy h1 {
  max-width: none;
  margin-top: 0;
  font-size: clamp(2rem, 4vw, 2.65rem);
  letter-spacing: -.04em;
}

.download-ready-copy > p:first-of-type {
  margin: 10px 0 0;
  color: rgba(247, 249, 251, .62);
  font-size: 15px;
}

.download-ready-copy > p:first-of-type a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.download-ready .page-status {
  margin: 8px 0 0;
}

.install-steps.download-steps {
  width: min(560px, 100%);
  display: grid;
  gap: 14px;
  margin-top: 48px;
  border-top: 0;
  text-align: left;
}

.install-steps.download-steps li {
  min-height: 78px;
  grid-template-columns: 26px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background: #15171a;
}

.install-steps.download-steps li > span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--void);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
}

.install-steps.download-steps strong {
  color: var(--white);
  font-size: 14px;
  letter-spacing: -.01em;
}

.install-steps.download-steps p {
  margin-top: 4px;
  color: rgba(247, 249, 251, .42);
  font-size: 12px;
  line-height: 1.45;
}

.download-requirements {
  max-width: 560px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 9px;
  margin: 44px 0 0;
  color: rgba(247, 249, 251, .34);
  font-size: 11px;
  line-height: 1.55;
}

.download-requirements svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  margin-top: 1px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.download-home-link {
  margin-top: 24px;
}

.download-object {
  min-height: 360px;
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
}

.download-app-icon {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 249, 251, .13);
  border-radius: 24px;
  background: #111419;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .38);
}

.download-app-icon img {
  width: 48%;
  border-radius: 26%;
}

.download-line {
  height: 1px;
  background: rgba(247, 249, 251, .24);
}

.download-disk {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid rgba(247, 249, 251, .18);
  border-radius: 50%;
  color: rgba(247, 249, 251, .48);
}

.download-disk span {
  font: 11px/1 var(--mono);
}

.download-disk strong {
  color: var(--white);
  font: 600 20px/1 var(--display);
  letter-spacing: -.03em;
}

.install-layout {
  padding-block: 118px 132px;
}

.install-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9%;
  align-items: end;
}

.install-intro h2,
.collection-header h1,
.policy-heading h1,
.contact-copy h1,
.editorial-hero h1,
.utility-layout h1,
.affiliate-copy h1,
.extension-layout h1,
.wallpaper-copy h1 {
  max-width: 13ch;
}

.install-intro h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1;
}

.install-intro p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.install-steps {
  margin: 82px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.install-steps li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line-light);
}

.install-steps li > span {
  font: 12px/1.6 var(--mono);
  color: var(--muted);
}

.install-steps strong {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -.025em;
}

.install-steps p {
  max-width: 64ch;
  margin: 6px 0 0;
  color: var(--muted);
}

.requirements-strip {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  margin-top: 42px;
  padding-top: 28px;
  color: var(--muted);
  font-size: 14px;
}

.requirements-strip strong {
  color: var(--ink);
  font-family: var(--display);
}

.editorial-hero {
  padding-block: 150px 110px;
}

.editorial-hero h1 {
  max-width: 14ch;
}

.editorial-hero > p {
  max-width: 700px;
  margin: 38px 0 0 auto;
  color: var(--muted);
  font-size: 21px;
}

.about-story {
  display: grid;
  grid-template-columns: .7fr 1fr;
  gap: 12%;
  padding-block: 24px 140px;
}

.about-principle {
  align-self: start;
  position: sticky;
  top: 120px;
  display: grid;
  gap: 24px;
  font: 500 clamp(1.7rem, 3vw, 2.6rem)/1.08 var(--display);
  letter-spacing: -.035em;
}

.principle-line {
  width: 100%;
  height: 1px;
  background: var(--ink);
}

.document-layout {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1.15fr) 170px;
  gap: 8%;
  padding-block: 150px 150px;
}

.document-header {
  align-self: start;
  position: sticky;
  top: 120px;
}

.document-header h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 5vw, 4.8rem);
}

.document-header > p {
  margin: 28px 0;
  color: var(--muted);
}

.document-header > span {
  color: var(--muted);
  font: 11px/1.5 var(--mono);
}

.document-prose {
  max-width: 72ch;
}

.document-prose section {
  padding: 0 0 38px;
  margin-bottom: 42px;
  border-bottom: 1px solid var(--line-light);
}

.document-prose h2 {
  margin: 0 0 14px;
  font-size: 26px;
  font-weight: 600;
}

.document-prose p {
  margin: 0;
  color: #4f565e;
  font-size: 16px;
  line-height: 1.75;
}

.document-prose ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: #4f565e;
  font-size: 16px;
  line-height: 1.7;
}

.document-prose li::marker {
  color: #8b929a;
}

.document-prose a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.refund-policy .refund-request-button {
  margin-top: 24px;
  color: var(--white);
  text-decoration: none;
}

.document-aside {
  align-self: start;
  position: sticky;
  top: 120px;
  display: grid;
  gap: 12px;
  padding-top: 6px;
}

.document-aside strong {
  margin-bottom: 6px;
  font-size: 12px;
}

.document-aside a {
  color: var(--muted);
  font-size: 13px;
}

.document-aside a:hover {
  color: var(--ink);
}

.policy-layout {
  padding-block: 150px;
}

.policy-heading {
  display: grid;
  grid-template-columns: 1.05fr .7fr;
  gap: 10%;
  align-items: end;
}

.policy-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.channel-rows {
  margin-top: 90px;
  border-top: 1px solid var(--line-light);
}

.channel-rows section {
  min-height: 190px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8%;
  align-items: center;
  padding-block: 34px;
  border-bottom: 1px solid var(--line-light);
}

.channel-rows strong {
  font: 600 26px/1.2 var(--display);
  letter-spacing: -.03em;
}

.channel-rows p {
  max-width: 68ch;
  margin: 10px 0 0;
  color: var(--muted);
}

.policy-note {
  max-width: 72ch;
  margin: 34px 0 0;
  color: var(--muted);
  font: 11px/1.7 var(--mono);
}

.utility-layout {
  min-height: 700px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
  align-items: center;
  padding-block: 110px;
}

.utility-layout > div > p,
.affiliate-copy > p,
.wallpaper-copy > p:not(:first-child) {
  max-width: 590px;
  margin: 30px 0 0;
  color: rgba(247, 249, 251, .62);
  font-size: 18px;
}

.utility-form {
  padding: 42px;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  background: #111318;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .3);
}

.utility-form label,
.contact-form label {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
}

.form-line {
  display: flex;
  gap: 10px;
}

.utility-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(247, 249, 251, .2);
  border-radius: 10px;
  background: #0b0d10;
  color: var(--white);
  font: inherit;
}

.utility-form input::placeholder {
  color: rgba(247, 249, 251, .42);
}

.form-status {
  margin: 16px 0 0;
  color: rgba(247, 249, 251, .52);
  font-size: 12px;
}

.button:disabled {
  cursor: wait;
  opacity: .5;
}

.contact-layout {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 12%;
  padding-block: 150px;
}

.contact-copy > p {
  max-width: 560px;
  margin: 32px 0 24px;
  color: var(--muted);
  font-size: 18px;
}

.contact-copy > a {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.contact-form {
  align-self: start;
  padding-top: 12px;
}

.contact-form label:not(:first-child) {
  margin-top: 24px;
}

.contact-form select,
.contact-form textarea {
  border-color: var(--line-light);
  background: var(--paper-raised);
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .button {
  margin-top: 26px;
}

.contact-form > p {
  max-width: 56ch;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.collection-layout {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
  gap: 10%;
  padding-block: 150px;
}

.collection-header {
  align-self: start;
  position: sticky;
  top: 120px;
}

.collection-header h1 {
  font-size: clamp(3rem, 5vw, 4.8rem);
}

.collection-header p {
  max-width: 46ch;
  margin: 30px 0 0;
  color: var(--muted);
}

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

.release-entry {
  border-bottom: 1px solid var(--line-light);
}

.release-summary {
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 30px 0;
  cursor: pointer;
  list-style: none;
}

.release-summary::-webkit-details-marker {
  display: none;
}

.release-toggle {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  font: 400 18px/1 var(--display);
  transition: transform 180ms ease;
}

.release-entry details[open] .release-toggle {
  transform: rotate(45deg);
}

.release-meta {
  display: flex;
  gap: 8px;
  align-items: center;
}

.release-version,
.release-state {
  padding: 4px 8px;
  border: 1px solid var(--line-light);
  border-radius: 6px;
  font: 10px/1.2 var(--mono);
}

.release-state {
  border-color: rgba(255, 97, 84, .45);
  color: #c84137;
}

.release-entry h2 {
  margin: 18px 0 4px;
  font-size: 28px;
}

.release-date {
  color: var(--muted);
  font-size: 12px;
}

.release-body {
  max-width: 68ch;
  margin: 0 0 38px;
  color: #4f565e;
  line-height: 1.7;
}

.release-body p {
  margin: 0 0 18px;
}

.release-section-title {
  margin: 32px 0 12px;
  font-size: 18px !important;
  letter-spacing: -.02em !important;
}

.release-points {
  margin: 0 0 22px;
  padding-left: 20px;
}

.release-points li + li {
  margin-top: 7px;
}

.release-link {
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.collection-status {
  margin: 0;
  padding: 36px 0;
  border-bottom: 1px solid var(--line-light);
  color: var(--muted);
}

.collection-recovery-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.collection-recovery .collection-status {
  padding-bottom: 0;
  border-bottom: 0;
}

.roadmap-community-link {
  margin-top: 28px;
}

.roadmap-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.roadmap-column h2 {
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  letter-spacing: 0;
}

.roadmap-column article {
  padding: 22px 0 26px;
  border-bottom: 1px solid var(--line-light);
}

.roadmap-column article h3 {
  margin: 0;
  font-size: 19px;
}

.roadmap-column article p {
  margin: 10px 0 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.roadmap-progress {
  height: 3px;
  overflow: hidden;
  background: rgba(20, 23, 27, .12);
}

.roadmap-progress span {
  height: 100%;
  display: block;
  background: var(--ink);
}

.roadmap-column article small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font: 9px/1.4 var(--mono);
}

.roadmap-more {
  border-bottom: 1px solid var(--line-light);
}

.roadmap-more summary {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
  list-style: none;
}

.roadmap-more summary::-webkit-details-marker {
  display: none;
}

.roadmap-more summary:focus-visible {
  outline: 2px solid var(--action-strong);
  outline-offset: 4px;
}

.roadmap-more-open {
  display: none;
}

.roadmap-more[open] .roadmap-more-closed {
  display: none;
}

.roadmap-more[open] .roadmap-more-open {
  display: inline;
}

.roadmap-more-indicator {
  position: relative;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.roadmap-more-indicator::before,
.roadmap-more-indicator::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 220ms cubic-bezier(.16, 1, .3, 1);
}

.roadmap-more-indicator::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.roadmap-more[open] .roadmap-more-indicator::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.roadmap-more-content article:last-child {
  border-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  .roadmap-more-indicator::before,
  .roadmap-more-indicator::after {
    transition: none;
  }
}

.roadmap-column.is-completed {
  opacity: .62;
}

.affiliate-layout {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 12%;
  align-items: center;
  padding-block: 120px;
}

.affiliate-page {
  padding-block: 140px 120px;
}

.affiliate-page .affiliate-layout {
  min-height: 0;
  padding: 0 0 120px;
}

.affiliate-terms {
  margin: 0;
  border-top: 1px solid var(--line-dark);
}

.affiliate-terms div {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
}

.affiliate-terms dt,
.affiliate-terms dd {
  margin: 0;
}

.affiliate-terms dt {
  color: var(--white);
  font: 600 28px/1 var(--display);
  letter-spacing: -.03em;
}

.affiliate-terms dt span {
  font-size: 14px;
  letter-spacing: 0;
}

.affiliate-terms dd {
  color: rgba(247, 249, 251, .58);
  font-size: 13px;
}

.affiliate-audience,
.affiliate-faq {
  padding-block: 110px;
  border-top: 1px solid var(--line-dark);
}

.affiliate-audience > h2,
.affiliate-faq > h2,
.affiliate-close h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1;
}

.affiliate-audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 70px;
  border-top: 1px solid var(--line-dark);
}

.affiliate-audience-grid article {
  min-width: 0;
  padding: 28px 24px 12px 0;
  border-right: 1px solid var(--line-dark);
}

.affiliate-audience-grid article:not(:first-child) {
  padding-left: 24px;
}

.affiliate-audience-grid article:last-child {
  border-right: 0;
}

.affiliate-audience-grid h3 {
  margin: 0;
  font-size: 19px;
}

.affiliate-audience-grid p {
  margin: 12px 0 0;
  color: rgba(247, 249, 251, .52);
  font-size: 13px;
  line-height: 1.65;
}

.affiliate-faq {
  display: grid;
  grid-template-columns: .65fr 1fr;
  gap: 12%;
}

.affiliate-faq > div {
  border-top: 1px solid var(--line-dark);
}

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

.affiliate-faq summary {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-weight: 600;
}

.affiliate-faq summary::-webkit-details-marker {
  display: none;
}

.affiliate-faq summary span:last-child {
  font-size: 20px;
  transition: transform 180ms ease;
}

.affiliate-faq details[open] summary span:last-child {
  transform: rotate(45deg);
}

.affiliate-faq details p {
  max-width: 65ch;
  margin: -4px 38px 26px 0;
  color: rgba(247, 249, 251, .55);
  font-size: 14px;
}

.affiliate-close {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  padding-top: 110px;
  border-top: 1px solid var(--line-dark);
}

.extension-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(420px, 1fr);
  gap: clamp(64px, 9vw, 128px);
  align-items: start;
  padding-block: 104px 112px;
}

.extension-intro {
  position: sticky;
  top: calc(var(--header-height) + 44px);
}

.extension-identity {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.extension-identity img {
  border-radius: 13px;
}

.extension-intro h1 {
  max-width: 11ch;
  margin-top: 30px;
  font-size: clamp(2.8rem, 4.2vw, 4rem);
  line-height: 1;
}

.extension-intro > p {
  max-width: 42ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.extension-setup {
  border-top: 1px solid var(--ink);
}

.extension-setup > h2 {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-light);
  font-size: 14px;
}

.extension-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.extension-steps li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-light);
}

.extension-steps li > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-size: 11px;
  font-weight: 650;
}

.extension-steps p,
.extension-steps small {
  margin: 0;
}

.extension-steps strong {
  display: block;
  font-family: var(--display);
  font-size: 17px;
}

.extension-steps small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.extension-requirement {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
}

.extension-requirement p {
  max-width: 34ch;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.extension-requirement .text-link {
  flex: 0 0 auto;
}

.wallpaper-layout {
  padding-block: 120px;
}

.wallpaper-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
}

.wallpaper-copy h1 {
  max-width: 14ch;
}

.wallpaper-copy .page-actions {
  justify-self: end;
  margin: 0;
}

.wallpaper-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  margin-top: 60px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  background: var(--wallpaper-thumb-color, #111318);
}

.wallpaper-desktop-chrome {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.wallpaper-menu-bar {
  position: absolute;
  inset: 0 0 auto;
  height: clamp(22px, 2.1vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(10px, 1.3vw, 18px);
  color: rgba(255, 255, 255, .96);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  font-size: clamp(6px, .66vw, 10px);
  font-weight: 500;
}

.wallpaper-menu-left,
.wallpaper-menu-right {
  display: inline-flex;
  align-items: center;
  gap: clamp(7px, .9vw, 14px);
  min-width: 0;
}

.wallpaper-menu-left strong {
  font-weight: 700;
}

.wallpaper-menu-apple {
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.2em;
  line-height: 1;
}

.wallpaper-menu-right svg {
  width: 1.4em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.wallpaper-dock-glass {
  position: absolute;
  left: 50%;
  bottom: clamp(8px, 2.1vw, 24px);
  padding: clamp(3px, .33vw, 5px) clamp(5px, .55vw, 8px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: clamp(8px, 1.2vw, 17px);
  background: linear-gradient(140deg, rgba(255, 255, 255, .28), rgba(255, 255, 255, .1));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .32);
  backdrop-filter: saturate(1.35) blur(18px);
  -webkit-backdrop-filter: saturate(1.35) blur(18px);
  transform: translateX(-50%);
}

.wallpaper-dock {
  width: min(58vw, 680px);
  height: auto;
  display: block;
  filter: none;
  user-select: none;
}

.wallpaper-media,
.wallpaper-media img,
.wallpaper-media video {
  width: 100%;
  height: 100%;
}

.wallpaper-media img,
.wallpaper-media video {
  display: block;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.wallpaper-media {
  position: absolute;
  inset: 0;
}

.wallpaper-preview {
  z-index: 0;
  transition: opacity 220ms ease;
}

.wallpaper-full-media {
  z-index: 1;
}

.wallpaper-stage.is-ready .wallpaper-preview {
  opacity: 0;
}

.wallpaper-loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  color: rgba(247, 249, 251, .48);
  font: 11px/1.5 var(--mono);
}

.wallpaper-loading[hidden] {
  display: none;
}

.wallpaper-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.wallpaper-facts[hidden] {
  display: none;
}

.wallpaper-facts div {
  padding: 22px 0;
  border-right: 1px solid var(--line-dark);
}

.wallpaper-facts div:not(:first-child) {
  padding-left: 24px;
}

.wallpaper-facts div:nth-child(n + 4) {
  border-top: 1px solid var(--line-dark);
}

.wallpaper-facts div:nth-child(4) {
  padding-left: 0;
}

.wallpaper-facts div:last-child {
  border-right: 0;
}

.wallpaper-facts dt {
  color: rgba(247, 249, 251, .42);
  font-size: 11px;
}

.wallpaper-facts dd {
  margin: 4px 0 0;
  font-family: var(--display);
}

@media (max-width: 1040px) {
  .page-hero,
  .utility-layout,
  .contact-layout,
  .affiliate-layout,
  .extension-layout {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .page-hero {
    padding-top: 110px;
  }

  .download-object {
    width: min(620px, 100%);
  }

  .document-layout {
    grid-template-columns: minmax(230px, .7fr) minmax(0, 1.3fr);
  }

  .document-aside {
    display: none;
  }

  .collection-layout {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .collection-header,
  .document-header {
    position: static;
  }

  .roadmap-board {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    overflow-x: auto;
    padding-bottom: 12px;
  }

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

  .affiliate-audience-grid article:nth-child(2) {
    border-right: 0;
  }

  .affiliate-audience-grid article:nth-child(n + 3) {
    margin-top: 24px;
    border-top: 1px solid var(--line-dark);
  }

  .extension-intro {
    position: static;
  }
}

@media (max-width: 760px) {
  .spa-screen.is-active {
    animation-duration: 220ms;
  }

  .page-screen h1 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  .page-hero,
  .editorial-hero,
  .policy-layout,
  .utility-layout,
  .contact-layout,
  .collection-layout,
  .affiliate-layout,
  .extension-layout,
  .wallpaper-layout {
    padding-block: 96px 100px;
  }

  .page-hero {
    min-height: 0;
  }

  .download-ready {
    width: min(620px, calc(100% - 32px));
    min-height: 0;
    padding-block: 104px 72px;
  }

  .page-screen .download-ready-copy h1 {
    font-size: 2rem;
  }

  .download-icon-stage {
    width: 98px;
    height: 98px;
  }

  .download-ready-icon {
    width: 88px;
    height: 88px;
  }

  .download-steps {
    margin-top: 42px;
  }

  .download-object {
    min-height: 0;
    grid-template-columns: 1fr 34px 1fr;
  }

  .download-disk {
    padding: 18px;
  }

  .download-disk strong {
    font-size: 14px;
  }

  .install-layout {
    padding-block: 90px;
  }

  .install-intro,
  .about-story,
  .document-layout,
  .policy-heading,
  .wallpaper-copy {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-story {
    padding-block: 0 100px;
  }

  .about-principle,
  .document-header {
    position: static;
  }

  .document-layout {
    padding-block: 100px;
  }

  .document-header h1 {
    max-width: 13ch;
  }

  .channel-rows {
    margin-top: 58px;
  }

  .channel-rows section {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .form-line {
    flex-direction: column;
  }

  .utility-form {
    padding: 26px 20px;
  }

  .roadmap-board {
    display: block;
    overflow: visible;
  }

  .roadmap-column + .roadmap-column {
    margin-top: 48px;
  }

  .affiliate-page {
    padding-block: 100px 88px;
  }

  .affiliate-page .affiliate-layout {
    padding-bottom: 86px;
  }

  .affiliate-terms div {
    grid-template-columns: 110px 1fr;
  }

  .affiliate-audience,
  .affiliate-faq {
    padding-block: 82px;
  }

  .affiliate-audience-grid,
  .affiliate-faq {
    grid-template-columns: 1fr;
  }

  .affiliate-audience-grid article,
  .affiliate-audience-grid article:not(:first-child) {
    margin-top: 0;
    padding: 24px 0;
    border-top: 1px solid var(--line-dark);
    border-right: 0;
  }

  .affiliate-faq {
    gap: 46px;
  }

  .affiliate-close {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 82px;
  }

  .extension-requirement {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .extension-layout {
    gap: 42px;
    padding-block: 72px 80px;
  }

  .extension-intro h1 {
    max-width: 12ch;
    margin-top: 24px;
    font-size: clamp(2.25rem, 10.5vw, 2.8rem);
  }

  .extension-intro > p {
    margin-top: 18px;
    font-size: 15px;
  }

  .wallpaper-copy > p:not(:first-child) {
    margin-top: 0;
  }

  .wallpaper-stage {
    margin-top: 42px;
    border-radius: 12px;
  }

  .wallpaper-dock {
    width: 66vw;
  }

  .wallpaper-copy .page-actions {
    justify-self: start;
  }

  .wallpaper-menu-left > span:not(.wallpaper-menu-apple) {
    display: none;
  }

  .wallpaper-facts {
    grid-template-columns: 1fr;
  }

  .wallpaper-facts div,
  .wallpaper-facts div:not(:first-child) {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .wallpaper-facts div:nth-child(n + 4) {
    border-top: 0;
  }

  .requirements-strip {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button-aurora,
  .spa-screen.is-active {
    animation: none;
  }

  .button-aurora {
    --aurora-x: .5;
    --aurora-w: 1.35;
    --aurora-h: 1;
    --aurora-edge: 1;
  }

  .button-aurora::before,
  .button-aurora::after,
  .button-aurora-bloom,
  .notarized-seal-text {
    animation: none;
  }

  .button-aurora::before {
    transform: none;
    opacity: .56;
  }

  .button-aurora-bloom {
    opacity: .38;
  }
}
