:root {
  color-scheme: light;
  --primary: #db3f3f;
  --primary-dark: #bd2e2e;
  --primary-soft: #fceaea;
  --primary-rgb: 219, 63, 63;
  --ink: #24262d;
  --ink-soft: #3e424b;
  --muted: #69707d;
  --surface: #ffffff;
  --surface-soft: #f5f5f6;
  --surface-raised: #ffffff;
  --line: rgba(36, 38, 45, .10);
  --line-strong: rgba(36, 38, 45, .16);
  --shadow-sm: 0 .45rem 1.3rem rgba(26, 28, 34, .07);
  --shadow-lg: 0 1.8rem 5rem rgba(26, 28, 34, .14);
  --success: #24845f;
  --success-soft: #e5f4ed;
  --warning: #ac7625;
  --warning-soft: #faefd9;
  --radius-sm: .6rem;
  --radius-md: .9rem;
  --radius-lg: 1.25rem;
  --container: 1180px;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --ink: #f2f2f4;
  --ink-soft: #d7d9df;
  --muted: #a2a8b4;
  --surface: #191a1e;
  --surface-soft: #202126;
  --surface-raised: #25262c;
  --line: rgba(255, 255, 255, .09);
  --line-strong: rgba(255, 255, 255, .16);
  --primary-soft: rgba(var(--primary-rgb), .15);
  --shadow-sm: 0 .45rem 1.3rem rgba(0, 0, 0, .15);
  --shadow-lg: 0 1.8rem 5rem rgba(0, 0, 0, .34);
}

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

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--surface);
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: .75rem;
  left: .75rem;
  padding: .7rem 1rem;
  border-radius: var(--radius-sm);
  color: #fff;
  background: var(--primary);
  font-size: .85rem;
  font-weight: 750;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
}

.site-header.is-scrolled {
  position: fixed;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 89%, transparent);
  box-shadow: 0 .2rem 1.2rem rgba(20, 21, 25, .04);
  backdrop-filter: blur(1rem);
}

.header-inner {
  display: flex;
  min-height: 5.25rem;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: .7rem;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 780;
  letter-spacing: -.025em;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  width: 2.35rem;
  height: 2.35rem;
  align-items: center;
  justify-content: center;
  border-radius: .65rem;
  color: #fff;
  background: var(--primary);
  box-shadow: 0 .55rem 1.35rem rgba(var(--primary-rgb), .24);
}

.brand-mark svg {
  width: 1.15rem;
  height: 1.15rem;
  stroke-width: 2;
}

.brand-name {
  display: inline-flex;
}

.brand-name strong {
  color: var(--primary);
  font-weight: 780;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.55rem;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  padding: .5rem 0;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 650;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: .15rem;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--primary);
  content: "";
  transform: scaleX(0);
  transition: transform .2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--ink);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: .55rem;
}

.icon-button {
  display: inline-flex;
  width: 2.55rem;
  height: 2.55rem;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  background: color-mix(in srgb, var(--surface-raised) 84%, transparent);
  cursor: pointer;
}

.icon-button:hover,
.icon-button:focus-visible {
  border-color: var(--line-strong);
  color: var(--primary);
  background: var(--surface-raised);
}

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

.theme-icon-sun,
.menu-icon-close {
  display: none;
}

:root[data-theme="dark"] .theme-icon-moon {
  display: none;
}

:root[data-theme="dark"] .theme-icon-sun,
.menu-toggle[aria-expanded="true"] .menu-icon-close {
  display: block;
}

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

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 2.55rem;
  padding: .65rem 1rem;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: .83rem;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.button svg {
  width: 1rem;
  height: 1rem;
  transition: transform .2s ease;
}

.button:hover svg {
  transform: translateX(.18rem);
}

.button-primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 .65rem 1.5rem rgba(var(--primary-rgb), .19);
}

.button-primary:hover,
.button-primary:focus-visible {
  color: #fff;
  background: var(--primary-dark);
  box-shadow: 0 .8rem 1.8rem rgba(var(--primary-rgb), .27);
  transform: translateY(-1px);
}

.button-secondary {
  border-color: var(--line);
  color: var(--ink);
  background: color-mix(in srgb, var(--surface-soft) 88%, transparent);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--line-strong);
  color: var(--ink);
  background: var(--surface-raised);
}

.button-large {
  min-height: 3.45rem;
  padding: .85rem 1.35rem;
  border-radius: .7rem;
  font-size: .93rem;
}

.hero {
  position: relative;
  padding: 9.8rem 0 6.5rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 16%, rgba(var(--primary-rgb), .11), transparent 28rem),
    radial-gradient(circle at 11% 74%, rgba(var(--primary-rgb), .045), transparent 23rem),
    var(--surface);
}

