:root {
  --ink: #172326;
  --ink-soft: #334448;
  --muted: #677477;
  --paper: #ffffff;
  --surface: #f7faf9;
  --surface-strong: #eef4f2;
  --line: #dce6e3;
  --line-strong: #c8d7d3;
  --teal: #087a71;
  --teal-dark: #075c57;
  --teal-soft: #dff5ef;
  --mint: #8ce4d0;
  --olive: #758f27;
  --blue: #46788f;
  --amber: #a86b17;
  --navy: #102f31;
  --display: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --body: "DM Sans", "Segoe UI", sans-serif;
  --mono: "DM Mono", monospace;
  --container: 78rem;
  --shadow-sm: 0 0.5rem 1.5rem rgb(22 47 43 / 0.06);
  --shadow-lg: 0 2rem 6rem rgb(23 56 51 / 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: clip;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

button {
  color: inherit;
}

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

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

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

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: var(--display);
  line-height: 1.15;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 0.15rem solid var(--teal);
  outline-offset: 0.25rem;
}

::selection {
  color: var(--navy);
  background: var(--mint);
}

.container {
  width: min(calc(100% - 2.5rem), var(--container));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.75rem 1rem;
  color: #fff;
  background: var(--navy);
  transform: translateY(-150%);
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon-sprite symbol,
svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  background: rgb(247 250 249 / 0.82);
  backdrop-filter: blur(1rem);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgb(255 255 255 / 0.94);
  box-shadow: 0 0.25rem 1rem rgb(19 46 42 / 0.04);
}

.header-inner {
  min-height: 4.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.mini-mark {
  display: grid;
  grid-template-columns: repeat(2, 0.4rem);
  gap: 0.16rem;
  width: 1.15rem;
  height: 1.15rem;
  padding: 0.1rem;
  border-radius: 0.2rem;
  background: var(--navy);
}

.mini-mark i {
  border-radius: 0.06rem;
  background: var(--mint);
}

.brand-logo {
  position: relative;
  width: 8.8rem;
  height: 2.15rem;
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
}

.brand-logo img,
.cta-brand-logo img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10.15rem;
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%);
}

.brand-logo img {
  transition: opacity 180ms ease;
}

.brand:hover .brand-logo img {
  opacity: 0.78;
}

.nav-toggle {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.65rem;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 0.45rem;
  background: #fff;
  cursor: pointer;
}

.nav-toggle svg {
  grid-area: 1 / 1;
  width: 1.3rem;
  height: 1.3rem;
}

.nav-toggle .menu-close,
.nav-toggle[aria-expanded="true"] .menu-open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .menu-close {
  display: block;
}

.site-nav {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  max-height: calc(100dvh - 4.75rem);
  padding: 1rem 1.25rem 1.25rem;
  overflow-y: auto;
  border-bottom: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

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

.site-nav a {
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  padding-inline: 0.75rem;
  border-radius: 0.4rem;
  color: #4b5a5d;
  font-size: 0.875rem;
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--teal-dark);
  background: var(--teal-soft);
}

.site-nav .nav-cta {
  justify-content: center;
  margin-top: 0.5rem;
  padding-inline: 1.2rem;
  color: #fff;
  background: var(--navy);
}

.site-nav .nav-cta:hover {
  color: #fff;
  background: var(--teal-dark);
}

.button {
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.85rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 0.45rem;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button svg,
.text-link svg {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.button:hover,
.text-link:hover {
  transform: translateY(-0.1rem);
}

.button:hover svg,
.text-link:hover svg {
  transform: translateX(0.2rem);
}

.button-primary {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 0.5rem 1.25rem rgb(16 47 49 / 0.13);
}

.button-primary:hover {
  background: var(--teal-dark);
  box-shadow: 0 0.75rem 1.5rem rgb(7 92 87 / 0.16);
}

.button-ghost {
  border-color: var(--line-strong);
  color: var(--ink);
  background: rgb(255 255 255 / 0.5);
}

.button-ghost:hover {
  border-color: #96bab2;
  background: #fff;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  color: var(--teal);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 1.15rem;
  height: 1px;
  background: currentColor;
}

.eyebrow.light {
  color: #a4e8d8;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 7.5rem 0 4.5rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgb(247 250 249 / 0.2), #f5f9f7 82%),
    radial-gradient(circle at 85% 12%, #d9f6ed 0, transparent 32%),
    radial-gradient(circle at 8% 45%, #e8f1ee 0, transparent 30%);
}

.hero-grid,
.final-grid {
  position: absolute;
  inset: 0;
  opacity: 0.38;
  background-image: linear-gradient(rgb(16 47 49 / 0.06) 1px, transparent 1px), linear-gradient(90deg, rgb(16 47 49 / 0.06) 1px, transparent 1px);
  background-size: 4rem 4rem;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 70%, transparent);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.5rem);
  pointer-events: none;
}

.hero-orb-one {
  top: 12%;
  right: -8rem;
  width: 19rem;
  height: 19rem;
  border: 1px solid rgb(8 122 113 / 0.12);
  box-shadow: inset 0 0 5rem rgb(140 228 208 / 0.12);
}

.hero-orb-two {
  bottom: 5%;
  left: -6rem;
  width: 13rem;
  height: 13rem;
  border: 1px solid rgb(70 120 143 / 0.1);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 3.5rem;
  align-items: center;
}

.hero-copy {
  max-width: 45rem;
  text-align: center;
  margin-inline: auto;
}

.hero-copy .eyebrow {
  justify-content: center;
}

.hero h1 {
  margin-bottom: 1.6rem;
  font-size: clamp(2.55rem, 8vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.062em;
  line-height: 1.02;
}

.hero h1 em {
  color: var(--teal);
  font-style: normal;
}

.hero-lede {
  max-width: 43rem;
  margin: 0 auto 1.8rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
}

.hero-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-note svg {
  width: 1rem;
  height: 1rem;
}

.hero-product {
  position: relative;
  width: min(100%, 72rem);
  margin-inline: auto;
  padding-block: 0.5rem 2rem;
}

.app-shadow {
  position: absolute;
  right: 10%;
  bottom: -2%;
  left: 10%;
  height: 20%;
  border-radius: 50%;
  background: rgb(10 62 57 / 0.18);
  filter: blur(2rem);
}

.app-window {
  position: relative;
  overflow: hidden;
  border: 1px solid #cbd9d6;
  border-radius: 0.7rem;
  background: #fff;
  box-shadow: 0 1.75rem 5rem rgb(22 60 55 / 0.16), 0 0.25rem 0.75rem rgb(22 60 55 / 0.08);
}

.app-titlebar {
  min-height: 2.6rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.7rem;
  border-bottom: 1px solid #e0e9e6;
  background: #f7faf9;
}

.app-title-brand {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--display);
  font-size: 0.57rem;
}

.mini-mark {
  grid-template-columns: repeat(2, 0.25rem);
  gap: 0.1rem;
  width: 0.72rem;
  height: 0.72rem;
  padding: 0.05rem;
  border-radius: 0.1rem;
}

.title-tabs {
  display: none;
}

.window-actions {
  display: flex;
  gap: 0.7rem;
}

.window-actions i {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #c6d2cf;
}

.window-actions i:last-child {
  background: #dc9d91;
}

.app-body {
  display: grid;
  min-height: 19rem;
}

.app-sidebar {
  display: none;
}

.app-main {
  min-width: 0;
  padding: 0.8rem;
  background: #fbfcfc;
}

.app-main-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.app-main-head small,
.stat-row small,
.worker-head small,
.mini-interface small,
.dashboard-title small,
.dash-cards small {
  display: block;
  color: #81918d;
  font-family: var(--mono);
  font-size: 0.38rem;
  letter-spacing: 0.04em;
}

.app-main-head h2 {
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
  letter-spacing: -0.03em;
}

.status-chip {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.45rem;
  border: 1px solid #bfe2d8;
  border-radius: 2rem;
  color: #177062;
  background: #eaf8f4;
  font-size: 0.45rem;
  font-weight: 700;
  white-space: nowrap;
}

.status-chip i,
.side-health i,
.mini-top span i,
.dash-activity > span i,
.stage-label span i,
.activity-row span i {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: #20a482;
  box-shadow: 0 0 0 0.18rem rgb(32 164 130 / 0.13);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}

.stat-row > div {
  min-width: 0;
  padding: 0.5rem;
  border: 1px solid #e2eae8;
  border-radius: 0.35rem;
  background: #fff;
}

.stat-row b {
  display: block;
  margin-top: 0.15rem;
  font-family: var(--display);
  font-size: 0.75rem;
}

.stat-row em {
  display: block;
  overflow: hidden;
  color: #899692;
  font-size: 0.34rem;
  font-style: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.stat-row span {
  display: block;
  height: 0.15rem;
  margin-top: 0.3rem;
  overflow: hidden;
  border-radius: 1rem;
  background: #e8efed;
}

.stat-row span i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--teal);
}

.progress-31 { width: 31%; }
.progress-56 { width: 56%; }
.progress-68 { width: 68%; }
.progress-82 { width: 82%; }
.progress-100 { width: 100%; }

.worker-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.45rem;
}

