:root {
  --ink: #0c1930;
  --ink-soft: #44516a;
  --muted: #728098;
  --line: #dfe5ee;
  --line-strong: #ced7e5;
  --surface: #ffffff;
  --surface-soft: #f5f7fb;
  --surface-blue: #edf3ff;
  --blue: #285ee9;
  --blue-dark: #1e46c7;
  --blue-soft: #e8efff;
  --green: #0f9f79;
  --amber: #c77a16;
  --purple: #7956d8;
  --shadow-sm: 0 8px 28px rgba(25, 42, 74, .07);
  --shadow-md: 0 24px 70px rgba(30, 52, 92, .12);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --container: 1180px;
  --font: Inter, "SF Pro Display", "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

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

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

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

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 10px;
  color: #fff;
  background: var(--ink);
}

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

:focus-visible {
  outline: 3px solid rgba(40, 94, 233, .28);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 76px;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
  border-color: rgba(214, 222, 234, .9);
  box-shadow: 0 8px 30px rgba(25, 41, 70, .06);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

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

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(145deg, #3474ff, #1f4fd9);
  box-shadow: 0 9px 22px rgba(40, 94, 233, .24);
}

.brand-mark svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 17px;
  letter-spacing: -.02em;
}

.brand-copy em {
  margin-left: 3px;
  color: var(--blue);
  font-size: 11px;
  font-style: normal;
  letter-spacing: .04em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

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

.site-nav a {
  position: relative;
  color: #445169;
  font-size: 14px;
  font-weight: 650;
  transition: color .2s ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  border-radius: 2px;
  background: var(--blue);
  transition: transform .2s ease;
}

.site-nav a:hover {
  color: var(--ink);
}

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

.header-cta {
  margin-left: 30px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 15px;
  font-weight: 750;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

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

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #2f6bff, #4c4de2);
  box-shadow: 0 12px 28px rgba(46, 91, 224, .24);
}

.button-primary:hover {
  box-shadow: 0 16px 34px rgba(46, 91, 224, .31);
}

.button-secondary {
  border-color: var(--line-strong);
  color: var(--ink);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 6px 18px rgba(25, 42, 74, .05);
}

.button-secondary:hover {
  border-color: #b9c7dc;
  background: #fff;
  box-shadow: 0 10px 24px rgba(25, 42, 74, .09);
}

.button-small {
  min-height: 40px;
  padding: 0 17px;
  border-radius: 11px;
  color: #fff;
  background: var(--ink);
  font-size: 13px;
}

.button-light {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .13);
}

.button-block {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 106px;
  border-bottom: 1px solid #e6ebf3;
  background:
    linear-gradient(180deg, #fbfdff 0%, #f6f8fc 74%, #fff 100%);
}

.hero::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1200px;
  height: 100%;
  content: "";
  transform: translateX(-50%);
  opacity: .5;
  background-image: linear-gradient(rgba(64, 90, 132, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(64, 90, 132, .055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  pointer-events: none;
}

.hero-glow-one {
  top: 60px;
  right: -140px;
  width: 520px;
  height: 520px;
  background: rgba(97, 130, 255, .14);
}

.hero-glow-two {
  bottom: 60px;
  left: -190px;
  width: 440px;
  height: 440px;
  background: rgba(45, 189, 171, .1);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(400px, .86fr) minmax(590px, 1.14fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}

.eyebrow span {
  position: relative;
  width: 26px;
  height: 1px;
  background: currentColor;
}

.eyebrow span::after {
  position: absolute;
  top: -2px;
  right: 0;
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 50%;
  background: currentColor;
}

.hero h1 {
  max-width: 610px;
  margin-bottom: 24px;
  font-size: clamp(44px, 4.25vw, 66px);
  line-height: 1.12;
  letter-spacing: -.055em;
}

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

.hero-lead {
  max-width: 585px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.8;
}

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

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  list-style: none;
}

.hero-assurance li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-assurance i {
  position: relative;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #dff6ee;
}

.hero-assurance i::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 7px;
  height: 4px;
  content: "";
  transform: rotate(-45deg);
  border-bottom: 1.8px solid var(--green);
  border-left: 1.8px solid var(--green);
}

.product-stage {
  position: relative;
  min-width: 0;
  padding: 24px 10px 26px;
  perspective: 1400px;
}

.stage-halo {
  position: absolute;
  inset: 12% 2% 6%;
  transform: rotate(-3deg);
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(55, 112, 255, .2), rgba(119, 88, 220, .12) 55%, rgba(33, 181, 152, .14));
  filter: blur(26px);
}

.product-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(202, 213, 229, .95);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 36px 80px rgba(29, 47, 78, .2), 0 6px 18px rgba(40, 70, 120, .08);
  transform: rotateY(-4deg) rotateX(1.5deg);
  transform-origin: center;
}

.window-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 50px;
  align-items: center;
  padding: 0 17px;
  border-bottom: 1px solid #e7ebf2;
  background: #fbfcfe;
}

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

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

.window-dots i:nth-child(2) {
  background: #f6bd4d;
}

.window-dots i:nth-child(3) {
  background: #38c88f;
}

.window-title {
  color: #57647a;
  font-size: 10px;
  font-weight: 700;
}

.window-state {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  color: var(--green);
  font-size: 9px;
  font-weight: 700;
}

.window-state span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 3px rgba(15, 159, 121, .1);
}

.window-body {
  display: grid;
  grid-template-columns: 58px 1fr;
  min-height: 422px;
  background: #f8fafd;
}

.mock-sidebar {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 22px;
  padding: 20px 0;
  border-right: 1px solid #e7ebf2;
  background: #fff;
}

.mock-logo {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  margin-bottom: 5px;
  border-radius: 9px;
  color: #fff;
  background: var(--blue);
  font-size: 10px;
  font-weight: 800;
}

.mock-sidebar i {
  position: relative;
  width: 16px;
  height: 16px;
  border: 1.7px solid #b1bccd;
  border-radius: 5px;
}

.mock-sidebar i.active {
  border-color: var(--blue);
  background: var(--blue-soft);
  box-shadow: 0 0 0 7px var(--blue-soft);
}

.mock-content {
  min-width: 0;
  padding: 22px;
}

.mock-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 17px;
}

.mock-heading div {
  display: grid;
}

.mock-heading small {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 8px;
}

.mock-heading strong {
  font-size: 15px;
}

.mock-heading > span {
  padding: 4px 8px;
  border: 1px solid #dfe6f2;
  border-radius: 7px;
  color: #637086;
  background: #fff;
  font-size: 8px;
}

.mock-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.mock-metrics article {
  display: grid;
  padding: 13px;
  border: 1px solid #e4e9f2;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(32, 51, 84, .035);
}

.mock-metrics small {
  color: var(--muted);
  font-size: 8px;
}

.mock-metrics strong {
  margin: 4px 0 2px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
  letter-spacing: -.03em;
}

.mock-metrics em {
  color: var(--green);
  font-size: 8px;
  font-style: normal;
}

.mock-metrics em.warning {
  color: var(--amber);
}

.mock-lower {
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 10px;
  margin-top: 10px;
}

.mock-chart,
.mock-activity {
  position: relative;
  overflow: hidden;
  min-width: 0;
  height: 248px;
  padding: 14px;
  border: 1px solid #e4e9f2;
  border-radius: 12px;
  background: #fff;
}

.mock-chart-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 8px;
}

.mock-chart-title span {
  color: var(--muted);
}

.chart-grid {
  position: absolute;
  inset: 55px 14px 42px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.chart-grid i {
  display: block;
  height: 1px;
  background: #eef1f6;
}

.mock-chart > svg {
  position: absolute;
  right: 17px;
  bottom: 38px;
  left: 17px;
  width: calc(100% - 34px);
  height: 140px;
  overflow: visible;
}

.mock-chart .area {
  fill: url("#areaFill");
}

.mock-chart .line {
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-width: 4;
}

.chart-labels {
  position: absolute;
  right: 14px;
  bottom: 13px;
  left: 14px;
  display: flex;
  justify-content: space-between;
  color: #95a0b1;
  font-size: 7px;
}

.mock-activity {
  display: grid;
  align-content: start;
  gap: 8px;
}

.mock-activity > article {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 7px;
  padding: 9px 0;
  border-bottom: 1px solid #edf0f5;
}

.mock-activity > article:last-child {
  border: 0;
}

.mock-activity article > i {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: #e8efff;
}

.mock-activity article > i.buy {
  background: #fff3e3;
}

.mock-activity article > i.money {
  background: #dff6ee;
}

.mock-activity article div {
  display: grid;
  min-width: 0;
}

.mock-activity article strong,
.mock-activity article small,
.mock-activity article b {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mock-activity article strong {
  font-size: 8px;
}

.mock-activity article small {
  color: var(--muted);
  font-size: 7px;
}

.mock-activity article b {
  color: var(--green);
  font-size: 7px;
}

.floating-note {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid rgba(206, 217, 232, .95);
  border-radius: 12px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.floating-note span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 8px;
  font-weight: 800;
}

.floating-note strong {
  font-size: 9px;
}

.note-backup {
  bottom: 6px;
  left: -18px;
}

.note-private {
  top: 0;
  right: -14px;
}

.note-private span {
  color: var(--purple);
  background: #f0eaff;
}

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 30px 0;
}

.trust-grid article {
  display: grid;
  padding: 0 28px;
  border-right: 1px solid var(--line);
}

.trust-grid article:first-child {
  padding-left: 0;
}

.trust-grid article:last-child {
  border: 0;
}

.trust-grid strong {
  margin-bottom: 2px;
  font-size: 15px;
}

.trust-grid span {
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding: 96px 0;
}

.section-tinted {
  border-top: 1px solid #e9edf4;
  border-bottom: 1px solid #e9edf4;
  background: var(--surface-soft);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading h2,
.faq-intro h2,
.guide-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.2;
  letter-spacing: -.045em;
}

.section-heading > p,
.split-heading > p,
.faq-intro > p,
.guide-copy > p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.8;
}

.split-heading {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  text-align: left;
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading > p {
  max-width: 420px;
  padding-bottom: 5px;
}

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

.outcome-card {
  position: relative;
  overflow: hidden;
  min-height: 324px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.outcome-card::before {
  position: absolute;
  right: -50px;
  bottom: -80px;
  width: 190px;
  height: 190px;
  content: "";
  border-radius: 50%;
  background: rgba(40, 94, 233, .055);
}

.outcome-card.featured {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(145deg, #172644, #243c6c);
  box-shadow: 0 22px 45px rgba(26, 48, 87, .2);
}

.outcome-card.featured::before {
  background: rgba(79, 118, 255, .18);
}

.card-index {
  display: inline-flex;
  margin-bottom: 52px;
  color: var(--blue);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
  font-weight: 800;
}

.featured .card-index {
  color: #8daaff;
}

.outcome-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.38;
  letter-spacing: -.025em;
}

.outcome-card p {
  min-height: 54px;
  margin-bottom: 26px;
  color: var(--ink-soft);
  font-size: 14px;
}

.outcome-card.featured p {
  color: #bfcce4;
}

.mini-flow {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-flow i {
  padding: 6px 8px;
  border: 1px solid #dfe6f2;
  border-radius: 7px;
  color: #526079;
  background: #f8faff;
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
}

.mini-flow b {
  width: 12px;
  height: 1px;
  background: #b7c4d8;
}

.role-stack {
  position: relative;
  z-index: 1;
  display: flex;
  padding-left: 8px;
}

.role-stack i {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  margin-left: -8px;
  border: 3px solid #203456;
  border-radius: 50%;
  color: #263b65;
  background: #e8efff;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.role-stack i:nth-child(2) {
  color: #6a5117;
  background: #fff2cf;
}

.role-stack i:nth-child(3) {
  color: #6c42b4;
  background: #eee5ff;
}

.role-stack i:nth-child(4) {
  color: #176653;
  background: #dff6ee;
}

.local-status {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid #cfe7df;
  border-radius: 9px;
  color: #257461;
  background: #effaf6;
  font-size: 10px;
}

.local-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(15, 159, 121, .1);
}

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

.feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(210px, .95fr);
  min-height: 368px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.feature-wide {
  grid-column: span 2;
  grid-template-columns: minmax(350px, .78fr) minmax(480px, 1.22fr);
  min-height: 410px;
}

.feature-reverse .feature-copy {
  order: 2;
}

.feature-reverse .feature-media {
  order: 1;
}

.feature-copy {
  z-index: 1;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
}

.feature-label {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 5px 9px;
  border: 1px solid #cad8ff;
  border-radius: 7px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 11px;
  font-weight: 800;
}

.feature-label-purple {
  border-color: #ddceff;
  color: var(--purple);
  background: #f2ecff;
}

.feature-label-green {
  border-color: #c6eadf;
  color: var(--green);
  background: #eaf9f4;
}

.feature-label-amber {
  border-color: #f3dbb9;
  color: var(--amber);
  background: #fff5e7;
}

.feature-copy h3 {
  margin-bottom: 14px;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.25;
  letter-spacing: -.035em;
}

.feature-copy p {
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 14px;
}

.feature-copy ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: #36445b;
  font-size: 13px;
  list-style: none;
}

.feature-copy li::before {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 8px;
  content: "✓";
  border-radius: 50%;
  color: var(--green);
  background: #e8f7f1;
  font-size: 10px;
  font-weight: 900;
  line-height: 15px;
  text-align: center;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-row span {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink-soft);
  background: #f8f9fc;
  font-size: 11px;
  font-weight: 700;
}

.feature-media {
  position: relative;
  min-height: 260px;
  margin: 20px;
  overflow: hidden;
  border-radius: 20px;
  background: #eef3fb;
}

.feature-media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .6);
  border-radius: inherit;
}

.feature-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2, .7, .2, 1);
}

.feature-card:hover .feature-media img {
  transform: scale(1.035);
}

.feature-card:hover .media-purple img {
  transform: scale(1.17);
}

.media-blue img {
  object-position: center 44%;
}

.media-purple img {
  object-position: left center;
  transform: scale(1.13);
}

.media-green img {
  object-position: center 43%;
}

.media-amber img {
  object-position: center 52%;
}

.demo-shell {
  max-width: 1040px;
  margin: 0 auto;
}

.demo-tabs {
  display: flex;
  width: fit-content;
  gap: 4px;
  margin: 0 auto 18px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f5f7fb;
}

.demo-tab {
  min-width: 120px;
  padding: 10px 18px;
  border: 0;
  border-radius: 10px;
  color: var(--muted);
  background: transparent;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

.demo-tab.is-active {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 4px 13px rgba(26, 43, 75, .09);
}

.demo-frame {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.demo-topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 54px;
  align-items: center;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  background: #fbfcfe;
  font-size: 11px;
}

.demo-topbar .window-dots {
  justify-self: start;
}

.demo-topbar > span {
  font-weight: 700;
}

.demo-topbar em {
  justify-self: end;
  font-size: 10px;
  font-style: normal;
}

.demo-panel {
  min-height: 500px;
  padding: 34px;
  background: #f7f9fc;
}

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

.demo-panel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 26px;
}

.demo-panel-heading small {
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}

