:root {
  --bg: #0b0e14;
  --surface: #111722;
  --surface-high: #171e2a;
  --surface-soft: #0f141d;
  --line: #293140;
  --line-strong: #3a4558;
  --text: #f3f6fb;
  --muted: #a6afbf;
  --faint: #737e90;
  --blue: #5b8cff;
  --blue-strong: #3974ff;
  --violet: #a269ff;
  --green: #45d49d;
  --coral: #ff8e79;
  --header-height: 72px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -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 {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: white;
  color: #111;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  background: rgba(11, 14, 20, 0.94);
  border-bottom: 1px solid rgba(58, 69, 88, 0.55);
  backdrop-filter: blur(18px);
}

.site-nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 17px;
  font-weight: 750;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  width: 28px;
  height: 28px;
  border: 2px solid var(--blue);
  border-radius: 5px;
}

.brand-mark::before,
.brand-mark span {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  border: 2px solid var(--violet);
  border-radius: 3px;
  background: var(--bg);
}

.brand-mark::before {
  top: 5px;
  left: 5px;
}

.brand-mark span {
  right: -6px;
  bottom: -6px;
  border-color: var(--green);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav-links > a:not(.nav-download) {
  position: relative;
  padding: 9px 0;
}

.nav-links > a:not(.nav-download)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav-links > a:hover,
.nav-links > a.active {
  color: var(--text);
}

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

.nav-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 6px;
  background: var(--text);
  color: #0b0e14;
}

.nav-download:hover {
  background: #dce7ff;
}

.nav-download svg,
.menu-toggle svg {
  width: 17px;
  height: 17px;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: min(720px, calc(100svh - var(--header-height)));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #090d14 url("assets/cleancut-hero.jpg") center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.polishkey-hero {
  background-image: url("assets/polishkey-hero.jpg");
  background-position: 58% center;
  background-size: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(4, 7, 12, 0.22);
  box-shadow: inset 0 -110px 120px rgba(4, 7, 12, 0.72);
}

.polishkey-hero .hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 7, 12, 0.9), rgba(4, 7, 12, 0.68) 46%, rgba(4, 7, 12, 0.26)),
    rgba(4, 7, 12, 0.28);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 74px 0 96px;
}

.hero-content > * {
  max-width: 610px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #8fb0ff;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(69, 212, 157, 0.14);
}

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

h1 {
  margin-bottom: 15px;
  font-size: clamp(64px, 8vw, 108px);
  line-height: 0.95;
  font-weight: 850;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-lede {
  margin-bottom: 14px;
  color: #dce7ff;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.18;
  font-weight: 700;
}

.hero-copy {
  margin-bottom: 28px;
  color: #c1cad8;
  font-size: 18px;
  line-height: 1.65;
}

.beta-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  margin: 0 0 20px;
  padding: 9px 12px;
  border: 1px solid rgba(69, 212, 157, 0.28);
  border-radius: 6px;
  background: rgba(9, 15, 24, 0.72);
  color: #c7d2e3;
  font-size: 13px;
  line-height: 1.4;
  backdrop-filter: blur(14px);
}

.beta-banner span,
.price-badge {
  color: #06120f;
  background: var(--green);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.beta-banner span {
  flex: 0 0 auto;
  padding: 4px 7px;
  border-radius: 4px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 750;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

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

.button-primary {
  background: var(--blue-strong);
  color: white;
  box-shadow: 0 12px 32px rgba(57, 116, 255, 0.25);
}

.button-primary:hover {
  background: #4c82ff;
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(13, 18, 27, 0.72);
  color: var(--text);
  backdrop-filter: blur(12px);
}

.button-secondary:hover,
.button-quiet:hover {
  border-color: #65718a;
  background: var(--surface-high);
}

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

.hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #a8b2c3;
  font-size: 13px;
  font-weight: 650;
}

.hero-meta span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--faint);
}

.trust-strip {
  background: #0d121a;
  border-bottom: 1px solid var(--line);
}

.availability-strip {
  background: #0d121a;
  border-bottom: 1px solid var(--line);
}

.availability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--line);
}