.hero-grid-pattern {
  position: absolute;
  top: 7rem;
  right: -12rem;
  width: 42rem;
  height: 42rem;
  opacity: .52;
  background-image:
    linear-gradient(rgba(var(--primary-rgb), .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--primary-rgb), .05) 1px, transparent 1px);
  background-size: 2.2rem 2.2rem;
  mask-image: radial-gradient(circle, #000 0%, transparent 68%);
  transform: rotate(10deg);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, .88fr) minmax(34rem, 1.12fr);
  gap: clamp(2.5rem, 5vw, 5rem);
}

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

.eyebrow,
.section-kicker {
  color: var(--primary);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .105em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  margin: 0;
  padding: .52rem .75rem;
  align-items: center;
  gap: .55rem;
  border: 1px solid rgba(var(--primary-rgb), .18);
  border-radius: 999px;
  background: rgba(var(--primary-rgb), .055);
}

.eyebrow span {
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 .27rem rgba(var(--primary-rgb), .12);
}

.hero h1 {
  max-width: 41rem;
  margin: 1.55rem 0 1.35rem;
  color: var(--ink);
  font-size: clamp(3.15rem, 5.15vw, 5.25rem);
  font-weight: 800;
  letter-spacing: -.066em;
  line-height: .99;
}

.hero h1 > span {
  color: var(--primary);
}

.hero-lead {
  max-width: 39rem;
  margin: 0 0 1.8rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  margin: 1.55rem 0 0;
  padding: 0;
  gap: .75rem 1rem;
  color: var(--muted);
  font-size: .75rem;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

.hero-points svg {
  width: .78rem;
  height: .78rem;
  color: var(--primary);
  stroke-width: 2.4;
}

.product-scene {
  position: relative;
  min-width: 0;
  padding: 2rem 0;
}

.scene-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(var(--primary-rgb), .11);
  border-radius: 50%;
}

.scene-orbit-one {
  top: -2rem;
  right: -7rem;
  width: 28rem;
  height: 28rem;
}

.scene-orbit-two {
  top: 3rem;
  right: -3rem;
  width: 20rem;
  height: 20rem;
}

.product-window {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(34, 36, 42, .11);
  border-radius: 1rem;
  background: #fff;
  box-shadow: var(--shadow-lg);
  transform: perspective(90rem) rotateY(-2deg) rotateX(1deg);
  transform-origin: center;
}

.window-bar {
  display: grid;
  height: 2.65rem;
  padding: 0 .8rem;
  align-items: center;
  border-bottom: 1px solid #e7e8eb;
  background: #fafafb;
  grid-template-columns: 1fr auto 1fr;
}

.window-dots {
  display: flex;
  gap: .3rem;
}

.window-dots i {
  width: .48rem;
  height: .48rem;
  border-radius: 50%;
  background: #d5d7dc;
}

