/* CONTASY / V3. A standalone design system, with no v2 layout dependencies. */
@font-face {
  font-family: Figtree;
  src: url("../fonts/Figtree.woff2") format("woff2");
  font-weight: 400 800;
  font-display: swap;
}
@font-face {
  font-family: "Space Mono";
  src: url("../fonts/SpaceMono-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --font-mono: "Space Mono", monospace;
  --mist: #f5f6f8;
  --blush: #fff0f4;
  --paper: #ffffff;
  --white: #ffffff;
  --ink: #0f172a;
  --muted: #475569;
  --line: #e2e8f0;
  --rose: #fe3e6d;
  --rose-dark: #d92554;
  --success: #047857;
  --success-soft: #ecfdf5;
  --success-light: #6ee7b7;
  --surface: #f1f5f9;
  --dark: #020516;
  --hero-backdrop: radial-gradient(
    61.3% 125.92% at 0% 0%,
    #0b162a 0%,
    #111b2e 18.27%,
    #020516 76.44%,
    #000108 100%
  );
  --backdrop-integration: radial-gradient(
    80% 110% at 100% 0%,
    #0b162a 0%,
    #111b2e 18.27%,
    #020516 68%,
    #000108 100%
  );
  --backdrop-panel: linear-gradient(135deg, #0b162a, #020516);
  --backdrop-footer: linear-gradient(180deg, #020516, #000108);
  --soft: #f1f5f9;
  --radius: 20px;
  --gutter: clamp(22px, 4.4vw, 72px);
  --max: 1320px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: light;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    400 16px/1.65 Figtree,
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.modal-open {
  overflow: hidden;
}
h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.035em;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
img,
svg {
  display: block;
  max-width: 100%;
}
img {
  object-fit: cover;
}
button {
  border: 0;
  background: none;
  color: inherit;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
svg.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
::selection {
  color: white;
  background: var(--rose);
}
:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 5px;
}
main {
  overflow-x: clip;
}
.shell {
  width: 100%;
  max-width: calc(var(--max) + var(--gutter) * 2);
  padding-inline: var(--gutter);
  margin-inline: auto;
}
.section {
  padding-block: clamp(80px, 9vw, 140px);
}
.kicker {
  font-family: var(--font-mono);
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--muted);
}
.kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border: 1px solid currentColor;
  border-radius: 50%;
  flex: none;
}
.kicker .index {
  color: var(--rose);
  margin-right: 3px;
}
.display {
  font-size: clamp(38px, 4.9vw, 70px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 500;
  text-wrap: balance;
}
.display em {
  font: inherit;
  color: inherit;
}
.section-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px 80px;
  align-items: end;
  margin-bottom: 56px;
}
.section-heading .kicker {
  grid-column: 1/-1;
}
.section-heading .intro {
  max-width: 460px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.section-heading .display {
  max-width: 800px;
}
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  border: 1px solid var(--ink);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff10, #ffffff00) #0b1425;
  box-shadow: inset 0 1px 0 #ffffff20, 0 2px 3px #0b162a10;
  color: #ffffff;
  font:
    500 14px/1.5 Figtree,
    sans-serif;
  transition:
    background-color 0.22s,
    border-color 0.22s,
    color 0.22s,
    box-shadow 0.22s;
  position: relative;
}
.button .icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease);
}
.button:hover .icon {
  transform: translate(2px, -2px);
}
.button:hover {
  background-color: #111b2e;
  box-shadow: 0 8px 20px #02061715;
}
.button.secondary {
  color: var(--ink);
  background: #ffffff;
  border-color: #e2e8f0;
  box-shadow: inset 0 1px #ffffff, 0 4px 10px #0b162a08;
}
.button.secondary:hover {
  background: #f1f5f9;
}
.button.light {
  background: #ffffff;
  color: var(--ink);
  border-color: #ffffff;
}
.button.light:hover {
  background: var(--soft);
}
.button.text {
  padding-inline: 0;
  min-height: 42px;
  background: none;
  border-color: transparent;
  color: var(--ink);
  box-shadow: none;
}
.button.small {
  min-height: 44px;
  padding: 10px 20px;
  font-size: 13px;
}
.actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.round-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  transition:
    background 0.25s,
    color 0.25s;
}
.round-button:hover {
  background: var(--ink);
  color: #ffffff;
}
.round-button:disabled {
  opacity: 0.28;
}
.skip {
  position: fixed;
  left: 20px;
  top: -100px;
  z-index: 1000;
  background: var(--ink);
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 8px;
}
.skip:focus {
  top: 12px;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
/* Navigation: a quiet persistent utility layer. */
.masthead {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  background: #ffffffed;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid #e2e8f07a;
  transition: box-shadow 0.3s;
}
.masthead.scrolled {
  box-shadow: 0 6px 30px #02061707;
}
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 86px;
}
.brand img {
  width: 134px;
  height: auto;
}
.navigation {
  display: flex;
  gap: 32px;
}
.navigation a {
  font-size: 13px;
  color: #475569;
  position: relative;
}
.navigation a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--ink);
  transition: transform 0.3s var(--ease);
}
.navigation a:hover::after,
.navigation a[aria-current]::after {
  transform: scaleX(1);
}
.nav-actions {
  display: flex;
  gap: 26px;
  align-items: center;
}
.login {
  display: flex;
  gap: 7px;
  align-items: center;
  font-size: 13px;
}
.login .icon {
  width: 14px;
  height: 14px;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.menu-panel {
  position: fixed;
  inset: 76px 0 0;
  z-index: 65;
  background: var(--paper);
  padding: 34px var(--gutter);
  overflow-y: auto;
}
.menu-panel[hidden] {
  display: none;
}
.menu-panel nav {
  display: flex;
  flex-direction: column;
  margin-bottom: 38px;
}
.menu-panel nav a {
  font-size: 36px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  letter-spacing: -0.04em;
}
.menu-panel .actions {
  flex-direction: column;
  align-items: stretch;
}
.reading-progress {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
}
/* Hero: editorial type opposed to one tactile piece of original art. */
.hero {
  padding-top: 142px;
  background: radial-gradient(ellipse at 72% 32%, #fff0f46b, transparent 60%), linear-gradient(180deg, #f8f9fc80, #ffffff 82%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-copy {
  min-width: 0;
  padding-block: 12px;
}
.hero .kicker {
  font-size: 11px;
}
.hero .kicker::before {
  background: #475569;
  border: 0;
  box-shadow: 0 0 0 4px #e2e8f0;
}
.hero h1 {
  margin-top: 26px;
  font-size: clamp(58px, 6.05vw, 92px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.045em;
}
.hero h1 > span {
  display: block;
}
.hero h1 .serif {
  font: inherit;
  color: inherit;
}
.hero h1 .period {
  color: var(--ink);
}
.hero-description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 510px;
  margin-top: 29px;
}
.hero .actions {
  margin-top: 30px;
  gap: 12px;
}
.hero .actions > .button:not(.text) {
  min-height: 60px;
}
.button.primary {
  gap: 22px;
  padding: 10px 12px 10px 24px;
  border-color: #0f172a;
  background: linear-gradient(180deg, #ffffff10, #ffffff00) #0b1425;
  font-size: 15px;
  font-weight: 500;
  box-shadow:
    0 4px 6px #02061708,
    0 12px 28px #0206170c;
}
.button.primary .button-arrow {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 9px;
  background: linear-gradient(145deg, #ffffff2e, #ffffff00) #fe3e6d;
  box-shadow: inset 0 1px #ffffff4d;
  transition:
    background-color 0.25s,
    transform 0.3s var(--ease);
}
.button.primary .button-arrow .icon {
  width: 17px;
  height: 17px;
  stroke-width: 1.8;
}
.button.primary:hover {
  background-color: #1e293b;
  box-shadow: 0 10px 28px #0206171a;
}
.button.primary:hover .button-arrow {
  background-color: #e92f5c;
  transform: rotate(4deg);
}
.hero .actions .text {
  flex-basis: 100%;
  justify-content: flex-start;
  font-size: 13px;
  min-height: 28px;
  padding-block: 4px;
}
.social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  font-size: 12px;
  color: var(--muted);
}
.social-proof strong {
  color: var(--ink);
  font-weight: 600;
}
.avatar-stack {
  display: flex;
  align-items: center;
}
.avatar-stack img {
  width: 28px;
  height: 28px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  margin-left: -9px;
}
.avatar-stack img:first-child {
  margin-left: 0;
}
.response-proof {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: var(--muted);
  margin-top: 10px;
}
.response-proof::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--success);
  border-radius: 50%;
}
.hero-visual {
  min-width: 0;
  min-height: 610px;
  height: 100%;
  border-radius: 20px;
  background: var(--hero-backdrop);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: white;
}
.visual-top,
.visual-bottom {
  position: absolute;
  z-index: 3;
  left: 30px;
  right: 30px;
  display: flex;
  align-items: center;
}
.visual-top {
  top: 27px;
  gap: 10px;
  font-size: 11px;
  color: #cbd5e1;
}
.visual-top img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}
.hero-motion-toggle {
  margin-left: auto;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid #ffffff25;
  border-radius: 50%;
  color: #cbd5e1;
  background: #02051640;
  cursor: pointer;
}
.hero-motion-toggle:hover {
  background: #ffffff16;
  color: white;
}
.hero-motion-toggle:focus-visible {
  outline: 2px solid white;
  outline-offset: 4px;
}
.hero-motion-toggle svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-motion-toggle .motion-play,
.hero-motion-toggle.is-paused .motion-pause {
  display: none;
}
.hero-motion-toggle.is-paused .motion-play {
  display: block;
}
.loop-art {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.loop-art .hero-media {
  grid-area: 1 / 1;
  width: 115%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.hero-video {
  opacity: 0;
  transition: opacity 300ms ease;
}
.is-video-ready .hero-video {
  opacity: 1;
}
.visual-bottom {
  bottom: 24px;
  border-top: 1px solid #ffffff24;
  padding-top: 19px;
  font-size: 11px;
  gap: 8px;
  color: #e2e8f0;
}
.visual-bottom::before {
  content: "";
  width: 5px;
  height: 5px;
  flex: none;
  border-radius: 50%;
  background: var(--success-light);
}
.visual-bottom > .icon {
  margin-left: auto;
  width: 20px;
  height: 20px;
}
.floating-note {
  position: absolute;
  z-index: 2;
  background: #fffffff0;
  border: 1px solid #ffffffae;
  color: var(--ink);
  border-radius: 13px;
  box-shadow: 0 15px 50px #02061733;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}
.time-note {
  left: 26px;
  top: 102px;
  padding: 17px 22px;
  width: 215px;
  transform: rotate(-3deg);
}
.note-label {
  font-size: 10px;
  color: #64748b;
}
.time-note > div {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
}
.time-note strong {
  font-size: 52px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.06em;
}
.time-note small {
  font-size: 11px;
  line-height: 1.45;
  color: #475569;
}
.note-ring {
  margin-left: auto;
  fill: none;
  stroke: #e2e8f0;
  stroke-width: 2.5;
  width: 44px;
  height: 44px;
}
.note-ring .fill {
  stroke: var(--success);
  stroke-dasharray: 125.7;
  stroke-dashoffset: 14;
  transform: rotate(-90deg);
  transform-origin: center;
}
.note-ring path {
  stroke: var(--success);
  stroke-width: 2;
}
.human-note {
  right: 24px;
  bottom: 105px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 15px;
  transform: rotate(1deg);
}
.human-note > img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}
.human-note strong {
  display: block;
  font-size: 11px;
  font-weight: 600;
}
.human-note small {
  display: block;
  font-size: 9px;
  line-height: 1.7;
  color: #64748b;
}
.human-note > .icon {
  width: 18px;
  height: 18px;
  margin-left: 10px;
}
.benefit-strip {
  margin-top: 65px;
  border-block: 1px solid var(--line);
}
.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px 35px;
  padding-block: 26px;
}
.benefit-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  line-height: 1.5;
  color: #475569;
}
.benefit-list .icon {
  width: 16px;
  height: 16px;
  color: var(--success);
}
/* Platform: one explorable workspace with four scenes, not a card grid. */
.platform {
  background: var(--paper);
}
.workspace {
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 0 0 7px #f5f6f880, 0 20px 60px #0b162a09;
  overflow: hidden;
}
.workspace-chrome {
  font-family: var(--font-mono);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 24px;
  border-bottom: 1px solid #e2e8f0;
  background: #f1f5f9;
  color: #64748b;
  font-size: 11px;
}
.window-dots {
  display: flex;
  gap: 5px;
}
.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #cbd5e1;
}
.workspace-chrome .lock {
  display: flex;
  align-items: center;
  gap: 6px;
}
.workspace-chrome .icon {
  width: 12px;
  height: 12px;
}
.workspace-main {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 470px;
}
.workspace-nav {
  padding: 28px 16px;
  background: #f8fafc;
  border-right: 1px solid var(--line);
}
.workspace-brand {
  padding: 0 16px 25px;
}
.workspace-brand img {
  width: 100px;
  height: auto;
}
.workspace-nav [role="tab"] {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  width: 100%;
  font-size: 13px;
  padding: 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #64748b;
  transition:
    background 0.25s,
    color 0.25s;
}
.workspace-nav [role="tab"][aria-selected="true"] {
  background: #f1f5f9;
  color: #0f172a;
  border-color: #e2e8f0;
}
.workspace-nav [role="tab"] .icon {
  width: 17px;
  height: 17px;
}
.workspace-nav .workspace-nav-note {
  margin: 36px 12px 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: #64748b;
  line-height: 1.65;
}
.workspace-content {
  padding: 34px 40px;
  min-width: 0;
}
.product-panel[hidden] {
  display: none;
}
.product-heading {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 30px;
}
.product-heading h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.035em;
}
.product-heading p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 620px;
  margin-top: 10px;
}
.status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 9px;
  white-space: nowrap;
  border-radius: 5px;
  background: var(--success-soft);
  color: var(--success);
  font-size: 10px;
}
.status::before {
  content: "";
  width: 4px;
  height: 4px;
  background: currentColor;
  border-radius: 50%;
}
.status.pending {
  background: transparent;
  box-shadow: inset 0 0 0 1px #e2e8f0;
  color: #64748b;
}
.product-demo {
  margin-top: 32px;
  padding: 26px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  min-height: 260px;
  position: relative;
  overflow: hidden;
}
.migration-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  padding-top: 24px;
}
.migration-timeline::before {
  content: "";
  position: absolute;
  top: 43px;
  left: 8%;
  right: 10%;
  height: 1px;
  background: #cbd5e1;
}
.milestone {
  position: relative;
}
.milestone .milestone-icon {
  position: relative;
  z-index: 1;
  background: #f1f5f9;
  border: 5px solid #f8fafc;
  border-radius: 50%;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #475569;
  margin-bottom: 17px;
}
.milestone:nth-child(3) .milestone-icon {
  background: var(--success-soft);
  color: var(--success);
}
.milestone:last-child .milestone-icon {
  background: var(--success);
  color: var(--success-soft);
}
.milestone strong {
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
  display: block;
  max-width: 145px;
}
.milestone small {
  font-size: 10px;
  color: #64748b;
  display: block;
  margin-top: 5px;
}
.migration-complete {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
  padding: 16px 18px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 12px;
}
.migration-complete strong {
  font-weight: 500;
}
.migration-complete .icon {
  color: var(--success);
}
.doc-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.doc-tile {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 22px 18px;
  min-width: 0;
}
.doc-tile > .icon {
  width: 28px;
  height: 28px;
  color: #64748b;
  margin-bottom: 35px;
}
.doc-tile strong {
  font-size: 13px;
  display: block;
  margin-bottom: 12px;
}
.demo-conversation {
  max-width: 580px;
  margin: 0 auto;
}
.demo-message {
  font-size: 13px;
  padding: 15px 20px;
  border-radius: 12px;
  background: #ffffff;
  max-width: 85%;
  border: 1px solid #e2e8f0;
}
.demo-message.reply {
  background: var(--ink);
  color: #ffffff;
  margin: 14px 0 0 auto;
}
.demo-message small {
  display: block;
  font-size: 10px;
  opacity: 0.6;
  margin-bottom: 6px;
}
.timer-demo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  padding: 16px;
}
.timer-dial {
  width: 165px;
  height: 165px;
  position: relative;
  display: grid;
  place-items: center;
}
.timer-dial svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  stroke: #e2e8f0;
  fill: none;
  stroke-width: 2;
}
.timer-dial svg .timer-stroke {
  stroke: var(--rose);
  stroke-dasharray: 283;
  stroke-dashoffset: 0;
  transform: rotate(-90deg);
  transform-origin: center;
}
.timer-dial strong {
  font-size: 80px;
  letter-spacing: -0.06em;
  font-weight: 400;
}
.timer-demo > div:last-child p {
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.04em;
}
.timer-demo > div:last-child .status {
  margin-top: 18px;
}
.metric-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
  padding-block: 32px;
  border-block: 1px solid var(--line);
}
.metric {
  padding-left: 36px;
  border-left: 1px solid var(--line);
}
.metric:first-child {
  padding-left: 0;
  border-left: 0;
}
.metric strong {
  display: block;
  font-size: clamp(36px, 4.7vw, 66px);
  line-height: 1.2;
  letter-spacing: -0.06em;
  font-weight: 500;
}
.metric p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  margin-top: 8px;
}
/* Human proof as a photographic collection. */
.people {
  padding-top: 20px;
  padding-bottom: 110px;
}
.people .section-heading {
  grid-template-columns: 1.2fr 0.8fr;
}
.people .intro .button {
  display: flex;
  width: fit-content;
  margin-top: 22px;
}
.portrait-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(228px, 21vw, 300px);
  gap: 18px;
  overflow-x: auto;
  padding: 10px max(var(--gutter), calc((100vw - var(--max)) / 2)) 24px;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: max(var(--gutter), calc((100vw - var(--max)) / 2));
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}
.portrait-track::-webkit-scrollbar {
  display: none;
}
.portrait {
  width: 100%;
  aspect-ratio: 0.765;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  scroll-snap-align: start;
  background-color: #010111;
  background-image: radial-gradient(
    78% 62% at 88% 26%,
    rgba(245, 68, 120, 0.3),
    rgba(245, 68, 120, 0) 62%
  );
  isolation: isolate;
}
.portrait img {
  width: 100%;
  height: 100%;
  object-position: 50% 20%;
  transition: transform 0.7s var(--ease);
}
.portrait:hover img {
  transform: scale(1.035);
}
.portrait::after {
  content: "";
  position: absolute;
  inset: 52% 0 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 13, 0),
    rgba(0, 0, 13, 0.5) 55%,
    rgba(0, 0, 13, 0.88)
  );
  pointer-events: none;
  z-index: 1;
}
.portrait figcaption {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
  color: #ffffff;
}
.portrait-name {
  display: block;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.04em;
}
.portrait-handle {
  font-size: 12px;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 5px;
}
.portrait-handle .icon {
  width: 12px;
  height: 12px;
  color: #cbd5e1;
}
.portrait-followers {
  font-size: 10px;
  color: #94a3b8;
  display: block;
  margin-top: 12px;
}
.collection-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 5px;
}
.collection-progress {
  width: min(360px, 55%);
  height: 2px;
  background: #e2e8f0;
  position: relative;
}
.collection-progress i {
  display: block;
  width: 15%;
  height: 100%;
  background: #0f172a;
  transform-origin: left;
  transition: width 0.25s;
}
.collection-tools > div:last-child {
  display: flex;
  gap: 8px;
}
.gallery-toggle .gallery-play,
.gallery-toggle.is-paused .gallery-pause {
  display: none;
}
.gallery-toggle.is-paused .gallery-play {
  display: block;
}
/* Technology + people: composition in synergy.css. */

