:root {
  --bg: #0d0f12;
  --bg-deep: #07080a;
  --surface: #15181d;
  --surface-2: #1d2229;
  --surface-3: #242a32;
  --ink: #f2f5f7;
  --muted: #9aa4ad;
  --line: #2f3742;
  --blue: #39a3ff;
  --green: #2ed47a;
  --red: #ff5a55;
  --gold: #f5b83f;
  --violet: #9b7cff;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% -120px, rgba(40, 128, 255, 0.09), transparent 420px),
    linear-gradient(180deg, #11151b 0, #080a0d 720px),
    var(--bg);
}

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

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

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(12, 14, 17, 0.9);
  border-bottom: 1px solid rgba(72, 84, 99, 0.62);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

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

.brand-logo {
  width: 122px;
  height: 38px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0 18px rgba(57, 163, 255, 0.08));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  color: #aeb8c2;
  font-size: 0.94rem;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 0;
}

.nav-menu-trigger::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.76;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: 300px;
  padding: 8px;
  border: 1px solid rgba(83, 98, 116, 0.84);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(32, 38, 46, 0.98), rgba(15, 18, 23, 0.98)),
    #11151a;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  visibility: hidden;
}

.nav-menu::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 16px;
}

.has-menu:hover .nav-menu,
.has-menu:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.nav-menu a {
  display: grid;
  gap: 3px;
  padding: 11px 12px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--ink);
  background: transparent;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  border-color: rgba(83, 163, 255, 0.42);
  background: linear-gradient(180deg, rgba(38, 51, 65, 0.88), rgba(20, 25, 32, 0.88));
}

.nav-menu span {
  font-weight: 760;
}

.nav-menu small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.3;
}

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

