:root {
  color-scheme: light;
  --bg: #ffffff;
  --bg-soft: #fafafa;
  --surface: rgba(255, 255, 255, 0.35);
  --surface-2: rgba(255, 255, 255, 0.55);
  --line: rgba(23, 32, 51, 0.11);
  --line-strong: rgba(22, 114, 243, 0.3);
  --text: #172033;
  --muted: #697385;
  --muted-2: #8a96a8;
  --blue: #1672f3;
  --blue-2: #44b5f6;
  --green: #35a66a;
  --danger: #c64040;
  --hover-blue: rgba(22, 114, 243, 0.14);
  --hover-cyan: rgba(68, 181, 246, 0.14);
  --hover-green: rgba(53, 166, 106, 0.14);
  --shadow: 0 28px 90px rgba(0, 0, 0, .42);
  --radius-xs: 10px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  min-height: 100%;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: -10%;
  z-index: -2;
  pointer-events: none;
  background: 
    radial-gradient(circle at 10% 20%, rgba(180, 210, 255, 0.18) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(210, 190, 255, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(190, 255, 240, 0.12) 0%, transparent 50%);
  filter: blur(60px);
  transform: translate3d(var(--parallax-far-x, 0px), var(--parallax-far-y, 0px), 0);
  will-change: transform;
  animation: ambientShiftFar 30s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -1;
  pointer-events: none;
  background: 
    radial-gradient(circle at 80% 20%, rgba(190, 230, 255, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(240, 220, 255, 0.18) 0%, transparent 50%);
  filter: blur(80px);
  transform: translate3d(var(--parallax-near-x, 0px), var(--parallax-near-y, 0px), 0) scale(1.03);
  will-change: transform;
  animation: ambientShiftNear 40s ease-in-out infinite alternate;
}

body > * {
  position: relative;
  z-index: 1;
}

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

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

button,
input {
  font: inherit;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: 78px;
  line-height: .95;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: 46px;
  line-height: 1.03;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.2;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(1200px, calc(100% - 36px));
  margin: 14px auto 0;
  padding: 10px 10px 10px 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(40px) saturate(150%);
  -webkit-backdrop-filter: blur(40px) saturate(150%);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.8), inset 0 0 0 1px rgba(255, 255, 255, 0.2), var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  isolation: isolate;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border-radius: var(--radius);
  transition: color .18s ease, transform .18s ease;
}

.site-nav a::before,
.site-nav a::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  transition: opacity .22s ease, transform .22s ease;
}

.site-nav a::before {
  inset: 0;
  z-index: -1;
  background: var(--surface-2);
  transform: scaleX(.62);
}

.site-nav a::after {
  display: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  transform: translateY(-1px);
  color: var(--blue);
}

.site-nav a:hover::before,
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::before {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav a:hover::after {
  transform: scale(1);
}

.site-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.site-actions .btn[aria-current="page"] {
  border-color: var(--line-strong);
  background: var(--surface-2);
}

.site-footer a:hover {
  color: white;
}

.btn {
  position: relative;
  isolation: isolate;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  font-weight: 850;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  background: var(--surface-2);
  box-shadow: 0 18px 42px rgba(22, 114, 243, .16);
}

.btn.primary {
  border-color: rgba(35, 136, 255, .9);
  background: linear-gradient(180deg, #38a0ff, #1672ec);
  box-shadow: 0 18px 45px rgba(35, 136, 255, .28);
  color: white;
}

.btn.primary:hover {
  background: linear-gradient(180deg, #4dafff, #1b7ef8);
  color: white;
}

.btn.ghost {
  background: transparent;
}

.btn.small {
  min-height: 38px;
  padding: 0 14px;
  font-size: 14px;
}

.download-meta,
.download-note {
  margin: 14px 0 0;
  color: var(--muted-2);
  font-size: 14px;
  line-height: 1.55;
}

.download-note {
  max-width: 560px;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px 0 70px;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: transparent;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-glass {
  max-width: 920px;
  padding: 46px 52px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.45) !important;
  backdrop-filter: blur(24px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.9), 
    inset 0 0 0 1px rgba(255, 255, 255, 0.4), 
    0 24px 64px rgba(0, 0, 0, 0.08);
}

@media (max-width: 900px) {
  .hero-glass {
    padding: 32px 24px;
  }
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 690px;
  color: var(--muted);
  font-size: 21px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin: 46px 0 0;
  padding: 0;
}

.hero-facts div {
  min-width: 120px;
}

.hero-facts dt {
  font-size: 26px;
  font-weight: 950;
}

.hero-facts dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.intro-strip {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.intro-strip p {
  max-width: 1040px;
  margin: 0;
  color: var(--muted);
  font-size: 29px;
  line-height: 1.25;
}

.section {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.compact-section {
  padding: 62px 0;
}

.home-proof {
  width: min(1200px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: -30px auto 0;
  position: relative;
  z-index: 2;
}

.home-proof a {
  min-height: 132px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
  border-radius: var(--radius-lg);
}

.home-proof span,
.sales-lines strong,
.module-copy strong {
  color: var(--text);
}

.home-proof span {
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.home-proof strong {
  font-size: 17px;
  line-height: 1.35;
}

.mascot-narrator {
  max-width: 560px;
  display: grid;
  grid-template-columns: 98px minmax(0, 1fr);
  gap: 12px;
  align-items: end;
  margin: 24px 0 0;
}

.mascot-narrator.compact {
  max-width: 520px;
  grid-template-columns: 86px minmax(0, 1fr);
  margin-top: 22px;
}

.mascot-narrator img {
  width: 98px;
  height: 98px;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(23, 32, 51, 0.14));
}

.mascot-narrator.compact img {
  width: 86px;
  height: 86px;
}

.mascot-narrator p {
  position: relative;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(23, 32, 51, .12);
  border-radius: 18px 18px 18px 6px;
  background: rgba(255, 255, 255, .86);
  color: var(--text);
  font-size: 15px;
  line-height: 1.45;
  box-shadow: 0 18px 42px rgba(23, 32, 51, .12);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.mascot-narrator p::before {
  content: "";
  position: absolute;
  left: -7px;
  bottom: 13px;
  width: 14px;
  height: 14px;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .86);
  transform: rotate(45deg);
}

.mascot-narrator strong {
  display: block;
  margin-bottom: 4px;
  color: var(--blue-2);
  font-size: 15px;
  font-weight: 950;
}

.release-spotlight {
  position: relative;
  isolation: isolate;
  width: min(1200px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(520px, 1.1fr);
  gap: 34px;
  align-items: stretch;
  margin: 42px auto 0;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(35, 136, 255, .2);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 12% 12%, rgba(35, 136, 255, .2), transparent 34%),
    radial-gradient(circle at 84% 0%, rgba(68, 181, 246, .2), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, .76), rgba(245, 250, 255, .58));
  box-shadow: 0 32px 100px rgba(23, 32, 51, .14);
}

.release-spotlight::before {
  content: "";
  position: absolute;
  inset: auto -12% -46% 22%;
  z-index: -1;
  height: 68%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(22, 114, 243, .2), rgba(68, 181, 246, .22), rgba(53, 166, 106, .12));
  filter: blur(44px);
  transform: rotate(-6deg);
}

.release-copy {
  display: grid;
  align-content: center;
  min-height: 520px;
  padding: 16px 8px 16px 12px;
}

.release-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(38px, 5vw, 66px);
  line-height: .95;
}

.release-copy p:not(.eyebrow) {
  max-width: 560px;
  font-size: 18px;
}

.release-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.release-board {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: calc(var(--radius-xl) - 8px);
  background:
    linear-gradient(180deg, rgba(11, 23, 44, .94), rgba(16, 34, 66, .9)),
    radial-gradient(circle at 70% 18%, rgba(68, 181, 246, .35), transparent 38%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), 0 30px 90px rgba(10, 24, 48, .28);
}

.release-board-top {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .72);
}

.release-board-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .28);
}