.demo-panel-heading h3 {
  margin: 2px 0 0;
  font-size: 24px;
  letter-spacing: -.03em;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid #cde8df;
  border-radius: 9px;
  color: #23735f;
  background: #effaf6;
  font-size: 10px;
  font-weight: 750;
}

.status-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.demo-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

.demo-stat-grid article {
  display: grid;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(29, 48, 83, .035);
}

.demo-stat-grid small {
  color: var(--muted);
  font-size: 11px;
}

.demo-stat-grid strong {
  margin: 7px 0 4px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 21px;
  letter-spacing: -.04em;
}

.demo-stat-grid span {
  color: var(--muted);
  font-size: 10px;
}

.demo-stat-grid .up {
  color: var(--green);
}

.demo-stat-grid .warn {
  color: var(--amber);
}

.demo-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}

.table-title {
  display: flex;
  height: 55px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.table-title span {
  color: var(--blue);
  font-size: 10px;
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr .7fr;
  min-height: 48px;
  align-items: center;
  padding: 0 20px;
  border-bottom: 1px solid #edf0f5;
  color: #3d4b62;
  font-size: 11px;
}

.table-row:last-child {
  border: 0;
}

.table-head {
  min-height: 40px;
  color: var(--muted);
  background: #f8f9fb;
  font-size: 9px;
  font-weight: 750;
}

.table-row b {
  width: fit-content;
  padding: 4px 7px;
  border-radius: 6px;
  color: var(--green);
  background: #eaf8f3;
  font-size: 9px;
}

.table-row b.pending {
  color: var(--amber);
  background: #fff5e7;
}

.flow-board {
  display: grid;
  grid-template-columns: 1fr 50px 1fr 50px 1fr;
  align-items: center;
  margin: 28px 0;
}

.flow-board article {
  display: grid;
  min-height: 178px;
  align-content: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
  text-align: center;
  box-shadow: 0 7px 18px rgba(30, 50, 85, .045);
}

.flow-board article span {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  margin: 0 auto 14px;
  border-radius: 10px;
  color: var(--blue);
  background: var(--blue-soft);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
}

.flow-board article small {
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
}

.flow-board article strong {
  font-size: 13px;
}

.flow-board > i {
  position: relative;
  height: 1px;
  background: #aebbd0;
}

.flow-board > i::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  content: "";
  transform: rotate(45deg);
  border-top: 1px solid #aebbd0;
  border-right: 1px solid #aebbd0;
}

.voucher-preview {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid #cbd9ff;
  border-radius: 14px;
  background: #eef3ff;
  font-size: 11px;
}

.voucher-preview div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.voucher-preview small {
  color: var(--muted);
}

.voucher-preview b {
  padding: 6px 9px;
  border-radius: 7px;
  color: var(--green);
  background: #fff;
  font-size: 9px;
}

.security-heading {
  align-items: center;
}

.role-switch {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
}

.role-switch button {
  padding: 7px 11px;
  border: 0;
  border-radius: 8px;
  color: var(--muted);
  background: transparent;
  font-size: 10px;
  font-weight: 750;
  cursor: pointer;
}

.role-switch button.is-active {
  color: #fff;
  background: var(--blue);
}

.permission-note {
  margin-bottom: 14px;
  padding: 11px 14px;
  border: 1px solid #d7e0ee;
  border-radius: 10px;
  color: #53627a;
  background: #fff;
  font-size: 11px;
}

.permission-table .table-row {
  grid-template-columns: 1.6fr .7fr 1fr 1fr .7fr;
}

.masked-value {
  color: #98a2b2 !important;
  font-family: "SFMono-Regular", Consolas, monospace;
  letter-spacing: .08em;
}

.pricing-section {
  background:
    radial-gradient(circle at 50% 20%, rgba(73, 112, 242, .08), transparent 35%),
    var(--surface-soft);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 490px;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.price-card.recommended {
  z-index: 1;
  border: 2px solid var(--blue);
  box-shadow: 0 24px 55px rgba(42, 83, 196, .18);
}

.recommend-badge {
  position: absolute;
  top: -13px;
  right: 24px;
  padding: 5px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 10px;
  font-weight: 800;
}

.price-card-head > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.price-card-head h3 {
  margin: 9px 0 3px;
  font-size: 24px;
  letter-spacing: -.03em;
}

.price-card-head p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.price {
  display: flex;
  align-items: baseline;
  margin: 28px 0 25px;
}

.price small {
  margin-right: 4px;
  font-size: 16px;
  font-weight: 800;
}

.price strong {
  font-size: 50px;
  line-height: 1;
  letter-spacing: -.055em;
}

.price span {
  margin-left: 9px;
  color: var(--muted);
  font-size: 11px;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 30px;
  padding: 23px 0 0;
  border-top: 1px solid var(--line);
  color: #3e4b61;
  font-size: 13px;
  list-style: none;
}

.price-card li::before {
  display: inline-block;
  margin-right: 9px;
  content: "✓";
  color: var(--green);
  font-weight: 900;
}

.price-card .button {
  margin-top: auto;
}

.pricing-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.purchase-guide {
  padding-bottom: 84px;
}

.guide-panel {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 72px;
  padding: 64px;
  overflow: hidden;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 10% 10%, rgba(86, 133, 255, .35), transparent 38%),
    linear-gradient(135deg, #111e37, #203a68);
  box-shadow: 0 30px 70px rgba(19, 37, 67, .24);
}

.eyebrow-light {
  color: #91adff;
}

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

.guide-copy > p {
  margin-bottom: 28px;
  color: #bdcae0;
}

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

.guide-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 14px;
  background: rgba(255, 255, 255, .065);
}

.guide-list article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: #aac0ff;
  background: rgba(109, 145, 255, .14);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
}

.guide-list article div {
  display: grid;
}

.guide-list article strong {
  font-size: 14px;
}

.guide-list article p {
  margin: 2px 0 0;
  color: #aebbd1;
  font-size: 12px;
}

.faq-section {
  padding-top: 84px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, .68fr) minmax(520px, 1.32fr);
  gap: 86px;
}

.faq-intro {
  align-self: start;
  position: sticky;
  top: 114px;
}

.faq-intro > p {
  margin-bottom: 24px;
}

.text-button {
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--blue);
  background: transparent;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  transition: box-shadow .2s ease, border-color .2s ease;
}

.faq-list details[open] {
  border-color: #cbd7e9;
  box-shadow: var(--shadow-sm);
}

.faq-list summary {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--surface-soft);
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 12px;
  left: 8px;
  width: 10px;
  height: 1.5px;
  content: "";
  background: var(--ink-soft);
  transition: transform .2s ease;
}

.faq-list summary span::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details p {
  margin: -4px 70px 0 24px;
  padding-bottom: 24px;
  color: var(--ink-soft);
  font-size: 13px;
}

.final-cta {
  padding: 0 0 90px;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 38px 44px;
  border: 1px solid #cfd9e9;
  border-radius: 22px;
  background:
    linear-gradient(100deg, rgba(233, 240, 255, .9), rgba(255, 255, 255, .95) 58%),
    #fff;
  box-shadow: var(--shadow-sm);
}

.final-cta-inner span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.final-cta-inner h2 {
  margin: 4px 0 0;
  font-size: clamp(23px, 3vw, 34px);
  line-height: 1.25;
  letter-spacing: -.035em;
}

.site-footer {
  padding-top: 64px;
  color: #b3bfd1;
  background: #0d172a;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.35fr;
  gap: 55px;
  padding-bottom: 48px;
}

.site-footer .brand-copy strong {
  color: #fff;
}

.site-footer .brand-copy small,
.site-footer .footer-brand p,
.footer-contact small {
  color: #7f8ca2;
}

.site-footer .footer-brand p {
  max-width: 280px;
  margin: 20px 0 0;
  font-size: 12px;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
  font-size: 12px;
}

.footer-links strong,
.footer-contact strong {
  margin-bottom: 6px;
  color: #fff;
  font-size: 13px;
}

.footer-links a,
.footer-links button {
  width: fit-content;
  padding: 0;
  border: 0;
  color: #9cabc0;
  background: transparent;
  font-size: 12px;
  cursor: pointer;
}

.footer-links a:hover,
.footer-links button:hover {
  color: #fff;
}

.footer-contact span {
  color: #d2d9e4;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 20px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #728198;
  font-size: 10px;
}

.contact-dialog {
  width: min(calc(100% - 32px), 470px);
  padding: 38px;
  overflow: visible;
  border: 1px solid #d7dfeb;
  border-radius: 24px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 36px 100px rgba(10, 25, 50, .32);
}

.contact-dialog::backdrop {
  background: rgba(10, 20, 38, .58);
  backdrop-filter: blur(7px);
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted);
  background: #fff;
  font-size: 21px;
  line-height: 1;
  cursor: pointer;
}

.dialog-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 15px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(40, 94, 233, .25);
}

