:root {
  color-scheme: dark;
  --panel: #08111d;
  --text: rgba(248, 251, 255, 0.94);
  --muted: rgba(203, 216, 234, 0.64);
  --muted-strong: rgba(203, 216, 234, 0.78);
  --line: rgba(211, 226, 245, 0.16);
  --line-soft: rgba(211, 226, 245, 0.1);
  --blue: #62adff;
  --blue-soft: rgba(64, 145, 255, 0.16);
  --green: #70e2a3;
  --green-soft: rgba(112, 226, 163, 0.1);
  --orange: #ffb15f;
  --orange-soft: rgba(255, 177, 95, 0.12);
  --surface: rgba(7, 13, 22, 0.78);
  --surface-raised: rgba(16, 31, 49, 0.86);
  --surface-soft: rgba(255, 255, 255, 0.045);
  --shadow: 0 28px 80px -48px rgba(0, 0, 0, 0.92);
  font-family: "Geist", "Satoshi", "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html {
  background: #071523;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(70, 145, 255, 0.11), transparent 30rem),
    radial-gradient(circle at 88% 2%, rgba(112, 226, 163, 0.045), transparent 28rem),
    #071523;
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: radial-gradient(rgba(255, 255, 255, 0.34) 0.5px, transparent 0.5px);
  background-size: 4px 4px;
  mix-blend-mode: overlay;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: fixed;
  z-index: 5;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(7, 13, 22, 0.94);
  color: var(--text);
  font-size: 13px;
  font-weight: 760;
  padding: 10px 12px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  width: 100%;
  min-height: 72px;
  margin: 0;
  border-bottom: 1px solid rgba(98, 173, 255, 0.16);
  background:
    radial-gradient(circle at 18% 0%, rgba(70, 145, 255, 0.2), transparent 32%),
    linear-gradient(180deg, rgba(11, 28, 47, 0.98), rgba(7, 17, 29, 0.98));
  box-shadow: 0 18px 54px -38px rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(18px) saturate(1.08);
}

.site-header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: min(1180px, calc(100vw - 48px));
  min-height: 72px;
  margin: 0 auto;
  padding: 0;
}

.brand {
  display: inline-grid;
  grid-template-columns: 30px max-content;
  align-items: center;
  gap: 9px;
  min-width: 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 820;
}

.site-header .brand {
  position: absolute;
  left: 0;
}

.brand img {
  width: 30px;
  height: 30px;
}