.worker-head b {
  display: block;
  font-size: 0.57rem;
}

.worker-head button {
  min-height: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.45rem;
  border: 1px solid #d5dfdc;
  border-radius: 0.25rem;
  background: #fff;
  font-size: 0.4rem;
}

.worker-head button svg {
  width: 0.55rem;
  height: 0.55rem;
}

.workers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem;
}

.workers-grid article {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #dfe8e5;
  border-radius: 0.3rem;
  background: #fff;
}

.worker-num {
  position: absolute;
  z-index: 2;
  top: 0.22rem;
  right: 0.3rem;
  color: #87928f;
  font-family: var(--mono);
  font-size: 0.33rem;
}

.browser-line {
  height: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.12rem;
  padding-inline: 0.25rem;
  border-bottom: 1px solid #e8eeec;
  background: #f5f8f7;
}

.browser-line > i {
  width: 0.15rem;
  height: 0.15rem;
  border-radius: 50%;
  background: #bdc9c6;
}

.browser-line span {
  width: 42%;
  height: 0.22rem;
  margin-left: 0.18rem;
  border-radius: 1rem;
  background: #e2e9e7;
}

.worker-content {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 0.35rem;
}

.avatar,
.account-avatar,
.person {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 0.25rem;
  color: #0b6157;
  background: #d9f1eb;
  font-size: 0.34rem;
  font-style: normal;
  font-weight: 800;
}

.avatar.blue,
.account-avatar.alt,
.person.teal {
  color: #355f73;
  background: #dcecf3;
}

.avatar.ochre,
.account-avatar.amber,
.person.gold {
  color: #825312;
  background: #f5ead7;
}

.avatar.violet {
  color: #62517d;
  background: #e9e3f3;
}

.worker-content p {
  min-width: 0;
  flex: 1;
  margin: 0;
  line-height: 1.15;
}

.worker-content p b,
.worker-content p small {
  display: block;
  overflow: hidden;
  font-size: 0.32rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.worker-content p small {
  margin-top: 0.1rem;
  color: #8a9693;
}

.worker-content strong {
  display: none;
  color: var(--teal);
  font-size: 0.3rem;
}

.worker-progress {
  height: 0.12rem;
  background: #edf2f1;
}

.worker-progress i {
  display: block;
  height: 100%;
  background: #45b09a;
}

.worker-progress.muted i {
  background: #c29d63;
}

.activity-row {
  display: none;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: none;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgb(202 218 214 / 0.9);
  border-radius: 0.45rem;
  background: rgb(255 255 255 / 0.94);
  box-shadow: 0 0.8rem 2rem rgb(20 52 48 / 0.12);
  backdrop-filter: blur(0.8rem);
}

.floating-card p {
  margin: 0;
  line-height: 1.3;
}

.floating-card p b,
.floating-card p small {
  display: block;
}

.floating-card p b {
  font-size: 0.63rem;
}

.floating-card p small {
  margin-top: 0.1rem;
  color: var(--muted);
  font-size: 0.48rem;
}

.float-icon {
  width: 1.9rem;
  height: 1.9rem;
  display: grid;
  place-items: center;
  border-radius: 0.35rem;
  color: var(--teal);
  background: var(--teal-soft);
}

.float-icon.blue {
  color: var(--blue);
  background: #e4eff3;
}

.float-icon svg {
  width: 1rem;
  height: 1rem;
}

.floating-card .check {
  width: 1rem;
  height: 1rem;
  display: grid;
  place-items: center;
  margin-left: 0.6rem;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
}

.floating-card .check svg {
  width: 0.65rem;
  height: 0.65rem;
}

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

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

.trust-grid article {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.25rem 0.85rem;
  border-bottom: 1px solid var(--line);
}

.trust-grid article:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.trust-grid article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.trust-grid svg {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--teal);
}

.trust-grid b,
.trust-grid span {
  display: block;
}

.trust-grid b {
  font-size: 0.76rem;
  line-height: 1.35;
}

.trust-grid span {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.4;
}

.section {
  padding-block: 5.25rem;
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 2.8rem;
}

.section-heading h2,
.browser-copy h2,
.outreach-copy h2,
.security-copy h2,
.premium-copy h2,
.faq-intro h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.052em;
}

.section-heading > p:last-child,
.section-heading-split > p,
.browser-copy > p,
.outreach-copy > p,
.security-copy > p,
.premium-copy > p,
.faq-intro > p {
  max-width: 40rem;
  color: var(--muted);
  font-size: 1rem;
}

.section-heading-split {
  display: grid;
  max-width: none;
  gap: 1rem;
}

.workspaces {
  background: var(--surface);
}

.workspace-showcase {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.workspace-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.workspace-tab {
  min-height: 5rem;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem;
  border: 0;
  border-right: 1px solid var(--line);
  color: var(--muted);
  background: #f6f9f8;
  text-align: left;
  cursor: pointer;
}

.workspace-tab:last-child {
  border-right: 0;
}

.workspace-tab.active {
  color: var(--ink);
  background: #fff;
  box-shadow: inset 0 0.2rem 0 var(--teal);
}

.workspace-tab-number {
  color: var(--teal);
  font-family: var(--mono);
  font-size: 0.62rem;
}

.workspace-tab-copy {
  min-width: 0;
}

.workspace-tab b,
.workspace-tab small {
  display: block;
}

.workspace-tab b {
  font-size: 0.75rem;
  line-height: 1.3;
}

.workspace-tab small {
  display: none;
  margin-top: 0.2rem;
  color: #7d8986;
  font-size: 0.68rem;
}

.workspace-panel {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: 1.5rem;
  animation: panel-in 300ms ease-out;
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(0.5rem); }
  to { opacity: 1; transform: translateY(0); }
}

.workspace-copy {
  padding: 0.5rem 0;
}

.micro-label {
  margin-bottom: 1rem;
  color: var(--teal);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.07em;
}

.workspace-copy h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.6rem, 5vw, 2.5rem);
  letter-spacing: -0.04em;
}

.workspace-copy > p:not(.micro-label) {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.check-list svg {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
  margin-top: 0.15rem;
  color: var(--teal);
}

.mini-interface {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #d4dfdc;
  border-radius: 0.5rem;
  background: #fafcfc;
  box-shadow: 0 1rem 2.5rem rgb(22 57 52 / 0.09);
}

.mini-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #e0e8e6;
  background: #fff;
  font-size: 0.7rem;
}

.mini-top span {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #5e736d;
  font-size: 0.55rem;
}

.run-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1rem 0.75rem;
}

.run-summary h4,
.dashboard-title h4 {
  margin: 0.2rem 0;
  font-size: 0.95rem;
}

.run-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 0.6rem;
}

