:root {
  --ink: #090916;
  --ink-soft: #181126;
  --ink-card: #1e1632;
  --paper: #f3f1ec;
  --paper-bright: #faf9f6;
  --white: #ffffff;
  --text: #12141c;
  --muted: #656875;
  --muted-dark: #9ca9ba;
  --line: #dcd9d1;
  --line-dark: #2b2340;
  --yellow: #ffd62c;
  --yellow-deep: #e3b900;
  --violet: #7457ff;
  --violet-soft: #eeeafe;
  --green: #27d17f;
  --whatsapp: #25d366;
  --red: #dc3e51;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow-soft: 0 18px 60px rgba(24, 24, 33, 0.08);
  --shadow-dark: 0 30px 90px rgba(0, 0, 0, 0.34);
  --app-background: radial-gradient(circle at 16% 12%, #150c26 0%, #090916 38%, #101024 100%);
  --shell: min(1180px, calc(100vw - 48px));
  --display: "Manrope", "Inter", sans-serif;
  --body: "Inter", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

img {
  display: block;
  max-width: 100%;
}

svg {
  display: block;
}

[hidden] {
  display: none !important;
}

.shell {
  width: var(--shell);
  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: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(116, 87, 255, 0.45);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 76px;
  border-bottom: 1px solid rgba(71, 55, 93, 0.86);
  background: #120c1d;
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: #0c0914;
  box-shadow: 0 12px 40px rgba(3, 2, 8, 0.42);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 9px;
  color: var(--white);
}

.brand-mark {
  width: 52px;
  height: 32px;
  object-fit: contain;
}

.brand-name {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
}

.brand-dot,
.brand-name strong {
  color: var(--yellow);
  font-weight: 800;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.desktop-nav a,
.text-link {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 600;
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.text-link:hover {
  color: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.mobile-login-button {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform 170ms ease, background 170ms ease, border-color 170ms ease, color 170ms ease, box-shadow 170ms ease;
}

.button svg,
.inline-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(255, 214, 44, 0.16);
}

.button-primary:hover {
  background: #ffe25b;
  box-shadow: 0 14px 34px rgba(255, 214, 44, 0.25);
}

.site-header .button-primary {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.site-header .button-primary:hover {
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.28);
}

.button-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: #222735;
  box-shadow: 0 14px 34px rgba(11, 13, 22, 0.16);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.button-small {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 13px;
}

.button-large {
  min-height: 58px;
  padding-inline: 24px;
  font-size: 15px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transition: transform 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-last-child(2) {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  inset: 76px 0 auto;
  padding: 12px 24px 24px;
  border-top: 1px solid #2b2340;
  background: #120c1d;
}

.mobile-menu nav {
  display: grid;
  gap: 4px;
  width: min(100%, 520px);
  margin: 0 auto;
}

.mobile-menu nav > a:not(.button) {
  padding: 13px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 600;
}

.mobile-menu .button {
  margin-top: 12px;
}

.mobile-dock {
  display: none;
}

.desktop-whatsapp {
  position: fixed;
  z-index: 210;
  right: max(24px, env(safe-area-inset-right, 0px));
  bottom: max(24px, env(safe-area-inset-bottom, 0px));
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--whatsapp);
  box-shadow: 0 16px 38px rgba(9, 9, 22, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.desktop-whatsapp img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.desktop-whatsapp:hover {
  box-shadow: 0 22px 48px rgba(9, 9, 22, 0.34);
  transform: translateY(-4px) scale(1.025);
}

.desktop-whatsapp:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 5px;
}

.ecosystem-band {
  position: relative;
  z-index: 2;
  isolation: isolate;
  height: 56px;
  margin-top: 76px;
  overflow: hidden;
  border-bottom: 1px solid #2b2340;
  background: #181126;
  color: var(--white);
}

.ecosystem-band::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(24, 17, 38, 0.06), rgba(24, 17, 38, 0.3)),
    linear-gradient(90deg, #181126 0%, transparent 10%, transparent 90%, #181126 100%);
}

.ecosystem-marquee {
  position: absolute;
  z-index: 0;
  inset: 6px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  opacity: 0.84;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.ecosystem-marquee-track {
  display: flex;
  width: max-content;
  flex: 0 0 auto;
  align-items: center;
  animation: ecosystem-logo-scroll 28s linear infinite;
  will-change: transform;
}

.ecosystem-logo-set {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 18px;
  padding-right: 18px;
}

.ecosystem-logo-set img {
  width: auto;
  max-width: 108px;
  height: 34px;
  flex: 0 0 auto;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.07);
  filter: saturate(0.72) brightness(1.08);
  object-fit: contain;
}

@keyframes ecosystem-logo-scroll {
  to {
    transform: translateX(-50%);
  }
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 36px;
  background: var(--app-background);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 76px auto auto 0;
  width: 5px;
  height: 120px;
  background: var(--yellow);
}

.hero-orbit {
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(255, 214, 44, 0.13);
  border-radius: 50%;
}

.hero-orbit-one {
  top: 90px;
  right: -260px;
  width: 820px;
  height: 820px;
}

.hero-orbit-two {
  top: 190px;
  right: -105px;
  width: 510px;
  height: 510px;
  border-color: rgba(116, 87, 255, 0.18);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(560px, 1.15fr);
  align-items: center;
  gap: 64px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: #836d00;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--yellow);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(39, 209, 127, 0.12);
}

.hero h1,
.section-intro h2,
.faq-heading h2,
.final-cta h2,
.story-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.98;
  word-spacing: 0.035em;
}

.hero h1 {
  max-width: 640px;
  font-size: clamp(54px, 5.3vw, 76px);
  word-spacing: 0.055em;
}

.hero h1 span {
  color: var(--yellow);
}

.hero-lead {
  max-width: 600px;
  margin: 26px 0 0;
  color: var(--muted-dark);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-notes li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #858b9d;
  font-size: 12px;
  font-weight: 600;
}

.hero-notes svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--green);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-stage {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid #2b2340;
  border-radius: 24px;
  background: #171020;
  box-shadow: var(--shadow-dark);
  transform: perspective(1400px) rotateY(-2deg) rotateX(1deg);
}

.product-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.stage-toolbar {
  display: flex;
  height: 56px;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  border-bottom: 1px solid #2b2340;
  background: #181126;
}

.stage-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 800;
}

.stage-logo img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.stage-controls {
  display: flex;
  gap: 6px;
}

.stage-controls i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #46375d;
}