.window-dots i:first-child { background: #eb8a84; }
.window-dots i:nth-child(2) { background: #e9bc60; }
.window-dots i:last-child { background: #70bf99; }

.window-address {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  color: #858b96;
  font-size: .58rem;
  font-weight: 650;
}

.window-address svg {
  width: .55rem;
  height: .55rem;
}

.window-avatar {
  display: inline-flex;
  width: 1.35rem;
  height: 1.35rem;
  align-items: center;
  justify-content: center;
  justify-self: end;
  border-radius: .35rem;
  color: var(--primary);
  background: rgba(var(--primary-rgb), .1);
  font-size: .47rem;
  font-weight: 800;
}

.product-layout {
  display: grid;
  min-height: 30rem;
  color: #2a2d34;
  background: #f4f4f6;
  grid-template-columns: 3.7rem minmax(0, 1fr);
}

.product-sidebar {
  display: flex;
  padding: .8rem .65rem;
  align-items: center;
  flex-direction: column;
  gap: .65rem;
  border-right: 1px solid #e5e6ea;
  background: #fff;
}

.product-sidebar > span,
.product-sidebar > i {
  display: inline-flex;
  width: 2.1rem;
  height: 2.1rem;
  align-items: center;
  justify-content: center;
  border-radius: .55rem;
  font-style: normal;
}

.product-sidebar svg {
  width: .78rem;
  height: .78rem;
}

.product-logo {
  margin-bottom: .4rem;
  color: #fff;
  background: var(--primary);
}

.product-sidebar > i {
  color: #969ca8;
}

.product-sidebar > i.is-active {
  color: var(--primary);
  background: rgba(var(--primary-rgb), .1);
}

.product-main {
  min-width: 0;
  padding: 1.3rem;
}

.product-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-heading > span {
  display: flex;
  flex-direction: column;
}

.product-heading small,
.product-card-heading small,
.product-metrics small,
.person-row small {
  color: #8b919d;
  font-size: .56rem;
  font-style: normal;
}

.product-heading strong {
  color: #252831;
  font-size: .98rem;
}

.product-heading > i {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: .5rem;
  color: #737986;
  background: #fff;
  box-shadow: 0 .25rem .75rem rgba(26, 28, 34, .08);
}

.product-heading > i svg {
  width: .72rem;
  height: .72rem;
}

.product-metrics {
  display: grid;
  margin-top: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .65rem;
}

.product-metrics > div {
  display: flex;
  min-width: 0;
  padding: .72rem;
  align-items: center;
  gap: .6rem;
  border: 1px solid #e8e9ed;
  border-radius: .65rem;
  background: #fff;
}

.metric-icon {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: .52rem;
  color: #fff;
  background: var(--primary);
}

.metric-icon-success { background: #4f9b75; }
.metric-icon-warn { background: #c48a35; }

.metric-icon svg {
  width: .75rem;
  height: .75rem;
}

.product-metrics > div > span:last-child {
  display: grid;
  align-items: baseline;
  grid-template-columns: auto 1fr;
  column-gap: .3rem;
}

.product-metrics small {
  grid-column: 1 / -1;
}

.product-metrics strong {
  color: #292c34;
  font-size: 1rem;
  line-height: 1.15;
}

.product-metrics em {
  color: #9ba0aa;
  font-size: .48rem;
  font-style: normal;
}

.product-content {
  display: grid;
  margin-top: .7rem;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: .7rem;
}

.product-card {
  min-width: 0;
  padding: .92rem;
  border: 1px solid #e8e9ed;
  border-radius: .7rem;
  background: #fff;
}

.product-card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .5rem;
}

.product-card-heading > span {
  display: flex;
  flex-direction: column;
}

.product-card-heading strong {
  color: #343740;
  font-size: .7rem;
}

.product-card-heading > em {
  padding: .24rem .43rem;
  border-radius: 99px;
  color: #216f4b;
  background: #e4f3eb;
  font-size: .46rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.workday-time {
  margin-top: 1.55rem;
  color: #252831;
  font-size: 2rem;
  font-weight: 780;
  letter-spacing: -.045em;
  line-height: 1;
}

.workday-time span {
  color: #959aa4;
  font-size: .8rem;
}

.workday-progress {
  height: .34rem;
  margin-top: 1.15rem;
  overflow: hidden;
  border-radius: 999px;
  background: #e8e9ec;
}

.workday-progress i {
  display: block;
  width: 54%;
  height: 100%;
  border-radius: inherit;
  background: var(--primary);
}

.workday-labels {
  display: flex;
  margin-top: .3rem;
  justify-content: space-between;
  color: #979ca7;
  font-size: .47rem;
}

.workday-card button {
  width: 100%;
  margin-top: 1.3rem;
  padding: .62rem;
  border: 0;
  border-radius: .52rem;
  color: #fff;
  background: var(--primary);
  font-size: .58rem;
  font-weight: 750;
}

.activity-card > .product-card-heading {
  margin-bottom: .4rem;
}

.person-row {
  display: grid;
  padding: .63rem 0;
  align-items: center;
  border-top: 1px solid #eceef1;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: .48rem;
}

.person-row > i {
  display: inline-flex;
  width: 1.7rem;
  height: 1.7rem;
  align-items: center;
  justify-content: center;
  border-radius: .48rem;
  color: #7f3232;
  background: #fae7e7;
  font-size: .46rem;
  font-style: normal;
  font-weight: 800;
}

.person-row:nth-child(3) > i {
  color: #286e57;
  background: #e3f2eb;
}

.person-row:nth-child(4) > i {
  color: #8a6128;
  background: #f8edd9;
}

.person-row > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.person-row strong {
  color: #42454d;
  font-size: .56rem;
}

.person-row > em {
  color: #277655;
  font-size: .47rem;
  font-style: normal;
  font-weight: 750;
}

.person-row > em.is-break {
  color: #a06d24;
}

.floating-notice {
  position: absolute;
  z-index: 3;
  display: flex;
  padding: .64rem .74rem;
  align-items: center;
  gap: .55rem;
  border: 1px solid rgba(34, 36, 42, .1);
  border-radius: .72rem;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 .9rem 2.5rem rgba(26, 28, 34, .14);
  backdrop-filter: blur(.6rem);
}

.floating-notice-team {
  top: .2rem;
  left: -1.6rem;
}

.floating-notice-clock {
  right: -1.4rem;
  bottom: .35rem;
}

.floating-notice > span:last-child {
  display: flex;
  flex-direction: column;
}

.floating-notice strong {
  color: #2f3239;
  font-size: .6rem;
}

.floating-notice small {
  color: #888e99;
  font-size: .48rem;
}

.avatar-group {
  display: flex;
  padding-left: .25rem;
}

.avatar-group i {
  display: inline-flex;
  width: 1.55rem;
  height: 1.55rem;
  margin-left: -.3rem;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #7b3030;
  background: #f9e5e5;
  font-size: .4rem;
  font-style: normal;
  font-weight: 800;
}

.avatar-group i:nth-child(2) { color: #296b55; background: #e3f1eb; }
.avatar-group i:nth-child(3) { color: #896127; background: #f8ecd6; }

.notice-icon {
  display: inline-flex;
  width: 1.72rem;
  height: 1.72rem;
  align-items: center;
  justify-content: center;
  border-radius: .48rem;
  color: #fff;
  background: var(--primary);
}

.notice-icon svg {
  width: .72rem;
  height: .72rem;
  stroke-width: 2.5;
}

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

.area-grid {
  display: grid;
  min-height: 7.2rem;
  align-items: center;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.area-grid > div {
  display: flex;
  min-width: 0;
  padding: 0 1.45rem;
  align-items: center;
  gap: .72rem;
  border-left: 1px solid var(--line);
}

.area-grid > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.area-grid > div:last-child {
  padding-right: 0;
}

.area-grid > div > svg {
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
  color: var(--primary);
}

.area-grid span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.area-grid strong {
  color: var(--ink);
  font-size: .83rem;
}

.area-grid small {
  color: var(--muted);
  font-size: .67rem;
}

.section {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--surface);
}

.section-soft {
  background: var(--surface-soft);
}

.section-heading {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-heading h2,
.security-copy h2,
.cta-card h2 {
  max-width: 49rem;
  margin: .8rem 0 0;
  color: var(--ink);
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  font-weight: 780;
  letter-spacing: -.052em;
  line-height: 1.08;
}

.section-heading > p:last-child,
.section-heading-split > p,
.security-copy > p,
.cta-card > div > p:last-child {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

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

.section-heading-centered h2 {
  margin-right: auto;
  margin-left: auto;
}

.section-heading-centered > p:last-child {
  max-width: 45rem;
  margin: 1.05rem auto 0;
}

.section-heading-split {
  display: grid;
  align-items: end;
  grid-template-columns: 1.15fr .85fr;
  gap: 4rem;
}

.section-heading-split > p {
  max-width: 32rem;
  margin: 0 0 .35rem auto;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.benefit-card {
  padding: 1rem 1rem 1.65rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--surface-raised);
  transition: box-shadow .25s ease, transform .25s ease;
}

.benefit-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-.25rem);
}

.benefit-visual {
  display: flex;
  height: 12rem;
  padding: 1.2rem;
  align-items: center;
  justify-content: center;
  border-radius: .75rem;
  background: var(--surface-soft);
}

.visual-record {
  gap: .65rem;
}

.visual-record span {
  display: inline-flex;
  padding: .62rem .72rem;
  align-items: center;
  gap: .42rem;
  border: 1px solid var(--line);
  border-radius: .58rem;
  color: var(--ink);
  background: var(--surface-raised);
  box-shadow: var(--shadow-sm);
  font-size: .68rem;
  font-weight: 750;
}

.visual-record span svg {
  width: .75rem;
  height: .75rem;
  color: var(--primary);
}

.visual-record > i {
  width: 2.2rem;
  height: 1px;
  background: rgba(var(--primary-rgb), .35);
}

.visual-record span.is-confirmed svg {
  color: var(--success);
}

.mini-calendar {
  display: grid;
  width: 86%;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: .75rem;
  background: var(--surface-raised);
  box-shadow: var(--shadow-sm);
  grid-template-columns: repeat(5, 1fr);
  gap: .62rem;
}

.mini-calendar span {
  color: var(--muted);
  font-size: .58rem;
  font-weight: 750;
  text-align: center;
}

.mini-calendar i {
  height: 2.25rem;
  border-radius: .4rem;
  background: var(--surface-soft);
}

.mini-calendar i.is-primary { background: rgba(var(--primary-rgb), .88); }
.mini-calendar i.is-soft { background: rgba(var(--primary-rgb), .17); }

.document-stack {
  position: relative;
  width: 78%;
  height: 7rem;
}

.document-stack > i,
.document-stack > span {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: .68rem;
  background: var(--surface-raised);
}

.document-stack > i:first-child {
  inset: .75rem 1.4rem -.1rem -.5rem;
  opacity: .5;
  transform: rotate(-5deg);
}

.document-stack > i:nth-child(2) {
  inset: .4rem -.5rem .25rem 1.2rem;
  opacity: .7;
  transform: rotate(4deg);
}

.document-stack > span {
  inset: 0;
  display: grid;
  padding: 1rem;
  align-content: center;
  box-shadow: var(--shadow-sm);
  grid-template-columns: auto 1fr;
  column-gap: .65rem;
}

.document-stack svg {
  width: 1.45rem;
  height: 1.45rem;
  color: var(--primary);
  grid-row: span 2;
}

.document-stack strong {
  color: var(--ink);
  font-size: .7rem;
}

.document-stack small {
  color: var(--success);
  font-size: .57rem;
}

.card-icon {
  display: inline-flex;
  width: 2.6rem;
  height: 2.6rem;
  margin: 1.3rem .5rem .85rem;
  align-items: center;
  justify-content: center;
  border-radius: .68rem;
  color: var(--primary);
  background: var(--primary-soft);
}

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

.benefit-card h3,
.module-card h3,
.process-list h3 {
  margin: 0 .5rem .65rem;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 750;
  letter-spacing: -.025em;
  line-height: 1.25;
}

.benefit-card > p {
  margin: 0 .5rem;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.7;
}

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

.module-card {
  position: relative;
  min-height: 19rem;
  padding: 1.6rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--surface-raised);
}

.module-card-featured {
  min-height: 39rem;
  padding-right: 48%;
  grid-row: span 2;
}

.module-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.module-top > small {
  color: color-mix(in srgb, var(--muted) 50%, transparent);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.module-icon {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: .72rem;
  color: var(--primary);
  background: var(--primary-soft);
}

.module-icon-primary {
  color: #fff;
  background: var(--primary);
}

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

.module-card h3 {
  max-width: 28rem;
  margin: 1.85rem 0 .68rem;
  font-size: 1.3rem;
}

.module-card > p {
  max-width: 30rem;
  margin: 0 0 1.2rem;
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.7;
}

.module-card > ul {
  display: grid;
  margin: 1.25rem 0 0;
  padding: 0;
  gap: .65rem;
  color: var(--muted);
  font-size: .76rem;
  list-style: none;
}

.module-card > ul li {
  display: flex;
  align-items: center;
  gap: .42rem;
}

.module-card > ul svg {
  width: .75rem;
  height: .75rem;
  flex: 0 0 auto;
  color: var(--primary);
  stroke-width: 2.4;
}

.module-card > a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--primary);
  font-size: .76rem;
  font-weight: 750;
  text-decoration: none;
}

.module-card > a svg {
  width: .78rem;
  height: .78rem;
  transition: transform .2s ease;
}

.module-card > a:hover svg {
  transform: translateX(.2rem);
}

.module-preview {
  position: absolute;
  right: -2.5rem;
  bottom: -1.8rem;
  width: 50%;
  min-height: 25rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: .9rem 0 0 0;
  background: var(--surface-soft);
  box-shadow: -.8rem -.8rem 2.5rem rgba(26, 28, 34, .07);
}

.module-preview > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: .58rem;
}

.module-preview > div:first-child em {
  padding: .24rem .42rem;
  border-radius: 99px;
  color: #216f4b;
  background: var(--success-soft);
  font-size: .46rem;
  font-style: normal;
  font-weight: 800;
}

.module-preview > strong {
  display: block;
  margin-top: 4rem;
  color: var(--ink);
  font-size: 1.9rem;
  letter-spacing: -.045em;
}

.module-progress {
  display: block;
  height: .38rem;
  margin-top: 1.15rem;
  overflow: hidden;
  border-radius: 99px;
  background: var(--line);
}

.module-progress i {
  display: block;
  width: 58%;
  height: 100%;
  border-radius: inherit;
  background: var(--primary);
}

.module-preview > small {
  display: flex;
  margin-top: .38rem;
  justify-content: space-between;
  color: var(--muted);
  font-size: .48rem;
}

.module-preview > small b {
  font-weight: 500;
}

.process-list {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4rem;
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 2.1rem;
  right: 16%;
  left: 16%;
  height: 1px;
  border-top: 1px dashed rgba(var(--primary-rgb), .32);
  content: "";
}

.process-list li {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-number {
  position: absolute;
  top: -.65rem;
  left: calc(50% + 1.65rem);
  color: var(--primary);
  font-size: .6rem;
  font-weight: 800;
}

.process-icon {
  display: inline-flex;
  width: 4.2rem;
  height: 4.2rem;
  align-items: center;
  justify-content: center;
  border: .48rem solid var(--surface);
  border-radius: 1.15rem;
  color: var(--primary);
  background: var(--primary-soft);
  box-shadow: 0 0 0 1px rgba(var(--primary-rgb), .17);
}

.process-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.process-list h3 {
  margin: 1.25rem 0 .58rem;
}

.process-list p {
  max-width: 20rem;
  margin: 0 auto;
  color: var(--muted);
  font-size: .83rem;
  line-height: 1.68;
}

.security-section {
  position: relative;
  padding: clamp(5rem, 9vw, 8rem) 0;
  overflow: hidden;
  background: #242426;
}

.security-section::after {
  position: absolute;
  top: -15rem;
  right: -12rem;
  width: 38rem;
  height: 38rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), .25), transparent 68%);
  content: "";
}

.security-layout {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(28rem, .9fr);
  gap: clamp(3rem, 8vw, 7rem);
}

.security-copy h2 {
  max-width: 36rem;
  color: #fff;
}

.security-copy > p:last-of-type {
  max-width: 39rem;
  margin: 1.15rem 0 1.9rem;
  color: rgba(255, 255, 255, .62);
}

.security-copy > ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: .95rem;
  list-style: none;
}

.security-copy > ul li {
  display: flex;
  align-items: flex-start;
  gap: .78rem;
}

.security-copy > ul li > span {
  display: inline-flex;
  width: 2.38rem;
  height: 2.38rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: .63rem;
  color: #fff;
  background: rgba(255, 255, 255, .06);
}

.security-copy > ul li > span svg {
  width: 1rem;
  height: 1rem;
}

.security-copy li > div {
  display: flex;
  flex-direction: column;
}

.security-copy li strong {
  color: #fff;
  font-size: .87rem;
}

.security-copy li small {
  max-width: 32rem;
  margin-top: .16rem;
  color: rgba(255, 255, 255, .52);
  font-size: .72rem;
  line-height: 1.5;
}

.audit-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 1rem;
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, .26);
  backdrop-filter: blur(1rem);
}