.header-nav-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.site-nav a,
.support-link,
.text-button {
  min-height: 34px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
  line-height: 34px;
  padding: 0 2px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.support-link:hover,
.text-button:hover,
.site-nav a:focus-visible,
.support-link:focus-visible,
.text-button:focus-visible {
  color: var(--text);
  outline: 0;
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.header-actions {
  justify-content: end;
}

.primary-button,
.price-card a {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  border: 1px solid rgba(80, 157, 255, 0.6);
  border-radius: 8px;
  background: linear-gradient(180deg, #5866ff, #4453ee);
  color: #ffffff;
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
  padding: 0 24px;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.chrome-button {
  position: absolute;
  right: 0;
  display: inline-grid;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid rgba(80, 157, 255, 0.6);
  border-radius: 8px;
  background: linear-gradient(180deg, #5866ff, #4453ee);
  color: #ffffff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 760;
  padding: 0 16px;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.primary-button:hover,
.price-card a:hover,
.primary-button:focus-visible,
.price-card a:focus-visible {
  border-color: rgba(157, 195, 248, 0.75);
  background: linear-gradient(180deg, #6472ff, #4a59f4);
  outline: 0;
  transform: translateY(-1px);
}

.chrome-button:hover,
.chrome-button:focus-visible {
  border-color: rgba(157, 195, 248, 0.75);
  background: linear-gradient(180deg, #6472ff, #4a59f4);
  outline: 0;
  transform: translateY(-1px);
}

.chrome-button:active,
.primary-button:active,
.price-card a:active,
.text-button:active {
  transform: translateY(1px) scale(0.99);
}

.chrome-dot {
  width: 14px;
  height: 14px;
  border: 3px solid #ffce40;
  border-radius: 50%;
  background: #34a853;
  box-shadow: inset -4px -3px 0 #4285f4;
}

.primary-button span {
  display: block;
}

.browser-icon {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
}

.browser-icon::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
}

.browser-icon::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 8px;
  width: 2px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  transform: rotate(42deg);
}

.hero {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 20px;
  width: min(1240px, calc(100vw - 32px));
  min-height: auto;
  margin: 0 auto;
  padding: clamp(54px, 7vw, 82px) 0 34px;
  text-align: center;
}

.hero-copy,
.section-heading {
  display: grid;
  justify-items: center;
  gap: 16px;
}

.section-heading {
  justify-items: start;
  text-align: left;
}

.kicker,
.label,
.badge {
  width: fit-content;
  margin: 0;
  border: 1px solid rgba(128, 169, 222, 0.24);
  border-radius: 999px;
  background: rgba(128, 169, 222, 0.1);
  color: #acd3ff;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1;
  padding: 7px 9px;
  text-transform: none;
}

.label {
  color: #9bcaff;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 1220px;
  color: var(--text);
  font-size: clamp(54px, 6vw, 86px);
  font-weight: 860;
  letter-spacing: 0;
  line-height: 0.98;
  text-wrap: balance;
}

h1 span {
  display: block;
}

.section-heading h2 span {
  display: block;
}

h2 {
  max-width: 34ch;
  color: var(--text);
  font-size: clamp(30px, 4.4vw, 54px);
  font-weight: 840;
  letter-spacing: 0;
  line-height: 1.04;
  text-wrap: balance;
}

h3 {
  color: var(--text);
  font-size: clamp(21px, 2.5vw, 30px);
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1.08;
  text-wrap: balance;
}

.hero-text,
.section-heading p,
.story-copy p,
.step p,
.install-card p,
.faq-list p,
.price-card p {
  max-width: 64ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
  text-wrap: pretty;
}

.hero-actions {
  justify-content: center;
}

.model-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: min(100%, 880px);
}

.model-strip span {
  min-height: 34px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 720;
  line-height: 34px;
  padding: 0 10px;
}

.section {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 118px) 0;
}

.hero-video,
.large-video,
.split-video,
.mini-video {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(circle at 16% 0%, rgba(68, 144, 232, 0.18), transparent 32%),
    radial-gradient(circle at 92% 82%, rgba(11, 94, 195, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(19, 42, 65, 0.72), rgba(6, 10, 17, 0.94) 58%),
    var(--panel);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.hero-video {
  width: min(1120px, calc(100vw - 32px));
  margin-top: 18px;
  padding: 16px;
}

.video-placeholder-label {
  position: absolute;
  z-index: 1;
  top: 14px;
  left: 14px;
  max-width: calc(100% - 28px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 13, 22, 0.76);
  color: var(--muted-strong);
  font-size: 11px;
  font-weight: 760;
  padding: 7px 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-stage {
  position: relative;
  min-height: 620px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: rgba(4, 10, 18, 0.42);
  padding: 50px 18px 18px;
}

.browser-tabs-demo {
  display: grid;
  grid-template-columns: 46px repeat(4, minmax(0, 1fr));
  gap: 7px;
  margin-bottom: 12px;
}

.browser-tabs-demo span {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 34px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 9px 9px 5px 5px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
  padding: 0 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-tabs-demo .is-pinned {
  display: block;
  background: var(--green-soft);
}

.browser-tabs-demo img {
  width: 18px;
  height: 18px;
}

.video-product-grid {
  display: grid;
  grid-template-columns: minmax(310px, 386px) minmax(300px, 1fr);
  gap: 16px;
  min-height: 500px;
}

.hero-play {
  position: absolute;
  right: 30px;
  bottom: 30px;
}

.trusted-rails {
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 72px 0 42px;
  overflow: hidden;
}

.trusted-rails p {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  text-align: center;
}

.logo-marquee {
  position: relative;
  display: flex;
  width: min(100%, 1080px);
  margin: 0 auto;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-track {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
  width: max-content;
  min-width: 100%;
  padding: 2px 0;
  animation: logo-scroll 44s linear infinite;
  will-change: transform;
}

.logo-marquee[data-direction="right"] .logo-track {
  animation-direction: reverse;
  animation-duration: 52s;
}

.logo-track span {
  display: grid;
  grid-template-columns: 20px max-content;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  border: 1px solid var(--line-soft);
  border-radius: 9px;
  background: var(--surface-soft);
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 720;
  padding: 0 12px;
  white-space: nowrap;
}

.logo-track img {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  object-fit: contain;
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 5px));
  }
}

.feature-copy-center {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 34px;
  text-align: center;
}

.trusted-rails + .recordly-feature {
  padding-top: clamp(42px, 6vw, 68px);
}

.feature-copy-center h2 {
  max-width: 32ch;
}

.feature-copy-center p {
  max-width: 64ch;
  color: var(--muted);
}

.large-video {
  min-height: 500px;
  padding: 64px 28px 28px;
}

.sort-film {
  display: grid;
  align-content: center;
  gap: 12px;
  width: min(760px, 100%);
  min-height: 390px;
  margin: 0 auto;
}

.sort-film span {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 58px;
  border: 1px solid var(--line-soft);
  border-radius: 13px;
  background: var(--surface-raised);
  color: var(--text);
  font-size: 15px;
  font-weight: 760;
  padding: 0 16px;
}

.sort-film span:nth-child(2) {
  width: 86%;
  margin-left: 9%;
}

.sort-film span:nth-child(3) {
  width: 92%;
}

.sort-film span:nth-child(4) {
  width: 74%;
  margin-left: 18%;
}

.sort-film img {
  width: 24px;
  height: 24px;
}

.split-recordly {
  display: grid;
  grid-template-columns: minmax(380px, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
}

.split-recordly.reverse {
  grid-template-columns: minmax(420px, 1.08fr) minmax(380px, 0.92fr);
}

.split-recordly.reverse .split-copy {
  order: 2;
}

.split-copy {
  display: grid;
  gap: 14px;
}

.split-copy h2 {
  max-width: none;
  font-size: clamp(26px, 2.6vw, 30px);
  line-height: 1.08;
}

.split-video {
  min-height: 410px;
  padding: 64px 22px 22px;
}

.inline-launcher {
  max-width: none;
}

.feature-showcase {
  position: relative;
  width: min(1180px, calc(100vw - 32px));
}

.feature-copy {
  gap: 22px;
}

.feature-copy h2 {
  max-width: none;
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 820;
  line-height: 1.03;
  text-wrap: balance;
}

.feature-copy h2 span {
  display: block;
}

.feature-copy p {
  max-width: 42ch;
  color: rgba(221, 234, 248, 0.72);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.62;
}

.video-placeholder-media {
  overflow: visible;
  min-height: auto;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.video-showcase-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  width: 100%;
  border: 1px solid rgba(214, 239, 255, 0.16);
  border-radius: 30px;
  background:
    radial-gradient(circle at 58% 44%, rgba(123, 223, 242, 0.16), transparent 20rem),
    linear-gradient(150deg, rgba(15, 31, 45, 0.86), rgba(6, 10, 16, 0.96) 62%);
  box-shadow:
    0 34px 120px -58px rgba(40, 190, 220, 0.58),
    0 42px 120px -72px rgba(0, 0, 0, 0.98),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.video-showcase-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 24%);
}

.feature-video {
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  object-fit: cover;
}

.capabilities-section {
  display: grid;
  gap: 34px;
}

.capability-heading {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.capability-heading h2 {
  max-width: 22ch;
  font-size: clamp(32px, 4.8vw, 58px);
}

.capability-heading p {
  max-width: 64ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.capability-card {
  position: relative;
  overflow: hidden;
  min-height: 236px;
  grid-template-rows: 54px auto 1fr;
  gap: 16px;
  border-color: rgba(211, 226, 245, 0.11);
  border-radius: 12px;
  background: rgba(7, 13, 22, 0.48);
  box-shadow: none;
  padding: 26px;
}

.capability-card h3 {
  align-self: start;
  margin-top: 0;
  font-size: 24px;
  line-height: 1.08;
}

.capability-card p {
  max-width: 34ch;
  font-size: 14px;
  line-height: 1.56;
}

.capability-card h3,
.capability-card p,
.cap-visual {
  position: relative;
}

.cap-visual {
  position: relative;
  display: block;
  width: 54px;
  height: 54px;
  margin-bottom: 0;
}

.cap-visual::before,
.cap-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.cap-visual::before {
  inset: 0;
  border: 1px solid rgba(211, 226, 245, 0.12);
  border-radius: 14px;
  background:
    radial-gradient(circle at 34% 18%, rgba(98, 173, 255, 0.16), transparent 24px),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.cap-visual::after {
  display: none;
}

.cap-visual svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 27px;
  height: 27px;
  margin: 13.5px;
  fill: none;
  stroke: rgba(214, 233, 255, 0.9);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.video-library .section-heading {
  margin-bottom: 34px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.video-card {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(7, 13, 22, 0.74);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.045);
  padding: 12px;
}

.video-card strong {
  color: var(--text);
  font-size: 15px;
}

.mini-video {
  display: grid;
  min-height: 180px;
  place-items: center;
  padding: 18px;
}

.mini-video p {
  position: absolute;
  right: 14px;
  bottom: 12px;
  left: 14px;
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 720;
}

.section.narrow {
  width: min(1040px, calc(100vw - 32px));
}

.product-preview {
  padding-top: 8px;
}

.extension-shell,
.story-visual,
.price-card,
.step,
.faq-list details,
.install-card {
  border: 1px solid var(--line);
  background: rgba(7, 13, 22, 0.74);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.extension-shell {
  overflow: hidden;
  border-radius: 16px;
  background:
    radial-gradient(circle at 16% 0%, rgba(68, 144, 232, 0.18), transparent 32%),
    radial-gradient(circle at 92% 82%, rgba(11, 94, 195, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(19, 42, 65, 0.72), rgba(6, 10, 17, 0.94) 58%),
    var(--panel);
  padding: 16px;
}

.extension-browser-tabs {
  display: grid;
  grid-template-columns: 46px repeat(4, minmax(0, 1fr));
  gap: 7px;
  margin-bottom: 12px;
}

.extension-browser-tabs span {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 34px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 9px 9px 5px 5px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
  padding: 0 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.extension-browser-tabs .is-pinned {
  display: block;
  background: var(--green-soft);
}

.extension-browser-tabs img,
.mock-domain img,
.rule-row img,
.cleanup-panel img,
.launcher-row img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.extension-stage {
  display: grid;
  grid-template-columns: minmax(310px, 386px) minmax(300px, 1fr);
  gap: 16px;
  min-height: 520px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: rgba(4, 10, 18, 0.42);
  padding: 18px;
}

.sidepanel-demo {
  display: grid;
  gap: 10px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(140deg, rgba(19, 42, 65, 0.72), rgba(6, 10, 17, 0.94) 58%),
    var(--panel);
  color: var(--text);
  box-shadow: 0 24px 70px -48px rgba(0, 0, 0, 0.92), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 14px;
}

.main-panel {
  align-self: stretch;
}

.mock-app-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.mock-app-header div {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.mock-app-header img {
  width: 32px;
  height: 32px;
}

.mock-app-header strong {
  font-size: 15px;
}

.mock-app-header span,
.mock-summary button,
.mock-domain em {
  width: fit-content;
  border: 1px solid rgba(112, 226, 163, 0.3);
  border-radius: 999px;
  background: var(--green-soft);
  color: rgba(178, 244, 206, 0.94);
  font-size: 11px;
  font-style: normal;
  font-weight: 820;
  line-height: 1;
  padding: 6px 8px;
}

.mock-search {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(203, 216, 234, 0.58);
  font-size: 13px;
  font-weight: 720;
  line-height: 40px;
  padding: 0 12px;
}

.mock-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
}

.mock-summary button,
.mock-domain em {
  border-color: rgba(98, 173, 255, 0.38);
  background: var(--blue-soft);
  color: #acd3ff;
}

.mock-domain-list {
  display: grid;
  align-content: start;
  gap: 8px;
}

.mock-domain {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  min-height: 62px;
  border: 1px solid var(--line-soft);
  border-radius: 13px;
  background: var(--surface-raised);
  padding: 9px 10px;
}

.mock-domain.active {
  border-color: rgba(98, 173, 255, 0.34);
  background: rgba(64, 145, 255, 0.14);
}

.mock-domain img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px;
}

.mock-domain strong,
.mock-domain small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mock-domain strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 790;
}

.mock-domain small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.mock-bottom-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  margin-top: auto;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(8, 18, 30, 0.72);
}

.mock-bottom-tabs span {
  display: grid;
  min-height: 38px;
  place-items: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
}

.mock-bottom-tabs .selected {
  background: var(--blue-soft);
  color: #acd3ff;
}

.launcher-demo {
  align-self: end;
  display: grid;
  gap: 9px;
  max-width: 520px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background:
    radial-gradient(circle at 36% 12%, rgba(45, 112, 181, 0.28), transparent 45%),
    linear-gradient(112deg, rgba(18, 27, 39, 0.9), rgba(8, 11, 16, 0.92) 55%, rgba(5, 8, 12, 0.96));
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 28px 90px rgba(0, 0, 0, 0.34);
  padding: 14px;
}

.launcher-demo > strong {
  min-height: 46px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
  font-weight: 560;
  line-height: 46px;
}

.launcher-row {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 720;
  padding: 7px 9px;
}

.launcher-row.selected {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.11);
}

.launcher-row img,
.action-glyph {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px;
}

.action-glyph {
  display: block;
  background: rgba(98, 173, 255, 0.28);
}

kbd {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 760;
  padding: 5px 7px;
}

.feature-split {
  display: grid;
  gap: 78px;
  margin-top: 54px;
}

.feature-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1.28fr);
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
}

.feature-story.reverse {
  grid-template-columns: minmax(360px, 1.28fr) minmax(280px, 0.72fr);
}

.feature-story.reverse .story-copy {
  order: 2;
}

.story-copy {
  display: grid;
  gap: 14px;
}

.story-visual {
  border-radius: 14px;
  padding: 18px;
}

.rules-demo,
.cleanup-demo {
  display: grid;
  align-content: start;
  gap: 10px;
  background:
    linear-gradient(180deg, rgba(13, 25, 41, 0.96), rgba(7, 13, 22, 0.96));
}

.profile-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}

.profile-pills span {
  min-height: 34px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
  line-height: 34px;
  padding: 0 11px;
}

.profile-pills .selected {
  border-color: rgba(98, 173, 255, 0.38);
  background: var(--blue-soft);
  color: #acd3ff;
}

.rule-row {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: rgba(4, 10, 18, 0.56);
  color: var(--text);
  padding: 9px 11px;
}

.rule-row img {
  width: 26px;
  height: 26px;
}

.rule-row strong {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rule-row span,
.cleanup-panel-header span {
  border: 1px solid rgba(128, 169, 222, 0.24);
  border-radius: 999px;
  background: rgba(128, 169, 222, 0.1);
  color: rgba(203, 216, 234, 0.86);
  font-size: 11px;
  font-weight: 820;
  padding: 6px 8px;
}

.cleanup-panel {
  display: grid;
  gap: 9px;
}

.cleanup-panel-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  margin-bottom: 3px;
  color: var(--text);
}

.cleanup-panel-header span {
  border-color: rgba(252, 211, 77, 0.24);
  background: rgba(252, 211, 77, 0.08);
  color: rgba(251, 226, 146, 0.92);
}

.cleanup-panel label {
  display: grid;
  grid-template-columns: 18px 22px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  min-height: 42px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: var(--surface-raised);
  color: var(--text);
  font-size: 13px;
  font-weight: 720;
  padding: 8px 10px;
}

.cleanup-panel input {
  appearance: none;
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border: 1px solid rgba(128, 169, 222, 0.42);
  border-radius: 5px;
  background: rgba(4, 10, 18, 0.8);
}

.cleanup-panel input:checked {
  border-color: var(--blue);
  background: #4091ff;
}

.cleanup-panel input:checked::before {
  content: "";
  width: 8px;
  height: 6px;
  border: solid #ffffff;
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg) translate(1px, -1px);
}

.cleanup-panel img {
  width: 20px;
  height: 20px;
}

.cleanup-actions-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-top: 4px;
}

.cleanup-actions-preview button {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--text);
  font-size: 12px;
  font-weight: 760;
}

.demos,
.pricing-section {
  width: min(1180px, calc(100vw - 32px));
}

.video-frame {
  position: relative;
  display: grid;
  min-height: 440px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.08) 1px, transparent 1px),
    radial-gradient(circle at 50% 28%, rgba(98, 173, 255, 0.24), transparent 14rem),
    #101827;
  background-size: 48px 48px, 48px 48px, auto, auto;
  color: var(--text);
}