.stage-controls i:first-child {
  background: var(--yellow);
}

.stage-body {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  min-height: 470px;
}

.stage-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding-top: 22px;
  border-right: 1px solid #2b2340;
  background: #0c0b16;
}

.stage-sidebar span {
  width: 22px;
  height: 22px;
  border: 1px solid #46375d;
  border-radius: 7px;
}

.stage-sidebar span.active {
  border-color: rgba(255, 214, 44, 0.55);
  background: rgba(255, 214, 44, 0.1);
  box-shadow: inset 3px 0 var(--yellow);
}

.stage-content {
  min-width: 0;
  padding: 24px;
}

.stage-heading,
.stage-focus,
.stage-card-title,
.stage-task,
.file-line {
  display: flex;
  align-items: center;
}

.stage-heading {
  justify-content: space-between;
  margin-bottom: 19px;
}

.stage-heading small,
.stage-focus small,
.stage-metrics small {
  display: block;
  color: #7d8498;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.stage-heading strong {
  display: block;
  margin-top: 4px;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.04em;
}

.stage-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border: 1px solid #2b3d36;
  border-radius: 999px;
  color: #78e0ac;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.stage-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.stage-focus {
  justify-content: space-between;
  gap: 20px;
  padding: 18px 19px;
  border: 1px solid #3b3524;
  border-radius: 15px;
  background: #1e1632;
}

.stage-focus small {
  color: var(--yellow);
}

.stage-focus strong {
  display: block;
  margin-top: 5px;
  font-size: 13px;
}

.stage-focus p {
  margin: 3px 0 0;
  color: #7f8596;
  font-size: 9px;
}

.stage-progress {
  display: grid;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  place-items: center;
  border: 4px solid var(--yellow);
  border-left-color: #313746;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.stage-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 11px;
}

.stage-metrics article {
  min-width: 0;
  padding: 13px;
  border: 1px solid #2b2340;
  border-radius: 13px;
  background: #181126;
}

.metric-icon {
  display: grid;
  width: 27px;
  height: 27px;
  margin-bottom: 11px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
}

.metric-icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.metric-yellow {
  color: var(--yellow);
  background: rgba(255, 214, 44, 0.06);
}

.metric-violet {
  color: #9a85ff;
  background: rgba(116, 87, 255, 0.08);
}

.metric-green {
  color: var(--green);
  background: rgba(39, 209, 127, 0.06);
}

