:root {
  --ink: #10172a;
  --ink-soft: #26304a;
  --paper: #f8f7f2;
  --paper-warm: #f0eee5;
  --white: #ffffff;
  --lime: #d8ff68;
  --lime-deep: #b5dc3f;
  --mint: #95e8c5;
  --coral: #ff8e75;
  --violet: #a995ff;
  --blue: #7cc8ff;
  --line: rgba(16, 23, 42, 0.13);
  --muted: #687086;
  --shadow: 0 32px 80px rgba(7, 12, 28, 0.2);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'Segoe UI Variable', 'Avenir Next', 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

svg {
  display: block;
}

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

::selection {
  color: var(--ink);
  background: var(--lime);
}

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

.icon {
  width: 1.15em;
  height: 1.15em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

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

.section-padding {
  padding: 120px 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 8px;
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 76px;
  color: var(--ink);
  background: rgba(248, 247, 242, 0.9);
  border-bottom: 1px solid rgba(16, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 32px;
}

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

.brand-logo {
  display: block;
  width: 132px;
  height: auto;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 27px;
  height: 25px;
  transform: rotate(-6deg);
}

.brand-mark > span {
  position: absolute;
  left: 1px;
  width: 23px;
  height: 5px;
  background: var(--ink);
  border-radius: 10px;
}

.brand-mark > span:nth-child(1) {
  top: 2px;
  transform: rotate(10deg);
}

.brand-mark > span:nth-child(2) {
  top: 10px;
  width: 18px;
  transform: translateX(4px) rotate(-9deg);
}

.brand-mark > span:nth-child(3) {
  top: 18px;
  transform: rotate(9deg);
}

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

.main-nav a {
  position: relative;
  color: #394159;
  font-size: 14px;
  font-weight: 650;
}

.main-nav a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  gap: 11px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease,
  background-color 180ms ease;
}

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

.button .icon {
  transition: transform 180ms ease;
}

.button:hover .icon,
.button:focus-visible .icon {
  transform: translateX(3px);
}

.button-small {
  min-height: 42px;
  padding: 0 17px;
  border-radius: 10px;
  font-size: 13px;
}

.button-dark {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 10px 24px rgba(16, 23, 42, 0.16);
}

.button-primary {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 14px 32px rgba(183, 225, 62, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #e3ff8f;
  box-shadow: 0 18px 40px rgba(183, 225, 62, 0.28);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
}

.text-link .icon {
  width: 22px;
  height: 22px;
}

.text-link-dark {
  color: var(--ink);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(216, 255, 104, 0.12);
}

.eyebrow-dark {
  color: #5b6377;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.65);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 156px 0 0;
  color: var(--white);
  background: radial-gradient(
    circle at 79% 28%,
    rgba(72, 102, 133, 0.28),
    transparent 32%
  ),
  radial-gradient(
    circle at 12% 20%,
    rgba(126, 90, 157, 0.17),
    transparent 28%
  ),
  var(--ink);
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.08) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 72%);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.hero-orbit-one {
  top: 90px;
  right: -140px;
  width: 680px;
  height: 680px;
}

.hero-orbit-two {
  top: 210px;
  right: 30px;
  width: 360px;
  height: 360px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.18fr;
  align-items: center;
  min-height: 620px;
  gap: 42px;
}

.hero-copy {
  padding: 20px 0 72px;
}

.hero-copy h1 {
  max-width: 650px;
  margin: 23px 0 24px;
  font-size: clamp(48px, 5vw, 75px);
  font-weight: 780;
  letter-spacing: -0.062em;
  line-height: 0.98;
}

.hero-copy h1 > span {
  position: relative;
  color: var(--lime);
  white-space: nowrap;
}

.hero-copy h1 > span::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 500 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 15C110 2 275 21 497 6' fill='none' stroke='%23d8ff68' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  opacity: 0.45;
}

.hero-lead {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 35px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 21px;
  margin: 32px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 650;
  list-style: none;
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-proof .icon {
  width: 15px;
  height: 15px;
  color: var(--lime);
  stroke-width: 2.4;
}

.product-stage {
  position: relative;
  min-width: 0;
  padding: 64px 0 80px;
}

.stage-label {
  display: flex;
  align-items: center;
  width: max-content;
  margin: 0 0 14px auto;
  gap: 8px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stage-label > span {
  width: 6px;
  height: 6px;
  background: #65dca9;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(101, 220, 169, 0.13);
}

.dashboard-window {
  position: relative;
  overflow: hidden;
  width: 720px;
  max-width: 100%;
  margin-left: auto;
  color: var(--ink);
  background: #f9fafc;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.window-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 43px;
  padding: 0 13px;
  background: #fff;
  border-bottom: 1px solid #e9ebf1;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  background: #d7dbe5;
  border-radius: 50%;
}

.window-dots i:first-child {
  background: var(--coral);
}

.window-address {
  min-width: 220px;
  padding: 5px 14px;
  color: #343b50;
  background: #f2f4f7;
  border-radius: 7px;
  font-size: 9px;
  text-align: center;
}

.window-address span {
  color: #9a9faf;
}

.window-avatar {
  justify-self: end;
  display: grid;
  width: 24px;
  height: 24px;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
  place-items: center;
  font-size: 8px;
  font-weight: 800;
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 56px 1fr;
  min-height: 410px;
}

.dashboard-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 18px;
  gap: 16px;
  color: #fff;
  background: #151d32;
}

.sidebar-logo {
  position: relative;
  width: 23px;
  height: 23px;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 7px;
}

.sidebar-logo span {
  position: absolute;
  inset: 6px;
  background: var(--lime);
  border-radius: 3px 7px 3px 7px;
  transform: rotate(20deg);
}

.sidebar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 30px;
  gap: 4px;
  border-radius: 7px;
}

.sidebar-item.active {
  background: rgba(216, 255, 104, 0.12);
}

.sidebar-item i {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.33);
  border-radius: 2px;
}

.sidebar-item b {
  width: 12px;
  height: 3px;
  background: rgba(255, 255, 255, 0.21);
  border-radius: 4px;
}

.sidebar-item.active i {
  border-color: var(--lime);
}

.sidebar-item.active b {
  background: var(--lime);
}

.dashboard-content {
  padding: 25px 27px 28px;
}

.dashboard-heading,
.panel-heading,
.progress-item > div,
.activity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-label {
  margin-bottom: 3px;
  color: #9aa0b1;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.dashboard-heading h2 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 9px;
  gap: 6px;
  color: #2f6d52;
  background: #e2f8ee;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 750;
}

.status-badge i {
  width: 5px;
  height: 5px;
  background: #46b681;
  border-radius: 50%;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 19px;
  gap: 10px;
}

.stat-card {
  padding: 14px;
  background: #fff;
  border: 1px solid #e9ebf1;
  border-radius: 9px;
}

.stat-card > span,
.stat-card > small {
  display: block;
  color: #9096a7;
  font-size: 8px;
}

.stat-card > strong {
  display: block;
  margin: 4px 0 3px;
  font-size: 24px;
  letter-spacing: -0.05em;
  line-height: 1;
}

.stat-card small b {
  color: #399d70;
}

.stat-primary {
  background: var(--ink);
  border-color: var(--ink);
}

.stat-primary > span,
.stat-primary > small {
  color: rgba(255, 255, 255, 0.55);
}

.stat-primary > strong {
  color: #fff;
}

.stat-primary small b {
  color: var(--lime);
}

.dashboard-lower {
  display: grid;
  grid-template-columns: 1.2fr 0.86fr;
  margin-top: 11px;
  gap: 10px;
}

.progress-panel,
.activity-panel {
  min-width: 0;
  padding: 15px;
  background: #fff;
  border: 1px solid #e9ebf1;
  border-radius: 9px;
}

.panel-heading h3 {
  margin: 0;
  font-size: 10px;
}

.panel-heading > span {
  color: #687086;
  font-size: 8px;
  font-weight: 700;
}

.progress-item {
  margin-top: 15px;
}

.progress-item > div:first-child {
  margin-bottom: 5px;
  color: #687086;
  font-size: 8px;
}

.progress-item b {
  color: var(--ink);
}

.progress-track {
  overflow: hidden;
  height: 5px;
  background: #edf0f3;
  border-radius: 99px;
}

.progress-track i {
  display: block;
  height: 100%;
  background: var(--violet);
  border-radius: inherit;
}

.progress-item:nth-child(3) .progress-track i {
  background: var(--mint);
}

.progress-item:nth-child(4) .progress-track i {
  background: var(--coral);
}

.activity-row {
  justify-content: flex-start;
  padding: 10px 0;
  gap: 8px;
  border-bottom: 1px solid #f0f1f4;
}

.activity-row:last-child {
  border-bottom: 0;
}

.person-avatar {
  display: grid;
  width: 25px;
  height: 25px;
  color: var(--ink);
  border-radius: 7px;
  place-items: center;
  font-size: 7px;
  font-weight: 800;
}

.person-avatar.coral {
  background: #ffe0d9;
}

.person-avatar.violet {
  background: #e7e1ff;
}

.person-avatar.blue {
  background: #ddf1ff;
}

.person-avatar.lime {
  background: var(--lime);
}

.activity-row > div {
  min-width: 0;
}

.activity-row b,
.activity-row small {
  display: block;
  white-space: nowrap;
}

.activity-row b {
  font-size: 8px;
}

.activity-row small {
  color: #989eac;
  font-size: 7px;
}

.activity-row time {
  margin-left: auto;
  color: #a3a8b4;
  font-size: 7px;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  min-width: 210px;
  padding: 12px 14px;
  gap: 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(4, 8, 22, 0.25);
  backdrop-filter: blur(12px);
}

.floating-card b,
.floating-card small {
  display: block;
  line-height: 1.3;
}