.release-board-top span:first-child {
  background: #ff6a6a;
}

.release-board-top span:nth-child(2) {
  background: #ffc247;
}

.release-board-top span:nth-child(3) {
  background: #34d075;
}

.release-board-top strong {
  margin-left: auto;
  font-size: 13px;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.release-screenshot {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .24);
}

.release-screenshot img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: top left;
}

.release-feature-list {
  display: grid;
  gap: 10px;
}

.release-feature-list article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
}

.release-feature-list article > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(180deg, #42a8ff, #1672f3);
  color: white;
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 14px 34px rgba(35, 136, 255, .32);
}

.release-feature-list h3 {
  margin-bottom: 4px;
  color: white;
  font-size: 19px;
}

.release-feature-list p {
  margin: 0;
  color: rgba(255, 255, 255, .66);
  font-size: 14px;
  line-height: 1.45;
}

.news-latest {
  grid-template-columns: minmax(320px, .76fr) minmax(520px, 1.24fr);
  align-items: center;
}

.news-copy {
  min-height: 480px;
}

.news-points {
  display: grid;
  gap: 9px;
  margin-top: 22px;
}

.news-points span {
  position: relative;
  padding: 11px 14px 11px 38px;
  border: 1px solid rgba(35, 136, 255, .12);
  border-radius: 16px;
  background: rgba(255, 255, 255, .56);
  color: var(--text);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.35;
}

.news-points span::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--blue-2), var(--blue));
  box-shadow: 0 0 0 5px rgba(35, 136, 255, .10);
  transform: translateY(-50%);
}

.news-hero-visual {
  margin: 0;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .76);
  border-radius: calc(var(--radius-xl) - 6px);
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 28px 86px rgba(23, 32, 51, .14);
}

.news-hero-visual img {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
}

.news-hero-visual.blop-peek-visual,
.news-card figure.blop-peek-visual {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .96), rgba(245, 249, 255, .82)),
    radial-gradient(circle at 10% 42%, rgba(35, 136, 255, .10), transparent 32%);
}

.news-hero-visual.blop-peek-visual img,
.news-card figure.blop-peek-visual img {
  object-fit: contain;
  object-position: left center;
  background: transparent;
}

.news-card figure.blop-peek-visual img {
  padding: 0;
}

.blop-peek-title-image {
  object-fit: contain !important;
  object-position: left center !important;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .96), rgba(245, 249, 255, .82)),
    radial-gradient(circle at 10% 42%, rgba(35, 136, 255, .10), transparent 32%);
}

.news-title .title-product-shot img {
  object-position: center;
}

.news-list {
  width: min(1200px, calc(100% - 40px));
  display: grid;
  gap: 22px;
  margin: 0 auto 78px;
}

.news-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(420px, 1.22fr);
  gap: 24px;
  align-items: stretch;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 100% 0%, rgba(35, 136, 255, .13), transparent 34%),
    rgba(255, 255, 255, .68);
  box-shadow: 0 24px 80px rgba(23, 32, 51, .10);
}

.news-card figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .64);
}

.news-card figure img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
}

.news-card-copy {
  display: grid;
  align-content: center;
  padding: 10px 46px 10px 0;
}

.news-card-copy h2 {
  max-width: 720px;
  margin-bottom: 14px;
  font-size: clamp(32px, 4vw, 52px);
}

.news-card-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.news-card .release-actions {
  margin-top: 20px;
}

.news-card-number {
  position: absolute;
  right: 24px;
  top: 20px;
  color: rgba(23, 32, 51, .10);
  font-size: 54px;
  font-weight: 950;
  line-height: 1;
}

.workflow-compact {
  width: min(1200px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(260px, .62fr) minmax(520px, 1.38fr);
  gap: 26px;
  align-items: stretch;
  margin: 54px auto 0;
  padding: 0;
}

.workflow-compact > div:first-child {
  display: grid;
  align-content: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 22px 70px rgba(23, 32, 51, .08);
}

.workflow-compact h2 {
  margin: 0;
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1.02;
}

.workflow-compact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.workflow-compact article {
  min-height: 218px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 24px 80px rgba(23, 32, 51, .09);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.workflow-compact article:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, .76);
}

.workflow-compact span {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(22, 114, 243, .18);
  border-radius: var(--radius-xs);
  background: rgba(22, 114, 243, .1);
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
}

.workflow-compact h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.08;
}

.workflow-compact p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.product-preview-section {
  width: min(1200px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(480px, 1.28fr);
  gap: 42px;
  align-items: center;
  margin: 0 auto;
  padding: 74px 0 44px;
}

.preview-copy p {
  max-width: 560px;
}

.product-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.premium-shot,
.premium-modules .product-shot {
  position: relative;
  border-color: rgba(110, 198, 255, 0.15);
  box-shadow: 0 24px 64px rgba(0, 10, 30, 0.08), 0 8px 24px rgba(0, 10, 30, 0.04);
}

.premium-shot::after,
.premium-modules .product-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, .12) 46%, transparent 68%);
  transform: translateX(-120%);
}