.stage-metrics strong {
  display: block;
  overflow: hidden;
  margin-top: 3px;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stage-lower {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  gap: 9px;
  margin-top: 11px;
}

.stage-lower > article {
  padding: 14px;
  border: 1px solid #2b2340;
  border-radius: 13px;
  background: #181126;
}

.stage-card-title {
  justify-content: space-between;
  margin-bottom: 10px;
}

.stage-card-title strong {
  font-size: 10px;
}

.stage-card-title span {
  color: var(--yellow);
  font-size: 7px;
  font-weight: 800;
}

.stage-task {
  gap: 8px;
  padding: 9px 0;
  border-top: 1px solid #252a37;
}

.stage-task > i {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border: 1px solid #4a4123;
  border-radius: 6px;
  background: rgba(255, 214, 44, 0.05);
}

.stage-task span {
  min-width: 0;
  flex: 1;
}

.stage-task strong,
.stage-task small {
  display: block;
}

.stage-task strong {
  overflow: hidden;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stage-task small {
  color: #72798c;
  font-size: 7px;
}

.stage-task b {
  padding: 4px 6px;
  border: 1px solid #315578;
  border-radius: 999px;
  color: #66b8ff;
  font-size: 6px;
  text-transform: uppercase;
}

.stage-task b.done {
  border-color: #285442;
  color: #62dfa3;
}

.file-line {
  gap: 7px;
  padding: 9px 0;
  border-top: 1px solid #252a37;
  color: #a8adbb;
  font-size: 8px;
}

.file-line i {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 6px;
  background: rgba(116, 87, 255, 0.12);
  color: #a998ff;
  font-size: 6px;
  font-style: normal;
  font-weight: 800;
}

.capability-strip {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #858b9c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.capability-strip i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--yellow);
}

.section {
  padding: 112px 0;
}

.section-intro {
  margin-bottom: 54px;
}

.section-intro h2,
.faq-heading h2,
.story-copy h2 {
  font-size: clamp(40px, 4.8vw, 66px);
}

.section-intro > p,
.split-intro > p,
.centered-intro > p,
.faq-heading > p,
.story-copy > p {
  color: var(--muted);
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.65fr);
  align-items: end;
  gap: 70px;
}

.split-intro > p {
  max-width: 510px;
  margin: 0 0 4px;
  font-size: 17px;
}

.centered-intro {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.centered-intro .eyebrow {
  justify-content: center;
}

.centered-intro > p {
  max-width: 650px;
  margin: 20px auto 0;
  font-size: 17px;
}

.platform-section {
  background: var(--paper);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.bento-card {
  position: relative;
  grid-column: span 5;
  min-height: 315px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper-bright);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.bento-card:hover {
  border-color: #c9c5bc;
}

.bento-wide {
  grid-column: span 7;
}

.bento-flow {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(260px, 0.72fr) minmax(480px, 1.28fr);
  align-items: center;
  gap: 54px;
  min-height: 280px;
  background: #f8f6f1;
}

.flow-copy {
  padding-right: 14px;
}

.mini-timeline {
  overflow: hidden;
  border: 1px solid #d9d5cc;
  border-radius: 18px;
  background: var(--paper-bright);
  box-shadow: 0 18px 45px rgba(44, 40, 34, 0.06);
}

.mini-timeline > div {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
}

.mini-timeline > div:last-child {
  border-bottom: 0;
}

.mini-timeline > div > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid #d9d5cc;
  border-radius: 10px;
  color: #8d8980;
  font-size: 9px;
  font-weight: 800;
}

.mini-timeline p {
  margin: 0;
}

.mini-timeline strong,
.mini-timeline small {
  display: block;
}

.mini-timeline strong {
  color: var(--text);
  font-size: 12px;
}

.mini-timeline small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

.mini-timeline i {
  padding: 6px 8px;
  border-radius: 999px;
  background: #efede7;
  color: #7a766d;
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.mini-timeline i.is-done {
  background: #e4f5ea;
  color: #23704a;
}

.mini-timeline i.is-active {
  background: #fff1a6;
  color: #6b5700;
}

.bento-card h3 {
  max-width: 520px;
  margin: 18px 0 10px;
  font-family: var(--display);
  font-size: clamp(25px, 2.6vw, 36px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.bento-card p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.card-number {
  position: absolute;
  top: 28px;
  right: 30px;
  color: #a8a49b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.card-kicker {
  color: #978000 !important;
  font-size: 10px !important;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.line-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid #d5d1c7;
  border-radius: 14px;
  color: var(--ink);
}

.line-icon svg,
.solution-icon svg,
.process-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bento-dark {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 28px;
  background: var(--ink-soft);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.bento-dark .card-number {
  color: #595f70;
}

.bento-dark p {
  color: #a1a7b5;
}

.bento-accent {
  border-color: transparent;
  background: var(--yellow);
}

.bento-accent .line-icon {
  border-color: rgba(11, 13, 22, 0.2);
}

.bento-accent p,
.bento-accent .card-number {
  color: rgba(11, 13, 22, 0.65);
}

.mini-workspace {
  min-height: 220px;
  padding: 16px;
  border: 1px solid #46375d;
  border-radius: 18px;
  background: #0c0b16;
  transform: translate(18px, 22px) rotate(-2deg);
}

.mini-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 13px;
  border-bottom: 1px solid #2b2340;
  color: #aeb4c2;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mini-panel-head span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.mini-panel-head span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 214, 44, 0.08);
}

.mini-panel-head b {
  color: #6f7688;
  font-size: 7px;
}

.mini-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 15px 0;
}

.mini-dashboard-grid article {
  min-width: 0;
  min-height: 72px;
  padding: 10px;
  border: 1px solid #2b2340;
  border-radius: 10px;
  background: #181126;
}

.mini-dashboard-grid article:nth-child(2) {
  border-color: #3d355c;
  background: rgba(116, 87, 255, 0.09);
}

.mini-dashboard-grid small,
.mini-dashboard-grid strong,
.mini-dashboard-grid em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-dashboard-grid small {
  color: #737b8f;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.mini-dashboard-grid strong {
  margin-top: 6px;
  color: var(--white);
  font-size: 9px;
}

.mini-dashboard-grid em {
  margin-top: 5px;
  color: #9ba2b2;
  font-size: 6px;
  font-style: normal;
}

.mini-dashboard-grid > article > span {
  display: block;
  height: 3px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #2b2340;
}

.mini-dashboard-grid > article > span i {
  display: block;
  width: var(--mini-progress, 0%);
  height: 100%;
  border-radius: inherit;
  background: var(--yellow);
}

.mini-dashboard-grid .mini-online {
  color: #59dc9a;
}

.mini-panel-list {
  display: grid;
  gap: 7px;
}

.mini-panel-list > div {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  min-height: 43px;
  padding: 8px 9px;
  border: 1px solid #252b39;
  border-radius: 9px;
}

.mini-panel-list > div > i {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 7px;
  background: rgba(116, 87, 255, 0.12);
  color: #aa99ff;
  font-size: 6px;
  font-style: normal;
  font-weight: 800;
}

.mini-panel-list span,
.mini-panel-list strong,
.mini-panel-list small {
  display: block;
  min-width: 0;
}

.mini-panel-list strong {
  overflow: hidden;
  color: #e6e8ee;
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-panel-list small {
  margin-top: 2px;
  color: #70788b;
  font-size: 6px;
}

.mini-panel-list b {
  padding: 4px 6px;
  border-radius: 999px;
  background: rgba(39, 209, 127, 0.1);
  color: #5cdda0;
  font-size: 5px;
  text-transform: uppercase;
}

.bento-proof {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(300px, 0.75fr) minmax(560px, 1.25fr);
  align-items: center;
  min-height: 430px;
  gap: 34px;
  padding: 44px;
}

.proof-copy {
  align-self: center;
}

.proof-copy .card-number {
  top: 42px;
  right: auto;
  left: 44px;
}

.proof-copy .card-kicker {
  margin-top: 42px;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.inline-link:hover svg {
  transform: translateX(3px);
}

.inline-link svg {
  width: 17px;
  height: 17px;
  transition: transform 160ms ease;
}

.registration-capture {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid #46375d;
  border-radius: 20px;
  background: #0c0b16;
  box-shadow: 0 26px 70px rgba(11, 13, 22, 0.2);
}

.capture-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 15px;
  border-bottom: 1px solid #2b2340;
  color: #aeb4c2;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.capture-bar span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.capture-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(39, 209, 127, 0.1);
}

.capture-bar strong {
  color: var(--white);
  font-size: 9px;
}

.registration-capture img {
  display: block;
  width: 100%;
  height: auto;
  background: #0c0b16;
}

.ai-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 14%, rgba(125, 82, 178, 0.2), transparent 30%),
    var(--ink);
  color: var(--white);
}

.ai-section::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -190px;
  width: 590px;
  height: 590px;
  pointer-events: none;
  background: url("../images/favlogo.png") center / contain no-repeat;
  opacity: 0.045;
}

.ai-section .shell {
  position: relative;
  z-index: 1;
}

.ai-intro {
  align-items: start;
}

.ai-intro h2 {
  color: var(--white);
}

.ai-intro > p {
  color: #a4aaba;
}

.ai-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(620px, 1.42fr);
  align-items: stretch;
  gap: 34px;
}

.ai-benefits {
  display: grid;
  align-content: start;
}

.ai-benefits article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 15px;
  padding: 23px 0;
  border-top: 1px solid #2b2340;
}