.ring {
  width: 3.35rem;
  height: 3.35rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--teal) 75%, #deebe7 0);
}

.ring::before {
  content: "";
  grid-area: 1 / 1;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: #fafcfc;
}

.ring span {
  z-index: 1;
  grid-area: 1 / 1;
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 700;
}

.ring span small {
  display: inline;
  font-size: 0.45rem;
}

.run-counters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 1rem;
  border-block: 1px solid #e2eae8;
}

.run-counters div {
  padding: 0.65rem;
  border-right: 1px solid #e2eae8;
}

.run-counters div:last-child {
  border-right: 0;
}

.run-counters span {
  display: block;
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 700;
}

.account-list {
  padding: 0.5rem 1rem 0.8rem;
}

.account-list > div {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
  padding-block: 0.55rem;
  border-bottom: 1px solid #edf1f0;
}

.account-list > div:last-child {
  border-bottom: 0;
}

.account-list p {
  min-width: 0;
  flex: 1;
  margin: 0;
  line-height: 1.3;
}

.account-list p b,
.account-list p small {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.account-list p b {
  font-size: 0.62rem;
}

.account-list p small {
  margin-top: 0.1rem;
  color: #85918f;
  font-size: 0.5rem;
}

.account-list em {
  color: var(--teal);
  font-size: 0.45rem;
  font-style: normal;
  font-weight: 700;
}

.account-list em.done {
  color: #407652;
}

.account-list em.waiting {
  color: var(--amber);
}

.dashboard-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
}

.dashboard-title button {
  min-height: 2rem;
  padding: 0.35rem 0.6rem;
  border: 0;
  border-radius: 0.25rem;
  color: #fff;
  background: var(--navy);
  font-size: 0.55rem;
}

.dash-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  padding-inline: 1rem;
}

.dash-cards > div {
  padding: 0.85rem;
  border: 1px solid #e0e8e6;
  border-radius: 0.3rem;
  background: #fff;
}

.dash-cards b {
  display: block;
  margin: 0.25rem 0 0.1rem;
  font-family: var(--display);
  font-size: 1.1rem;
}

.dash-cards i {
  display: block;
  color: var(--muted);
  font-size: 0.48rem;
  font-style: normal;
}

.dash-activity {
  margin: 0.65rem 1rem 1rem;
  padding: 0.75rem;
  border: 1px solid #e0e8e6;
  border-radius: 0.3rem;
  background: #fff;
}

.dash-activity > span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.57rem;
  font-weight: 700;
}

.activity-bars {
  height: 4.5rem;
  display: flex;
  align-items: end;
  gap: 0.3rem;
  margin-top: 0.75rem;
}

.activity-bars i {
  min-width: 0.25rem;
  flex: 1;
  border-radius: 0.1rem 0.1rem 0 0;
  background: #a8ddd0;
}

.activity-bars i:nth-child(3n) {
  background: #5db7a2;
}

.activity-bars .bar-24 { height: 24%; }
.activity-bars .bar-38 { height: 38%; }
.activity-bars .bar-44 { height: 44%; }
.activity-bars .bar-54 { height: 54%; }
.activity-bars .bar-63 { height: 63%; }
.activity-bars .bar-67 { height: 67%; }
.activity-bars .bar-72 { height: 72%; }
.activity-bars .bar-76 { height: 76%; }
.activity-bars .bar-81 { height: 81%; }
.activity-bars .bar-88 { height: 88%; }
.activity-bars .bar-94 { height: 94%; }
.activity-bars .bar-98 { height: 98%; }

.features {
  border-top: 1px solid var(--line);
  background: #fff;
}

.feature-grid {
  display: grid;
  border-top: 1px solid var(--line);
}

.feature-card {
  position: relative;
  min-height: 20rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.feature-num {
  position: absolute;
  top: 2rem;
  right: 0;
  color: #9aa6a3;
  font-family: var(--mono);
  font-size: 0.62rem;
}

.feature-icon,
.security-card > span,
.step-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  border-radius: 0.4rem;
  color: var(--teal);
  background: var(--teal-soft);
}

.feature-icon.olive {
  color: var(--olive);
  background: #edf2d9;
}

.feature-icon.blue {
  color: var(--blue);
  background: #e2eef2;
}

.feature-icon svg,
.security-card > span svg,
.step-icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.feature-card h3 {
  max-width: 18rem;
  margin-bottom: 0.85rem;
  font-size: 1.2rem;
  letter-spacing: -0.025em;
}

.feature-card p {
  max-width: 27rem;
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.feature-foot {
  display: block;
  margin-top: auto;
  padding-top: 1rem;
  color: #50736a;
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
}

.product-tour {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 8% 18%, rgb(140 228 208 / 0.2), transparent 24rem),
    var(--surface);
}

.tour-shell {
  overflow: hidden;
  border: 1px solid #ccdcd8;
  border-radius: 0.8rem;
  background: var(--navy);
  box-shadow: 0 2.4rem 6rem rgb(19 55 50 / 0.15);
}

.tour-stage {
  min-width: 0;
  padding: 0.55rem;
  background: #0b1d20;
}

.tour-window-bar {
  min-height: 2.25rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem;
  padding: 0 0.65rem;
  color: #b5c8c4;
  font-family: var(--mono);
  font-size: 0.56rem;
}

.tour-window-bar > span {
  display: flex;
  gap: 0.28rem;
}

.tour-window-bar i {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #41605d;
}

.tour-window-bar i:nth-child(2) {
  background: #789432;
}

.tour-window-bar i:nth-child(3) {
  background: #21a696;
}

.tour-window-bar b {
  color: #e0ece9;
  font-size: 0.58rem;
  font-weight: 500;
}

.tour-window-bar em {
  justify-self: end;
  color: #6f8d88;
  font-style: normal;
}

.tour-panel {
  margin: 0;
  overflow: hidden;
  border-radius: 0.48rem;
  background: #fff;
}

.tour-image-crop {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f1f4f8;
}

.tour-image-crop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.tour-panel-inbox .tour-image-crop img {
  height: 106%;
}

.tour-panel figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.6rem;
  padding: 0.85rem 1rem;
  border-top: 1px solid var(--line);
  background: #fff;
}

.tour-panel figcaption b,
.tour-panel figcaption small {
  display: block;
}

.tour-panel figcaption b {
  color: var(--ink);
  font-family: var(--display);
  font-size: 0.82rem;
}

.tour-panel figcaption small {
  max-width: 36rem;
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.45;
}

.tour-panel figcaption em {
  flex: 0 0 auto;
  color: #74938c;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-style: normal;
}

.tour-rail {
  padding: 1.25rem;
  color: #d7e7e3;
  background: var(--navy);
}

.tour-rail-heading {
  margin-bottom: 1rem;
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-dot i {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #31cfac;
  box-shadow: 0 0 0 0.26rem rgb(49 207 172 / 0.12);
}

.tour-rail-heading p {
  margin: 0.5rem 0 0;
  color: #8fa8a3;
  font-size: 0.75rem;
}

.tour-tabs {
  display: grid;
  gap: 0.45rem;
}

.tour-tab {
  min-height: 4.25rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgb(255 255 255 / 0.08);
  border-radius: 0.45rem;
  color: #bad0cb;
  background: rgb(255 255 255 / 0.025);
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.tour-tab:hover {
  color: #fff;
  border-color: rgb(140 228 208 / 0.3);
  transform: translateX(0.15rem);
}

.tour-tab.active {
  color: #fff;
  border-color: rgb(140 228 208 / 0.42);
  background: rgb(140 228 208 / 0.1);
}

.tour-tab > span {
  color: #6f9189;
  font-family: var(--mono);
  font-size: 0.58rem;
}

.tour-tab.active > span {
  color: var(--mint);
}

.tour-tab b,
.tour-tab small {
  display: block;
}

.tour-tab b {
  font-family: var(--display);
  font-size: 0.76rem;
}

.tour-tab small {
  margin-top: 0.12rem;
  color: #819b95;
  font-size: 0.62rem;
}

.tour-tab svg {
  width: 0.85rem;
  height: 0.85rem;
  opacity: 0.35;
  transition: opacity 180ms ease, transform 180ms ease;
}

.tour-tab.active svg {
  opacity: 1;
  transform: translateX(0.12rem);
}

.tour-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgb(255 255 255 / 0.08);
  color: #78918c;
  font-size: 0.62rem;
}

.tour-note svg {
  width: 0.85rem;
  height: 0.85rem;
  flex: 0 0 auto;
}

.browser-pool {
  position: relative;
  padding-block: 5.5rem;
  overflow: hidden;
  color: #d8e8e4;
  background: var(--navy);
}

.browser-glow {
  position: absolute;
  top: -12rem;
  right: -8rem;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(50 173 148 / 0.18), transparent 68%);
}