.floating-card b {
  font-size: 10px;
}

.floating-card small {
  margin-top: 2px;
  color: #7e8597;
  font-size: 8px;
}

.floating-card > strong {
  margin-left: auto;
  color: #348760;
  font-size: 14px;
}

.floating-icon {
  display: grid;
  width: 30px;
  height: 30px;
  color: #5647a3;
  background: #ebe8ff;
  border-radius: 8px;
  place-items: center;
}

.floating-icon .icon {
  width: 15px;
  height: 15px;
}

.floating-new {
  right: -16px;
  bottom: 38px;
  animation: float-y 5s ease-in-out infinite;
}

.floating-ready {
  top: 16px;
  left: -36px;
  min-width: 178px;
  animation: float-y 5.8s ease-in-out 0.8s infinite;
}

.pulse-ring {
  position: relative;
  display: grid;
  width: 29px;
  height: 29px;
  background: #e7f9ef;
  border-radius: 50%;
  place-items: center;
}

.pulse-ring::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #43b57d;
  border-radius: 50%;
}

.pulse-ring i {
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(67, 181, 125, 0.35);
  border-radius: 50%;
  animation: pulse 2s ease-out infinite;
}

.value-strip {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 83px;
  gap: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.value-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.value-strip-items {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 650;
}

.value-strip-items span {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.value-strip-items span:not(:last-child)::after {
  content: '—';
  color: rgba(255, 255, 255, 0.17);
  font-size: 17px;
  font-weight: 400;
}

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulse {
  from {
    opacity: 0.9;
    transform: scale(0.8);
  }

  to {
    opacity: 0;
    transform: scale(1.7);
  }
}

.section-heading h2,
.process-copy h2,
.parent-copy h2,
.compliance-heading h2,
.communication-copy h2,
.benefits-heading h2,
.qa-intro h2,
.cta-card h2 {
  margin: 18px 0 0;
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.problem-section {
  background: var(--paper);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.05fr 0.7fr;
  align-items: end;
  gap: 100px;
}

.split-heading h2 {
  max-width: 670px;
}

.split-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 75px;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.outcome-card {
  position: relative;
  min-height: 330px;
  padding: 39px 35px 34px;
  background: var(--paper);
}

.outcome-card.featured {
  background: var(--paper-warm);
}

.outcome-number {
  display: inline-grid;
  width: 39px;
  height: 39px;
  color: #666e82;
  border: 1px solid rgba(16, 23, 42, 0.18);
  border-radius: 50%;
  place-items: center;
  font-size: 11px;
  font-weight: 750;
}

.outcome-card.featured .outcome-number {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.outcome-card h3 {
  max-width: 260px;
  margin: 48px 0 14px;
  font-size: 25px;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.outcome-card p {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.outcome-line {
  position: absolute;
  right: 35px;
  bottom: 31px;
  left: 35px;
  height: 2px;
  background: #dfe1e5;
}

.outcome-line::after {
  content: '';
  display: block;
  width: 30%;
  height: 100%;
  background: var(--ink);
}

.outcome-card.featured .outcome-line::after {
  width: 72%;
  background: var(--lime-deep);
}

.features-section {
  color: #fff;
  background: radial-gradient(
    circle at 50% 12%,
    rgba(106, 79, 156, 0.14),
    transparent 32%
  ),
  #0d1426;
}

.centered-heading {
  max-width: 750px;
  margin: 0 auto 65px;
  text-align: center;
}

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

.centered-heading h2 {
  margin-top: 19px;
}

.centered-heading > p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 17px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 31px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 17px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(1, 4, 14, 0.22);
}

.feature-card h3 {
  max-width: 410px;
  margin: 9px 0 12px;
  font-size: 27px;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.feature-card p {
  max-width: 510px;
  margin: 0;
  color: #666e82;
  font-size: 14px;
  line-height: 1.65;
}

.feature-kicker {
  display: block;
  color: #737b90;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.feature-icon {
  display: grid;
  width: 43px;
  height: 43px;
  margin-bottom: 21px;
  color: var(--ink);
  background: rgba(16, 23, 42, 0.07);
  border-radius: 11px;
  place-items: center;
}

.feature-icon .icon {
  width: 20px;
  height: 20px;
}

.feature-link {
  grid-column: span 7;
  min-height: 342px;
  padding-right: 270px;
  background: var(--lime);
}

.feature-link .feature-icon {
  background: rgba(16, 23, 42, 0.1);
}

.feature-link .feature-kicker,
.feature-link p {
  color: rgba(16, 23, 42, 0.63);
}

.link-preview {
  position: absolute;
  right: 30px;
  bottom: 32px;
  display: flex;
  align-items: center;
  width: calc(100% - 62px);
  max-width: 530px;
  min-height: 60px;
  padding: 0 16px;
  gap: 9px;
  background: #fff;
  border: 1px solid rgba(16, 23, 42, 0.08);
  border-radius: 11px;
  box-shadow: 0 18px 38px rgba(39, 53, 28, 0.15);
  font-size: 12px;
}

.link-preview-lock {
  color: #53af7f;
  font-size: 8px;
}

.link-preview > span:nth-child(2) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.link-preview b {
  font-weight: 750;
}

.link-preview > i {
  display: grid;
  width: 25px;
  height: 25px;
  margin-left: auto;
  color: #2a855a;
  background: #dff6ea;
  border-radius: 50%;
  place-items: center;
}

.link-preview .icon {
  width: 13px;
  height: 13px;
  stroke-width: 2.4;
}

.feature-form {
  grid-column: span 5;
  min-height: 342px;
}

.form-preview {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  display: grid;
  gap: 8px;
}

.fake-field,
.fake-check {
  display: flex;
  align-items: center;
  min-height: 49px;
  padding: 0 14px;
  color: #454d61;
  background: #f7f8fa;
  border: 1px solid #e3e6eb;
  border-radius: 9px;
  font-size: 11px;
}

.fake-field {
  display: grid;
  grid-template-columns: 1fr auto;
}

.fake-field small,
.fake-field b {
  display: block;
  grid-column: 1;
}

.fake-field small {
  color: #9298a7;
  font-size: 8px;
}

.fake-field b {
  font-size: 11px;
}

.fake-field > span {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.fake-check {
  gap: 9px;
}

.fake-check i {
  display: grid;
  width: 17px;
  height: 17px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 5px;
  place-items: center;
}

.fake-check .icon {
  width: 11px;
  height: 11px;
  stroke-width: 2.5;
}

.feature-insights {
  grid-column: span 4;
  min-height: 390px;
  background: #dcd5ff;
}

.feature-insights .feature-kicker,
.feature-insights p {
  color: rgba(37, 28, 75, 0.64);
}

.feature-insights .feature-icon {
  color: #4a3a97;
  background: rgba(74, 58, 151, 0.11);
}

.mini-chart {
  position: absolute;
  right: 30px;
  bottom: 31px;
  left: 30px;
  display: flex;
  align-items: flex-end;
  height: 105px;
  padding-top: 10px;
  gap: 10px;
  border-bottom: 1px solid rgba(47, 37, 95, 0.22);
}

.mini-chart > div {
  position: relative;
  flex: 1;
  min-height: 23px;
}

.mini-chart span {
  display: block;
  width: 100%;
  height: 100%;
  background: #7968ce;
  border-radius: 5px 5px 0 0;
}

.mini-chart > div:nth-child(5) span {
  background: var(--ink);
}

.mini-chart small {
  position: absolute;
  top: calc(100% + 7px);
  left: 50%;
  color: rgba(47, 37, 95, 0.54);
  font-size: 7px;
  transform: translateX(-50%);
}

.feature-message {
  grid-column: span 8;
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  align-items: center;
  min-height: 390px;
  gap: 35px;
  background: #fbfaf7;
}

.feature-message .feature-icon {
  color: #34745a;
  background: #dff4e9;
}

.feature-list {
  display: grid;
  margin: 22px 0 0;
  padding: 0;
  gap: 8px;
  color: #4f576a;
  font-size: 12px;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.feature-list .icon {
  width: 14px;
  height: 14px;
  color: #46a376;
  stroke-width: 2.4;
}

.message-preview {
  padding: 25px;
  background: #fff;
  border: 1px solid #e6e8ec;
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(16, 23, 42, 0.11);
  transform: rotate(1.5deg);
}

.message-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.message-top b,
.message-top small {
  display: block;
  line-height: 1.25;
}

.message-top b {
  font-size: 11px;
}

.message-top small {
  color: #9ba0ae;
  font-size: 8px;
}

.message-preview > p {
  margin: 20px 0;
  color: #333b50;
  font-size: 12px;
  font-weight: 600;
}

.message-action {
  display: block;
  padding: 9px 10px;
  color: #fff;
  background: var(--ink);
  border-radius: 7px;
  font-size: 9px;
  font-weight: 750;
  text-align: center;
}

.feature-session {
  grid-column: span 7;
  min-height: 340px;
  background: #ffd5ca;
}

.feature-session .feature-kicker,
.feature-session p {
  color: rgba(86, 37, 30, 0.63);
}

.feature-session .feature-icon {
  color: #8c3e32;
  background: rgba(140, 62, 50, 0.1);
}

.session-preview {
  position: absolute;
  right: 28px;
  bottom: 27px;
  left: 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 12px 14px;
  gap: 13px;
  background: rgba(255, 255, 255, 0.83);
  border: 1px solid rgba(92, 43, 37, 0.09);
  border-radius: 11px;
}

.calendar-tile {
  display: grid;
  width: 42px;
  height: 48px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  place-items: center;
}

.calendar-tile small {
  align-self: end;
  color: var(--lime);
  font-size: 6px;
  font-weight: 800;
}

.calendar-tile strong {
  align-self: start;
  font-size: 18px;
  line-height: 1.1;
}

.session-preview > div:nth-child(2) b,
.session-preview > div:nth-child(2) span {
  display: block;
}

.session-preview > div:nth-child(2) b {
  font-size: 11px;
}

.session-preview > div:nth-child(2) span {
  color: #777c8d;
  font-size: 8px;
}

.session-preview > i {
  color: #7a4c45;
}

.feature-template {
  grid-column: span 5;
  min-height: 340px;
  background: #e7f6f0;
}

.feature-template .feature-icon {
  color: #2b7457;
  background: rgba(43, 116, 87, 0.1);
}

.template-stack {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  height: 75px;
}

.template-stack > span {
  position: absolute;
  right: 0;
  left: 0;
  height: 56px;
  background: #fff;
  border: 1px solid #d8e4df;
  border-radius: 10px;
}

.template-stack > span:nth-child(1) {
  top: 18px;
  right: 20px;
  left: 20px;
  opacity: 0.5;
}

.template-stack > span:nth-child(2) {
  top: 9px;
  right: 10px;
  left: 10px;
  opacity: 0.78;
}

.template-stack > span:nth-child(3) {
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 15px;
  box-shadow: 0 11px 25px rgba(33, 72, 58, 0.09);
}

.template-stack b,
.template-stack small {
  display: block;
  line-height: 1.4;
}

.template-stack b {
  font-size: 10px;
}

.template-stack small {
  color: #7d8a84;
  font-size: 8px;
}

.process-section {
  background: var(--paper-warm);
}

.process-grid {
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  align-items: start;
  gap: 105px;
}

.process-copy {
  position: sticky;
  top: 120px;
}

.process-copy h2 {
  max-width: 500px;
}

.process-copy > p {
  max-width: 470px;
  margin: 24px 0 27px;
  color: var(--muted);
  font-size: 16px;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 54px 1fr 52px;
  min-height: 150px;
  padding: 31px 0;
  gap: 18px;
  border-top: 1px solid rgba(16, 23, 42, 0.14);
}

.process-list li:last-child {
  border-bottom: 1px solid rgba(16, 23, 42, 0.14);
}

.step-number {
  color: #8d93a0;
  font-size: 12px;
  font-weight: 800;
}

.process-list h3 {
  margin: 0 0 8px;
  font-size: 23px;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.process-list p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.step-icon {
  display: grid;
  width: 46px;
  height: 46px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  place-items: center;
  transition: transform 220ms ease;
}

.process-list li:hover .step-icon {
  transform: rotate(7deg) scale(1.06);
}

.step-icon .icon {
  width: 20px;
  height: 20px;
}

.parent-section {
  overflow: hidden;
  background: #fff;
}

.parent-grid {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  align-items: center;
  gap: 105px;
}

.phone-stage {
  position: relative;
  display: grid;
  min-height: 680px;
  background: radial-gradient(
    circle at 50% 42%,
    rgba(216, 255, 104, 0.95),
    rgba(216, 255, 104, 0.26) 38%,
    transparent 67%
  );
  place-items: center;
}

.phone-stage::before,
.phone-stage::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(16, 23, 42, 0.1);
  border-radius: 50%;
}

.phone-stage::before {
  width: 530px;
  height: 530px;
}

.phone-stage::after {
  width: 410px;
  height: 410px;
}

.phone-shadow {
  position: absolute;
  bottom: 66px;
  width: 265px;
  height: 48px;
  background: rgba(16, 23, 42, 0.25);
  border-radius: 50%;
  filter: blur(24px);
}

.phone-frame {
  position: relative;
  z-index: 2;
  width: 285px;
  padding: 9px;
  background: #0b1020;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 39px;
  box-shadow: 0 30px 70px rgba(16, 23, 42, 0.3), inset 0 0 0 2px #252b39;
  transform: rotate(-3deg);
}

.phone-speaker {
  position: absolute;
  top: 17px;
  left: 50%;
  z-index: 3;
  width: 67px;
  height: 16px;
  background: #080c17;
  border-radius: 99px;
  transform: translateX(-50%);
}

.phone-screen {
  overflow: hidden;
  min-height: 560px;
  background: #f9f8f4;
  border-radius: 31px;
}

.mobile-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 49px;
  gap: 5px;
  color: var(--ink);
  background: #fff;
  border-bottom: 1px solid #ececf0;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.brand-mark.mini {
  width: 13px;
  height: 13px;
}

.brand-mark.mini > span {
  width: 12px;
  height: 2px;
}

.brand-mark.mini > span:nth-child(1) {
  top: 2px;
}

.brand-mark.mini > span:nth-child(2) {
  top: 6px;
  width: 9px;
  transform: translateX(2px) rotate(-9deg);
}

.brand-mark.mini > span:nth-child(3) {
  top: 10px;
}

.mobile-cover {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 126px;
  padding: 19px;
  color: #fff;
  background: linear-gradient(
    135deg,
    rgba(16, 23, 42, 0.12),
    rgba(16, 23, 42, 0.82)
  ),
  radial-gradient(circle at 70% 25%, #a991ff, transparent 34%),
  radial-gradient(circle at 25% 45%, #ff9b82, transparent 33%), #4a5c78;
}

.mobile-cover > span {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-cover > strong {
  max-width: 210px;
  margin-top: 5px;
  font-size: 17px;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.mobile-form {
  padding: 18px;
}

.mobile-progress {
  display: flex;
  gap: 5px;
}

.mobile-progress i {
  flex: 1;
  height: 3px;
  background: #dee0e4;
  border-radius: 99px;
}

.mobile-progress i:nth-child(-n + 2) {
  background: var(--ink);
}

.mobile-form > small {
  display: block;
  margin-top: 13px;
  color: #8d93a1;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.mobile-form h3 {
  margin: 3px 0 12px;
  font-size: 17px;
  letter-spacing: -0.04em;
}

.mobile-form label {
  display: block;
  margin-bottom: 8px;
  color: #878e9e;
  font-size: 7px;
}

.mobile-form label > b {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 37px;
  margin-top: 3px;
  padding: 0 10px;
  color: #2b3347;
  background: #fff;
  border: 1px solid #e0e3e8;
  border-radius: 7px;
  font-size: 9px;
  font-weight: 650;
}

.mobile-choice {
  display: flex;
  align-items: center;
  min-height: 46px;
  margin-top: 11px;
  padding: 8px 10px;
  gap: 8px;
  background: #f0f7e0;
  border: 1px solid #cce68b;
  border-radius: 8px;
}

.mobile-choice > i {
  display: grid;
  width: 17px;
  height: 17px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 5px;
  place-items: center;
}

.mobile-choice > i .icon {
  width: 10px;
  height: 10px;
  stroke-width: 2.7;
}

.mobile-choice b,
.mobile-choice small {
  display: block;
}

.mobile-choice b {
  font-size: 8px;
}

.mobile-choice small {
  color: #7b836a;
  font-size: 7px;
}

.mobile-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 37px;
  margin-top: 13px;
  gap: 8px;
  color: #fff;
  background: var(--ink);
  border-radius: 7px;
  font-size: 8px;
  font-weight: 750;
}

.mobile-submit .icon {
  width: 12px;
  height: 12px;
}

.phone-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  padding: 13px 15px;
  gap: 9px;
  background: #fff;
  border: 1px solid rgba(16, 23, 42, 0.08);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(16, 23, 42, 0.14);
}

.phone-note b,
.phone-note span {
  display: block;
  line-height: 1.25;
}

.phone-note b {
  font-size: 10px;
}

.phone-note span {
  color: #7f8696;
  font-size: 8px;
}

.note-time {
  top: 144px;
  right: 6px;
  display: block;
  min-width: 93px;
}

.note-time b {
  color: #5d4cab;
  font-size: 17px;
}

.note-secure {
  bottom: 130px;
  left: 5px;
}

.note-secure > .icon {
  width: 25px;
  height: 25px;
  color: #31805f;
}

.parent-copy h2 {
  max-width: 610px;
}

.parent-lead {
  max-width: 580px;
  margin: 24px 0 40px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.parent-benefits {
  display: grid;
  gap: 25px;
}

.parent-benefits > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 15px;
}

.parent-benefits > div > span {
  display: grid;
  width: 34px;
  height: 34px;
  color: #347c5f;
  background: #e2f6ec;
  border-radius: 50%;
  place-items: center;
}

.parent-benefits > div > span .icon {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
}

.parent-benefits h3 {
  margin: 0 0 4px;
  font-size: 17px;
  letter-spacing: -0.025em;
}

.parent-benefits p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.compliance-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(
    circle at 88% 18%,
    rgba(216, 255, 104, 0.72),
    transparent 27%
  ),
  radial-gradient(
    circle at 7% 92%,
    rgba(149, 232, 197, 0.45),
    transparent 28%
  ),
  #eaf5ee;
}

.compliance-section::before {
  content: '';
  position: absolute;
  top: 80px;
  right: -170px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(16, 23, 42, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.16),
  0 0 0 140px rgba(255, 255, 255, 0.11);
}

.compliance-section .container {
  position: relative;
  z-index: 1;
}

.compliance-heading {
  display: grid;
  grid-template-columns: 1.08fr 0.72fr;
  align-items: end;
  gap: 94px;
}

.compliance-heading h2 {
  max-width: 760px;
}

.compliance-heading > p {
  max-width: 500px;
  margin: 0 0 4px;
  color: #52645c;
  font-size: 18px;
  line-height: 1.68;
}

.compliance-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  margin-top: 72px;
  gap: 76px;
}

.consent-principles {
  padding: 24px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(16, 23, 42, 0.1);
  border-radius: 15px;
  box-shadow: 0 14px 35px rgba(16, 23, 42, 0.06);
  backdrop-filter: blur(12px);
}

.consent-principles-label {
  display: block;
  margin-bottom: 13px;
  color: #52645c;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.consent-principles ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.consent-principles li {
  padding: 7px 11px;
  color: #255f4d;
  background: #dff4e8;
  border: 1px solid rgba(37, 95, 77, 0.13);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.compliance-feature-list {
  display: grid;
  margin-top: 32px;
  gap: 0;
}

.compliance-feature-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  padding: 22px 0;
  gap: 16px;
  border-bottom: 1px solid rgba(16, 23, 42, 0.12);
}

.compliance-feature-list article:first-child {
  padding-top: 0;
}

.compliance-feature-list article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.compliance-feature-icon {
  display: grid;
  width: 46px;
  height: 46px;
  color: var(--lime);
  background: var(--ink);
  border-radius: 13px;
  place-items: center;
}

.compliance-feature-icon .icon {
  width: 21px;
  height: 21px;
}

.compliance-feature-list h3 {
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.compliance-feature-list p {
  max-width: 510px;
  margin: 0;
  color: #5f7068;
  font-size: 13px;
  line-height: 1.65;
}

.consent-register {
  position: relative;
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(16, 23, 42, 0.12);
  border-radius: 22px;
  box-shadow: 0 34px 90px rgba(16, 23, 42, 0.19);
}

.consent-register::before {
  content: 'PODGLĄD REJESTRU';
  position: absolute;
  top: -25px;
  right: 19px;
  color: #4d6057;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.consent-register-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.consent-register-header small {
  display: block;
  color: #969ca8;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.consent-register-header h3 {
  margin: 5px 0 0;
  font-size: 25px;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.consent-complete {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  gap: 7px;
  color: #25664e;
  background: #e2f6ec;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 850;
  white-space: nowrap;
}

.consent-complete i {
  width: 6px;
  height: 6px;
  background: #2e9a70;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(46, 154, 112, 0.12);
}

.consent-person {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  margin-top: 25px;
  padding: 15px 17px;
  gap: 12px;
  background: #f5f4ef;
  border-radius: 12px;
}

.consent-person .person-avatar {
  width: 38px;
  height: 38px;
  font-size: 10px;
}

.consent-person strong,
.consent-person small {
  display: block;
}

.consent-person strong {
  font-size: 12px;
}

.consent-person small {
  margin-top: 2px;
  color: #7e8594;
  font-size: 9px;
}

.consent-person > span:last-child {
  color: #347c5f;
  font-size: 12px;
  font-weight: 850;
}

.consent-record-list {
  display: grid;
  margin-top: 13px;
  gap: 8px;
}

.consent-record {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 91px;
  padding: 14px 15px;
  gap: 13px;
  border: 1px solid #e5e6e9;
  border-radius: 11px;
}

.consent-record-check {
  display: grid;
  width: 34px;
  height: 34px;
  color: #25664e;
  background: #e2f6ec;
  border-radius: 50%;
  place-items: center;
}

.consent-record-check .icon {
  width: 15px;
  height: 15px;
  stroke-width: 2.7;
}

.consent-record > div > strong,
.consent-record > div > small,
.consent-record > div > span {
  display: block;
}

.consent-record > div > strong {
  overflow: hidden;
  font-size: 11px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.consent-record > div > small {
  margin-top: 3px;
  color: #808795;
  font-size: 8px;
}

.consent-record > div > span {
  width: fit-content;
  margin-top: 7px;
  padding: 3px 7px;
  color: #5f685d;
  background: #f0f5e5;
  border-radius: 999px;
  font-size: 7px;
  font-weight: 750;
}

.consent-record time {
  color: #7b8290;
  font-size: 8px;
  font-variant-numeric: tabular-nums;
  line-height: 1.45;
  text-align: right;
}

.reaccept-notice {
  display: grid;
  grid-template-columns: 40px 1fr;
  margin-top: 15px;
  padding: 16px;
  gap: 12px;
  color: #fff;
  background: var(--ink);
  border-radius: 12px;
}

.reaccept-notice > span {
  display: grid;
  width: 38px;
  height: 38px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 10px;
  place-items: center;
}

.reaccept-notice > span .icon {
  width: 19px;
  height: 19px;
}

.reaccept-notice strong {
  display: block;
  font-size: 11px;
}

.reaccept-notice p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 8px;
  line-height: 1.55;
}

.compliance-disclaimer {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  margin-top: 66px;
  padding: 25px 28px;
  gap: 18px;
  color: #fff;
  background: var(--ink);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(16, 23, 42, 0.14);
}

.compliance-disclaimer-icon {
  display: grid;
  width: 46px;
  height: 46px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 13px;
  place-items: center;
}

.compliance-disclaimer-icon .icon {
  width: 22px;
  height: 22px;
}

.compliance-disclaimer strong {
  display: block;
  font-size: 14px;
  letter-spacing: -0.015em;
}

.compliance-disclaimer p {
  max-width: 770px;
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  line-height: 1.65;
}

.compliance-disclaimer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.compliance-disclaimer a .icon {
  width: 14px;
  height: 14px;
}

.communication-section {
  background: #fff;
}

.communication-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  min-height: 610px;
  padding: 72px;
  gap: 80px;
  color: #fff;
  background: radial-gradient(
    circle at 12% 12%,
    rgba(120, 86, 163, 0.21),
    transparent 30%
  ),
  var(--ink);
  border-radius: 20px;
}

.communication-card::after {
  content: '';
  position: absolute;
  right: -130px;
  bottom: -190px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(255, 255, 255, 0.02),
  0 0 0 130px rgba(255, 255, 255, 0.015);
}

.communication-copy,
.channel-flow {
  position: relative;
  z-index: 2;
}

.communication-copy h2 {
  max-width: 510px;
}

.communication-copy > p {
  max-width: 510px;
  margin: 22px 0 27px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
}

.communication-copy ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 11px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  list-style: none;
}

.communication-copy li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.communication-copy li .icon {
  width: 15px;
  height: 15px;
  color: var(--lime);
  stroke-width: 2.5;
}

.channel-flow {
  padding: 28px;
  color: var(--ink);
  background: #f8f8f5;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  box-shadow: 0 30px 70px rgba(1, 4, 14, 0.3);
}

.flow-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 17px;
  border-bottom: 1px solid #e3e4e7;
  font-size: 12px;
  font-weight: 750;
}

.flow-header b {
  padding: 5px 9px;
  color: #347759;
  background: #dff4e9;
  border-radius: 99px;
  font-size: 8px;
}

.flow-step {
  display: grid;
  grid-template-columns: 43px 1fr 27px;
  align-items: center;
  min-height: 78px;
  padding: 11px 13px;
  gap: 12px;
  background: #fff;
  border: 1px solid #e2e4e9;
  border-radius: 11px;
}

.flow-step.active {
  border-color: #c8df83;
  box-shadow: 0 10px 24px rgba(55, 70, 26, 0.08);
}

.channel-icon {
  display: grid;
  width: 41px;
  height: 41px;
  color: #fff;
  border-radius: 10px;
  place-items: center;
  font-size: 12px;
  font-weight: 850;
}

.channel-icon.app {
  color: var(--ink);
  background: var(--lime);
}

.channel-icon.email {
  background: #7968ce;
}

.channel-icon.sms {
  background: #4a9b77;
  font-size: 8px;
}

.flow-step > div small,
.flow-step > div b,
.flow-step > div span {
  display: block;
  line-height: 1.35;
}

.flow-step > div small {
  color: #9aa0af;
  font-size: 6px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.flow-step > div b {
  margin: 2px 0;
  font-size: 10px;
}

.flow-step > div span {
  color: #858c9c;
  font-size: 8px;
}

.flow-step > i {
  display: grid;
  width: 24px;
  height: 24px;
  color: #777f90;
  background: #eef0f3;
  border-radius: 50%;
  place-items: center;
  font-size: 9px;
  font-style: normal;
  font-weight: 750;
}

.flow-step.active > i {
  color: #347759;
  background: #dff4e9;
}

.flow-step > i .icon {
  width: 13px;
  height: 13px;
  stroke-width: 2.5;
}

.flow-connector {
  position: relative;
  display: flex;
  align-items: center;
  height: 38px;
  margin-left: 33px;
  padding-left: 23px;
  border-left: 1px dashed #b9bdc6;
}

.flow-connector span {
  padding: 2px 6px;
  color: #9096a5;
  background: #f8f8f5;
  font-size: 7px;
}

.benefits-section {
  background: var(--lime);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 0.87fr 1.13fr;
  align-items: start;
  gap: 100px;
}

.benefits-heading {
  position: sticky;
  top: 120px;
}

.benefits-heading .eyebrow-dot {
  background: var(--ink);
  box-shadow: 0 0 0 4px rgba(16, 23, 42, 0.08);
}

.benefits-heading h2 {
  max-width: 520px;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(16, 23, 42, 0.18);
  border-left: 1px solid rgba(16, 23, 42, 0.18);
}

.benefit-list article {
  min-height: 235px;
  padding: 28px;
  border-right: 1px solid rgba(16, 23, 42, 0.18);
  border-bottom: 1px solid rgba(16, 23, 42, 0.18);
}

.benefit-list article > span {
  color: rgba(16, 23, 42, 0.46);
  font-size: 11px;
  font-weight: 800;
}

.benefit-list h3 {
  margin: 58px 0 8px;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.benefit-list p {
  margin: 0;
  color: rgba(16, 23, 42, 0.65);
  font-size: 13px;
  line-height: 1.6;
}

.qa-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(
    circle at 8% 14%,
    rgba(169, 149, 255, 0.12),
    transparent 27%
  ),
  var(--paper);
}

.qa-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  align-items: end;
  gap: 70px;
}

.qa-intro-copy h2 {
  max-width: 760px;
  margin-top: 18px;
  font-size: clamp(42px, 4.8vw, 64px);
}

.qa-intro-copy > p {
  max-width: 690px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.qa-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  border-radius: 16px;
  box-shadow: 0 22px 50px rgba(16, 23, 42, 0.16);
}

.qa-proof-strip > div {
  min-width: 0;
  padding: 23px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.qa-proof-strip > div:last-child {
  border-right: 0;
}

.qa-proof-strip strong,
.qa-proof-strip span {
  display: block;
}

.qa-proof-strip strong {
  color: var(--lime);
  font-size: 28px;
  letter-spacing: -0.05em;
  line-height: 1;
}

.qa-proof-strip span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.qa-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  align-items: start;
  margin-top: 76px;
  gap: 72px;
}

.qa-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 14px;
}

.qa-search-card {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(16, 23, 42, 0.06);
}

.qa-search-card > label {
  display: block;
  margin-bottom: 9px;
  color: #626a7e;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.qa-search-field {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
  background: #f5f5f2;
  border: 1px solid transparent;
  border-radius: 9px;
  transition: border-color 180ms ease, box-shadow 180ms ease,
  background-color 180ms ease;
}

.qa-search-field:focus-within {
  background: #fff;
  border-color: rgba(16, 23, 42, 0.34);
  box-shadow: 0 0 0 4px rgba(216, 255, 104, 0.3);
}

.qa-search-icon {
  position: relative;
  width: 15px;
  height: 15px;
  margin-left: 14px;
  border: 1.8px solid #7d8494;
  border-radius: 50%;
  flex: 0 0 auto;
}

.qa-search-icon::after {
  content: '';
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 6px;
  height: 2px;
  background: #7d8494;
  border-radius: 2px;
  transform: rotate(45deg);
}

.qa-search-field input {
  min-width: 0;
  flex: 1;
  height: 46px;
  padding: 0 9px 0 12px;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-size: 12px;
}

.qa-search-field input::placeholder {
  color: #999fac;
}

.qa-search-field input::-webkit-search-cancel-button {
  display: none;
}

.qa-search-field input:focus {
  outline: 0;
}

.qa-clear {
  margin-right: 7px;
  padding: 6px 8px;
  color: #4e566a;
  background: #fff;
  border: 1px solid #dfe1e6;
  border-radius: 6px;
  cursor: pointer;
  font-size: 8px;
  font-weight: 800;
}

.qa-results {
  min-height: 18px;
  margin: 10px 0 0;
  color: #858b9a;
  font-size: 9px;
}

.qa-categories {
  display: grid;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.qa-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 51px;
  padding: 0 15px;
  color: #555d70;
  background: #fff;
  border: 0;
  border-bottom: 1px solid #ececef;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  text-align: left;
  transition: color 180ms ease, background-color 180ms ease;
}

.qa-filter:last-child {
  border-bottom: 0;
}

.qa-filter:hover,
.qa-filter:focus-visible {
  color: var(--ink);
  background: #f7f8f3;
  outline: 0;
}

.qa-filter.active {
  color: var(--ink);
  background: var(--lime);
}

.qa-filter b {
  display: grid;
  width: 25px;
  height: 25px;
  color: #747b8e;
  background: #f0f1f3;
  border-radius: 50%;
  place-items: center;
  font-size: 8px;
}

.qa-filter.active b {
  color: #fff;
  background: var(--ink);
}

.qa-start-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 38px 1fr;
  padding: 21px;
  gap: 13px;
  color: #fff;
  background: var(--ink);
  border-radius: 14px;
}

.qa-start-card::after {
  content: '';
  position: absolute;
  right: -46px;
  bottom: -62px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.02);
}

.qa-start-mark {
  position: relative;
  z-index: 1;
  display: grid;
  width: 35px;
  height: 35px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  place-items: center;
}

.qa-start-mark .icon {
  width: 17px;
  height: 17px;
}

.qa-start-card > div {
  position: relative;
  z-index: 1;
}

.qa-start-card h3 {
  margin: 0;
  font-size: 14px;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.qa-start-card p {
  margin: 8px 0 13px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  line-height: 1.55;
}

.qa-start-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
}

.qa-start-card a .icon {
  width: 14px;
  height: 14px;
}

.qa-content {
  min-width: 0;
}

.qa-noscript {
  margin: 0 0 24px;
  padding: 14px 16px;
  color: #6a6042;
  background: #fff5d1;
  border: 1px solid #eadba5;
  border-radius: 9px;
  font-size: 12px;
}

.qa-category {
  margin-bottom: 58px;
}

.qa-category:last-of-type {
  margin-bottom: 0;
}

.qa-category-header {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  margin-bottom: 18px;
  gap: 14px;
}

.qa-category-index {
  display: grid;
  width: 42px;
  height: 42px;
  color: #6b7284;
  border: 1px solid rgba(16, 23, 42, 0.18);
  border-radius: 50%;
  place-items: center;
  font-size: 9px;
  font-weight: 850;
}

.qa-category-header h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.qa-category-header p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.qa-category-count {
  color: #8b91a0;
  font-size: 9px;
  font-weight: 750;
  text-transform: uppercase;
}

.qa-list {
  display: grid;
  gap: 9px;
}

.qa-item {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(16, 23, 42, 0.12);
  border-radius: 12px;
  transition: border-color 180ms ease, box-shadow 180ms ease,
  background-color 180ms ease;
}

.qa-item:hover {
  background: #fff;
  border-color: rgba(16, 23, 42, 0.22);
}

.qa-item[open] {
  background: #fff;
  border-color: rgba(16, 23, 42, 0.32);
  box-shadow: 0 14px 36px rgba(16, 23, 42, 0.07);
}

.qa-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  align-items: center;
  min-height: 78px;
  padding: 0 20px 0 23px;
  gap: 20px;
  cursor: pointer;
  list-style: none;
}

.qa-item summary::-webkit-details-marker {
  display: none;
}

.qa-question {
  font-size: 15px;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.qa-toggle {
  position: relative;
  width: 32px;
  height: 32px;
  background: #f0f1f3;
  border-radius: 50%;
  transition: background-color 180ms ease, transform 180ms ease;
}

.qa-toggle::before,
.qa-toggle::after {
  content: '';
  position: absolute;
  top: 15px;
  right: 9px;
  left: 9px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 180ms ease;
}

.qa-toggle::after {
  transform: rotate(90deg);
}

.qa-item[open] .qa-toggle {
  background: var(--lime);
  transform: rotate(180deg);
}

.qa-item[open] .qa-toggle::after {
  transform: rotate(0);
}

.qa-answer {
  padding: 0 74px 24px 23px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.qa-answer p {
  max-width: 720px;
  margin: 0;
}

.qa-answer .qa-answer-note {
  max-width: 720px;
  margin-top: 16px;
  padding: 13px 15px;
  color: #52604f;
  background: #eef6dd;
  border-left: 3px solid var(--lime-deep);
  border-radius: 0 8px 8px 0;
  line-height: 1.65;
}

.qa-answer-note strong {
  color: var(--ink);
}

.qa-answer ul {
  display: grid;
  margin: 13px 0 0;
  padding: 0;
  gap: 6px;
  list-style: none;
}

.qa-answer li {
  position: relative;
  padding-left: 17px;
}

.qa-answer li::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--lime-deep);
  border-radius: 50%;
}

.qa-empty {
  padding: 68px 24px;
  background: #fff;
  border: 1px dashed rgba(16, 23, 42, 0.22);
  border-radius: 14px;
  text-align: center;
}

.qa-empty > span {
  display: grid;
  width: 46px;
  height: 46px;
  margin: 0 auto 17px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  place-items: center;
  font-size: 20px;
  font-weight: 850;
}

.qa-empty h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.qa-empty p {
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: 12px;
}

.qa-empty button {
  min-height: 38px;
  padding: 0 14px;
  color: #fff;
  background: var(--ink);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
}

.qa-filter:focus-visible,
.qa-clear:focus-visible,
.qa-empty button:focus-visible,
.qa-item summary:focus-visible {
  outline: 3px solid rgba(181, 220, 63, 0.58);
  outline-offset: 3px;
}

.qa-item[hidden],
.qa-category[hidden],
.qa-empty[hidden],
.qa-clear[hidden] {
  display: none;
}

.cta-section {
  padding: 0 0 36px;
  background: var(--paper);
}

.cta-card {
  position: relative;
  overflow: hidden;
  padding: 92px 78px;
  color: #fff;
  background: var(--ink);
  border-radius: 20px;
}

.cta-card::after {
  content: '';
  position: absolute;
  top: -110px;
  right: -90px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.022),
  0 0 0 140px rgba(255, 255, 255, 0.014);
}

.cta-glow {
  position: absolute;
  top: 0;
  right: 12%;
  width: 270px;
  height: 270px;
  background: rgba(216, 255, 104, 0.12);
  border-radius: 50%;
  filter: blur(70px);
}

.cta-card > *:not(.cta-glow) {
  position: relative;
  z-index: 2;
}

.cta-card h2 {
  max-width: 760px;
}

.cta-card > p {
  max-width: 650px;
  margin: 22px 0 32px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.cta-actions > span {
  color: rgba(255, 255, 255, 0.43);
  font-size: 11px;
}

.site-footer {
  padding: 38px 0;
  color: rgba(255, 255, 255, 0.62);
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 36px;
}

.brand-light {
  color: #fff;
}

.brand-light .brand-logo {
  width: 118px;
  filter: brightness(0) invert(1);
}

.footer-inner > p {
  margin: 0;
  font-size: 12px;
}

.footer-links {
  display: flex;
  margin-left: auto;
  gap: 24px;
  font-size: 12px;
  font-weight: 650;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--lime);
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
    max-width: 880px;
    padding-top: 30px;
  }

  .hero-copy {
    max-width: 780px;
    padding-bottom: 10px;
  }

  .hero-copy h1 {
    font-size: clamp(52px, 8vw, 78px);
  }

  .product-stage {
    padding-top: 55px;
  }

  .dashboard-window {
    width: 100%;
  }

  .floating-ready {
    left: -20px;
  }

  .floating-new {
    right: -14px;
  }

  .value-strip {
    margin-top: 15px;
  }

  .split-heading,
  .process-grid,
  .parent-grid,
  .benefits-grid,
  .qa-layout {
    gap: 60px;
  }

  .communication-card {
    padding: 58px;
    gap: 48px;
  }

  .feature-link {
    padding-right: 210px;
  }
}