.ai-benefits article:last-child {
  border-bottom: 1px solid #2b2340;
}

.ai-benefits article > span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid #46375d;
  border-radius: 9px;
  color: var(--yellow);
  font-size: 8px;
  font-weight: 800;
}

.ai-benefits strong {
  display: block;
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: -0.025em;
}

.ai-benefits p {
  margin: 5px 0 0;
  color: #9299aa;
  font-size: 12px;
}

.ai-console {
  overflow: hidden;
  border: 1px solid #46375d;
  border-radius: 24px;
  background: #171020;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.ai-console-head {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 20px;
  border-bottom: 1px solid #2b2340;
  background: #181126;
}

.ai-console-head > div,
.ai-console-head p,
.ai-ready {
  display: flex;
  align-items: center;
}

.ai-console-head > div {
  gap: 11px;
}

.ai-console-head p {
  align-items: flex-start;
  flex-direction: column;
  margin: 0;
  line-height: 1.25;
}

.ai-console-head small {
  color: #747c90;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.ai-console-head strong {
  margin-top: 2px;
  font-size: 11px;
}

.ai-spark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 214, 44, 0.32);
  border-radius: 10px;
  background: rgba(255, 214, 44, 0.08);
  color: var(--yellow);
}

.ai-spark svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ai-ready {
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid #28523e;
  border-radius: 999px;
  color: #73e5ad;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ai-ready i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.ai-console-body {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  min-height: 430px;
}

.ai-module-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 18px 12px;
  border-right: 1px solid #2b2340;
  background: #0c0b16;
}

.ai-module-list span {
  min-height: 38px;
  padding: 11px 12px;
  border-radius: 9px;
  color: #777f92;
  font-size: 8px;
  font-weight: 700;
}

.ai-module-list span.is-current {
  background: rgba(255, 214, 44, 0.1);
  color: var(--yellow);
  box-shadow: inset 3px 0 var(--yellow);
}

.ai-console-main {
  min-width: 0;
  padding: 25px;
}

.ai-console-label {
  margin: 0;
  color: var(--yellow);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.ai-console-main h3 {
  max-width: 540px;
  margin: 8px 0 0;
  font-family: var(--display);
  font-size: 25px;
  letter-spacing: -0.045em;
  line-height: 1.05;
  word-spacing: 0.055em;
}

.ai-console-copy {
  max-width: 560px;
  margin: 8px 0 0;
  color: #858d9f;
  font-size: 9px;
}

.ai-plan-list {
  overflow: hidden;
  margin-top: 21px;
  border: 1px solid #2b2340;
  border-radius: 14px;
}

.ai-plan-list > div {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 57px;
  padding: 9px 12px;
  border-bottom: 1px solid #2b2340;
  background: #181126;
}

.ai-plan-list > div:last-child {
  border-bottom: 0;
}

.ai-plan-list > div > span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid #46375d;
  border-radius: 8px;
  color: #858d9f;
  font-size: 7px;
  font-weight: 800;
}

.ai-plan-list p,
.ai-plan-list strong,
.ai-plan-list small {
  display: block;
  min-width: 0;
  margin: 0;
}

.ai-plan-list strong {
  font-size: 9px;
}

.ai-plan-list small {
  margin-top: 3px;
  color: #747c8f;
  font-size: 7px;
}

.ai-plan-list b {
  padding: 5px 7px;
  border: 1px solid #28523e;
  border-radius: 999px;
  color: #67dda3;
  font-size: 6px;
  text-transform: uppercase;
}

.ai-plan-list b.is-progress {
  border-color: #4c4221;
  color: var(--yellow);
}

.ai-output-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.ai-output-grid article {
  min-width: 0;
  min-height: 79px;
  padding: 12px;
  border: 1px solid #2b2340;
  border-radius: 12px;
  background: #181126;
}

.ai-output-grid small,
.ai-output-grid strong,
.ai-output-grid span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ai-output-grid small {
  color: #737b8f;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.ai-output-grid strong {
  margin-top: 7px;
  font-size: 11px;
}

.ai-output-grid span {
  margin-top: 3px;
  color: #8b93a5;
  font-size: 6px;
}

.ai-output-grid span.is-online {
  color: #5bdda0;
}

.solutions-section {
  background: var(--paper-bright);
}

.solution-list {
  border-top: 1px solid var(--line);
}

.solution-row {
  display: grid;
  grid-template-columns: 48px minmax(250px, 0.75fr) minmax(320px, 1.1fr) 120px;
  align-items: center;
  gap: 24px;
  min-height: 142px;
  border-bottom: 1px solid var(--line);
}

.solution-index {
  color: #aaa69e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.solution-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.solution-title h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 23px;
  letter-spacing: -0.04em;
}

.solution-icon {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #d5d1c8;
  border-radius: 13px;
  background: var(--paper);
}

.solution-row > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.solution-tag {
  justify-self: end;
  padding: 6px 9px;
  border: 1px solid #d6d1c5;
  border-radius: 999px;
  color: #77736a;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.packages-section {
  background: #e9e6df;
}

.packages-intro {
  margin-bottom: 36px;
}

.package-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 5px;
  border: 1px solid #cfcbc2;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.42);
  scrollbar-width: none;
}

.package-tabs::-webkit-scrollbar {
  display: none;
}

.package-tabs button {
  min-height: 46px;
  flex: 1 0 auto;
  padding: 0 18px;
  border-radius: 11px;
  background: transparent;
  color: #6d6a63;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.package-tabs button:hover {
  color: var(--ink);
}

.package-tabs button[aria-selected="true"] {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(11, 13, 22, 0.14);
}

.package-status {
  min-height: 27px;
  margin: 20px 0 6px;
  color: #76736c;
  font-size: 12px;
}

.package-status.is-error {
  color: #955461;
}

.package-swipe-hint {
  display: none;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(950px, 100%);
  margin-inline: auto;
}

.package-card {
  display: flex;
  min-width: 0;
  min-height: 470px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid #d2cec5;
  border-radius: 24px;
  background: var(--paper-bright);
  box-shadow: 0 14px 38px rgba(44, 40, 34, 0.055);
}