.dialog-icon svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.dialog-kicker {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.contact-dialog h2 {
  margin: 5px 0 10px;
  font-size: 27px;
  letter-spacing: -.035em;
}

.contact-dialog > p {
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: 13px;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px;
  border: 1px solid #cfdaed;
  border-radius: 14px;
  background: #f5f8ff;
}

.contact-card div {
  display: grid;
}

.contact-card small {
  color: var(--muted);
  font-size: 10px;
}

.contact-card strong {
  margin-top: 3px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 16px;
}

.contact-card button {
  padding: 8px 11px;
  border: 0;
  border-radius: 9px;
  color: #fff;
  background: var(--blue);
  font-size: 11px;
  font-weight: 750;
  cursor: pointer;
}

.dialog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.dialog-meta span {
  padding: 5px 8px;
  border-radius: 7px;
  color: #59677d;
  background: #f2f4f8;
  font-size: 10px;
  font-weight: 700;
}

.contact-dialog .dialog-footnote {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.toast {
  position: fixed;
  z-index: 300;
  right: 22px;
  bottom: 22px;
  padding: 12px 16px;
  transform: translateY(20px);
  border: 1px solid #cbe5dc;
  border-radius: 11px;
  opacity: 0;
  color: #226a57;
  background: #effaf6;
  box-shadow: var(--shadow-sm);
  font-size: 12px;
  font-weight: 750;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

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

.motion-ready [data-reveal] {
  transform: translateY(20px);
  opacity: 0;
  transition: opacity .65s ease, transform .65s cubic-bezier(.2, .7, .2, 1);
}

.motion-ready [data-reveal].is-visible {
  transform: translateY(0);
  opacity: 1;
}

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

  .header-cta {
    margin-left: 20px;
  }

  .hero-grid {
    grid-template-columns: minmax(350px, .82fr) minmax(510px, 1.18fr);
    gap: 34px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .product-stage {
    transform: scale(.96);
    transform-origin: center right;
  }
}

@media (max-width: 920px) {
  .site-header {
    height: 70px;
  }

  .header-cta {
    margin-left: 10px;
    margin-right: 10px;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, .98);
    box-shadow: var(--shadow-md);
  }

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

  .site-nav a {
    padding: 12px 13px;
    border-radius: 9px;
  }

  .site-nav a:hover {
    background: var(--surface-soft);
  }

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

  .hero {
    padding: 76px 0 84px;
  }

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

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

  .hero h1,
  .hero-lead {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions,
  .hero-assurance {
    justify-content: center;
  }

  .product-stage {
    width: min(100%, 720px);
    margin-inline: auto;
    transform: none;
  }

  .product-window {
    transform: none;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
  }

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

  .trust-grid article:nth-child(3) {
    padding-left: 0;
  }

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

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

  .feature-card,
  .feature-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .feature-reverse .feature-copy {
    order: 1;
  }

  .feature-reverse .feature-media {
    order: 2;
  }

  .feature-media {
    min-height: 330px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-inline: auto;
  }

  .price-card {
    min-height: 0;
  }

  .guide-panel {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-intro {
    position: static;
  }

  .footer-main {
    grid-template-columns: 1.6fr 1fr 1fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .header-inner {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .brand-copy small {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 56px 0 66px;
  }

  .hero-grid {
    gap: 46px;
  }

  .eyebrow {
    margin-bottom: 15px;
    font-size: 11px;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(36px, 10.5vw, 46px);
    letter-spacing: -.05em;
  }

  .hero-lead {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.75;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-assurance {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    text-align: left;
  }

  .product-stage {
    width: calc(100% + 10px);
    margin-left: -5px;
    padding: 8px 0 24px;
  }

  .product-window {
    border-radius: 16px;
  }

  .window-bar {
    grid-template-columns: auto 1fr auto;
    height: 42px;
    padding: 0 10px;
  }

  .window-title {
    overflow: hidden;
    padding: 0 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
  }

  .window-body {
    grid-template-columns: 40px 1fr;
    min-height: 320px;
  }

  .mock-sidebar {
    gap: 18px;
    padding: 14px 0;
  }

  .mock-logo {
    width: 24px;
    height: 24px;
  }

  .mock-sidebar i {
    width: 12px;
    height: 12px;
  }

  .mock-content {
    padding: 13px;
  }

  .mock-heading {
    margin-bottom: 10px;
  }

  .mock-heading strong {
    font-size: 11px;
  }

  .mock-metrics {
    gap: 5px;
  }

  .mock-metrics article {
    padding: 8px;
    border-radius: 8px;
  }

  .mock-metrics strong {
    font-size: 8px;
  }

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

  .mock-chart {
    height: 178px;
  }

  .mock-activity {
    display: none;
  }

  .mock-chart > svg {
    bottom: 30px;
    height: 94px;
  }

  .chart-grid {
    inset: 48px 14px 34px;
  }

  .floating-note {
    display: none;
  }

  .trust-grid {
    padding: 24px 0;
    row-gap: 20px;
  }

  .trust-grid article {
    padding: 0 12px;
  }

  .trust-grid strong {
    font-size: 13px;
  }

  .trust-grid span {
    font-size: 10px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .faq-intro h2,
  .guide-copy h2 {
    font-size: 32px;
  }

  .section-heading h2 br {
    display: none;
  }

  .section-heading > p,
  .split-heading > p,
  .faq-intro > p,
  .guide-copy > p {
    font-size: 15px;
  }

  .split-heading {
    display: block;
  }

  .split-heading > p {
    margin-top: 12px;
  }

  .outcome-card {
    min-height: 265px;
    padding: 25px;
  }

  .card-index {
    margin-bottom: 35px;
  }

  .outcome-card p {
    min-height: 0;
  }

  .mini-flow i {
    padding: 5px;
    font-size: 8px;
  }

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

  .feature-card {
    border-radius: 22px;
  }

  .feature-copy {
    padding: 28px 25px 12px;
  }

  .feature-copy h3 {
    font-size: 25px;
  }

  .feature-media {
    min-height: 255px;
    margin: 16px;
  }

  .demo-tabs {
    width: 100%;
  }

  .demo-tab {
    min-width: 0;
    flex: 1;
    padding: 9px 6px;
    font-size: 11px;
  }

  .demo-frame {
    border-radius: 17px;
  }

  .demo-topbar {
    grid-template-columns: auto 1fr;
    height: 48px;
    padding: 0 12px;
  }

  .demo-topbar > span {
    overflow: hidden;
    padding-left: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .demo-topbar em {
    display: none;
  }

  .demo-panel {
    min-height: 0;
    padding: 20px 14px;
  }

  .demo-panel-heading {
    align-items: flex-start;
    margin-bottom: 18px;
  }

  .demo-panel-heading h3 {
    font-size: 19px;
  }

  .status-pill {
    margin-top: 3px;
  }

  .demo-stat-grid {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .demo-stat-grid article {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 13px;
  }

  .demo-stat-grid article strong {
    grid-row: 1 / 3;
    grid-column: 2;
    margin: 0;
    font-size: 16px;
  }

  .table-title {
    height: 46px;
    padding: 0 12px;
  }

  .table-row {
    grid-template-columns: 1fr .95fr .85fr .65fr;
    min-height: 46px;
    padding: 0 10px;
    font-size: 9px;
  }

  .flow-board {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 20px 0;
  }

  .flow-board article {
    min-height: 105px;
    padding: 15px;
  }

  .flow-board article span {
    width: 30px;
    height: 30px;
    margin-bottom: 8px;
  }

  .flow-board > i {
    width: 1px;
    height: 16px;
    justify-self: center;
  }

  .flow-board > i::after {
    top: auto;
    right: -3px;
    bottom: 0;
    transform: rotate(135deg);
  }

  .voucher-preview {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 13px;
    font-size: 9px;
  }

  .security-heading {
    display: block;
  }

  .role-switch {
    width: 100%;
    margin-top: 12px;
  }

  .role-switch button {
    flex: 1;
  }

  .permission-table {
    overflow-x: auto;
  }

  .permission-table .table-row {
    width: 580px;
  }

  .price-card {
    padding: 28px;
  }

  .guide-panel {
    gap: 35px;
    padding: 38px 24px;
    border-radius: 22px;
  }

  .guide-copy h2 br {
    display: none;
  }

  .guide-list article {
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding: 14px;
  }

  .guide-list article > span {
    width: 36px;
    height: 36px;
  }

  .faq-section {
    padding-top: 72px;
  }

  .faq-intro h2 br {
    display: none;
  }

  .faq-list summary {
    min-height: 68px;
    padding: 0 16px;
    font-size: 14px;
  }

  .faq-list details p {
    margin: -2px 48px 0 16px;
    padding-bottom: 20px;
  }

  .final-cta {
    padding-bottom: 70px;
  }

  .final-cta-inner {
    display: grid;
    padding: 28px 24px;
  }

  .final-cta-inner .button {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 38px 25px;
  }

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 5px;
  }

  .contact-dialog {
    padding: 30px 22px 24px;
    border-radius: 20px;
  }

  .contact-card {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-card button {
    min-height: 40px;
  }
}

.skeuo-theme .hero h1 span {
  color: #76a2ff;
  background: none;
  background-clip: border-box;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: #76a2ff;
  filter: drop-shadow(0 4px 10px rgba(54, 103, 214, .26));
  text-shadow: 0 2px 1px #071126, 0 0 18px rgba(80, 132, 245, .18);
}

/* Independent navigation views and AI accounting showcase */
.view-loading [data-view-section],
[data-view-section][hidden] {
  display: none !important;
}

.site-nav a.is-current::after {
  transform: scaleX(1);
}

.expressive-theme .site-nav a.is-current {
  color: #6543e8;
}

.hero-real-frame {
  position: relative;
}

.ai-shot-badge {
  position: absolute;
  z-index: 4;
  right: 18px;
  bottom: 86px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  border: 2px solid #171525;
  border-radius: 12px;
  color: #171525;
  background: rgba(255, 250, 241, .96);
  box-shadow: 5px 5px 0 #171525;
  backdrop-filter: blur(9px);
}

.ai-shot-badge > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid #171525;
  border-radius: 10px;
  color: #fff;
  background: #6543e8;
  font-size: 13px;
  font-weight: 950;
  box-shadow: 3px 3px 0 #ffd23f;
}

.ai-shot-badge div {
  display: grid;
  line-height: 1.3;
}

.ai-shot-badge strong {
  font-size: 12px;
}

.ai-shot-badge small {
  color: #5b5468;
  font-size: 9px;
  font-weight: 750;
}

.expressive-theme .ai-section {
  border-bottom: 3px solid #171525;
  background:
    radial-gradient(circle at 9% 20%, #39d7c8 0 58px, transparent 60px),
    linear-gradient(135deg, transparent 76%, rgba(255, 94, 125, .18) 76%),
    #e8e0ff;
}

.ai-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  align-items: stretch;
  gap: 34px;
}

.ai-console {
  position: relative;
  padding: 0 25px 24px;
  overflow: hidden;
  border: 3px solid #171525;
  border-radius: 24px;
  background: #fffaf1;
  box-shadow: 12px 12px 0 #171525;
  transform: rotate(-.65deg);
}

.ai-console-head {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin: 0 -25px 22px;
  padding: 0 22px;
  border-bottom: 3px solid #171525;
  background: #ffd23f;
  font-size: 12px;
  font-weight: 900;
}

.ai-console-head span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ai-console-head i {
  width: 9px;
  height: 9px;
  border: 2px solid #171525;
  border-radius: 50%;
  background: #39d7c8;
}

.ai-console-head em {
  padding: 4px 8px;
  border: 2px solid #171525;
  border-radius: 7px;
  background: #fff;
  font-size: 9px;
  font-style: normal;
}

.ai-message {
  padding: 14px 16px;
  border: 2px solid #171525;
  border-radius: 15px;
}

.ai-message-user {
  width: fit-content;
  max-width: 82%;
  margin: 0 0 18px auto;
  color: #fff;
  background: #6543e8;
  box-shadow: 4px 4px 0 #ff5e7d;
  font-size: 13px;
  font-weight: 750;
}

.ai-message-system {
  background: #fff;
  box-shadow: 5px 5px 0 #39d7c8;
}

.ai-result-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 2px dashed #171525;
}

.ai-result-title span {
  padding: 3px 8px;
  border: 2px solid #171525;
  border-radius: 7px;
  background: #d7fbf6;
  font-size: 10px;
  font-weight: 900;
}

.ai-result-title strong {
  color: #6543e8;
  font-family: Consolas, monospace;
  font-size: 18px;
}

.ai-message-system > p {
  margin: 12px 0;
  color: #514b5e;
  font-size: 12px;
}

.voucher-row {
  display: grid;
  grid-template-columns: 26px 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 9px 10px;
  border: 2px solid #171525;
  border-radius: 10px;
  background: #f6f2ff;
  font-size: 10px;
}

.voucher-row b {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 2px solid #171525;
  border-radius: 6px;
  background: #ffd23f;
  font-size: 10px;
}

.voucher-row + .voucher-row b {
  background: #39d7c8;
}

.voucher-row code,
.voucher-row strong {
  font-family: Consolas, monospace;
}

.ai-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.ai-result-actions span {
  padding: 7px 10px;
  border: 2px solid #171525;
  border-radius: 8px;
  color: #fff;
  background: #6543e8;
  box-shadow: 3px 3px 0 #171525;
  font-size: 9px;
  font-weight: 850;
}

.ai-result-actions span:last-child {
  color: #171525;
  background: #39d7c8;
}

.ai-demo-note {
  display: block;
  margin-top: 15px;
  color: #716a7e;
  font-size: 9px;
}

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

.ai-value-stack article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  padding: 22px;
  border: 3px solid #171525;
  border-radius: 18px;
  background: #fffaf1;
  box-shadow: 7px 7px 0 #171525;
}

.ai-value-stack article:nth-child(2) {
  background: #39d7c8;
  transform: translateX(12px);
}

.ai-value-stack article:nth-child(3) {
  background: #ffdfd1;
}

.ai-value-stack article > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid #171525;
  border-radius: 50%;
  color: #fff;
  background: #6543e8;
  box-shadow: 3px 3px 0 #ffd23f;
  font-size: 11px;
  font-weight: 900;
}

.ai-value-stack h3 {
  margin: 0 0 7px;
  font-size: 19px;
  line-height: 1.35;
}

.ai-value-stack p {
  margin: 0;
  color: #514b5e;
  font-size: 12px;
  line-height: 1.75;
}

.ai-engine-bar {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 30px;
  margin-top: 34px;
  padding: 22px 25px;
  border: 3px solid #171525;
  border-radius: 18px;
  color: #fff;
  background: #171525;
  box-shadow: 8px 8px 0 #ff5e7d;
}

.ai-engine-bar > div {
  display: grid;
  gap: 5px;
}

.ai-engine-bar > div span {
  color: #ffd23f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}

.ai-engine-bar > div strong {
  font-size: 13px;
  line-height: 1.6;
}

.ai-engine-bar ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ai-engine-bar li {
  padding: 6px 9px;
  border: 2px solid #171525;
  border-radius: 8px;
  color: #171525;
  background: #ffd23f;
  font-size: 10px;
  font-weight: 850;
}

.expressive-theme .faq-list details:nth-child(5) {
  background: #ffd23f;
}

@media (max-width: 920px) {
  .expressive-theme .site-nav a.is-current {
    color: #171525;
    background: #ffd23f;
  }

  .ai-showcase {
    grid-template-columns: 1fr;
  }

  .ai-value-stack article:nth-child(2) {
    transform: none;
  }

  .ai-engine-bar {
    grid-template-columns: 1fr;
  }

  .ai-engine-bar ul {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .ai-shot-badge {
    right: 9px;
    bottom: 67px;
    padding: 7px 8px;
    box-shadow: 3px 3px 0 #171525;
  }

  .ai-shot-badge > span {
    width: 30px;
    height: 30px;
  }

  .ai-shot-badge small {
    display: none;
  }

  .ai-console {
    padding: 0 15px 18px;
    border-radius: 17px;
    box-shadow: 7px 7px 0 #171525;
    transform: none;
  }

  .ai-console-head {
    margin: 0 -15px 16px;
    padding: 0 13px;
  }

  .ai-console-head em {
    display: none;
  }

  .voucher-row {
    grid-template-columns: 25px 40px minmax(0, 1fr);
  }

  .voucher-row strong {
    grid-column: 3;
  }

  .ai-value-stack article {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    padding: 18px;
  }

  .ai-value-stack article > span {
    width: 40px;
    height: 40px;
  }

  .ai-engine-bar {
    padding: 19px;
  }
}

.expressive-theme .hero h1 {
  font-size: clamp(52px, 5.3vw, 72px);
}

.expressive-theme .hero h1 span {
  display: block;
  margin-top: 6px;
}

@media (max-width: 640px) {
  .expressive-theme .hero h1 {
    font-size: clamp(38px, 11vw, 47px);
  }
}

/* Bold expressive geometry theme */
.expressive-theme {
  --ink: #171525;
  --ink-soft: #474257;
  --muted: #6f687d;
  --line: #1c1927;
  --line-strong: #12101a;
  --surface: #fffaf1;
  --surface-soft: #f3efff;
  --surface-blue: #e8e0ff;
  --blue: #6543e8;
  --blue-dark: #4c2ec4;
  --blue-soft: #e5dcff;
  --green: #0c9f91;
  --amber: #cf5d18;
  --purple: #7b47e8;
  --shadow-sm: 7px 7px 0 #171525;
  --shadow-md: 12px 12px 0 #171525;
  color: var(--ink);
  background: #fffaf1;
}

.expressive-theme ::selection {
  color: #fff;
  background: #6543e8;
}

.expressive-theme :focus-visible {
  outline: 3px solid #ff5e7d;
  outline-offset: 4px;
}

.expressive-theme .site-header {
  border-bottom: 2px solid #171525;
  background: rgba(255, 250, 241, .94);
  box-shadow: 0 5px 0 rgba(23, 21, 37, .08);
  backdrop-filter: blur(16px) saturate(1.15);
}

.expressive-theme .site-header.is-scrolled {
  border-color: #171525;
  box-shadow: 0 6px 0 rgba(23, 21, 37, .12);
}

.expressive-theme .brand-mark,
.expressive-theme .dialog-icon {
  border: 2px solid #171525;
  color: #fff;
  background: #7047eb;
  box-shadow: 4px 4px 0 #ffd23f;
  transform: rotate(-4deg);
}

.expressive-theme .brand-copy strong {
  color: #171525;
}

.expressive-theme .brand-copy strong em {
  color: #7047eb;
}

.expressive-theme .brand-copy small {
  color: #6e667d;
}

.expressive-theme .site-nav {
  gap: 28px;
}

.expressive-theme .site-nav a {
  color: #302b3e;
  font-weight: 800;
}

.expressive-theme .site-nav a:hover {
  color: #6543e8;
}

.expressive-theme .site-nav a::after {
  height: 4px;
  border-radius: 0;
  background: #ff5e7d;
}

.expressive-theme .menu-toggle {
  border: 2px solid #171525;
  background: #ffd23f;
  box-shadow: 4px 4px 0 #171525;
}

.expressive-theme .menu-toggle span:not(.sr-only) {
  background: #171525;
}

.expressive-theme .button {
  border: 2px solid #171525;
  border-radius: 12px;
  box-shadow: 6px 6px 0 #171525;
  transform: translate(-2px, -2px);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.expressive-theme .button:hover {
  filter: saturate(1.12) brightness(1.03);
  transform: translate(-4px, -4px);
  box-shadow: 9px 9px 0 #171525;
}

.expressive-theme .button:active {
  transform: translate(3px, 3px);
  box-shadow: 1px 1px 0 #171525;
}

.expressive-theme .button-primary,
.expressive-theme .header-cta {
  color: #fff;
  background: #6543e8;
}

.expressive-theme .button-secondary {
  color: #171525;
  background: #39d7c8;
}

.expressive-theme .button-light {
  color: #171525;
  background: #ffd23f;
}

.expressive-theme .hero {
  overflow: hidden;
  border-bottom: 0;
  background:
    linear-gradient(90deg, rgba(112, 71, 235, .055) 1px, transparent 1px),
    linear-gradient(rgba(112, 71, 235, .055) 1px, transparent 1px),
    #fff8ed;
  background-size: 38px 38px;
}

.expressive-theme .hero::before {
  top: -160px;
  left: auto;
  right: -120px;
  width: 520px;
  height: 520px;
  transform: none;
  opacity: 1;
  border: 3px solid #171525;
  border-radius: 50%;
  background: #ffd23f;
  box-shadow: -18px 18px 0 #ff5e7d;
  mask-image: none;
}

.expressive-theme .hero::after {
  position: absolute;
  z-index: 0;
  top: 270px;
  right: 7%;
  width: 130px;
  height: 130px;
  content: "";
  transform: rotate(18deg);
  border: 3px solid #171525;
  background: #39d7c8;
  box-shadow: 10px 10px 0 #7047eb;
}

.expressive-theme .hero-glow-one {
  top: 120px;
  right: 29%;
  width: 78px;
  height: 78px;
  border: 3px solid #171525;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, #ffad94 0 9%, transparent 10%),
    linear-gradient(145deg, #ff815f 0%, #ff6748 58%, #e94d35 100%);
  box-shadow: 7px 9px 0 rgba(23, 21, 37, .16);
  filter: none;
}

.expressive-theme .physics-ball {
  z-index: 1;
  pointer-events: none;
  transform-origin: center;
  will-change: transform, opacity;
  transition: opacity .2s ease;
}

.hero-robot {
  position: absolute;
  z-index: 2;
  top: 252px;
  right: 20%;
  width: 190px;
  pointer-events: none;
  transform-origin: 50% 82%;
  animation: heroRobotFloat 4.8s ease-in-out infinite;
  will-change: transform;
}

.hero-robot svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  filter: drop-shadow(7px 9px 0 rgba(23, 21, 37, .14));
}

.hero-robot__shadow {
  fill: rgba(23, 21, 37, .18);
  transform-box: fill-box;
  transform-origin: center;
  animation: heroRobotShadow 4.8s ease-in-out infinite;
}

.hero-robot__wave {
  transform-box: fill-box;
  transform-origin: 15% 84%;
  animation: heroRobotWave 4.8s ease-in-out infinite;
}

.hero-robot__eyes {
  transform-box: fill-box;
  transform-origin: center;
  animation: heroRobotBlink 4.8s linear infinite;
}

.hero-robot__antenna {
  transform-box: fill-box;
  transform-origin: center;
  animation: heroRobotAntenna 2.4s ease-in-out infinite;
}

.hero-robot__spark {
  transform-box: fill-box;
  transform-origin: center;
  animation: heroRobotSpark 4.8s ease-in-out infinite;
}

.hero-robot__spark-two {
  animation-delay: -.35s;
}

.hero-robot__tag {
  position: absolute;
  right: 4px;
  bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border: 3px solid #171525;
  border-radius: 999px;
  color: #171525;
  background: #ffd23f;
  box-shadow: 4px 4px 0 #171525;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
  white-space: nowrap;
}

.hero-robot__tag i {
  width: 8px;
  height: 8px;
  border: 2px solid #171525;
  border-radius: 50%;
  background: #39d7c8;
  animation: heroRobotStatus 1.6s ease-in-out infinite;
}

@keyframes heroRobotFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-1.5deg); }
  45% { transform: translate3d(0, -13px, 0) rotate(1.2deg); }
  72% { transform: translate3d(0, -7px, 0) rotate(.2deg); }
}

@keyframes heroRobotShadow {
  0%, 100% { opacity: .2; transform: scaleX(1); }
  45% { opacity: .11; transform: scaleX(.74); }
  72% { opacity: .15; transform: scaleX(.86); }
}

@keyframes heroRobotWave {
  0%, 18%, 62%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-13deg); }
  32% { transform: rotate(13deg); }
  39% { transform: rotate(-15deg); }
  46% { transform: rotate(11deg); }
  54% { transform: rotate(-7deg); }
}

@keyframes heroRobotBlink {
  0%, 37%, 41%, 44%, 77%, 81%, 100% { transform: scaleY(1); }
  39%, 79% { transform: scaleY(.12); }
}

@keyframes heroRobotAntenna {
  0%, 100% { fill: #ff6f52; transform: scale(1); }
  50% { fill: #ffd23f; transform: scale(1.18); }
}

@keyframes heroRobotSpark {
  0%, 18%, 63%, 100% { opacity: 0; transform: scale(.65) rotate(-8deg); }
  27%, 48% { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes heroRobotStatus {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .45; transform: scale(.68); }
}

@media (max-width: 1180px) {
  .hero-robot {
    top: 285px;
    right: 8%;
    width: 158px;
  }

  .hero-robot__tag {
    font-size: 10px;
  }
}

@media (max-width: 920px) {
  .hero-robot {
    display: none;
  }
}

.hero-robot-legacy {
  display: none !important;
}

.hero-pet {
  position: absolute;
  z-index: 5;
  top: 0;
  left: calc(100% - 76px);
  width: 142px;
  pointer-events: none;
  transform: translate(-50%, -96%);
  animation: heroPetPatrol 16s cubic-bezier(.45, .05, .55, .95) infinite;
  will-change: left;
}

.hero-pet__character {
  transform-origin: 50% 100%;
  animation: heroPetTurn 16s ease-in-out infinite;
}

.hero-pet svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  filter: drop-shadow(6px 7px 0 rgba(23, 21, 37, .12));
}

.hero-pet__shadow {
  transform-box: fill-box;
  transform-origin: center;
  animation: heroPetShadow 1s ease-in-out infinite alternate;
}

.hero-pet__foot,
.hero-pet__face,
.hero-pet__heart,
.hero-pet__antenna,
.hero-pet__sparkles {
  transform-box: fill-box;
  transform-origin: center;
}

.hero-pet__foot-left {
  animation: heroPetStepLeft 1s ease-in-out infinite;
}

.hero-pet__foot-right {
  animation: heroPetStepRight 1s ease-in-out infinite;
}

.hero-pet__face {
  animation: heroPetBlink 4.6s linear infinite;
}

.hero-pet__heart {
  animation: heroPetHeartbeat 1.8s ease-in-out infinite;
}

.hero-pet__antenna {
  animation: heroPetAntenna 2s ease-in-out infinite;
}

.hero-pet__sparkles {
  animation: heroPetSparkle 2.3s ease-in-out infinite;
}

@keyframes heroPetPatrol {
  0%, 7% { left: calc(100% - 76px); }
  46%, 54% { left: 50%; }
  93%, 100% { left: calc(100% - 76px); }
}

@keyframes heroPetTurn {
  0%, 49.8% { transform: scaleX(-1); }
  50%, 99.8% { transform: scaleX(1); }
  100% { transform: scaleX(-1); }
}

@keyframes heroPetStepLeft {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-5px) rotate(-7deg); }
}

@keyframes heroPetStepRight {
  0%, 100% { transform: translateY(-5px) rotate(7deg); }
  50% { transform: translateY(0) rotate(0); }
}

@keyframes heroPetShadow {
  from { opacity: .18; transform: scaleX(.88); }
  to { opacity: .1; transform: scaleX(1.04); }
}

@keyframes heroPetBlink {
  0%, 41%, 45%, 73%, 77%, 100% { transform: scaleY(1); }
  43%, 75% { transform: scaleY(.12); }
}

@keyframes heroPetHeartbeat {
  0%, 100% { transform: scale(1); }
  18% { transform: scale(1.13); }
  34% { transform: scale(.96); }
}

@keyframes heroPetAntenna {
  0%, 100% { fill: #ffd23f; transform: rotate(-5deg) scale(1); }
  50% { fill: #ff8b76; transform: rotate(5deg) scale(1.12); }
}

@keyframes heroPetSparkle {
  0%, 100% { opacity: .35; transform: scale(.78) rotate(-7deg); }
  50% { opacity: 1; transform: scale(1.08) rotate(7deg); }
}

@media (max-width: 1180px) {
  .hero-pet {
    left: calc(100% - 66px);
    width: 122px;
  }

  @keyframes heroPetPatrol {
    0%, 7% { left: calc(100% - 66px); }
    46%, 54% { left: 50%; }
    93%, 100% { left: calc(100% - 66px); }
  }
}

@media (max-width: 920px) {
  .hero-pet {
    display: none;
  }
}

.expressive-theme .hero-glow-two {
  bottom: 260px;
  left: -55px;
  width: 150px;
  height: 150px;
  border: 3px solid #171525;
  border-radius: 0;
  background: #e4d9ff;
  filter: none;
  transform: rotate(28deg);
}

.expressive-theme .hero-grid {
  gap: 64px;
}

.expressive-theme .hero-copy {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  text-align: left;
}

.expressive-theme .eyebrow {
  color: #6543e8;
  font-weight: 900;
}

.expressive-theme .eyebrow span {
  height: 4px;
  background: currentColor;
}

.expressive-theme .eyebrow span::after {
  top: -4px;
  width: 11px;
  height: 11px;
  border: 2px solid #171525;
  background: #ffd23f;
}

.expressive-theme .hero h1 {
  max-width: 880px;
  margin-right: 0;
  margin-left: 0;
  color: #171525;
  font-size: clamp(54px, 6.2vw, 82px);
  line-height: 1.02;
  letter-spacing: -.065em;
  text-shadow: none;
}

.expressive-theme .hero h1 span {
  display: inline;
  color: #6543e8;
  background: none;
  -webkit-text-fill-color: #6543e8;
  text-shadow: 5px 5px 0 #ffd23f;
  filter: none;
}

.expressive-theme .hero-lead {
  max-width: 690px;
  margin-right: 0;
  margin-left: 0;
  color: #4c465a;
  font-size: 18px;
}

.expressive-theme .hero-actions,
.expressive-theme .hero-assurance {
  justify-content: flex-start;
}

.expressive-theme .hero-assurance {
  color: #4b4559;
  font-weight: 800;
}

.expressive-theme .hero-assurance i {
  border: 2px solid #171525;
  background: #39d7c8;
  box-shadow: 3px 3px 0 #171525;
}

.expressive-theme .hero-assurance i::after {
  border-color: #171525;
}

.expressive-theme .product-stage {
  width: 94%;
  margin-right: 0;
  margin-left: auto;
  transform: rotate(.7deg);
}

.expressive-theme .stage-halo {
  inset: 5% -2% -4% 3%;
  opacity: 1;
  border: 3px solid #171525;
  border-radius: 28px;
  background: #ff5e7d;
  filter: none;
  transform: translate(18px, 18px) rotate(-1.4deg);
}

.expressive-theme .hero-real-frame {
  padding: 0;
  overflow: hidden;
  border: 3px solid #171525;
  border-radius: 20px;
  background: #fff;
  box-shadow: 14px 14px 0 #171525;
  transform: none;
}

.expressive-theme .real-shot-bar {
  height: 52px;
  border: 0;
  border-bottom: 3px solid #171525;
  color: #171525;
  background: #ffd23f;
  font-weight: 900;
}

.expressive-theme .hero-real-frame figcaption {
  min-height: 72px;
  border: 0;
  border-top: 3px solid #171525;
  color: #171525;
  background: #fff;
}

.expressive-theme .hero-real-frame figcaption strong {
  color: #171525;
}

.expressive-theme .hero-real-frame figcaption span {
  color: #665f73;
}

.expressive-theme .shot-open-link {
  border: 2px solid #171525;
  border-radius: 9px;
  color: #171525;
  background: #39d7c8;
  box-shadow: 4px 4px 0 #171525;
}

.expressive-theme .shot-open-link:hover {
  color: #171525;
  background: #ff5e7d;
}

.expressive-theme .trust-strip {
  border-top: 0;
  border-bottom: 3px solid #171525;
  color: #fff;
  background: #5131c9;
  box-shadow: none;
}

.expressive-theme .trust-grid article {
  border-right-color: rgba(255, 255, 255, .28);
}

.expressive-theme .trust-grid strong {
  color: #fff;
}

.expressive-theme .trust-grid span {
  color: #ded5ff;
}

.expressive-theme .section {
  overflow: hidden;
  background: #fffaf1;
}

.expressive-theme .section::before {
  position: absolute;
  z-index: 0;
  top: 70px;
  right: -60px;
  width: 150px;
  height: 150px;
  content: "";
  transform: rotate(18deg);
  border: 3px solid rgba(23, 21, 37, .9);
  background: #e7ddff;
}

.expressive-theme .section > .container {
  position: relative;
  z-index: 1;
}

.expressive-theme .section-heading h2,
.expressive-theme .faq-intro h2,
.expressive-theme .guide-copy h2 {
  color: #171525;
  text-shadow: none;
}

.expressive-theme .section-heading > p,
.expressive-theme .split-heading > p,
.expressive-theme .faq-intro > p,
.expressive-theme .guide-copy > p {
  color: #514b5e;
}

.expressive-theme #advantages {
  background:
    linear-gradient(135deg, transparent 72%, rgba(255, 94, 125, .13) 72%),
    #fffaf1;
}

.expressive-theme .outcome-grid {
  align-items: start;
}

.expressive-theme .outcome-card {
  border: 3px solid #171525;
  border-radius: 22px;
  color: #171525;
  background: #fff;
  box-shadow: 9px 9px 0 #171525;
  transform: rotate(-1deg);
}

.expressive-theme .outcome-card:nth-child(2) {
  margin-top: -24px;
  background: #7047eb;
  box-shadow: 9px 9px 0 #ffd23f;
  transform: rotate(1deg);
}

.expressive-theme .outcome-card:nth-child(3) {
  background: #39d7c8;
  box-shadow: 9px 9px 0 #ff5e7d;
  transform: rotate(-.5deg);
}

.expressive-theme .outcome-card h3,
.expressive-theme .outcome-card p {
  color: #171525;
}

.expressive-theme .outcome-card:nth-child(2) h3,
.expressive-theme .outcome-card:nth-child(2) p,
.expressive-theme .outcome-card:nth-child(2) .card-index {
  color: #fff;
}

.expressive-theme .card-index {
  color: #6543e8;
}

.expressive-theme .mini-flow i,
.expressive-theme .role-stack i,
.expressive-theme .local-status {
  border: 2px solid #171525;
  color: #171525;
  background: #fff;
  box-shadow: 3px 3px 0 #171525;
}

.expressive-theme .mini-flow b {
  background: #171525;
}

.expressive-theme .local-status span {
  background: #6543e8;
  box-shadow: 0 0 0 4px rgba(101, 67, 232, .15);
}

.expressive-theme #features {
  border-top: 3px solid #171525;
  border-bottom: 3px solid #171525;
  background:
    radial-gradient(circle at 9% 18%, #ff5e7d 0 52px, transparent 54px),
    linear-gradient(115deg, transparent 65%, rgba(255, 255, 255, .22) 65%),
    #ffd23f;
  box-shadow: none;
}

.expressive-theme #features .eyebrow {
  color: #5131c9;
}

.expressive-theme .capability-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.expressive-theme .capability-card {
  min-height: 330px;
  border: 3px solid #171525;
  border-radius: 20px;
  background: #fffaf1;
  box-shadow: 9px 9px 0 #171525;
  transform: none;
}

.expressive-theme .capability-card:nth-child(1),
.expressive-theme .capability-card:nth-child(4) {
  grid-column: span 7;
}

.expressive-theme .capability-card:nth-child(2),
.expressive-theme .capability-card:nth-child(3) {
  grid-column: span 5;
}

.expressive-theme .capability-card:nth-child(2) {
  background: #e8e0ff;
}

.expressive-theme .capability-card:nth-child(3) {
  background: #ffdfd1;
}

.expressive-theme .capability-card:nth-child(4) {
  background: #d7fbf6;
}

.expressive-theme .capability-card:hover {
  border-color: #171525;
  box-shadow: 13px 13px 0 #7047eb;
  transform: translate(-4px, -4px);
}

.expressive-theme .capability-card::after {
  top: auto;
  right: -35px;
  bottom: -35px;
  width: 110px;
  height: 110px;
  opacity: 1;
  border: 3px solid #171525;
  border-radius: 50%;
  background: #ff5e7d;
}

.expressive-theme .capability-card:nth-child(2)::after {
  background: #39d7c8;
}

.expressive-theme .capability-card:nth-child(3)::after {
  background: #ffd23f;
}

.expressive-theme .capability-card:nth-child(4)::after {
  background: #7047eb;
}

.expressive-theme .capability-card h3,
.expressive-theme .capability-card > p,
.expressive-theme .capability-card ul {
  color: #171525;
}

.expressive-theme .capability-icon,
.expressive-theme .plan-icon {
  border: 2px solid #171525;
  color: #171525;
  background: #ffd23f;
  box-shadow: 4px 4px 0 #171525;
  transform: rotate(-3deg);
}

.expressive-theme .capability-green {
  background: #39d7c8;
}

.expressive-theme .capability-purple {
  background: #b99cff;
}

.expressive-theme .capability-amber {
  background: #ff8f5c;
}

.expressive-theme .capability-no {
  color: #6543e8;
}

.expressive-theme .capability-card li::before {
  width: 7px;
  height: 7px;
  background: #6543e8;
}

.expressive-theme #pricing {
  border-bottom: 3px solid #171525;
  background:
    radial-gradient(circle at 86% 14%, #39d7c8 0 58px, transparent 60px),
    #e6ddff;
  box-shadow: none;
}

.expressive-theme .price-card {
  border: 3px solid #171525;
  border-radius: 20px;
  color: #171525;
  background: #fff;
  box-shadow: 8px 8px 0 #171525;
}

.expressive-theme .price-card.recommended {
  border-color: #171525;
  color: #fff;
  background: #6543e8;
  box-shadow: 10px 10px 0 #ff5e7d;
  transform: translateY(-18px) rotate(.6deg);
}

.expressive-theme .price-card:hover {
  border-color: #171525;
  box-shadow: 12px 12px 0 #ffd23f;
}

.expressive-theme .price-card h3,
.expressive-theme .price-card-head p,
.expressive-theme .price-card ul {
  color: #171525;
}

.expressive-theme .price-card.recommended h3,
.expressive-theme .price-card.recommended .price-card-head p,
.expressive-theme .price-card.recommended ul {
  color: #fff;
}

.expressive-theme .price-card-head > span {
  color: #6543e8;
}

.expressive-theme .price-card.recommended .price-card-head > span {
  color: #ffd23f;
}

.expressive-theme .price-card.recommended .plan-icon {
  border-color: #171525;
  color: #171525;
  background: #ffd23f;
  box-shadow: 4px 4px 0 #171525;
}

.expressive-theme .recommend-badge {
  border: 2px solid #171525;
  color: #171525;
  background: #ffd23f;
  box-shadow: 4px 4px 0 #171525;
}

.expressive-theme .price-card li::before {
  color: #171525;
  background: #39d7c8;
}

.expressive-theme .pricing-note {
  color: #4e475c;
}

.expressive-theme .purchase-guide {
  background:
    linear-gradient(135deg, transparent 72%, rgba(255, 210, 63, .34) 72%),
    #39d7c8;
}

.expressive-theme .guide-panel {
  border: 3px solid #171525;
  border-radius: 24px;
  background: #fffaf1;
  box-shadow: 12px 12px 0 #7047eb;
}

.expressive-theme .guide-copy h2,
.expressive-theme .guide-copy > p,
.expressive-theme .guide-list strong,
.expressive-theme .guide-list p {
  color: #171525;
}

.expressive-theme .eyebrow-light {
  color: #6543e8;
}

.expressive-theme .guide-list {
  border-color: #171525;
}

.expressive-theme .guide-list article {
  border-bottom-color: rgba(23, 21, 37, .25);
}

.expressive-theme .guide-list article > span {
  border: 2px solid #171525;
  color: #fff;
  background: #ff5e7d;
  box-shadow: 4px 4px 0 #171525;
}

.expressive-theme .faq-section {
  background:
    radial-gradient(circle at 12% 82%, #ffd23f 0 65px, transparent 67px),
    #fffaf1;
}

.expressive-theme .faq-list details {
  border: 3px solid #171525;
  border-radius: 16px;
  background: #fff;
  box-shadow: 6px 6px 0 #171525;
}

.expressive-theme .faq-list details:nth-child(2) {
  background: #e8e0ff;
}

.expressive-theme .faq-list details:nth-child(3) {
  background: #d7fbf6;
}

.expressive-theme .faq-list details:nth-child(4) {
  background: #ffdfd1;
}

.expressive-theme .faq-list summary,
.expressive-theme .faq-list details p {
  color: #171525;
}

.expressive-theme .faq-list summary span {
  border: 2px solid #171525;
  background: #ffd23f;
}

.expressive-theme .faq-list summary span::before,
.expressive-theme .faq-list summary span::after {
  background: #171525;
}

.expressive-theme .text-button {
  color: #6543e8;
  text-decoration-thickness: 3px;
}

.expressive-theme .final-cta {
  padding: 72px 0 82px;
  border-top: 3px solid #171525;
  background: #ff5e7d;
}

.expressive-theme .final-cta-inner {
  border: 3px solid #171525;
  color: #171525;
  background: #ffd23f;
  box-shadow: 10px 10px 0 #171525;
}

.expressive-theme .final-cta h2,
.expressive-theme .final-cta-inner > div > span {
  color: #171525;
  text-shadow: none;
}

.expressive-theme .site-footer {
  border-top: 3px solid #171525;
  color: #fff;
  background: #171525;
}

.expressive-theme .site-footer .brand-copy strong,
.expressive-theme .footer-links strong,
.expressive-theme .footer-contact strong {
  color: #fff;
}

.expressive-theme .footer-brand p,
.expressive-theme .footer-links a,
.expressive-theme .footer-links button,
.expressive-theme .footer-contact span,
.expressive-theme .footer-contact small,
.expressive-theme .footer-bottom {
  color: #bdb6cc;
}

.expressive-theme .footer-bottom {
  border-top-color: rgba(255, 255, 255, .17);
}

.expressive-theme .contact-dialog {
  border: 3px solid #171525;
  border-radius: 24px;
  color: #171525;
  background: #fffaf1;
  box-shadow: 14px 14px 0 #171525;
}

.expressive-theme .contact-dialog::before {
  position: absolute;
  top: -28px;
  right: 52px;
  width: 70px;
  height: 70px;
  content: "";
  transform: rotate(14deg);
  border: 3px solid #171525;
  background: #ffd23f;
}

.expressive-theme .contact-dialog::backdrop {
  background: rgba(46, 29, 96, .55);
  backdrop-filter: blur(7px);
}

.expressive-theme .dialog-close {
  border: 2px solid #171525;
  color: #171525;
  background: #ff5e7d;
  box-shadow: 3px 3px 0 #171525;
}

.expressive-theme .dialog-kicker {
  color: #6543e8;
}

.expressive-theme .contact-dialog > p,
.expressive-theme .dialog-footnote {
  color: #5d5669;
}

.expressive-theme .contact-card {
  border: 3px solid #171525;
  background: #e8e0ff;
  box-shadow: 5px 5px 0 #171525;
}

.expressive-theme .contact-card small,
.expressive-theme .contact-card strong {
  color: #171525;
}

.expressive-theme .contact-card button {
  border: 2px solid #171525;
  color: #fff;
  background: #6543e8;
  box-shadow: 3px 3px 0 #171525;
}

.expressive-theme .dialog-meta span {
  border: 2px solid #171525;
  color: #171525;
  background: #39d7c8;
  box-shadow: 2px 2px 0 #171525;
}

.expressive-theme .toast {
  border: 2px solid #171525;
  color: #171525;
  background: #ffd23f;
  box-shadow: 5px 5px 0 #171525;
}

@media (max-width: 920px) {
  .expressive-theme .site-nav {
    border: 3px solid #171525;
    background: #fffaf1;
    box-shadow: 8px 8px 0 #171525;
  }

  .expressive-theme .site-nav a:hover {
    background: #e8e0ff;
  }

  .expressive-theme .hero::after {
    top: 320px;
    right: -45px;
  }

  .expressive-theme .hero-copy {
    text-align: center;
  }

  .expressive-theme .hero h1,
  .expressive-theme .hero-lead {
    margin-right: auto;
    margin-left: auto;
  }

  .expressive-theme .hero-actions,
  .expressive-theme .hero-assurance {
    justify-content: center;
  }

  .expressive-theme .product-stage {
    width: 100%;
  }

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

  .expressive-theme .capability-card:nth-child(n) {
    grid-column: auto;
  }

  .expressive-theme .price-card.recommended {
    transform: none;
  }
}

@media (max-width: 640px) {
  .expressive-theme .hero::before {
    top: -105px;
    right: -145px;
    width: 330px;
    height: 330px;
    box-shadow: -11px 11px 0 #ff5e7d;
  }

  .expressive-theme .hero::after {
    top: 310px;
    right: -52px;
    width: 95px;
    height: 95px;
  }

  .expressive-theme .hero-glow-one {
    top: 80px;
    right: 8%;
    width: 46px;
    height: 46px;
  }

  .expressive-theme .hero-glow-two {
    display: none;
  }

  .expressive-theme .hero h1 {
    font-size: clamp(38px, 11vw, 47px);
  }

  .expressive-theme .hero h1 span {
    text-shadow: 3px 3px 0 #ffd23f;
  }

  .expressive-theme .product-stage {
    transform: none;
  }

  .expressive-theme .stage-halo {
    transform: translate(9px, 9px) rotate(-1deg);
  }

  .expressive-theme .hero-real-frame {
    border-width: 2px;
    border-radius: 14px;
    box-shadow: 8px 8px 0 #171525;
  }

  .expressive-theme .real-shot-bar,
  .expressive-theme .hero-real-frame figcaption {
    border-width: 2px;
  }

  .expressive-theme .outcome-card:nth-child(n) {
    margin-top: 0;
    transform: none;
  }

  .expressive-theme .capability-grid {
    grid-template-columns: 1fr;
  }

  .expressive-theme .capability-card,
  .expressive-theme .outcome-card,
  .expressive-theme .price-card,
  .expressive-theme .faq-list details {
    box-shadow: 6px 6px 0 #171525;
  }

  .expressive-theme .section::before {
    width: 90px;
    height: 90px;
  }

  .expressive-theme .guide-panel,
  .expressive-theme .final-cta-inner {
    box-shadow: 7px 7px 0 #171525;
  }
}

.expressive-theme {
  max-width: 100%;
  overflow-x: clip;
}

html:has(body.expressive-theme) {
  max-width: 100%;
  overflow-x: clip;
  background: #fffaf1;
}

/* Designed mastheads for independent navigation views */
.route-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  align-items: end;
  gap: 54px;
  margin-bottom: 62px;
  padding: 40px 44px 42px;
  overflow: hidden;
  border: 3px solid #171525;
  border-radius: 26px;
  box-shadow: 12px 12px 0 #171525;
}

.route-heading::before {
  position: absolute;
  z-index: 0;
  top: -68px;
  right: -58px;
  width: 190px;
  height: 190px;
  content: "";
  transform: rotate(18deg);
  border: 3px solid currentColor;
  border-radius: 50%;
  opacity: .16;
}

.route-heading::after {
  position: absolute;
  right: 28%;
  bottom: -45px;
  width: 92px;
  height: 92px;
  content: "";
  transform: rotate(28deg);
  border: 3px solid #171525;
  background: #ff5e7d;
}

.route-heading-main,
.route-heading-aside {
  position: relative;
  z-index: 1;
}

.route-kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 26px;
  font-family: Consolas, monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}

.route-kicker > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid #171525;
  border-radius: 50%;
  color: #171525;
  background: #ffd23f;
  box-shadow: 3px 3px 0 #171525;
  letter-spacing: 0;
}

.route-heading h1 {
  max-width: 720px;
  margin: 0;
  color: inherit;
  font-size: clamp(46px, 5vw, 68px);
  line-height: 1.03;
  letter-spacing: -.06em;
  text-wrap: balance;
}

.route-heading h1 mark {
  display: inline;
  padding: 0 .08em .06em;
  color: #171525;
  background: #ffd23f;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.route-heading-aside {
  padding-left: 28px;
  border-left: 3px solid currentColor;
}

.route-aside-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border: 2px solid #171525;
  border-radius: 8px;
  color: #171525;
  background: #39d7c8;
  box-shadow: 3px 3px 0 #171525;
  font-size: 10px;
  font-weight: 900;
}

.route-heading-aside p {
  margin: 0 0 20px;
  color: inherit;
  font-size: 13px;
  line-height: 1.8;
  opacity: .84;
}

.route-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.route-tags span {
  padding: 5px 9px;
  border: 2px solid currentColor;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 850;
}

.route-heading-ai {
  color: #fff;
  background:
    linear-gradient(120deg, transparent 62%, rgba(255, 210, 63, .12) 62%),
    #171525;
  box-shadow: 12px 12px 0 #39d7c8;
}

.route-heading-ai h1 mark {
  background: #ffd23f;
}

.route-heading-ai .route-heading-aside {
  border-left-color: rgba(255, 255, 255, .32);
}

.route-heading-features {
  color: #171525;
  background:
    linear-gradient(118deg, transparent 66%, rgba(255, 255, 255, .35) 66%),
    #ffd23f;
  box-shadow: 12px 12px 0 #6543e8;
}

.route-heading-features h1 mark {
  color: #fff;
  background: #6543e8;
}

.route-heading-features .route-aside-label {
  background: #ff5e7d;
}

.route-heading-pricing {
  color: #fff;
  background:
    linear-gradient(118deg, transparent 64%, rgba(255, 255, 255, .09) 64%),
    #6543e8;
  box-shadow: 12px 12px 0 #ff5e7d;
}

.route-heading-pricing h1 mark {
  background: #ffd23f;
}

.route-heading-pricing .route-heading-aside {
  border-left-color: rgba(255, 255, 255, .35);
}

.route-heading-faq {
  color: #171525;
  background:
    linear-gradient(118deg, transparent 67%, rgba(255, 255, 255, .32) 67%),
    #39d7c8;
  box-shadow: 12px 12px 0 #ffd23f;
}

.route-heading-faq h1 mark {
  color: #fff;
  background: #ff5e7d;
}

.route-heading-faq .route-aside-label {
  background: #fffaf1;
}

.faq-content-grid {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: 34px;
}

.faq-question-card {
  position: sticky;
  top: 106px;
  padding: 30px;
  border: 3px solid #171525;
  border-radius: 20px;
  background: #ffd23f;
  box-shadow: 9px 9px 0 #6543e8;
  transform: rotate(-.7deg);
}

.faq-question-card > span {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 5px 9px;
  border: 2px solid #171525;
  border-radius: 7px;
  background: #fffaf1;
  font-size: 10px;
  font-weight: 900;
}

.faq-question-card h3 {
  margin: 0 0 12px;
  font-size: 27px;
  line-height: 1.25;
  letter-spacing: -.04em;
}

.faq-question-card p {
  margin-bottom: 24px;
  color: #4f485a;
  font-size: 13px;
  line-height: 1.75;
}

.faq-question-card .button {
  width: 100%;
}

.expressive-theme .faq-content-grid .faq-list {
  display: grid;
  gap: 15px;
}

@media (max-width: 920px) {
  .route-heading {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 34px;
  }

  .route-heading::after {
    right: 7%;
  }

  .route-heading-aside,
  .route-heading-ai .route-heading-aside,
  .route-heading-pricing .route-heading-aside {
    padding: 24px 0 0;
    border-top: 3px solid currentColor;
    border-left: 0;
  }

  .faq-content-grid {
    grid-template-columns: 1fr;
  }

  .faq-question-card {
    position: static;
    transform: none;
  }
}

@media (max-width: 640px) {
  .route-heading {
    gap: 26px;
    margin-bottom: 42px;
    padding: 26px 21px 28px;
    border-radius: 19px;
    box-shadow: 7px 7px 0 #171525;
  }

  .route-heading-ai {
    box-shadow: 7px 7px 0 #39d7c8;
  }

  .route-heading-features {
    box-shadow: 7px 7px 0 #6543e8;
  }

  .route-heading-pricing {
    box-shadow: 7px 7px 0 #ff5e7d;
  }

  .route-heading-faq {
    box-shadow: 7px 7px 0 #ffd23f;
  }

  .route-heading::before {
    top: -50px;
    right: -58px;
    width: 140px;
    height: 140px;
  }

  .route-heading::after {
    display: none;
  }

  .route-kicker {
    margin-bottom: 20px;
  }

  .route-kicker > span {
    width: 36px;
    height: 36px;
  }

  .route-heading h1 {
    font-size: clamp(37px, 10.5vw, 48px);
    line-height: 1.07;
  }

  .route-heading-aside,
  .route-heading-ai .route-heading-aside,
  .route-heading-pricing .route-heading-aside {
    padding-top: 20px;
  }

  .faq-question-card {
    padding: 23px;
    box-shadow: 7px 7px 0 #6543e8;
  }

  .faq-question-card h3 {
    font-size: 23px;
  }
}

/* Editorial masthead refinement: lighter, typographic and less billboard-like */
.route-heading {
  --route-accent: #6543e8;
  --route-highlight: #ffd23f;
  --route-soft: #e8e0ff;
  grid-template-columns: minmax(0, 1.3fr) minmax(310px, .7fr);
  align-items: end;
  gap: 72px;
  margin-bottom: 66px;
  padding: 34px 0 42px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  color: #171525;
  background: transparent;
  box-shadow: none;
}

.route-heading::before {
  top: 0;
  right: auto;
  left: 0;
  width: 112px;
  height: 8px;
  transform: none;
  border: 0;
  border-radius: 0;
  opacity: 1;
  background: var(--route-accent);
  box-shadow: 118px 0 0 var(--route-highlight);
}

.route-heading::after {
  display: block;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: 3px;
  transform: none;
  border: 0;
  background: #171525;
}

.route-kicker {
  margin-bottom: 28px;
  color: var(--route-accent);
}

.route-kicker > span {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: #171525;
  background: var(--route-highlight);
  box-shadow: 4px 4px 0 var(--route-accent);
  transform: rotate(-4deg);
}

.route-heading h1 {
  max-width: 760px;
  color: #171525;
  font-size: clamp(48px, 5.1vw, 70px);
  line-height: 1.04;
}

.route-heading h1 mark,
.route-heading-ai h1 mark,
.route-heading-features h1 mark,
.route-heading-pricing h1 mark,
.route-heading-faq h1 mark {
  padding: 0 .03em .02em;
  color: var(--route-accent);
  background: linear-gradient(transparent 72%, var(--route-highlight) 72%);
}

.route-heading-aside,
.route-heading-ai .route-heading-aside,
.route-heading-pricing .route-heading-aside {
  padding: 26px;
  border: 3px solid #171525;
  border-radius: 17px;
  color: #171525;
  background: #fffaf1;
  box-shadow: 8px 8px 0 var(--route-accent);
  transform: rotate(.65deg);
}

.route-aside-label {
  margin-bottom: 16px;
  border-color: #171525;
  color: #fff;
  background: var(--route-accent);
  box-shadow: 3px 3px 0 var(--route-highlight);
}

.route-heading-ai .route-aside-label,
.route-heading-features .route-aside-label,
.route-heading-pricing .route-aside-label,
.route-heading-faq .route-aside-label {
  color: #fff;
  background: var(--route-accent);
}

.route-heading-aside p {
  color: #4f485a;
  opacity: 1;
}

.route-tags span {
  border-color: #171525;
  color: #171525;
  background: var(--route-soft);
}

.route-heading-ai {
  --route-accent: #6543e8;
  --route-highlight: #ffd23f;
  --route-soft: #e8e0ff;
}

.route-heading-features {
  --route-accent: #0c9f91;
  --route-highlight: #ffd23f;
  --route-soft: #d7fbf6;
}

.route-heading-pricing {
  --route-accent: #e84568;
  --route-highlight: #ffd23f;
  --route-soft: #ffdfd1;
}

.route-heading-faq {
  --route-accent: #6543e8;
  --route-highlight: #39d7c8;
  --route-soft: #e8e0ff;
}

@media (max-width: 920px) {
  .route-heading {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 30px;
  }

  .route-heading-aside,
  .route-heading-ai .route-heading-aside,
  .route-heading-pricing .route-heading-aside {
    padding: 24px;
    border: 3px solid #171525;
    transform: none;
  }
}

@media (max-width: 640px) {
  .route-heading {
    gap: 27px;
    margin-bottom: 46px;
    padding: 27px 0 34px;
    border-radius: 0;
    box-shadow: none;
  }

  .route-heading::before {
    top: 0;
    right: auto;
    left: 0;
    width: 76px;
    height: 6px;
    box-shadow: 82px 0 0 var(--route-highlight);
  }

  .route-heading::after {
    display: block;
  }

  .route-kicker {
    margin-bottom: 22px;
  }

  .route-heading h1 {
    font-size: clamp(38px, 10.8vw, 49px);
  }

  .route-heading-aside,
  .route-heading-ai .route-heading-aside,
  .route-heading-pricing .route-heading-aside {
    padding: 21px;
    box-shadow: 6px 6px 0 var(--route-accent);
  }
}

.expressive-theme .hero h1 {
  max-width: 820px;
  font-size: clamp(50px, 5vw, 68px);
}

.expressive-theme .hero h1 span {
  position: relative;
  z-index: 1;
  display: table;
  width: fit-content;
  max-width: 100%;
  margin-top: 8px;
  color: #6543e8;
  text-shadow: none;
}

.expressive-theme .hero h1 span::after {
  position: absolute;
  z-index: -1;
  right: -.08em;
  bottom: .04em;
  left: -.02em;
  height: .22em;
  content: "";
  transform: rotate(-1.2deg);
  background: #ffd23f;
}

@media (max-width: 640px) {
  .expressive-theme .hero h1 {
    max-width: 330px;
    margin-right: 0;
    margin-left: 0;
    font-size: clamp(38px, 10.4vw, 44px);
  }

  .expressive-theme .hero-copy {
    text-align: left;
  }

  .expressive-theme .hero-lead {
    margin-right: 0;
    margin-left: 0;
  }

  .expressive-theme .hero-actions,
  .expressive-theme .hero-assurance {
    justify-content: flex-start;
  }

  .expressive-theme .hero::before {
    right: -290px;
  }

  .expressive-theme .hero::after {
    right: -82px;
  }

  .expressive-theme .hero-glow-one {
    right: -28px;
  }

  .expressive-theme .final-cta {
    padding: 56px 0 64px;
  }
}

.skeuo-theme .header-cta {
  border-color: #6791f5;
  color: #fff;
  background-color: #3f70df;
  background-image: linear-gradient(180deg, #6d9cff 0%, #4779eb 48%, #2a58c6 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .52), inset 0 -4px 8px rgba(18, 54, 142, .38), 0 4px 0 #183b92, 0 10px 20px rgba(0, 0, 0, .36);
}

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

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .motion-ready [data-reveal] {
    transform: none;
    opacity: 1;
  }
}

/* Real product screenshots */
.hero-real-frame {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(202, 213, 229, .98);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 36px 80px rgba(29, 47, 78, .2), 0 6px 18px rgba(40, 70, 120, .08);
  transform: rotateY(-3deg) rotateX(1deg);
  transform-origin: center;
}

.real-shot-bar,
.real-demo-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 50px;
  align-items: center;
  padding: 0 17px;
  border-bottom: 1px solid #e7ebf2;
  color: var(--muted);
  background: #fbfcfe;
  font-size: 10px;
}