@media (max-width: 900px) {
  .section-padding {
    padding: 90px 0;
  }

  .main-nav {
    display: none;
  }

  .header-inner {
    gap: 18px;
  }

  .split-heading,
  .process-grid,
  .parent-grid,
  .benefits-grid,
  .qa-layout,
  .communication-card {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 25px;
  }

  .split-heading > p {
    max-width: 650px;
  }

  .process-copy,
  .benefits-heading,
  .qa-sidebar {
    position: static;
  }

  .outcome-card {
    padding-right: 24px;
    padding-left: 24px;
  }

  .feature-link,
  .feature-form,
  .feature-insights,
  .feature-message,
  .feature-session,
  .feature-template {
    grid-column: span 6;
  }

  .feature-link {
    padding-right: 31px;
  }

  .feature-message {
    grid-column: span 12;
  }

  .parent-grid {
    gap: 35px;
  }

  .phone-stage {
    order: 2;
  }

  .parent-copy {
    order: 1;
  }

  .communication-card {
    gap: 55px;
  }

  .communication-copy h2,
  .communication-copy > p {
    max-width: 680px;
  }

  .qa-sidebar {
    max-width: 620px;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 30px, 1180px);
  }

  .site-header {
    height: 68px;
  }

  .brand-logo {
    width: 112px;
  }

  .header-inner > .button {
    min-height: 38px;
    padding: 0 12px;
    font-size: 11px;
  }

  .header-inner > .button .icon {
    display: none;
  }

  .hero-section {
    padding-top: 116px;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy {
    padding-top: 10px;
  }

  .hero-copy h1 {
    margin-top: 18px;
    font-size: clamp(43px, 12.7vw, 62px);
    line-height: 1;
  }

  .hero-copy h1 > span {
    white-space: normal;
  }

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

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

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

  .hero-actions .text-link {
    justify-content: center;
  }

  .hero-proof {
    gap: 9px 13px;
  }

  .product-stage {
    margin: 0 -7px;
    padding: 47px 0 68px;
  }

  .stage-label {
    margin-right: 4px;
  }

  .window-bar {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }

  .window-address {
    min-width: 0;
  }

  .dashboard-shell {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    display: none;
  }

  .dashboard-content {
    padding: 18px 14px;
  }

  .dashboard-heading {
    align-items: flex-start;
    gap: 12px;
  }

  .dashboard-heading h2 {
    font-size: 16px;
  }

  .status-badge {
    padding: 5px 7px;
    white-space: nowrap;
  }

  .stats-row {
    gap: 6px;
  }

  .stat-card {
    padding: 10px 8px;
  }

  .stat-card > strong {
    font-size: 19px;
  }

  .dashboard-lower {
    grid-template-columns: 1fr;
  }

  .activity-panel {
    display: none;
  }

  .floating-ready {
    top: 11px;
    left: -3px;
  }

  .floating-new {
    right: -3px;
    bottom: 18px;
  }

  .floating-card {
    min-width: 164px;
    padding: 9px 10px;
  }

  .floating-icon,
  .pulse-ring {
    width: 26px;
    height: 26px;
  }

  .value-strip {
    align-items: flex-start;
    flex-direction: column;
    padding: 25px 0;
    gap: 16px;
  }

  .value-strip-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 10px 16px;
  }

  .value-strip-items span::after {
    display: none;
  }

  .section-heading h2,
  .process-copy h2,
  .parent-copy h2,
  .compliance-heading h2,
  .communication-copy h2,
  .benefits-heading h2,
  .qa-intro h2,
  .cta-card h2 {
    font-size: clamp(36px, 10vw, 48px);
  }

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

  .outcome-card {
    min-height: 285px;
  }

  .outcome-card h3 {
    margin-top: 38px;
  }

  .bento-grid {
    display: block;
  }

  .feature-card {
    min-height: 350px;
    margin-bottom: 14px;
    padding: 27px;
  }

  .feature-link,
  .feature-form,
  .feature-session,
  .feature-template {
    min-height: 350px;
  }

  .feature-message {
    display: block;
    min-height: 580px;
  }

  .message-preview {
    position: absolute;
    right: 26px;
    bottom: 27px;
    left: 26px;
  }

  .process-list li {
    grid-template-columns: 38px 1fr;
  }

  .step-icon {
    display: none;
  }

  .phone-stage {
    min-height: 610px;
  }

  .phone-stage::before {
    width: 410px;
    height: 410px;
  }

  .phone-stage::after {
    width: 320px;
    height: 320px;
  }

  .phone-frame {
    width: 265px;
  }

  .phone-screen {
    min-height: 535px;
  }

  .note-time {
    right: -2px;
  }

  .note-secure {
    left: -2px;
  }

  .communication-card {
    padding: 45px 22px;
    border-radius: 16px;
  }

  .channel-flow {
    padding: 17px;
  }

  .flow-step {
    grid-template-columns: 39px 1fr 25px;
    padding-right: 9px;
    padding-left: 9px;
  }

  .channel-icon {
    width: 37px;
    height: 37px;
  }

  .benefit-list {
    grid-template-columns: 1fr;
  }

  .benefit-list article {
    min-height: 195px;
  }

  .benefit-list h3 {
    margin-top: 42px;
  }

  .qa-item summary {
    min-height: 78px;
    font-size: 15px;
  }

  .cta-card {
    padding: 62px 25px;
    border-radius: 16px;
  }

  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .cta-actions > span {
    text-align: center;
  }

  .footer-inner {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 22px;
  }

  .footer-inner > p {
    width: 100%;
    order: 3;
  }

  .footer-links {
    margin-left: auto;
    gap: 16px;
  }
}