.video-frame.compact {
  min-height: 170px;
}

.video-frame p {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  color: rgba(248, 251, 255, 0.82);
  font-size: 13px;
  font-weight: 760;
}

.play-button {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.play-button::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 21px 0 0 27px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid var(--text);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 46px;
}

.step {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 240px;
  border-radius: 14px;
  padding: 22px;
}

.step span {
  color: #9bcaff;
  font-size: 13px;
  font-weight: 860;
}

.step h3 {
  font-size: 24px;
}

.pricing-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.pricing-grid::before {
  content: "";
  position: absolute;
  inset: -76px 18% auto 48%;
  height: 240px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(98, 120, 255, 0.22), transparent 68%);
  filter: blur(18px);
  opacity: 0.75;
}

.pricing-section .section-heading {
  max-width: 880px;
}

.pricing-section .section-heading h2 {
  max-width: 100%;
  font-size: clamp(32px, 3.6vw, 50px);
  line-height: 1.04;
}

.pricing-section .section-heading h2 span {
  white-space: nowrap;
}

.price-card {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-rows: auto auto minmax(66px, auto) 1fr auto;
  gap: 17px;
  min-height: 510px;
  overflow: hidden;
  border: 1px solid rgba(211, 226, 245, 0.13);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(6, 15, 26, 0.72);
  box-shadow:
    0 22px 70px -54px rgba(10, 18, 32, 0.95),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  padding: 26px 24px 24px;
  backdrop-filter: blur(14px) saturate(1.1);
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.price-card:hover {
  border-color: rgba(155, 202, 255, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03)),
    rgba(7, 17, 29, 0.78);
  transform: translateY(-3px);
}