.browser-layout {
  position: relative;
  display: grid;
  gap: 3rem;
  align-items: center;
}

.browser-copy h2 {
  color: #fff;
}

.browser-copy h2 em {
  color: #9ee5d3;
  font-style: normal;
}

.browser-copy > p {
  color: #aabfba;
}

.mode-toggle {
  display: inline-flex;
  gap: 0.25rem;
  margin: 1rem 0 1.8rem;
  padding: 0.25rem;
  border: 1px solid rgb(194 229 220 / 0.15);
  border-radius: 0.4rem;
  background: rgb(255 255 255 / 0.04);
}

.mode-toggle button {
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.85rem;
  border: 0;
  border-radius: 0.25rem;
  color: #91aaa4;
  background: transparent;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
}

.mode-toggle button span {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #66827c;
}

.mode-toggle button.active {
  color: #fff;
  background: #214744;
}

.mode-toggle button.active span {
  background: #62d3b8;
  box-shadow: 0 0 0 0.2rem rgb(98 211 184 / 0.13);
}

.browser-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgb(213 237 231 / 0.13);
}

.browser-facts div {
  padding: 1.2rem 0.7rem 0 0;
}

.browser-facts b,
.browser-facts span {
  display: block;
}

.browser-facts b {
  color: #fff;
  font-family: var(--display);
  font-size: 1.3rem;
}

.browser-facts span {
  margin-top: 0.2rem;
  color: #869f99;
  font-size: 0.62rem;
  line-height: 1.45;
}

.browser-stage {
  min-height: 23rem;
  padding: 0.6rem;
  border: 1px solid rgb(192 228 220 / 0.18);
  border-radius: 0.6rem;
  background: #0c2426;
  box-shadow: 0 2rem 4rem rgb(0 0 0 / 0.2);
}

.stage-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.25rem 0.2rem 0.75rem;
}

.stage-label span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #a8d7cc;
  font-family: var(--mono);
  font-size: 0.53rem;
  letter-spacing: 0.08em;
}

.stage-label em {
  color: #607d77;
  font-size: 0.48rem;
  font-style: normal;
  text-align: right;
}

.browser-quads {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.3rem;
}

.browser-quad {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #29474a;
  border-radius: 0.25rem;
  background: #e9efee;
}

.browser-quad.active {
  border-color: #4dad99;
  box-shadow: 0 0 0 1px #4dad99;
}

.quad-top {
  min-height: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.3rem;
  background: #d9e1df;
}

.quad-top > span {
  display: flex;
  gap: 0.12rem;
}

.quad-top > span i {
  width: 0.16rem;
  height: 0.16rem;
  border-radius: 50%;
  background: #a1afac;
}

.quad-top em {
  min-width: 0;
  flex: 1;
  padding: 0.1rem 0.25rem;
  overflow: hidden;
  border-radius: 0.1rem;
  color: #71817d;
  background: #edf1f0;
  font-size: 0.3rem;
  font-style: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.quad-top b {
  color: #6f7f7c;
  font-family: var(--mono);
  font-size: 0.32rem;
}

.quad-body {
  min-height: 8rem;
  display: grid;
  grid-template-columns: 1.4rem 1fr;
  background: #f8faf9;
}

.quad-rail {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  align-items: center;
  padding-top: 0.65rem;
  background: #ecefee;
}

.quad-rail i {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 0.15rem;
  background: #cad6d3;
}

.quad-rail i:first-child {
  background: #74b8a8;
}

.quad-body > div {
  padding: 0.8rem 0.55rem;
}

.quad-body > div > span {
  display: block;
  width: 1.3rem;
  height: 1.3rem;
  margin-bottom: 0.6rem;
  border-radius: 0.3rem;
  background: #d7e7e3;
}

.quad-heading,
.quad-text,
.quad-button {
  display: block;
  height: 0.28rem;
  margin: 0 0 0.3rem;
  border: 0;
  border-radius: 1rem;
  background: #dce4e2;
}

.quad-heading {
  width: 61%;
  background: #bfcfcb;
}

.quad-text {
  width: 88%;
}

.quad-text.short {
  width: 74%;
}

.quad-button {
  width: 2.8rem;
  height: 0.6rem;
  margin-top: 0.7rem;
  background: #68aa9b;
}

.quad-state {
  min-height: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.4rem;
  overflow: hidden;
  color: #45645d;
  background: #fff;
  font-size: 0.34rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.quad-state i {
  width: 0.28rem;
  height: 0.28rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #42a58f;
}

.browser-quad.waiting .quad-state i {
  background: #bd852e;
}

.headless-view {
  min-height: 20.2rem;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 2rem;
  text-align: center;
}

.headless-orbit {
  position: relative;
  width: 10rem;
  height: 10rem;
  margin-bottom: 1.5rem;
  border: 1px solid #315a55;
  border-radius: 50%;
}

.headless-orbit::before,
.headless-orbit::after {
  content: "";
  position: absolute;
  inset: 1.5rem;
  border: 1px dashed #2b4b48;
  border-radius: 50%;
}

.headless-orbit::after {
  inset: 3rem;
  border-style: solid;
  background: #153b38;
}

.headless-orbit span {
  position: absolute;
  z-index: 2;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border: 1px solid #4cae98;
  border-radius: 50%;
  color: #b0e8da;
  background: #173b38;
  font-family: var(--mono);
  font-size: 0.55rem;
}

.headless-orbit span:nth-child(1) { top: -0.8rem; left: 4rem; }
.headless-orbit span:nth-child(2) { top: 4rem; right: -0.8rem; }
.headless-orbit span:nth-child(3) { right: 4rem; bottom: -0.8rem; }
.headless-orbit span:nth-child(4) { top: 4rem; left: -0.8rem; }

.headless-orbit i {
  position: absolute;
  z-index: 3;
  inset: 4.2rem;
  border-radius: 50%;
  background: #6bd1b8;
  box-shadow: 0 0 1.5rem #6bd1b8;
}

.headless-view h3 {
  margin-bottom: 0.5rem;
  color: #fff;
  font-size: 1.1rem;
}

.headless-view p {
  max-width: 22rem;
  margin: 0;
  color: #8ca49f;
  font-size: 0.75rem;
}

.outreach {
  background: #f3f7f5;
}

.outreach-layout {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.outreach-interface {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 0.6rem;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.outreach-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--line);
  background: #fbfcfc;
  font-size: 0.65rem;
}

.outreach-top > div {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.outreach-top > span {
  color: var(--muted);
  font-size: 0.5rem;
}

.stepper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0.65rem 0.5rem;
  border-bottom: 1px solid var(--line);
}

.stepper span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  color: #8b9895;
  font-size: 0.42rem;
}

.stepper i {
  width: 1.3rem;
  height: 1.3rem;
  display: grid;
  place-items: center;
  border: 1px solid #cfdad7;
  border-radius: 50%;
  background: #fff;
  font-size: 0.45rem;
  font-style: normal;
}

.stepper .done i {
  color: #fff;
  border-color: var(--teal);
  background: var(--teal);
}

.stepper .active {
  color: var(--teal-dark);
  font-weight: 700;
}

.stepper .active i {
  color: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 0 0 0.2rem var(--teal-soft);
}

.outreach-body {
  display: grid;
}

.outreach-list,
.outreach-preview {
  padding: 0.8rem;
}

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

.list-head,
.preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
  color: #7e8d89;
  font-family: var(--mono);
  font-size: 0.42rem;
}