.audit-heading {
  display: grid;
  padding: 1.1rem;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: .68rem;
}

.audit-heading > span {
  display: inline-flex;
  width: 2.45rem;
  height: 2.45rem;
  align-items: center;
  justify-content: center;
  border-radius: .63rem;
  color: #fff;
  background: var(--primary);
}

.audit-heading > span svg {
  width: 1rem;
  height: 1rem;
}

.audit-heading > div,
.audit-list > div > div {
  display: flex;
  flex-direction: column;
}

.audit-heading strong,
.audit-list strong {
  color: #fff;
  font-size: .76rem;
}

.audit-heading small,
.audit-list small {
  color: rgba(255, 255, 255, .46);
  font-size: .59rem;
}

.audit-heading > em {
  padding: .34rem .52rem;
  border-radius: 99px;
  color: #8bd7b0;
  background: rgba(82, 190, 133, .12);
  font-size: .52rem;
  font-style: normal;
  font-weight: 800;
}

.audit-list {
  padding: .32rem 1.1rem;
}

.audit-list > div {
  display: grid;
  padding: .95rem 0;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: .68rem;
}

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

.audit-list > div > span {
  display: inline-flex;
  width: 1.72rem;
  height: 1.72rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #84d4aa;
  background: rgba(82, 190, 133, .12);
}