.price-card.recommended {
  border-color: rgba(119, 165, 255, 0.42);
  background:
    radial-gradient(circle at 50% 0%, rgba(98, 173, 255, 0.18), transparent 16rem),
    linear-gradient(180deg, rgba(83, 110, 255, 0.14), rgba(42, 94, 160, 0.08)),
    rgba(8, 24, 42, 0.78);
  box-shadow:
    0 28px 96px -48px rgba(70, 105, 255, 0.75),
    0 0 0 1px rgba(159, 189, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-8px);
}

.price-card.recommended::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(122, 177, 255, 0.95), rgba(91, 96, 255, 0.52), rgba(112, 226, 163, 0.28));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.price-card.recommended:hover {
  transform: translateY(-11px);
}

.plan-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  min-height: 30px;
}

.price-card h3 {
  margin-top: 0;
  color: rgba(248, 251, 255, 0.96);
  font-size: 25px;
  line-height: 1.08;
}

.plan-badge {
  display: inline-grid;
  min-height: 26px;
  align-items: center;
  border: 1px solid rgba(155, 202, 255, 0.18);
  border-radius: 999px;
  background: rgba(155, 202, 255, 0.08);
  color: rgba(203, 225, 251, 0.82);
  font-size: 11px;
  font-weight: 820;
  line-height: 1;
  padding: 0 10px;
  white-space: nowrap;
}