.list-head b,
.preview-head em {
  color: var(--teal);
  font-family: var(--body);
  font-style: normal;
  font-weight: 700;
}

.outreach-list label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #edf2f0;
}

.outreach-list label:last-child {
  border-bottom: 0;
}

.outreach-list input {
  width: 0.75rem;
  height: 0.75rem;
  accent-color: var(--teal);
}

.sender-copy {
  min-width: 0;
  flex: 1;
  line-height: 1.25;
}

.sender-copy b,
.sender-copy small {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.sender-copy b {
  font-size: 0.57rem;
}

.sender-copy small {
  margin-top: 0.1rem;
  color: #84908d;
  font-size: 0.45rem;
}

.outreach-list em {
  color: #3f7e68;
  font-size: 0.44rem;
  font-style: normal;
}

.message-bubble {
  padding: 0.8rem;
  border: 1px solid #dfe9e6;
  border-radius: 0.4rem 0.4rem 0.1rem 0.4rem;
  background: #f2f8f6;
}

.message-bubble p {
  margin-bottom: 0.45rem;
  color: #4b5d59;
  font-size: 0.54rem;
  line-height: 1.5;
}

.message-bubble small {
  color: #83918e;
  font-size: 0.42rem;
}

.safety-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.65rem;
  padding: 0.55rem;
  border: 1px solid #d8e8e3;
  border-radius: 0.35rem;
}

.safety-row > span {
  width: 1.6rem;
  height: 1.6rem;
  display: grid;
  place-items: center;
  border-radius: 0.25rem;
  color: var(--teal);
  background: var(--teal-soft);
}

.safety-row svg {
  width: 0.85rem;
  height: 0.85rem;
}

.safety-row p {
  margin: 0;
  line-height: 1.25;
}

.safety-row b,
.safety-row small {
  display: block;
}

.safety-row b {
  font-size: 0.52rem;
}

.safety-row small {
  margin-top: 0.1rem;
  color: var(--muted);
  font-size: 0.4rem;
}

.outreach-copy > p {
  margin-bottom: 1.8rem;
}

.outreach-points {
  display: grid;
  border-top: 1px solid var(--line-strong);
}

.outreach-points article {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.8rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--line-strong);
}

.outreach-points article > span {
  padding-top: 0.15rem;
  color: var(--teal);
  font-family: var(--mono);
  font-size: 0.64rem;
}

.outreach-points h3 {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.outreach-points p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.security {
  padding-block: 5.5rem;
  border-block: 1px solid var(--line);
  background: #e8f3ef;
}

.security-layout {
  display: grid;
  gap: 3rem;
}

.security-copy > p {
  margin-bottom: 1.5rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--teal-dark);
  font-size: 0.85rem;
  font-weight: 700;
  transition: transform 180ms ease;
}

.security-cards {
  display: grid;
  gap: 0.65rem;
}

.security-card {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid #d1e2dd;
  border-radius: 0.5rem;
  background: rgb(255 255 255 / 0.7);
}

.security-card > span {
  width: 2.4rem;
  height: 2.4rem;
  margin: 0;
}

.security-card > span svg {
  width: 1.15rem;
  height: 1.15rem;
}

.security-card h3 {
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.security-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.security-card > b {
  grid-column: 2;
  justify-self: start;
  padding: 0.2rem 0.4rem;
  border-radius: 0.2rem;
  color: #497369;
  background: #deeee9;
  font-family: var(--mono);
  font-size: 0.55rem;
  font-weight: 500;
}

.premium {
  position: relative;
  padding-block: 5.5rem;
  overflow: hidden;
  border-bottom: 1px solid #cfe2dc;
  background:
    radial-gradient(circle at 78% 16%, rgb(140 228 208 / 0.24), transparent 24rem),
    #f0f8f5;
}

.premium-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgb(8 122 113 / 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgb(8 122 113 / 0.045) 1px, transparent 1px);
  background-size: 4rem 4rem;
  mask-image: linear-gradient(100deg, transparent 4%, #000 48%, transparent 94%);
}

.premium-layout {
  position: relative;
  display: grid;
  gap: 3.25rem;
}

.premium-copy > p {
  margin-bottom: 1.7rem;
}

.premium-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.7rem;
}

.premium-link {
  min-height: 3.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding-inline: 1rem;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.premium-link svg {
  width: 0.9rem;
  height: 0.9rem;
  transition: transform 180ms ease;
}

.premium-link:hover svg {
  transform: translateX(0.2rem);
}

.premium-copy .premium-status {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 1.2rem 0 0;
  color: #668079;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.premium-status span {
  width: 0.46rem;
  height: 0.46rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #26bd9c;
  box-shadow: 0 0 0 0.25rem rgb(38 189 156 / 0.12);
}

.premium-benefits {
  margin: 0;
  padding: 0;
  border-top: 1px solid #cbded8;
  list-style: none;
}

.premium-benefit {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  padding-block: 1.35rem;
  border-bottom: 1px solid #cbded8;
}

.premium-icon {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--teal);
  background: rgb(255 255 255 / 0.74);
  box-shadow: inset 0 0 0 1px rgb(8 122 113 / 0.13);
}

.premium-icon.blue {
  color: var(--blue);
}

.premium-icon.olive {
  color: var(--olive);
}

.premium-icon.amber {
  color: var(--amber);
}

.premium-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.premium-benefit small {
  display: block;
  margin-bottom: 0.35rem;
  color: #6a8d84;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
}

.premium-benefit h3 {
  margin-bottom: 0.35rem;
  font-size: 1rem;
  letter-spacing: -0.025em;
}

.premium-benefit p {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.pricing {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.pricing::before {
  content: "";
  position: absolute;
  top: -16rem;
  left: 50%;
  width: 46rem;
  height: 26rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(140 228 208 / 0.18), transparent 70%);
  transform: translateX(-50%);
  pointer-events: none;
}

.pricing .container {
  position: relative;
}

.pricing-heading {
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
}

.pricing-heading .eyebrow {
  justify-content: center;
}

.pricing-heading > p:last-child {
  max-width: 40rem;
  margin-inline: auto;
}

.pricing-layout {
  display: grid;
  gap: 1rem;
}

.pricing-card,
.pricing-factors {
  position: relative;
  overflow: hidden;
  border-radius: 0.8rem;
}

.pricing-card {
  padding: 1.5rem;
  color: #d6e7e3;
  background: var(--navy);
  box-shadow: 0 2rem 5rem rgb(16 47 49 / 0.18);
}

.pricing-card-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgb(140 228 208 / 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgb(140 228 208 / 0.18) 1px, transparent 1px);
  background-size: 3.5rem 3.5rem;
  mask-image: linear-gradient(145deg, #000, transparent 72%);
  pointer-events: none;
}

.pricing-card > *:not(.pricing-card-grid) {
  position: relative;
}

.pricing-card-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid rgb(255 255 255 / 0.13);
}

.pricing-kicker {
  margin-bottom: 0.45rem;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin: 0;
  color: #fff;
  font-size: 1.35rem;
}