.real-shot-bar > span,
.real-demo-bar > span {
  font-weight: 750;
  text-align: center;
}

.real-shot-bar > em,
.real-demo-bar > em {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 6px;
  font-size: 9px;
  font-style: normal;
}

.real-shot-bar > em i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(15, 159, 121, .1);
}

.hero-real-frame > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: left top;
  background: #f4f7fb;
}

.hero-real-frame figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 58px;
  padding: 12px 17px;
  border-top: 1px solid #e7ebf2;
  background: #fff;
}

.hero-real-frame figcaption strong {
  font-size: 12px;
}

.hero-real-frame figcaption span {
  color: var(--muted);
  font-size: 9px;
  text-align: right;
}

.real-feature-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
}

.real-feature-card .feature-copy {
  min-height: 224px;
  justify-content: flex-start;
  padding: 30px 30px 20px;
}

.real-feature-card .feature-label {
  margin-bottom: 15px;
}

.real-feature-card .feature-copy h3 {
  margin-bottom: 10px;
  font-size: clamp(23px, 2.2vw, 29px);
}

.real-feature-card .feature-copy p {
  margin-bottom: 16px;
}

.real-feature-media {
  width: auto;
  min-height: 0;
  aspect-ratio: 16 / 10;
  margin: 0 16px 16px;
  border: 1px solid #dfe5ef;
  border-radius: 16px;
  background: #eef2f7;
}