.plan-badge.subtle {
  color: rgba(203, 216, 234, 0.72);
}

.recommended-badge {
  border-color: rgba(155, 202, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(155, 202, 255, 0.18), rgba(98, 173, 255, 0.1));
  color: rgba(237, 247, 255, 0.95);
  box-shadow: 0 12px 32px -24px rgba(98, 173, 255, 0.9);
}

.price-card .price {
  margin-top: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 780;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.price span {
  color: var(--text);
  font-size: clamp(34px, 2.9vw, 42px);
  font-weight: 850;
}

.price em {
  color: rgba(203, 216, 234, 0.66);
  font-size: 13px;
  font-style: normal;
  font-weight: 780;
}

.plan-copy {
  min-height: 66px;
  color: rgba(203, 216, 234, 0.72);
  font-size: 14px;
  line-height: 1.55;
  text-wrap: pretty;
}

.price-card ul {
  display: grid;
  align-content: start;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  display: grid;
  grid-template-columns: 19px minmax(0, 1fr) max-content;
  align-items: center;
  column-gap: 10px;
  border-top: 1px solid rgba(211, 226, 245, 0.075);
  color: rgba(220, 233, 249, 0.82);
  font-size: 12.5px;
  font-weight: 660;
  line-height: 1.4;
  padding: 10px 0;
}

.price-card li:first-child {
  border-top: 0;
  padding-top: 0;
}

.price-card li span {
  display: block;
  color: rgba(235, 243, 255, 0.86);
  font-weight: 740;
  min-width: 0;
}

.price-card li em {
  display: inline-grid;
  min-height: 22px;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: rgba(203, 216, 234, 0.68);
  font-size: 10px;
  font-style: normal;
  font-weight: 820;
  line-height: 1;
  padding: 0 2px;
  white-space: nowrap;
}

.price-card li::before {
  content: "✓";
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid rgba(112, 226, 163, 0.32);
  border-radius: 999px;
  background: rgba(112, 226, 163, 0.1);
  color: rgba(142, 239, 183, 0.96);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(1px);
}

.price-card li.limited::before,
.price-card li.highlight::before {
  content: "";
  border-color: rgba(98, 173, 255, 0.3);
  background: rgba(98, 173, 255, 0.12);
  box-shadow: inset 0 0 0 5px rgba(98, 173, 255, 0.42);
}

.price-card li.highlight em {
  color: rgba(155, 202, 255, 0.94);
}

.price-card li.not-included {
  color: rgba(203, 216, 234, 0.5);
}

.price-card li.not-included span,
.price-card li.not-included em {
  color: rgba(203, 216, 234, 0.48);
}

.price-card li.not-included em {
  color: rgba(203, 216, 234, 0.42);
}

.price-card li.not-included::before {
  content: "";
  border-color: rgba(203, 216, 234, 0.15);
  background:
    linear-gradient(rgba(203, 216, 234, 0.55), rgba(203, 216, 234, 0.55)) center / 7px 1.5px no-repeat,
    rgba(255, 255, 255, 0.025);
}

.price-card .badge {
  position: absolute;
  top: 18px;
  right: 18px;
}

.price-card a {
  width: 100%;
  min-height: 52px;
  margin-top: 8px;
  border-color: rgba(125, 151, 255, 0.55);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 38%),
    linear-gradient(180deg, #5964ff, #4653ee);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  font-size: 15px;
}

.price-card a:hover,
.price-card a:focus-visible {
  border-color: rgba(176, 199, 255, 0.78);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 38%),
    linear-gradient(180deg, #6670ff, #4d5aff);
  transform: translateY(-1px);
}

.price-card.recommended a {
  border-color: rgba(167, 199, 255, 0.86);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), transparent 38%),
    linear-gradient(180deg, #6f7aff, #4f5dff 58%, #4452f0);
  box-shadow:
    0 18px 40px -26px rgba(98, 120, 255, 0.95),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 820px;
    margin-inline: auto;
  }
}