.premium-shot:hover::after,
.premium-modules .product-shot:hover::after {
  opacity: 1;
  animation: shineSweep 1.1s ease-out both;
}

.product-shot img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
}

.main-product-shot img,
.title-product-shot img {
  object-position: top center;
}

.sales-lines {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.sales-lines p {
  min-height: 150px;
  margin: 0;
  padding: 24px;
  border-radius: var(--radius-lg);
  font-size: 16px;
}

.light-band {
  margin: 42px 0;
  padding: 72px 0;
  color: var(--text);
}

.light-inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.light-heading {
  max-width: 920px;
  margin-bottom: 38px;
}

.light-heading h2 {
  color: var(--text);
  font-size: 58px;
}

.muted-title {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 900;
}

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

.benefit-cards article {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.home-proof a,
.benefit-cards article,
.access-card,
.access-flow article,
.plans article,
.payment-note article,
.account-glass,
.system-metrics article {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.home-proof a > *,
.benefit-cards article > *,
.access-card > *,
.access-flow article > *,
.plans article > *,
.payment-note article > *,
.account-glass > *,
.system-metrics article > * {
  position: relative;
  z-index: 1;
}

.home-proof a::before,
.benefit-cards article::before,
.access-card::before,
.access-flow article::before,
.plans article::before,
.payment-note article::before,
.account-glass::before,
.system-metrics article::before,
.home-proof a::after,
.benefit-cards article::after,
.access-card::after,
.access-flow article::after,
.plans article::after,
.payment-note article::after,
.account-glass::after,
.system-metrics article::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity .24s ease, transform .34s ease;
}

.home-proof a::before,
.benefit-cards article::before,
.access-card::before,
.access-flow article::before,
.plans article::before,
.payment-note article::before,
.account-glass::before,
.system-metrics article::before {
  inset: -1px;
  border-radius: inherit;
  background:
    linear-gradient(128deg, var(--hover-blue), transparent 34%, var(--hover-cyan) 68%, transparent),
    linear-gradient(320deg, var(--surface), transparent 44%);
  transform: translate3d(-18%, -8%, 0) skewX(-10deg) scaleX(.9);
}

.home-proof a::after,
.benefit-cards article::after,
.access-card::after,
.access-flow article::after,
.plans article::after,
.payment-note article::after,
.account-glass::after,
.system-metrics article::after {
  width: 46%;
  height: 58%;
  top: -24%;
  right: -18%;
  border-radius: 999px;
  background: radial-gradient(circle, var(--hover-cyan), transparent 68%);
  filter: blur(18px);
  transform: translate3d(12px, 18px, 0) scale(.82);
}

.benefit-cards article:hover {
  transform: translateY(-3px);
  border-color: rgba(110, 198, 255, .24);
  background: rgba(255, 255, 255, .06);
}

.home-proof a:hover::before,
.benefit-cards article:hover::before,
.access-card:hover::before,
.access-flow article:hover::before,
.plans article:hover::before,
.payment-note article:hover::before,
.account-glass:hover::before,
.system-metrics article:hover::before {
  opacity: .52;
  transform: translate3d(0, 0, 0) skewX(0) scaleX(1);
}

.home-proof a:hover::after,
.benefit-cards article:hover::after,
.access-card:hover::after,
.access-flow article:hover::after,
.plans article:hover::after,
.payment-note article:hover::after,
.account-glass:hover::after,
.system-metrics article:hover::after {
  opacity: .75;
  transform: translate3d(0, 0, 0) scale(1);
}

.benefit-cards span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(22, 114, 243, .1);
  border: 1px solid var(--line-strong);
  color: var(--blue);
  font-weight: 950;
}

.benefit-cards h3 {
  color: var(--text);
  font-size: 30px;
}

.benefit-cards p {
  margin-bottom: 0;
  color: var(--muted);
}

.calculator-section {
  width: min(1200px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(320px, .8fr) minmax(420px, 1.2fr);
  gap: 48px;
  align-items: start;
  margin: 0 auto;
  padding: 88px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.calculator-copy {
  position: sticky;
  top: 112px;
}

.calculator-copy p {
  max-width: 560px;
}

.calculator-card {
  display: grid;
  gap: 28px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.calculator-card label {
  display: grid;
  gap: 14px;
  color: var(--muted);
  font-weight: 850;
}

.calculator-card label span {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.calculator-card label strong {
  color: var(--text);
}

.calculator-card input[type="range"] {
  width: 100%;
  height: 4px;
  appearance: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  cursor: pointer;
}

.calculator-card input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 32px;
  height: 20px;
  border-radius: 10px;
  background: white;
  border: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.8), inset 0 0 0 1px rgba(255, 255, 255, 0.4), 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.calculator-card input[type="range"]:active::-webkit-slider-thumb {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.9), inset 0 0 0 1px rgba(255, 255, 255, 0.8), 0 8px 16px rgba(0, 0, 0, 0.2);
}

.calculator-card input[type="range"]::-moz-range-thumb {
  width: 32px;
  height: 20px;
  border-radius: 10px;
  background: white;
  border: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.8), inset 0 0 0 1px rgba(255, 255, 255, 0.4), 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.calculator-card input[type="range"]:active::-moz-range-thumb {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.9), inset 0 0 0 1px rgba(255, 255, 255, 0.8), 0 8px 16px rgba(0, 0, 0, 0.2);
}

.calculator-result {
  display: grid;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.calculator-result strong {
  color: var(--text);
  font-size: 78px;
  line-height: .92;
  letter-spacing: 0;
}

.calculator-result p {
  margin-bottom: 0;
  color: var(--muted);
}

.calculator-result > span {
  color: var(--blue);
  font-weight: 900;
}

.dark-solution {
  width: min(1200px, calc(100% - 40px));
  display: grid;
  justify-items: center;
  gap: 22px;
  margin: 0 auto 96px;
  padding: 72px 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  text-align: center;
  box-shadow: var(--shadow);
}

.dark-solution h2 {
  max-width: 980px;
  margin-bottom: 0;
  font-size: 54px;
}

.dark-solution p {
  max-width: 760px;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 20px;
}

.solution-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.solution-icons img {
  width: 58px;
  height: 58px;
  border-radius: var(--radius);
  transition: transform .22s ease;
}

.solution-icons img:hover {
  transform: translateY(-4px);
}

.solution-icons span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--text);
  font-weight: 850;
}

.visual-cta {
  width: min(1200px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(300px, .95fr);
  gap: 44px;
  align-items: center;
  margin: 0 auto 92px;
  padding: 32px 0 0;
  border-top: 1px solid var(--line);
}

.visual-cta > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.page-title {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 156px 0 46px;
  border-bottom: 1px solid var(--line);
}

.page-title h1 {
  max-width: 980px;
  margin-bottom: 18px;
  font-size: 64px;
  line-height: 1;
}

.page-title p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 20px;
}

.page-title-grid {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(460px, 1.1fr);
  gap: 42px;
  align-items: center;
}

.pricing-hero {
  gap: 32px;
  padding-top: 112px;
  padding-bottom: 18px;
}

.pricing-hero h1 {
  margin-bottom: 12px;
  font-size: clamp(42px, 4.6vw, 56px);
  line-height: .98;
}

.pricing-hero p:not(.eyebrow) {
  font-size: 18px;
}

.pricing-hero .access-card {
  gap: 12px;
  padding: 24px 28px;
}

.pricing-hero .access-card strong {
  font-size: 58px;
}

.title-product-shot {
  align-self: stretch;
}

.process-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
}