.real-feature-media img {
  object-fit: cover;
  object-position: left top;
}

.real-feature-card:hover .real-feature-media img {
  transform: none;
}

.real-demo-frame {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.real-demo-frame > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: left top;
  background: #f4f7fb;
}

.real-demo-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 74px;
  padding: 15px 22px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.real-demo-caption strong {
  flex: 0 0 auto;
  font-size: 15px;
}

.real-demo-caption p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.plan-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin: 26px 0 12px;
  border: 1px solid #dce4f1;
  border-radius: 18px;
  color: var(--blue);
  background: linear-gradient(145deg, #f7faff, #edf3ff);
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -.03em;
}

.price-card.recommended .plan-icon {
  border-color: #4f76e8;
  color: #fff;
  background: linear-gradient(145deg, #557cff, #2f5fe7);
  box-shadow: 0 12px 24px rgba(47, 95, 231, .2);
}

@media (min-width: 921px) {
  .hero-grid {
    align-items: start;
  }

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

@media (max-width: 920px) {
  .hero-real-frame {
    transform: none;
  }

  .real-feature-card .feature-copy {
    min-height: 218px;
  }
}

@media (max-width: 640px) {
  .hero-real-frame,
  .real-demo-frame {
    border-radius: 16px;
  }

  .real-shot-bar,
  .real-demo-bar {
    grid-template-columns: auto minmax(0, 1fr);
    height: 42px;
    padding: 0 11px;
  }

  .real-shot-bar > span,
  .real-demo-bar > span {
    overflow: hidden;
    padding-left: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: left;
  }

  .real-shot-bar > em,
  .real-demo-bar > em {
    display: none;
  }

  .hero-real-frame figcaption {
    display: grid;
    gap: 3px;
    padding: 10px 12px;
  }

  .hero-real-frame figcaption span {
    text-align: left;
  }

  .real-feature-card .feature-copy {
    min-height: 0;
    padding: 26px 24px 17px;
  }

  .real-feature-media {
    min-height: 0;
    margin: 0 12px 12px;
    border-radius: 13px;
  }

  .demo-tabs {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .demo-tabs::-webkit-scrollbar {
    display: none;
  }

  .demo-tab {
    min-width: 104px;
    flex: 0 0 auto;
    padding: 9px 12px;
  }

  .real-demo-caption {
    display: grid;
    gap: 4px;
    min-height: 0;
    padding: 13px 15px;
  }

  .real-demo-caption p {
    font-size: 11px;
    line-height: 1.6;
    text-align: left;
  }
}

/* Single maximized product screenshot layout */
.hero {
  padding: 82px 0 208px;
}

.trust-strip {
  --well-right: clamp(34px, 4vw, 72px);
  --well-width: 148px;
  --well-depth: 106px;
}

.expressive-theme .trust-strip {
  background: transparent;
}

.expressive-theme .trust-strip::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background: #5131c9;
  clip-path: polygon(
    0 0,
    calc(100% - var(--well-right) - var(--well-width)) 0,
    calc(100% - var(--well-right) - var(--well-width)) var(--well-depth),
    calc(100% - var(--well-right)) var(--well-depth),
    calc(100% - var(--well-right)) 0,
    100% 0,
    100% 100%,
    0 100%
  );
}

.trust-grid {
  position: relative;
  z-index: 2;
  padding-right: calc(var(--well-width) + var(--well-right) + 16px);
}

@media (min-width: 921px) {
  .expressive-theme .hero {
    overflow: visible;
  }
}

.ball-motion-system {
  position: absolute;
  z-index: 8;
  inset: 0;
  overflow: visible;
  pointer-events: none;
}

.powered-track {
  position: absolute;
  z-index: 3;
  top: -17px;
  right: calc(var(--well-right) + var(--well-width));
  left: -42px;
  height: 22px;
  border: 3px solid #171525;
  border-radius: 0 11px 11px 0;
  background: #ffd23f;
  box-shadow: inset 0 -4px 0 rgba(23, 21, 37, .12), 0 5px 0 rgba(23, 21, 37, .14);
}

.powered-track::after {
  display: none;
}

.powered-track__belt {
  position: absolute;
  inset: 3px 5px;
  overflow: hidden;
  border-radius: 7px;
  background:
    repeating-linear-gradient(135deg, #ff5e7d 0 13px, #ffd23f 13px 26px, #39d7c8 26px 39px, #6543e8 39px 52px);
  background-size: 74px 74px;
  animation: poweredTrackMove .38s linear infinite;
}

.powered-track__belt::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, .5), transparent 45%, rgba(23, 21, 37, .13));
}