.availability-grid > div {
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.availability-grid strong {
  color: var(--text);
}

.availability-grid span {
  color: var(--faint);
  font-size: 13px;
  line-height: 1.45;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  min-height: 124px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.trust-grid > div:first-child {
  border-left: 1px solid var(--line);
}

.trust-grid svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--green);
}

.trust-grid span {
  display: flex;
  flex-direction: column;
  color: var(--faint);
  font-size: 13px;
  line-height: 1.45;
}

.trust-grid strong {
  color: var(--text);
  font-size: 14px;
}

.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 52px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading > p:last-child,
.workflow-layout > .section-heading > p:last-child,
.privacy-layout p,
.pricing-layout > div:first-child > p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.product-section {
  overflow: hidden;
}

.app-window {
  width: min(900px, 100%);
  aspect-ratio: 800 / 632;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #46516a;
  border-radius: 12px;
  background: #0d111a;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.48);
}

.product-image {
  width: min(980px, 100%);
  display: block;
  margin: 0 auto;
  border: 1px solid #46516a;
  border-radius: 12px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.48);
}

.window-bar {
  position: relative;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e9e9eb;
  color: #47484b;
  font-size: 12px;
  font-weight: 700;
}

.traffic-lights {
  position: absolute;
  left: 12px;
  display: flex;
  gap: 7px;
}

.traffic-lights span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ff5f57;
}

.traffic-lights span:nth-child(2) {
  background: #febc2e;
}

.traffic-lights span:nth-child(3) {
  background: #28c840;
}

.app-screen {
  position: relative;
  height: calc(100% - 38px);
  padding: 20px 28px 24px;
  background: #0c111b;
  background-image: radial-gradient(circle at 50% 10%, #1c2436 0, #0c111b 58%);
}

.app-title-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: white;
}

.app-title-row > div {
  font-size: clamp(14px, 2.2vw, 24px);
}

.app-title-row small {
  color: #677084;
  font-size: 0.52em;
}

.app-title-row svg {
  justify-self: end;
  width: clamp(16px, 2.2vw, 24px);
  color: #c7cede;
}

.app-center {
  width: min(590px, 82%);
  margin: clamp(22px, 4vw, 48px) auto 0;
  text-align: center;
}

.app-symbol {
  position: relative;
  width: clamp(72px, 11vw, 122px);
  height: clamp(72px, 11vw, 122px);
  margin: 0 auto clamp(18px, 3vw, 32px);
  border: 1px solid rgba(162, 105, 255, 0.48);
  border-radius: 50%;
  background: rgba(91, 140, 255, 0.12);
  box-shadow: 0 0 42px rgba(162, 105, 255, 0.2);
}

.app-symbol span {
  position: absolute;
  width: 32%;
  height: 38%;
  border: clamp(3px, 0.55vw, 6px) solid var(--blue);
  border-radius: 4px;
}

.app-symbol span:first-child {
  top: 28%;
  left: 31%;
}

.app-symbol span:last-child {
  right: 25%;
  bottom: 24%;
  border-color: var(--violet);
  background: #192139;
}

.app-center h3 {
  margin-bottom: 12px;
  color: #7799ff;
  font-size: clamp(19px, 3vw, 32px);
}

.app-center > p {
  margin: 0 auto 12px;
  color: #bec6d4;
  font-size: clamp(10px, 1.5vw, 16px);
  line-height: 1.45;
}

.drag-copy {
  display: block;
  margin-bottom: 12px;
  color: #606a7b;
  font-size: clamp(9px, 1.3vw, 13px);
}

.privacy-chip,
.folder-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: clamp(9px, 1.35vw, 14px);
}

.privacy-chip {
  padding: 7px 13px;
  border: 1px solid #2a3343;
  border-radius: 999px;
  color: #b5bfce;
}

.privacy-chip svg,
.folder-link svg {
  width: 16px;
  color: var(--blue);
}

.folder-link {
  display: flex;
  margin-top: 12px;
  color: #b9c7ef;
  font-weight: 650;
}