.process-board span {
  min-height: 58px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
  color: var(--text);
  font-weight: 900;
}

.process-board span:nth-child(2n) {
  color: var(--blue);
}

.module-system {
  width: min(1200px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(360px, .82fr);
  gap: 34px;
  align-items: stretch;
  margin: 42px auto 28px;
}

.system-copy {
  min-height: 320px;
  display: grid;
  align-content: end;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.system-copy h2 {
  max-width: 760px;
  font-size: 44px;
}

.system-copy p:not(.eyebrow) {
  margin-bottom: 0;
}

.system-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0;
  padding: 2px;
  border-radius: var(--radius);
}

.system-illustration img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
}

.system-metrics {
  display: grid;
  gap: 16px;
}

.system-metrics article {
  min-height: 96px;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: var(--radius-lg);
}

.system-metrics span {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #38a0ff, #1672ec);
  color: white;
  font-size: 34px;
  font-weight: 950;
  box-shadow: 0 18px 40px rgba(35, 136, 255, .28);
}

.system-metrics strong {
  color: var(--text);
  font-size: 21px;
}

.module-nav-grid {
  width: min(1200px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0 auto 28px;
}

.module-nav-grid a {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  font-weight: 850;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.module-nav-grid a::before,
.module-nav-grid a::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease, transform .26s ease;
}

.module-nav-grid a::before {
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(110deg, rgba(22, 114, 243, .1), rgba(68, 181, 246, .05), rgba(22, 114, 243, .05));
  transform: translateX(-28%) scaleX(.7);
}

.module-nav-grid a::after {
  inset: -18px;
  z-index: 0;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 50% 50%, rgba(35, 136, 255, .32), transparent 64%);
  filter: blur(12px);
  transform: scale(.78);
}

.module-nav-grid a {
  text-shadow: none;
}

.module-nav-grid a:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: var(--surface-2);
  color: var(--blue);
}

.module-nav-grid a:hover::before,
.module-nav-grid a:hover::after {
  opacity: 1;
  transform: translateX(0) scaleX(1);
}

.module-showcase {
  width: min(1200px, calc(100% - 40px));
  display: grid;
  gap: 0;
  margin: 0 auto;
}

.module-feature {
  display: grid;
  grid-template-columns: minmax(460px, 1.15fr) minmax(280px, .85fr);
  gap: 42px;
  align-items: center;
  padding: 54px 0;
  border-bottom: 1px solid var(--line);
}

.premium-modules {
  gap: 22px;
  margin-bottom: 96px;
}

.premium-modules .module-feature {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.premium-modules .module-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(110, 198, 255, .34);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .38);
}

.premium-modules .module-feature::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius);
}

.premium-modules .module-feature::after {
  content: "";
  position: absolute;
  width: 42%;
  height: 64%;
  top: -22%;
  right: -16%;
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
  opacity: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(110, 198, 255, .24), transparent 70%);
  filter: blur(22px);
  transform: translate3d(18px, 18px, 0) scale(.82);
  transition: opacity .26s ease, transform .38s ease;
}

.premium-modules .module-feature > * {
  position: relative;
  z-index: 2;
}