.launcher-well {
  position: absolute;
  z-index: 5;
  top: -3px;
  right: var(--well-right);
  width: var(--well-width);
  height: var(--well-depth);
  pointer-events: none;
}

.launcher-well__guide {
  position: absolute;
  z-index: 4;
  top: 13px;
  width: 11px;
  height: 57px;
  border: 3px solid #171525;
  border-radius: 8px;
  background: linear-gradient(90deg, #39d7c8 0 42%, #7047eb 42% 100%);
  box-shadow: 3px 3px 0 rgba(23, 21, 37, .14), inset 0 0 0 2px rgba(255, 255, 255, .3);
  transform-origin: center top;
}

.launcher-well__guide-left {
  left: 13px;
  transform: rotate(-7deg);
}

.launcher-well__guide-right {
  right: 13px;
  transform: rotate(7deg) scaleX(-1);
}

.launcher-well__rim {
  display: none;
}

.ball-launcher {
  position: absolute;
  z-index: 6;
  inset: 0;
  filter: drop-shadow(4px 4px 0 rgba(23, 21, 37, .14));
}

.ball-launcher__cup {
  position: absolute;
  z-index: 6;
  top: 68px;
  left: 25px;
  width: 98px;
  height: 19px;
  border: 4px solid #171525;
  border-radius: 5px 5px 15px 15px;
  background: linear-gradient(180deg, #ffd23f 0 58%, #ff6f72 58% 100%);
  box-shadow: inset 0 3px 0 rgba(255, 255, 255, .42);
  transform-origin: center bottom;
}

.ball-launcher__stem {
  position: absolute;
  z-index: 5;
  top: 84px;
  left: 69px;
  width: 10px;
  height: 8px;
  border: 3px solid #171525;
  border-radius: 4px;
  background: #fff8ed;
  transform-origin: center bottom;
}

.ball-launcher__coil {
  position: absolute;
  z-index: 4;
  top: 89px;
  left: 58px;
  display: flex;
  width: 32px;
  height: 13px;
  flex-direction: column;
  justify-content: flex-start;
  transform-origin: center bottom;
}

.ball-launcher__coil i {
  width: 32px;
  height: 8px;
  margin-top: -3px;
  border: 3px solid #171525;
  border-top: 0;
  border-radius: 0 0 50% 50%;
  background: rgba(57, 215, 200, .32);
}

.ball-launcher__body {
  position: absolute;
  z-index: 3;
  right: 47px;
  bottom: 2px;
  width: 50px;
  height: 20px;
  border: 3px solid #171525;
  border-radius: 9px 9px 5px 5px;
  background: linear-gradient(180deg, #7047eb, #5131c9);
  box-shadow: inset 0 -5px 0 rgba(23, 21, 37, .16);
}

.ball-launcher__body::before {
  position: absolute;
  top: 4px;
  left: 18px;
  width: 8px;
  height: 8px;
  content: "";
  border: 3px solid #171525;
  border-radius: 50%;
  background: #39d7c8;
}

.ball-launcher__body span,
.ball-launcher__body b {
  position: absolute;
  top: 4px;
  width: 5px;
  height: 5px;
  border: 1px solid #171525;
  border-radius: 50%;
}

.ball-launcher__body span {
  left: 5px;
  background: #ff6f72;
}

.ball-launcher__body b {
  right: 5px;
  background: #6543e8;
  animation: ballLauncherLight 1.3s ease-in-out infinite;
}

.ball-launcher__base {
  position: absolute;
  z-index: 2;
  right: 40px;
  bottom: 0;
  width: 64px;
  height: 9px;
  border: 3px solid #171525;
  border-radius: 6px 6px 3px 3px;
  background: linear-gradient(90deg, #39d7c8 0 66%, #ffd23f 66% 100%);
}

.ball-launcher.is-capturing .ball-launcher__cup {
  animation: ballLauncherCatch .2s ease-out;
}

.ball-launcher.is-charging .ball-launcher__cup,
.ball-launcher.is-charging .ball-launcher__stem {
  transform: translateY(12px);
}

.ball-launcher.is-charging .ball-launcher__coil {
  transform: translateY(3px) scaleY(.45);
}

.ball-launcher.is-charging .ball-launcher__body b {
  background: #ff5e7d;
  animation: ballLauncherCharge .22s linear infinite;
}

.ball-launcher.is-firing .ball-launcher__cup,
.ball-launcher.is-firing .ball-launcher__stem {
  animation: ballLauncherFire .42s cubic-bezier(.12, .82, .25, 1);
}

.ball-launcher.is-firing .ball-launcher__coil {
  animation: ballLauncherCoilFire .42s cubic-bezier(.12, .82, .25, 1);
}

@keyframes poweredTrackMove {
  to { background-position: 74px 0; }
}

@keyframes poweredTrackRoll {
  to { transform: rotate(360deg); }
}

@keyframes ballLauncherCatch {
  0%, 100% { transform: translateY(0); }
  55% { transform: translateY(5px); }
}

@keyframes ballLauncherFire {
  0% { transform: translateY(12px); }
  38% { transform: translateY(-7px); }
  72%, 100% { transform: translateY(0); }
}

@keyframes ballLauncherCoilFire {
  0% { transform: translateY(3px) scaleY(.45); }
  38% { transform: translateY(-4px) scaleY(1.15); }
  72%, 100% { transform: translateY(0) scaleY(1); }
}

@keyframes ballLauncherCharge {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .3; transform: scale(.65); }
}

@keyframes ballLauncherLight {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.72); }
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 52px;
}

.hero-copy {
  width: min(100%, 900px);
  margin: 0 auto;
  padding-top: 0;
  text-align: center;
}

.hero h1 {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.hero-lead {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.hero-actions,
.hero-assurance {
  justify-content: center;
}

.product-stage {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  transform: none;
}

.stage-halo {
  inset: 5% 1% -3%;
  transform: none;
  border-radius: 48px;
  filter: blur(34px);
}

.hero-real-frame {
  transform: none;
  border-radius: 24px;
  box-shadow: 0 42px 90px rgba(29, 47, 78, .18), 0 8px 22px rgba(40, 70, 120, .08);
}

.hero-real-frame > img {
  aspect-ratio: 16 / 9;
}

.hero-real-frame figcaption {
  min-height: 68px;
  padding: 13px 18px;
}

.hero-real-frame figcaption > div {
  display: grid;
  gap: 3px;
}

.hero-real-frame figcaption strong {
  font-size: 13px;
}

.hero-real-frame figcaption span {
  color: var(--muted);
  font-size: 10px;
  text-align: left;
}

.shot-open-link {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0 13px;
  border: 1px solid #d8e1f0;
  border-radius: 9px;
  color: var(--blue);
  background: #f7f9fe;
  font-size: 11px;
  font-weight: 800;
}

.shot-open-link:hover {
  border-color: #b9c9ee;
  background: var(--blue-soft);
}

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

.capability-card {
  position: relative;
  min-height: 330px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.capability-card::after {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 180px;
  height: 180px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 112, 240, .08), transparent 68%);
  pointer-events: none;
}

.capability-card:hover {
  transform: translateY(-3px);
  border-color: #c9d5e9;
  box-shadow: var(--shadow-md);
}

.capability-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 25px;
}

.capability-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid #cad8ff;
  border-radius: 15px;
  color: var(--blue);
  background: var(--blue-soft);
}