.audit-list > div > span svg {
  width: .68rem;
  height: .68rem;
  stroke-width: 2.3;
}

.audit-list time {
  color: rgba(255, 255, 255, .42);
  font-size: .6rem;
}

.audit-footer {
  display: flex;
  padding: .78rem 1.1rem;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .48);
  background: rgba(0, 0, 0, .08);
  font-size: .6rem;
}

.audit-footer svg {
  width: .68rem;
  height: .68rem;
}

.pricing-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 14% 22%, rgba(var(--primary-rgb), .07), transparent 24rem),
    var(--surface-soft);
}

.pricing-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(0, 1.05fr) minmax(25rem, .95fr);
  gap: 1.25rem;
}

.pricing-card,
.pricing-details {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--surface-raised);
}

.pricing-card {
  position: relative;
  padding: clamp(1.7rem, 4vw, 3rem);
  overflow: hidden;
  border-color: rgba(var(--primary-rgb), .26);
  box-shadow: 0 1.5rem 3.5rem rgba(var(--primary-rgb), .08);
}

.pricing-card::after {
  position: absolute;
  top: -8rem;
  right: -7rem;
  width: 19rem;
  height: 19rem;
  border: 1px solid rgba(var(--primary-rgb), .13);
  border-radius: 50%;
  content: "";
}