.nav-action {
  padding: 10px 15px;
  border: 1px solid #475465;
  color: var(--ink);
  background: linear-gradient(180deg, #252b33, #171b20);
}

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

.hero {
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 48px;
  align-items: center;
  padding: 54px 0 36px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

h1 {
  max-width: 9ch;
  margin-bottom: 22px;
  font-size: clamp(3.8rem, 9vw, 8.8rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 0 34px rgba(57, 163, 255, 0.12);
}

.hero h1 {
  max-width: 640px;
  font-size: clamp(2.9rem, 6vw, 6.2rem);
}

.hero-copy {
  max-width: 560px;
  color: #bac3cc;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(91, 174, 255, 0.68);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #2d91de, #1262a7);
  color: #fff;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
}

.button.secondary {
  background: linear-gradient(180deg, #2b313a, #171b21);
  color: var(--ink);
  border-color: #475465;
}

.button.ghost {
  background: transparent;
  color: var(--ink);
  border-color: #3b4653;
}

.button:focus-visible,
.product-tile:focus-within,
.legal-link:focus-visible {
  outline: 3px solid rgba(29, 99, 255, 0.28);
  outline-offset: 3px;
}

.hero-stage {
  position: relative;
  min-height: 580px;
  display: grid;
  align-items: center;
}

.showcase {
  position: relative;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    #111419;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(57, 163, 255, 0.1), transparent 32%),
    linear-gradient(140deg, transparent 52%, rgba(46, 212, 122, 0.1));
  pointer-events: none;
}

.window-bar {
  position: relative;
  display: flex;
  gap: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 16px;
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
}

.window-bar span:nth-child(1) {
  background: var(--red);
}

.window-bar span:nth-child(2) {
  background: var(--gold);
}

.window-bar span:nth-child(3) {
  background: var(--green);
}

.product-preview {
  position: relative;
  min-height: 460px;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 18px;
}

.preview-panel,
.metric-stack,
.backup-list,
.timeline {
  border: 1px solid rgba(115, 132, 151, 0.22);
  border-radius: var(--radius);
  background: rgba(22, 26, 32, 0.86);
}

.preview-panel {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.panel-title {
  font-weight: 800;
  font-size: 1.2rem;
}

.signal {
  height: 160px;
  display: flex;
  align-items: end;
  gap: 7px;
  padding: 18px 0 4px;
}

.signal span {
  flex: 1;
  min-width: 8px;
  background: linear-gradient(180deg, var(--blue), #17629a);
  border-radius: 2px 2px 0 0;
}

.signal span:nth-child(2n) {
  background: var(--green);
}

.signal span:nth-child(3n) {
  background: var(--red);
}

.signal span:nth-child(1) { height: 30%; }
.signal span:nth-child(2) { height: 64%; }
.signal span:nth-child(3) { height: 42%; }
.signal span:nth-child(4) { height: 82%; }
.signal span:nth-child(5) { height: 56%; }
.signal span:nth-child(6) { height: 72%; }
.signal span:nth-child(7) { height: 36%; }
.signal span:nth-child(8) { height: 90%; }
.signal span:nth-child(9) { height: 46%; }
.signal span:nth-child(10) { height: 68%; }

.preview-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.preview-meta span {
  padding: 12px;
  border: 1px solid rgba(115, 132, 151, 0.24);
  color: var(--muted);
  background: #111419;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.metric-stack {
  padding: 18px;
  display: grid;
  gap: 14px;
}

.metric {
  padding: 16px;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(180deg, #2a313b, #171b21);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.metric:nth-child(2) {
  background: linear-gradient(180deg, #2c82c4, #16466f);
}

.metric:nth-child(3) {
  background: linear-gradient(180deg, #249866, #14513a);
}

.metric strong {
  display: block;
  font-size: 1.8rem;
}

.metric span {
  font-size: 0.78rem;
  opacity: 0.78;
}

.backup-list {
  grid-column: 1 / -1;
  padding: 16px;
  display: grid;
  gap: 10px;
}

.backup-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: #101318;
  border: 1px solid rgba(255, 255, 255, 0.045);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.products-band {
  padding: 54px 0 72px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p {
  max-width: 420px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.product-tile {
  min-height: 390px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 34%),
    var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.product-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(57, 163, 255, 0.18);
}

.tile-visual {
  min-height: 180px;
  margin-bottom: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(21, 21, 21, 0.1);
  background:
    linear-gradient(180deg, #222832, #0d1015);
  overflow: hidden;
  position: relative;
}

.tile-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(120, 140, 160, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    repeating-linear-gradient(90deg, transparent 0 14px, rgba(255, 255, 255, 0.065) 14px 15px);
}

.tile-visual::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 26px;
  height: 46px;
  background: var(--blue);
}

.tile-visual.pin::after {
  width: 62px;
  height: 62px;
  left: 50%;
  top: 50%;
  right: auto;
  bottom: auto;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 18px rgba(209, 58, 47, 0.18);
}

.tile-visual.analytics::after {
  height: 90px;
  background: linear-gradient(90deg, var(--gold) 0 31%, var(--green) 31% 67%, var(--blue) 67%);
}

.product-tile h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
  line-height: 1.08;
}

.product-tile p {
  color: var(--muted);
  line-height: 1.55;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.tag {
  padding: 7px 9px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: #111419;
  font-size: 0.78rem;
  font-weight: 700;
}

.split-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(57, 163, 255, 0.06), transparent),
    var(--bg-deep);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 48px;
  padding: 76px 0;
  align-items: center;
}

.split h2,
.page-hero h1 {
  max-width: 760px;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.split p,
.page-hero p,
.content-block p,
.feature-list li {
  color: var(--muted);
  line-height: 1.65;
}

.principles {
  display: grid;
  gap: 12px;
}

.principle {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.principle strong {
  display: block;
  margin-bottom: 6px;
}

.site-footer {
  padding: 46px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 32px;
}

.footer-grid h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.5;
}

.footer-privacy-note {
  max-width: 320px;
  margin-top: 16px !important;
  padding-top: 14px;
  border-top: 1px solid rgba(134, 148, 168, 0.18);
  font-size: 0.82rem;
  color: rgba(169, 181, 196, 0.72) !important;
}

.footer-privacy-note strong,
.footer-privacy-note span {
  display: block;
}

.footer-privacy-note strong {
  margin-bottom: 4px;
  color: rgba(245, 248, 252, 0.82);
  font-weight: 800;
}

.legal-disclaimer {
  padding-top: 0;
}

.compact-disclaimer p {
  max-width: 960px;
  margin: 0;
  padding: 18px 20px;
  border: 1px solid rgba(116, 131, 147, 0.18);
  border-radius: var(--radius);
  background: rgba(13, 18, 24, 0.62);
  color: rgba(169, 181, 196, 0.74);
  font-size: 0.82rem;
  line-height: 1.55;
}

.answer-hero {
  padding-bottom: 28px;
}

.answer-intent-section,
.answer-source-section {
  padding: 36px 0 74px;
}

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

.answer-card,
.answer-source-card {
  border: 1px solid rgba(116, 131, 147, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 42%),
    rgba(16, 21, 27, 0.92);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}

.answer-card {
  min-height: 330px;
  padding: 24px;
}

.answer-card > span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(57, 163, 255, 0.42);
  border-radius: 50%;
  color: #85caff;
  font-size: 0.78rem;
  font-weight: 850;
}

.answer-card h3 {
  margin-bottom: 14px;
  color: #f6f9fb;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.05;
}

.answer-card p,
.answer-source-card span {
  color: rgba(169, 181, 196, 0.82);
  line-height: 1.6;
}

.answer-card p:last-child {
  margin-bottom: 0;
}

.answer-use-case-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 22px;
  margin-bottom: 72px;
  padding: 30px 34px;
  border: 1px solid rgba(57, 163, 255, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 0, rgba(57, 163, 255, 0.16), transparent 320px),
    radial-gradient(circle at 92% 100%, rgba(46, 212, 122, 0.08), transparent 320px),
    rgba(8, 13, 18, 0.9);
}

.answer-use-case-band h2 {
  max-width: 860px;
  margin-bottom: 14px;
  color: #f7fbff;
  font-size: clamp(2rem, 3.4vw, 4rem);
  line-height: 0.98;
}

.answer-use-case-band p:not(.eyebrow) {
  max-width: 860px;
  margin-bottom: 0;
  color: rgba(169, 181, 196, 0.86);
  font-size: 1.02rem;
  line-height: 1.6;
}

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

.answer-source-card {
  display: grid;
  gap: 10px;
  padding: 22px;
  transition: border-color 160ms ease, transform 160ms ease;
}

.answer-source-card:hover,
.answer-source-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(80, 176, 255, 0.42);
}

.answer-source-card strong {
  color: #f6f9fb;
}

.ppa-answer-link-band {
  margin-bottom: 38px;
}

.support-hero {
  padding-bottom: 24px;
}

.support-ai-section {
  padding-top: 14px;
}

.support-ai-card {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 28px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(80, 176, 255, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 10%, rgba(57, 163, 255, 0.18), transparent 32%),
    radial-gradient(circle at 12% 90%, rgba(46, 212, 122, 0.08), transparent 34%),
    linear-gradient(145deg, rgba(21, 30, 39, 0.94), rgba(8, 12, 17, 0.96));
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.support-ai-card h2 {
  max-width: 760px;
  margin: 0 0 14px;
  color: #f7fbff;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
}

.support-ai-card p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.support-ai-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.support-ai-points span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(80, 176, 255, 0.22);
  border-radius: 999px;
  background: rgba(57, 163, 255, 0.08);
  color: #dcecff;
  font-size: 0.82rem;
  font-weight: 820;
}

.support-ai-action {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(116, 131, 147, 0.18);
  border-radius: 16px;
  background: rgba(7, 12, 17, 0.52);
}

.support-ai-action .button {
  width: 100%;
  justify-content: center;
}

.support-ai-action p {
  margin: 4px 0 0;
  color: rgba(169, 181, 196, 0.76);
  font-size: 0.82rem;
  line-height: 1.45;
}

.support-ai-action a:not(.button) {
  color: #9fd2ff;
}

.page-hero {
  padding: 88px 0 46px;
}

.page-hero p {
  max-width: 680px;
  font-size: 1.18rem;
}

.product-page {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 46px;
  padding: 72px 0;
  align-items: center;
}

.product-page .showcase {
  box-shadow: none;
}

.feature-list {
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.feature-list li {
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.content-block {
  max-width: 780px;
  padding: 0 0 80px;
}

.content-block.wide-content {
  max-width: 1180px;
}

.content-block h2 {
  font-size: 2rem;
}

.legal-page-hero {
  padding-bottom: 34px;
}

.legal-content {
  max-width: 980px;
  padding-bottom: 92px;
}

.legal-content h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(116, 131, 147, 0.16);
  color: var(--ink);
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.legal-content ul {
  margin: 12px 0 22px;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.65;
}

.legal-content a {
  color: #79bdff;
}

.about-company-block {
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  gap: 28px;
  align-items: start;
  padding-bottom: 18px;
}

.about-company-copy {
  padding-top: 42px;
}

.about-company-block h2 {
  max-width: 620px;
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.4vw, 3.8rem);
  line-height: 1;
}

.founder-card {
  display: grid;
  grid-template-rows: 480px auto;
  justify-self: end;
  width: 85%;
  min-width: 300px;
  max-width: 390px;
  overflow: hidden;
  border: 1px solid rgba(116, 131, 147, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 20% 0, rgba(57, 163, 255, 0.13), transparent 320px),
    #10141a;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.founder-card > div:last-child {
  padding: 22px;
  border-top: 1px solid rgba(116, 131, 147, 0.18);
}

.founder-card h3 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

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

.founder-image {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.08), transparent 28%),
    radial-gradient(circle at 58% 36%, rgba(116, 131, 147, 0.24), transparent 210px),
    linear-gradient(180deg, #171c22, #07090c);
}

.founder-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(116, 131, 147, 0.18);
  border-radius: var(--radius) var(--radius) 0 0;
  pointer-events: none;
}

.founder-image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 50% 18%;
  filter: saturate(0.92) contrast(1.04);
}

.about-principles-block {
  padding-top: 12px;
}

.legal-notice-hero h1 {
  max-width: 900px;
  font-size: clamp(3.2rem, 6vw, 6.4rem);
  line-height: 0.95;
}

.notice-content {
  max-width: 920px;
  margin-bottom: 88px;
  padding: 34px;
  border: 1px solid rgba(116, 131, 147, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 220px),
    #10151b;
}

.notice-content h2 {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(116, 131, 147, 0.16);
  color: var(--ink);
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
}

.notice-content h2:first-of-type {
  margin-top: 26px;
}

.notice-content p,
.notice-content li {
  color: #b8c3cc;
  line-height: 1.72;
}

.notice-content ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 22px;
  padding-left: 22px;
}

.notice-content a {
  color: #79bdff;
  font-weight: 720;
  overflow-wrap: anywhere;
}

.notice-content a:hover,
.notice-content a:focus-visible {
  color: #b8dcff;
}

.notice-content code {
  padding: 2px 6px;
  border: 1px solid rgba(116, 131, 147, 0.22);
  border-radius: 6px;
  background: rgba(7, 12, 17, 0.72);
  color: #e8f4ff;
  font-size: 0.9em;
}

.license-flow-card,
.license-upload-placeholder {
  border: 1px solid rgba(116, 131, 147, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 45%),
    #10151b;
}

.license-flow-card {
  padding: 26px;
}

.license-steps {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: license-step;
}

.license-steps li {
  position: relative;
  min-height: 86px;
  padding: 18px 18px 18px 66px;
  border: 1px solid rgba(116, 131, 147, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.024);
  counter-increment: license-step;
}

.license-steps li::before {
  content: counter(license-step);
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(57, 163, 255, 0.5);
  border-radius: 50%;
  color: #dceeff;
  background: rgba(57, 163, 255, 0.12);
  font-weight: 800;
}

.license-steps strong,
.license-steps span {
  display: block;
}

.license-steps span {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.5;
}

.license-steps a,
.license-flow-card a:not(.button) {
  color: #79bdff;
}

.license-request-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: 18px;
  align-items: stretch;
}

.license-upload-placeholder {
  min-height: 360px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 30px;
  text-align: center;
}

.license-upload-placeholder strong {
  color: var(--ink);
  font-size: 1.25rem;
}

.license-upload-placeholder span {
  max-width: 420px;
  color: var(--muted);
  line-height: 1.55;
}

.product-hero {
  padding-top: 42px;
}

.product-hero h1 {
  max-width: 760px;
  font-size: clamp(3.3rem, 6.4vw, 6.8rem);
}

.product-hero .hero-copy {
  max-width: 680px;
}

.product-app-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin: 0 0 30px;
  border: 1px solid rgba(91, 174, 255, 0.45);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(57, 163, 255, 0.2), rgba(46, 212, 122, 0.06)),
    #111821;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.product-app-icon::before,
.product-app-icon::after {
  content: "";
  position: absolute;
}

.product-app-icon.image-app-icon {
  display: block;
  object-fit: cover;
  padding: 0;
}

.product-app-icon.image-app-icon::before,
.product-app-icon.image-app-icon::after {
  content: none;
}

.product-app-icon.backup::before {
  width: 38px;
  height: 28px;
  border: 3px solid #39a3ff;
  border-radius: 8px;
  box-shadow: 0 12px 0 -7px #2ed47a;
}

.product-app-icon.backup::after {
  width: 22px;
  height: 22px;
  border: 3px solid #2ed47a;
  border-left-color: transparent;
  border-radius: 50%;
  transform: translate(16px, -16px) rotate(-24deg);
}

.product-app-icon.analytics::before {
  width: 48px;
  height: 34px;
  border-bottom: 3px solid #39a3ff;
  background:
    linear-gradient(90deg, #39a3ff 0 8px, transparent 8px 12px, #2ed47a 12px 22px, transparent 22px 26px, #ff5a55 26px 36px, transparent 36px 40px, #f5b83f 40px 48px);
  transform: translateY(8px);
}

.product-app-icon.analytics::after {
  width: 42px;
  height: 42px;
  border: 3px solid rgba(57, 163, 255, 0.45);
  border-radius: 50%;
}

.product-app-icon.volume::before {
  width: 48px;
  height: 34px;
  border: 3px solid #aeb9c5;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(174, 185, 197, 0.26), rgba(174, 185, 197, 0.06));
}

.product-app-icon.volume::after {
  width: 30px;
  height: 4px;
  border-radius: 999px;
  background: #2ed47a;
  box-shadow: 0 12px 0 #39a3ff;
  transform: translateY(-6px);
}

.aligned-product-page .product-app-icon {
  margin-bottom: 22px;
}

.aligned-product-hero .rpb-hero-copy h1 {
  max-width: 760px;
}

.aligned-product-page .rpb-hero-copy h1 {
  max-width: 660px;
  margin-bottom: 30px;
  font-size: clamp(4.4rem, 8.2vw, 8.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.aligned-product-page .rpb-hero-copy h1 span {
  display: block;
}

.hero-description {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.58;
}

.hero-description strong {
  color: #fff;
}

.hero-description + .hero-description {
  margin-top: 12px;
}

.product-title-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
}

.product-title-row h1 {
  margin-bottom: 0;
}

.launch-badge {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  margin-top: 10px;
  padding: 0 14px;
  border: 1px solid rgba(57, 163, 255, 0.48);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(57, 163, 255, 0.24), rgba(24, 69, 126, 0.82)),
    rgba(16, 21, 27, 0.82);
  box-shadow: 0 14px 34px rgba(30, 111, 230, 0.18);
  color: #dcefff;
  font-size: 0.82rem;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aligned-product-visual {
  opacity: 0.78;
}

.product-placeholder-window {
  width: min(100%, 860px);
  margin-left: auto;
}

.analytics-placeholder-grid .placeholder-card:nth-child(1) {
  min-height: 180px;
}

.analytics-placeholder-grid .placeholder-card:nth-child(2) {
  min-height: 130px;
  transform: translateY(34px);
}

.analytics-placeholder-grid .placeholder-card:nth-child(3) {
  min-height: 210px;
}

.volume-placeholder-grid .placeholder-card {
  border-radius: 999px;
}

.volume-placeholder-grid .placeholder-card.wide {
  border-radius: 8px;
}

.section-intro {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.62;
}

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

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

.ppa-feature-grid .feature-card {
  min-height: auto;
}

.ppa-benefit-matrix-section {
  overflow: hidden;
}

.ppa-benefit-matrix-heading h2 {
  max-width: 980px;
}

.ppa-persona-panel {
  display: grid;
  gap: 16px;
  margin: 28px 0 26px;
}

.ppa-persona-panel p {
  margin: 0;
  color: rgba(230, 238, 247, 0.9);
  font-size: 1.05rem;
  font-weight: 900;
}

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

.ppa-persona-button {
  min-height: 72px;
  border: 1px solid rgba(80, 176, 255, 0.3);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.012)),
    rgba(16, 21, 27, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 50px rgba(0, 0, 0, 0.22);
  color: rgba(230, 238, 247, 0.78);
  cursor: pointer;
  font: inherit;
  font-size: clamp(1rem, 1.5vw, 1.36rem);
  font-weight: 900;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.ppa-persona-button:hover,
.ppa-persona-button:focus-visible {
  border-color: rgba(80, 176, 255, 0.68);
  color: #fff;
  transform: translateY(-2px);
}

.ppa-persona-button.is-active {
  border-color: rgba(24, 244, 230, 0.58);
  background:
    radial-gradient(circle at 22% 0%, rgba(57, 163, 255, 0.22), transparent 42%),
    linear-gradient(180deg, rgba(28, 114, 225, 0.95), rgba(10, 55, 116, 0.84));
  box-shadow:
    0 20px 56px rgba(24, 111, 230, 0.24),
    0 0 0 1px rgba(24, 244, 230, 0.1) inset;
  color: #fff;
}

.ppa-benefit-cloud {
  position: relative;
  min-height: 620px;
  margin-top: 18px;
  border: 1px solid rgba(64, 91, 116, 0.28);
  border-radius: 22px;
  background:
    radial-gradient(circle at 12% 12%, rgba(57, 163, 255, 0.12), transparent 32%),
    radial-gradient(circle at 84% 80%, rgba(24, 244, 230, 0.07), transparent 34%),
    linear-gradient(145deg, rgba(18, 27, 37, 0.46), rgba(4, 9, 14, 0.74));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.ppa-benefit-cloud::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 48%, black 0 62%, transparent 92%);
}

.ppa-benefit-card {
  position: absolute;
  top: var(--chaos-y);
  left: var(--chaos-x);
  z-index: 1;
  width: min(250px, 31%);
  min-height: 112px;
  padding: 15px 16px;
  border: 1px solid rgba(116, 131, 147, 0.22);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 46%),
    rgba(16, 21, 27, 0.88);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  color: rgba(230, 238, 247, 0.78);
  transform: rotate(var(--chaos-rotate));
  transition:
    opacity 360ms ease,
    filter 360ms ease,
    transform 520ms cubic-bezier(0.19, 1, 0.22, 1),
    border-color 260ms ease;
}

.ppa-benefit-card::before {
  content: "";
  position: absolute;
  top: 17px;
  left: -5px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #39a3ff;
  box-shadow: 0 0 16px rgba(57, 163, 255, 0.58);
}

.ppa-benefit-card span {
  display: block;
  margin-bottom: 8px;
  color: #18f4e6;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}

.ppa-benefit-card h3 {
  margin: 0;
  color: rgba(230, 238, 247, 0.9);
  font-size: clamp(0.94rem, 1.16vw, 1.14rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.ppa-benefit-cloud.is-arranged {
  display: grid;
  min-height: 0;
  padding: clamp(18px, 2.2vw, 28px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ppa-benefit-cloud.is-arranged .ppa-benefit-card {
  position: relative;
  top: auto;
  left: auto;
  display: block;
  width: auto;
  min-height: 118px;
  transform: none;
}

.ppa-benefit-cloud.is-arranged .ppa-benefit-card:not(.is-benefit-active) {
  display: none;
}

.ppa-benefit-cloud.is-overview .ppa-benefit-card:not(.is-benefit-active) {
  display: block;
}

.ppa-benefit-card.is-benefit-active {
  border-color: rgba(80, 176, 255, 0.38);
}

.ppa-page .product-section {
  padding-top: 42px;
  padding-bottom: 42px;
}

.ppa-page .rpb-hero {
  min-height: auto;
  align-items: flex-start;
  padding-top: 96px;
  padding-bottom: 8px;
}

.ppa-page .rpb-hero::after {
  height: 8%;
  background: linear-gradient(180deg, transparent, rgba(8, 13, 18, 0.74) 86%);
}

.ppa-app-integration-section {
  position: relative;
  padding-top: 0;
  padding-bottom: 26px;
}

.ppa-app-integration-pin {
  width: 100%;
}

.ppa-app-integration-heading {
  max-width: 980px;
}

.ppa-app-integration-heading h2 {
  font-size: 2.65rem;
  line-height: 1.04;
}

.ppa-app-integration-heading p {
  max-width: 900px;
  font-size: 1.04rem;
  line-height: 1.64;
}

.ppa-supported-apps-board {
  width: 100%;
  aspect-ratio: 1910 / 808;
  min-height: 430px;
  margin-top: 30px;
  padding: 1.45% 3.3% 2.8%;
  background: transparent;
  color: var(--ink);
  overflow: hidden;
}

.ppa-supported-apps-board h3 {
  margin: 0;
  color: #f4f7fb;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: 0;
}

.ppa-supported-group {
  display: grid;
  gap: 38px;
}

.ppa-supported-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4.2%;
}

.ppa-app-pill {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 14px;
  background:
    linear-gradient(#20242c, #20242c) padding-box,
    linear-gradient(105deg, rgba(77, 12, 142, 0.98) 0%, rgba(55, 99, 178, 0.95) 53%, rgba(18, 224, 223, 0.98) 100%) border-box;
  color: rgba(245, 247, 251, 0.78);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 18px rgba(20, 224, 223, 0.1);
  transition:
    opacity 520ms ease,
    transform 640ms cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 640ms ease,
    color 520ms ease;
}

.pinned-reveal-ready .ppa-app-pill {
  opacity: 0.18;
  transform: translate3d(0, 18px, 0) scale(0.96);
  color: rgba(245, 247, 251, 0.34);
  box-shadow: 0 0 0 rgba(20, 224, 223, 0);
}

.pinned-reveal-ready .ppa-app-pill.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  color: rgba(245, 247, 251, 0.82);
  box-shadow: 0 0 22px rgba(20, 224, 223, 0.16);
}

.ppa-app-pill.large {
  min-height: 72px;
  font-size: 2rem;
}

.ppa-planned-group {
  margin-top: 46px;
}

.ppa-planned-grid {
  display: grid;
  width: 88.8%;
  margin: 42px auto 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 48px;
}

.ppa-planned-note {
  margin: 20px 0 0;
  color: rgba(245, 247, 251, 0.46);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
}

.pinned-reveal-ready .ppa-planned-note {
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition:
    opacity 520ms ease,
    transform 640ms cubic-bezier(0.19, 1, 0.22, 1);
}

.pinned-reveal-ready.is-complete .ppa-planned-note {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (min-width: 901px) {
  .pinned-reveal-ready.ppa-app-integration-section {
    min-height: 165vh;
  }

  .pinned-reveal-ready .ppa-app-integration-pin {
    position: sticky;
    top: 78px;
    min-height: calc(100vh - 96px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px 0 22px;
  }
}

.feature-list {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  line-height: 1.42;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

.ppa-version-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.diagram-reveal-ready.ppa-version-section {
  align-items: start;
}

@media (min-width: 901px) {
  .diagram-reveal-ready.ppa-version-section {
    min-height: 210vh;
  }

  .diagram-reveal-ready .ppa-version-copy,
  .diagram-reveal-ready .ppa-diagram-stack {
    position: sticky;
    top: 78px;
    min-height: calc(100vh - 96px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.ppa-version-copy {
  max-width: 640px;
}

.ppa-version-copy h2 {
  max-width: 9ch;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(2.6rem, 5vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.ppa-version-copy p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.68;
}

.ppa-version-copy strong {
  color: var(--ink);
}

.ppa-diagram-stack {
  display: grid;
  gap: 10px;
}

.ppa-integration-note {
  margin: 0;
  color: #18f4e6;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
  opacity: 0.5;
}

.ppa-network-diagram {
  position: relative;
  container-type: inline-size;
  aspect-ratio: 1776 / 1518;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(116, 131, 147, 0.24);
  border-radius: 16px;
  background:
    radial-gradient(circle at 52% 51%, rgba(57, 163, 255, 0.18), transparent 26%),
    radial-gradient(circle at 81% 78%, rgba(24, 244, 230, 0.08), transparent 24%),
    radial-gradient(circle at 15% 37%, rgba(57, 163, 255, 0.08), transparent 26%),
    linear-gradient(135deg, rgba(14, 22, 31, 0.98), rgba(4, 8, 12, 0.99));
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.ppa-network-mobile-raster {
  display: none;
}

.network-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.62;
  background:
    linear-gradient(rgba(255, 255, 255, 0.036) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.036) 1px, transparent 1px);
  background-size: 5.35% 6.05%;
  mask-image: radial-gradient(circle at 52% 52%, black 0 66%, transparent 90%);
}

.ppa-network-diagram::before,
.ppa-network-diagram::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ppa-network-diagram::before {
  display: none;
}

.ppa-network-diagram::after {
  background:
    radial-gradient(circle at 50% 52%, transparent 0 46%, rgba(7, 12, 17, 0.22) 76%, rgba(7, 12, 17, 0.76) 100%),
    linear-gradient(90deg, rgba(7, 12, 17, 0.68), transparent 29%, transparent 70%, rgba(7, 12, 17, 0.58));
}

.network-node,
.network-host {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(116, 131, 147, 0.26);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(33, 43, 54, 0.95), rgba(9, 15, 22, 0.96));
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.network-node,
.network-line {
  transition:
    opacity 560ms ease,
    filter 680ms ease,
    clip-path 780ms cubic-bezier(0.19, 1, 0.22, 1);
}

.diagram-reveal-ready .network-node[data-diagram-item],
.diagram-reveal-ready .network-line[data-diagram-item] {
  opacity: 0;
  filter: blur(4px);
}

.diagram-reveal-ready .network-line[data-diagram-item] {
  clip-path: inset(0 100% 0 0);
}

.diagram-reveal-ready .line-color[data-diagram-item],
.diagram-reveal-ready .line-finishing[data-diagram-item] {
  clip-path: inset(0 0 0 100%);
}

.diagram-reveal-ready .line-vfx[data-diagram-item] {
  clip-path: inset(100% 0 0 0);
}

.diagram-reveal-ready .network-node[data-diagram-item].is-diagram-revealed,
.diagram-reveal-ready .network-line[data-diagram-item].is-diagram-revealed {
  opacity: 1;
  filter:
    drop-shadow(0 0 8px rgba(38, 152, 255, 0.42))
    drop-shadow(0 0 18px rgba(38, 152, 255, 0.18));
}

.diagram-reveal-ready .network-node[data-diagram-item].is-diagram-revealed {
  filter: none;
}

.diagram-reveal-ready .network-line[data-diagram-item].is-diagram-revealed {
  clip-path: inset(-18px -18px -18px -18px);
}

.network-node {
  width: 21.2%;
  min-height: 0;
  aspect-ratio: 373 / 318;
  padding: 1.9%;
}

.network-node strong,
.network-host strong {
  display: block;
  margin-top: 9%;
  color: var(--ink);
  font-size: clamp(0.86rem, 2.58cqw, 2.65rem);
  line-height: 1.05;
}

.network-node small,
.network-host small {
  display: block;
  margin-top: 3%;
  color: var(--muted);
  font-size: clamp(0.66rem, 1.68cqw, 1.68rem);
  line-height: 1.25;
}

.screen {
  display: block;
  width: 36%;
  height: 24.5%;
  border: 1px solid rgba(80, 176, 255, 0.62);
  border-radius: 8%;
  background:
    linear-gradient(135deg, rgba(57, 163, 255, 0.84), rgba(35, 228, 196, 0.34)),
    #0a1621;
  box-shadow: 0 0 24px rgba(57, 163, 255, 0.18);
}

.screen::after {
  content: "";
  display: block;
  width: 42%;
  height: 6%;
  margin: 28% auto 0;
  border-radius: 999px;
  background: rgba(116, 131, 147, 0.34);
}

.node-a {
  top: 12.8%;
  left: 6.2%;
}

.node-b {
  top: 13.1%;
  left: 69.2%;
}

.node-c {
  top: 61.5%;
  left: 9.2%;
}

.node-d {
  top: 60.4%;
  left: 67%;
}

.node-e {
  top: 75.6%;
  left: 49.3%;
  transform: translateX(-50%);
}

.network-host {
  top: 48.3%;
  left: 49.5%;
  width: 34.2%;
  min-height: 0;
  aspect-ratio: 592 / 459;
  padding: 8.8% 3.2% 3.8%;
  transform: translate(-50%, -50%);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(57, 163, 255, 0.18), transparent 58%),
    linear-gradient(180deg, rgba(31, 39, 49, 0.98), rgba(10, 15, 21, 0.98));
}

.app-list {
  color: #18f4e6 !important;
  font-weight: 800;
  font-size: clamp(0.56rem, 1.46cqw, 1.5rem) !important;
  line-height: 0.98 !important;
}

.network-node strong {
  margin-top: 7%;
  font-size: clamp(0.74rem, 2.04cqw, 2.12rem);
  line-height: 0.98;
  white-space: nowrap;
}

.network-node small {
  margin-top: 2.2%;
  font-size: clamp(0.56rem, 1.38cqw, 1.4rem);
  line-height: 1.02;
}

.node-e strong {
  white-space: normal;
}

.host-mac {
  position: relative;
  display: block;
  width: 44%;
  height: 17%;
  margin: 0 auto;
  border-radius: 9px 9px 13px 13px;
  background:
    radial-gradient(circle at 76% 45%, rgba(40, 222, 185, 0.75) 0 2px, transparent 3px),
    radial-gradient(circle at 34% 47%, rgba(10, 13, 16, 0.9) 0 3px, transparent 4px),
    radial-gradient(circle at 25% 47%, rgba(10, 13, 16, 0.9) 0 3px, transparent 4px),
    linear-gradient(180deg, #f5f7f7, #b9bec2 48%, #7a8388 100%);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.42),
    0 0 46px rgba(57, 163, 255, 0.16);
}

.host-mac::before {
  content: "";
  position: absolute;
  right: 12%;
  bottom: -16%;
  left: 12%;
  height: 20%;
  border-radius: 0 0 18px 18px;
  background:
    repeating-linear-gradient(90deg, rgba(6, 8, 10, 0.88) 0 3px, rgba(45, 49, 52, 0.88) 3px 5px);
  filter: blur(0.2px);
}

.network-line {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  color: #2698ff;
  filter:
    drop-shadow(0 0 8px rgba(38, 152, 255, 0.42))
    drop-shadow(0 0 18px rgba(38, 152, 255, 0.18));
}

.network-line::before,
.network-line::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.network-line::after {
  width: 0;
  height: 0;
  background: transparent;
  border-style: solid;
}

.line-edit {
  top: 21.1%;
  left: 27.2%;
  width: 16.4%;
  height: 13.2%;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
}

.line-edit::after {
  right: -11px;
  bottom: -2px;
  border-width: 18px 10px 0;
  border-color: currentColor transparent transparent;
}

.line-color {
  top: 21.1%;
  left: 55.5%;
  width: 13.8%;
  height: 13.2%;
  border-top: 4px solid currentColor;
  border-left: 4px solid currentColor;
}

.line-color::after {
  left: -12px;
  bottom: -2px;
  border-width: 18px 10px 0;
  border-color: currentColor transparent transparent;
}

.line-graphic {
  top: 52.4%;
  left: 18.3%;
  width: 15%;
  height: 10.1%;
  border-top: 4px solid currentColor;
  border-left: 4px solid currentColor;
}

.line-graphic::after {
  right: -1px;
  top: -11px;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent currentColor;
}

.line-finishing {
  top: 52.4%;
  left: 66.6%;
  width: 14.4%;
  height: 10.1%;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
}

.line-finishing::after {
  left: -1px;
  top: -11px;
  border-width: 10px 18px 10px 0;
  border-color: transparent currentColor transparent transparent;
}

.line-vfx {
  left: 50%;
  top: 64.2%;
  width: 4px;
  height: 10.8%;
  transform: translateX(-50%);
  background: currentColor;
}

.line-vfx::after {
  top: -16px;
  left: -8px;
  border-width: 0 10px 18px;
  border-color: transparent transparent currentColor;
}

.ppa-dashboard-detail-section {
  padding-top: 38px;
}

.ppa-dashboard-detail-pin {
  width: 100%;
}

.ppa-dashboard-detail-section .section-heading {
  max-width: 1040px;
}

.ppa-dashboard-detail-section h2 {
  max-width: 980px;
  font-size: clamp(2.7rem, 5.2vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.ppa-view-switcher {
  display: grid;
  width: min(100%, 1660px);
  margin: 24px auto 20px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.ppa-view-button {
  position: relative;
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 11px;
  overflow: hidden;
  border: 1px solid rgba(116, 131, 147, 0.16);
  border-radius: 0;
  background: linear-gradient(180deg, rgba(24, 29, 36, 0.98), rgba(13, 17, 22, 0.98));
  color: rgba(245, 247, 251, 0.88);
  font: inherit;
  font-size: clamp(0.78rem, 0.82vw, 0.96rem);
  font-weight: 800;
  line-height: 1;
  text-align: left;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 16px 44px rgba(0, 0, 0, 0.18);
  transition:
    border-color 220ms ease,
    color 220ms ease,
    background 220ms ease,
    transform 220ms ease;
}

.ppa-view-button::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: transparent;
}

.ppa-view-button:hover,
.ppa-view-button:focus-visible {
  color: var(--ink);
  border-color: rgba(80, 176, 255, 0.28);
  transform: translateY(-1px);
}

.ppa-view-button.is-active {
  border-color: rgba(255, 145, 31, 0.22);
  background: linear-gradient(180deg, rgba(38, 42, 49, 0.98), rgba(23, 27, 33, 0.98));
  color: #ff971f;
}

.ppa-view-button.is-active::before {
  background: #ff971f;
  box-shadow: 0 0 26px rgba(255, 145, 31, 0.55);
}

.ppa-view-icon {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: currentColor;
  opacity: 0.95;
}

.ppa-view-icon::before,
.ppa-view-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.ppa-view-icon-dashboard::before {
  inset: 5px 2px;
  border-top: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
}

.ppa-view-icon-dashboard::after {
  inset: 2px 6px;
  border-left: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.ppa-view-icon-sessions::before,
.ppa-view-icon-reports::before {
  inset: 3px 2px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.ppa-view-icon-sessions::after {
  top: 9px;
  right: 7px;
  left: 7px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.ppa-view-icon-users::before {
  top: 5px;
  left: 6px;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 999px;
  box-shadow: 11px 0 0 -2px currentColor;
}

.ppa-view-icon-users::after {
  right: 2px;
  bottom: 4px;
  left: 2px;
  height: 11px;
  border: 2px solid currentColor;
  border-radius: 14px 14px 3px 3px;
}

.ppa-view-icon-reports::after {
  top: 7px;
  right: 6px;
  bottom: 7px;
  width: 8px;
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
}

.ppa-view-icon-notes::before {
  top: 5px;
  left: 2px;
  width: 7px;
  height: 7px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 12px 0 -1px transparent;
}

.ppa-view-icon-notes::after {
  top: 6px;
  right: 2px;
  left: 12px;
  height: 18px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  box-shadow: 0 8px 0 -2px currentColor;
}

.ppa-view-context-headline {
  max-width: 980px;
  margin: 2px 0 12px;
  color: rgba(245, 247, 251, 0.94);
  font-size: clamp(1.45rem, 2.1vw, 2.45rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.ppa-view-context-headline.is-changing {
  opacity: 0;
  transform: translateY(4px);
}

.ppa-view-panel {
  width: 100%;
}

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

.ppa-view-preview-card {
  display: grid;
  width: min(100%, 1660px);
  margin: 0 auto 18px;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 22px;
  align-items: stretch;
  border: 1px solid rgba(72, 92, 112, 0.3);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(22, 29, 38, 0.88), rgba(8, 12, 17, 0.96)),
    rgba(9, 13, 18, 0.92);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.ppa-view-preview-media {
  position: relative;
  min-height: 420px;
  background:
    radial-gradient(circle at 32% 18%, rgba(42, 163, 255, 0.16), transparent 36%),
    rgba(3, 7, 11, 0.72);
}

.ppa-view-preview-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 70%, rgba(7, 11, 16, 0.32)),
    radial-gradient(circle at 50% 50%, transparent 52%, rgba(0, 0, 0, 0.22));
}

.ppa-view-preview-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top left;
  filter: saturate(1.04) contrast(1.04);
}

.ppa-view-preview-copy {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 3.1vw, 52px);
}

.ppa-view-preview-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.65rem, 2.4vw, 3.15rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.ppa-view-preview-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: rgba(230, 238, 247, 0.72);
  font-size: clamp(1rem, 1.05vw, 1.18rem);
  line-height: 1.65;
}

.ppa-view-preview-copy ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.ppa-view-preview-copy li {
  position: relative;
  padding-left: 22px;
  color: rgba(245, 247, 251, 0.8);
  font-weight: 800;
  line-height: 1.35;
}

.ppa-view-preview-copy li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #18f4e6;
  box-shadow: 0 0 18px rgba(24, 244, 230, 0.42);
}

.ppa-overlay-card {
  position: relative;
  display: block;
  isolation: isolate;
}

.ppa-overlay-card .ppa-view-preview-media {
  min-height: unset;
  aspect-ratio: 3334 / 2267;
}

.ppa-overlay-card .ppa-view-preview-media::after {
  background:
    linear-gradient(90deg, rgba(3, 7, 11, 0.26), transparent 42%, rgba(3, 7, 11, 0.14)),
    radial-gradient(circle at 50% 50%, transparent 58%, rgba(0, 0, 0, 0.24));
  transition: opacity 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.ppa-overlay-card .ppa-view-preview-media img {
  object-fit: cover;
  object-position: center;
}

.ppa-overlay-card .ppa-view-preview-copy {
  position: absolute;
  z-index: 2;
  top: clamp(18px, 2.3vw, 38px);
  bottom: clamp(18px, 2.3vw, 38px);
  right: clamp(18px, 2.3vw, 38px);
  width: min(520px, 39%);
  min-height: 0;
  padding: clamp(22px, 2.7vw, 42px);
  justify-content: center;
  border: 1px solid rgba(90, 117, 142, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(18, 27, 37, 0.66), rgba(4, 9, 14, 0.54)),
    rgba(5, 10, 16, 0.5);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  transform: translateX(0);
  transition:
    transform 1250ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 900ms ease,
    box-shadow 1250ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ppa-overlay-card:hover .ppa-view-preview-copy,
.ppa-overlay-card:focus-within .ppa-view-preview-copy {
  opacity: 0.9;
  transform: translateX(calc(100% + clamp(26px, 3.8vw, 64px)));
  box-shadow:
    0 22px 64px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.ppa-overlay-card:hover .ppa-view-preview-media::after,
.ppa-overlay-card:focus-within .ppa-view-preview-media::after {
  opacity: 0.34;
}

.ppa-dashboard-interaction-hint {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  padding: 8px 12px;
  border: 1px solid rgba(57, 163, 255, 0.2);
  border-radius: 999px;
  background: rgba(9, 15, 22, 0.66);
  color: rgba(245, 247, 251, 0.66);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
  box-shadow:
    0 10px 34px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.ppa-dashboard-interaction-hint span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #18f4e6;
  box-shadow: 0 0 18px rgba(24, 244, 230, 0.52);
}

.dashboard-reveal-ready .ppa-dashboard-interaction-hint span {
  animation: dashboardHintPulse 1500ms ease-in-out infinite;
}

@keyframes dashboardHintPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.72;
  }

  50% {
    transform: scale(1.42);
    opacity: 1;
  }
}

.ppa-dashboard-showcase {
  position: relative;
  width: min(100%, 1780px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 20%, rgba(57, 163, 255, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(11, 16, 22, 0.7), rgba(4, 8, 12, 0.95));
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(116, 131, 147, 0.14);
}

.ppa-dashboard-image {
  display: block;
  width: 100%;
  height: auto;
  transition:
    opacity 360ms ease,
    filter 360ms ease,
    transform 420ms ease;
}

.ppa-dashboard-showcase.is-detail-active .ppa-dashboard-image {
  opacity: 0.2;
  filter: saturate(0.72) brightness(0.78);
}

.ppa-dashboard-hotspot {
  position: absolute;
  z-index: 4;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}

.ppa-dashboard-hotspot:focus-visible {
  outline: 2px solid rgba(57, 163, 255, 0.85);
  outline-offset: 3px;
}

.hotspot-summary {
  top: 14.9%;
  left: 16.4%;
  width: 68.6%;
  height: 12.8%;
}

.hotspot-users-panel {
  top: 28.5%;
  left: 16.4%;
  width: 68.6%;
  height: 15.2%;
}

.hotspot-time-page {
  top: 45.5%;
  left: 16.5%;
  width: 33.8%;
  height: 22.2%;
}

.hotspot-time-overview {
  top: 45.5%;
  left: 51.1%;
  width: 33.8%;
  height: 22.2%;
}

.hotspot-top-projects {
  top: 70.1%;
  left: 16.5%;
  width: 22.3%;
  height: 22.6%;
}

.hotspot-top-users {
  top: 70.1%;
  left: 39.4%;
  width: 22.3%;
  height: 22.6%;
}

.ppa-dashboard-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity 340ms ease;
}

.ppa-dashboard-layer.is-active {
  opacity: 1;
}

.dashboard-summary-video,
.dashboard-focus-video {
  position: absolute;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(13, 18, 24, 0.92);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(116, 131, 147, 0.22),
    0 0 32px rgba(57, 163, 255, 0.12);
  transform: translate3d(0, 10px, 0) scale(0.992);
  transition:
    opacity 380ms ease,
    transform 520ms cubic-bezier(0.19, 1, 0.22, 1);
}

.ppa-dashboard-layer.is-active .dashboard-summary-video,
.ppa-dashboard-layer.is-active .dashboard-focus-video {
  transform: translate3d(0, 0, 0) scale(1);
}

.dashboard-summary-video video,
.dashboard-focus-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-summary-time {
  top: 11.8%;
  left: 7.8%;
  width: 15.8%;
  aspect-ratio: 426 / 320;
}

.video-summary-amount {
  top: 11.8%;
  left: 25.1%;
  width: 15.8%;
  aspect-ratio: 426 / 320;
}

.video-summary-sessions {
  top: 11.8%;
  left: 42.4%;
  width: 15.8%;
  aspect-ratio: 426 / 320;
}

.video-summary-projects {
  top: 11.8%;
  left: 59.7%;
  width: 15.8%;
  aspect-ratio: 426 / 320;
}

.video-summary-users {
  top: 11.8%;
  left: 77%;
  width: 15.8%;
  aspect-ratio: 426 / 320;
}

.video-users-panel {
  top: 28.3%;
  left: 2%;
  width: 96%;
  aspect-ratio: 2048 / 310;
}

.video-time-page {
  top: 44.7%;
  left: 7%;
  width: 42%;
  aspect-ratio: 1090 / 612;
}

.video-time-overview {
  top: 44.7%;
  left: 51%;
  width: 42%;
  aspect-ratio: 1090 / 612;
}

.video-top-projects {
  top: 69.2%;
  left: 10.2%;
  width: 35%;
  aspect-ratio: 720 / 420;
}

.video-top-users {
  top: 69.2%;
  left: 47.2%;
  width: 35%;
  aspect-ratio: 720 / 420;
}

.ppa-dashboard-explainer {
  position: absolute;
  max-width: min(420px, 26%);
  padding: 16px 18px;
  border: 1px solid rgba(57, 163, 255, 0.2);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(19, 26, 35, 0.92), rgba(8, 13, 19, 0.9));
  color: rgba(245, 247, 251, 0.76);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  transform: translate3d(0, 12px, 0);
  transition:
    opacity 420ms ease 120ms,
    transform 540ms cubic-bezier(0.19, 1, 0.22, 1) 120ms;
}

.ppa-dashboard-layer:not(.is-active) .ppa-dashboard-explainer {
  opacity: 0;
}

.ppa-dashboard-layer.is-active .ppa-dashboard-explainer {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.ppa-dashboard-explainer strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1rem, 1.2vw, 1.3rem);
  line-height: 1.1;
}

.ppa-dashboard-explainer p {
  margin: 8px 0 0;
  font-size: 0.86rem;
  line-height: 1.48;
}

.explainer-summary {
  top: 31.5%;
  left: 37%;
}

.explainer-users-panel {
  top: 45%;
  left: 36%;
}

.explainer-time-page {
  top: 38%;
  left: 12%;
}

.explainer-time-overview {
  top: 38%;
  left: 56%;
}

.explainer-top-projects {
  top: 56.8%;
  left: 10.2%;
}

.explainer-top-users {
  top: 56.8%;
  left: 47.2%;
}

@media (min-width: 901px) {
  .dashboard-reveal-ready.ppa-dashboard-detail-section {
    min-height: 245vh;
    padding-top: 0;
    padding-bottom: 0;
  }

  .dashboard-reveal-ready .ppa-dashboard-detail-pin {
    position: sticky;
    top: 78px;
    min-height: calc(100vh - 96px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0 28px;
  }
}

@media (max-width: 1120px) {
  .ppa-view-switcher {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ppa-view-button {
    min-height: 44px;
  }

  .ppa-dashboard-explainer {
    max-width: 38%;
    padding: 12px 14px;
  }

  .ppa-dashboard-explainer p {
    display: none;
  }

  .ppa-view-preview-card {
    grid-template-columns: 1fr;
  }

  .ppa-view-preview-media,
  .ppa-view-preview-copy {
    min-height: 0;
  }

  .ppa-view-preview-media {
    aspect-ratio: 16 / 9;
  }

  .ppa-overlay-card .ppa-view-preview-copy {
    width: min(480px, 46%);
  }

  .ppa-version-section {
    grid-template-columns: 1fr;
  }

  .ppa-version-copy {
    max-width: 760px;
  }

  .ppa-version-copy h2 {
    max-width: 12ch;
  }
}

@media (max-width: 760px) {
  .ppa-dashboard-detail-section h2 {
    font-size: clamp(2rem, 11vw, 3.4rem);
  }

  .ppa-privacy-intro-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ppa-privacy-icon-block {
    justify-content: flex-start;
    min-height: 0;
  }

  .ppa-privacy-icon-block img {
    height: clamp(220px, 58vw, 330px);
  }

  .ppa-view-switcher {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ppa-view-button {
    min-height: 46px;
    padding: 10px 14px;
    font-size: 0.92rem;
  }

  .ppa-view-context-headline {
    margin-top: 14px;
    font-size: clamp(1.35rem, 7vw, 2.15rem);
  }

  .ppa-view-icon {
    width: 18px;
    height: 18px;
  }

  .ppa-dashboard-showcase {
    width: calc(100vw - 28px);
    margin-left: 50%;
    transform: translateX(-50%);
    border-radius: 12px;
  }

  .ppa-view-preview-card {
    border-radius: 14px;
  }

  .ppa-view-preview-media {
    aspect-ratio: 4 / 3;
  }

  .ppa-overlay-card .ppa-view-preview-media {
    aspect-ratio: 16 / 10;
  }

  .ppa-overlay-card .ppa-view-preview-copy {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    width: auto;
    min-height: 0;
    margin: -1px 0 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0 0 14px 14px;
    transform: none !important;
  }

  .ppa-view-preview-copy {
    padding: 22px;
  }

  .dashboard-summary-video,
  .dashboard-focus-video {
    border-radius: 6px;
  }

  .ppa-dashboard-explainer {
    max-width: 62%;
    padding: 9px 10px;
    border-radius: 10px;
  }

  .ppa-dashboard-explainer strong {
    font-size: 0.76rem;
  }
}

.aligned-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 16px;
  align-items: stretch;
}

.aligned-video-placeholder {
  min-height: 430px;
}

.aligned-screenshot-placeholder {
  min-height: 430px;
}

.aligned-screenshot-placeholder strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.12rem;
}

.aligned-screenshot-placeholder p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.product-detail-band {
  padding: 80px 0;
  background: #0b0e12;
  border-top: 1px solid rgba(116, 131, 147, 0.16);
  border-bottom: 1px solid rgba(116, 131, 147, 0.16);
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 28px;
  align-items: start;
}

.detail-copy h2 {
  max-width: 780px;
  font-size: clamp(2.3rem, 4.6vw, 4.8rem);
  line-height: 0.96;
}

.detail-copy > p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.detail-grid {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.detail-card,
.media-placeholder {
  border: 1px solid rgba(116, 131, 147, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 42%),
    #11161d;
}

.detail-card {
  min-height: 118px;
  padding: 18px;
}

.detail-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.detail-card span {
  color: var(--muted);
  line-height: 1.55;
}

.media-stack {
  display: grid;
  gap: 16px;
}

.media-placeholder {
  min-height: 230px;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--muted);
  text-align: center;
}

.media-placeholder.large {
  min-height: 360px;
}

.media-placeholder strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 1.08rem;
}

.other-tools-band {
  padding-top: 52px;
}

.other-tools-band .section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 3.1rem);
}

.other-tools-band .product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.other-tools-band .product-tile {
  min-height: 300px;
}

.standard-products-band {
  padding-top: 56px;
  padding-bottom: 72px;
}

.legal-links {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.legal-link {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.rpb-product-page {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 52% -180px, rgba(57, 163, 255, 0.15), transparent 520px),
    linear-gradient(180deg, #0b0f14 0, #07090c 960px),
    #07090c;
}

.rpb-header .nav {
  width: min(1240px, calc(100% - 32px));
}

.rpb-nav {
  gap: 22px;
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-left: 4px;
}

.button.compact {
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.88rem;
}

.rpb-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 72px 0 48px;
}

.rpb-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, #080d12 0%, rgba(8, 13, 18, 0.98) 24%, rgba(8, 13, 18, 0.72) 43%, rgba(8, 13, 18, 0.24) 68%, rgba(8, 13, 18, 0.74) 100%),
    radial-gradient(circle at 30% 44%, rgba(8, 13, 18, 0.9), transparent 36%),
    linear-gradient(180deg, rgba(8, 13, 18, 0.7), transparent 24%, transparent 72%, rgba(8, 13, 18, 0.82));
}

.rpb-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 28%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, #080d12 78%);
}

.rpb-hero-copy {
  position: relative;
  z-index: 2;
  width: min(58%, 720px);
}

.rpb-hero-copy h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: clamp(3.8rem, 6.6vw, 7.2rem);
  line-height: 0.94;
}

.rpb-hero-copy .hero-copy {
  max-width: 660px;
  font-size: clamp(1.1rem, 1.8vw, 1.42rem);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: #79bdff;
  font-weight: 720;
}

.text-link:hover,
.text-link:focus-visible {
  color: #b8dcff;
}

.hero-trust {
  max-width: 660px;
  margin-top: 22px;
}

.hero-trust p {
  margin: 0 0 10px;
  color: #dce6ee;
  font-size: 0.9rem;
  font-weight: 780;
}

.hero-trust div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-trust span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(116, 131, 147, 0.24);
  border-radius: 999px;
  background: rgba(16, 21, 27, 0.72);
  color: #c7d0d9;
  font-size: 0.82rem;
  font-weight: 760;
}

.rpb-hero-visual {
  position: absolute;
  top: 47%;
  right: -3%;
  z-index: 0;
  width: min(74%, 1120px);
  transform: translateY(-54%);
  pointer-events: none;
}

.rpb-hero-visual::before {
  content: "";
  position: absolute;
  inset: 6% 0 -8% 14%;
  z-index: -1;
  background:
    radial-gradient(circle at 40% 38%, rgba(57, 163, 255, 0.2), transparent 320px),
    radial-gradient(circle at 72% 72%, rgba(46, 212, 122, 0.12), transparent 340px);
  filter: blur(22px);
}

.screenshot-frame {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(116, 131, 147, 0.24);
  border-radius: var(--radius);
  background: #070c11;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.48);
  color: inherit;
  cursor: zoom-in;
  transition:
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease,
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.screenshot-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1);
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1), filter 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.screenshot-frame:hover img,
.screenshot-frame:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.06);
}

.screenshot-frame:focus-visible {
  outline: 2px solid rgba(57, 163, 255, 0.9);
  outline-offset: 4px;
}

.hero-media {
  position: relative;
  width: 100%;
  filter: drop-shadow(0 42px 110px rgba(0, 0, 0, 0.56));
  opacity: 0.86;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 16%, #000 78%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 12%, #000 82%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 16%, #000 78%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 12%, #000 82%, transparent 100%);
  mask-composite: intersect;
}

.hero-video,
.hero-poster,
.hero-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2696 / 1868;
  border-radius: 0;
  transform: scale(1);
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1), filter 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-poster {
  display: none;
}

.hero-image {
  aspect-ratio: auto;
}

.home-hero-slide {
  position: relative;
  inset: auto;
  opacity: 0;
  filter: saturate(1.03) contrast(1.02);
  animation: homeHeroPpa 10s ease-in-out infinite;
}

.home-hero-slide.is-backup {
  position: absolute;
  inset: 0;
  animation-name: homeHeroBackup;
}

.ppa-hero-media {
  animation: heroMediaDrift 9s ease-in-out infinite alternate;
}

.ppa-mockup-image {
  filter: saturate(1.04) contrast(1.02);
}

.hero-media:hover .hero-video,
.hero-media:hover .hero-poster,
.hero-media:hover .hero-image {
  transform: scale(1.06);
  filter: saturate(1.04);
}

@keyframes heroMediaDrift {
  from {
    transform: translate3d(0, 8px, 0) scale(1.01);
  }

  to {
    transform: translate3d(-14px, -6px, 0) scale(1.045);
  }
}

@keyframes homeHeroPpa {
  0%,
  38% {
    opacity: 1;
  }

  50%,
  88% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes homeHeroBackup {
  0%,
  38% {
    opacity: 0;
  }

  50%,
  88% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }

  .hero-poster {
    display: block;
  }

  .ppa-hero-media {
    animation: none;
  }

  .home-hero-slide {
    animation: none;
    opacity: 1;
  }

  .home-hero-slide.is-backup {
    display: none;
  }
}

.placeholder-window {
  border: 1px solid rgba(116, 131, 147, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    #10151b;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.48);
}

.placeholder-window.large {
  min-height: 510px;
  padding: 16px;
}

.placeholder-topbar {
  display: flex;
  gap: 8px;
  min-height: 34px;
  align-items: center;
  padding: 0 4px 12px;
  border-bottom: 1px solid rgba(116, 131, 147, 0.16);
}

.placeholder-topbar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.placeholder-topbar span:nth-child(1) { background: #ff5f57; }
.placeholder-topbar span:nth-child(2) { background: #ffbd2e; }
.placeholder-topbar span:nth-child(3) { background: #28c840; }

.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  min-height: 370px;
  padding: 24px 0 18px;
}

.placeholder-card {
  min-height: 150px;
  border: 1px solid rgba(116, 131, 147, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    #151b22;
}

.placeholder-card.wide {
  grid-column: 1 / -1;
  min-height: 170px;
}

.placeholder-card.accent-blue {
  box-shadow: inset 0 -3px 0 var(--blue);
}

.placeholder-card.accent-green {
  box-shadow: inset 0 -3px 0 var(--green);
}

.placeholder-window strong {
  display: block;
  padding: 10px 0 4px;
  color: #dce6ee;
  text-align: center;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-bottom: 28px;
  border: 1px solid rgba(116, 131, 147, 0.2);
  border-radius: var(--radius);
  background: rgba(116, 131, 147, 0.18);
}

.trust-strip span {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 10px;
  background: rgba(16, 21, 27, 0.92);
  color: #c7d0d9;
  font-size: 0.82rem;
  font-weight: 750;
  text-align: center;
}

.product-section {
  padding: 86px 0;
}

.compact-heading {
  display: block;
  margin-bottom: 30px;
}

.compact-heading h2 {
  max-width: 820px;
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  line-height: 0.98;
}

.feature-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.pricing-card,
.roadmap-card,
.faq-list details {
  border: 1px solid rgba(116, 131, 147, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 45%),
    #10151b;
}

.feature-card {
  min-height: 260px;
  padding: 22px;
}

.feature-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border: 1px solid rgba(57, 163, 255, 0.42);
  border-radius: 8px;
  background: rgba(57, 163, 255, 0.1);
}

.feature-icon::before,
.feature-icon::after {
  content: "";
  position: absolute;
}

.icon-backup::before {
  width: 20px;
  height: 20px;
  border: 3px solid var(--green);
  border-left-color: transparent;
  border-radius: 50%;
}

.icon-backup::after {
  width: 9px;
  height: 9px;
  border-top: 3px solid var(--green);
  border-right: 3px solid var(--green);
  transform: translate(8px, -5px) rotate(24deg);
}

.icon-mac::before {
  width: 25px;
  height: 18px;
  border: 2px solid #b9c5cf;
  border-radius: 4px;
}

.icon-mac::after {
  width: 18px;
  height: 2px;
  background: #b9c5cf;
  transform: translateY(13px);
}

.icon-diagnostics::before {
  width: 24px;
  height: 16px;
  border-left: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  transform: skewX(-14deg);
}

.icon-diagnostics::after {
  width: 24px;
  height: 2px;
  background: var(--gold);
  transform: rotate(-24deg);
}

.icon-license::before {
  width: 22px;
  height: 28px;
  border: 2px solid var(--blue);
  border-radius: 4px;
}

.icon-license::after {
  width: 14px;
  height: 3px;
  background: var(--green);
  box-shadow: 0 7px 0 rgba(46, 212, 122, 0.64);
  transform: translateY(3px);
}

.feature-card h3,
.pricing-card h3,
.roadmap-card h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.feature-card p,
.roadmap-card li,
.pricing-card li,
.faq-list p,
.support-note,
.pricing-note {
  color: var(--muted);
  line-height: 1.55;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  height: 620px;
}

.gallery-screenshot {
  height: 100%;
  min-height: 0;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}

.gallery-screenshot.large {
  grid-row: span 3;
  min-height: 0;
}

.gallery-screenshot img {
  object-fit: cover;
  object-position: top center;
}

.gallery-screenshot:hover,
.gallery-screenshot:focus-visible {
  border-color: rgba(116, 131, 147, 0);
  background: transparent;
  box-shadow: none;
}

.gallery-screenshot.large img {
  object-fit: contain;
  object-position: center;
}

.screenshot-preview {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(3, 7, 11, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.screenshot-preview.is-active {
  opacity: 1;
}

.screenshot-preview.is-clicked {
  pointer-events: auto;
}

.screenshot-preview-inner {
  position: relative;
  width: min(94vw, 1800px);
  max-height: 88vh;
  transform: translateY(18px) scale(0.82);
  opacity: 0;
  transition:
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.screenshot-preview.is-active .screenshot-preview-inner {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.screenshot-preview img {
  display: block;
  width: 100%;
  max-height: 84vh;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: 0 44px 140px rgba(0, 0, 0, 0.72);
}

.screenshot-preview-title {
  display: none;
}

.screenshot-preview-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(116, 131, 147, 0.34);
  border-radius: 50%;
  background: rgba(16, 21, 27, 0.94);
  color: #e8f4ff;
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

.screenshot-placeholder,
.video-placeholder {
  border: 1px solid rgba(116, 131, 147, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(57, 163, 255, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    #0f141a;
}

.screenshot-placeholder {
  min-height: 260px;
  display: grid;
  place-items: center;
  padding: 24px;
  color: #d7e0e8;
  font-weight: 760;
  text-align: center;
}

.screenshot-placeholder.large {
  grid-row: span 3;
  min-height: 620px;
}

.video-placeholder {
  min-height: 500px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 32px;
  text-align: center;
}

.play-mark {
  width: 70px;
  height: 70px;
  border: 1px solid rgba(57, 163, 255, 0.46);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 0 38%, #e8f4ff 38% 62%, transparent 62%),
    rgba(57, 163, 255, 0.12);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.video-placeholder strong {
  font-size: 1.35rem;
}

.video-placeholder p {
  margin: 0;
  color: var(--muted);
}

.walkthrough-player {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(116, 131, 147, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 42%, rgba(57, 163, 255, 0.1), transparent 38%),
    #070c11;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.34);
}

.walkthrough-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #070c11;
}

.walkthrough-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background:
    radial-gradient(circle at center, rgba(7, 12, 17, 0.08), rgba(7, 12, 17, 0.5));
  cursor: pointer;
  transition: opacity 180ms ease, background 180ms ease;
}

.walkthrough-play span {
  position: relative;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(80, 176, 255, 0.58);
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(57, 163, 255, 0.94), rgba(23, 115, 203, 0.94)),
    rgba(12, 20, 29, 0.78);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.36),
    0 0 34px rgba(57, 163, 255, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.walkthrough-play span::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 36px;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 26px solid #f4f9ff;
}

.walkthrough-play:hover,
.walkthrough-play:focus-visible {
  background:
    radial-gradient(circle at center, rgba(57, 163, 255, 0.12), rgba(7, 12, 17, 0.54));
}

.walkthrough-play:hover span,
.walkthrough-play:focus-visible span {
  transform: scale(1.06);
  box-shadow:
    0 20px 54px rgba(0, 0, 0, 0.4),
    0 0 44px rgba(57, 163, 255, 0.28);
}

.walkthrough-player.is-playing .walkthrough-play {
  pointer-events: none;
  opacity: 0;
}

.ppa-privacy-section {
  padding-top: clamp(70px, 8vw, 130px);
}

.ppa-privacy-heading h2 {
  max-width: 1180px;
  font-size: clamp(3rem, 7vw, 8.2rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.ppa-privacy-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.68fr);
  gap: clamp(36px, 7vw, 130px);
  align-items: center;
  max-width: 1240px;
  margin-top: clamp(26px, 3.8vw, 58px);
}

.ppa-privacy-intro {
  max-width: 980px;
}

.ppa-privacy-intro p {
  margin: 0;
  color: rgba(230, 238, 247, 0.74);
  font-size: clamp(1.04rem, 1.2vw, 1.28rem);
  line-height: 1.68;
}

.ppa-privacy-intro p + p {
  margin-top: 14px;
}

.ppa-privacy-intro strong {
  color: #fff;
}

.ppa-privacy-icon-block {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  min-height: clamp(330px, 28vw, 465px);
}

.ppa-privacy-icon-block img {
  display: block;
  width: auto;
  height: clamp(320px, 27vw, 452px);
  max-width: 100%;
  object-fit: contain;
  opacity: 0.92;
  filter:
    drop-shadow(0 28px 72px rgba(0, 0, 0, 0.28))
    drop-shadow(0 0 34px rgba(57, 163, 255, 0.12));
}

.ppa-privacy-card {
  display: grid;
  gap: clamp(22px, 3vw, 42px);
  margin-top: clamp(28px, 4vw, 64px);
  padding: clamp(24px, 4vw, 62px);
  border: 1px solid rgba(64, 91, 116, 0.34);
  border-radius: 22px;
  background:
    radial-gradient(circle at 12% 8%, rgba(42, 163, 255, 0.15), transparent 32%),
    radial-gradient(circle at 86% 82%, rgba(24, 244, 230, 0.08), transparent 34%),
    linear-gradient(145deg, rgba(18, 27, 37, 0.74), rgba(4, 9, 14, 0.9)),
    rgba(5, 10, 16, 0.84);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.ppa-privacy-disclaimer {
  max-width: 1160px;
  color: rgba(230, 238, 247, 0.46);
  font-size: clamp(0.66rem, 0.72vw, 0.78rem);
  line-height: 1.55;
}

.ppa-privacy-disclaimer h3 {
  margin: 0 0 10px;
  color: rgba(245, 247, 251, 0.62);
  font-size: 0.78rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.ppa-privacy-disclaimer p {
  margin: 0;
}

.ppa-privacy-disclaimer p + p {
  margin-top: 9px;
}

.ppa-privacy-disclaimer strong {
  color: rgba(255, 255, 255, 0.72);
}

.ppa-privacy-disclaimer ul {
  display: grid;
  gap: 3px;
  margin: 8px 0 9px;
  padding-left: 18px;
}

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

.pricing-card {
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  padding: 26px;
}

.pricing-card.featured {
  border-color: rgba(57, 163, 255, 0.48);
  box-shadow: 0 24px 90px rgba(16, 94, 178, 0.16);
}

.price {
  display: block;
  margin: 10px 0 20px;
  color: var(--ink);
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 1;
}

.pricing-card ul,
.roadmap-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.pricing-card li.feature-emphasis {
  color: #e8f4ff;
  font-weight: 820;
}

.pricing-card li.feature-emphasis::marker {
  color: var(--blue);
}

.pricing-note {
  max-width: 740px;
  margin: 20px 0 0;
  font-size: 0.92rem;
}

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

.ppa-pricing-card {
  min-height: 610px;
}

.ppa-pricing-card h3 {
  margin-top: 12px;
}

.ppa-pricing-card .price {
  margin-bottom: 18px;
  font-size: clamp(3.1rem, 5vw, 4.65rem);
}

.ppa-pricing-card p {
  color: rgba(230, 238, 247, 0.82);
}

.ppa-pricing-card li {
  line-height: 1.28;
}

.release-status-block {
  max-width: 820px;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 0.55fr) minmax(0, 1.25fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 22px;
  border: 1px solid rgba(116, 131, 147, 0.22);
  border-radius: var(--radius);
  background: rgba(116, 131, 147, 0.16);
}

.release-status-block > div {
  min-height: 92px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 50%),
    rgba(16, 21, 27, 0.94);
}

.release-status-block span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.release-status-block strong {
  display: block;
  color: #e8f4ff;
  font-size: 1.2rem;
}

.release-status-block ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.release-status-block li {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(46, 212, 122, 0.26);
  border-radius: 999px;
  background: rgba(46, 212, 122, 0.09);
  color: #c9f5dd;
  font-size: 0.78rem;
  font-weight: 760;
}

.download-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 42px);
  background: rgba(3, 7, 11, 0.74);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.download-modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

body.download-modal-open {
  overflow: hidden;
}

.download-modal-card {
  position: relative;
  width: min(100%, 640px);
  max-height: min(90vh, 760px);
  overflow: auto;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(116, 131, 147, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 0, rgba(57, 163, 255, 0.16), transparent 320px),
    radial-gradient(circle at 88% 100%, rgba(46, 212, 122, 0.09), transparent 300px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), transparent 48%),
    #0f141a;
  box-shadow: 0 44px 140px rgba(0, 0, 0, 0.72);
  transform: translateY(16px) scale(0.97);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.download-modal.is-active .download-modal-card {
  transform: translateY(0) scale(1);
}

.download-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(116, 131, 147, 0.34);
  border-radius: 50%;
  background: rgba(16, 21, 27, 0.94);
  color: #e8f4ff;
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

.download-modal-header {
  max-width: 520px;
  padding-right: 34px;
}

.download-modal-header h2 {
  margin: 0;
  font-size: clamp(2rem, 4.3vw, 3.35rem);
  line-height: 0.98;
}

.download-modal-copy {
  margin-top: 18px;
}

.download-modal-copy p,
.download-modal-note {
  color: var(--muted);
  line-height: 1.58;
}

.download-registration-form {
  margin-top: 24px;
}

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

.form-full {
  grid-column: 1 / -1;
}

.download-registration-form label {
  display: grid;
  gap: 8px;
}

.download-registration-form label span {
  color: #dce6ee;
  font-size: 0.82rem;
  font-weight: 820;
}

.download-registration-form input {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid rgba(116, 131, 147, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    rgba(7, 12, 17, 0.72);
  color: var(--ink);
  font: inherit;
}

.download-registration-form input:focus {
  border-color: rgba(57, 163, 255, 0.72);
  outline: 3px solid rgba(57, 163, 255, 0.18);
}

.consent-check {
  align-items: flex-start;
  border: 1px solid rgba(116, 131, 147, 0.24);
  border-radius: var(--radius);
  color: var(--muted-2);
  display: flex;
  gap: 10px;
  line-height: 1.45;
  padding: 12px 13px;
}

.download-registration-form .consent-check input {
  flex: 0 0 auto;
  height: 16px;
  margin-top: 3px;
  min-height: 0;
  padding: 0;
  width: 16px;
}

.download-registration-form .consent-check span {
  color: var(--muted-2);
  display: block;
  font-size: 0.86rem;
  font-weight: 680;
}

.download-modal-note {
  margin: 14px 0 0;
  font-size: 0.86rem;
}

.download-modal-error {
  min-height: 22px;
  margin: 12px 0 0;
  color: #ffb1ad;
  font-size: 0.88rem;
  font-weight: 720;
}

.download-modal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 22px;
}

.download-modal-promo {
  margin-top: 18px;
  padding: 15px;
  border: 1px solid rgba(57, 163, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(57, 163, 255, 0.07);
}

.download-modal-promo p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.download-modal-promo p + p {
  margin-top: 4px;
}

.download-modal-promo strong {
  color: var(--ink);
}

.download-modal-promo a {
  display: inline-flex;
  margin-top: 8px;
  color: #86c6ff;
  font-size: 0.9rem;
  font-weight: 760;
}

.ppa-beta-modal-card {
  width: min(100%, 760px);
}

.ppa-beta-modal-card .status-badge {
  margin-bottom: 12px;
}

.ppa-beta-notice {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid rgba(255, 171, 64, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 145, 25, 0.07);
}

.ppa-beta-notice h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1rem;
}

.ppa-beta-notice ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.5;
}

.ppa-beta-feedback-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(57, 163, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(57, 163, 255, 0.07);
}

.ppa-beta-feedback-callout h3,
.ppa-beta-feedback-callout p {
  margin: 0;
}

.ppa-beta-feedback-callout h3 {
  color: var(--ink);
  font-size: 1rem;
}

.ppa-beta-feedback-callout p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.9rem;
}

.ppa-beta-registration-form {
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(116, 131, 147, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.ppa-beta-registration-form .download-modal-copy {
  margin-top: 0;
  margin-bottom: 14px;
}

.ppa-beta-registration-form .ppa-beta-update-consent {
  margin-top: 14px;
}

.ppa-beta-acknowledgement {
  margin-top: 18px;
}

.ppa-beta-availability {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.ppa-beta-availability.is-ready {
  color: #69e79c;
}

.ppa-beta-availability.is-pending {
  color: #ffc273;
}

.button:disabled {
  cursor: not-allowed;
  filter: none;
  opacity: 0.42;
  transform: none;
}

.beta-feedback-entry {
  padding-top: 18px;
  padding-bottom: 18px;
}

.beta-feedback-entry-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 28px;
  border: 1px solid rgba(57, 163, 255, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(24, 95, 158, 0.18), rgba(9, 15, 22, 0.2)),
    var(--panel);
}

.beta-feedback-entry-card h2,
.beta-feedback-entry-card p {
  margin: 0;
}

.beta-feedback-entry-card h2 {
  margin-top: 8px;
  color: var(--ink);
}

.beta-feedback-entry-card p:last-child {
  max-width: 760px;
  margin-top: 10px;
  color: var(--muted);
}

.beta-feedback-page-hero {
  padding-bottom: 36px;
}

.beta-feedback-form-card {
  max-width: 1080px;
  margin: 0 auto 96px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.beta-feedback-form {
  display: grid;
  gap: 22px;
}

.beta-feedback-type {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.beta-feedback-type legend {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 760;
}

.beta-feedback-type label {
  position: relative;
  display: grid;
  gap: 4px;
  min-height: 86px;
  padding: 16px 18px 16px 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
}

.beta-feedback-type input {
  position: absolute;
  top: 19px;
  left: 18px;
  width: 18px;
  height: 18px;
  accent-color: #2b9cff;
}

.beta-feedback-type strong {
  color: var(--ink);
}

.beta-feedback-type span {
  color: var(--muted);
  font-size: 0.85rem;
}

.beta-feedback-type label:has(input:checked) {
  border-color: rgba(57, 163, 255, 0.72);
  background: rgba(57, 163, 255, 0.1);
}

.beta-feedback-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.beta-feedback-field {
  display: grid;
  gap: 8px;
}

.beta-feedback-field.is-wide {
  grid-column: 1 / -1;
}

.beta-feedback-field > span {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 720;
}

.beta-feedback-field input,
.beta-feedback-field select,
.beta-feedback-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 5px;
  outline: none;
  background: #0b1118;
  color: var(--ink);
  font: inherit;
}

.beta-feedback-field input,
.beta-feedback-field select {
  min-height: 48px;
  padding: 0 14px;
}

.beta-feedback-field textarea {
  min-height: 132px;
  padding: 13px 14px;
  resize: vertical;
}

.beta-feedback-field input:focus,
.beta-feedback-field select:focus,
.beta-feedback-field textarea:focus {
  border-color: rgba(57, 163, 255, 0.78);
  box-shadow: 0 0 0 3px rgba(57, 163, 255, 0.1);
}

.beta-feedback-note {
  margin: 0;
  padding: 14px 16px;
  border-left: 2px solid #2b9cff;
  background: rgba(57, 163, 255, 0.06);
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.beta-feedback-form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 680;
}

.beta-feedback-form-status.is-success {
  color: #69e79c;
}

.beta-feedback-form-status.is-error {
  color: #ff9d98;
}

.beta-feedback-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cta-trust-line {
  margin: -16px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

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

.ppa-roadmap-grid {
  grid-template-columns: minmax(0, 720px);
}

.roadmap-card {
  min-height: 330px;
  padding: 24px;
}

.roadmap-card h3 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.status-badge.dark-blue {
  background: rgba(24, 69, 126, 0.9);
}

.ai-support-band,
.final-product-cta,
.product-cross-promo {
  border: 1px solid rgba(57, 163, 255, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 0, rgba(57, 163, 255, 0.16), transparent 360px),
    radial-gradient(circle at 88% 100%, rgba(46, 212, 122, 0.1), transparent 320px),
    #0f141a;
}

.product-cross-promo {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 32px;
  align-items: center;
  padding: 34px 38px;
}

.product-cross-promo h2 {
  max-width: 720px;
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.2vw, 3.8rem);
  line-height: 1;
}

.product-cross-promo p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.5;
}

.product-cross-promo p + p {
  margin-top: 6px;
}

.cross-promo-kicker {
  color: #dce6ee !important;
  font-weight: 760;
}

.product-cross-promo .button {
  margin-top: 18px;
}

.thank-you-cross-promo {
  margin-top: 0;
}

.ai-support-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  padding: 38px;
}

.ai-support-band h2,
.final-product-cta h2 {
  max-width: 820px;
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.7vw, 4.4rem);
  line-height: 1;
}

.ai-support-band p:not(.eyebrow),
.support-note {
  max-width: 640px;
  margin-bottom: 0;
}

.support-note {
  margin-top: 12px;
  font-size: 0.86rem;
}

.coming-soon-label {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  margin: 12px 0 0;
  padding: 0 10px;
  border: 1px solid rgba(116, 131, 147, 0.26);
  border-radius: 999px;
  background: rgba(116, 131, 147, 0.08);
  color: #b8c4cf;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0 20px;
}

.faq-list summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: var(--ink);
  font-weight: 760;
}

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

.faq-list p {
  margin: -4px 0 18px;
}

.faq-list ul {
  display: grid;
  gap: 8px;
  margin: -4px 0 18px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.final-product-cta {
  margin-top: 48px;
  margin-bottom: 82px;
  padding: 46px;
}

.final-product-cta .hero-actions {
  margin-top: 24px;
}

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

/* UI Masters inspired website layer */
.app-window {
  overflow: hidden;
  border: 1px solid rgba(116, 131, 147, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0, rgba(41, 118, 202, 0.12), transparent 380px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    #0d1116;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.44);
}

.window-topbar {
  min-height: 46px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(116, 131, 147, 0.18);
  background: rgba(12, 16, 21, 0.86);
}

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

.window-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.window-dots span:nth-child(1) { background: #ff5f57; }
.window-dots span:nth-child(2) { background: #ffbd2e; }
.window-dots span:nth-child(3) { background: #28c840; }

.window-title {
  color: #d9e1ea;
  font-size: 0.92rem;
  font-weight: 650;
}

.window-status {
  justify-self: end;
  display: flex;
  gap: 8px;
}

.console-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  min-height: 650px;
}

.console-sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 26px 18px 18px;
  border-right: 1px solid rgba(116, 131, 147, 0.18);
  background: rgba(7, 10, 14, 0.5);
}

.console-logo {
  width: 154px;
  height: auto;
  margin: 0 0 22px 10px;
}

.side-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 6px;
  color: #dce4eb;
  font-size: 0.94rem;
}

.side-item.is-active,
.side-item:hover,
.side-item:focus-visible {
  background: rgba(255, 255, 255, 0.055);
}

.side-item.is-active {
  box-shadow: inset 3px 0 0 var(--red);
}

.side-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(116, 131, 147, 0.46);
  border-radius: 50%;
  color: #aeb9c5;
  font-size: 0.72rem;
  font-weight: 800;
}

.side-status {
  margin-top: auto;
  padding: 14px;
  border: 1px solid rgba(116, 131, 147, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.side-status span,
.side-status small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.side-status strong {
  display: block;
  margin: 6px 0 12px;
  color: var(--ink);
  font-size: 0.88rem;
}

.console-main {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: 32px;
  align-items: center;
  padding: 52px 56px;
}

.hero {
  min-height: calc(100vh - 68px);
  display: block;
  padding: 32px 0 40px;
}

.hero-copy-block {
  max-width: 720px;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 5vw, 5.6rem);
  line-height: 1;
  text-shadow: none;
}

.hero-copy {
  max-width: 620px;
  color: #b7c1ca;
  font-size: 1.08rem;
}

.eyebrow {
  color: var(--blue);
  letter-spacing: 0;
}

.button {
  min-height: 42px;
  padding: 0 18px;
  border-color: rgba(30, 111, 230, 0.9);
  background: linear-gradient(180deg, #1772f1, #1456cc);
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.button.secondary,
.button.ghost {
  border-color: rgba(116, 131, 147, 0.32);
  background: rgba(255, 255, 255, 0.04);
}

.health-panel {
  border: 1px solid rgba(116, 131, 147, 0.24);
  border-radius: 8px;
  background: rgba(9, 13, 18, 0.74);
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid rgba(116, 131, 147, 0.18);
}

.panel-head strong {
  display: block;
  font-size: 1rem;
}

.panel-head span:not(.status-badge) {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
}

.check-list {
  display: grid;
}

.check-row {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 76px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(116, 131, 147, 0.14);
}

.check-row strong,
.feature-rows strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
}

.check-row small,
.feature-rows small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.8rem;
}

.check-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(65, 149, 255, 0.78);
  border-radius: 6px;
  background: rgba(65, 149, 255, 0.1);
}

.check-icon::before,
.check-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  color: #2f91ff;
}

.check-icon.server::before {
  width: 14px;
  height: 8px;
  border: 1px solid currentColor;
  border-radius: 2px;
  background: transparent;
}

.check-icon.server::after {
  width: 12px;
  height: 1px;
  transform: translateY(7px);
}

.check-icon.volume {
  color: #aeb9c5;
  border-color: rgba(174, 185, 197, 0.56);
  background: rgba(174, 185, 197, 0.08);
}

.check-icon.volume::before {
  width: 16px;
  height: 10px;
  border-radius: 3px;
  background: currentColor;
}

.check-icon.analytics {
  color: #54d268;
  border-color: rgba(84, 210, 104, 0.56);
  background: rgba(84, 210, 104, 0.08);
}

.check-icon.analytics::before {
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: transparent;
}

.check-icon.analytics::after {
  width: 7px;
  height: 2px;
  transform: rotate(45deg) translate(8px, 8px);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  color: white;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
}

.status-badge.ok { background: rgba(59, 186, 84, 0.86); }
.status-badge.info { background: rgba(30, 111, 230, 0.88); }
.status-badge.trial { background: rgba(226, 143, 32, 0.88); }
.status-badge.neutral { background: rgba(107, 116, 128, 0.84); }
.status-badge.failed { background: rgba(224, 49, 58, 0.9); }

.progress-line {
  height: 32px;
  padding: 14px 18px;
}

.progress-line span {
  display: block;
  height: 5px;
  width: 68%;
  border-radius: 999px;
  background: linear-gradient(90deg, #42c85a, #42c85a 72%, rgba(255, 255, 255, 0.08) 72%);
}

.products-band {
  padding: 36px 0 72px;
}

.section-heading h2 {
  font-size: clamp(2rem, 3.5vw, 3.7rem);
}

.product-tile {
  min-height: 370px;
  border-color: rgba(116, 131, 147, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.034), transparent 42%),
    #10141a;
}

.product-titlebar {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(116, 131, 147, 0.18);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.product-card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 0 0 18px;
  border: 1px solid rgba(116, 131, 147, 0.22);
  border-radius: var(--radius);
  background: #070c11;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.product-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 38%, rgba(0, 0, 0, 0.2)),
    radial-gradient(circle at 74% 18%, rgba(57, 163, 255, 0.12), transparent 42%);
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.02);
  filter: saturate(1.04) contrast(1.02);
}

.feature-rows {
  display: grid;
  gap: 0;
  margin: 20px 0 0;
  border: 1px solid rgba(116, 131, 147, 0.16);
  border-radius: 8px;
  overflow: hidden;
}

.feature-rows > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 62px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.feature-rows > div + div {
  border-top: 1px solid rgba(116, 131, 147, 0.14);
}

.split-band {
  background: #0b0e12;
}

.home-page {
  background:
    radial-gradient(circle at 54% -120px, rgba(40, 128, 255, 0.08), transparent 460px),
    linear-gradient(180deg, #080b0f 0, #080b0f 620px, #0b0e12 100%);
}

.home-page .site-header {
  border-bottom-color: rgba(72, 84, 99, 0.18);
  background: rgba(8, 11, 15, 0.76);
}

.hero-classic {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.15fr);
  gap: 64px;
  align-items: center;
  overflow: hidden;
  padding: 14px 0 76px;
}

.hero-classic::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -70px;
  bottom: 0;
  left: calc((100vw - 100%) / -2);
  right: calc((100vw - 100%) / -2);
  background:
    linear-gradient(180deg, rgba(8, 11, 15, 0.98) 0%, rgba(8, 11, 15, 0.9) 92px, rgba(8, 11, 15, 0.36) 260px, rgba(8, 11, 15, 0.74) 100%),
    radial-gradient(circle at 17% 30%, rgba(31, 113, 196, 0.11), transparent 300px),
    radial-gradient(circle at 92% 34%, rgba(42, 175, 102, 0.07), transparent 320px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #080b0f;
  background-size: auto, auto, 34px 34px, 34px 34px, auto;
}

.hero-classic::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 11, 15, 0.98) 0%, rgba(8, 11, 15, 0.94) 32%, rgba(8, 11, 15, 0.48) 54%, transparent 78%),
    radial-gradient(circle at 22% 48%, rgba(8, 11, 15, 0.86), transparent 36%),
    linear-gradient(180deg, rgba(8, 11, 15, 0.2), transparent 42%, rgba(8, 11, 15, 0.82) 100%);
}

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

.hero-classic .hero-logo {
  width: min(360px, 78vw);
  height: auto;
  margin: 46px 0 48px;
  filter: drop-shadow(0 0 38px rgba(57, 163, 255, 0.16));
}

.hero-classic h1 {
  max-width: 660px;
  margin-bottom: 30px;
  font-size: clamp(4.4rem, 8.2vw, 8.4rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-shadow: none;
}

.hero-classic .hero-copy {
  max-width: 620px;
  color: #b8c1cc;
  font-size: clamp(1.08rem, 1.55vw, 1.42rem);
  line-height: 1.62;
}

.hero-classic .hero-actions {
  margin-top: 36px;
}

.hero-classic .button {
  min-height: 50px;
  padding: 0 26px;
  font-size: 1.02rem;
}

.hero-classic .button.secondary {
  background: linear-gradient(180deg, #2a3039, #15191f);
  border-color: rgba(145, 159, 176, 0.4);
}

.home-hero-visual {
  position: absolute;
  top: 47%;
  right: -7%;
  z-index: 0;
  width: min(78vw, 1260px);
  min-height: 0;
  display: block;
  transform: translateY(-50%);
  pointer-events: none;
}

.home-hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 2% -10% 10%;
  z-index: -1;
  background:
    radial-gradient(circle at 42% 38%, rgba(57, 163, 255, 0.2), transparent 360px),
    radial-gradient(circle at 74% 70%, rgba(46, 212, 122, 0.11), transparent 320px);
  filter: blur(24px);
}

.home-hero-visual .hero-media {
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 7%, #000 82%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 12%, #000 82%, transparent 100%);
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 7%, #000 82%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 12%, #000 82%, transparent 100%);
}

.hero-visual-carousel {
  position: relative;
  min-height: 640px;
  perspective: 1200px;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(88px, 10px, 0) scale(0.965) rotateY(-6deg);
  transform-origin: center;
  filter: blur(8px);
  transition:
    opacity 1650ms ease,
    transform 1650ms cubic-bezier(0.16, 0.84, 0.18, 1),
    filter 1650ms ease;
}

.carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1) rotateY(0);
  filter: blur(0);
}

.carousel-slide.is-exiting {
  opacity: 0;
  transform: translate3d(-112px, -10px, 0) scale(1.035) rotateY(6deg);
  filter: blur(10px);
}

@media (prefers-reduced-motion: reduce) {
  .carousel-slide {
    transition: opacity 220ms ease;
    transform: none;
    filter: none;
  }

  .carousel-slide.is-active,
  .carousel-slide.is-exiting {
    transform: none;
    filter: none;
  }
}

.hero-visual-carousel .showcase,
.screenshot-showcase {
  width: 100%;
  min-height: 560px;
  border: 1px solid rgba(108, 126, 145, 0.42);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.hero-visual-carousel .product-preview {
  min-height: 455px;
}

.screenshot-showcase {
  overflow: hidden;
  background: #071015;
}

.screenshot-showcase img,
.carousel-image {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: contain;
  object-position: center;
}

.hero-logo {
  width: min(360px, 82vw);
  height: auto;
  margin: 0 0 20px;
  filter: drop-shadow(0 0 32px rgba(57, 163, 255, 0.15));
}

.control-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: 10px;
  margin-bottom: 16px;
  border: 1px solid rgba(115, 132, 151, 0.2);
  border-radius: var(--radius);
  background: #0b0d11;
}

.control-strip span {
  min-height: 34px;
  border: 1px solid rgba(115, 132, 151, 0.18);
  border-radius: 6px;
  background: linear-gradient(180deg, #242a32, #12161b);
}

.control-strip span:nth-child(1) {
  border-color: rgba(57, 163, 255, 0.62);
  box-shadow: inset 0 -2px 0 var(--blue);
}

.control-strip span:nth-child(2) {
  box-shadow: inset 0 -2px 0 var(--gold);
}

.control-strip span:nth-child(3) {
  box-shadow: inset 0 -2px 0 var(--green);
}

.control-strip span:nth-child(4) {
  box-shadow: inset 0 -2px 0 var(--red);
}

.control-strip span:nth-child(5) {
  box-shadow: inset 0 -2px 0 var(--violet);
}

@media (max-width: 900px) {
  .nav {
    height: auto;
    min-height: 64px;
    flex-wrap: wrap;
    padding: 12px 0;
    gap: 14px;
  }

  .nav-links {
    width: 100%;
    margin-left: 0;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .nav-item {
    align-items: stretch;
  }

  .nav-menu {
    left: 0;
    width: min(300px, calc(100vw - 32px));
    transform: translate(0, -8px);
  }

  .has-menu:hover .nav-menu,
  .has-menu:focus-within .nav-menu {
    transform: translate(0, 0);
  }

  .hero,
  .split,
  .product-page,
  .product-detail-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .hero-stage {
    min-height: 420px;
  }

  .product-preview {
    min-height: 360px;
  }

  .product-grid,
  .other-tools-band .product-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-company-block {
    grid-template-columns: 1fr;
    padding-bottom: 28px;
  }

  .about-company-copy {
    padding-top: 10px;
  }

  .founder-card {
    grid-template-columns: minmax(180px, 0.42fr) minmax(0, 0.58fr);
    grid-template-rows: auto;
    width: 100%;
    max-width: none;
    min-width: 0;
    justify-self: stretch;
  }

  .founder-card > div:last-child {
    border-top: 0;
    border-left: 1px solid rgba(116, 131, 147, 0.18);
  }

  .founder-image::before {
    border-radius: var(--radius) 0 0 var(--radius);
  }

  .founder-image,
  .founder-image img {
    min-height: 320px;
  }

  .section-heading {
    display: block;
  }

  .hero-classic {
    gap: 34px;
    padding: 24px 0 62px;
  }

  .hero-classic .hero-logo {
    width: min(300px, 72vw);
    margin: 34px 0 34px;
  }

  .hero-visual-carousel {
    min-height: 460px;
  }

  .hero-visual-carousel .showcase,
  .screenshot-showcase,
  .screenshot-showcase img,
  .carousel-image {
    min-height: 430px;
  }

  .console-layout,
  .console-main {
    grid-template-columns: 1fr;
  }

  .console-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(116, 131, 147, 0.18);
  }

  .side-status {
    display: none;
  }

  .console-main {
    padding: 32px;
  }

  .window-topbar {
    grid-template-columns: auto 1fr;
  }

  .window-title {
    justify-self: end;
  }

  .window-status {
    grid-column: 1 / -1;
    justify-self: start;
    padding-bottom: 12px;
  }

  .rpb-nav {
    align-items: flex-start;
  }

  .header-actions {
    width: 100%;
    margin-left: 0;
  }

  .rpb-hero,
  .ai-support-band,
  .product-cross-promo,
  .ppa-version-section {
    grid-template-columns: 1fr;
  }

  .rpb-hero {
    min-height: auto;
    padding: 48px 0 56px;
  }

  .ppa-page .rpb-hero {
    padding: 44px 0 28px;
  }

  .rpb-hero-visual {
    top: 44%;
    right: -30%;
    width: 118vw;
    transform: translateY(-52%);
    opacity: 0.42;
  }

  .rpb-hero-visual::before {
    inset: 8% 0 -6% 0;
  }

  .rpb-hero::before {
    background:
      linear-gradient(90deg, #080d12 0%, rgba(8, 13, 18, 0.98) 42%, rgba(8, 13, 18, 0.66) 100%),
      linear-gradient(180deg, rgba(8, 13, 18, 0.86), transparent 28%, rgba(8, 13, 18, 0.86) 100%);
  }

  .rpb-hero-copy {
    width: min(100%, 720px);
  }

  .rpb-hero-copy h1 {
    font-size: clamp(3.2rem, 12vw, 5.4rem);
  }

  .placeholder-window.large {
    min-height: 420px;
  }

  .hero-media {
    width: 100%;
    margin-left: 0;
    opacity: 0.62;
  }

  .placeholder-grid {
    min-height: 300px;
  }

  .trust-strip,
  .feature-card-grid,
  .aligned-feature-grid,
  .ppa-feature-grid,
  .roadmap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .screenshot-grid,
  .aligned-media-grid,
  .pricing-grid,
  .release-status-block,
  .license-request-layout,
  .compact-footer {
    grid-template-columns: 1fr;
  }

  .screenshot-grid {
    height: auto;
  }

  .screenshot-placeholder.large {
    grid-row: auto;
    min-height: 420px;
  }

  .gallery-screenshot.large {
    grid-row: auto;
    min-height: 420px;
  }

  .gallery-screenshot {
    min-height: 300px;
  }

  .ai-support-band {
    padding: 28px;
  }

  .product-section {
    padding: 64px 0;
  }

  .ppa-app-integration-heading h2 {
    font-size: 2.2rem;
  }

  .ppa-supported-apps-board {
    aspect-ratio: auto;
    min-height: 0;
    padding: 28px;
  }

  .ppa-supported-apps-board h3 {
    font-size: 2rem;
  }

  .ppa-supported-group {
    gap: 28px;
  }

  .ppa-supported-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ppa-app-pill,
  .ppa-app-pill.large {
    min-height: 64px;
    font-size: 1.55rem;
  }

  .ppa-planned-group {
    margin-top: 46px;
  }

  .ppa-planned-grid {
    width: 100%;
    margin-top: 34px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .ppa-persona-buttons,
  .ppa-benefit-cloud.is-arranged {
    grid-template-columns: 1fr;
  }

  .ppa-benefit-cloud {
    min-height: 720px;
  }

  .ppa-benefit-card {
    width: min(270px, 46%);
  }

  .ppa-planned-note {
    margin-top: 24px;
    font-size: 0.95rem;
  }

  .ppa-version-copy {
    max-width: 760px;
  }

  .ppa-version-copy h2 {
    max-width: 12ch;
  }

  .ppa-network-diagram {
    min-height: 500px;
  }

  .product-placeholder-window {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .section,
  .nav {
    width: min(100% - 22px, 1180px);
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 10px;
    overflow: visible;
  }

  .nav-item {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-menu-trigger {
    width: 100%;
    justify-content: space-between;
  }

  .nav-menu {
    position: static;
    left: auto;
    width: 100%;
    flex-basis: 100%;
    margin-top: 2px;
    opacity: 1;
    pointer-events: auto;
    transform: none !important;
    visibility: visible;
  }

  .nav-menu::before {
    display: none;
  }

  .nav-action {
    flex-basis: 100%;
    width: max-content;
  }

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

  .rpb-hero {
    padding-top: 34px;
  }

  .ppa-page .rpb-hero {
    padding-top: 28px;
    padding-bottom: 20px;
  }

  .rpb-hero-visual {
    top: 36%;
    right: -58%;
    width: 165vw;
    opacity: 0.28;
  }

  .rpb-hero-copy h1 {
    font-size: 3.15rem;
  }

  .rpb-hero-copy .hero-copy {
    font-size: 1rem;
  }

  .placeholder-grid,
  .trust-strip,
  .feature-card-grid,
  .aligned-feature-grid,
  .ppa-feature-grid,
  .product-cross-promo,
  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .placeholder-window.large {
    min-height: 360px;
    padding: 12px;
  }

  .placeholder-grid {
    min-height: 250px;
    gap: 10px;
    padding-top: 18px;
  }

  .placeholder-card,
  .placeholder-card.wide {
    min-height: 78px;
  }

  .analytics-placeholder-grid .placeholder-card:nth-child(2) {
    transform: none;
  }

  .launch-badge {
    min-height: 32px;
    margin-top: 0;
    font-size: 0.72rem;
  }

  .aligned-video-placeholder,
  .aligned-screenshot-placeholder {
    min-height: 300px;
  }

  .ppa-version-section {
    gap: 28px;
  }

  .ppa-version-copy h2 {
    font-size: 2.55rem;
  }

  .ppa-version-copy p {
    font-size: 0.98rem;
  }

  .ppa-app-integration-heading h2 {
    font-size: 1.85rem;
  }

  .ppa-app-integration-heading p {
    font-size: 0.98rem;
  }

  .ppa-supported-apps-board {
    padding: 22px;
  }

  .ppa-supported-apps-board h3 {
    font-size: 1.55rem;
  }

  .ppa-app-pill,
  .ppa-app-pill.large {
    min-height: 58px;
    font-size: 1.16rem;
  }

  .ppa-planned-grid {
    grid-template-columns: 1fr;
  }

  .ppa-persona-panel {
    margin-top: 22px;
  }

  .ppa-persona-button {
    min-height: 58px;
  }

  .ppa-benefit-cloud {
    min-height: auto;
    padding: 14px;
  }

  .ppa-benefit-cloud:not(.is-arranged) {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ppa-benefit-card,
  .ppa-benefit-cloud.is-arranged .ppa-benefit-card {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    min-height: auto;
    transform: none;
  }

  .ppa-network-diagram {
    width: 100%;
    max-width: 100%;
    min-height: 760px;
    aspect-ratio: auto;
    overflow: hidden;
  }

  .network-node {
    width: calc(50% - 16px);
    min-height: 122px;
    padding: 14px;
    border-radius: 12px;
  }

  .node-a {
    top: 22px;
    left: 10px;
  }

  .node-b {
    top: 22px;
    right: 10px;
    left: auto;
  }

  .node-c {
    top: 168px;
    left: 10px;
    bottom: auto;
  }

  .node-d {
    top: 168px;
    right: 10px;
    left: auto;
    bottom: auto;
  }

  .node-e {
    top: 324px;
    left: 50%;
    bottom: auto;
    width: min(210px, calc(100% - 80px));
    min-height: 138px;
    transform: translateX(-50%);
  }

  .network-host {
    top: 590px;
    left: 50%;
    width: min(258px, calc(100% - 66px));
    min-height: 152px;
    padding: 26px 20px 20px;
    transform: translate(-50%, -50%);
  }

  .network-host strong {
    font-size: 1.22rem;
  }

  .host-mac {
    width: 112px;
    height: 36px;
  }

  .screen {
    width: 56px;
    height: 35px;
  }

  .screen::after {
    width: 30px;
    height: 5px;
    margin-top: 40px;
  }

  .network-node strong {
    margin-top: 13px;
    font-size: 0.9rem;
    line-height: 1.02;
    white-space: normal;
  }

  .network-node small {
    font-size: 0.7rem;
    line-height: 1.02;
  }

  .network-line {
    display: none;
  }

  .trust-strip span {
    min-height: 48px;
  }

  .compact-heading h2,
  .ai-support-band h2,
  .final-product-cta h2 {
    font-size: 2.2rem;
  }

  .feature-card,
  .pricing-card,
  .roadmap-card {
    min-height: auto;
    padding: 20px;
  }

  .founder-card {
    grid-template-columns: 1fr;
    grid-template-rows: 360px auto;
  }

  .founder-card > div:last-child {
    border-top: 1px solid rgba(116, 131, 147, 0.18);
    border-left: 0;
  }

  .founder-image::before {
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .founder-image {
    min-height: 0;
  }

  .founder-image img {
    min-height: 0;
  }

  .screenshot-placeholder,
  .screenshot-placeholder.large {
    min-height: 240px;
  }

  .hero-media,
  .gallery-screenshot,
  .gallery-screenshot.large {
    min-height: 220px;
  }

  .screenshot-preview {
    padding: 14px;
  }

  .screenshot-preview-inner {
    width: 100%;
    max-height: 92vh;
  }

  .screenshot-preview img {
    max-height: 88vh;
  }

  .screenshot-preview-close {
    top: 10px;
    right: 10px;
  }

  .video-placeholder {
    min-height: 330px;
  }

  .walkthrough-play span {
    width: 76px;
    height: 76px;
  }

  .walkthrough-play span::before {
    top: 22px;
    left: 30px;
    border-top-width: 16px;
    border-bottom-width: 16px;
    border-left-width: 23px;
  }

  .ai-support-band,
  .final-product-cta {
    padding: 24px;
  }

  .license-flow-card {
    padding: 20px;
  }

  .license-steps li {
    padding: 64px 16px 16px;
  }

  .license-steps li::before {
    top: 16px;
    left: 16px;
  }

  .license-upload-placeholder {
    min-height: 260px;
    padding: 22px;
  }

  .legal-notice-hero h1 {
    font-size: 2.9rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .download-modal-actions {
    justify-content: stretch;
  }

  .download-modal-actions .button {
    width: 100%;
  }

  .ppa-beta-feedback-callout,
  .beta-feedback-entry-card {
    grid-template-columns: 1fr;
  }

  .ppa-beta-feedback-callout .button,
  .beta-feedback-entry-card .button {
    width: 100%;
  }

  .beta-feedback-form-card {
    margin-bottom: 64px;
    padding: 20px;
  }

  .beta-feedback-type,
  .beta-feedback-grid {
    grid-template-columns: 1fr;
  }

  .beta-feedback-field.is-wide {
    grid-column: auto;
  }

  .notice-content {
    padding: 22px;
  }

  .notice-content h2 {
    margin-top: 32px;
    padding-top: 22px;
  }

  .final-product-cta {
    margin-bottom: 56px;
  }

  h1 {
    font-size: 3.4rem;
  }

  .product-preview {
    grid-template-columns: 1fr;
  }

  .backup-list {
    grid-column: auto;
  }

  .preview-meta {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

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

  .app-window {
    border-radius: 6px;
  }

  .console-sidebar {
    padding: 18px 12px;
  }

  .console-logo {
    width: 132px;
    margin-left: 8px;
  }

  .console-main {
    padding: 24px 16px;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .product-hero h1 {
    font-size: 3.45rem;
  }

  .product-app-icon {
    width: 76px;
    height: 76px;
    border-radius: 14px;
  }

  .hero-classic {
    padding-top: 18px;
  }

  .hero-classic .hero-logo {
    width: min(230px, 70vw);
    margin: 24px 0 26px;
  }

  .hero-classic h1 {
    font-size: 4rem;
  }

  .hero-classic .hero-copy {
    font-size: 1rem;
  }

  .hero-visual-carousel {
    min-height: 330px;
    overflow: hidden;
  }

  .carousel-slide {
    align-items: start;
  }

  .hero-visual-carousel .showcase,
  .screenshot-showcase,
  .screenshot-showcase img,
  .carousel-image {
    min-height: 320px;
  }

  .hero-visual-carousel .showcase,
  .screenshot-showcase {
    height: 320px;
  }

  .hero-visual-carousel .showcase {
    padding: 14px;
  }

  .hero-visual-carousel .product-preview {
    min-height: 0;
    height: 214px;
    grid-template-columns: 1fr 0.78fr;
    gap: 10px;
  }

  .hero-visual-carousel .preview-panel,
  .hero-visual-carousel .metric-stack,
  .hero-visual-carousel .backup-list {
    padding: 12px;
  }

  .hero-visual-carousel .panel-title {
    font-size: 1rem;
  }

  .hero-visual-carousel .signal {
    height: 92px;
    gap: 4px;
  }

  .hero-visual-carousel .preview-meta,
  .hero-visual-carousel .backup-list {
    display: none;
  }

  .hero-visual-carousel .metric-stack {
    gap: 8px;
  }

  .hero-visual-carousel .metric {
    padding: 10px;
  }

  .hero-visual-carousel .metric strong {
    font-size: 1.28rem;
  }

  .check-row {
    grid-template-columns: 34px 1fr;
  }

  .check-row .status-badge {
    grid-column: 2;
    justify-self: start;
  }

  .window-topbar {
    padding: 10px 12px;
  }
}

@media (max-width: 767px) and (orientation: portrait) {
  .nav {
    width: min(100% - 20px, 1180px);
    min-height: 0;
    padding: 8px 0;
    gap: 8px 12px;
  }

  .brand {
    gap: 8px;
  }

  .brand-logo {
    width: 92px;
    height: 28px;
  }

  .brand span {
    font-size: 0.92rem;
  }

  .nav-links {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    width: 100%;
    gap: 6px 12px;
    padding-bottom: 0;
    font-size: 0.88rem;
    overflow: visible;
  }

  .rpb-nav .nav-links {
    grid-template-columns: minmax(0, 1fr) auto auto auto;
  }

  .nav-item {
    position: relative;
    width: auto;
    min-width: 0;
    flex-direction: row;
    align-items: center;
  }

  .nav-menu-trigger {
    width: 100%;
    min-height: 36px;
    justify-content: space-between;
    padding: 0 10px;
    border: 1px solid rgba(116, 131, 147, 0.26);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.035);
  }

  .nav-menu-trigger::after {
    transition: transform 160ms ease;
  }

  .has-menu.is-open .nav-menu-trigger::after {
    transform: translateY(1px) rotate(225deg);
  }

  .nav-menu,
  .has-menu:hover .nav-menu,
  .has-menu:focus-within .nav-menu {
    position: absolute;
    z-index: 60;
    top: calc(100% + 6px);
    left: 0;
    width: min(330px, calc(100vw - 20px));
    margin-top: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px) !important;
    visibility: hidden;
  }

  .has-menu.is-open .nav-menu,
  .has-menu.is-open:hover .nav-menu,
  .has-menu.is-open:focus-within .nav-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) !important;
    visibility: visible;
  }

  .nav-menu a {
    padding: 9px 10px;
  }

  .nav-action {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 34px;
    padding: 7px 10px;
    text-align: center;
  }

  .header-actions {
    flex-direction: row;
    gap: 8px;
    width: 100%;
  }

  .header-actions .button.compact {
    min-height: 36px;
    padding: 0 10px;
    font-size: 0.82rem;
  }

  .rpb-hero {
    padding-top: 24px;
  }
}

@media (max-width: 900px) {
  .home-hero-visual {
    top: 48%;
    right: -34%;
    width: 126vw;
    opacity: 0.48;
  }

  .hero-classic::after {
    background:
      linear-gradient(90deg, rgba(8, 11, 15, 0.98) 0%, rgba(8, 11, 15, 0.9) 48%, rgba(8, 11, 15, 0.58) 100%),
      linear-gradient(180deg, rgba(8, 11, 15, 0.78), transparent 34%, rgba(8, 11, 15, 0.88) 100%);
  }
}

@media (max-width: 640px) {
  .home-hero-visual {
    top: 43%;
    right: -66%;
    width: 174vw;
    opacity: 0.32;
  }
}

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

.ai-assistant {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 120;
  font-family: inherit;
}

.ai-assistant-launcher {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: min(390px, calc(100vw - 40px));
  min-height: 62px;
  padding: 0 22px 0 16px;
  border: 1px solid rgba(80, 176, 255, 0.5);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(30, 47, 63, 0.94), rgba(12, 19, 27, 0.94)),
    rgba(8, 13, 18, 0.94);
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.48),
    0 0 48px rgba(57, 163, 255, 0.22);
  color: #f4f9ff;
  cursor: pointer;
  font-weight: 860;
  font-size: 0.95rem;
  line-height: 1.15;
  letter-spacing: 0;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.ai-assistant-launcher:hover,
.ai-assistant-launcher:focus-visible {
  border-color: rgba(80, 176, 255, 0.72);
  box-shadow:
    0 20px 54px rgba(0, 0, 0, 0.46),
    0 0 58px rgba(57, 163, 255, 0.3);
  transform: translateY(-2px);
}

.ai-assistant-launcher-icon {
  position: relative;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 68% 34%, #2ed47a 0 3px, transparent 4px),
    linear-gradient(135deg, rgba(57, 163, 255, 0.95), rgba(23, 115, 203, 0.86));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.ai-assistant-launcher-icon::before,
.ai-assistant-launcher-icon::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(244, 249, 255, 0.92);
}

.ai-assistant-launcher-icon::before {
  top: 9px;
  left: 9px;
  width: 17px;
  height: 2px;
  box-shadow: 0 7px 0 rgba(244, 249, 255, 0.72);
}

.ai-assistant-launcher-icon::after {
  right: 8px;
  bottom: 8px;
  width: 9px;
  height: 2px;
  transform: rotate(38deg);
}

.ai-assistant-panel {
  position: absolute;
  right: 0;
  bottom: 82px;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto auto auto;
  width: min(500px, calc(100vw - 36px));
  height: min(720px, calc(100vh - 126px));
  overflow: hidden;
  border: 1px solid rgba(116, 131, 147, 0.3);
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 8%, rgba(57, 163, 255, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(21, 30, 39, 0.98), rgba(8, 12, 17, 0.98));
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 200ms ease, transform 200ms ease;
}

.ai-assistant.is-open .ai-assistant-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.ai-assistant.is-expanded .ai-assistant-panel {
  position: fixed;
  right: 10vw;
  bottom: 10vh;
  width: 80vw;
  height: 80vh;
  max-width: 1280px;
  transform-origin: center;
}

.ai-assistant-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(116, 131, 147, 0.18);
}

.ai-assistant-kicker {
  display: block;
  margin-bottom: 5px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ai-assistant-header h2 {
  margin: 0;
  color: #f6f9fc;
  font-size: 1.08rem;
  line-height: 1.2;
}

.ai-assistant-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.ai-assistant-expand {
  display: grid;
  place-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(80, 176, 255, 0.28);
  border-radius: 999px;
  background: rgba(57, 163, 255, 0.1);
  color: #dcecff;
  cursor: pointer;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 860;
  line-height: 1;
}

.ai-assistant-expand:hover,
.ai-assistant-expand:focus-visible {
  border-color: rgba(80, 176, 255, 0.58);
  background: rgba(57, 163, 255, 0.16);
  color: #fff;
}

.ai-assistant-close {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(116, 131, 147, 0.22);
  border-radius: 50%;
  background: rgba(10, 16, 22, 0.76);
  color: #dce7f0;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.ai-assistant-status {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  row-gap: 2px;
  margin: 14px 16px 0;
  padding: 12px 13px;
  border: 1px solid rgba(57, 163, 255, 0.22);
  border-radius: 12px;
  background: rgba(57, 163, 255, 0.08);
}

.ai-assistant-status span {
  grid-row: span 2;
  width: 9px;
  height: 9px;
  margin-top: 4px;
  border-radius: 50%;
  background: #f5b83f;
  box-shadow: 0 0 16px rgba(245, 184, 63, 0.42);
}

.ai-assistant-status strong,
.ai-assistant-status small {
  line-height: 1.25;
}

.ai-assistant-status strong {
  color: #edf5ff;
  font-size: 0.84rem;
}

.ai-assistant-status small {
  color: rgba(169, 181, 196, 0.86);
  font-size: 0.76rem;
}

.ai-assistant-messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
  overflow-y: auto;
  padding: 16px;
}

.ai-message {
  max-width: 88%;
  padding: 11px 13px;
  border: 1px solid rgba(116, 131, 147, 0.18);
  border-radius: 14px;
  color: rgba(245, 249, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.45;
  white-space: pre-wrap;
}

.ai-message strong {
  color: #fff;
  font-weight: 900;
}

.ai-message-assistant {
  align-self: flex-start;
  background:
    linear-gradient(180deg, rgba(23, 31, 40, 0.96), rgba(13, 18, 24, 0.96));
}

.ai-message-user {
  align-self: flex-end;
  border-color: rgba(57, 163, 255, 0.3);
  background:
    linear-gradient(180deg, rgba(30, 122, 209, 0.92), rgba(18, 91, 166, 0.92));
  color: #f7fbff;
}

.ai-assistant.is-expanded .ai-message {
  max-width: min(74ch, 82%);
  font-size: 0.98rem;
  line-height: 1.55;
}

.ai-message.is-loading {
  color: rgba(233, 241, 248, 0.7);
}

.ai-assistant-prompts {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 16px 14px;
}

.ai-assistant-prompts button {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(80, 176, 255, 0.28);
  border-radius: 999px;
  background: rgba(57, 163, 255, 0.08);
  color: #dcecff;
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 780;
}

.ai-assistant-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 14px 16px;
  border-top: 1px solid rgba(116, 131, 147, 0.18);
}

.ai-assistant-form textarea {
  min-height: 48px;
  max-height: 120px;
  resize: vertical;
  border: 1px solid rgba(116, 131, 147, 0.28);
  border-radius: 13px;
  background: rgba(7, 12, 17, 0.92);
  color: #f5f8fc;
  font: inherit;
  font-size: 0.9rem;
  line-height: 1.35;
  padding: 12px 13px;
}

.ai-assistant-form textarea:focus {
  border-color: rgba(80, 176, 255, 0.62);
  outline: none;
  box-shadow: 0 0 0 3px rgba(57, 163, 255, 0.12);
}

.ai-assistant-form button {
  align-self: end;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(80, 176, 255, 0.38);
  border-radius: 13px;
  background: linear-gradient(180deg, #39a3ff, #1773cb);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.ai-assistant-note {
  margin: 0;
  padding: 0 16px 16px;
  color: rgba(169, 181, 196, 0.7);
  font-size: 0.75rem;
  line-height: 1.4;
}

.ai-assistant-note a {
  color: #9fd2ff;
}

@media (max-width: 640px) {
  .ai-assistant {
    right: 14px;
    bottom: 14px;
  }

  .ai-assistant-panel {
    right: -2px;
    bottom: 64px;
    width: calc(100vw - 24px);
    height: min(640px, calc(100vh - 92px));
    border-radius: 16px;
  }

  .ai-assistant-launcher {
    max-width: calc(100vw - 28px);
    min-height: 54px;
    padding: 0 14px 0 12px;
    font-size: 0.82rem;
  }

  .ai-assistant-launcher-icon {
    width: 30px;
    height: 30px;
    border-radius: 10px;
  }

  .ai-assistant.is-expanded .ai-assistant-panel {
    right: 10px;
    bottom: 10px;
    width: calc(100vw - 20px);
    height: calc(100vh - 20px);
    max-width: none;
  }

  .ai-assistant-header {
    padding: 16px 14px 12px;
  }

  .ai-assistant-controls {
    gap: 6px;
  }

  .ai-assistant-expand {
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.7rem;
  }
}

@media (max-width: 760px) {
  .support-ai-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .support-ai-card h2 {
    font-size: clamp(2rem, 12vw, 3.25rem);
  }

  .answer-grid,
  .answer-source-grid,
  .answer-use-case-band {
    grid-template-columns: 1fr;
  }

  .answer-card {
    min-height: 0;
    padding: 20px;
  }

  .answer-use-case-band {
    padding: 24px;
  }

  .answer-use-case-band .button {
    width: 100%;
  }
}

@media (max-width: 767px) and (orientation: portrait) {
  .ppa-network-mobile-raster {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  }

  .ppa-network-diagram {
    display: none;
  }

  .ppa-privacy-intro-layout {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
    margin-top: 20px;
  }

  .ppa-privacy-icon-block {
    order: -1;
    justify-content: center;
    min-height: 0;
  }

  .ppa-privacy-icon-block img {
    height: clamp(112px, 31vw, 166px);
    max-width: 50%;
  }

  .ppa-privacy-intro {
    width: 100%;
    max-width: none;
  }
}