.capability-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.capability-green {
  border-color: #c6eadf;
  color: var(--green);
  background: #eaf9f4;
}

.capability-purple {
  border-color: #ddceff;
  color: var(--purple);
  background: #f2ecff;
}

.capability-amber {
  border-color: #f3dbb9;
  color: var(--amber);
  background: #fff5e7;
}

.capability-no {
  color: #a1acbd;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}

.capability-card h3 {
  margin: 0 0 10px;
  font-size: 26px;
  letter-spacing: -.03em;
}

.capability-card > p {
  max-width: 500px;
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.capability-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: #354258;
  font-size: 12px;
  list-style: none;
}

.capability-card li::before {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
  vertical-align: 2px;
}

@media (max-width: 920px) {
  .hero {
    padding: 72px 0 84px;
  }

  .ball-motion-system {
    display: none;
  }

  .hero-grid {
    gap: 46px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 54px 0 66px;
  }

  .hero-grid {
    gap: 38px;
  }

  .product-stage {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .hero-real-frame {
    border-radius: 15px;
  }

  .hero-real-frame figcaption {
    display: flex;
    min-height: 58px;
    padding: 10px 11px;
  }

  .hero-real-frame figcaption span {
    display: none;
  }

  .shot-open-link {
    min-height: 34px;
    padding: 0 10px;
    font-size: 10px;
  }

  .capability-grid {
    grid-template-columns: 1fr;
  }

  .capability-card {
    min-height: 0;
    padding: 25px;
    border-radius: 20px;
  }

  .capability-head {
    margin-bottom: 20px;
  }

  .capability-card h3 {
    font-size: 23px;
  }
}

/* Dark skeuomorphic theme */
.skeuo-theme {
  --ink: #f3f7ff;
  --ink-soft: #b8c5d8;
  --muted: #8797af;
  --line: rgba(145, 166, 198, .2);
  --line-strong: rgba(171, 192, 222, .32);
  --surface: #0b1321;
  --surface-soft: #101a2b;
  --surface-blue: #162640;
  --blue: #6f9cff;
  --blue-dark: #3e6ee8;
  --blue-soft: rgba(73, 120, 225, .18);
  --green: #45d6af;
  --amber: #f3ad4b;
  --purple: #a98cff;
  --shadow-sm: 0 18px 38px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .055);
  --shadow-md: 0 30px 80px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .06);
  position: relative;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(60, 104, 201, .17), transparent 30%),
    radial-gradient(circle at 90% 34%, rgba(39, 165, 149, .08), transparent 28%),
    linear-gradient(135deg, #0c1422 0%, #070c14 52%, #0b1320 100%);
  background-attachment: fixed;
}

.skeuo-theme::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: .28;
  background-image:
    repeating-linear-gradient(115deg, rgba(255, 255, 255, .018) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(25deg, rgba(0, 0, 0, .045) 0 1px, transparent 1px 5px);
  mix-blend-mode: soft-light;
}

.skeuo-theme ::selection {
  color: #fff;
  background: rgba(82, 128, 235, .72);
}

.skeuo-theme :focus-visible {
  outline-color: rgba(117, 161, 255, .72);
}

.skeuo-theme .site-header {
  border-bottom: 1px solid rgba(151, 175, 211, .17);
  background:
    linear-gradient(180deg, rgba(24, 35, 53, .97), rgba(10, 17, 29, .97)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .018) 0 1px, transparent 1px 5px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07), 0 10px 28px rgba(0, 0, 0, .32);
  backdrop-filter: blur(18px) saturate(1.2);
}

.skeuo-theme .site-header.is-scrolled {
  border-color: rgba(147, 173, 214, .24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .065), 0 16px 36px rgba(0, 0, 0, .4);
}