@media (max-width: 420px) {
  .hero-proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .feature-card {
    padding: 24px;
  }

  .feature-card h3 {
    font-size: 24px;
  }

  .form-preview,
  .mini-chart,
  .session-preview,
  .template-stack {
    right: 23px;
    left: 23px;
  }

  .phone-frame {
    width: 252px;
  }

  .phone-note {
    padding: 10px;
  }

  .note-time {
    top: 124px;
  }

  .note-secure {
    bottom: 104px;
  }
}

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

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

@media (max-width: 900px) {
  .qa-intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .qa-proof-strip {
    max-width: 620px;
  }

  .qa-layout {
    margin-top: 58px;
    gap: 44px;
  }

  .qa-sidebar {
    position: static;
    max-width: none;
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .qa-search-card,
  .qa-start-card {
    min-height: 100%;
  }

  .qa-categories {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, 1fr);
  }

  .qa-filter {
    border-right: 1px solid #ececef;
  }

  .qa-filter:nth-child(even) {
    border-right: 0;
  }

  .qa-filter:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 700px) {
  .qa-intro-copy > p {
    font-size: 15px;
  }

  .qa-proof-strip > div {
    padding: 18px 11px;
  }

  .qa-proof-strip strong {
    font-size: 24px;
  }

  .qa-proof-strip span {
    font-size: 7px;
  }

  .qa-layout {
    margin-top: 46px;
  }

  .qa-sidebar {
    grid-template-columns: 1fr;
  }

  .qa-search-card,
  .qa-start-card {
    min-height: 0;
  }

  .qa-categories {
    grid-column: auto;
  }

  .qa-category {
    margin-bottom: 44px;
  }

  .qa-category-header {
    grid-template-columns: 39px 1fr;
    gap: 11px;
  }

  .qa-category-index {
    width: 37px;
    height: 37px;
  }

  .qa-category-header h3 {
    font-size: 19px;
  }

  .qa-category-header p {
    font-size: 10px;
  }

  .qa-category-count {
    grid-column: 2;
  }

  .qa-item summary {
    grid-template-columns: minmax(0, 1fr) 30px;
    min-height: 72px;
    padding: 0 14px 0 16px;
    gap: 12px;
  }

  .qa-question {
    font-size: 14px;
  }

  .qa-toggle {
    width: 30px;
    height: 30px;
  }

  .qa-toggle::before,
  .qa-toggle::after {
    top: 14px;
    right: 8px;
    left: 8px;
  }

  .qa-answer {
    padding: 0 16px 21px;
    font-size: 12px;
  }

  .qa-empty {
    padding: 48px 18px;
  }
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 20px;
  }

  .main-nav a {
    font-size: 13px;
  }

  .compliance-grid {
    gap: 48px;
  }
}

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

  .compliance-heading {
    gap: 25px;
  }

  .compliance-heading > p {
    max-width: 690px;
  }

  .compliance-grid {
    margin-top: 56px;
    gap: 50px;
  }

  .compliance-copy,
  .consent-register {
    max-width: 720px;
  }

  .compliance-disclaimer {
    grid-template-columns: 48px 1fr;
  }

  .compliance-disclaimer a {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 700px) {
  .compliance-heading > p {
    font-size: 15px;
  }

  .compliance-grid {
    margin-top: 44px;
  }

  .consent-principles {
    padding: 20px;
  }

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

  .consent-principles li {
    text-align: center;
  }

  .compliance-feature-list article {
    grid-template-columns: 42px 1fr;
    padding: 19px 0;
    gap: 13px;
  }

  .compliance-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
  }

  .compliance-feature-icon .icon {
    width: 18px;
    height: 18px;
  }

  .compliance-feature-list h3 {
    font-size: 16px;
  }

  .compliance-feature-list p {
    font-size: 12px;
  }

  .consent-register {
    padding: 19px;
    border-radius: 18px;
  }

  .consent-register::before {
    top: -23px;
    right: 10px;
  }

  .consent-register-header {
    align-items: flex-start;
  }

  .consent-register-header h3 {
    font-size: 20px;
  }

  .consent-person {
    padding: 13px;
  }

  .consent-record {
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 0;
    padding: 13px;
    gap: 11px;
  }

  .consent-record time {
    grid-column: 2;
    text-align: left;
  }

  .consent-record > div > strong {
    white-space: normal;
  }

  .reaccept-notice {
    grid-template-columns: 36px 1fr;
    padding: 14px;
  }

  .reaccept-notice > span {
    width: 34px;
    height: 34px;
  }

  .compliance-disclaimer {
    grid-template-columns: 38px 1fr;
    margin-top: 45px;
    padding: 22px 19px;
    gap: 13px;
  }

  .compliance-disclaimer-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .compliance-disclaimer-icon .icon {
    width: 18px;
    height: 18px;
  }

  .compliance-disclaimer a {
    grid-column: 1 / -1;
  }
}