.app-button {
  position: absolute;
  right: 28px;
  bottom: 24px;
  left: 28px;
  height: clamp(42px, 7vw, 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  background: linear-gradient(100deg, var(--blue), var(--violet));
  color: white;
  font-size: clamp(13px, 2vw, 18px);
  font-weight: 750;
  box-shadow: 0 10px 30px rgba(91, 140, 255, 0.27);
}

.app-button svg {
  width: 20px;
}

.soft-band {
  background: var(--surface-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.feature-card {
  position: relative;
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.feature-card:hover {
  border-color: var(--line-strong);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 62px;
  border: 1px solid currentColor;
  border-radius: 7px;
}

.feature-icon svg {
  width: 22px;
}

.feature-icon.blue {
  color: var(--blue);
  background: rgba(91, 140, 255, 0.08);
}

.feature-icon.violet {
  color: var(--violet);
  background: rgba(162, 105, 255, 0.08);
}

.feature-icon.green {
  color: var(--green);
  background: rgba(69, 212, 157, 0.08);
}

.feature-number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: #424c5d;
  font-size: 13px;
  font-weight: 750;
}

.feature-card p:last-child {
  color: var(--muted);
}

.workflow-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: 90px;
  align-items: start;
}

.workflow-layout .section-heading {
  position: sticky;
  top: calc(var(--header-height) + 46px);
  margin-bottom: 0;
}

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

.steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.steps li > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--blue);
  font-weight: 750;
}

.steps strong {
  display: block;
  margin-bottom: 5px;
  font-size: 19px;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

.privacy-band {
  background: #101824;
  border-top: 1px solid #25354a;
  border-bottom: 1px solid #25354a;
}

.privacy-layout {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 52px;
  align-items: center;
  max-width: 960px;
}

.privacy-mark {
  width: 140px;
  height: 140px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(69, 212, 157, 0.5);
  border-radius: 50%;
  color: var(--green);
  box-shadow: inset 0 0 0 18px rgba(69, 212, 157, 0.04);
}

.privacy-mark svg {
  width: 56px;
  height: 56px;
}

.privacy-layout h2 {
  max-width: 790px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #91aeff;
  font-weight: 700;
}

.text-link:hover {
  color: white;
}

.text-link svg {
  width: 18px;
}

.pricing-section {
  background: #090c12;
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 90px;
  align-items: center;
}

.price-panel {
  padding: 30px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface);
}

.price-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 9px;
  border-radius: 4px;
}

.price-panel .price {
  margin: 0;
  color: white;
  font-size: 62px;
  line-height: 1;
  font-weight: 850;
}

.price-panel .price span {
  color: var(--green);
  font-size: 30px;
  vertical-align: top;
}

.price-panel .price-subtitle {
  margin: 8px 0 24px;
  color: var(--muted);
}

.price-panel .button {
  width: 100%;
  margin-top: 10px;
}

.price-panel small {
  display: block;
  margin-top: 18px;
  color: var(--faint);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.support-callout {
  padding: 64px 0;
  background: #171321;
  border-top: 1px solid #342946;
  border-bottom: 1px solid #342946;
}

.support-callout-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.support-callout h2 {
  margin-bottom: 10px;
  font-size: clamp(28px, 4vw, 42px);
}

.support-callout p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  padding: 60px 0 26px;
  background: #080b10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
}

.footer-grid > div:first-child p {
  max-width: 320px;
  margin: 18px 0 0;
  color: var(--faint);
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--text);
}

.footer-contact span {
  color: var(--text);
  font-weight: 700;
}

.footer-contact a {
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 12px;
}

.page-hero {
  padding: 104px 0 82px;
  background: #0d121a;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 880px;
  margin-bottom: 24px;
  font-size: clamp(50px, 7vw, 84px);
}

.page-hero > .shell > p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 20px;
}

.content-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 720px);
  gap: 80px;
  align-items: start;
}