.pricing-card-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.pricing-label {
  color: var(--primary);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.pricing-billing {
  padding: .38rem .58rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface-soft);
  font-size: .62rem;
  font-weight: 750;
}

.pricing-card h3 {
  position: relative;
  z-index: 1;
  max-width: 34rem;
  margin: 1.25rem 0 1.5rem;
  font-size: clamp(2rem, 3.4vw, 3.15rem);
  letter-spacing: -.052em;
  line-height: 1.04;
}

.pricing-value {
  position: relative;
  z-index: 1;
  display: flex;
  padding: 1.15rem 0;
  align-items: flex-start;
  flex-direction: column;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  gap: .2rem;
}

.pricing-value span {
  color: var(--muted);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.pricing-value strong {
  color: var(--ink);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  letter-spacing: -.025em;
}

.pricing-card > p {
  max-width: 38rem;
  margin: 1.2rem 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.68;
}

.pricing-features {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem 1rem;
  color: var(--ink-soft);
  font-size: .76rem;
  font-weight: 680;
  list-style: none;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: .48rem;
}

.pricing-features svg {
  width: .86rem;
  height: .86rem;
  flex: 0 0 auto;
  color: var(--primary);
  stroke-width: 2.4;
}

.pricing-details {
  display: flex;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  flex-direction: column;
  justify-content: space-between;
}

.pricing-detail-list > div {
  display: grid;
  padding: 1rem 0;
  align-items: center;
  border-bottom: 1px solid var(--line);
  grid-template-columns: auto minmax(0, 1fr);
  gap: .85rem;
}

.pricing-detail-list > div:first-child {
  padding-top: 0;
}

.pricing-detail-list > div > span {
  display: inline-flex;
  width: 2.4rem;
  height: 2.4rem;
  align-items: center;
  justify-content: center;
  border-radius: .65rem;
  color: var(--primary);
  background: rgba(var(--primary-rgb), .09);
}

.pricing-detail-list svg {
  width: 1rem;
  height: 1rem;
}

.pricing-detail-list p {
  display: flex;
  margin: 0;
  flex-direction: column;
  gap: .18rem;
}

.pricing-detail-list strong {
  color: var(--ink);
  font-size: .78rem;
}

.pricing-detail-list small {
  color: var(--muted);
  font-size: .68rem;
  line-height: 1.5;
}

.pricing-actions {
  margin-top: 1.5rem;
}

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

.pricing-actions p {
  margin: .8rem 0 0;
  color: var(--muted);
  font-size: .68rem;
  text-align: center;
}

.pricing-actions p a {
  color: var(--primary);
  font-weight: 750;
}

.pricing-disclosure {
  max-width: 58rem;
  margin: 1.15rem auto 0;
  color: var(--muted);
  font-size: .66rem;
  line-height: 1.55;
  text-align: center;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(18rem, .7fr) minmax(0, 1.3fr);
  gap: clamp(3rem, 8vw, 7rem);
}

.faq-layout .section-heading {
  margin-bottom: 0;
}

.faq-layout .section-heading h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.25rem);
}