.skeuo-theme .brand-mark,
.skeuo-theme .dialog-icon {
  border: 1px solid #6d93ee;
  color: #fff;
  background: linear-gradient(145deg, #6795ff 0%, #2f62de 56%, #1c43a6 100%);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, .55),
    inset 0 -5px 10px rgba(6, 31, 97, .36),
    0 7px 0 #152f75,
    0 12px 24px rgba(0, 0, 0, .35);
}

.skeuo-theme .brand-copy strong {
  color: #f7f9ff;
  text-shadow: 0 1px 0 #000;
}

.skeuo-theme .brand-copy strong em {
  color: #8fb1ff;
}

.skeuo-theme .brand-copy small,
.skeuo-theme .site-nav a {
  color: #9eacc1;
}

.skeuo-theme .site-nav a:hover {
  color: #fff;
}

.skeuo-theme .site-nav a::after {
  background: linear-gradient(90deg, #79a6ff, #45d6af);
  box-shadow: 0 0 12px rgba(111, 156, 255, .65);
}

.skeuo-theme .menu-toggle {
  border: 1px solid #31415a;
  color: #dce6f5;
  background: linear-gradient(145deg, #1b293d, #0d1625);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .09), 0 5px 12px rgba(0, 0, 0, .35);
}

.skeuo-theme .menu-toggle span:not(.sr-only) {
  background: #d8e2f2;
}

.skeuo-theme .button {
  border: 1px solid #32445f;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .12),
    inset 0 -3px 7px rgba(0, 0, 0, .25),
    0 5px 0 #060a11,
    0 11px 20px rgba(0, 0, 0, .32);
  text-shadow: 0 1px 1px rgba(0, 0, 0, .45);
  transform: translateY(-2px);
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}

.skeuo-theme .button:hover {
  filter: brightness(1.08);
  transform: translateY(-3px);
}

.skeuo-theme .button:active {
  transform: translateY(3px);
  box-shadow:
    inset 0 2px 6px rgba(0, 0, 0, .38),
    inset 0 -1px 0 rgba(255, 255, 255, .08),
    0 1px 0 #05080e,
    0 4px 9px rgba(0, 0, 0, .32);
}

.skeuo-theme .button-primary {
  border-color: #6791f5;
  color: #fff;
  background: linear-gradient(180deg, #6d9cff 0%, #4779eb 48%, #2a58c6 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .55),
    inset 0 -5px 9px rgba(18, 54, 142, .38),
    0 5px 0 #183b92,
    0 12px 24px rgba(0, 0, 0, .38);
}

.skeuo-theme .button-secondary {
  border-color: #3a4c66;
  color: #dce6f5;
  background: linear-gradient(180deg, #24334a 0%, #172235 50%, #101827 100%);
}

.skeuo-theme .button-light {
  border-color: #819bc3;
  color: #12213a;
  background: linear-gradient(180deg, #f7fbff 0%, #c8d5e8 55%, #9eb0ca 100%);
  text-shadow: 0 1px 0 rgba(255, 255, 255, .65);
  box-shadow: inset 0 1px 0 #fff, inset 0 -4px 8px rgba(55, 74, 105, .2), 0 5px 0 #536984, 0 12px 22px rgba(0, 0, 0, .32);
}

.skeuo-theme .hero {
  border-bottom: 1px solid rgba(144, 168, 202, .18);
  background:
    radial-gradient(circle at 50% 18%, rgba(70, 112, 210, .22), transparent 36%),
    radial-gradient(circle at 92% 60%, rgba(47, 175, 151, .09), transparent 28%),
    linear-gradient(180deg, #0d1728 0%, #080e18 100%);
  box-shadow: inset 0 -14px 40px rgba(0, 0, 0, .3);
}

.skeuo-theme .hero::before {
  opacity: .42;
  background-image:
    linear-gradient(rgba(142, 168, 211, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142, 168, 211, .055) 1px, transparent 1px);
  mask-image: linear-gradient(to bottom, #000, transparent 94%);
}

.skeuo-theme .hero-glow-one {
  background: rgba(72, 111, 214, .16);
}

.skeuo-theme .hero-glow-two {
  background: rgba(40, 169, 144, .08);
}

.skeuo-theme .eyebrow {
  color: #7fa8ff;
  text-shadow: 0 0 18px rgba(104, 151, 255, .32);
}

.skeuo-theme .hero h1,
.skeuo-theme .section-heading h2,
.skeuo-theme .faq-intro h2,
.skeuo-theme .guide-copy h2,
.skeuo-theme .final-cta h2 {
  color: #f6f8fd;
  text-shadow: 0 2px 1px #000, 0 8px 25px rgba(0, 0, 0, .32);
}

.skeuo-theme .hero h1 span {
  color: #76a2ff;
  background: linear-gradient(180deg, #9ab9ff 0%, #5c8cf6 60%, #3769d9 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 10px rgba(54, 103, 214, .24));
}

.skeuo-theme .hero-lead,
.skeuo-theme .section-heading > p,
.skeuo-theme .split-heading > p,
.skeuo-theme .faq-intro > p,
.skeuo-theme .guide-copy > p {
  color: #aab8ca;
}

.skeuo-theme .hero-assurance {
  color: #9eacc0;
}

.skeuo-theme .hero-assurance i {
  border-color: rgba(68, 213, 175, .32);
  background: linear-gradient(145deg, #183c39, #0d2425);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, .08), 0 2px 6px rgba(0, 0, 0, .3);
}

.skeuo-theme .stage-halo {
  opacity: .72;
  background: linear-gradient(135deg, rgba(69, 111, 218, .26), rgba(123, 91, 213, .13) 55%, rgba(45, 182, 158, .12));
}

.skeuo-theme .hero-real-frame {
  padding: 7px;
  border: 1px solid #465a75;
  background:
    linear-gradient(145deg, #35445a 0%, #172233 18%, #0b111c 58%, #2b3a50 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .22),
    inset 0 -2px 4px rgba(0, 0, 0, .8),
    0 12px 0 #05080e,
    0 42px 90px rgba(0, 0, 0, .58),
    0 0 60px rgba(56, 101, 203, .12);
}

.skeuo-theme .real-shot-bar {
  border: 1px solid #2d3c53;
  border-bottom-color: #05080d;
  border-radius: 17px 17px 0 0;
  color: #9eacc0;
  background:
    linear-gradient(180deg, #2c394c 0%, #151f2e 52%, #0d1521 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14), inset 0 -1px 0 rgba(0, 0, 0, .7);
  text-shadow: 0 1px 1px #000;
}

.skeuo-theme .window-dots i {
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, .55), 0 0 8px currentColor;
}

.skeuo-theme .hero-real-frame > img {
  border-right: 1px solid #26354a;
  border-left: 1px solid #26354a;
  filter: saturate(.97) contrast(1.015);
}

.skeuo-theme .hero-real-frame figcaption {
  border: 1px solid #2b3a50;
  border-top-color: #05080d;
  border-radius: 0 0 17px 17px;
  background: linear-gradient(180deg, #1c293c 0%, #101927 58%, #0a101a 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .075);
}

.skeuo-theme .hero-real-frame figcaption strong {
  color: #eef3fb;
  text-shadow: 0 1px 1px #000;
}

.skeuo-theme .hero-real-frame figcaption span {
  color: #8190a5;
}

.skeuo-theme .shot-open-link {
  border-color: #435a7b;
  color: #c7d8f4;
  background: linear-gradient(180deg, #2a3a53 0%, #17243a 52%, #101a2a 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14), inset 0 -2px 4px rgba(0, 0, 0, .32), 0 3px 0 #05080d, 0 7px 12px rgba(0, 0, 0, .3);
  text-shadow: 0 1px 1px #000;
}

.skeuo-theme .shot-open-link:hover {
  border-color: #6582ac;
  color: #fff;
  background: linear-gradient(180deg, #385177, #1b2d49);
}

.skeuo-theme .trust-strip {
  border-top: 1px solid rgba(255, 255, 255, .045);
  border-bottom: 1px solid rgba(136, 161, 198, .18);
  background:
    linear-gradient(180deg, #111d2e 0%, #0b1422 52%, #08101a 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .055), inset 0 -10px 24px rgba(0, 0, 0, .22);
}

.skeuo-theme .trust-grid article {
  border-right-color: rgba(144, 165, 196, .18);
}

.skeuo-theme .trust-grid strong {
  color: #edf3fb;
  text-shadow: 0 1px 1px #000;
}

.skeuo-theme .trust-grid span {
  color: #8392a7;
}

.skeuo-theme .section {
  position: relative;
  background:
    radial-gradient(circle at 10% 20%, rgba(60, 97, 177, .06), transparent 28%),
    linear-gradient(180deg, #0c1523 0%, #090f19 100%);
}

.skeuo-theme .section-tinted {
  border-top: 1px solid rgba(144, 166, 200, .12);
  border-bottom: 1px solid rgba(144, 166, 200, .12);
  background:
    radial-gradient(circle at 85% 15%, rgba(82, 72, 163, .08), transparent 30%),
    linear-gradient(180deg, #111b2b 0%, #0a111d 100%);
  box-shadow: inset 0 18px 38px rgba(0, 0, 0, .16), inset 0 -18px 38px rgba(0, 0, 0, .16);
}

.skeuo-theme .outcome-card,
.skeuo-theme .capability-card,
.skeuo-theme .price-card,
.skeuo-theme .faq-list details {
  border: 1px solid #293a52;
  background:
    linear-gradient(145deg, rgba(30, 44, 65, .98) 0%, rgba(16, 25, 39, .98) 58%, rgba(9, 15, 25, .98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .085),
    inset 0 -2px 5px rgba(0, 0, 0, .55),
    0 8px 0 #05080e,
    0 20px 38px rgba(0, 0, 0, .34);
}

.skeuo-theme .outcome-card:hover,
.skeuo-theme .capability-card:hover,
.skeuo-theme .price-card:hover {
  border-color: #3a506f;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .11),
    inset 0 -2px 5px rgba(0, 0, 0, .55),
    0 10px 0 #05080e,
    0 28px 48px rgba(0, 0, 0, .42);
}

.skeuo-theme .outcome-card.featured {
  border-color: #3f68c3;
  background:
    radial-gradient(circle at 85% 12%, rgba(116, 157, 255, .23), transparent 32%),
    linear-gradient(145deg, #21396c 0%, #14284f 52%, #0c1830 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .16),
    inset 0 -3px 8px rgba(4, 17, 48, .62),
    0 8px 0 #09142d,
    0 24px 52px rgba(0, 0, 0, .42),
    0 0 38px rgba(54, 103, 216, .12);
}

.skeuo-theme .card-index,
.skeuo-theme .capability-no {
  color: #70819a;
  text-shadow: 0 1px 0 #000;
}

.skeuo-theme .outcome-card h3,
.skeuo-theme .capability-card h3,
.skeuo-theme .price-card h3,
.skeuo-theme .faq-list summary {
  color: #f0f4fb;
  text-shadow: 0 1px 1px #000;
}

.skeuo-theme .outcome-card p,
.skeuo-theme .capability-card > p,
.skeuo-theme .price-card-head p,
.skeuo-theme .faq-list details p {
  color: #9cabc0;
}

.skeuo-theme .mini-flow i,
.skeuo-theme .role-stack i,
.skeuo-theme .local-status,
.skeuo-theme .tag-row span,
.skeuo-theme .dialog-meta span {
  border: 1px solid #33455f;
  color: #b6c5d9;
  background: linear-gradient(180deg, #233149 0%, #131d2c 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .075), inset 0 -2px 4px rgba(0, 0, 0, .25), 0 3px 6px rgba(0, 0, 0, .24);
}

.skeuo-theme .mini-flow b {
  background: #496dba;
  box-shadow: 0 0 8px rgba(75, 113, 193, .4);
}

.skeuo-theme .local-status span {
  background: #45d6af;
  box-shadow: 0 0 0 4px rgba(69, 214, 175, .11), 0 0 12px rgba(69, 214, 175, .45);
}

.skeuo-theme .capability-card::after {
  opacity: .8;
  background: radial-gradient(circle, rgba(95, 137, 232, .13), transparent 68%);
}

.skeuo-theme .capability-icon,
.skeuo-theme .plan-icon {
  border-color: #4a6389;
  background: linear-gradient(145deg, #2b4165 0%, #15243d 58%, #0d1728 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), inset 0 -4px 8px rgba(0, 0, 0, .32), 0 5px 0 #070d17, 0 11px 20px rgba(0, 0, 0, .32);
}

.skeuo-theme .capability-green {
  border-color: #317969;
  color: #5be0bd;
  background: linear-gradient(145deg, #1d5048, #102c2a 60%, #091b1b);
}

.skeuo-theme .capability-purple {
  border-color: #68599c;
  color: #b5a0ff;
  background: linear-gradient(145deg, #40366d, #241f43 60%, #151329);
}

.skeuo-theme .capability-amber {
  border-color: #876332;
  color: #ffc46f;
  background: linear-gradient(145deg, #5b4120, #332512 60%, #1d160d);
}

.skeuo-theme .capability-card ul,
.skeuo-theme .price-card ul {
  color: #b4c0d2;
}

.skeuo-theme .capability-card li::before {
  background: #6f9cff;
  box-shadow: 0 0 7px rgba(111, 156, 255, .6);
}

.skeuo-theme .price-card.recommended {
  border-color: #4f78d6;
  background:
    radial-gradient(circle at 85% 10%, rgba(113, 156, 255, .19), transparent 30%),
    linear-gradient(145deg, #1c315b, #122342 58%, #0b162b 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .14),
    inset 0 -3px 8px rgba(0, 0, 0, .45),
    0 9px 0 #08142c,
    0 26px 54px rgba(0, 0, 0, .48),
    0 0 38px rgba(70, 113, 216, .12);
}

.skeuo-theme .recommend-badge {
  border: 1px solid #87a8f4;
  color: #fff;
  background: linear-gradient(180deg, #79a4ff, #3869d7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .45), 0 4px 0 #1c4094, 0 10px 18px rgba(0, 0, 0, .32);
}

.skeuo-theme .price-card-head > span {
  color: #79a4ff;
}

.skeuo-theme .price-card li::before {
  color: #51ddb7;
  background: rgba(29, 93, 79, .42);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, .08);
}

.skeuo-theme .pricing-note {
  color: #7e8ea5;
}

.skeuo-theme .guide-panel {
  border: 1px solid #405675;
  background:
    radial-gradient(circle at 10% 0%, rgba(113, 155, 255, .22), transparent 32%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, .018) 0 1px, transparent 1px 5px),
    linear-gradient(145deg, #243957 0%, #15263f 48%, #0a1424 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .16),
    inset 0 -4px 12px rgba(0, 0, 0, .42),
    0 10px 0 #060d19,
    0 34px 64px rgba(0, 0, 0, .44);
}

.skeuo-theme .guide-list {
  border-color: rgba(164, 186, 219, .2);
}

.skeuo-theme .guide-list article {
  border-bottom-color: rgba(154, 179, 216, .17);
}

.skeuo-theme .guide-list article > span {
  border: 1px solid #5576a7;
  color: #b9d0f4;
  background: linear-gradient(145deg, #304e7e, #172b4c);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16), 0 4px 0 #08162d, 0 9px 16px rgba(0, 0, 0, .28);
}

.skeuo-theme .guide-list strong {
  color: #edf3fb;
}

.skeuo-theme .guide-list p {
  color: #98aac2;
}

.skeuo-theme .faq-list details {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07), inset 0 -2px 5px rgba(0, 0, 0, .42), 0 5px 0 #05080e, 0 13px 26px rgba(0, 0, 0, .28);
}

.skeuo-theme .faq-list summary span::before,
.skeuo-theme .faq-list summary span::after {
  background: #8aaeff;
}

.skeuo-theme .text-button {
  color: #89adff;
  text-shadow: 0 0 13px rgba(111, 156, 255, .28);
}

.skeuo-theme .final-cta {
  border-top: 1px solid rgba(145, 167, 200, .15);
  background:
    radial-gradient(circle at 80% 50%, rgba(60, 105, 207, .17), transparent 33%),
    linear-gradient(180deg, #0c1524, #070c14);
}

.skeuo-theme .final-cta-inner {
  border: 1px solid #344965;
  background: linear-gradient(145deg, #1d2d44, #101a29 58%, #090f18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), inset 0 -3px 7px rgba(0, 0, 0, .5), 0 8px 0 #05080d, 0 24px 48px rgba(0, 0, 0, .4);
}

.skeuo-theme .final-cta-inner > div > span {
  color: #86aaff;
}

.skeuo-theme .site-footer {
  border-top: 1px solid #25364d;
  background:
    repeating-linear-gradient(115deg, rgba(255, 255, 255, .012) 0 1px, transparent 1px 5px),
    linear-gradient(180deg, #0b1320 0%, #05080d 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .045), inset 0 14px 30px rgba(0, 0, 0, .22);
}

.skeuo-theme .footer-brand p,
.skeuo-theme .footer-links a,
.skeuo-theme .footer-links button,
.skeuo-theme .footer-contact span,
.skeuo-theme .footer-contact small,
.skeuo-theme .footer-bottom {
  color: #7f8da2;
}

.skeuo-theme .footer-links strong,
.skeuo-theme .footer-contact strong {
  color: #dbe5f3;
}

.skeuo-theme .footer-bottom {
  border-top-color: rgba(137, 160, 194, .14);
}

.skeuo-theme .contact-dialog {
  border: 1px solid #455d7d;
  color: #edf3fb;
  background:
    radial-gradient(circle at 80% 0%, rgba(91, 135, 232, .19), transparent 32%),
    linear-gradient(145deg, #1e2c42, #101927 58%, #090f18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .13), inset 0 -4px 10px rgba(0, 0, 0, .5), 0 12px 0 #05080d, 0 42px 90px rgba(0, 0, 0, .7);
}

.skeuo-theme .contact-dialog::backdrop {
  background: rgba(2, 5, 10, .78);
  backdrop-filter: blur(8px);
}

.skeuo-theme .dialog-close {
  border: 1px solid #3c4e68;
  color: #c7d2e1;
  background: linear-gradient(145deg, #26364d, #111b2a);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 3px 0 #060a11, 0 7px 12px rgba(0, 0, 0, .3);
}

.skeuo-theme .dialog-kicker {
  color: #83a8ff;
}

.skeuo-theme .contact-dialog > p,
.skeuo-theme .dialog-footnote {
  color: #94a4ba;
}

.skeuo-theme .contact-card {
  border: 1px solid #364a66;
  background: linear-gradient(145deg, #19263a, #0d1624);
  box-shadow: inset 0 2px 7px rgba(0, 0, 0, .42), 0 1px 0 rgba(255, 255, 255, .055);
}

.skeuo-theme .contact-card small {
  color: #8191a7;
}

.skeuo-theme .contact-card strong {
  color: #eef4fc;
}

.skeuo-theme .contact-card button {
  border: 1px solid #5879ae;
  color: #d9e7ff;
  background: linear-gradient(180deg, #3c5f99, #203d70);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 3px 0 #0c2148, 0 8px 14px rgba(0, 0, 0, .3);
}

.skeuo-theme .toast {
  border: 1px solid #435d80;
  color: #edf4ff;
  background: linear-gradient(180deg, #263b5b, #121f33);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .13), 0 5px 0 #060d18, 0 14px 28px rgba(0, 0, 0, .44);
}

@media (max-width: 920px) {
  .skeuo-theme .site-nav {
    border-color: #344760;
    background: linear-gradient(180deg, rgba(29, 42, 61, .99), rgba(10, 17, 28, .99));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 8px 0 #05080d, 0 24px 48px rgba(0, 0, 0, .5);
  }

  .skeuo-theme .site-nav a:hover {
    background: rgba(100, 139, 219, .14);
  }
}

@media (max-width: 640px) {
  .skeuo-theme .hero-real-frame {
    padding: 4px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), 0 6px 0 #05080d, 0 24px 46px rgba(0, 0, 0, .52);
  }

  .skeuo-theme .outcome-card,
  .skeuo-theme .capability-card,
  .skeuo-theme .price-card {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .075), inset 0 -2px 5px rgba(0, 0, 0, .48), 0 6px 0 #05080e, 0 17px 30px rgba(0, 0, 0, .32);
  }
}

.skeuo-theme .hero h1 span {
  color: #76a2ff;
  background: none;
  background-clip: border-box;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: #76a2ff;
  filter: drop-shadow(0 4px 10px rgba(54, 103, 214, .26));
  text-shadow: 0 2px 1px #071126, 0 0 18px rgba(80, 132, 245, .18);
}
