:root {
  --canvas: #08090c;
  --canvas-soft: #0e1016;
  --surface: #13151c;
  --surface-raised: #191c25;
  --line: #2a2e39;
  --line-soft: rgba(255, 255, 255, 0.09);
  --text: #f5f6fa;
  --muted: #9a9eab;
  --accent: #ff171f;
  --accent-soft: #ff837a;
  --focus: #ff9b94;
  --page-gutter: clamp(1rem, 4vw, 4.5rem);
  --page-max: 90rem;
  --display: "Aptos Display", "Segoe UI Variable Display", "Helvetica Neue", Arial, sans-serif;
  --body: Aptos, "Segoe UI Variable Text", "Helvetica Neue", Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --scroll-thumb: #343846;
  --scroll-track: #08090c;
  scrollbar-color: var(--scroll-thumb) var(--scroll-track);
  scrollbar-width: thin;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--canvas);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 17%, rgba(255, 23, 31, 0.075), transparent 29rem),
    var(--canvas);
  color: var(--text);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

*::-webkit-scrollbar-track {
  background: var(--scroll-track);
}

*::-webkit-scrollbar-thumb {
  border: 2px solid var(--scroll-track);
  border-radius: 999px;
  background: var(--scroll-thumb);
}

*::-webkit-scrollbar-thumb:hover {
  background: #4a4f60;
}

*::-webkit-scrollbar-thumb:active {
  background: #5d6377;
}

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

button {
  font: inherit;
}

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