.premium-modules .module-feature:hover::after {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.module-feature:nth-child(even) {
  grid-template-columns: minmax(280px, .85fr) minmax(460px, 1.15fr);
}

.module-feature:nth-child(even) .product-shot {
  order: 2;
}

.module-copy h2 {
  margin-bottom: 14px;
  font-size: 38px;
}

.module-copy p:not(.eyebrow) {
  margin-bottom: 0;
}

.workflow-visual {
  width: min(1200px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(460px, 1.1fr) minmax(300px, .9fr);
  gap: 42px;
  align-items: center;
  margin: 0 auto;
  padding: 52px 0;
  border-bottom: 1px solid var(--line);
}

.workflow-visual h2 {
  font-size: 38px;
}

.rich-visual {
  align-items: center;
}

.shot-stack {
  position: relative;
  min-height: 420px;
}

.shot-stack .product-shot {
  position: absolute;
  width: 82%;
  transition: transform .28s ease;
}

.shot-stack .product-shot:first-child {
  top: 0;
  left: 0;
}

.shot-stack .product-shot:last-child {
  right: 0;
  bottom: 0;
  transform: translateY(12px);
}

.shot-stack:hover .product-shot:first-child {
  transform: translateY(-8px);
}

.shot-stack:hover .product-shot:last-child {
  transform: translateY(4px);
}

.process-lane {
  width: min(1200px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto 52px;
}

.process-lane article {
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 26px;
  border-radius: var(--radius-lg);
}

.process-lane span {
  color: var(--blue);
  font-weight: 950;
}

.process-lane strong {
  color: var(--text);
  font-size: 24px;
}

.process-lane p {
  margin-bottom: 0;
  font-size: 16px;
}

.workflow-gallery {
  width: min(1200px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: -42px auto 96px;
}

.workflow-gallery .product-shot {
  box-shadow: 0 22px 50px rgba(0, 0, 0, .28);
}

.workflow-gallery .product-shot:nth-child(2) {
  transform: translateY(24px);
}

.compare-visual {
  width: min(1200px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(460px, 1.22fr);
  gap: 44px;
  align-items: center;
  margin: 0 auto;
  padding: 52px 0;
  border-bottom: 1px solid var(--line);
}

.compare-visual h2 {
  font-size: 38px;
}

.matrix-section {
  width: min(1200px, calc(100% - 40px));
  margin: -42px auto 96px;
}

.compare-matrix {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.matrix-row {
  display: grid;
  grid-template-columns: minmax(160px, .55fr) minmax(240px, .9fr) minmax(260px, 1fr);
  gap: 1px;
  background: var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.matrix-row:last-child {
}

.matrix-row > * {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  background: transparent;
}

.matrix-row span:first-child {
  color: var(--text);
  font-weight: 900;
}

.matrix-row strong {
  color: var(--blue);
}

.matrix-head > * {
  min-height: 56px;
  color: var(--blue-2) !important;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.compare-cta {
  margin-top: -40px;
}

.access-card {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.access-card span,
.plan-badge {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(53, 166, 106, 0.15);
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.access-card strong {
  color: var(--text);
  font-size: 72px;
  line-height: .9;
}

.access-card p {
  margin-bottom: 6px;
}

.access-flow {
  width: min(1200px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 0 auto 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.access-flow article {
  min-height: 190px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  background: var(--surface);
}

.access-flow span {
  color: var(--blue);
  font-weight: 950;
}

.access-flow strong {
  color: var(--text);
  font-size: 22px;
}

.access-flow p {
  margin-bottom: 0;
  font-size: 15px;
}

.price-intro,
.payment-note,
.account-hero-panel,
.account-support,
.legal-summary,
.policy-layout {
  width: min(1200px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.price-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0 16px;
}

.price-intro h2 {
  max-width: 760px;
  font-size: 34px;
  line-height: 1.04;
}

.price-intro p:not(.eyebrow) {
  margin-bottom: 0;
}

.pricing-referral-note {
  max-width: 720px;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 850;
}

.referral-banner {
  display: inline-flex;
  width: fit-content;
  margin-top: 14px;
  padding: 10px 14px;
  border: 1px solid rgba(53, 166, 106, .25);
  border-radius: var(--radius);
  background: rgba(53, 166, 106, .08);
  color: var(--green);
  font-weight: 850;
}

.referral-public {
  width: min(1200px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr);
  gap: clamp(24px, 3.4vw, 48px);
  align-items: center;
  margin: 28px auto 76px;
  padding: clamp(26px, 3.2vw, 46px);
  border: 1px solid rgba(23, 32, 51, .08);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(224, 237, 255, .92), rgba(240, 252, 248, .9)),
    rgba(255, 255, 255, .78);
  box-shadow: 0 24px 80px rgba(31, 58, 96, .16);
}

.referral-public-home {
  margin-top: 28px;
}

.pricing-referral {
  grid-template-columns: minmax(0, 1fr) minmax(320px, .58fr);
  margin-top: 14px;
}

.referral-public > div:first-child {
  padding: 0;
}

.referral-public h2 {
  max-width: 720px;
  font-size: clamp(34px, 3.4vw, 56px);
  line-height: 1;
}

.referral-public p {
  margin-bottom: 0;
}

.referral-public-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.pricing-referral .referral-public-metrics {
  grid-template-columns: 1fr;
}

.referral-public-card {
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 148px;
  padding: 24px;
  border: 1px solid rgba(23, 32, 51, .1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .68);
  box-shadow: 0 18px 50px rgba(31, 58, 96, .1);
}

.referral-public-card span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.referral-public-card strong {
  color: var(--text);
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: .95;
}

.referral-public-card p {
  color: var(--muted);
}

.referral-public .btn {
  align-self: stretch;
  justify-self: stretch;
  width: 100%;
  white-space: nowrap;
}

.referral-public-metrics > .btn {
  grid-column: 1 / -1;
}

.plans.price-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.plans.price-grid article {
  min-height: 368px;
  gap: 12px;
  padding: 28px;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.plans.price-grid h2 {
  margin-bottom: 0;
  font-size: 32px;
  line-height: 1.04;
}

.plans.price-grid strong {
  font-size: 42px;
}

.plans.price-grid article:hover {
  transform: translateY(-4px);
  background: var(--surface-2);
}

.plans.price-grid .annual-plan {
  grid-column: span 2;
  background: var(--surface);
}

.payment-note {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-bottom: 96px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.payment-note article {
  min-height: 260px;
  padding: 30px;
  background: var(--surface);
}

.payment-note span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.payment-note h2 {
  font-size: 34px;
}

.payment-note a,
.policy-card a,
.account-legal-note a,
.auth-consent a {
  color: #89bfff;
}

.account-title {
  padding-bottom: 34px;
}

.account-hero-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 32px 0 42px;
}

.account-glass {
  min-height: 250px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.account-glass span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(22, 114, 243, .1);
  color: var(--blue);
  font-weight: 950;
}

.account-glass h2 {
  font-size: 30px;
}

.standalone-account {
  padding-bottom: 44px;
}

.account-legal-note,
.auth-consent {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.account-support {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 96px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.account-support h2 {
  font-size: 38px;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.referral-section {
  width: min(1200px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(360px, 1.1fr);
  gap: 24px;
  align-items: stretch;
  margin: 0 auto 82px;
}

.referral-copy,
.referral-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .74), rgba(238, 246, 255, .58)),
    var(--surface);
  box-shadow: 0 24px 70px rgba(31, 58, 96, .14);
}

.referral-copy h2 {
  max-width: 620px;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: .98;
}

.referral-copy p:last-child {
  margin-bottom: 0;
}

.referral-card {
  display: grid;
  align-content: start;
  gap: 16px;
}

.referral-line {
  display: grid;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.referral-line span,
.referral-edit label {
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 850;
}

.referral-line strong {
  color: var(--text);
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0;
}

.referral-line code {
  overflow-wrap: anywhere;
  color: var(--text);
  font-family: inherit;
  font-size: 16px;
  font-weight: 850;
}

.referral-edit {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto auto;
  gap: 10px;
  align-items: end;
}

.referral-edit label {
  display: grid;
  gap: 8px;
}

.referral-edit input {
  height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .72);
  color: var(--text);
  font-weight: 850;
  outline: none;
  text-transform: uppercase;
}

.referral-edit input:focus {
  border-color: var(--line-strong);
  box-shadow: 0 0 0 3px rgba(24, 136, 255, .2);
}

.referral-stats {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.legal-title {
  border-bottom: 0;
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.policy-meta span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  color: #dbe8f5;
  font-size: 13px;
  font-weight: 850;
}

.legal-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 42px;
}

.legal-summary article {
  min-height: 270px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .035)),
    rgba(19, 27, 37, .78);
}

.legal-summary span {
  color: var(--green);
  font-weight: 950;
  text-transform: uppercase;
}

.legal-summary h2 {
  font-size: 32px;
}

.policy-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  padding-bottom: 96px;
}

.policy-sidebar {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.policy-sidebar a {
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: var(--radius);
  color: var(--text);
  font-weight: 850;
}

.policy-sidebar a:hover {
  background: var(--surface-2);
  color: var(--blue);
}

.policy-content {
  display: grid;
  gap: 18px;
}

.policy-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.policy-card h2 {
  max-width: 850px;
  font-size: 40px;
}

.policy-card h3 {
  margin-top: 28px;
  color: var(--text);
}

.policy-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.policy-card p:last-child,
.policy-card ul:last-child {
  margin-bottom: 0;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 24px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.legal-grid div {
  display: grid;
  gap: 8px;
  min-height: 104px;
  padding: 18px;
  background: var(--surface);
}

.legal-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.legal-grid strong {
  color: var(--text);
}

.support-card {
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.8), inset 0 0 0 1px rgba(24, 136, 255, 0.4), 0 8px 24px rgba(24, 136, 255, 0.15) !important;
}

.workflow-steps,
.compare-list {
  width: min(1200px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 52px auto 96px;
}

.workflow-steps article,
.compare-list article {
  min-height: 260px;
  display: grid;
  align-content: start;
  padding: 30px;
  border-radius: var(--radius-lg);
}

.workflow-steps span {
  margin-bottom: 26px;
  color: var(--blue);
  font-weight: 950;
}

.workflow-steps h2,
.compare-list h2 {
  font-size: 32px;
}

.workflow-steps p,
.compare-list p {
  margin-bottom: 0;
}

.compact-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  padding: 34px 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(360px, 1.18fr);
  gap: 72px;
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 112px;
}

.section-copy p,
.section-heading > p {
  max-width: 720px;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 42px;
}

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

.process-list li {
  display: grid;
  grid-template-columns: 58px minmax(130px, 190px) 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.process-list span {
  color: var(--blue-2);
  font-weight: 950;
}

.process-list strong {
  font-size: 20px;
}

.process-list p {
  margin: 0;
  font-size: 16px;
}

.image-band {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.image-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(243, 246, 251, .1), rgba(243, 246, 251, .5)),
    linear-gradient(180deg, transparent, rgba(243, 246, 251, .92));
}

.image-band-copy {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 76px;
}

.image-band-copy h2,
.image-band-copy p {
  max-width: 640px;
  margin-left: auto;
}

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

.module-table article {
  min-height: 142px;
  padding: 24px 28px 24px 0;
  border-bottom: 1px solid var(--line);
}

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

.module-table article:nth-child(even) {
  padding-left: 28px;
}

.module-table h3 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.module-table h3 span {
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(57, 217, 138, .14);
  color: #8cf0bd;
  font-size: 11px;
  text-transform: uppercase;
}

.module-table p {
  margin-bottom: 0;
  font-size: 16px;
}

.audience-section {
  padding-top: 40px;
}

.audience-lines {
  border-top: 1px solid var(--line);
}

.audience-lines p {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  margin: 0;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.audience-lines strong {
  color: var(--text);
}

.compare-section {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(360px, 1.18fr);
  gap: 72px;
}

.compare-table {
  border-top: 1px solid var(--line);
}

.compare-table div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.compare-table span {
  color: #e8f1fb;
  font-weight: 900;
}

.compare-table p {
  margin: 0;
  font-size: 16px;
}

.pricing-section {
  padding-top: 44px;
}

.plans {
  width: min(1200px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto 52px;
}

.plans article {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 430px;
  padding: 38px;
  border-radius: var(--radius-lg);
}

.plans article.featured-plan {
  background: var(--surface-2);
}

.plans strong {
  color: var(--text);
  font-size: 48px;
  line-height: 1;
}

.plans .btn {
  width: fit-content;
  margin-top: 6px;
}

.plans ul {
  display: grid;
  gap: 10px;
  margin: 8px 0 4px;
  padding: 0;
  list-style: none;
  color: var(--text);
}

.plans li {
  position: relative;
  padding-left: 22px;
}

.plans li::before {
  content: "";
  position: absolute;
  top: .65em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.pricing-calculator {
  margin-bottom: 52px;
}

.account-section {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 110px;
}

.account-panel {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(360px, 1.1fr);
  gap: 54px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.account-state {
  border-top: 1px solid var(--line);
}

.account-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.account-row span {
  color: var(--muted-2);
}

.account-row strong {
  color: var(--text);
}

.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.download-panel {
  width: min(1200px, calc(100% - 40px));
  margin: -62px auto 70px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.download-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: .98;
}

.download-panel p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
}

.download-panel-actions {
  display: grid;
  justify-items: end;
  gap: 12px;
  color: var(--muted-2);
  font-size: 14px;
}

.status-message {
  min-height: 24px;
  margin: 14px 0 0;
  color: #c9d8e8;
  font-size: 14px;
}

.status-message.error {
  color: var(--danger);
}

.status-message.success {
  color: #8ce8b4;
}

.site-footer {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 52px 0 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) repeat(2, minmax(160px, .6fr));
  gap: 54px;
}

.footer-brand {
  margin-bottom: 18px;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 12px;
}

.site-footer h3 {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 15px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 20px;
  overflow-y: auto;
}

.modal.open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .6);
  backdrop-filter: blur(14px);
}

.modal-card {
  position: relative;
  width: min(460px, 100%);
  padding: 30px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.modal-card img {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: var(--radius);
}

.modal-card h2 {
  margin-bottom: 10px;
  text-align: left;
  font-size: 32px;
}

.modal-card label {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.modal-card input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
  color: white;
  outline: none;
}

.modal-card input:focus {
  border-color: var(--line-strong);
  box-shadow: 0 0 0 3px rgba(24, 136, 255, .2);
}

.auth-social {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.vkid-auth-block,
.yandex-auth-block {
  display: grid;
  min-height: 44px;
}

.vkid-auth-block {
  overflow: hidden;
  border-radius: var(--radius);
}

.yandex-auth-block {
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
}

.vkid-auth-block:empty,
.yandex-auth-block:empty {
  display: none;
}

.yandex-auth-block > * {
  width: 100%;
}

.vkid-auth-block iframe,
.vkid-auth-block button,
.yandex-auth-block iframe,
.yandex-auth-block button {
  width: 100% !important;
  max-width: 100%;
  border-radius: var(--radius) !important;
}

.social-auth {
  display: grid;
  grid-template-columns: 30px 1fr 30px;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.social-auth::after {
  content: "";
  width: 30px;
  height: 1px;
}

.social-auth:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  background: var(--bg);
}

.social-auth span {
  display: grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, .05);
  color: var(--text);
  font-size: 15px;
  line-height: 1;
}

.social-auth-vk span {
  background: #2787f5;
  color: white;
}

.social-auth-yandex span {
  background: #fc3f1d;
  color: white;
}

.social-auth-yandex span {
  background: #fc3f1d;
  color: white;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}

.auth-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.auth-actions .btn {
  width: 100%;
}

.auth-text-button {
  display: inline-flex;
  margin-top: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue);
  font-weight: 850;
  cursor: pointer;
}

.auth-text-button:hover {
  color: var(--blue-2);
}

.page-title .mascot-narrator p,
.module-system .mascot-narrator p,
.workflow-visual .mascot-narrator p,
.compare-visual .mascot-narrator p,
.price-intro .mascot-narrator p,
.calculator-copy .mascot-narrator p,
.account-panel .mascot-narrator p,
.download-panel .mascot-narrator p,
.account-support .mascot-narrator p {
  max-width: none;
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.45;
}

.page-title .mascot-narrator strong,
.module-system .mascot-narrator strong,
.workflow-visual .mascot-narrator strong,
.compare-visual .mascot-narrator strong,
.price-intro .mascot-narrator strong,
.calculator-copy .mascot-narrator strong,
.account-panel .mascot-narrator strong,
.download-panel .mascot-narrator strong,
.account-support .mascot-narrator strong {
  color: var(--blue-2);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}

.modal-close:hover {
  background: var(--bg);
}

.kinetic-title {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity .48s ease, transform .48s cubic-bezier(.16, 1, .3, 1);
  will-change: opacity, transform;
}

.kinetic-title.is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition: opacity .42s ease, transform .42s ease;
}

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

.benefit-cards article:nth-child(2),
.workflow-gallery .product-shot:nth-child(2),
.sales-lines p:nth-child(2) {
  animation-delay: .08s;
}

.benefit-cards article:nth-child(3),
.workflow-gallery .product-shot:nth-child(3),
.sales-lines p:nth-child(3) {
  animation-delay: .16s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softUp {
  from {
    opacity: .96;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatPanel {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes titleWordRise {
  0% {
    transform: translate3d(0, 112%, 0) rotate(1.2deg);
    opacity: 0;
  }
  58% {
    opacity: 1;
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0);
    opacity: 1;
  }
}

@keyframes ambientShiftFar {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.7; }
}

@keyframes ambientShiftNear {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 0.9; }
}

@keyframes shineSweep {
  0%,
  72% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

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

  body::before,
  body::after {
    animation: none !important;
    transform: none !important;
  }

  .kinetic-title {
    transform: none;
    opacity: 1;
  }
}

@media (max-width: 920px) {
  body::after {
    animation: none;
    opacity: .3;
    transform: none;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 38px;
  }

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

  .intro-strip p {
    font-size: 24px;
  }

  .site-nav {
    display: none;
  }

  .site-header {
    gap: 12px;
  }

  .hero {
    min-height: 860px;
  }

  .hero-shade {
    background: transparent;
  }

  .split-section,
  .compare-section,
  .account-panel,
  .home-proof,
  .release-spotlight,
  .news-card,
  .workflow-compact,
  .workflow-compact-grid,
  .product-preview-section,
  .benefit-cards,
  .calculator-section,
  .sales-lines,
  .visual-cta,
  .page-title-grid,
  .module-system,
  .module-nav-grid,
  .module-feature,
  .module-feature:nth-child(even),
  .workflow-visual,
  .process-lane,
  .workflow-gallery,
  .workflow-steps,
  .compare-visual,
  .compare-list,
  .access-flow,
  .plans.price-grid,
  .payment-note,
  .account-hero-panel,
	  .account-support,
	  .referral-public,
	  .referral-section,
  .download-panel,
  .legal-summary,
  .policy-layout,
  .legal-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .home-proof,
  .process-lane,
  .access-flow,
  .sales-lines,
  .workflow-steps,
  .compare-list,
  .payment-note,
  .legal-grid {
    gap: 1px;
  }

  .home-proof {
    margin-top: 0;
  }

  .mascot-narrator {
    max-width: 640px;
  }

  .product-preview-section,
  .release-spotlight,
  .workflow-visual,
  .calculator-section {
    padding: 52px 0;
  }

  .release-spotlight {
    padding: 28px;
  }

  .release-copy {
    min-height: auto;
    padding: 0;
  }

  .release-board {
    min-height: auto;
  }

  .news-copy {
    min-height: auto;
  }

  .news-card-copy {
    padding: 0;
  }

  .calculator-copy {
    position: static;
  }

  .visual-cta {
    margin-bottom: 72px;
  }

  .page-title {
    padding-top: 132px;
  }

  .page-title h1 {
    font-size: 52px;
  }

  .module-feature:nth-child(even) .product-shot {
    order: 0;
  }

  .plans.price-grid .annual-plan {
    grid-column: auto;
  }

  .price-intro,
  .account-support {
    align-items: start;
  }

  .download-panel {
    margin: -56px auto 56px;
    align-items: start;
  }

  .download-panel-actions {
    justify-items: start;
  }

  .price-intro {
    display: grid;
  }

  .referral-public .btn {
    justify-self: stretch;
    width: 100%;
  }

  .referral-public {
    align-items: start;
  }

  .policy-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shot-stack {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .shot-stack .product-shot {
    position: static;
    width: 100%;
    transform: none !important;
  }

  .workflow-gallery {
    margin-top: 0;
  }

  .workflow-gallery .product-shot:nth-child(2) {
    transform: none;
  }

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

  .section-copy {
    position: static;
  }

  .process-list li,
  .audience-lines p,
  .compare-table div,
  .account-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

	  .module-table,
	  .plans,
	  .referral-public,
	  .referral-edit,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .module-table article,
  .module-table article:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
    border-right: 0;
  }

  .image-band-copy h2,
  .image-band-copy p {
    margin-left: 0;
  }

  .light-heading h2,
  .dark-solution h2 {
    font-size: 42px;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 31px;
  }

  h3 {
    font-size: 18px;
  }

  p,
  .module-table p,
  .compare-table p {
    font-size: 16px;
  }

  .intro-strip p {
    font-size: 21px;
  }

  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
    gap: 8px;
    padding: 8px;
  }

  .brand span {
    display: none;
  }

  .site-actions {
    gap: 6px;
  }

  .site-actions .btn.ghost {
    display: none;
  }

  .site-actions .btn.small {
    min-height: 34px;
    padding: 0 10px;
    font-size: 12px;
  }

  .hero {
    min-height: 780px;
    padding-top: 128px;
  }

  .hero-content,
  .intro-strip,
  .section,
  .home-proof,
  .release-spotlight,
  .news-list,
  .workflow-compact,
  .product-preview-section,
  .light-inner,
  .calculator-section,
  .visual-cta,
  .page-title,
  .module-system,
  .module-nav-grid,
  .module-showcase,
  .workflow-visual,
  .process-lane,
  .workflow-gallery,
  .workflow-steps,
  .compare-visual,
  .compare-list,
  .matrix-section,
  .dark-solution,
  .access-flow,
  .plans,
  .price-intro,
  .payment-note,
  .account-hero-panel,
	  .account-support,
	  .referral-public,
	  .referral-section,
  .download-panel,
  .legal-summary,
  .policy-layout,
  .image-band-copy,
  .account-section,
  .site-footer {
    width: min(100% - 28px, 1200px);
  }

  .hero-actions,
  .release-actions,
  .news-card .release-actions,
  .account-actions,
  .referral-edit {
    display: grid;
  }

  .mascot-narrator,
  .mascot-narrator.compact {
    max-width: 100%;
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 10px;
    margin-top: 18px;
  }

  .mascot-narrator img,
  .mascot-narrator.compact img {
    width: 68px;
    height: 68px;
  }

  .mascot-narrator p {
    padding: 12px 14px;
    font-size: 14px;
  }

  .hero-actions .btn,
  .release-actions .btn,
  .account-actions .btn,
  .referral-edit .btn,
  .plans .btn {
    width: 100%;
  }

  .section {
    padding: 72px 0;
  }

  .page-title {
    padding-top: 118px;
    padding-bottom: 34px;
  }

  .page-title h1 {
    font-size: 38px;
  }

  .page-title p:not(.eyebrow) {
    font-size: 17px;
  }

  .product-preview-section,
  .release-spotlight,
  .module-system,
  .module-feature,
  .workflow-visual,
  .calculator-section {
    padding: 38px 0;
  }

  .module-copy h2,
  .release-copy h2,
  .workflow-visual h2,
  .compare-visual h2 {
    font-size: 29px;
  }

  .release-feature-list article {
    grid-template-columns: 1fr;
  }

  .news-card {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .news-card figure img {
    min-height: 220px;
  }

  .news-card-number {
    right: 18px;
    top: 16px;
    font-size: 38px;
  }

  .calculator-card,
  .release-spotlight,
  .release-board,
  .plans article,
  .account-panel,
  .access-card,
  .dark-solution,
  .system-copy,
  .payment-note article,
  .account-glass,
	  .account-support,
	  .referral-public-card,
	  .download-panel,
  .legal-summary article,
  .policy-card {
    padding: 24px;
  }

  .referral-public-metrics {
    grid-template-columns: 1fr;
  }

  .referral-public-card {
    min-height: auto;
  }

  .referral-public h2 {
    font-size: 34px;
  }

  .download-panel {
    margin: -42px auto 48px;
  }

  .download-panel h2 {
    font-size: 31px;
  }

  .light-band {
    padding: 52px 0;
  }

  .light-heading h2,
  .dark-solution h2 {
    font-size: 34px;
  }

  .benefit-cards h3 {
    font-size: 24px;
  }

  .calculator-result strong {
    font-size: 54px;
  }

  .access-card strong {
    font-size: 56px;
  }

  .workflow-steps,
  .compare-list {
    margin: 34px auto 68px;
  }

  .workflow-steps article,
  .compare-list article {
    min-height: 220px;
    padding: 24px;
  }

  .image-band {
    min-height: 560px;
  }

  .modal {
    align-items: start;
    justify-items: center;
    padding: 14px;
  }

  .modal-card {
    max-height: calc(100vh - 28px);
    overflow-y: auto;
    padding: 24px;
    border-radius: var(--radius);
  }

  .modal-card h2 {
    font-size: 28px;
  }

  .auth-actions {
    grid-template-columns: 1fr;
  }

  .module-nav-grid {
    gap: 8px;
  }

  .system-copy h2,
  .price-intro h2,
  .account-support h2,
  .policy-card h2,
  .legal-summary h2 {
    font-size: 28px;
  }

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

.bg-liquid-glass,
.home-proof a,
.benefit-cards article,
.calculator-card,
.dark-solution,
.solution-icons span,
.process-board span,
.system-copy,
.system-metrics article,
.module-nav-grid a,
.premium-modules .module-feature,
.process-lane article,
.matrix-row,
.access-card,
.access-flow article,
.plans article,
.policy-card,
.account-panel,
.account-glass,
.download-panel,
.workflow-steps article,
.compare-list article,
.sales-lines p,
.modal-card {
  background: rgba(255, 255, 255, 0.45) !important;
  border: none !important;
  backdrop-filter: blur(24px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.9), 
    inset 0 0 0 1px rgba(255, 255, 255, 0.4), 
    0 12px 32px rgba(0, 0, 0, 0.06),
    0 4px 12px rgba(0, 0, 0, 0.03) !important;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.benefit-cards article:hover,
.plans article:hover,
.policy-card:hover,
.workflow-steps article:hover,
.compare-list article:hover,
.module-feature:hover {
  transform: translateY(-4px);
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.9), 
    inset 0 0 0 1px rgba(255, 255, 255, 0.5), 
    0 24px 48px rgba(0, 10, 40, 0.08),
    0 8px 16px rgba(0, 10, 40, 0.04) !important;
}