.faq-layout .section-heading > p:last-child {
  margin-top: 1rem;
}

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

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

.faq-list summary {
  display: flex;
  padding: 1.25rem .25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ink);
  cursor: pointer;
  font-size: .95rem;
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  color: var(--primary);
  transition: transform .2s ease;
}

.faq-list details[open] summary svg {
  transform: rotate(90deg);
}

.faq-list details p {
  max-width: 44rem;
  margin: -.2rem 0 1.3rem;
  padding-right: 2.5rem;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.72;
}

.final-cta {
  padding: 0 0 clamp(5rem, 8vw, 7rem);
  background: var(--surface);
}

.cta-card {
  position: relative;
  display: grid;
  padding: clamp(2.3rem, 5vw, 4.4rem);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(var(--primary-rgb), .14);
  border-radius: 1.2rem;
  background:
    radial-gradient(circle at 88% 50%, rgba(var(--primary-rgb), .14), transparent 23rem),
    var(--surface-soft);
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3rem;
}

.cta-card::after {
  position: absolute;
  right: -7rem;
  bottom: -12rem;
  width: 24rem;
  height: 24rem;
  border: 1px solid rgba(var(--primary-rgb), .16);
  border-radius: 50%;
  content: "";
}

.cta-card h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.cta-card > div > p:last-child {
  max-width: 39rem;
  margin: .85rem 0 0;
}

.cta-card > .button {
  position: relative;
  z-index: 1;
}

.site-footer {
  padding: 4.5rem 0 1.5rem;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
}

.footer-grid > div > p {
  max-width: 20rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.65;
}

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

.footer-grid nav strong {
  margin-bottom: .12rem;
  color: var(--ink);
  font-size: .72rem;
}

.footer-grid nav a {
  color: var(--muted);
  font-size: .72rem;
  text-decoration: none;
}

.footer-grid nav a:hover,
.footer-grid nav a:focus-visible {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  margin-top: 3.5rem;
  padding-top: 1.2rem;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .66rem;
}

@media (max-width: 1199.98px) {
  .header-inner { gap: 1.2rem; }
  .main-nav { gap: .95rem; }
  .hero-layout { grid-template-columns: minmax(0, .87fr) minmax(30rem, 1.13fr); gap: 2rem; }
  .floating-notice-team { left: -.7rem; }
  .floating-notice-clock { right: -.7rem; }
}

@media (max-width: 991.98px) {
  html { scroll-padding-top: 4.8rem; }
  .header-inner { min-height: 4.8rem; }

  .main-nav {
    position: fixed;
    z-index: 99;
    top: 4.8rem;
    right: 1rem;
    left: 1rem;
    display: none;
    padding: .7rem;
    align-items: stretch;
    flex-direction: column;
    gap: .15rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface-raised);
    box-shadow: var(--shadow-lg);
  }

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

  .main-nav a {
    padding: .8rem .9rem;
    border-radius: var(--radius-sm);
    color: var(--ink);
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: var(--surface-soft);
  }

  .main-nav a::after { display: none; }
  .header-actions { margin-left: auto; }
  .menu-toggle { display: inline-flex; }

  .hero { padding: 8.5rem 0 5.5rem; }
  .hero-layout { grid-template-columns: 1fr; gap: 3.5rem; }
  .hero-copy { max-width: 48rem; text-align: center; justify-self: center; }
  .hero h1,
  .hero-lead { margin-right: auto; margin-left: auto; }
  .hero-actions,
  .hero-points { justify-content: center; }
  .product-scene { width: min(43rem, 100%); margin-inline: auto; }

  .area-grid { min-height: auto; padding: .9rem 0; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .area-grid > div { padding: .95rem; border-left: 0; }

  .section-heading-split { grid-template-columns: 1fr; gap: 1rem; }
  .section-heading-split > p { max-width: 44rem; margin-left: 0; }

  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card { display: grid; padding: 1rem; align-items: center; grid-template-columns: minmax(15rem, .8fr) auto 1.1fr; }
  .benefit-visual { grid-row: span 2; }
  .card-icon { margin: 0 1rem; grid-row: span 2; }
  .benefit-card h3,
  .benefit-card > p { margin-right: 1rem; margin-left: 0; }

  .security-layout { grid-template-columns: 1fr; }
  .audit-panel { width: min(40rem, 100%); }

  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-details { display: grid; grid-template-columns: minmax(0, 1fr) minmax(17rem, .62fr); gap: 1.5rem; }
  .pricing-actions { display: flex; align-self: center; flex-direction: column; margin-top: 0; }

  .faq-layout { grid-template-columns: 1fr; gap: 1rem; }
  .faq-layout .section-heading { margin-bottom: 1.5rem; }

  .cta-card { align-items: start; grid-template-columns: 1fr; gap: 2rem; }
  .cta-card > .button { justify-self: start; }
  .footer-grid { gap: 1.5rem; }
}