.pricing-card-head > span {
  padding: 0.35rem 0.55rem;
  border: 1px solid rgb(140 228 208 / 0.38);
  border-radius: 99rem;
  color: var(--mint);
  background: rgb(140 228 208 / 0.08);
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.pricing-summary {
  max-width: 38rem;
  margin: 1.4rem 0;
  color: #adc1bc;
  font-size: 0.86rem;
}

.pricing-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.pricing-price strong {
  color: #fff;
  font-family: var(--display);
  font-size: clamp(2.5rem, 11vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.065em;
}

.pricing-price span {
  color: #8fa8a3;
  font-family: var(--mono);
  font-size: 0.67rem;
  text-transform: uppercase;
}

.pricing-features {
  display: grid;
  gap: 0.8rem;
  margin: 0 0 1.7rem;
  padding: 0;
  list-style: none;
}

.pricing-features li {
  display: grid;
  grid-template-columns: 1.35rem minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
  color: #d6e4e1;
  font-size: 0.78rem;
}

.pricing-features svg {
  width: 1.25rem;
  height: 1.25rem;
  padding: 0.22rem;
  border-radius: 50%;
  color: var(--navy);
  background: var(--mint);
  stroke-width: 2.2;
}

.pricing-action {
  width: 100%;
}

.pricing-factors {
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: #f6f9f8;
}

.pricing-factors-intro {
  padding-bottom: 1.25rem;
}

.pricing-factors-intro .eyebrow {
  margin-bottom: 0.65rem;
}

.pricing-factors h3 {
  margin-bottom: 0.7rem;
  font-size: 1.35rem;
  letter-spacing: -0.035em;
}

.pricing-factors-intro > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

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

.pricing-factors li {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.75rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--line-strong);
}

.pricing-factors li > span {
  color: var(--teal);
  font-family: var(--mono);
  font-size: 0.62rem;
}

.pricing-factors h4 {
  margin-bottom: 0.3rem;
  font-size: 0.92rem;
}

.pricing-factors li p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.pricing-note {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 1.2rem 0 0;
  color: #6f7f7b;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.pricing-note span {
  width: 0.45rem;
  height: 0.45rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0.23rem rgb(8 122 113 / 0.11);
}

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

.steps-grid li {
  position: relative;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--line);
}

.steps-grid li > span {
  position: absolute;
  top: 1.8rem;
  right: 0;
  color: #96a29f;
  font-family: var(--mono);
  font-size: 0.65rem;
}

.step-icon {
  width: 2.8rem;
  height: 2.8rem;
}