.faq-section {
  position: relative;
  width: min(1120px, calc(100vw - 48px));
  overflow: visible;
  padding-block: clamp(76px, 9vw, 112px) clamp(72px, 9vw, 108px);
}

.faq-section::before,
.faq-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.62;
}

.faq-section::before {
  inset: 0 auto 0 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(211, 226, 245, 0.14) 18%, rgba(211, 226, 245, 0.1) 72%, transparent);
}

.faq-section::after {
  top: 0;
  right: 0;
  width: 48%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(211, 226, 245, 0.14), transparent);
}

.faq-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(38px, 5vw, 64px);
}

.faq-intro {
  position: sticky;
  top: 112px;
  display: grid;
  align-content: start;
  gap: 20px;
  min-height: 220px;
  padding-top: 0;
}

.faq-intro h2 {
  max-width: 12.5ch;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 720;
  line-height: 1.02;
  text-wrap: balance;
}

.faq-intro p {
  max-width: 31ch;
  color: rgba(224, 230, 239, 0.72);
  font-size: clamp(15px, 1.55vw, 18px);
  font-weight: 560;
  line-height: 1.55;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  overflow: hidden;
  border-color: rgba(211, 226, 245, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.042);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  padding: 0;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.faq-list details:hover,
.faq-list details:focus-within {
  border-color: rgba(211, 226, 245, 0.18);
  background: rgba(255, 255, 255, 0.055);
  transform: translateY(-1px);
}

.faq-list details[open] {
  background: rgba(255, 255, 255, 0.052);
}

.faq-list summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22px;
  align-items: center;
  gap: 18px;
  min-height: 62px;
  cursor: pointer;
  color: rgba(248, 251, 255, 0.9);
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 650;
  line-height: 1.24;
  list-style: none;
  padding: 18px 24px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 1.5px solid rgba(248, 251, 255, 0.58);
  border-bottom: 1.5px solid rgba(248, 251, 255, 0.58);
  justify-self: center;
  transform: rotate(45deg);
  transform-origin: 50% 50%;
  transition: transform 220ms ease, border-color 220ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(225deg);
}

.faq-list summary:focus-visible {
  outline: 2px solid rgba(98, 173, 255, 0.72);
  outline-offset: -6px;
  border-radius: 16px;
}