@media (max-width: 420px) {
  .consent-register-header {
    display: grid;
  }

  .consent-complete {
    justify-self: start;
  }
}

:root {
  --ink-rgb: 16, 23, 42;
  --paper-rgb: 248, 247, 242;
  --accent-rgb: 216, 255, 104;
  --accent-hover: #e3ff8f;
  --hero-glow-primary: rgba(72, 102, 133, 0.28);
  --hero-glow-secondary: rgba(126, 90, 157, 0.17);
  --section-glow: rgba(106, 79, 156, 0.14);
  --compliance-surface: #eaf5ee;
  --compliance-glow: rgba(216, 255, 104, 0.72);
  --compliance-glow-secondary: rgba(149, 232, 197, 0.45);
  --compliance-copy: #52645c;
  --compliance-chip: #dff4e8;
  --compliance-chip-ink: #255f4d;
}

html[data-theme='trust'] {
  --ink: #0b2a42;
  --ink-soft: #153d58;
  --paper: #f5f9fc;
  --paper-warm: #eaf2f7;
  --lime: #78ddff;
  --lime-deep: #2aaed3;
  --mint: #83dfc2;
  --coral: #ff9b7b;
  --violet: #8fa9ff;
  --blue: #66c8f1;
  --line: rgba(11, 42, 66, 0.13);
  --muted: #5e7184;
  --shadow: 0 32px 80px rgba(6, 31, 49, 0.2);
  --ink-rgb: 11, 42, 66;
  --paper-rgb: 245, 249, 252;
  --accent-rgb: 120, 221, 255;
  --accent-hover: #9be7ff;
  --hero-glow-primary: rgba(47, 144, 181, 0.3);
  --hero-glow-secondary: rgba(53, 180, 151, 0.18);
  --section-glow: rgba(52, 160, 194, 0.18);
  --compliance-surface: #e8f5fb;
  --compliance-glow: rgba(120, 221, 255, 0.62);
  --compliance-glow-secondary: rgba(131, 223, 194, 0.42);
  --compliance-copy: #44687d;
  --compliance-chip: #d9edf6;
  --compliance-chip-ink: #174f6a;
}