svg {
  display: block;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  border-radius: 0.55rem;
  background: var(--text);
  color: var(--canvas);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

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

.site-header,
main,
.site-footer {
  width: min(100%, var(--page-max));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.5rem;
  padding-inline: var(--page-gutter);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border-radius: 0.6rem;
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.brand img {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 0.45rem;
  object-fit: cover;
}

.platform-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.platform-mark svg {
  width: 1rem;
  fill: currentColor;
}

.hero {
  padding: clamp(4.3rem, 8vw, 7.8rem) var(--page-gutter) 0;
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  text-align: center;
  animation: intro-rise 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.35rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: clamp(0.64rem, 1.5vw, 0.73rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0.26rem rgba(255, 23, 31, 0.11);
}

.hero h1 {
  max-width: 13ch;
  margin: 0;
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(3.1rem, 8.5vw, 7.75rem);
  font-weight: 600;
  letter-spacing: -0.073em;
  line-height: 0.91;
}

.hero h1 span {
  color: #9b9eaa;
}

.hero-line {
  margin: 1.65rem 0 2.15rem;
  color: #b9bcc6;
  font-size: clamp(1rem, 2vw, 1.2rem);
  letter-spacing: -0.015em;
}

.download-button {
  display: inline-flex;
  align-items: center;
  min-width: 19rem;
  min-height: 4.4rem;
  padding: 0.55rem 0.85rem 0.55rem 0.6rem;
  border: 1px solid #f5f6fa;
  border-radius: 999px;
  background: var(--text);
  color: #111219;
  text-align: left;
  box-shadow: 0 0.85rem 2.4rem rgba(0, 0, 0, 0.24);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.download-button:not(:disabled):hover {
  transform: translateY(-2px);
  background: var(--accent-soft);
  border-color: var(--accent-soft);
  box-shadow: 0 1rem 3rem rgba(158, 26, 31, 0.22);
}

.download-button:not(:disabled):active {
  transform: translateY(0) scale(0.985);
}

.download-button:disabled {
  border-color: var(--line);
  background: rgba(245, 246, 250, 0.08);
  color: #c8cad1;
  box-shadow: none;
  cursor: not-allowed;
}

.download-icon {
  display: grid;
  flex: 0 0 auto;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(8, 9, 12, 0.08);
}

.download-button:disabled .download-icon {
  background: rgba(255, 255, 255, 0.06);
}

.download-icon svg {
  width: 1.25rem;
  fill: currentColor;
}

.download-copy {
  display: grid;
  flex: 1;
  gap: 0.15rem;
  padding-inline: 0.8rem 1rem;
}

.download-copy strong {
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.download-copy small {
  opacity: 0.64;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.02em;
}

.download-arrow {
  width: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.browser-stage {
  position: relative;
  z-index: 1;
  margin-top: clamp(4.3rem, 8vw, 7rem);
  padding: 0 clamp(0rem, 2vw, 1.8rem);
  animation: browser-enter 900ms 170ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.stage-glow {
  position: absolute;
  top: -14%;
  left: 50%;
  width: min(74vw, 60rem);
  height: 44%;
  border-radius: 50%;
  background: rgba(255, 23, 31, 0.2);
  filter: blur(6rem);
  opacity: 0.6;
  transform: translateX(-50%);
  pointer-events: none;
}

.product-shot {
  position: relative;
  z-index: 1;
  margin: 0;
}

.product-shot-link {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1414 / 862;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.25rem;
  background: #111319;
  box-shadow:
    0 3.5rem 8rem rgba(0, 0, 0, 0.58),
    0 0 0 0.4rem rgba(255, 255, 255, 0.018);
  transition: border-color 200ms ease, transform 240ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 240ms ease;
}

.product-shot-link:hover {
  border-color: rgba(255, 23, 31, 0.54);
  box-shadow:
    0 3.8rem 8.5rem rgba(0, 0, 0, 0.62),
    0 0 0 0.4rem rgba(255, 23, 31, 0.04);
  transform: translateY(-0.2rem);
}

.product-shot-link:active {
  transform: translateY(0) scale(0.995);
}

.product-shot-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-expand {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(9, 10, 14, 0.76);
  color: #d9dae0;
  backdrop-filter: blur(0.7rem);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.product-shot-link:hover .preview-expand,
.product-shot-link:focus-visible .preview-expand {
  border-color: rgba(255, 23, 31, 0.6);
  background: rgba(255, 23, 31, 0.88);
  color: #fff;
}

.preview-expand svg {
  width: 1.12rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.product-shot figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0.25rem 0;
  color: #747986;
  font-family: var(--mono);
  font-size: 0.61rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-shot figcaption span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.product-shot figcaption i {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0.22rem rgba(255, 23, 31, 0.1);
}

.browser-shell {
  --preview-accent: var(--accent);
  --preview-accent-rgb: 255, 23, 31;
  position: relative;
  display: grid;
  grid-template-columns: 3.6rem minmax(0, 1fr);
  min-height: clamp(32rem, 56vw, 47rem);
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.45rem;
  background: #101219;
  box-shadow:
    0 3.5rem 8rem rgba(0, 0, 0, 0.56),
    0 0 0 0.4rem rgba(255, 255, 255, 0.02),
    inset 0 1px rgba(255, 255, 255, 0.04);
  transition: grid-template-columns 320ms cubic-bezier(0.22, 1, 0.36, 1), grid-template-rows 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.browser-sidebar {
  z-index: 2;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  gap: 0.48rem;
  padding: 0.74rem 0.52rem;
  overflow: hidden;
  border-right: 1px solid var(--line-soft);
  border-radius: 1.45rem 0 0 1.45rem;
  background: #0c0e13;
  transition: padding 240ms ease;
}

.browser-mark {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.65rem;
  place-items: center;
  border-radius: 0.72rem;
  background: rgba(var(--preview-accent-rgb), 0.13);
}

.browser-mark img {
  width: 1.55rem;
  height: 1.55rem;
  object-fit: cover;
  border-radius: 0.38rem;
}

.sidebar-tool,
.toolbar-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: #777c8b;
}

.sidebar-tool {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 0.7rem;
}

.sidebar-tool.is-active {
  background: rgba(var(--preview-accent-rgb), 0.13);
  color: var(--preview-accent);
}

.sidebar-tool svg,
.toolbar-icon svg {
  width: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.sidebar-spacer {
  flex: 1;
}

.sidebar-avatar {
  display: grid;
  width: 2.1rem;
  height: 2.1rem;
  place-items: center;
  border: 1px solid rgba(var(--preview-accent-rgb), 0.26);
  border-radius: 50%;
  color: var(--preview-accent);
  font-family: var(--mono);
  font-size: 0.56rem;
  font-weight: 700;
}

.browser-main {
  display: grid;
  min-width: 0;
  grid-template-rows: auto auto minmax(0, 1fr);
  overflow: hidden;
  border-radius: 0 1.45rem 1.45rem 0;
}

.tab-strip {
  display: flex;
  min-width: 0;
  height: 2.8rem;
  align-items: end;
  gap: 0.34rem;
  padding: 0.48rem 0.52rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  background: #0c0e13;
  color: #9a9eaa;
  font-size: 0.68rem;
}

.traffic-light {
  width: 0.58rem;
  height: 0.58rem;
  margin: 0 0.42rem 0.72rem 0.35rem;
  border-radius: 50%;
  background: var(--preview-accent);
  box-shadow: 0 0 0 0.2rem rgba(var(--preview-accent-rgb), 0.1);
}

.browser-tab {
  display: inline-flex;
  width: clamp(7rem, 17vw, 11rem);
  height: 2rem;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0.72rem;
  border-radius: 0.58rem 0.58rem 0 0;
  white-space: nowrap;
}

.browser-tab.is-current {
  background: #171a22;
  color: #dfe1e7;
}

.browser-tab b {
  margin-left: auto;
  color: #6f7482;
  font-size: 0.78rem;
  font-weight: 400;
}

.tab-favicon {
  display: grid;
  width: 1rem;
  height: 1rem;
  place-items: center;
  border-radius: 0.25rem;
  background: var(--preview-accent);
  color: #0c0e13;
  font-size: 0.52rem;
  font-weight: 800;
}

.tab-dot {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #5e6474;
}

.tab-add,
.window-control {
  display: grid;
  height: 2rem;
  place-items: center;
}

.tab-add {
  width: 2rem;
  font-size: 1rem;
}

.window-drag {
  min-width: 1rem;
  flex: 1;
}

.window-control {
  width: 2rem;
  padding-bottom: 0.28rem;
  font-size: 0.72rem;
}

.browser-toolbar {
  display: flex;
  min-width: 0;
  height: 3.3rem;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.66rem;
  border-bottom: 1px solid var(--line-soft);
  background: #171a22;
  transition: height 240ms ease, padding 240ms ease;
}

.toolbar-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.55rem;
}

.password-tool {
  color: var(--preview-accent);
}

.address-bar {
  display: flex;
  min-width: 0;
  height: 2.15rem;
  flex: 1;
  align-items: center;
  gap: 0.55rem;
  margin-inline: 0.25rem;
  padding: 0 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0.72rem;
  background: #0f1118;
  color: #9ca1af;
  font-family: var(--mono);
  font-size: 0.62rem;
}

.address-bar span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.address-shield,
.address-lock {
  flex: 0 0 auto;
  width: 0.95rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.address-shield {
  color: var(--preview-accent);
}

.address-lock {
  margin-left: auto;
  color: #747988;
}

.browser-viewport {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #0b0d13;
}

.preview-wallpaper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 82%, rgba(var(--preview-accent-rgb), 0.28), transparent 24%),
    radial-gradient(circle at 82% 12%, rgba(var(--preview-accent-rgb), 0.16), transparent 23%),
    linear-gradient(143deg, #10131c 0%, #090b11 52%, #11131b 100%);
  transition: background 300ms ease;
}

.preview-wallpaper::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 3.2rem 3.2rem;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(var(--preview-accent-rgb), 0.17);
  border-radius: 50%;
}

.orbit-one {
  top: -33%;
  right: 4%;
  width: 55%;
  aspect-ratio: 1;
}

.orbit-two {
  right: 13%;
  bottom: -56%;
  width: 70%;
  aspect-ratio: 1;
}

.preview-a {
  position: absolute;
  right: 13%;
  bottom: -11%;
  color: rgba(var(--preview-accent-rgb), 0.07);
  font-family: var(--display);
  font-size: clamp(16rem, 32vw, 32rem);
  font-weight: 800;
  letter-spacing: -0.12em;
  line-height: 0.8;
}

.preview-message {
  position: absolute;
  top: 46%;
  left: 11%;
  z-index: 2;
  display: grid;
  width: min(41%, 27rem);
  gap: 0.75rem;
  transform: translateY(-50%);
}

.preview-kicker {
  color: var(--preview-accent);
  font-family: var(--mono);
  font-size: clamp(0.52rem, 1vw, 0.66rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.preview-message > strong {
  color: #f0f1f5;
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 3rem);
  font-weight: 520;
  letter-spacing: -0.055em;
  line-height: 1;
}

.preview-search {
  display: flex;
  width: min(100%, 23rem);
  height: clamp(2.35rem, 4vw, 3rem);
  align-items: center;
  justify-content: space-between;
  margin-top: 0.4rem;
  padding: 0 0.8rem 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0.7rem;
  background: rgba(12, 14, 20, 0.76);
  color: #7f8492;
  font-size: clamp(0.68rem, 1vw, 0.8rem);
  backdrop-filter: blur(0.8rem);
}

.preview-search kbd {
  padding: 0.18rem 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.3rem;
  background: #171a22;
  color: #a1a5b0;
  font-family: var(--mono);
  font-size: 0.58rem;
}

.privacy-chip {
  position: absolute;
  right: 2rem;
  bottom: 1.65rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.68rem 0.85rem;
  border: 1px solid rgba(var(--preview-accent-rgb), 0.25);
  border-radius: 0.68rem;
  background: rgba(13, 15, 21, 0.78);
  color: #a7abb7;
  font-size: 0.66rem;
  backdrop-filter: blur(0.7rem);
}

.privacy-chip svg {
  width: 1rem;
  fill: none;
  stroke: var(--preview-accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.privacy-chip strong {
  color: var(--text);
}

.custom-panel {
  position: absolute;
  top: clamp(6rem, 11vw, 8.8rem);
  right: clamp(1rem, 4vw, 3rem);
  z-index: 5;
  width: clamp(15.5rem, 23vw, 20rem);
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 1rem;
  background: rgba(22, 24, 32, 0.91);
  box-shadow: 0 1.6rem 4rem rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(1.35rem);
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0.1rem 0.1rem 1rem;
  border-bottom: 1px solid var(--line-soft);
}

.panel-heading span:first-child,
.control-label {
  color: #9ca0ad;
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.panel-heading h2 {
  margin: 0.22rem 0 0;
  color: #f2f3f7;
  font-size: 0.94rem;
  font-weight: 620;
  letter-spacing: -0.025em;
}

.panel-close {
  display: grid;
  width: 1.7rem;
  height: 1.7rem;
  place-items: center;
  border-radius: 0.45rem;
  color: #7d8290;
  font-size: 1rem;
}

.control-group {
  display: grid;
  gap: 0.65rem;
  padding: 0.9rem 0.1rem;
  border-bottom: 1px solid var(--line-soft);
}

.choice-row,
.swatch-row,
.segmented-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.layout-choice,
.density-choice,
.theme-swatch {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #9da1ae;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.layout-choice:hover,
.density-choice:hover,
.theme-swatch:hover {
  border-color: rgba(var(--preview-accent-rgb), 0.54);
  color: #f1f2f6;
}

.layout-choice:active,
.density-choice:active,
.theme-swatch:active {
  transform: scale(0.97);
}

.layout-choice {
  display: flex;
  height: 2.45rem;
  flex: 1;
  align-items: center;
  gap: 0.45rem;
  justify-content: center;
  border-radius: 0.58rem;
  background: #12141b;
  font-size: 0.66rem;
}

.layout-choice.is-selected,
.density-choice.is-selected {
  border-color: rgba(var(--preview-accent-rgb), 0.5);
  background: rgba(var(--preview-accent-rgb), 0.12);
  color: var(--preview-accent);
}

.layout-icon {
  position: relative;
  display: block;
  width: 1.12rem;
  height: 0.82rem;
  overflow: hidden;
  border: 1px solid currentColor;
  border-radius: 0.16rem;
  opacity: 0.72;
}

.layout-icon i,
.layout-icon b {
  position: absolute;
  display: block;
  background: currentColor;
}

.side-layout i {
  top: 0;
  bottom: 0;
  left: 0.24rem;
  width: 1px;
}

.side-layout b {
  top: 0.24rem;
  right: 0.15rem;
  width: 0.45rem;
  height: 1px;
}

.top-layout i {
  top: 0.23rem;
  right: 0;
  left: 0;
  height: 1px;
}

.top-layout b {
  top: 0.43rem;
  left: 0.18rem;
  width: 0.42rem;
  height: 1px;
}

.theme-swatch {
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  place-items: center;
  border-radius: 50%;
  background: transparent;
}

.theme-swatch span {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
}

.theme-swatch.is-selected {
  border-color: currentColor;
  box-shadow: inset 0 0 0 2px #161820;
}

.active-theme {
  margin-left: auto;
  color: var(--preview-accent);
  font-family: var(--mono);
  font-size: 0.58rem;
}

.density-group {
  border-bottom: 0;
}

.segmented-control {
  gap: 0.25rem;
  padding: 0.2rem;
  border-radius: 0.62rem;
  background: #101218;
}

.density-choice {
  height: 1.95rem;
  flex: 1;
  border-color: transparent;
  border-radius: 0.47rem;
  background: transparent;
  font-size: 0.62rem;
}

.encrypted-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 -0.2rem -0.2rem;
  padding: 0.75rem 0.4rem 0.1rem;
  color: #a8acb7;
  font-size: 0.62rem;
}

.encrypted-row > span:first-child {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.encrypted-row svg {
  width: 0.9rem;
  fill: none;
  stroke: var(--preview-accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.toggle-on {
  display: flex;
  width: 1.8rem;
  height: 1.03rem;
  align-items: center;
  justify-content: flex-end;
  padding: 0.12rem;
  border-radius: 999px;
  background: var(--preview-accent);
}

.toggle-on i {
  display: block;
  width: 0.79rem;
  height: 0.79rem;
  border-radius: 50%;
  background: #101219;
}

.browser-shell[data-layout="top"] {
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: 3rem minmax(0, 1fr);
}

.browser-shell[data-layout="top"] .browser-sidebar {
  flex-direction: row;
  padding: 0.28rem 0.62rem;
  border-right: 0;
  border-bottom: 1px solid var(--line-soft);
  border-radius: 1.45rem 1.45rem 0 0;
}

.browser-shell[data-layout="top"] .browser-mark {
  width: 2.25rem;
  height: 2.25rem;
  margin: 0 0.55rem 0 0;
}

.browser-shell[data-layout="top"] .browser-main {
  border-radius: 0 0 1.45rem 1.45rem;
}

.browser-shell[data-layout="top"] .sidebar-spacer {
  min-width: 0;
}

.browser-shell[data-density="comfy"] .browser-toolbar {
  height: 4.15rem;
  padding-block: 0.75rem;
}

.browser-shell[data-density="comfy"] .toolbar-icon {
  width: 2.45rem;
  height: 2.45rem;
}

.browser-shell[data-density="comfy"] .address-bar {
  height: 2.7rem;
  border-radius: 0.86rem;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: clamp(5rem, 10vw, 9rem) var(--page-gutter) 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.feature-row article {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 1rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);
}

.feature-row article + article {
  border-left: 1px solid var(--line-soft);
}

.feature-icon {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 23, 31, 0.22);
  border-radius: 0.78rem;
  background: rgba(255, 23, 31, 0.07);
  color: var(--accent-soft);
}

.feature-icon svg {
  width: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.feature-row h2 {
  margin: 0 0 0.25rem;
  color: #e8e9ee;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.feature-row p {
  margin: 0;
  color: #7f8491;
  font-size: 0.77rem;
}

.final-cta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  margin: clamp(5rem, 10vw, 9rem) var(--page-gutter) 0;
  padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 5vw, 5rem);
  border: 1px solid var(--line-soft);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 23, 31, 0.13), transparent 36%),
    #0d0f15;
}

.final-cta .eyebrow {
  margin-bottom: 1.1rem;
}

.final-cta h2 {
  max-width: 13ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  font-weight: 560;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.compact-download {
  flex: 0 0 auto;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 9rem;
  padding-inline: var(--page-gutter);
  color: #707481;
}

.footer-brand {
  color: #b7b9c2;
}

.footer-brand img {
  width: 1.55rem;
  height: 1.55rem;
}

.site-footer p {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes intro-rise {
  from { opacity: 0; transform: translateY(1.8rem); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes browser-enter {
  from { opacity: 0; transform: translateY(2.4rem) scale(0.975); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 900px) {
  .hero {
    padding-top: 3.8rem;
  }

  .browser-stage {
    padding: 0;
  }

  .browser-shell {
    min-height: 37rem;
  }

  .custom-panel {
    top: auto;
    right: 1rem;
    bottom: 1rem;
    width: min(18rem, 43%);
  }

  .preview-message {
    top: 37%;
    left: 8%;
    width: 47%;
  }

  .privacy-chip {
    display: none;
  }

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

  .feature-row article + article {
    border-top: 1px solid var(--line-soft);
    border-left: 0;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 650px) {
  .site-header {
    min-height: 4.6rem;
  }

  .platform-mark span {
    display: none;
  }

  .hero {
    padding-top: 3.1rem;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(3.15rem, 16.5vw, 5.4rem);
  }

  .hero-line {
    max-width: 18rem;
    margin-top: 1.35rem;
  }

  .download-button {
    width: min(100%, 20rem);
    min-width: 0;
  }

  .browser-stage {
    margin: 4.5rem -0.2rem 0;
  }

  .product-shot-link {
    border-radius: 0.9rem;
  }

  .preview-expand {
    right: 0.65rem;
    bottom: 0.65rem;
    width: 2.35rem;
    height: 2.35rem;
  }

  .product-shot figcaption {
    padding-inline: 0.15rem;
    font-size: 0.55rem;
  }

  .browser-shell,
  .browser-shell[data-layout="top"] {
    display: block;
    min-height: 47.5rem;
    overflow: hidden;
    border-radius: 1.15rem;
  }

  .browser-sidebar {
    display: none;
  }

  .browser-main {
    height: 26rem;
    border-radius: 1.15rem 1.15rem 0 0;
  }

  .browser-tab:not(.is-current),
  .tab-add,
  .window-control,
  .toolbar-forward {
    display: none;
  }

  .browser-tab {
    width: 8rem;
  }

  .toolbar-icon {
    width: 1.6rem;
  }

  .address-bar {
    margin-inline: 0.05rem;
  }

  .preview-message {
    top: 48%;
    width: 72%;
  }

  .preview-message > strong {
    font-size: 1.7rem;
  }

  .preview-a {
    right: 3%;
    font-size: 18rem;
  }

  .custom-panel {
    position: absolute;
    top: 26rem;
    right: 0;
    bottom: auto;
    width: 100%;
    min-height: 15rem;
    border: 0;
    border-top: 1px solid var(--line-soft);
    border-radius: 0;
    background: #15171f;
    box-shadow: none;
    backdrop-filter: none;
  }

  .panel-heading {
    padding-bottom: 0.72rem;
  }

  .control-group {
    padding-block: 0.72rem;
  }

  .encrypted-row {
    display: none;
  }

  .feature-row {
    margin-top: 5.5rem;
  }

  .final-cta {
    margin-inline: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .site-footer {
    min-height: 7rem;
  }

  .site-footer p {
    display: none;
  }
}

@media (max-width: 390px) {
  .download-arrow {
    display: none;
  }

  .download-copy {
    padding-right: 0.35rem;
  }

  .browser-shell,
  .browser-shell[data-layout="top"] {
    min-height: 48.5rem;
  }

  .custom-panel {
    min-height: 16.5rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    transition-duration: 0.01ms;
  }

  .hero-copy,
  .browser-stage {
    animation: none;
  }
}

@media (forced-colors: active) {
  :root {
    scrollbar-color: auto;
  }

  .stage-glow,
  .preview-wallpaper::before {
    display: none;
  }

  .download-button,
  .layout-choice,
  .density-choice,
  .theme-swatch {
    border: 1px solid ButtonText;
  }
}