.faq-list p {
  max-width: 72ch;
  color: rgba(224, 230, 239, 0.72);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.58;
  padding: 0 60px 24px 24px;
}

.install-section {
  width: min(980px, calc(100vw - 32px));
}

.install-card {
  display: grid;
  justify-items: center;
  gap: 16px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: clamp(42px, 7vw, 76px) 0;
  text-align: center;
}

.install-card h2 {
  max-width: 22ch;
}

.site-footer {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) max-content;
  align-items: center;
  gap: 20px;
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  padding: 28px 0 42px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 720;
}

.site-footer p {
  font-size: 12px;
  font-weight: 650;
}

.legal-page {
  width: min(860px, calc(100vw - 32px));
  margin: 0 auto;
  padding: clamp(68px, 9vw, 112px) 0 clamp(72px, 9vw, 118px);
}

.legal-hero {
  display: grid;
  gap: 14px;
  margin-bottom: 42px;
}

.legal-back,
.legal-label {
  width: fit-content;
  color: #9bcaff;
  font-size: 12px;
  font-weight: 820;
  line-height: 1;
}

.legal-back {
  border: 1px solid rgba(128, 169, 222, 0.2);
  border-radius: 8px;
  background: rgba(128, 169, 222, 0.08);
  padding: 9px 11px;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.legal-back:hover,
.legal-back:focus-visible {
  border-color: rgba(128, 169, 222, 0.34);
  background: rgba(128, 169, 222, 0.12);
  color: var(--text);
  outline: 0;
}

.legal-label {
  margin-top: 22px;
  color: rgba(203, 216, 234, 0.62);
}

.legal-hero h1 {
  max-width: 12ch;
  color: var(--text);
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 840;
  line-height: 0.98;
  text-wrap: balance;
}

.legal-hero p:not(.legal-label) {
  max-width: 62ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.legal-content {
  display: grid;
  gap: 34px;
  border-top: 1px solid var(--line-soft);
  padding-top: 36px;
}

.legal-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(7, 13, 22, 0.46);
}

.legal-card h2 {
  max-width: none;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14px;
  font-weight: 820;
  padding: 18px 20px;
}

.legal-rows {
  margin: 0;
  padding: 0 20px;
}

.legal-rows div {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 20px;
  border-bottom: 1px solid var(--line-soft);
  padding: 17px 0;
}

.legal-rows div:last-child {
  border-bottom: 0;
}

.legal-rows dt {
  color: rgba(203, 216, 234, 0.58);
  font-size: 11px;
  font-weight: 820;
}

.legal-rows dd {
  margin: 0;
  color: rgba(248, 251, 255, 0.84);
  font-size: 15px;
  line-height: 1.56;
}

.legal-section {
  display: grid;
  gap: 12px;
}

.legal-section h2 {
  max-width: none;
  color: var(--text);
  font-size: clamp(22px, 2.3vw, 28px);
  line-height: 1.1;
}

.legal-section p,
.legal-section li,
.legal-note {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.legal-section ul {
  display: grid;
  gap: 9px;
  margin: 2px 0 0;
  padding-left: 22px;
}

.legal-section a,
.legal-rows a,
.legal-note a {
  color: #9bcaff;
  text-decoration: underline;
  text-decoration-color: rgba(155, 202, 255, 0.34);
  text-underline-offset: 3px;
}

.legal-section code {
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(248, 251, 255, 0.84);
  font-size: 0.92em;
  padding: 2px 5px;
}

.legal-note {
  border-top: 1px solid var(--line-soft);
  margin: 8px 0 0;
  padding-top: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms cubic-bezier(0.16, 1, 0.3, 1), transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-intro.reveal {
  transform: translate3d(-28px, 18px, 0);
}

.faq-list .reveal {
  transform: translate3d(34px, 18px, 0);
}

.faq-intro.reveal.visible,
.faq-list .reveal.visible {
  transform: translate3d(0, 0, 0);
}

.faq-list details.reveal.visible:hover,
.faq-list details.reveal.visible:focus-within {
  transform: translateY(-1px);
}

.faq-list .reveal:nth-child(1) {
  --reveal-delay: 60ms;
}

.faq-list .reveal:nth-child(2) {
  --reveal-delay: 110ms;
}

.faq-list .reveal:nth-child(3) {
  --reveal-delay: 160ms;
}

.faq-list .reveal:nth-child(4) {
  --reveal-delay: 210ms;
}

.faq-list .reveal:nth-child(5) {
  --reveal-delay: 260ms;
}

.faq-list .reveal:nth-child(6) {
  --reveal-delay: 310ms;
}

.faq-list .reveal:nth-child(n+7) {
  --reveal-delay: 360ms;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .logo-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .logo-track {
    animation: none !important;
  }
}

@media (max-width: 1050px) {
  .site-header-inner {
    width: min(100vw - 32px, 760px);
  }

  .site-nav {
    display: none;
  }

  .header-actions {
    justify-content: center;
  }

  .extension-stage,
  .video-product-grid,
  .split-recordly,
  .split-recordly.reverse,
  .faq-layout,
  .feature-story,
  .feature-story.reverse,
  .demo-grid,
  .steps,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .feature-copy h2 {
    max-width: 14ch;
  }

  .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-story.reverse .story-copy {
    order: 0;
  }

  .split-recordly.reverse .split-copy {
    order: 0;
  }

  .price-card.recommended {
    transform: none;
  }

  .launcher-demo {
    align-self: stretch;
    max-width: none;
  }

  .pricing-grid {
    max-width: 820px;
    margin-inline: auto;
  }

  .faq-section::before {
    left: 18px;
  }

  .faq-section::after {
    width: 100%;
  }

  .faq-intro {
    position: relative;
    top: auto;
    min-height: 0;
  }

  .faq-intro h2 {
    max-width: 14ch;
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 64px;
  }

  .site-header-inner {
    width: min(100vw - 20px, 560px);
    min-height: 64px;
    gap: 10px;
  }

  .support-link {
    display: none;
  }

  .chrome-button {
    min-height: 38px;
    font-size: 13px;
    padding: 0 12px;
  }

  .brand span {
    font-size: 14px;
  }

  .hero,
  .section,
  .section.narrow,
  .demos,
  .pricing-section,
  .install-section,
  .legal-page,
  .site-footer {
    width: min(100vw - 48px, 560px);
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
    padding-bottom: 24px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(30px, 7.6vw, 42px);
    line-height: 1.04;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(24px, 5.4vw, 32px);
  }

  .hero-text,
  .section-heading p,
  .feature-copy-center p,
  .split-copy p {
    font-size: 15px;
    line-height: 1.5;
  }

  .feature-copy-center h2,
  .split-copy.feature-copy h2 {
    max-width: 32ch;
    font-size: clamp(20px, 5.3vw, 25px);
    line-height: 1.08;
    text-wrap: balance;
  }

  .hero-video,
  .large-video,
  .split-video {
    width: 100%;
    min-width: 0;
    min-height: 0;
    border-radius: 14px;
    padding: 54px 12px 12px;
  }

  .hero-stage {
    min-height: 0;
    padding: 44px 10px 10px;
  }

  .browser-tabs-demo {
    grid-template-columns: 40px repeat(2, minmax(0, 1fr));
  }

  .browser-tabs-demo span:nth-child(n+4) {
    display: none;
  }

  .video-product-grid {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .sidepanel-demo {
    min-width: 0;
  }

  .large-video {
    padding-top: 58px;
  }

  .sort-film {
    min-height: 270px;
  }

  .sort-film span {
    min-height: 48px;
    font-size: 13px;
  }

  .split-recordly {
    gap: 20px;
  }

  .feature-showcase {
    width: min(100vw - 48px, 560px);
    padding-block: 68px;
  }

  .feature-copy {
    gap: 14px;
  }

  .video-showcase-frame {
    border-radius: 20px;
  }

  .split-copy h2 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .cleanup-panel label {
    grid-template-columns: 18px 22px minmax(0, 1fr);
  }

  .cleanup-actions-preview {
    grid-template-columns: 1fr;
  }

  .extension-shell {
    border-radius: 14px;
    padding: 10px;
  }

  .extension-browser-tabs {
    grid-template-columns: 42px repeat(2, minmax(0, 1fr));
  }

  .extension-browser-tabs span:nth-child(n+4) {
    display: none;
  }

  .extension-stage {
    min-height: 0;
    border-radius: 12px;
    padding: 10px;
  }

  .launcher-demo {
    display: none;
  }

  .mock-summary,
  .cleanup-panel-header {
    grid-template-columns: 1fr;
  }

  .video-frame {
    min-height: 300px;
  }

  .video-frame.compact {
    min-height: 190px;
  }

  .price-card {
    min-height: 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    gap: 12px;
  }

  .pricing-section .section-heading h2 {
    font-size: clamp(20px, 5.2vw, 24px);
    line-height: 1.12;
  }

  .faq-section {
    padding-block: 68px;
  }

  .faq-layout {
    gap: 28px;
  }

  .faq-intro {
    gap: 18px;
  }

  .faq-intro h2 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .faq-intro p {
    max-width: 34ch;
    font-size: 16px;
  }

  .faq-list {
    gap: 12px;
  }

  .faq-list details {
    border-radius: 14px;
  }

  .faq-list summary {
    min-height: 62px;
    font-size: 16px;
    padding: 18px;
  }

  .faq-list p {
    font-size: 15px;
    padding: 0 44px 20px 18px;
  }

  .price-card {
    padding: 22px;
  }

  .capability-grid {
    grid-template-columns: 1fr;
  }

  .capability-card {
    min-height: 0;
  }

  .site-footer {
    justify-items: start;
  }

  .site-footer nav {
    justify-content: start;
  }

  .legal-page {
    padding-block: 48px 76px;
  }

  .legal-hero {
    margin-bottom: 32px;
  }

  .legal-hero h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .legal-content {
    gap: 28px;
    padding-top: 30px;
  }

  .legal-rows div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