html[data-theme='premium'] {
  --ink: #201d18;
  --ink-soft: #383126;
  --paper: #faf7f1;
  --paper-warm: #eee7da;
  --lime: #f2ce78;
  --lime-deep: #c39a3d;
  --mint: #c9d5b6;
  --coral: #d98f71;
  --violet: #b9a18a;
  --blue: #9bbbc3;
  --line: rgba(32, 29, 24, 0.14);
  --muted: #6f685d;
  --shadow: 0 32px 80px rgba(32, 25, 15, 0.2);
  --ink-rgb: 32, 29, 24;
  --paper-rgb: 250, 247, 241;
  --accent-rgb: 242, 206, 120;
  --accent-hover: #f7dc9c;
  --hero-glow-primary: rgba(151, 121, 62, 0.26);
  --hero-glow-secondary: rgba(120, 101, 78, 0.2);
  --section-glow: rgba(168, 127, 54, 0.16);
  --compliance-surface: #f3ecdc;
  --compliance-glow: rgba(242, 206, 120, 0.64);
  --compliance-glow-secondary: rgba(201, 213, 182, 0.46);
  --compliance-copy: #716344;
  --compliance-chip: #ebe2c8;
  --compliance-chip-ink: #5f4b21;
}

html[data-theme='warm'] {
  --ink: #321c35;
  --ink-soft: #523253;
  --paper: #fff9f6;
  --paper-warm: #f5e9e3;
  --lime: #ffb28d;
  --lime-deep: #df7655;
  --mint: #aaddc7;
  --coral: #ff9476;
  --violet: #c3a2e8;
  --blue: #91c9db;
  --line: rgba(50, 28, 53, 0.13);
  --muted: #786879;
  --shadow: 0 32px 80px rgba(46, 22, 48, 0.2);
  --ink-rgb: 50, 28, 53;
  --paper-rgb: 255, 249, 246;
  --accent-rgb: 255, 178, 141;
  --accent-hover: #ffc8ab;
  --hero-glow-primary: rgba(177, 86, 121, 0.27);
  --hero-glow-secondary: rgba(216, 112, 84, 0.18);
  --section-glow: rgba(191, 110, 159, 0.18);
  --compliance-surface: #faeae5;
  --compliance-glow: rgba(255, 178, 141, 0.66);
  --compliance-glow-secondary: rgba(195, 162, 232, 0.34);
  --compliance-copy: #755b69;
  --compliance-chip: #f4d8cf;
  --compliance-chip-ink: #6e392c;
}