.package-card:only-child {
  width: min(100%, 520px);
  grid-column: 1 / -1;
  justify-self: center;
}

.package-card[data-provider="markam"][data-featured="true"] {
  border-color: var(--yellow-deep);
  box-shadow: inset 0 5px var(--yellow), 0 16px 44px rgba(44, 40, 34, 0.08);
}

.package-card[data-provider="ticimax"] {
  border-color: #cac2f5;
  background: #f8f6ff;
}

.package-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.package-provider,
.package-badge {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 9px;
  border: 1px solid #d6d2c9;
  border-radius: 999px;
  color: #68655e;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.package-card[data-provider="ticimax"] .package-provider {
  border-color: #c8bffa;
  color: #573ecc;
}

.package-badge {
  border-color: #dfbf25;
  background: #fff3ac;
  color: #665300;
}

.package-card h3 {
  margin: 25px 0 10px;
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.package-summary {
  min-height: 70px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.package-price {
  margin-top: 24px;
  padding: 20px 0;
  border-top: 1px solid #dedad1;
  border-bottom: 1px solid #dedad1;
}

.package-price small {
  display: block;
  margin-bottom: 4px;
  color: #858178;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.package-price strong {
  font-family: var(--display);
  font-size: 30px;
  letter-spacing: -0.045em;
  line-height: 1;
}

.package-price span {
  margin-left: 5px;
  color: #79756d;
  font-size: 11px;
  font-weight: 700;
}

.package-features {
  display: grid;
  gap: 10px;
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #474951;
  font-size: 12px;
}

.package-features svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  margin-top: 2px;
  fill: none;
  stroke: var(--green);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.package-note {
  margin: auto 0 16px;
  padding: 10px 12px;
  border-left: 3px solid #c2b5ff;
  background: #f0edf9;
  color: #6a647b;
  font-size: 10px;
}

.package-card .button {
  width: 100%;
  margin-top: auto;
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.package-card .button:hover {
  background: #222735;
}

.package-card[data-featured="true"] .button {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--ink);
}

.package-empty {
  grid-column: 1 / -1;
  padding: 60px 24px;
  border: 1px dashed #c7c2b8;
  border-radius: 20px;
  color: #77736b;
  text-align: center;
}

.package-disclaimer {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 20px;
  padding: 20px 22px;
  border: 1px solid #cbc3f1;
  border-radius: 17px;
  background: #f6f3ff;
}

.package-disclaimer img {
  width: 124px;
  height: 44px;
  padding: 9px 12px;
  border-radius: 10px;
  background: var(--ink-soft);
  object-fit: contain;
}

.package-disclaimer p {
  margin: 0;
  color: #625c72;
  font-size: 12px;
}

.process-section {
  background: var(--paper-bright);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.process-grid li {
  position: relative;
  min-height: 315px;
  padding: 35px 32px;
  border-right: 1px solid var(--line);
}

.process-grid li:last-child {
  border-right: 0;
}

.process-grid li > span {
  position: absolute;
  top: 35px;
  right: 32px;
  color: #aaa69e;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.process-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid #d5d1c8;
  border-radius: 14px;
  background: var(--paper);
}

.process-grid h3 {
  margin: 65px 0 10px;
  font-family: var(--display);
  font-size: 23px;
  letter-spacing: -0.04em;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.process-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 20px;
  padding: 28px 30px;
  border-radius: 20px;
  background: var(--ink);
  color: var(--white);
}

.process-cta strong {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.035em;
}

.process-cta p {
  margin: 4px 0 0;
  color: #979dab;
  font-size: 13px;
}

.story-section {
  background: var(--ink);
  color: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(500px, 1.3fr);
  align-items: center;
  gap: 74px;
}

.story-copy > p {
  margin: 22px 0 0;
  color: var(--muted-dark);
}

.inline-link-light {
  color: var(--yellow);
}

.video-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid #46375d;
  border-radius: 24px;
  background: #050509;
  box-shadow: var(--shadow-dark);
}

.video-shell::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.video-poster {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  padding: clamp(26px, 5vw, 52px);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(125, 82, 178, 0.34), transparent 34%),
    linear-gradient(135deg, #1e1632 0%, #090916 65%, #150c26 100%);
  color: var(--white);
  cursor: pointer;
  text-align: left;
}

.video-poster::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -80px;
  bottom: -120px;
  border: 1px solid rgba(255, 214, 44, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 46px rgba(255, 214, 44, 0.025), 0 0 0 92px rgba(255, 214, 44, 0.02);
}

.video-label {
  display: block;
  color: var(--yellow);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.video-poster strong {
  display: block;
  max-width: 500px;
  margin-top: 17px;
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 47px);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.play-mark {
  position: absolute;
  z-index: 1;
  right: clamp(30px, 7vw, 76px);
  top: 50%;
  display: grid;
  width: clamp(58px, 8vw, 82px);
  height: clamp(58px, 8vw, 82px);
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  transform: translateY(-50%);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.video-poster:hover .play-mark {
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.35);
}

.play-mark svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.video-poster small {
  position: absolute;
  left: clamp(26px, 5vw, 52px);
  bottom: clamp(24px, 4vw, 42px);
  color: #aeb4c2;
  font-size: 10px;
  font-weight: 700;
}

.video-shell iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-external {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 14px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9px;
  background: rgba(9, 9, 22, 0.88);
  color: #d4d7df;
  font-size: 9px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.partner-section {
  padding: 46px 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper-bright);
}

.partner-section p {
  margin: 0 0 27px;
  color: #6f6a62;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px 42px;
}

.partner-logos img {
  width: auto;
  max-width: 126px;
  height: 43px;
  padding: 8px 11px;
  border: 1px solid #2b2340;
  border-radius: 10px;
  background: var(--ink-soft);
  object-fit: contain;
  opacity: 0.82;
  transition: opacity 160ms ease, transform 160ms ease;
}

.partner-logos img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.notes-section {
  position: relative;
  overflow: hidden;
  background: #ece8df;
}

.notes-section::after {
  content: "";
  position: absolute;
  right: -92px;
  top: 30px;
  width: 380px;
  height: 380px;
  pointer-events: none;
  background: url("../images/favlogo.png") center / contain no-repeat;
  opacity: 0.035;
  transform: rotate(-8deg);
}

.notes-section .shell {
  position: relative;
  z-index: 1;
}

.notes-intro {
  align-items: end;
}

.notes-intro-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.notes-intro-copy .inline-link {
  margin-top: 20px;
}

.notes-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.note-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid #d3cec3;
  border-radius: 24px;
  background: rgba(250, 249, 246, 0.84);
  box-shadow: 0 16px 44px rgba(44, 40, 34, 0.045);
  backdrop-filter: blur(8px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.note-card:hover {
  border-color: #bbb4a7;
  transform: translateY(-4px);
  box-shadow: 0 20px 54px rgba(44, 40, 34, 0.09);
}

.note-card-featured {
  border-color: #d8b919;
  background:
    linear-gradient(145deg, rgba(255, 214, 44, 0.18), rgba(250, 249, 246, 0.95) 42%),
    var(--paper-bright);
}

.note-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #89847b;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.note-meta span {
  color: #725f00;
}

.note-card h3 {
  margin: 65px 0 14px;
  font-family: var(--display);
  font-size: clamp(24px, 2.2vw, 32px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.note-card h3 a {
  transition: color 160ms ease;
}

.note-card h3 a:hover {
  color: #5b4b00;
}

.note-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.note-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.note-link span {
  color: #a88800;
  font-size: 17px;
  transition: transform 160ms ease;
}

.note-link:hover span {
  transform: translateX(3px);
}

.notes-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #d5d0c5;
}

.notes-footer p {
  margin: 0;
  color: #77736b;
  font-size: 12px;
}

.faq-section {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(520px, 1.25fr);
  align-items: start;
  gap: 90px;
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-heading > p {
  margin: 22px 0 0;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) 32px;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-align: left;
}

.faq-question span {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  border: 1px solid #d0ccc3;
  border-radius: 50%;
}

.faq-question span::before,
.faq-question span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 160ms ease;
}

.faq-question span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] span {
  border-color: var(--yellow-deep);
  background: var(--yellow);
}

.faq-question[aria-expanded="true"] span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  padding: 0 56px 25px 0;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 116px 0;
  background:
    radial-gradient(circle at 82% 8%, rgba(125, 82, 178, 0.22), transparent 28%),
    #181126;
  color: var(--white);
  text-align: center;
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  width: 370px;
  height: 370px;
  border: 1px solid rgba(255, 214, 44, 0.12);
  border-radius: 50%;
}

.final-cta::before {
  top: -210px;
  left: -110px;
}

.final-cta::after {
  right: -130px;
  bottom: -230px;
  border-color: rgba(125, 82, 178, 0.3);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta h2 {
  font-size: clamp(48px, 6vw, 82px);
}

.final-cta p:not(.eyebrow) {
  max-width: 570px;
  margin: 24px auto 0;
  color: #a9aebe;
  font-size: 17px;
}

.final-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.site-footer {
  padding: 70px 0 24px;
  background: #050509;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 54px;
}

.footer-brand p {
  max-width: 300px;
  margin: 20px 0 0;
  color: #858b9b;
  font-size: 13px;
}

.brand-light .brand-name strong {
  color: var(--yellow);
}

.brand-light .brand-mark {
  width: 58px;
  height: 36px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column strong {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 12px;
}

.footer-column a {
  color: #868c9b;
  font-size: 12px;
  transition: color 160ms ease;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 58px;
  padding-top: 23px;
  border-top: 1px solid #2b2340;
}

.footer-bottom p {
  margin: 0;
  color: #6e7484;
  font-size: 11px;
}

.footer-bottom > div {
  display: flex;
  gap: 18px;
}

.footer-bottom button {
  padding: 0;
  background: transparent;
  color: #787e8d;
  cursor: pointer;
  font-size: 11px;
}

.footer-bottom button:hover {
  color: var(--white);
}

.modal-backdrop {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
  background: rgba(5, 2, 10, 0.84);
  backdrop-filter: blur(12px);
}

.legal-modal {
  width: min(760px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: hidden;
  border: 1px solid #46375d;
  border-radius: 22px;
  background: #181126;
  color: var(--white);
  box-shadow: var(--shadow-dark);
}

.legal-modal header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 23px 26px;
  border-bottom: 1px solid #2b2340;
}

.legal-modal header span {
  color: var(--yellow);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.legal-modal h2 {
  margin: 5px 0 0;
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.035em;
}

.legal-modal header button {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #343a49;
  border-radius: 10px;
  background: transparent;
  color: #b0b5c2;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.legal-body {
  max-height: 600px;
  overflow-y: auto;
  padding: 12px 26px 26px;
}

.legal-body p {
  margin: 16px 0 0;
  color: #a9afbc;
  font-size: 13px;
}

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(490px, 1.2fr);
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(50px, 6vw, 72px);
  }

  .stage-content {
    padding: 20px;
  }

  .split-intro,
  .story-grid {
    gap: 50px;
  }

  .solution-row {
    grid-template-columns: 42px minmax(220px, 0.75fr) minmax(260px, 1.1fr) 100px;
    gap: 18px;
  }

  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-grid {
    gap: 54px;
  }
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 36px, 760px);
  }

  html {
    scroll-padding-bottom: calc(104px + env(safe-area-inset-bottom, 0px));
  }

  .desktop-nav,
  .desktop-action,
  .desktop-whatsapp {
    display: none;
  }

  .header-actions {
    gap: 10px;
  }

  .mobile-login-button {
    display: inline-flex;
    min-height: 44px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 0 13px;
    border-radius: 10px;
    background: var(--yellow);
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-dock {
    position: fixed;
    z-index: 220;
    right: max(12px, env(safe-area-inset-right, 0px));
    bottom: max(12px, env(safe-area-inset-bottom, 0px));
    left: max(12px, env(safe-area-inset-left, 0px));
    height: 64px;
    padding: 5px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(104, 84, 128, 0.66);
    border-radius: 999px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
      rgba(12, 9, 20, 0.82);
    box-shadow:
      0 22px 64px rgba(0, 0, 0, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.07);
    -webkit-backdrop-filter: blur(28px) saturate(155%);
    backdrop-filter: blur(28px) saturate(155%);
    isolation: isolate;
  }

  .mobile-dock-indicator {
    position: absolute;
    z-index: 0;
    top: 5px;
    bottom: 5px;
    left: 5px;
    width: calc((100% - 10px) / var(--mobile-nav-count));
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.085);
    border-radius: 999px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045)),
      rgba(94, 76, 112, 0.22);
    box-shadow:
      0 8px 22px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.09);
    transform: translate3d(0, 0, 0);
    transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
  }

  .mobile-dock[data-active-index="1"] .mobile-dock-indicator {
    transform: translate3d(100%, 0, 0);
  }

  .mobile-dock[data-active-index="2"] .mobile-dock-indicator {
    transform: translate3d(200%, 0, 0);
  }

  .mobile-dock[data-active-index="3"] .mobile-dock-indicator {
    transform: translate3d(300%, 0, 0);
  }

  .mobile-dock[data-active-index="4"] .mobile-dock-indicator {
    transform: translate3d(400%, 0, 0);
  }

  .mobile-dock a {
    position: relative;
    z-index: 1;
    min-width: 0;
    min-height: 54px;
    padding: 5px 2px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    border-radius: 999px;
    color: #b3aabd;
    text-align: center;
    transition: color 180ms ease, box-shadow 180ms ease, transform 160ms ease;
  }

  .mobile-dock a svg {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-dock a span {
    max-width: 100%;
    overflow: hidden;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.015em;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-dock a.is-active {
    color: var(--yellow);
  }

  .mobile-dock .dock-whatsapp {
    color: #d4f6e1;
  }

  .mobile-dock .dock-whatsapp img {
    width: 27px;
    height: 27px;
    flex: 0 0 auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 9px rgba(37, 211, 102, 0.2));
  }

  .mobile-dock a:active {
    transform: translateY(1px);
  }

  .mobile-dock a:focus-visible {
    outline-color: var(--yellow);
    outline-offset: -3px;
  }

  body.modal-open .mobile-dock {
    opacity: 0;
    pointer-events: none;
  }

  .site-footer {
    padding-bottom: calc(118px + env(safe-area-inset-bottom, 0px));
  }

  .hero {
    padding-top: 86px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero h1 {
    font-size: clamp(54px, 10vw, 78px);
  }

  .product-stage {
    transform: none;
  }

  .capability-strip {
    justify-content: center;
    flex-wrap: wrap;
  }

  .split-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .split-intro > p {
    max-width: 650px;
  }

  .bento-card,
  .bento-wide {
    grid-column: span 6;
  }

  .bento-flow {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .bento-dark {
    grid-template-columns: 1fr;
  }

  .mini-workspace {
    transform: translate(16px, 12px) rotate(-2deg);
  }

  .bento-proof {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .ai-showcase {
    grid-template-columns: 1fr;
  }

  .ai-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ai-benefits article {
    display: block;
    padding: 19px 18px;
    border-right: 1px solid #2b2340;
    border-bottom: 1px solid #2b2340;
  }

  .ai-benefits article:last-child {
    border-right: 0;
  }

  .ai-benefits article > span {
    margin-bottom: 14px;
  }

  .solution-row {
    grid-template-columns: 38px minmax(0, 1fr) auto;
    padding: 24px 0;
  }

  .solution-row > p {
    grid-column: 2 / -1;
    margin-top: -12px;
  }

  .solution-tag {
    grid-column: 3;
    grid-row: 1;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid li {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-grid li:last-child {
    border-bottom: 0;
  }

  .process-grid h3 {
    margin-top: 42px;
  }

  .story-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .story-copy {
    max-width: 640px;
  }

  .faq-heading {
    position: static;
    max-width: 650px;
  }

  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-column:last-child {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: calc(100% - 28px);
    --radius-lg: 24px;
  }

  html {
    scroll-padding-top: 76px;
  }

  .site-header,
  .header-inner {
    height: 68px;
    min-height: 68px;
  }

  .ecosystem-band {
    height: 50px;
    margin-top: 68px;
  }

  .ecosystem-marquee {
    inset: 5px 0;
    opacity: 0.78;
  }

  .ecosystem-marquee-track {
    animation-duration: 24s;
  }

  .ecosystem-logo-set {
    gap: 12px;
    padding-right: 12px;
  }

  .ecosystem-logo-set img {
    max-width: 88px;
    height: 29px;
    padding: 5px 8px;
    border-radius: 8px;
  }

  .mobile-menu {
    top: 68px;
  }

  .brand-mark {
    width: 40px;
    height: 25px;
  }

  .brand-name {
    font-size: 13.5px;
  }

  .hero {
    padding: 36px 0 28px;
  }

  .hero::before {
    top: 96px;
    height: 70px;
    width: 3px;
  }

  .hero h1 {
    font-size: clamp(43px, 13.3vw, 52px);
    line-height: 1;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 24px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 54px;
  }

  .hero-notes {
    gap: 11px 16px;
  }

  .product-stage {
    border-radius: 18px;
  }

  .stage-body {
    grid-template-columns: 1fr;
    min-height: 420px;
  }

  .stage-sidebar {
    display: none;
  }

  .stage-content {
    padding: 16px;
  }

  .stage-heading strong {
    font-size: 17px;
  }

  .stage-focus {
    padding: 14px;
  }

  .stage-focus p {
    display: none;
  }

  .stage-progress {
    width: 48px;
    height: 48px;
    font-size: 9px;
  }

  .stage-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stage-metrics article:last-child {
    display: none;
  }

  .stage-lower {
    grid-template-columns: 1fr;
  }

  .stage-files {
    display: none;
  }

  .capability-strip {
    gap: 10px 12px;
    margin-top: 44px;
    font-size: 9px;
    letter-spacing: 0.07em;
  }

  .section {
    padding: 68px 0;
  }

  .section-intro {
    margin-bottom: 36px;
  }

  .section-intro h2,
  .faq-heading h2,
  .story-copy h2 {
    font-size: clamp(37px, 11vw, 50px);
  }

  .split-intro > p,
  .centered-intro > p {
    font-size: 15px;
  }

  .bento-card,
  .bento-wide,
  .bento-proof {
    grid-column: 1 / -1;
    min-height: 290px;
    padding: 24px;
  }

  .bento-card h3 {
    font-size: 27px;
  }

  .bento-dark {
    min-height: 500px;
  }

  .bento-flow {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mini-timeline > div {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 11px;
    min-height: 84px;
  }

  .mini-timeline i {
    grid-column: 2;
    justify-self: start;
    margin-top: -7px;
  }

  .mini-workspace {
    min-height: 210px;
    transform: translate(12px, 8px) rotate(-2deg);
  }

  .proof-copy .card-number {
    top: 24px;
    left: 24px;
  }

  .ai-benefits {
    grid-template-columns: 1fr;
  }

  .ai-benefits article {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 18px 0;
    border-right: 0;
  }

  .ai-benefits article > span {
    margin-bottom: 0;
  }

  .ai-console {
    border-radius: 18px;
  }

  .ai-console-head {
    min-height: 58px;
    padding: 0 14px;
  }

  .ai-console-body {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .ai-module-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 10px;
    border-right: 0;
    border-bottom: 1px solid #252b38;
  }

  .ai-module-list span {
    min-height: 36px;
    padding: 10px;
  }

  .ai-console-main {
    padding: 18px 14px;
  }

  .ai-console-main h3 {
    font-size: 22px;
  }

  .ai-plan-list > div {
    grid-template-columns: 27px minmax(0, 1fr) auto;
    padding-inline: 9px;
  }

  .ai-output-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ai-output-grid article {
    padding: 10px 8px;
  }

  .capture-bar {
    padding-inline: 12px;
  }

  .capture-bar strong {
    display: none;
  }

  .solution-row {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 12px;
  }

  .solution-title {
    gap: 11px;
  }

  .solution-title h3 {
    font-size: 19px;
  }

  .solution-icon {
    width: 39px;
    height: 39px;
  }

  .solution-row > p {
    grid-column: 2;
    margin-top: 0;
  }

  .solution-tag {
    display: none;
  }

  .package-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-inline: 0;
    padding: 5px;
    overflow: visible;
    border-radius: 14px;
  }

  .package-tabs button {
    min-width: 0;
    min-height: 48px;
    padding: 8px 10px;
    white-space: normal;
  }

  .package-tabs button:last-child {
    grid-column: 1 / -1;
  }

  .package-swipe-hint {
    display: inline;
    color: #4f4c45;
    font-weight: 700;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .package-grid[data-carousel="true"] {
    width: auto;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: calc(100% - 78px);
    gap: 12px;
    margin-inline: -14px;
    padding: 4px 14px 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 14px;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .package-grid[data-carousel="true"]::-webkit-scrollbar {
    display: none;
  }

  .package-grid[data-carousel="true"] .package-card {
    width: auto;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
  }

  .package-card {
    min-height: 440px;
    padding: 23px;
  }

  .package-summary {
    min-height: 0;
  }

  .package-disclaimer {
    align-items: flex-start;
    flex-direction: column;
  }

  .notes-section::after {
    right: -115px;
    top: 70px;
    width: 280px;
    height: 280px;
  }

  .notes-grid {
    width: auto;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: calc(100% - 48px);
    gap: 12px;
    margin-inline: -14px;
    padding: 4px 14px 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 14px;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .notes-grid::-webkit-scrollbar {
    display: none;
  }

  .note-card {
    min-height: 350px;
    padding: 23px;
    scroll-snap-align: start;
  }

  .note-card h3 {
    margin-top: 52px;
    font-size: 26px;
  }

  .notes-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .notes-footer .button {
    width: 100%;
  }

  .process-grid li {
    min-height: 240px;
    padding: 28px 22px;
  }

  .process-grid li > span {
    top: 28px;
    right: 22px;
  }

  .process-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 24px;
  }

  .story-grid {
    gap: 38px;
  }

  .video-shell {
    margin-inline: -8px;
    border-radius: 18px;
  }

  .video-poster {
    padding: 22px;
  }

  .video-label {
    max-width: 210px;
    font-size: 8px;
  }

  .video-poster strong {
    max-width: 230px;
    margin-top: 12px;
    font-size: 25px;
  }

  .video-poster small {
    left: 22px;
    bottom: 19px;
  }

  .play-mark {
    width: 50px;
    height: 50px;
    right: 20px;
  }

  .video-external {
    right: 10px;
    bottom: 10px;
  }

  .partner-section {
    padding: 40px 0;
  }

  .partner-section p {
    max-width: 310px;
    margin: 0 auto 24px;
    line-height: 1.5;
  }

  .partner-logos {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px 12px;
  }

  .partner-logos img {
    grid-column: span 2;
    justify-self: center;
    max-width: 108px;
    height: 39px;
  }

  .partner-logos img:nth-child(-n + 2) {
    grid-column: span 3;
  }

  .faq-grid {
    gap: 42px;
  }

  .faq-question {
    gap: 14px;
    padding: 20px 0;
    font-size: 16px;
  }

  .faq-answer {
    padding-right: 0;
  }

  .final-cta {
    padding: 90px 0;
  }

  .final-cta h2 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .final-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .final-actions .button {
    width: 100%;
  }

  .site-footer {
    padding-top: 54px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-column:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 42px;
  }

  .footer-bottom > div {
    flex-direction: column;
    gap: 8px;
  }

  .modal-backdrop {
    padding: 12px;
  }

  .legal-modal {
    max-height: calc(100vh - 24px);
    border-radius: 18px;
  }

  .legal-modal header,
  .legal-body {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (max-width: 360px) {
  .mobile-login-button {
    padding-inline: 10px;
    font-size: 11px;
  }

  .mobile-dock .dock-whatsapp span {
    font-size: 8px;
    letter-spacing: -0.035em;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .ecosystem-marquee-track {
    transform: translateX(0);
  }

}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  @media (max-width: 980px) {
    .mobile-dock {
      background: #120c1d;
    }
  }
}