/* Audience as an editorial index. */
.audience-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 95px;
  align-items: start;
}
.audience-heading {
  position: sticky;
  top: 135px;
}
.audience-heading .display {
  margin-top: 27px;
}
.audience-heading .intro {
  margin-top: 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.audience-index {
  counter-reset: audience;
}
.audience-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-top: 1px solid var(--line);
  counter-increment: audience;
  position: relative;
}
.audience-item::before {
  content: counter(audience, decimal-leading-zero);
  font-size: 11px;
  padding-top: 5px;
  color: #64748b;
}
.audience-item:last-child {
  border-bottom: 1px solid var(--line);
}
.audience-item h3 {
  font-size: 22px;
  letter-spacing: -0.035em;
  font-weight: 500;
  line-height: 1.25;
}
.audience-item p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin-top: 8px;
  max-width: 450px;
}
.audience-item:last-child h3 {
  color: var(--rose-dark);
}
/* Three chapters. Each has its own custom illustration and reading rhythm. */
.process {
  background: #f8fafc;
}
.process .section-heading {
  align-items: center;
}
.process .intro .actions {
  margin-top: 25px;
}
.chapters {
  margin-top: 30px;
}
.chapter {
  display: grid;
  grid-template-columns: 100px 0.85fr 1.15fr;
  align-items: center;
  gap: 40px;
  padding: 42px 0;
  border-top: 1px solid #e2e8f0;
}
.chapter-number {
  align-self: center;
  padding-top: 0;
  font-size: 76px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #94a3b8;
  transition: color 0.4s;
}
.chapter.is-current .chapter-number {
  color: #334155;
}
.chapter h3 {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}
.chapter p {
  margin-top: 15px;
  color: #475569;
  font-size: 15px;
  line-height: 1.75;
}
.chapter .chapter-note {
  font-size: 12px;
  color: #64748b;
  line-height: 1.7;
}
/* Shared product illustration system: neutral surfaces, consistent depth, semantic accents. */
.chapter-demo {
  --demo-ink: #1e293b;
  --demo-muted: #6b778a;
  --demo-line: #e6eaf0;
  --demo-wash: #f7f8fa;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e1e7ef;
  padding: 0;
  box-shadow: 0 2px 4px #0f172a03, 0 18px 38px -22px #25345126;
  overflow: hidden;
  min-width: 0;
  font-variant-numeric: tabular-nums;
}
.demo-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 73px;
  padding: 19px 24px;
  border-bottom: 1px solid #e9edf3;
  background: #fcfcfd;
}
.demo-brand {
  display: block;
  width: 100px;
  height: 26px;
  flex: none;
  object-fit: contain;
  object-position: left center;
}
.demo-brand--notasy { width: 94px; height: 28px; }
.demo-topline > span {
  color: #64748b;
  font-size: 11px;
  line-height: 1.5;
  text-align: right;
}
.demo-topline > .demo-period {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border-radius: 7px;
  color: var(--demo-muted);
  background: var(--demo-wash);
  box-shadow: inset 0 0 0 1px var(--demo-line);
  font-weight: 500;
}
.demo-period .icon { width: 14px; height: 14px; flex: none; }
.demo-body { padding: 23px; }
.demo-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.form-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #64748b;
  margin-bottom: 9px;
}
.form-label .icon { width: 14px; height: 14px; }
.demo-fields .form-label .icon { color: #8390a2; }
.demo-field {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #e2e8f0;
  border-radius: 9px;
  padding: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #1e293b;
  background: #fff;
  min-height: 50px;
  box-shadow: 0 2px 3px #0f172a02;
}
.demo-field::before { content: 'R$'; color: #94a3b8; font-size: 11px; font-weight: 400; }
.file-zone {
  margin-top: 21px;
  border: 1px dashed #d8e0ea;
  border-radius: 11px;
  padding: 16px;
  background: #fcfcfd;
}
.file-zone-heading { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.file-zone-heading > .icon { color: #7c899d; width: 16px; height: 16px; flex: none; }
.file-zone strong { font-size: 12px; font-weight: 500; color: #475569; }
.demo-file {
  display: grid;
  grid-template-columns: 31px minmax(0,1fr) 20px;
  align-items: center;
  gap: 10px;
  padding: 12px 10px;
  border: 1px solid #e4eaf0;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 2px 4px #0f172a03;
}
.demo-file-icon { display: grid; place-items: center; width: 31px; height: 35px; border: 1px solid var(--demo-line); border-radius: 7px; background: var(--demo-wash); color: #738196; }
.demo-file-icon .icon { width: 17px; height: 17px; }
.demo-file > div { min-width: 0; }
.demo-file > div > span { display: block; font-size: 11px; color: #334155; overflow-wrap: anywhere; }
.demo-file small { display: block; font-size: 10px; color: #7a879a; margin-top: 3px; }
.demo-file-check { width: 20px; height: 20px; color: var(--success); }
.demo-file-check circle { fill: var(--success-soft); stroke: #bbdfcf; }
.file-progress { margin-top: 13px; height: 3px; background: #e6edea; overflow: hidden; border-radius: 4px; }
.file-progress i { display: block; height: 100%; width: 100%; background: #879b96; transform-origin: left; }
.invoice-summary {
  display: flex;
  align-items: center;
  padding: 2px 1px 20px;
  border-bottom: 1px solid var(--demo-line);
  gap: 13px;
  margin-bottom: 18px;
}
.invoice-summary > strong { font-size: 39px; line-height: 1; font-weight: 500; letter-spacing: -0.05em; color: var(--demo-ink); min-width: 1.08em; }
.invoice-summary > div > span { display: block; font-size: 15px; font-weight: 500; line-height: 1.4; color: var(--demo-ink); }
.invoice-summary small { display: block; font-size: 11px; color: var(--demo-muted); margin-top: 2px; }
.invoice-summary-check { display: grid; place-items: center; width: 30px; height: 30px; flex: none; margin-left: auto; border: 1px solid #cbe7db; border-radius: 50%; background: var(--success-soft); color: var(--success); }
.invoice-summary-check .icon { width: 17px; height: 17px; }
.demo-table-wrap { border: 1px solid #e6eaf0; border-radius: 10px; overflow: hidden; }
.tiny-table { width: 100%; border-collapse: collapse; font-size: 12px; color: #475569; }
.tiny-table th { text-align: left; font-size: 9px; font-weight: 500; letter-spacing: .065em; text-transform: uppercase; color: #7c889b; background: #f8fafc; padding: 11px 13px; border-bottom: 1px solid #e8edf3; }
.tiny-table td { padding: 14px 13px; border-bottom: 1px solid #edf0f5; }
.tiny-table td:last-child, .tiny-table th:last-child { text-align: right; white-space: nowrap; }
.tiny-table tr:last-child td { border-bottom: 0; }
.chapter-demo--invoices .tiny-table th:nth-child(2), .chapter-demo--invoices .tiny-table td:nth-child(2) { text-align: center; }
.chapter-demo--invoices .tiny-table tbody tr:last-child { background: #f8fafc; font-weight: 500; color: #1e293b; }
.demo-total { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 16px; padding: 14px; border: 1px solid var(--demo-line); border-radius: 9px; background: var(--demo-wash); font-size: 11px; color: var(--demo-muted); }
.demo-total strong { font-size: 23px; letter-spacing: -0.035em; font-weight: 500; color: var(--demo-ink); white-space: nowrap; }
.chapter-demo .status { font-size: 10px; padding: 4px 7px; border-radius: 5px; }
.chapter-demo .status.pending { background: #f8fafc; }
.tax-receipt { position: relative; margin-top: 18px; padding: 18px; background: #fff; border: 1px solid var(--demo-line); border-radius: 9px; box-shadow: 0 5px 10px -5px #0f172a13; }
.tax-receipt-heading { display: flex; align-items: center; gap: 10px; }
.tax-document-icon { display: grid; place-items: center; width: 34px; height: 38px; flex: none; border: 1px solid var(--demo-line); border-radius: 7px; background: var(--demo-wash); color: #738196; }
.tax-document-icon .icon { width: 19px; height: 19px; }
.tax-receipt h4 { font-size: 13px; font-weight: 500; letter-spacing: -.015em; line-height: 1.4; }
.chapter .tax-receipt p { font-size: 10px; margin-top: 3px; line-height: 1.4; color: var(--demo-muted); }
.tax-receipt-value { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 10px; margin-top: 17px; padding: 12px 13px; border-radius: 7px; background: var(--demo-wash); color: var(--demo-muted); }
.tax-receipt-value time { display: block; font-size: 12px; color: var(--demo-ink); margin-top: 3px; }
.tax-receipt-value strong { font-size: 23px; font-weight: 500; letter-spacing: -.035em; color: var(--demo-ink); white-space: nowrap; }
.tax-receipt-barcode { height: 20px; width: 74%; margin: 16px auto 0; opacity: .5; background: repeating-linear-gradient(90deg,#334155 0 1px,transparent 1px 3px,#334155 3px 5px,transparent 5px 6px,#334155 6px 7px,transparent 7px 10px,#334155 10px 13px,transparent 13px 15px,#334155 15px 16px,transparent 16px 19px,#334155 19px 21px,transparent 21px 25px); }
.comparison {
  padding-top: 90px;
}
.comparison-heading {
  max-width: 850px;
  margin-bottom: 36px;
}
.comparison-heading h3 {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.18;
  letter-spacing: -0.045em;
}
.comparison-heading p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
}
.comparison-scroll {
  overflow-x: auto;
  overscroll-behavior-x: contain;
}
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  text-align: left;
  font-size: 14px;
}
.comparison-table th,
.comparison-table td {
  padding: 21px 24px;
  border-bottom: 1px solid #e2e8f0;
  line-height: 1.5;
}
.comparison-table th {
  font-size: 15px;
  font-weight: 600;
}
.comparison-table th:first-child {
  width: 30%;
}
.comparison-table td:nth-child(2) {
  color: #64748b;
}
.comparison-table th:last-child,
.comparison-table td:last-child {
  background: #f1f5f9;
  color: #0f172a;
}
.comparison-table th:last-child {
  border-radius: 10px 10px 0 0;
}
.comparison-table tr:last-child td:last-child {
  border-radius: 0 0 10px 10px;
}
.comparison-table .cell-value {
  display: flex;
  gap: 10px;
  align-items: center;
}
.comparison-table .icon {
  width: 15px;
  height: 15px;
}
.comparison-table .cell-value > .icon {
  color: var(--success);
}
.comparison-table tbody th {
  font-weight: 500;
  font-size: 14px;
}
/* Opening offer: quiet paper, with the price contained in a navy panel. */
.opening {
  background: #f8fafc;
  color: var(--ink);
  border-block: 1px solid var(--line);
  padding-block: 100px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.opening-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 90px;
  align-items: center;
}
.opening .kicker .index {
  color: var(--rose-dark);
}
.opening .kicker {
  color: var(--muted);
}
.opening .display {
  font-size: clamp(45px, 5.1vw, 74px);
  margin-top: 26px;
  line-height: 1.08;
}
.opening .display em {
  display: block;
}
.opening .intro {
  margin-top: 26px;
  font-size: 16px;
  color: var(--muted);
  max-width: 470px;
  line-height: 1.7;
}
.opening .actions {
  margin-top: 28px;
}
.opening .button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--paper);
}
.opening .button.secondary:hover {
  background: #ffffff;
  border-color: #94a3b8;
}
.opening-price {
  background: var(--hero-backdrop);
  color: #ffffff;
  border: 1px solid #111b2e;
  border-radius: 20px;
  padding: 42px 44px;
  box-shadow: 0 20px 60px #0205160d;
}
.opening-price .amount {
  font-size: clamp(100px, 11vw, 160px);
  letter-spacing: -0.09em;
  line-height: 1;
  font-weight: 400;
  white-space: nowrap;
}
.opening-price .amount span {
  font-size: 0.38em;
  letter-spacing: -0.05em;
  vertical-align: top;
  display: inline-block;
  margin-top: 22px;
  margin-right: 12px;
}
.opening-price .price-label {
  font-size: 14px;
  margin-top: 14px;
  color: #94a3b8;
}
.opening-checks {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid #ffffff1f;
  display: grid;
  gap: 13px;
}
.opening-checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.6;
  color: #cbd5e1;
}
.opening-checks .icon {
  width: 16px;
  height: 16px;
  flex: none;
  margin-top: 2px;
  color: var(--success-light);
}
/* Real conversations, set on quiet paper surfaces. */
.conversations {
  background: var(--paper);
}
.conversations .section-heading {
  grid-template-columns: 1.25fr 0.75fr;
}
.conversation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.conversation-column {
  display: grid;
  gap: 20px;
}
.conversation-column:nth-child(2) {
  padding-top: 45px;
}
.conversation-card {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  padding: 24px;
  min-width: 0;
}
.conversation-label {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  font-size: 10px;
  color: #64748b;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.conversation-label .icon {
  width: 13px;
  height: 13px;
}
.message {
  font-size: 12px;
  line-height: 1.75;
  padding: 10px 13px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  max-width: 94%;
  margin: 9px 0;
  overflow-wrap: anywhere;
  color: #475569;
}
.message.out {
  background: #f1f5f9;
  border-color: #e2e8f0;
  margin-left: auto;
  color: #475569;
}
.message p + p {
  margin-top: 8px;
}
.message time {
  font-size: 9px;
  color: #64748b;
  display: block;
  text-align: right;
  margin-top: 4px;
}
.message .redacted {
  filter: blur(3px);
  user-select: none;
}
/* Notasy: the integration itself becomes the visual structure. */
.integration {
  background: var(--backdrop-integration);
  color: #f8fafc;
}
.integration .kicker {
  color: #94a3b8;
}
.integration .section-heading .intro {
  color: #cbd5e1;
  align-self: start;
  justify-self: end;
  padding-top: 8px;
}
.integration-title {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 16px;
  font-weight: 500;
}
.integration-title img {
  max-width: 150px;
  height: 38px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.integration-body {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.integration-copy h3 {
  font-size: 29px;
  line-height: 1.25;
  letter-spacing: -0.035em;
}
.integration-copy p {
  font-size: 15px;
  color: #cbd5e1;
  margin-top: 20px;
}
.integration-features {
  margin-top: 25px;
  display: grid;
  gap: 13px;
}
.integration-features li {
  font-size: 13px;
  color: #cbd5e1;
  display: flex;
  gap: 10px;
  align-items: start;
}
.integration-features .icon {
  color: var(--success-light);
  width: 16px;
  height: 16px;
  margin-top: 3px;
}
.integration-copy .button {
  margin-top: 28px;
}

.integration-proof {
  font-size: 12px !important;
  margin-top: 28px !important;
  color: #cbd5e1 !important;
}
/* Prices are horizontal, expandable service bands. */
.pricing {
  background: var(--paper);
}
.pricing .section-heading {
  margin-bottom: 45px;
}
.plans {
  border-top: 1px solid #e2e8f0;
}
.plan-band {
  padding: 34px 30px;
  border-bottom: 1px solid #e2e8f0;
}
.plan-band.featured {
  background: var(--surface);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin: 14px -1px;
}
.plan-top {
  display: grid;
  grid-template-columns: 1fr 180px 205px;
  gap: 44px;
  align-items: center;
}
.plan-name {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.plan-name h3 {
  font-size: 30px;
  letter-spacing: -0.04em;
  line-height: 1.2;
}
.popular {
  font-size: 10px;
  line-height: 1.4;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  padding: 4px 7px;
  color: #475569;
  background: #f1f5f9;
}
.plan-description {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
  margin-top: 10px;
  max-width: 560px;
}
.plan-amount > small {
  font-size: 10px;
  color: #64748b;
  display: block;
  line-height: 1.5;
}
.plan-amount strong {
  font-size: 40px;
  letter-spacing: -0.05em;
  line-height: 1.25;
  font-weight: 500;
  white-space: nowrap;
}
.plan-amount span {
  font-size: 11px;
  color: #64748b;
}
.plan-top > .button {
  font-size: 12px;
  padding: 13px 18px;
  min-height: 48px;
}
.plan-details {
  margin-top: 22px;
}
.plan-details > summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #475569;
  font-size: 12px;
  width: max-content;
  max-width: 100%;
  min-height: 35px;
}
.plan-details > summary::-webkit-details-marker {
  display: none;
}
.plan-details > summary .icon {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}
.plan-details[open] > summary .icon {
  transform: rotate(45deg);
}
.plan-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px 30px;
  padding: 24px 0 10px;
  border-top: 1px solid #e2e8f0;
  margin-top: 14px;
}
.plan-features li {
  display: flex;
  align-items: start;
  gap: 9px;
  font-size: 12px;
  line-height: 1.65;
  color: #475569;
}
.plan-features .icon {
  width: 14px;
  height: 14px;
  margin-top: 3px;
  color: var(--success);
}
.feature-tooltip {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  margin-left: 3px;
}
.feature-tooltip button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid #94a3b8;
  border-radius: 50%;
  font-size: 10px;
  color: #475569;
}
.tooltip-body {
  position: absolute;
  bottom: calc(100% + 12px);
  left: -15px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 290px;
  max-width: 75vw;
  padding: 18px;
  font-size: 12px;
  color: #475569;
  box-shadow: 0 15px 45px #0206171a;
  z-index: 5;
  text-align: left;
  display: none;
}
.tooltip-body strong {
  font-size: 12px;
  line-height: 1.6;
  font-weight: 500;
}
.tooltip-body ul {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}
.tooltip-body li {
  font-size: 11px;
  line-height: 1.65;
  display: list-item;
  padding-left: 0;
}
.feature-tooltip:focus-within .tooltip-body,
.feature-tooltip:hover .tooltip-body {
  display: block;
}
.pricing-note {
  max-width: 960px;
  font-size: 11px;
  line-height: 1.8;
  color: #64748b;
  margin-top: 32px;
}
.pricing-note p + p {
  margin-top: 9px;
}
/* Three brands, three typographic pathways. */
.ecosystem {
  padding-top: 30px;
}
.brand-path {
  display: grid;
  grid-template-columns: 180px 1fr 240px;
  gap: 55px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 38px 0;
}
.brand-path:last-child {
  border-bottom: 1px solid var(--line);
}
.brand-path > img {
  width: 150px;
  height: 50px;
  object-fit: contain;
  object-position: left center;
}
.brand-path h3 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.04em;
}
.brand-path p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 12px;
  max-width: 690px;
}
.brand-path .button {
  font-size: 12px;
  min-height: 46px;
  padding-inline: 19px;
}
/* Questions and final invitation. */
.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: start;
}
.faq-heading {
  position: sticky;
  top: 135px;
}
.faq-heading .display {
  margin-top: 26px;
}
.faq-heading .intro {
  margin-top: 22px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
}
.faq-item {
  border-top: 1px solid var(--line);
}
.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 25px 0;
  cursor: pointer;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: -0.025em;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary > .icon {
  width: 19px;
  height: 19px;
  color: #64748b;
  transition: transform 0.3s;
}
.faq-item[open] summary > .icon {
  transform: rotate(45deg);
  color: var(--rose);
}
.faq-answer {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  padding: 0 30px 27px 0;
}
.last-call {
  margin: 0 var(--gutter) 28px;
  padding: 90px max(32px, 6vw);
  background: #f8fafc;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.last-call-inner {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 70px;
  align-items: end;
  margin: auto;
}
.last-call .display {
  font-size: clamp(45px, 5.8vw, 84px);
  line-height: 1.02;
  max-width: 740px;
}
.last-call p {
  font-size: 15px;
  color: #475569;
  line-height: 1.8;
}
.last-call .button {
  margin-top: 26px;
}
.last-call .last-arrow {
  position: absolute;
  top: 28px;
  right: 32px;
  color: #cbd5e1;
  width: 45px;
  height: 45px;
}
.footer {
  background: var(--backdrop-footer);
  color: #cbd5e1;
  padding: 70px 0 24px;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 100px;
  padding-bottom: 54px;
}
.footer-logo {
  display: block;
  width: fit-content;
  margin-bottom: 24px;
}
.footer-logo img {
  display: block;
  width: 180px;
  height: 48px;
  object-fit: contain;
}
.footer-description {
  font-size: 17px;
  line-height: 1.7;
  max-width: 380px;
  color: #cbd5e1;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.footer-links h3 {
  font-size: 10px;
  letter-spacing: 0.07em;
  color: #94a3b8;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-links a {
  display: block;
  font-size: 12px;
  color: #cbd5e1;
  margin-top: 10px;
}
.footer-links a:hover {
  color: #ffffff;
}
.footer-links .footer-subgroup {
  margin-top: 28px;
}
.footer-legal {
  border-top: 1px solid #94a3b825;
  padding-block: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  font-size: 10px;
  line-height: 1.9;
  color: #94a3b8;
}
.footer-legal p + p {
  margin-top: 8px;
}
.footer-copyright {
  font-size: 10px;
  color: #94a3b8;
  margin-top: 14px;
}
/* Dialogs and contact: functional UI authored specifically for v3. */
.contact-fab {
  position: fixed;
  z-index: 45;
  bottom: 22px;
  right: 22px;
  display: grid;
  place-items: center;
  width: 53px;
  height: 53px;
  border: 4px solid var(--paper);
  border-radius: 50%;
  background: var(--ink);
  color: #ffffff;
  box-shadow: 0 5px 20px #02061722;
  transition:
    background 0.2s,
    transform 0.3s var(--ease);
}
.contact-fab .icon {
  width: 25px;
  height: 25px;
}
.contact-fab:hover {
  background: #111b2e;
  transform: translateY(-3px);
}
dialog {
  border: 1px solid #e2e8f0;
  padding: 0;
  border-radius: 18px;
  max-width: calc(100% - 32px);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 40px 160px #02061733;
}
dialog::backdrop {
  background: #020617a8;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.lead-dialog {
  width: 490px;
  max-height: calc(100dvh - 40px);
  overflow: auto;
}
.dialog-content {
  padding: 42px;
}
.close-dialog {
  position: absolute;
  right: 16px;
  top: 16px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #64748b;
  z-index: 2;
}
.close-dialog:hover {
  background: #f1f5f9;
}
.close-dialog .icon {
  width: 18px;
  height: 18px;
}
.dialog-content h2 {
  font-size: 32px;
  line-height: 1.12;
  letter-spacing: -0.045em;
  max-width: 370px;
}
.dialog-content > p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 18px;
}
.lead-form {
  display: grid;
  gap: 17px;
  margin-top: 26px;
}
.field {
  display: grid;
  gap: 7px;
  font-size: 12px;
  color: #64748b;
}
.field input {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 7px;
  padding: 13px 15px;
  min-height: 48px;
  font-size: 15px;
  background: #ffffff;
  color: var(--ink);
}
.field input::placeholder {
  color: #94a3b8;
}
.field input:focus {
  outline: 2px solid #fe3e6d;
  outline-offset: 1px;
}
.lead-form .button {
  width: 100%;
  margin-top: 5px;
}
.form-note {
  font-size: 10px !important;
  text-align: center;
  color: #64748b !important;
  margin-top: 14px !important;
}
.form-feedback {
  font-size: 12px;
  line-height: 1.7;
  color: #475569;
  min-height: 0;
}
.lead-success {
  text-align: center;
  padding-top: 20px;
}
.lead-success > .icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 24px;
  color: var(--success);
}
.lead-success h2 {
  max-width: none;
}
.lead-success p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 16px;
}
.lead-success .button {
  margin-top: 24px;
}
.legal-dialog {
  width: 820px;
  max-height: 85dvh;
}
.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 32px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: var(--paper);
  z-index: 1;
}
.legal-header h2 {
  font-size: 23px;
  letter-spacing: -0.03em;
}
.legal-header .close-dialog {
  position: static;
}
.legal-body {
  padding: 30px 32px;
  font-size: 14px;
  line-height: 1.85;
}
.legal-body p {
  margin-bottom: 17px;
}
.legal-body h3 {
  font-size: 18px;
  margin: 27px 0 14px;
}
.legal-body ul,
.legal-body ol {
  padding-left: 22px;
  list-style: initial;
}
.legal-body a {
  text-decoration: underline;
  overflow-wrap: anywhere;
}
[hidden] {
  display: none !important;
}

.motion-on .chapter.is-current .file-progress i {
  animation: transmit 4s var(--ease) 1;
}
.page-hidden .file-progress i {
  animation-play-state: paused !important;
}

@keyframes transmit {
  0% {
    transform: scaleX(0);
  }
  65%,
  100% {
    transform: scaleX(1);
  }
}
/* Tablet and mobile are their own compositions. */
@media (min-width: 1700px) {
  .hero-visual {
    min-height: 665px;
  }
  .hero h1 {
    font-size: 93px;
  }
}
@media (max-width: 1150px) {
  .hero-grid {
    gap: 30px;
    grid-template-columns: 1.1fr 1fr;
  }
  .hero h1 {
    font-size: clamp(56px, 6.1vw, 76px);
  }
  .hero-visual {
    min-height: 590px;
  }
  .hero .actions > .button {
    font-size: 12px;
    padding-inline: 17px;
  }
  .human-note {
    right: 16px;
    left: 16px;
    padding: 12px;
  }
  .human-note > .icon {
    margin-left: auto;
  }
  .section-heading {
    gap: 24px 45px;
  }
  .workspace-main {
    grid-template-columns: 180px 1fr;
  }
  .workspace-content {
    padding: 30px;
  }

  .audience-grid {
    gap: 60px;
  }
  .chapter {
    grid-template-columns: 60px 0.85fr 1.15fr;
    gap: 25px;
  }
  .chapter-number {
    font-size: 65px;
  }
  .opening-grid {
    gap: 60px;
  }
  .opening-price {
    padding: 36px;
  }
  .conversation-card {
    padding: 18px;
  }
  .integration-body {
    gap: 45px;
  }

  .plan-top {
    grid-template-columns: 1fr 150px 190px;
    gap: 26px;
  }
  .brand-path {
    grid-template-columns: 150px 1fr 215px;
    gap: 30px;
  }
  .faq-layout {
    gap: 60px;
  }
  .footer-grid {
    gap: 60px;
  }
}
@media (max-width: 900px) {
  .nav-shell {
    min-height: 76px;
  }
  .navigation,
  .nav-actions {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .brand img {
    width: 120px;
  }
  .hero {
    padding-top: 116px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-copy {
    padding: 0;
  }
  .hero h1 {
    font-size: clamp(66px, 10vw, 90px);
  }
  .hero-description {
    max-width: 580px;
  }
  .hero .actions > .button {
    font-size: 14px;
  }
  .hero .actions > .text {
    flex-basis: auto;
    margin-left: 5px;
  }
  .social-proof {
    margin-top: 26px;
  }
  .hero-visual {
    min-height: 0;
    height: 560px;
    max-height: 75vw;
  }
  .human-note {
    left: auto;
    right: 28px;
    min-width: 310px;
  }
  .loop-art .hero-media {
    width: 100%;
  }
  .benefit-strip {
    margin-top: 40px;
  }
  .benefit-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-heading {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  .section-heading .intro {
    max-width: 640px;
  }
  .section-heading .display {
    max-width: 740px;
  }
  .workspace-main {
    grid-template-columns: 1fr;
  }
  .workspace-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 15px;
  }
  .workspace-brand,
  .workspace-nav-note {
    display: none;
  }
  .workspace-nav [role="tab"] {
    width: auto;
    flex: 1;
    justify-content: center;
    font-size: 12px;
    white-space: nowrap;
    padding: 11px 10px;
    gap: 7px;
  }
  .workspace-content {
    padding: 28px;
  }
  .product-heading h3 {
    font-size: 23px;
  }
  .metric {
    padding-left: 24px;
  }
  .people {
    padding-bottom: 80px;
  }

  .audience-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .audience-heading {
    position: static;
    max-width: 690px;
  }
  .audience-index {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 35px;
  }
  .audience-item {
    grid-template-columns: 25px 1fr;
    gap: 12px;
  }
  .audience-item h3 {
    font-size: 20px;
  }
  .audience-item p {
    font-size: 13px;
  }
  .chapter {
    grid-template-columns: 50px 1fr 1.15fr;
    gap: 22px;
  }
  .chapter h3 {
    font-size: 22px;
  }
  .chapter p {
    font-size: 13px;
  }
  .demo-body { padding: 18px; }
  .demo-topline { padding: 17px 18px; }
  .chapter-number {
    font-size: 50px;
  }
  .opening-grid {
    gap: 35px;
  }
  .opening-price {
    padding: 30px;
  }
  .opening .actions {
    align-items: stretch;
    flex-direction: column;
  }
  .opening .display {
    font-size: 54px;
  }
  .opening-price .amount {
    font-size: 128px;
  }
  .conversation-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .conversation-column {
    display: contents;
  }
  .conversation-column:nth-child(2) {
    padding-top: 0;
  }
  .conversation-card {
    padding: 23px;
  }
  .integration-body {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .integration-copy h3 {
    max-width: 550px;
  }
  .integration-copy p {
    max-width: 650px;
  }
  .plan-band {
    padding: 28px 24px;
  }
  .plan-top {
    grid-template-columns: 1fr 150px;
    gap: 24px;
  }
  .plan-top > .button {
    grid-column: 1/-1;
    justify-self: start;
    min-width: 180px;
  }
  .plan-name h3 {
    font-size: 27px;
  }
  .plan-features {
    grid-template-columns: 1fr 1fr;
  }
  .brand-path {
    grid-template-columns: 145px 1fr;
    gap: 24px;
  }
  .brand-path .button {
    grid-column: 2;
    justify-self: start;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-heading {
    position: static;
    max-width: 650px;
  }
  .last-call-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .last-call p {
    max-width: 550px;
  }
  .last-call {
    padding: 65px 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .footer-description {
    max-width: 540px;
  }
  .footer-links {
    max-width: 750px;
  }
  .footer-legal {
    gap: 30px;
  }
}
@media (max-width: 620px) {
  :root {
    --gutter: 22px;
  }
  .section {
    padding-block: 78px;
  }
  .hero {
    padding-top: 108px;
  }
  .hero h1 {
    font-size: clamp(42px, 10.9vw, 67px);
    letter-spacing: -0.06em;
    line-height: 1.07;
  }
  .hero .kicker {
    font-size: 10px;
    letter-spacing: 0.07em;
  }
  .hero-description {
    font-size: 15px;
    line-height: 1.8;
    margin-top: 25px;
  }
  .hero .actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 26px;
  }
  .hero .actions > .button {
    width: 100%;
    min-height: 50px;
    font-size: 14px;
  }
  .hero .actions > .text {
    min-height: 35px;
    margin: 0;
    font-size: 12px;
    justify-content: center;
  }
  .social-proof {
    margin-top: 21px;
    font-size: 11px;
    gap: 10px;
  }
  .response-proof {
    font-size: 10px;
  }
  .hero-visual {
    height: clamp(290px, 90vw, 360px);
    max-height: none;
    border-radius: 13px;
  }
  .loop-art .hero-media {
    width: 120%;
  }
  .visual-top,
  .visual-bottom {
    left: 20px;
    right: 20px;
  }
  .visual-top {
    top: 21px;
    font-size: 10px;
  }
  .visual-bottom {
    bottom: 20px;
    font-size: 10px;
    padding-top: 15px;
  }
  .time-note {
    left: 18px;
    top: 80px;
    width: 180px;
    padding: 12px 16px;
  }
  .time-note strong {
    font-size: 43px;
  }
  .note-label {
    font-size: 9px;
  }
  .time-note small {
    font-size: 10px;
  }
  .note-ring {
    width: 38px;
    height: 38px;
  }
  .human-note {
    left: 16px;
    right: 16px;
    bottom: 81px;
    min-width: 0;
    padding: 12px;
  }
  .human-note strong {
    font-size: 10px;
  }
  .human-note small {
    font-size: 9px;
  }
  .human-note > img {
    width: 33px;
    height: 33px;
  }
  .hero-grid {
    gap: 32px;
  }
  .benefit-list {
    grid-template-columns: 1fr;
    gap: 15px;
    padding-block: 24px;
  }
  .benefit-list li {
    font-size: 12px;
  }
  .display {
    font-size: clamp(34px, 8.7vw, 49px);
    line-height: 1.08;
  }
  .kicker {
    font-size: 10px;
    letter-spacing: 0.07em;
  }
  .section-heading {
    gap: 22px;
    margin-bottom: 32px;
  }
  .section-heading .intro {
    font-size: 15px;
    line-height: 1.8;
  }
  .button {
    font-size: 13px;
    min-height: 49px;
    padding: 13px 21px;
  }
  .workspace {
    border-radius: 12px;
  }
  .workspace-chrome {
    padding: 12px 14px;
    font-size: 9px;
  }
  .workspace-chrome > .workspace-label {
    display: none;
  }
  .workspace-nav {
    padding: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
  }
  .workspace-nav [role="tab"] {
    font-size: 11px;
    padding: 10px 8px;
    justify-content: flex-start;
  }
  .workspace-nav [role="tab"] .icon {
    width: 15px;
    height: 15px;
  }
  .workspace-content {
    padding: 23px 16px;
  }
  .product-heading {
    display: block;
  }
  .product-heading > .status {
    margin-top: 12px;
  }
  .product-heading h3 {
    font-size: 21px;
    line-height: 1.3;
  }
  .product-heading p {
    font-size: 12px;
    line-height: 1.75;
  }
  .product-demo {
    padding: 19px 14px;
    margin-top: 24px;
    min-height: 260px;
  }
  .migration-timeline {
    grid-template-columns: 1fr 1fr;
    gap: 26px 13px;
    padding-top: 0;
  }
  .migration-timeline::before {
    display: none;
  }
  .milestone .milestone-icon {
    margin-bottom: 8px;
    width: 33px;
    height: 33px;
    border: 3px solid #f8fafc;
  }
  .milestone .icon {
    width: 15px;
    height: 15px;
  }
  .milestone strong {
    font-size: 11px;
  }
  .milestone small {
    font-size: 9px;
  }
  .migration-complete {
    margin-top: 23px;
    padding: 12px;
    font-size: 10px;
    gap: 10px;
  }
  .migration-complete .status {
    font-size: 8px;
    padding: 4px 6px;
  }
  .doc-tiles {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .doc-tile {
    display: grid;
    grid-template-columns: 25px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 16px 12px;
  }
  .doc-tile > .icon {
    margin: 0;
    width: 22px;
    height: 22px;
  }
  .doc-tile strong {
    margin: 0;
    font-size: 11px;
  }
  .doc-tile .status {
    font-size: 9px;
  }
  .demo-message {
    font-size: 12px;
    padding: 12px;
    max-width: 94%;
  }
  .timer-demo {
    gap: 20px;
    padding: 20px 0;
  }
  .timer-dial {
    width: 135px;
    height: 135px;
    flex: none;
  }
  .timer-dial strong {
    font-size: 65px;
  }
  .timer-demo > div:last-child p {
    font-size: 18px;
  }
  .timer-demo .status {
    font-size: 9px;
  }
  .metric-rail {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 29px;
    padding-block: 25px;
  }
  .metric {
    padding: 0 0 22px !important;
    border-left: 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    gap: 25px;
    align-items: center;
  }
  .metric:last-child {
    border: 0;
    padding-bottom: 0 !important;
  }
  .metric strong {
    font-size: 37px;
    min-width: 137px;
  }
  .metric p {
    font-size: 11px;
    margin-top: 0;
  }
  .people {
    padding-top: 10px;
    padding-bottom: 75px;
  }
  .portrait-track {
    grid-auto-columns: min(74vw, 330px);
    gap: 14px;
    padding-bottom: 19px;
  }
  .portrait {
    border-radius: 7px;
    max-width: 330px;
  }
  .portrait figcaption {
    left: 20px;
    bottom: 20px;
  }
  .portrait-name {
    font-size: 21px;
  }
  .collection-tools {
    margin-top: 3px;
  }
  .round-button {
    width: 43px;
    height: 43px;
  }

  .audience-grid {
    gap: 33px;
  }
  .audience-index {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .audience-item {
    padding: 23px 0;
    grid-template-columns: 25px 1fr;
    gap: 12px;
  }
  .audience-item h3 {
    font-size: 21px;
  }
  .audience-item p {
    font-size: 13px;
  }
  .audience-heading .display {
    margin-top: 23px;
  }
  .audience-heading .intro {
    font-size: 15px;
  }
  .process .intro .actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .chapter {
    grid-template-columns: 42px 1fr;
    gap: 20px 16px;
    padding: 35px 0;
  }
  .chapter-number {
    align-self: start;
    font-size: 47px;
    padding-top: 0;
  }
  .chapter-copy {
    padding-top: 3px;
  }
  .chapter h3 {
    font-size: 24px;
  }
  .chapter p {
    font-size: 14px;
    line-height: 1.75;
    margin-top: 12px;
  }
  .chapter-demo {
    grid-column: 1/-1;
    margin-top: 2px;
  }
  .chapter .chapter-note {
    font-size: 11px;
  }
  .comparison {
    padding-top: 48px;
  }
  .comparison-heading {
    margin-bottom: 25px;
  }
  .comparison-heading h3 {
    font-size: 28px;
  }
  .comparison-heading p {
    font-size: 14px;
  }
  .comparison-table {
    min-width: 580px;
    font-size: 13px;
    table-layout: fixed;
  }
  .comparison-table th,
  .comparison-table td {
    padding: 14px 9px;
    vertical-align: top;
    font-size: 13px;
    overflow-wrap: normal;
  }
  .comparison-table th:first-child {
    width: 29%;
  }
  .comparison-table th {
    font-size: 13px;
  }
  .comparison-table tbody th {
    font-size: 13px;
  }
  .comparison-table .cell-value {
    display: block;
  }
  .comparison-table .icon {
    margin-bottom: 7px;
    width: 13px;
    height: 13px;
  }
  .opening {
    padding-block: 70px;
  }
  .opening-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .opening .display {
    font-size: 54px;
    max-width: 400px;
  }
  .opening .intro {
    font-size: 15px;
    max-width: 490px;
  }
  .opening .actions {
    gap: 10px;
  }
  .opening-price {
    padding: 30px 26px;
    border-radius: 16px;
  }
  .opening-price .amount {
    font-size: 132px;
    line-height: 1;
  }
  .opening-price .amount span {
    margin-top: 19px;
  }
  .opening-checks {
    margin-top: 25px;
    gap: 13px;
  }
  .opening-checks li {
    font-size: 12px;
  }
  .conversation-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .conversation-card {
    padding: 24px;
  }
  .message {
    font-size: 13px;
    line-height: 1.7;
  }
  .conversation-label {
    margin-bottom: 18px;
  }
  .integration .section-heading .intro {
    justify-self: start;
    padding-top: 0;
  }
  .integration-body {
    margin-top: 30px;
    gap: 35px;
  }
  .integration-copy h3 {
    font-size: 27px;
  }
  .integration-copy p {
    font-size: 14px;
  }
  .integration-features li {
    font-size: 12px;
  }

  .plan-band {
    padding: 27px 0;
  }
  .plan-band.featured {
    padding: 26px 20px;
    margin: 10px -9px;
  }
  .plan-top {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .plan-name {
    gap: 12px;
  }
  .plan-name h3 {
    font-size: 28px;
  }
  .plan-description {
    font-size: 13px;
  }
  .plan-amount {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
  }
  .plan-amount > small {
    flex-basis: 100%;
    font-size: 11px;
  }
  .plan-amount strong {
    font-size: 42px;
  }
  .plan-amount span {
    font-size: 12px;
  }
  .plan-top > .button {
    justify-self: stretch;
    font-size: 13px;
  }
  .plan-details {
    margin-top: 16px;
  }
  .plan-details > summary {
    font-size: 12px;
  }
  .plan-features {
    grid-template-columns: 1fr;
    gap: 13px;
    padding-top: 21px;
  }
  .plan-features li {
    font-size: 12px;
  }
  .pricing-note {
    font-size: 10px;
    line-height: 1.85;
  }
  .tooltip-body {
    left: auto;
    right: -35px;
    width: 260px;
    max-width: 73vw;
  }
  .ecosystem {
    padding-top: 10px;
  }
  .brand-path {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-block: 33px;
  }
  .brand-path > img {
    width: 135px;
    height: 39px;
  }
  .brand-path h3 {
    font-size: 24px;
  }
  .brand-path p {
    font-size: 14px;
  }
  .brand-path .button {
    grid-column: auto;
    justify-self: start;
    font-size: 12px;
  }
  .faq-layout {
    gap: 30px;
  }
  .faq-heading .intro {
    font-size: 14px;
  }
  .faq-item summary {
    font-size: 16px;
    padding: 24px 0;
    gap: 24px;
  }
  .faq-answer {
    font-size: 14px;
    padding-right: 10px;
    padding-bottom: 25px;
  }
  .last-call {
    margin-inline: 14px;
    margin-bottom: 14px;
    padding: 56px 25px;
    border-radius: 12px;
  }
  .last-call-inner {
    gap: 25px;
  }
  .last-call .display {
    font-size: 43px;
    line-height: 1.06;
  }
  .last-call p {
    font-size: 14px;
  }
  .last-call .button {
    width: 100%;
  }
  .last-call .last-arrow {
    width: 28px;
    height: 28px;
    right: 20px;
    top: 17px;
  }
  .footer {
    padding-top: 50px;
  }
  .footer-grid {
    gap: 35px;
    padding-bottom: 35px;
  }
  .footer-description {
    font-size: 16px;
  }
  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
  }
  .footer-links > div:last-child {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .footer-links .footer-subgroup {
    margin: 0;
  }
  .footer-links a {
    font-size: 12px;
  }
  .footer-legal {
    grid-template-columns: 1fr;
    gap: 20px;
    font-size: 10px;
  }
  .contact-fab {
    width: 49px;
    height: 49px;
    right: 14px;
    bottom: 14px;
  }
  .dialog-content {
    padding: 38px 26px 30px;
  }
  .dialog-content h2 {
    font-size: 29px;
  }
  .dialog-content > p {
    font-size: 13px;
  }
  .legal-header {
    padding: 23px;
  }
  .legal-header h2 {
    font-size: 20px;
  }
  .legal-body {
    padding: 23px;
    font-size: 13px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .hero-video,
  .hero-motion-toggle {
    display: none;
  }
  .audience-heading,
  .faq-heading {
    position: static;
  }
}
/* Final interaction refinements. Product scenes rest on their completed state. */
.product-panel + .product-panel {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.workspace-content.is-enhanced .product-panel {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.motion-on .chapter.is-current .file-progress i {
  animation: transmit 1.8s var(--ease) 1;
}
#contact-description {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  margin-top: 18px;
}
.feature-tooltip[data-dismissed] .tooltip-body {
  display: none !important;
}
@media (max-width: 620px) {
  .hero-description,
  .section-heading .intro,
  .audience-heading .intro {
    font-size: 16px;
  }

}
.tooltip-body::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 14px;
  bottom: -14px;
  background: transparent;
}
.metric strong {
  font-variant-numeric: tabular-nums;
}
@media (max-width: 360px) {
  .hero h1 {
    font-size: 36px;
  }
}

@media (min-width: 621px) and (max-width: 1050px) {
  .chapter { grid-template-columns: 45px .72fr 1.28fr; gap: 20px; }
}
@media (max-width: 760px) {
  .demo-topline { padding: 16px; gap: 12px; min-height: 65px; }
  .demo-topline > span { font-size: 10px; }
  .demo-brand { width: 84px; height: 24px; }
  .demo-brand--notasy { width: 82px; }
  .demo-body { padding: 16px; }
  .demo-fields { gap: 10px; }
  .demo-field { font-size: 14px; gap: 6px; padding: 11px 9px; }
  .file-zone { padding: 12px; }
  .tiny-table td { padding: 12px 9px; font-size: 11px; }
  .tiny-table th { padding: 10px 9px; }
  .tax-receipt { padding: 14px; }
  .demo-total { padding: 12px; }
  .demo-total strong { font-size: 21px; }
}
@media (max-width: 360px) {
  .demo-body { padding: 13px; }
  .demo-topline { padding: 14px; gap: 10px; }
  .demo-topline > .demo-period { padding: 5px 6px; gap: 4px; }
  .demo-period .icon { width: 12px; height: 12px; }
  .demo-file { grid-template-columns: 24px minmax(0,1fr) 17px; gap: 7px; padding: 10px 8px; }
  .demo-file-icon { width: 24px; height: 30px; }
  .demo-file-check { width: 17px; height: 17px; }
  .file-zone strong { font-size: 11px; }
  .invoice-summary { padding: 2px 1px 18px; gap: 11px; }
  .invoice-summary > strong { font-size: 34px; }
  .invoice-summary > div > span { font-size: 14px; }
  .invoice-summary-check { width: 26px; height: 26px; }
  .tiny-table td { padding-inline: 7px; font-size: 10px; }
  .tiny-table th { padding-inline: 7px; }
  .chapter-demo .status { font-size: 9px; padding: 4px 5px; }
  .demo-total { gap: 8px; font-size: 10px; }
  .demo-total strong { font-size: 19px; }
  .tax-receipt { padding: 12px; }
  .tax-receipt h4 { font-size: 12px; }
  .tax-document-icon { width: 29px; height: 34px; }
  .tax-receipt-value { padding: 10px; }
  .tax-receipt-value strong { font-size: 21px; }
}