.site-header {
  background: rgba(var(--paper-rgb), 0.9);
  border-bottom-color: rgba(var(--ink-rgb), 0.08);
}

.main-nav a {
  color: rgba(var(--ink-rgb), 0.8);
}

.button-dark {
  box-shadow: 0 10px 24px rgba(var(--ink-rgb), 0.16);
}

.button-primary {
  box-shadow: 0 14px 32px rgba(var(--accent-rgb), 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-hover);
  box-shadow: 0 18px 40px rgba(var(--accent-rgb), 0.28);
}

.eyebrow-dot {
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.12);
}

.hero-section {
  background: radial-gradient(
    circle at 79% 28%,
    var(--hero-glow-primary),
    transparent 32%
  ),
  radial-gradient(
    circle at 12% 20%,
    var(--hero-glow-secondary),
    transparent 28%
  ),
  var(--ink);
}

.hero-copy h1 > span::after {
  bottom: -6px;
  height: 5px;
  background: var(--lime);
  border-radius: 999px;
  clip-path: polygon(0 45%, 22% 18%, 47% 58%, 73% 24%, 100% 42%, 100% 82%, 72% 66%, 47% 95%, 22% 60%, 0 86%);
  opacity: 0.44;
}

.dashboard-sidebar {
  background: var(--ink-soft);
}

.sidebar-item.active {
  background: rgba(var(--accent-rgb), 0.12);
}

.features-section {
  background: radial-gradient(
    circle at 50% 12%,
    var(--section-glow),
    transparent 32%
  ),
  var(--ink);
}

.phone-stage {
  background: radial-gradient(
    circle at 50% 42%,
    rgba(var(--accent-rgb), 0.95),
    rgba(var(--accent-rgb), 0.26) 38%,
    transparent 67%
  );
}

.compliance-section {
  background: radial-gradient(
    circle at 88% 18%,
    var(--compliance-glow),
    transparent 27%
  ),
  radial-gradient(
    circle at 7% 92%,
    var(--compliance-glow-secondary),
    transparent 28%
  ),
  var(--compliance-surface);
}

.compliance-section::before {
  border-color: rgba(var(--ink-rgb), 0.08);
}

.compliance-heading > p,
.consent-principles-label {
  color: var(--compliance-copy);
}

.consent-principles {
  border-color: rgba(var(--ink-rgb), 0.1);
  box-shadow: 0 14px 35px rgba(var(--ink-rgb), 0.06);
}

.consent-principles li {
  color: var(--compliance-chip-ink);
  background: var(--compliance-chip);
  border-color: rgba(var(--ink-rgb), 0.1);
}

.communication-card {
  background: radial-gradient(
    circle at 12% 12%,
    var(--hero-glow-secondary),
    transparent 30%
  ),
  var(--ink);
}

.qa-section {
  background: radial-gradient(
    circle at 8% 14%,
    var(--section-glow),
    transparent 27%
  ),
  var(--paper);
}

.qa-filter:focus-visible,
.qa-clear:focus-visible,
.qa-empty button:focus-visible,
.qa-item summary:focus-visible {
  outline-color: rgba(var(--accent-rgb), 0.7);
}

.cta-glow {
  background: rgba(var(--accent-rgb), 0.12);
}

html[data-theme='trust'] .feature-insights {
  background: #dce9ff;
}

html[data-theme='trust'] .feature-session {
  background: #dff3f8;
}

html[data-theme='trust'] .feature-template {
  background: #dff4ec;
}

html[data-theme='premium'] .feature-insights {
  background: #e7ded0;
}

html[data-theme='premium'] .feature-session {
  background: #f0dfd4;
}

html[data-theme='premium'] .feature-template {
  background: #e5e8dc;
}

html[data-theme='premium'] .feature-message {
  background: #faf7f0;
}

html[data-theme='warm'] .feature-insights {
  background: #eadcf2;
}

html[data-theme='warm'] .feature-session {
  background: #ffd9ca;
}