.content-nav {
  position: sticky;
  top: calc(var(--header-height) + 36px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.content-nav strong {
  margin-bottom: 4px;
  color: var(--text);
}

.content-nav a:hover {
  color: white;
}

.prose-section {
  padding-bottom: 58px;
  margin-bottom: 58px;
  border-bottom: 1px solid var(--line);
}

.prose-section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.prose-section h2 {
  font-size: clamp(30px, 4vw, 44px);
}

.prose-section h3 {
  margin-top: 32px;
}

.prose-section p,
.prose-section li {
  color: var(--muted);
}

.prose-section a {
  color: #91aeff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose-section ul {
  padding-left: 20px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface);
}

.contact-panel > div {
  min-width: 0;
}

.contact-panel h2 {
  margin-bottom: 8px;
  font-size: clamp(28px, 4vw, 42px);
  overflow-wrap: anywhere;
}

.contact-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

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

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

.faq-list summary {
  position: relative;
  padding: 24px 44px 24px 0;
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 4px;
  color: var(--blue);
  font-size: 25px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details > div {
  max-width: 700px;
  padding: 0 40px 24px 0;
  color: var(--muted);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.spec-grid > div {
  min-height: 120px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spec-grid strong {
  display: block;
  margin-bottom: 7px;
}

.spec-grid span {
  color: var(--muted);
}

.app-catalog {
  background: #090c12;
}

.app-catalog .shell {
  display: grid;
  gap: 28px;
}

.catalog-item {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface);
}

.catalog-visual {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #0b111b url("assets/cleancut-hero.jpg") 72% center / cover no-repeat;
  border-right: 1px solid var(--line);
}

.catalog-screenshot {
  padding: 28px;
  background: #0b111b;
}

.catalog-screenshot img {
  position: relative;
  z-index: 1;
  width: min(640px, 116%);
  max-width: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}

.catalog-screenshot::after {
  display: none;
}

.catalog-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 9, 15, 0.3);
}

.catalog-lock {
  position: relative;
  z-index: 1;
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(69, 212, 157, 0.62);
  border-radius: 50%;
  background: rgba(7, 14, 23, 0.8);
  color: var(--green);
  box-shadow: 0 0 0 20px rgba(69, 212, 157, 0.05);
}

.catalog-lock svg {
  width: 48px;
  height: 48px;
}

.catalog-wave {
  position: absolute;
  right: 7%;
  bottom: 10%;
  left: 7%;
  z-index: 1;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.catalog-wave span {
  width: 100%;
  height: 22%;
  background: var(--blue);
  opacity: 0.74;
}

.catalog-wave span:nth-child(2),
.catalog-wave span:nth-child(8) {
  height: 44%;
}

.catalog-wave span:nth-child(3),
.catalog-wave span:nth-child(7) {
  height: 70%;
}

.catalog-wave span:nth-child(4),
.catalog-wave span:nth-child(6) {
  height: 96%;
}

.catalog-wave span:nth-child(5) {
  height: 55%;
  background: var(--violet);
}

.catalog-copy {
  align-self: center;
  padding: 48px;
}

.catalog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--faint);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.catalog-meta span {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.catalog-meta .available {
  border-color: rgba(69, 212, 157, 0.36);
  background: rgba(69, 212, 157, 0.08);
  color: var(--green);
}

.catalog-copy h2 {
  margin-bottom: 16px;
}

.catalog-copy > p {
  color: var(--muted);
  font-size: 18px;
}

.catalog-points {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
  color: #ccd3df;
}

.catalog-points li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.catalog-points svg {
  width: 17px;
  color: var(--green);
}

.catalog-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.platform-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.platform-available {
  grid-column: 1 / -1;
}

.platform-options .button-disabled {
  grid-column: 1 / -1;
}

.hero-platform-options {
  width: min(100%, 560px);
  margin: 0 0 12px;
}

.hero-platform-options .button {
  backdrop-filter: blur(14px);
}

.hero-purchase-actions {
  margin-bottom: 20px;
}

.button-disabled {
  min-width: 0;
  gap: 7px;
  padding: 0 14px;
  justify-content: flex-start;
  border-color: #303745;
  background: #10141c;
  color: #747e8f;
  font-size: 14px;
  white-space: nowrap;
  cursor: not-allowed;
  user-select: none;
}

.button-disabled:hover {
  transform: none;
}

.button-disabled small {
  margin-left: auto;
  color: #596273;
  font-size: 9px;
  font-weight: 750;
  text-transform: uppercase;
  white-space: nowrap;
}

.catalog-coming {
  max-width: 700px;
  margin: 80px auto 0;
  text-align: center;
}

.catalog-coming > div {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--violet);
}

.catalog-coming h2 {
  font-size: clamp(30px, 4vw, 44px);
}

.catalog-coming > p:last-child {
  color: var(--muted);
  font-size: 18px;
}

@media (max-width: 900px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .availability-grid {
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .availability-grid > div {
    min-height: 88px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid > div:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .feature-grid,
  .pricing-layout,
  .workflow-layout {
    grid-template-columns: 1fr;
  }

  .workflow-layout {
    gap: 30px;
  }

  .workflow-layout .section-heading {
    position: static;
  }

  .pricing-layout {
    gap: 42px;
  }

  .price-panel {
    width: min(420px, 100%);
  }

  .content-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .content-nav {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
  }

  .content-nav strong {
    width: 100%;
  }

  .catalog-item {
    grid-template-columns: 1fr;
  }

  .catalog-visual {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 64px;
  }

  .shell {
    width: min(100% - 32px, 1160px);
  }

  .site-header {
    backdrop-filter: none;
  }

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

  .nav-links {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 16px;
    background: #0b0e14;
    min-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links > a {
    padding: 17px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
  }

  .nav-links > a:not(.nav-download)::after {
    display: none;
  }

  .nav-download {
    min-height: 52px;
    justify-content: center;
    margin-top: 20px;
    border-bottom: 0;
  }

  .hero {
    min-height: calc(92svh - var(--header-height));
    align-items: flex-end;
    background-position: 62% center;
  }

  .polishkey-hero {
    background-position: 64% center;
  }

  .hero-shade {
    background: rgba(3, 6, 10, 0.48);
    box-shadow: inset 0 -280px 170px rgba(3, 6, 10, 0.83);
  }

  .polishkey-hero .hero-shade {
    background: rgba(3, 6, 10, 0.56);
    box-shadow: inset 0 -300px 180px rgba(3, 6, 10, 0.9);
  }

  .hero-content {
    padding: 80px 0 56px;
  }

  .hero-content > * {
    max-width: 100%;
  }

  h1 {
    font-size: clamp(56px, 21vw, 82px);
  }

  .hero-lede {
    font-size: 25px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-meta {
    flex-wrap: wrap;
  }

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

  .trust-grid > div,
  .trust-grid > div:nth-child(3) {
    min-height: 94px;
    padding: 20px 6px;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 76px 0;
  }

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

  .app-window {
    width: calc(100% + 16px);
    margin-left: -8px;
  }

  .window-bar {
    height: 28px;
  }

  .app-screen {
    height: calc(100% - 28px);
    padding: 11px 12px 12px;
  }

  .traffic-lights {
    left: 8px;
    gap: 5px;
  }

  .traffic-lights span {
    width: 8px;
    height: 8px;
  }

  .app-center {
    width: 88%;
    margin-top: 10px;
  }

  .app-symbol {
    margin-bottom: 8px;
  }

  .app-center h3 {
    margin-bottom: 5px;
  }

  .app-center > p,
  .drag-copy,
  .privacy-chip,
  .folder-link {
    display: none;
  }

  .app-button {
    right: 12px;
    bottom: 12px;
    left: 12px;
    border-radius: 6px;
  }

  .feature-grid {
    gap: 12px;
  }

  .feature-card {
    min-height: auto;
  }

  .feature-icon {
    margin-bottom: 38px;
  }

  .privacy-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .privacy-mark {
    width: 96px;
    height: 96px;
  }

  .privacy-mark svg {
    width: 40px;
  }

  .support-callout-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .page-hero {
    padding: 76px 0 58px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-panel h2 {
    font-size: clamp(23px, 7vw, 32px);
  }

  .contact-panel .button {
    width: 100%;
  }

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

  .catalog-visual {
    min-height: 330px;
  }

  .catalog-copy {
    padding: 30px 24px;
  }

  .catalog-actions {
    flex-direction: column;
  }

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

  .platform-options {
    grid-template-columns: 1fr;
  }

  .platform-available {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