@media (max-width: 767.98px) {
  .container { width: min(100% - 2rem, 42rem); }
  .header-login { display: none; }
  .product-window { transform: none; }
  .product-layout { min-height: 27rem; grid-template-columns: 3rem minmax(0, 1fr); }
  .product-sidebar { padding-inline: .4rem; }
  .product-sidebar > span,
  .product-sidebar > i { width: 1.9rem; height: 1.9rem; }
  .product-main { padding: .9rem; }
  .product-content { grid-template-columns: 1fr; }
  .activity-card { display: none; }
  .floating-notice-team { top: .55rem; left: -.3rem; }
  .floating-notice-clock { right: -.3rem; }

  .benefit-card { display: block; }
  .card-icon { margin: 1.3rem .5rem .85rem; }
  .benefit-card h3,
  .benefit-card > p { margin-right: .5rem; margin-left: .5rem; }

  .module-grid { grid-template-columns: 1fr; }
  .module-card-featured { min-height: 35rem; padding-right: 1.6rem; padding-bottom: 16rem; grid-row: auto; }
  .module-preview { right: -1rem; bottom: -2rem; width: 76%; min-height: 15rem; }
  .module-preview > strong { margin-top: 2.5rem; }

  .process-list { grid-template-columns: 1fr; gap: 2.4rem; }
  .process-list::before { top: 2rem; bottom: 2rem; left: 50%; width: 1px; height: auto; border-top: 0; border-left: 1px dashed rgba(var(--primary-rgb), .32); }
  .process-list li { padding: 0 1rem 1rem; background: var(--surface); }

  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid > div { grid-column: 1 / -1; }
}

@media (max-width: 575.98px) {
  .brand-mark { width: 2.15rem; height: 2.15rem; }
  .hero { padding-top: 7.5rem; }
  .hero h1 { font-size: clamp(2.75rem, 13.5vw, 4rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-points { display: grid; justify-content: start; margin-left: .2rem; text-align: left; }
  .product-scene { padding-top: 1rem; }
  .floating-notice-team { display: none; }
  .floating-notice-clock { right: .45rem; bottom: -.65rem; }
  .product-layout { min-height: 24rem; grid-template-columns: 2.55rem minmax(0, 1fr); }
  .product-sidebar { gap: .38rem; }
  .product-sidebar > span,
  .product-sidebar > i { width: 1.7rem; height: 1.7rem; }
  .product-metrics > div { padding: .55rem; }
  .metric-icon { display: none; }

  .area-grid { grid-template-columns: 1fr; }
  .area-grid > div { border-bottom: 1px solid var(--line); }
  .area-grid > div:last-child { border-bottom: 0; }

  .section-heading h2,
  .security-copy h2,
  .cta-card h2 { font-size: 2.25rem; }
  .benefit-visual { height: 10rem; }
  .visual-record span { padding: .52rem; font-size: .6rem; }
  .visual-record > i { width: 1.15rem; }

  .module-card { padding: 1.3rem; }
  .module-card-featured { padding-bottom: 15rem; }
  .security-layout { gap: 2.5rem; }
  .audit-heading { grid-template-columns: auto minmax(0, 1fr); }
  .audit-heading > em { display: none; }

  .pricing-card-heading { align-items: flex-start; flex-direction: column; gap: .55rem; }
  .pricing-features { grid-template-columns: 1fr; }
  .pricing-details { display: flex; gap: 0; }
  .pricing-actions { margin-top: 1.5rem; }

  .faq-list summary { font-size: .88rem; }
  .cta-card > .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid nav:last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: .35rem; }
}

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

@media print {
  .site-header,
  .hero-actions,
  .theme-toggle,
  .menu-toggle,
  .final-cta { display: none !important; }
  .hero,
  .section,
  .security-section { padding: 2rem 0; }
  .security-section { color: #000; background: #fff; }
}