.steps-grid h3 {
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

.steps-grid p {
  max-width: 28rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.responsible-use {
  padding-block: 2rem;
  border-block: 1px solid var(--line);
  background: #fff;
}

.responsible-inner {
  display: grid;
  gap: 1.3rem;
  align-items: center;
}

.responsible-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  border-radius: 0.45rem;
  color: var(--teal);
  background: var(--teal-soft);
}

.responsible-icon svg {
  width: 1.8rem;
  height: 1.8rem;
}

.responsible-inner .eyebrow {
  margin-bottom: 0.5rem;
}

.responsible-inner h2 {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.responsible-inner p:last-child {
  max-width: 50rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.faq {
  background: #f6f9f8;
}

.faq-layout {
  display: grid;
  gap: 3rem;
  align-items: start;
}

.faq-intro > p {
  margin-bottom: 1.5rem;
}

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

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

.faq-list summary {
  min-height: 4.6rem;
  display: grid;
  grid-template-columns: 2rem 1fr 1.5rem;
  align-items: center;
  gap: 0.6rem;
  padding-block: 0.9rem;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  color: var(--teal);
  font-family: var(--mono);
  font-size: 0.62rem;
}

.faq-list summary b {
  font-family: var(--display);
  font-size: 0.92rem;
}

.faq-list summary i {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.faq-list summary i::before,
.faq-list summary i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.55rem;
  height: 1px;
  background: var(--ink-soft);
  transform: translate(-50%, -50%);
}

.faq-list summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.faq-list details[open] summary i {
  color: #fff;
  border-color: var(--teal);
  background: var(--teal);
}

.faq-list details[open] summary i::before,
.faq-list details[open] summary i::after {
  background: #fff;
}

.faq-list details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
  margin: -0.2rem 0 1.4rem 2.6rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.final-cta {
  position: relative;
  padding-block: 5.5rem;
  overflow: hidden;
  text-align: center;
  background: var(--navy);
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.final-cta::before {
  top: -13rem;
  left: 50%;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgb(140 228 208 / 0.12);
  transform: translateX(-50%);
}

.final-cta::after {
  top: -6rem;
  left: 50%;
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, rgb(53 157 136 / 0.19), transparent 68%);
  transform: translateX(-50%);
}

.final-grid {
  opacity: 0.15;
  mask-image: linear-gradient(to bottom, transparent, #000 30%, transparent);
}

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

.cta-brand-logo {
  position: relative;
  width: 11.5rem;
  height: 3.35rem;
  display: block;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid rgb(255 255 255 / 0.88);
  border-radius: 0.65rem;
  background: rgb(255 255 255 / 0.96);
  box-shadow: 0 0.8rem 2.5rem rgb(0 0 0 / 0.18), inset 0 0 0 1px rgb(6 84 79 / 0.05);
}

.cta-brand-logo img {
  width: 12.6rem;
}

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

.final-inner h2 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: clamp(2rem, 7vw, 4rem);
  letter-spacing: -0.055em;
}

.final-inner > p:not(.eyebrow) {
  max-width: 35rem;
  margin-bottom: 1.8rem;
  color: #9fb5b0;
}

.button-light {
  color: var(--navy);
  background: #fff;
}

.button-light:hover {
  background: var(--mint);
}

.button-dark-ghost {
  color: #d9e8e4;
  border-color: #3b5b59;
  background: transparent;
}

.button-dark-ghost:hover {
  border-color: #71958f;
  background: rgb(255 255 255 / 0.05);
}

.site-footer {
  padding: 4rem 0 1.5rem;
  color: #50605d;
  background: #f3f7f5;
}

.footer-grid {
  display: grid;
  gap: 2.2rem;
}

.footer-about p {
  max-width: 23rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
}

.footer-column h2 {
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.footer-column a,
.footer-column > span,
.footer-column p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-column a:hover {
  color: var(--teal);
}

.footer-bottom {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  color: #7a8784;
  font-size: 0.66rem;
}

.legal-note {
  max-width: 53rem;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(1.2rem);
  transition: opacity 650ms cubic-bezier(0.2, 0.65, 0.2, 1), transform 650ms cubic-bezier(0.2, 0.65, 0.2, 1);
}

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

@media (min-width: 40rem) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .app-titlebar {
    grid-template-columns: 1fr auto 1fr;
  }

  .title-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.15rem;
    border: 1px solid #dae4e1;
    border-radius: 0.25rem;
    background: #edf2f1;
    font-size: 0.37rem;
  }

  .title-tabs span {
    padding: 0.2rem 0.45rem;
    border-radius: 0.15rem;
    color: #798582;
  }

  .title-tabs .active {
    color: #2b3937;
    background: #fff;
    box-shadow: 0 1px 0.2rem rgb(20 56 52 / 0.08);
  }

  .window-actions {
    justify-content: flex-end;
  }

  .app-body {
    grid-template-columns: 7.5rem 1fr;
  }

  .app-sidebar {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 0.6rem;
    border-right: 1px solid #e0e9e6;
    background: #f5f8f7;
  }

  .side-profile {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.25rem 0.7rem;
    border-bottom: 1px solid #e1e8e6;
  }

  .side-profile > span {
    width: 1.25rem;
    height: 1.25rem;
    display: grid;
    place-items: center;
    border-radius: 0.25rem;
    color: #fff;
    background: var(--teal);
    font-size: 0.45rem;
    font-weight: 700;
  }

  .side-profile b,
  .side-profile small {
    display: block;
    font-size: 0.4rem;
  }

  .side-profile small {
    color: #8a9693;
  }

  .app-sidebar ul {
    display: grid;
    gap: 0.12rem;
    margin: 0.6rem 0;
    padding: 0;
    list-style: none;
  }

  .app-sidebar li {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    min-height: 1.3rem;
    padding: 0.28rem 0.35rem;
    border-radius: 0.2rem;
    color: #667572;
    font-size: 0.36rem;
    white-space: nowrap;
  }

  .app-sidebar li.active {
    color: #17695f;
    background: #e1f1ed;
    font-weight: 700;
  }

  .app-sidebar li small {
    margin-left: auto;
    color: #74827f;
    font-size: 0.3rem;
  }

  .app-sidebar li small.aqua {
    color: #fff;
    padding: 0.05rem 0.2rem;
    border-radius: 1rem;
    background: var(--teal);
  }

  .side-icon {
    width: 0.48rem;
    height: 0.48rem;
    flex: 0 0 auto;
    border: 1px solid currentColor;
    border-radius: 0.12rem;
    opacity: 0.65;
  }

  .side-icon.grid-icon {
    background: linear-gradient(90deg, transparent 42%, currentColor 43% 54%, transparent 55%), linear-gradient(transparent 42%, currentColor 43% 54%, transparent 55%);
  }

  .side-health {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
    padding: 0.45rem;
    border: 1px solid #d9e6e2;
    border-radius: 0.25rem;
    background: #fff;
  }

  .side-health b,
  .side-health small {
    display: block;
    font-size: 0.32rem;
  }

  .side-health small {
    color: #8a9693;
  }

  .stat-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .worker-content strong {
    display: block;
  }

  .workspace-tab {
    min-height: 5.8rem;
    gap: 0.8rem;
    padding-inline: 1.4rem;
  }

  .workspace-tab b {
    font-size: 0.9rem;
  }

  .workspace-tab small {
    display: block;
  }

  .workspace-panel {
    padding: 2rem;
  }

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

  .feature-card,
  .steps-grid li {
    padding: 2rem 1.5rem;
  }

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

  .tour-panel figcaption {
    padding: 0.95rem 1.2rem;
  }

  .tour-panel figcaption b {
    font-size: 0.9rem;
  }

  .tour-panel figcaption small {
    font-size: 0.7rem;
  }

  .feature-card:nth-child(odd),
  .steps-grid li:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .feature-num,
  .steps-grid li > span {
    right: 1.5rem;
  }

  .outreach-body {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .premium-actions {
    flex-direction: row;
    align-items: center;
  }

  .pricing-card,
  .pricing-factors {
    padding: 2rem;
  }

  .pricing-card-head {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

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

  .pricing-action {
    width: auto;
  }

  .premium-link {
    justify-content: flex-start;
  }

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

  .responsible-inner .button {
    grid-column: 2;
    justify-self: start;
  }

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

@media (min-width: 48rem) {
  .container {
    width: min(calc(100% - 4rem), var(--container));
  }

  .section,
  .browser-pool,
  .security,
  .premium {
    padding-block: 7rem;
  }

  .hero {
    padding: 9rem 0 6rem;
  }

  .hero-content {
    gap: 5rem;
  }

  .hero-product {
    padding: 0.5rem 2rem 2rem;
  }

  .app-body {
    min-height: 27rem;
    grid-template-columns: 10rem 1fr;
  }

  .app-titlebar {
    min-height: 3.1rem;
    padding-inline: 1rem;
  }

  .app-title-brand {
    font-size: 0.72rem;
  }

  .mini-mark {
    grid-template-columns: repeat(2, 0.32rem);
    gap: 0.12rem;
    width: 0.9rem;
    height: 0.9rem;
  }

  .title-tabs {
    font-size: 0.5rem;
  }

  .app-sidebar {
    padding: 0.8rem;
  }

  .side-profile > span {
    width: 1.6rem;
    height: 1.6rem;
    font-size: 0.55rem;
  }

  .side-profile b,
  .side-profile small {
    font-size: 0.5rem;
  }

  .app-sidebar li {
    min-height: 1.7rem;
    font-size: 0.48rem;
  }

  .side-icon {
    width: 0.62rem;
    height: 0.62rem;
  }

  .side-health b,
  .side-health small {
    font-size: 0.4rem;
  }

  .app-main {
    padding: 1.2rem;
  }

  .app-main-head small,
  .stat-row small,
  .worker-head small {
    font-size: 0.46rem;
  }

  .app-main-head h2 {
    font-size: 1.1rem;
  }

  .status-chip {
    padding: 0.35rem 0.6rem;
    font-size: 0.56rem;
  }

  .stat-row {
    gap: 0.55rem;
    margin-bottom: 1rem;
  }

  .stat-row > div {
    padding: 0.7rem;
  }

  .stat-row b {
    font-size: 0.95rem;
  }

  .stat-row em {
    font-size: 0.43rem;
  }

  .worker-head b {
    font-size: 0.7rem;
  }

  .worker-head button {
    min-height: 2rem;
    font-size: 0.5rem;
  }

  .workers-grid {
    gap: 0.5rem;
  }

  .browser-line {
    height: 1rem;
  }

  .worker-content {
    gap: 0.45rem;
    padding: 0.7rem 0.55rem;
  }

  .avatar {
    width: 1.55rem;
    height: 1.55rem;
    font-size: 0.42rem;
  }

  .worker-content p b,
  .worker-content p small {
    font-size: 0.42rem;
  }

  .worker-content strong,
  .worker-num {
    font-size: 0.4rem;
  }

  .activity-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    margin-top: 0.6rem;
    padding: 0.55rem 0.65rem;
    border: 1px solid #e2e9e7;
    border-radius: 0.3rem;
    background: #fff;
    font-size: 0.43rem;
  }

  .activity-row span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #4a736b;
    font-weight: 700;
  }

  .activity-row p {
    margin: 0;
    overflow: hidden;
    color: #697673;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .activity-row time {
    color: #99a29f;
  }

  .floating-card {
    display: flex;
  }

  .floating-card-one {
    right: -0.5rem;
    bottom: -0.3rem;
  }

  .floating-card-two {
    top: 14%;
    left: 0;
  }

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

  .trust-grid article {
    flex-direction: row;
    gap: 0.85rem;
    padding: 1.6rem 1.2rem;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .trust-grid article:nth-child(4) {
    border-right: 0;
  }

  .trust-grid svg {
    flex: 0 0 auto;
  }

  .section-heading-split {
    grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.7fr);
    align-items: end;
  }

  .section-heading-split > p {
    margin-bottom: 1rem;
  }

  .workspace-panel {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 3rem;
    padding: 3rem;
  }

  .mini-interface {
    transform: perspective(75rem) rotateY(-1.2deg);
  }

  .feature-card {
    min-height: 21rem;
  }

  .browser-stage {
    padding: 0.8rem;
  }

  .quad-body {
    min-height: 10rem;
  }

  .outreach-interface {
    transform: perspective(75rem) rotateY(1.5deg);
  }

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

  .responsible-inner .button {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
  }

  .footer-bottom {
    grid-template-columns: auto 1fr;
    align-items: start;
  }

  .legal-note {
    justify-self: end;
    text-align: right;
  }
}

@media (min-width: 64rem) {
  body.nav-open {
    overflow: auto;
  }

  .header-inner {
    min-height: 5.25rem;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.1rem;
    max-height: none;
    padding: 0;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    padding-inline: 0.7rem;
    font-size: 0.8rem;
  }

  .site-nav .nav-cta {
    min-height: 2.7rem;
    margin: 0 0 0 0.8rem;
    padding-inline: 1.2rem;
  }

  .hero {
    padding-top: 10.5rem;
  }

  .hero-copy {
    max-width: 56rem;
  }

  .hero-lede {
    max-width: 47rem;
  }

  .app-body {
    min-height: 32rem;
    grid-template-columns: 12rem 1fr;
  }

  .app-titlebar {
    min-height: 3.5rem;
    padding-inline: 1.25rem;
  }

  .app-title-brand {
    font-size: 0.85rem;
  }

  .mini-mark {
    grid-template-columns: repeat(2, 0.38rem);
    width: 1.05rem;
    height: 1.05rem;
  }

  .title-tabs {
    font-size: 0.6rem;
  }

  .title-tabs span {
    padding: 0.25rem 0.7rem;
  }

  .app-sidebar {
    padding: 1rem;
  }

  .side-profile > span {
    width: 2rem;
    height: 2rem;
    font-size: 0.65rem;
  }

  .side-profile b,
  .side-profile small {
    font-size: 0.6rem;
  }

  .app-sidebar ul {
    gap: 0.2rem;
    margin-block: 0.8rem;
  }

  .app-sidebar li {
    min-height: 2rem;
    padding: 0.4rem 0.5rem;
    font-size: 0.57rem;
  }

  .side-icon {
    width: 0.7rem;
    height: 0.7rem;
  }

  .side-health {
    padding: 0.6rem;
  }

  .side-health b,
  .side-health small {
    font-size: 0.48rem;
  }

  .app-main {
    padding: 1.5rem;
  }

  .app-main-head {
    margin-bottom: 1rem;
  }

  .app-main-head small,
  .stat-row small,
  .worker-head small {
    font-size: 0.55rem;
  }

  .app-main-head h2 {
    font-size: 1.35rem;
  }

  .status-chip {
    padding: 0.4rem 0.75rem;
    font-size: 0.65rem;
  }

  .stat-row {
    gap: 0.7rem;
    margin-bottom: 1.2rem;
  }

  .stat-row > div {
    padding: 0.9rem;
  }

  .stat-row b {
    font-size: 1.1rem;
  }

  .stat-row em {
    font-size: 0.52rem;
  }

  .worker-head {
    margin-bottom: 0.6rem;
  }

  .worker-head b {
    font-size: 0.82rem;
  }

  .worker-head button {
    min-height: 2.25rem;
    padding-inline: 0.7rem;
    font-size: 0.58rem;
  }

  .browser-line {
    height: 1.3rem;
  }

  .worker-content {
    padding: 0.9rem 0.75rem;
  }

  .avatar {
    width: 1.9rem;
    height: 1.9rem;
    font-size: 0.5rem;
  }

  .worker-content p b,
  .worker-content p small {
    font-size: 0.5rem;
  }

  .worker-content strong,
  .worker-num {
    font-size: 0.47rem;
  }

  .activity-row {
    padding: 0.7rem 0.85rem;
    font-size: 0.52rem;
  }

  .floating-card-one {
    right: -1.2rem;
  }

  .floating-card-two {
    left: -1.5rem;
  }

  .trust-grid article {
    padding: 1.8rem 1.5rem;
  }

  .trust-grid b {
    font-size: 0.82rem;
  }

  .trust-grid span {
    font-size: 0.7rem;
  }

  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-card {
    min-height: 23rem;
    padding: 2.5rem 2rem;
    border-right: 1px solid var(--line);
  }

  .feature-card:nth-child(3n) {
    border-right: 0;
  }

  .feature-num {
    top: 2.5rem;
    right: 2rem;
  }

  .tour-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.72fr) minmax(15rem, 0.58fr);
  }

  .tour-stage {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 0.7rem;
    border-right: 1px solid rgb(255 255 255 / 0.1);
  }

  .tour-window-bar {
    min-height: 2.65rem;
    padding-inline: 0.8rem;
  }

  .tour-panel {
    display: flex;
    min-height: 0;
    flex: 1;
    flex-direction: column;
  }

  .tour-panel[hidden] {
    display: none;
  }

  .tour-image-crop {
    flex: 1;
  }

  .tour-rail {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding: 1.4rem;
  }

  .tour-tabs {
    grid-template-columns: 1fr;
  }

  .browser-layout {
    grid-template-columns: minmax(0, 0.75fr) minmax(32rem, 1.25fr);
    gap: 4.5rem;
  }

  .browser-copy {
    padding-right: 1rem;
  }

  .browser-stage {
    min-height: 29rem;
  }

  .stage-label {
    padding-bottom: 0.9rem;
  }

  .quad-top {
    min-height: 1.5rem;
  }

  .quad-top em {
    font-size: 0.4rem;
  }

  .quad-body {
    min-height: 11.5rem;
    grid-template-columns: 1.8rem 1fr;
  }

  .quad-state {
    min-height: 1.8rem;
    font-size: 0.45rem;
  }

  .headless-view {
    min-height: 26rem;
  }

  .outreach-layout {
    grid-template-columns: minmax(34rem, 1.15fr) minmax(0, 0.85fr);
    gap: 5rem;
  }

  .outreach-copy {
    order: 2;
  }

  .outreach-interface {
    order: 1;
  }

  .outreach-top {
    padding: 1rem 1.2rem;
    font-size: 0.78rem;
  }

  .stepper {
    padding: 0.9rem;
  }

  .stepper span {
    font-size: 0.52rem;
  }

  .stepper i {
    width: 1.55rem;
    height: 1.55rem;
  }

  .outreach-list,
  .outreach-preview {
    padding: 1.2rem;
  }

  .outreach-list label {
    padding-block: 0.7rem;
  }

  .person {
    width: 1.6rem;
    height: 1.6rem;
    font-size: 0.45rem;
  }

  .sender-copy b {
    font-size: 0.67rem;
  }

  .sender-copy small,
  .outreach-list em {
    font-size: 0.52rem;
  }

  .message-bubble {
    padding: 1rem;
  }

  .message-bubble p {
    font-size: 0.64rem;
  }

  .security-layout {
    grid-template-columns: minmax(0, 0.75fr) minmax(34rem, 1.25fr);
    gap: 5rem;
    align-items: start;
  }

  .security-copy {
    position: sticky;
    top: 8rem;
  }

  .security-card {
    padding: 1.3rem;
  }

  .premium-layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(32rem, 1.18fr);
    gap: 5rem;
    align-items: center;
  }

  .premium-copy {
    padding-right: 1rem;
  }

  .premium-benefit {
    grid-template-columns: 3rem minmax(0, 1fr);
    gap: 1.2rem;
    padding-block: 1.55rem;
    transition: transform 180ms ease;
  }

  .premium-benefit:hover {
    transform: translateX(0.35rem);
  }

  .premium-benefit h3 {
    font-size: 1.08rem;
  }

  .premium-benefit p {
    font-size: 0.84rem;
  }

  .pricing-layout {
    grid-template-columns: minmax(0, 1.18fr) minmax(20rem, 0.82fr);
    gap: 1.2rem;
    align-items: stretch;
  }

  .pricing-card,
  .pricing-factors {
    padding: 2.5rem;
  }

  .pricing-card {
    display: flex;
    flex-direction: column;
  }

  .pricing-features {
    flex: 1;
  }

  .steps-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .steps-grid li,
  .steps-grid li:nth-child(odd) {
    min-height: 18rem;
    padding: 2rem 1.6rem;
    border-right: 1px solid var(--line);
  }

  .steps-grid li:last-child {
    border-right: 0;
  }

  .steps-grid li > span {
    top: 2rem;
    right: 1.6rem;
  }

  .responsible-use {
    padding-block: 2.5rem;
  }

  .responsible-inner {
    gap: 1.8rem;
  }

  .faq-layout {
    grid-template-columns: minmax(0, 0.7fr) minmax(34rem, 1.3fr);
    gap: 5rem;
  }

  .faq-intro {
    position: sticky;
    top: 8rem;
  }

  .faq-list summary {
    min-height: 5.25rem;
    grid-template-columns: 2.5rem 1fr 2rem;
  }

  .faq-list summary b {
    font-size: 1rem;
  }

  .faq-list details p {
    margin-left: 3.1rem;
    font-size: 0.92rem;
  }
}

@media (min-width: 80rem) {
  .hero-product {
    padding-inline: 1rem;
  }

  .app-window {
    border-radius: 0.85rem;
  }

  .app-body {
    min-height: 35rem;
    grid-template-columns: 13rem 1fr;
  }

  .app-main {
    padding: 1.8rem;
  }

  .feature-card {
    min-height: 24rem;
    padding: 3rem 2.5rem;
  }

  .feature-num {
    top: 3rem;
    right: 2.5rem;
  }
}

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

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

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