html[data-theme='warm'] .feature-template {
  background: #e8f2e9;
}

html[data-theme='warm'] .feature-message {
  background: #fff8f4;
}

.theme-switcher {
  position: fixed;
  top: 92px;
  right: max(18px, calc((100vw - 1180px) / 2));
  z-index: 120;
  display: grid;
  justify-items: end;
  color: var(--ink);
}

.theme-switcher-trigger,
.theme-option,
.theme-switcher-close {
  color: inherit;
  cursor: pointer;
}

.theme-switcher-trigger {
  display: grid;
  grid-template-columns: 34px auto 10px;
  align-items: center;
  min-height: 51px;
  padding: 7px 14px 7px 9px;
  gap: 10px;
  background: rgba(var(--paper-rgb), 0.92);
  border: 1px solid rgba(var(--ink-rgb), 0.13);
  border-radius: 15px;
  box-shadow: 0 12px 35px rgba(var(--ink-rgb), 0.16);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, box-shadow 180ms ease,
  border-color 180ms ease, background-color 280ms ease;
}

.theme-switcher-trigger:hover,
.theme-switcher-trigger:focus-visible,
.theme-switcher[data-open='true'] .theme-switcher-trigger {
  border-color: rgba(var(--accent-rgb), 0.88);
  box-shadow: 0 16px 42px rgba(var(--ink-rgb), 0.2),
  0 0 0 3px rgba(var(--accent-rgb), 0.14);
  transform: translateY(-1px);
}

.theme-switcher-trigger:focus-visible,
.theme-option:focus-visible,
.theme-switcher-close:focus-visible {
  outline: 3px solid rgba(var(--accent-rgb), 0.58);
  outline-offset: 3px;
}

.theme-trigger-palette {
  position: relative;
  width: 34px;
  height: 34px;
  background: rgba(var(--ink-rgb), 0.06);
  border-radius: 11px;
}

.theme-trigger-palette i {
  position: absolute;
  width: 13px;
  height: 13px;
  border: 2px solid rgba(var(--paper-rgb), 0.94);
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(var(--ink-rgb), 0.15);
}

.theme-trigger-palette i:nth-child(1) {
  top: 6px;
  left: 6px;
  z-index: 3;
  background: var(--ink);
}

.theme-trigger-palette i:nth-child(2) {
  top: 6px;
  right: 5px;
  z-index: 2;
  background: var(--lime);
}

.theme-trigger-palette i:nth-child(3) {
  right: 9px;
  bottom: 5px;
  z-index: 1;
  background: var(--coral);
}

.theme-trigger-copy {
  display: grid;
  min-width: 91px;
  text-align: left;
}

.theme-trigger-copy small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.theme-trigger-copy strong {
  font-size: 12px;
  font-weight: 780;
  line-height: 1.35;
}

.theme-trigger-chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.theme-switcher[data-open='true'] .theme-trigger-chevron {
  transform: translateY(2px) rotate(225deg);
}

.theme-switcher-panel {
  position: absolute;
  top: 61px;
  right: 0;
  width: min(410px, calc(100vw - 32px));
  padding: 22px;
  background: rgba(var(--paper-rgb), 0.97);
  border: 1px solid rgba(var(--ink-rgb), 0.13);
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(var(--ink-rgb), 0.24);
  backdrop-filter: blur(24px);
  animation: theme-panel-in 180ms ease-out both;
}

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

.theme-switcher-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.theme-switcher-heading > div > span {
  display: block;
  margin-bottom: 4px;
  color: var(--lime-deep);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.theme-switcher-heading h2 {
  margin: 0;
  font-size: 23px;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.theme-switcher-close {
  position: relative;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  padding: 0;
  background: rgba(var(--ink-rgb), 0.06);
  border: 0;
  border-radius: 10px;
  transition: background-color 180ms ease, transform 180ms ease;
}

.theme-switcher-close:hover {
  background: rgba(var(--ink-rgb), 0.11);
  transform: rotate(4deg);
}

.theme-switcher-close span::before,
.theme-switcher-close span::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 10px;
  width: 14px;
  height: 1.5px;
  background: currentColor;
  border-radius: 999px;
}

.theme-switcher-close span::before {
  transform: rotate(45deg);
}

.theme-switcher-close span::after {
  transform: rotate(-45deg);
}

.theme-switcher-intro {
  max-width: 340px;
  margin: 13px 0 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.theme-options {
  display: grid;
  gap: 8px;
}

.theme-option {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 20px;
  align-items: center;
  min-height: 68px;
  padding: 8px 11px 8px 8px;
  gap: 11px;
  text-align: left;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(var(--ink-rgb), 0.1);
  border-radius: 14px;
  transition: transform 160ms ease, border-color 160ms ease,
  box-shadow 160ms ease, background-color 160ms ease;
}

.theme-option:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(var(--ink-rgb), 0.2);
  transform: translateX(2px);
}

.theme-option[aria-pressed='true'] {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(var(--accent-rgb), 0.94);
  box-shadow: 0 7px 22px rgba(var(--ink-rgb), 0.08),
  inset 3px 0 0 var(--lime);
}

.theme-option-swatches {
  position: relative;
  display: block;
  width: 54px;
  height: 50px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(16, 23, 42, 0.1);
  border-radius: 11px;
}

.theme-option-swatches i {
  position: absolute;
  display: block;
}

.theme-option-swatches i:nth-child(1) {
  inset: 0 17px 0 0;
}

.theme-option-swatches i:nth-child(2) {
  top: 0;
  right: 0;
  width: 18px;
  height: 25px;
}

.theme-option-swatches i:nth-child(3) {
  right: 0;
  bottom: 0;
  width: 18px;
  height: 25px;
}

.theme-option-swatches-modern i:nth-child(1) {
  background: #10172a;
}

.theme-option-swatches-modern i:nth-child(2) {
  background: #d8ff68;
}

.theme-option-swatches-modern i:nth-child(3) {
  background: #f8f7f2;
}

.theme-option-swatches-trust i:nth-child(1) {
  background: #0b2a42;
}

.theme-option-swatches-trust i:nth-child(2) {
  background: #78ddff;
}

.theme-option-swatches-trust i:nth-child(3) {
  background: #f5f9fc;
}

.theme-option-swatches-premium i:nth-child(1) {
  background: #201d18;
}

.theme-option-swatches-premium i:nth-child(2) {
  background: #f2ce78;
}

.theme-option-swatches-premium i:nth-child(3) {
  background: #faf7f1;
}

.theme-option-swatches-warm i:nth-child(1) {
  background: #321c35;
}

.theme-option-swatches-warm i:nth-child(2) {
  background: #ffb28d;
}

.theme-option-swatches-warm i:nth-child(3) {
  background: #fff9f6;
}

.theme-option-copy {
  display: grid;
  min-width: 0;
}

.theme-option-copy strong {
  font-size: 13px;
  font-weight: 780;
  line-height: 1.35;
}

.theme-option-copy small {
  overflow: hidden;
  color: var(--muted);
  font-size: 9px;
  font-weight: 650;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.theme-option-check {
  position: relative;
  width: 19px;
  height: 19px;
  border: 1px solid rgba(var(--ink-rgb), 0.2);
  border-radius: 50%;
}

.theme-option[aria-pressed='true'] .theme-option-check {
  background: var(--lime);
  border-color: var(--lime);
}

.theme-option[aria-pressed='true'] .theme-option-check::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 6px;
  width: 5px;
  height: 8px;
  border-right: 1.7px solid var(--ink);
  border-bottom: 1.7px solid var(--ink);
  transform: rotate(45deg);
}

.theme-switcher-note {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  margin: 16px 0 0;
  padding: 12px;
  gap: 9px;
  color: var(--muted);
  background: rgba(var(--accent-rgb), 0.12);
  border: 1px solid rgba(var(--accent-rgb), 0.24);
  border-radius: 12px;
  font-size: 10px;
  line-height: 1.55;
}

.theme-switcher-note > span {
  display: grid;
  width: 22px;
  height: 22px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 850;
  place-items: center;
}

html.theme-is-changing body,
html.theme-is-changing .site-header,
html.theme-is-changing .theme-switcher-trigger,
html.theme-is-changing .theme-switcher-panel,
html.theme-is-changing .feature-card,
html.theme-is-changing .qa-section,
html.theme-is-changing .compliance-section,
html.theme-is-changing .cta-card,
html.theme-is-changing .site-footer {
  transition: color 280ms ease, background-color 280ms ease,
  border-color 280ms ease, box-shadow 280ms ease;
}

@keyframes theme-panel-in {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 700px) {
  .theme-switcher {
    top: auto;
    right: 15px;
    bottom: 15px;
    left: 15px;
    pointer-events: none;
  }

  .theme-switcher-trigger {
    grid-template-columns: 32px auto 9px;
    min-height: 48px;
    margin-left: auto;
    padding: 6px 12px 6px 8px;
    pointer-events: auto;
  }

  .theme-trigger-palette {
    width: 32px;
    height: 32px;
  }

  .theme-switcher-panel {
    top: auto;
    right: 0;
    bottom: 59px;
    width: 100%;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    padding: 19px;
    pointer-events: auto;
  }

  .theme-switcher-heading h2 {
    font-size: 21px;
  }

  .theme-option {
    min-height: 63px;
  }
}

@media (max-width: 390px) {
  .theme-option {
    grid-template-columns: 48px minmax(0, 1fr) 19px;
    gap: 9px;
  }

  .theme-option-swatches {
    width: 48px;
    height: 46px;
  }

  .theme-option-swatches i:nth-child(1) {
    right: 15px;
  }

  .theme-option-swatches i:nth-child(2),
  .theme-option-swatches i:nth-child(3) {
    width: 16px;
  }

  .theme-option-copy small {
    font-size: 8px;
  }
}