@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/manrope-latin-400.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/manrope-latin-500.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/manrope-latin-600.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/manrope-latin-700.woff2") format("woff2");
}

:root {
  --bg: #020f1e;
  --bg-soft: #0a1726;
  --panel: #0f2034;
  --panel-2: #142941;
  --border: #1b3550;
  --border-soft: rgba(91, 129, 166, 0.2);
  --teal: #00e5a0;
  --teal-dark: #00ba82;
  --blue: #4b8bec;
  --red: #ff5b6b;
  --amber: #ffb300;
  --white: #f7f9fc;
  --text: #c8d9e9;
  --muted: #86a0b9;
  --faint: #7894ad;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  --radius: 22px;
  --radius-small: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--white);
  font-family: "Manrope", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(64, 98, 128, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(64, 98, 128, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  pointer-events: none;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

button {
  border: 0;
}

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

h1,
h2,
h3,
legend {
  letter-spacing: -0.035em;
}

h1 {
  max-width: 11ch;
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 11.5vw, 5.8rem);
  line-height: 0.96;
}

h1 em {
  color: var(--teal);
  font-style: normal;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 8vw, 4rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.15;
}

p {
  color: var(--text);
}

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

.narrow {
  max-width: 790px;
}

.section {
  position: relative;
  padding: 70px 0;
}

.section-dark {
  border-block: 1px solid rgba(75, 139, 236, 0.11);
  background:
    radial-gradient(circle at 85% 15%, rgba(75, 139, 236, 0.1), transparent 28%),
    #081421;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--teal);
  color: var(--bg);
  font-weight: 700;
  text-decoration: none;
}

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

:focus-visible {
  outline: 3px solid rgba(0, 229, 160, 0.88);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(91, 129, 166, 0.16);
  background: rgba(2, 15, 30, 0.88);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  flex: 0 0 auto;
  border-radius: 11px;
  box-shadow: 0 8px 25px rgba(0, 229, 160, 0.08);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-size: 1.02rem;
  letter-spacing: 0.13em;
}

.brand-copy small {
  margin-top: 6px;
  color: var(--teal);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.desktop-nav {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  background: var(--teal);
  box-shadow: 0 12px 32px rgba(0, 229, 160, 0.16);
  color: #03130f;
}

.button-primary:hover {
  background: #1bf0b0;
  box-shadow: 0 16px 38px rgba(0, 229, 160, 0.22);
}

.button-secondary {
  border-color: var(--border);
  background: var(--panel-2);
  color: var(--white);
}

.button-small {
  min-height: 42px;
  padding: 10px 13px;
  font-size: 0.78rem;
}

.button-large {
  width: 100%;
  min-height: 56px;
  padding-inline: 23px;
}

.text-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-weight: 700;
  text-underline-offset: 5px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.eyebrow > span {
  width: 24px;
  height: 2px;
  background: currentColor;
}

.eyebrow.centered {
  justify-content: center;
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  overflow: hidden;
  padding: 70px 0 76px;
  background:
    linear-gradient(180deg, rgba(7, 16, 28, 0.4), var(--bg) 92%),
    radial-gradient(circle at 50% 0, rgba(0, 229, 160, 0.08), transparent 35%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-orb-one {
  top: 10%;
  right: -220px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(75, 139, 236, 0.12), transparent 68%);
}

.hero-orb-two {
  bottom: 0;
  left: -180px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 229, 160, 0.08), transparent 70%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 60px;
  align-items: center;
}

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

.hero-thesis {
  max-width: 570px;
  margin-bottom: 13px;
  color: var(--white);
  font-size: clamp(1.08rem, 2.7vw, 1.35rem);
  font-weight: 700;
  line-height: 1.35;
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 22px;
  color: var(--text);
  font-size: 1.1rem;
}

.hero-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.hero-channels li {
  padding: 7px 11px;
  border: 1px solid rgba(0, 229, 160, 0.24);
  border-radius: 999px;
  background: rgba(0, 229, 160, 0.07);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.hero-actions {
  display: grid;
  gap: 18px;
  align-items: center;
  margin-bottom: 27px;
}

.hero-actions .text-link {
  justify-content: center;
}

.hero-assurance {
  max-width: 560px;
  margin: -6px 0 20px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
}

.trust-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.84rem;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-list li span {
  display: inline-grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border: 1px solid rgba(0, 229, 160, 0.3);
  border-radius: 50%;
  background: rgba(0, 229, 160, 0.08);
  color: var(--teal);
  font-size: 0.65rem;
}

.product-stage {
  position: relative;
  min-height: 560px;
  margin-inline: -8px;
}

.hero-input-floats {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}

.hero-input-float {
  position: absolute;
  display: grid;
  gap: 3px;
  min-width: 156px;
  padding: 10px 12px;
  border: 1px solid rgba(0, 229, 160, 0.3);
  border-radius: 12px;
  background: rgba(8, 20, 33, 0.94);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.36);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.hero-input-float small {
  color: var(--teal);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.hero-input-float strong {
  color: var(--white);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.69rem;
  letter-spacing: -0.015em;
}

.hero-input-write {
  top: 2px;
  left: 3px;
}

.hero-input-voice {
  top: 126px;
  right: 0;
}

.hero-input-import {
  right: 4px;
  bottom: 84px;
}

.hero-input-photo {
  bottom: 18px;
  left: 46%;
}

.product-stage::after {
  content: "";
  position: absolute;
  inset: 8% -6% -4% -6%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(0, 229, 160, 0.10), transparent 70%);
  filter: blur(6px);
  pointer-events: none;
}

.product-preview {
  position: absolute;
  top: 36px;
  right: -96px;
  left: 50px;
  overflow: hidden;
  border: 1px solid rgba(113, 157, 196, 0.26);
  border-radius: 16px;
  background: #0b1827;
  box-shadow: var(--shadow);
  transform: rotate(0.8deg);
}

.window-bar {
  display: flex;
  height: 36px;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(113, 157, 196, 0.14);
  color: var(--muted);
  font-size: 0.65rem;
}

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

.window-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #304b64;
}

.window-badge {
  margin-left: auto;
  color: var(--teal);
  font-weight: 700;
}

.product-preview img {
  display: block;
  width: 100%;
  height: auto;
}

.phone-preview {
  position: absolute;
  bottom: 4px;
  left: 0;
  z-index: 3;
  width: 235px;
  padding: 8px;
  border: 1px solid #36536d;
  border-radius: 34px;
  background: linear-gradient(145deg, #1a2e42, #06101a 70%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.58);
}

.phone-speaker {
  position: absolute;
  top: 15px;
  left: 50%;
  z-index: 4;
  width: 54px;
  height: 5px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #03080d;
}

.phone-screen {
  position: relative;
  min-height: 454px;
  overflow: hidden;
  padding: 26px 10px 42px;
  border-radius: 27px;
  background: #07101c;
}

.phone-screen.phone-screen-real {
  min-height: 0;
  padding: 0;
}

.phone-screen-real img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 27px;
}

.app-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.app-head div {
  display: flex;
  flex-direction: column;
}

.app-head div > span {
  color: var(--teal);
  font-size: 0.42rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.app-head strong {
  margin-top: 3px;
  font-size: 0.82rem;
}

.app-year {
  padding: 4px 8px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--panel-2);
  color: var(--text);
  font-size: 0.56rem;
  font-weight: 700;
}

.app-months {
  display: flex;
  gap: 4px;
  margin: 0 -3px 10px;
}

.app-months span {
  flex: 1;
  padding: 3px 0;
  border-radius: 8px;
  background: #102239;
  color: var(--faint);
  font-size: 0.42rem;
  text-align: center;
}

.app-months .active {
  background: rgba(0, 229, 160, 0.13);
  color: var(--teal);
}

.app-main-card,
.app-chart-card,
.app-kpis > div {
  border: 1px solid var(--border);
  background: var(--panel);
}

.app-main-card {
  display: flex;
  flex-direction: column;
  margin-bottom: 7px;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(0, 229, 160, 0.12), var(--panel) 68%);
}

.app-main-card span,
.app-kpis span {
  color: var(--muted);
  font-size: 0.48rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.app-main-card strong {
  margin: 3px 0;
  color: var(--teal);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 1.45rem;
}

.app-main-card small {
  color: var(--faint);
  font-size: 0.46rem;
}

.app-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-bottom: 7px;
}

.app-kpis > div {
  display: flex;
  min-height: 63px;
  flex-direction: column;
  justify-content: center;
  padding: 8px;
  border-radius: 11px;
}

.app-kpis strong {
  margin-top: 4px;
  color: var(--blue);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.72rem;
}

.app-kpis strong.negative {
  color: var(--red);
}

.app-chart-card {
  padding: 10px;
  border-radius: 12px;
}

.app-chart-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text);
  font-size: 0.56rem;
  font-weight: 700;
}

.app-chart-title small {
  color: var(--faint);
  font-size: 0.43rem;
  font-weight: 500;
}

.app-chart-card svg {
  margin-top: 6px;
}

.chart-grid {
  fill: none;
  stroke: rgba(82, 116, 148, 0.2);
  stroke-width: 1;
}

.chart-area {
  fill: url(#chartFill);
}

.chart-line {
  fill: none;
  stroke: var(--teal);
  stroke-linecap: round;
  stroke-width: 3;
}

.app-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 9px 6px;
  border-top: 1px solid var(--border);
  background: #0a1827;
}

.app-nav span {
  color: var(--faint);
  font-size: 0.38rem;
  text-align: center;
}

.app-nav .active {
  color: var(--teal);
}

.demo-note {
  position: absolute;
  right: 0;
  bottom: -18px;
  color: var(--faint);
  font-size: 0.67rem;
}

.benefit-strip {
  position: relative;
  z-index: 4;
  border-block: 1px solid rgba(0, 229, 160, 0.12);
  background: #081522;
}

.benefit-strip-grid {
  display: grid;
}

.benefit-strip-grid > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  padding: 21px 4px;
  border-bottom: 1px solid rgba(91, 129, 166, 0.13);
}

.benefit-strip-grid > div:last-child {
  border-bottom: 0;
}

.benefit-strip-grid span {
  color: var(--teal);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.65rem;
}

.benefit-strip-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.45;
}

.benefit-strip-grid strong {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
  font-size: 0.86rem;
}

.capture-section {
  overflow: hidden;
  border-block: 1px solid rgba(0, 229, 160, 0.13);
  background:
    linear-gradient(rgba(64, 98, 128, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(64, 98, 128, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 82% 18%, rgba(0, 229, 160, 0.1), transparent 28%),
    #071321;
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.capture-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 38px;
}

.capture-heading h2,
.capture-heading > p {
  margin-bottom: 0;
}

.capture-heading h2 em {
  color: var(--teal);
  font-style: normal;
}

.capture-heading > p {
  max-width: 560px;
  align-self: end;
}

.capture-flow {
  display: grid;
  gap: 24px;
  align-items: stretch;
}

.capture-inputs {
  display: grid;
  gap: 12px;
  align-content: center;
  grid-auto-rows: max-content;
}

.capture-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 17px;
  border: 1px solid rgba(91, 129, 166, 0.24);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(15, 32, 52, 0.94), rgba(7, 19, 33, 0.96));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.capture-card::before {
  position: absolute;
  top: 0;
  right: 17px;
  left: 17px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 160, 0.66), transparent);
  content: "";
}

.capture-voice::before,
.capture-import::before {
  background: linear-gradient(90deg, transparent, rgba(75, 139, 236, 0.72), transparent);
}

.capture-card-head,
.capture-result,
.receipt-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.capture-card-head {
  margin-bottom: 13px;
}

.capture-card-head span {
  color: var(--teal);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.capture-voice .capture-card-head span,
.capture-import .capture-card-head span {
  color: #77a9f3;
}

.capture-card-head small {
  color: var(--faint);
  font-size: 0.65rem;
}

.capture-command {
  display: flex;
  min-height: 54px;
  align-items: center;
  margin-bottom: 12px;
  padding: 12px 13px;
  overflow-wrap: anywhere;
  border: 1px solid rgba(91, 129, 166, 0.18);
  border-radius: 11px;
  background: #07111e;
  color: var(--white);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.83rem;
  font-weight: 700;
  line-height: 1.35;
}

.capture-quote {
  font-family: "Manrope", ui-sans-serif, sans-serif;
  font-style: italic;
  font-weight: 600;
}

.capture-file {
  flex-wrap: wrap;
  gap: 7px;
}

.capture-file span {
  padding: 5px 8px;
  border: 1px solid rgba(75, 139, 236, 0.32);
  border-radius: 7px;
  background: rgba(75, 139, 236, 0.1);
  color: #9dc1f7;
  font-size: 0.7rem;
}

.receipt-line strong {
  color: var(--teal);
}

.capture-result {
  margin: 0;
  color: var(--faint);
  font-size: 0.67rem;
}

.capture-result span {
  min-width: 0;
}

.capture-result strong {
  flex: 0 0 auto;
  color: var(--text);
  font-size: 0.68rem;
}

.flow-engine {
  position: relative;
  display: grid;
  min-height: 150px;
  place-items: center;
}

.flow-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(0, 229, 160, 0.7) 42%, rgba(0, 229, 160, 0.7) 58%, transparent);
}

.flow-line::after {
  position: absolute;
  top: 4%;
  left: 50%;
  width: 7px;
  height: 7px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 18px rgba(0, 229, 160, 0.9);
  content: "";
  animation: flow-down 2.8s ease-in-out infinite;
}

.flow-node {
  position: relative;
  z-index: 2;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(0, 229, 160, 0.42);
  border-radius: 50%;
  background: #092116;
  box-shadow: 0 0 0 9px rgba(0, 229, 160, 0.05), 0 14px 38px rgba(0, 0, 0, 0.32);
  color: var(--teal);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.flow-arrow {
  position: absolute;
  bottom: 4px;
  left: 50%;
  color: var(--teal);
  font-size: 1.2rem;
  transform: translateX(-50%) rotate(90deg);
}

.flow-actions {
  position: absolute;
  top: 8px;
  left: 50%;
  z-index: 2;
  display: flex;
  width: min(100%, 340px);
  justify-content: center;
  gap: 6px;
  transform: translateX(-50%);
}

.flow-actions small {
  padding: 4px 7px;
  border: 1px solid rgba(91, 129, 166, 0.22);
  border-radius: 999px;
  background: #091725;
  color: var(--muted);
  font-size: 0.52rem;
  font-weight: 700;
  white-space: nowrap;
}

.capture-vision {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 229, 160, 0.34);
  border-radius: 22px;
  background: #081522;
  box-shadow: 0 30px 74px rgba(0, 0, 0, 0.38), 0 0 70px rgba(0, 229, 160, 0.06);
}

.vision-bar {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 15px;
  border-bottom: 1px solid rgba(91, 129, 166, 0.18);
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.62rem;
}

.vision-bar strong {
  color: var(--teal);
  font-size: 0.56rem;
  letter-spacing: 0.08em;
}

.vision-screen {
  padding: 12px;
  background:
    linear-gradient(rgba(64, 98, 128, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(64, 98, 128, 0.04) 1px, transparent 1px),
    #07111e;
  background-size: 26px 26px;
}

.vision-screen img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(91, 129, 166, 0.2);
  border-radius: 12px;
}

.vision-outcomes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(91, 129, 166, 0.16);
}

.vision-outcomes > span {
  display: grid;
  min-width: 0;
  gap: 3px;
  padding: 12px 9px;
  border-right: 1px solid rgba(91, 129, 166, 0.16);
}

.vision-outcomes > span:last-child {
  border-right: 0;
}

.vision-outcomes small {
  color: var(--teal);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.vision-outcomes strong {
  overflow-wrap: anywhere;
  color: var(--text);
  font-size: 0.63rem;
  line-height: 1.35;
}

.capture-note {
  margin-top: 20px;
  color: var(--faint);
  font-size: 0.72rem;
  text-align: center;
}

.intro-centered > .positioning-statement {
  margin-bottom: 0;
  color: var(--teal);
  font-size: clamp(1.2rem, 3.5vw, 1.55rem);
  font-weight: 700;
  line-height: 1.4;
}

@keyframes flow-down {
  0% { top: 4%; opacity: 0; }
  18% { opacity: 1; }
  82% { opacity: 1; }
  100% { top: 94%; opacity: 0; }
}

@keyframes flow-right {
  0% { left: 4%; opacity: 0; }
  18% { opacity: 1; }
  82% { opacity: 1; }
  100% { left: 94%; opacity: 0; }
}

.intro-centered {
  margin-bottom: 44px;
  text-align: center;
}

.intro-centered > p:last-child {
  margin-bottom: 0;
  font-size: 1.04rem;
}

.three-grid,
.steps-grid,
.outcome-grid,
.format-grid {
  display: grid;
  gap: 14px;
}

.feature-card,
.step-card,
.format-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  background: rgba(15, 32, 52, 0.72);
}

.feature-card {
  min-height: 215px;
  padding: 28px;
}

.feature-card::after {
  position: absolute;
  right: -30px;
  bottom: -45px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(75, 139, 236, 0.1);
  border-radius: 50%;
  content: "";
}

.feature-number {
  display: block;
  margin-bottom: 42px;
  color: var(--teal);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.75rem;
}

.feature-card p,
.step-card p,
.format-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.split-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 45px;
}

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

.split-heading > p {
  margin: 0;
  align-self: end;
}

.step-card {
  min-height: 245px;
  padding: 27px;
}

.step-card.highlighted {
  border-color: rgba(0, 229, 160, 0.33);
  background: linear-gradient(145deg, rgba(0, 229, 160, 0.1), rgba(15, 32, 52, 0.8));
}

.step-icon {
  display: grid;
  width: 45px;
  height: 45px;
  margin-bottom: 37px;
  place-items: center;
  border: 1px solid rgba(0, 229, 160, 0.22);
  border-radius: 13px;
  background: rgba(0, 229, 160, 0.08);
  color: var(--teal);
  font-size: 1.3rem;
}

.step-label {
  margin-bottom: 9px !important;
  color: var(--faint) !important;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.outcome-grid {
  margin-top: 14px;
}

.outcome-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 19px 4px;
  border-bottom: 1px solid rgba(91, 129, 166, 0.15);
}

.outcome-item > span {
  color: var(--teal);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.7rem;
}

.outcome-item strong {
  display: block;
  margin-bottom: 3px;
}

.outcome-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.how-experience {
  display: grid;
  gap: 34px;
  align-items: center;
}

.how-steps .outcome-item:last-child {
  border-bottom: 0;
}

.formats-section {
  background: linear-gradient(180deg, var(--bg), #081421);
}

.beta-section {
  border-block: 1px solid rgba(75, 139, 236, 0.11);
  background:
    radial-gradient(circle at 90% 10%, rgba(0, 229, 160, 0.08), transparent 28%),
    #07111e;
}

.beta-heading {
  margin-bottom: 30px;
}

.beta-grid {
  display: grid;
  gap: 14px;
}

.beta-card {
  min-height: 0;
  padding: 22px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  background: rgba(15, 32, 52, 0.76);
}

.beta-number {
  display: block;
  margin-bottom: 18px;
  color: var(--teal);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.7rem;
}

.beta-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.beta-callout {
  display: grid;
  gap: 20px;
  align-items: center;
  margin-top: 18px;
  padding: 24px;
  border: 1px solid rgba(0, 229, 160, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(110deg, rgba(0, 229, 160, 0.1), rgba(15, 32, 52, 0.78));
}

.beta-callout p {
  margin: 0;
}

.proof-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(75, 139, 236, 0.08), transparent 30%),
    var(--bg);
}

.proof-heading {
  display: grid;
  gap: 22px;
  margin-bottom: 45px;
}

.proof-heading h2,
.proof-heading p {
  margin-bottom: 0;
}

.proof-heading .button {
  width: 100%;
  margin-top: 18px;
}

.proof-grid {
  display: grid;
  gap: 18px;
}

.proof-card {
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 26px;
  background: rgba(15, 32, 52, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.proof-media {
  display: grid;
  min-height: 320px;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border-soft);
  background:
    linear-gradient(rgba(64, 98, 128, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(64, 98, 128, 0.05) 1px, transparent 1px),
    #081522;
  background-size: 28px 28px;
}

.phone-media {
  padding: 28px 54px 0;
}

.phone-media img {
  display: block;
  width: min(100%, 300px);
  height: auto;
  border: 8px solid #13283d;
  border-bottom: 0;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.48);
}

.desktop-media {
  padding: 28px 54px 0;
  place-items: center;
}

.desktop-media img {
  display: block;
  width: min(100%, 300px);
  height: auto;
  border: 8px solid #13283d;
  border-bottom: 0;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.48);
}

.proof-copy {
  padding: 28px 24px 30px;
}

.proof-copy .format-topline {
  margin-bottom: 24px;
}

.proof-copy h3 {
  font-size: 1.6rem;
}

.proof-copy > p {
  margin-bottom: 0;
  color: var(--muted);
}

.proof-copy ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  color: var(--text);
  font-size: 0.9rem;
  list-style: none;
}

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

.proof-copy li::before {
  position: absolute;
  left: 0;
  color: var(--teal);
  content: "✓";
}

.proof-caption {
  margin-top: 17px;
  color: var(--faint);
  font-size: 0.72rem;
  text-align: center;
}

.format-grid {
  max-width: 960px;
}

.format-card {
  display: flex;
  min-height: 465px;
  flex-direction: column;
  padding: 30px;
}

.format-card-accent {
  border-color: rgba(75, 139, 236, 0.35);
  background: linear-gradient(145deg, rgba(75, 139, 236, 0.1), rgba(15, 32, 52, 0.75));
}

.format-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 52px;
  color: var(--faint);
  font-size: 0.72rem;
}

.format-tag {
  padding: 5px 9px;
  border: 1px solid rgba(0, 229, 160, 0.32);
  border-radius: 999px;
  background: rgba(0, 229, 160, 0.07);
  color: var(--teal);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.format-card h3 {
  font-size: 2rem;
}

.format-card > p {
  min-height: 77px;
}

.format-card ul {
  display: grid;
  gap: 11px;
  margin: 26px 0 34px;
  padding: 0;
  color: var(--text);
  list-style: none;
}

.format-card li {
  position: relative;
  padding-left: 23px;
}

.format-card li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--teal);
  content: "✓";
}

.format-card .card-link {
  margin-top: auto;
}

.privacy-section {
  background: #081421;
}

.privacy-panel {
  display: grid;
  gap: 30px;
  padding: 32px 24px;
  border: 1px solid rgba(0, 229, 160, 0.23);
  border-radius: 28px;
  background:
    radial-gradient(circle at 0 0, rgba(0, 229, 160, 0.09), transparent 38%),
    rgba(15, 32, 52, 0.76);
  box-shadow: var(--shadow);
}

.privacy-mark {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 1px solid rgba(0, 229, 160, 0.28);
  border-radius: 20px;
  background: rgba(0, 229, 160, 0.08);
}

.privacy-mark svg {
  width: 42px;
  fill: none;
  stroke: var(--teal);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.privacy-points {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.privacy-points > div {
  display: grid;
  gap: 4px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(91, 129, 166, 0.18);
}

.privacy-points strong {
  color: var(--teal);
}

.privacy-points span {
  color: var(--muted);
  font-size: 0.92rem;
}

.privacy-note {
  max-width: 720px;
  margin: -8px 0 23px;
  color: var(--faint);
  font-size: 0.74rem;
  line-height: 1.5;
}

.fit-section {
  background: var(--bg);
}

.fit-grid {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 28px;
}

.fit-column {
  padding: 36px 25px;
}

.fit-yes {
  background: linear-gradient(145deg, rgba(0, 229, 160, 0.08), rgba(15, 32, 52, 0.7));
}

.fit-no {
  border-top: 1px solid var(--border-soft);
  background: rgba(9, 23, 37, 0.8);
}

.fit-label {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 26px;
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.fit-no .fit-label {
  color: var(--red);
}

.fit-label > span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.fit-column h3 {
  font-size: 1.75rem;
}

.fit-column ul {
  display: grid;
  gap: 13px;
  margin: 30px 0 0;
  padding: 0;
  color: var(--text);
  list-style: none;
}

.fit-column li {
  position: relative;
  padding-left: 25px;
}

.fit-yes li::before,
.fit-no li::before {
  position: absolute;
  top: 0;
  left: 0;
}

.fit-yes li::before {
  color: var(--teal);
  content: "✓";
}

.fit-no li::before {
  color: var(--red);
  content: "–";
}

.form-section {
  border-block: 1px solid rgba(0, 229, 160, 0.11);
  background:
    radial-gradient(circle at 95% 15%, rgba(0, 229, 160, 0.1), transparent 26%),
    #081421;
}

.form-layout {
  display: grid;
  gap: 40px;
}

.form-intro h2 {
  max-width: 11ch;
}

.form-meta {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.form-meta > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(91, 129, 166, 0.16);
  color: var(--muted);
  font-size: 0.82rem;
}

.form-meta strong {
  color: var(--white);
}

.form-shell {
  overflow: hidden;
  border: 1px solid rgba(0, 229, 160, 0.22);
  border-radius: 26px;
  background: rgba(15, 32, 52, 0.86);
  box-shadow: var(--shadow);
}

.progress-wrap {
  display: none;
  padding: 20px 20px 0;
}

.is-enhanced-shell .progress-wrap {
  display: block;
}

.progress-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.progress-track {
  display: block;
  width: 100%;
  height: 4px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: #243e57;
  color: var(--teal);
  appearance: none;
  -webkit-appearance: none;
}

.progress-track::-webkit-progress-bar {
  border-radius: inherit;
  background: #243e57;
}

.progress-track::-webkit-progress-value {
  border-radius: inherit;
  background: var(--teal);
  transition: width 260ms ease;
}

.progress-track::-moz-progress-bar {
  border-radius: inherit;
  background: var(--teal);
  transition: width 260ms ease;
}

#beta-form {
  padding: 27px 20px 21px;
}

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

.form-step {
  min-width: 0;
  margin: 0 0 32px;
  padding: 0 0 30px;
  border: 0;
  border-bottom: 1px solid rgba(91, 129, 166, 0.17);
}

.form-step:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.is-enhanced .form-step {
  display: none;
  min-height: 360px;
  margin: 0;
  padding: 0;
  border: 0;
}

.is-enhanced .form-step.is-active {
  display: flex;
  flex-direction: column;
}

.form-step legend {
  width: 100%;
  margin-bottom: 8px;
  padding: 0;
  color: var(--white);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.15;
}

.question-block + .question-block {
  margin-top: 28px;
}

.question-title {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.question-block .question-help {
  margin-top: -5px;
  margin-bottom: 12px;
}

.question-help {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.86rem;
}

.choices {
  display: grid;
  gap: 9px;
}

.compact-choices {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-wide {
  grid-column: 1 / -1;
}

.choice {
  position: relative;
  cursor: pointer;
}

.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice > span {
  display: flex;
  min-height: 58px;
  flex-direction: column;
  justify-content: center;
  padding: 13px 45px 13px 15px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #0b1a2b;
  color: var(--text);
  transition: border-color 150ms ease, background-color 150ms ease, transform 150ms ease;
}

.compact-choices .choice > span {
  min-height: 54px;
  padding-right: 38px;
  font-size: 0.8rem;
}

.choice > span::after {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 17px;
  height: 17px;
  transform: translateY(-50%);
  border: 1px solid #52718d;
  border-radius: 50%;
  content: "";
}

.choice:hover > span {
  border-color: #416482;
  transform: translateY(-1px);
}

.choice input:focus-visible + span {
  outline: 3px solid rgba(0, 229, 160, 0.6);
  outline-offset: 2px;
}

.choice input:checked + span {
  border-color: var(--teal);
  background: rgba(0, 229, 160, 0.08);
  color: var(--white);
}

.choice input:checked + span::after {
  border: 5px solid var(--teal);
  background: var(--bg);
}

.choice input[type="checkbox"] + span::after {
  border-radius: 4px;
}

.choice input[type="checkbox"]:checked + span::after {
  display: grid;
  place-items: center;
  border: 1px solid var(--teal);
  background: var(--teal);
  color: #03130f;
  content: "✓";
  font-size: 0.72rem;
  font-weight: 700;
}

.choice small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
}

.step-actions {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 23px;
}

.contact-step .step-actions,
.is-enhanced .step-actions {
  display: flex;
}

.form-step:not(.contact-step) .step-actions {
  margin-top: auto;
  padding-top: 24px;
}

.back-step {
  padding: 9px 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 700;
}

.back-step:hover {
  color: var(--white);
}

.next-step,
.submit-button {
  min-width: 145px;
}

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

.turnstile-shell {
  width: 100%;
  min-width: 0;
  margin-top: 18px;
  padding: 13px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #0b1a2b;
}

#turnstile-widget {
  width: 100%;
  min-width: 0;
}

#turnstile-widget iframe {
  max-width: 100%;
}

.turnstile-status {
  min-height: 18px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.4;
}

.turnstile-status[data-state="success"] {
  color: var(--teal);
}

.turnstile-status[data-state="error"] {
  color: #ff8994;
}

.input-grid {
  display: grid;
  gap: 15px;
}

.input-grid label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 700;
}

.input-grid input,
.input-grid textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: 11px;
  outline: 0;
  background: #0b1a2b;
  color: var(--white);
}

.input-grid input:focus,
.input-grid textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 229, 160, 0.1);
}

.input-grid input::placeholder,
.input-grid textarea::placeholder {
  color: #7894ad;
}

.input-grid textarea {
  min-height: 96px;
  resize: vertical;
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: flex-start;
  margin-top: 18px;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.75rem;
  line-height: 1.45;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--teal);
}

.consent a {
  color: var(--teal);
  text-underline-offset: 3px;
}

.form-error {
  min-height: 20px;
  margin: 12px 0 0;
  color: #ff8994;
  font-size: 0.76rem;
}

.step-error {
  margin: 11px 0 0;
  color: #ff8994;
  font-size: 0.78rem;
}

.submit-note {
  margin: 13px 0 0;
  color: var(--faint);
  font-size: 0.7rem;
  text-align: right;
}

.success-panel {
  min-height: 520px;
  padding: 44px 24px;
  text-align: center;
}

.success-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  place-items: center;
  border: 1px solid rgba(0, 229, 160, 0.32);
  border-radius: 50%;
  background: rgba(0, 229, 160, 0.1);
  color: var(--teal);
  font-size: 1.7rem;
  font-weight: 700;
}

.success-panel h3 {
  font-size: 2rem;
}

.success-small {
  margin: 24px auto;
  padding: 16px;
  border: 1px solid rgba(75, 139, 236, 0.2);
  border-radius: 12px;
  background: rgba(75, 139, 236, 0.07);
  color: var(--muted);
  font-size: 0.82rem;
}

.faq-section {
  background: var(--bg);
}

.faq-grid {
  display: grid;
  gap: 38px;
}

.faq-list {
  border-top: 1px solid var(--border-soft);
}

.faq-list details {
  border-bottom: 1px solid var(--border-soft);
}

.faq-list summary {
  position: relative;
  padding: 21px 38px 21px 0;
  color: var(--white);
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 3px;
  color: var(--teal);
  content: "+";
  font-size: 1.4rem;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  margin-bottom: 22px;
  color: var(--muted);
}

.faq-microcopy {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 600;
}

.site-footer {
  padding: 54px 0 24px;
  border-top: 1px solid var(--border-soft);
  background: #050c14;
}

.footer-grid {
  display: grid;
  gap: 34px;
}

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

.footer-brand .brand-copy small {
  color: var(--muted);
  font-size: 0.6rem;
  letter-spacing: 0;
}

.footer-grid p {
  max-width: 440px;
  color: var(--faint);
  font-size: 0.82rem;
}

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

.footer-links a {
  color: var(--text);
  font-size: 0.88rem;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(91, 129, 166, 0.12);
  color: #718aa0;
  font-size: 0.69rem;
}

/* Página legal y confirmación sin JavaScript */
.legal-main,
.thanks-main {
  min-height: calc(100svh - 72px);
  padding: 65px 0 90px;
  background: radial-gradient(circle at 90% 0, rgba(0, 229, 160, 0.08), transparent 28%);
}

.legal-hero,
.thanks-panel {
  max-width: 820px;
}

.legal-hero h1,
.thanks-panel h1 {
  max-width: 15ch;
  font-size: clamp(2.7rem, 10vw, 4.7rem);
}

.legal-card,
.thanks-panel {
  margin-top: 36px;
  padding: 28px 22px;
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  background: rgba(15, 32, 52, 0.75);
}

.legal-card h2 {
  margin-top: 37px;
  font-size: 1.55rem;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card ul {
  color: var(--text);
}

.legal-card a {
  color: var(--teal);
}

@media (min-width: 620px) {
  .container {
    width: min(calc(100% - 52px), var(--container));
  }

  .button-small {
    padding-inline: 18px;
    font-size: 0.84rem;
  }

  .hero-actions {
    display: flex;
  }

  .button-large {
    width: auto;
  }

  .hero-actions .text-link {
    justify-content: flex-start;
  }

  .capture-inputs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-list {
    grid-template-columns: repeat(3, max-content);
    gap: 16px;
  }

  .product-stage {
    min-height: 660px;
  }

  .phone-preview {
    width: 275px;
  }

  .phone-screen {
    min-height: 530px;
  }

  .product-preview {
    top: 40px;
    right: -80px;
    left: 110px;
  }

  .three-grid,
  .steps-grid,
  .format-grid,
  .beta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card:last-child:nth-child(odd),
  .step-card:last-child,
  .beta-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .outcome-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 28px;
  }

  .privacy-panel {
    grid-template-columns: auto 1fr;
    padding: 45px;
  }

  .fit-column {
    padding: 46px 40px;
  }

  .form-meta {
    grid-template-columns: repeat(3, 1fr);
  }

  .form-meta > span {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    border-bottom: 0;
  }

  .progress-wrap {
    padding: 26px 32px 0;
  }

  #beta-form {
    padding: 34px 32px 30px;
  }

  .is-enhanced .form-step {
    min-height: 360px;
  }

  .choices-two,
  .input-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .success-panel {
    padding: 62px 48px;
  }

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

  .footer-links {
    min-width: 240px;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .legal-card,
  .thanks-panel {
    padding: 42px;
  }

  .benefit-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-strip-grid > div:nth-child(odd) {
    padding-right: 22px;
    border-right: 1px solid rgba(91, 129, 166, 0.13);
  }

  .benefit-strip-grid > div:nth-child(even) {
    padding-left: 22px;
  }

  .benefit-strip-grid > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .proof-heading {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
  }

  .proof-heading .button {
    width: auto;
  }

  .proof-grid {
    grid-template-columns: 0.88fr 1.12fr;
  }

  .beta-callout {
    grid-template-columns: 1fr auto;
  }

  .proof-media {
    min-height: 390px;
  }

  .desktop-media {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

@media (min-width: 900px) {
  .section {
    padding: 96px 0;
  }

  .header-inner {
    min-height: 78px;
  }

  .desktop-nav {
    display: flex;
    gap: 30px;
  }

  .desktop-nav a {
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
  }

  .desktop-nav a:hover {
    color: var(--white);
  }

  .hero {
    min-height: calc(100svh - 78px);
    padding: 72px 0 86px;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(4rem, 6.2vw, 5.25rem);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
    gap: 20px;
  }

  .capture-heading {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 70px;
    align-items: end;
  }

  .capture-flow {
    grid-template-columns: minmax(0, 0.92fr) 112px minmax(360px, 1.08fr);
    gap: 20px;
  }

  .flow-engine {
    min-height: 100%;
  }

  .flow-line {
    top: 50%;
    right: 0;
    bottom: auto;
    left: 0;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 160, 0.7) 42%, rgba(0, 229, 160, 0.7) 58%, transparent);
  }

  .flow-line::after {
    top: 50%;
    left: 4%;
    transform: translate(-50%, -50%);
    animation-name: flow-right;
  }

  .flow-arrow {
    top: 50%;
    right: 0;
    bottom: auto;
    left: auto;
    transform: translateY(-50%);
  }

  .flow-actions {
    top: calc(50% + 43px);
    width: auto;
    flex-direction: column;
    align-items: center;
  }

  .product-stage {
    min-height: 610px;
    margin: 0;
  }

  .product-preview {
    top: 58px;
    right: -85px;
    left: 130px;
  }

  .phone-preview {
    bottom: 8px;
    left: 22px;
  }

  .three-grid,
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-card:last-child:nth-child(odd),
  .step-card:last-child,
  .beta-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .split-heading {
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    gap: 70px;
  }

  .outcome-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .format-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

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

  .how-experience {
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
    gap: 72px;
  }

  .fit-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .fit-no {
    border-top: 0;
    border-left: 1px solid var(--border-soft);
  }

  .form-layout {
    grid-template-columns: minmax(320px, 0.72fr) minmax(520px, 1.28fr);
    gap: 70px;
    align-items: start;
  }

  .form-intro {
    position: sticky;
    top: 120px;
  }

  .faq-grid {
    grid-template-columns: 0.68fr 1.32fr;
    gap: 75px;
  }

  .benefit-strip-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .benefit-strip-grid > div,
  .benefit-strip-grid > div:nth-child(odd),
  .benefit-strip-grid > div:nth-child(even) {
    padding: 25px 22px;
    border-right: 1px solid rgba(91, 129, 166, 0.13);
    border-bottom: 0;
  }

  .benefit-strip-grid > div:first-child {
    padding-left: 0;
  }

  .benefit-strip-grid > div:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .proof-card {
    display: grid;
    grid-template-rows: 440px 1fr;
  }

  .proof-media {
    min-height: 440px;
  }

  .proof-copy {
    padding: 34px;
  }

}

@media (min-width: 1180px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(570px, 1.15fr);
    gap: 40px;
  }

  .product-preview {
    right: -60px;
    left: 155px;
  }

  .phone-preview {
    width: 290px;
  }
}

@media (max-width: 390px) {
  .brand-copy small {
    display: none;
  }

  .button-small {
    padding-inline: 11px;
  }

  .hero-channels {
    gap: 6px;
  }

  .hero-channels li {
    padding-inline: 9px;
    font-size: 0.67rem;
  }

  .capture-card {
    padding: 15px;
  }

  .vision-outcomes > span {
    padding-inline: 7px;
  }

  .product-stage {
    min-height: 480px;
  }

  .phone-preview {
    width: 215px;
  }

  .phone-screen {
    min-height: 415px;
  }

  .product-preview {
    right: -110px;
  }

  .window-bar {
    height: 31px;
  }

  .form-step legend {
    font-size: 1.28rem;
  }

  .step-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

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

  .back-step {
    text-align: left;
  }

  .submit-note {
    text-align: left;
  }
}

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

  .flow-line::after {
    display: none;
  }
}

/* FINAL MOBILE HERO HARDENING — 2026-08-11
   Mobile is a normal document flow. Desktop overlap composition starts only at >=900px. */
@media (max-width: 899px) {
  .hero {
    min-height: 0;
    overflow: hidden;
    padding: 52px 0 64px;
  }

  .hero-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 42px !important;
  }

  .hero-copy {
    order: 1 !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .hero-input-floats {
    display: none;
  }

  .hero-copy h1,
  .hero-copy p,
  .hero-actions,
  .trust-list {
    max-width: 100%;
  }

  .product-stage {
    order: 2 !important;
    position: relative !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
  }

  .product-preview {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    transform: none !important;
  }


  .phone-preview {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    z-index: 3;
    width: min(272px, 78vw) !important;
    max-width: 100% !important;
    margin: 34px auto 0 !important;
  }

  .product-stage::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: min(420px, 96vw);
    height: 300px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(0, 229, 160, 0.16), transparent 72%);
    pointer-events: none;
  }

  .demo-note {
    position: relative !important;
    inset: auto !important;
    margin: 14px 0 0 !important;
    max-width: 100%;
  }
}

@media (max-width: 390px) {
  .hero {
    padding-top: 44px;
  }

  .hero-grid {
    gap: 36px !important;
  }

  .product-preview {
    right: auto !important;
    left: auto !important;
  }

  .phone-preview {
    width: min(248px, 76vw) !important;
    margin-top: 30px !important;
  }
}


/* === Reveal on scroll (premium, discreto) === */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.55s ease-out, transform 0.55s ease-out;
  }
  .reveal.reveal-in {
    opacity: 1;
    transform: none;
  }
}


/* === Sección vídeo comercial === */
.video-section .section-head {
  margin-bottom: 30px;
}

.video-frame {
  width: min(100%, 360px);
  margin-inline: auto;
  border-radius: 26px;
  padding: 8px;
  background: #10202d;
  border: 1px solid rgba(64, 98, 128, 0.45);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 90px rgba(0, 229, 160, 0.07);
}

.video-frame video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 19px;
  background: #05121f;
}

@media (min-width: 900px) {
  .video-frame {
    width: 380px;
  }
}


/* === Consentimiento de medición Meta === */
.meta-consent {
  position: fixed;
  z-index: 10000;
  left: max(14px, env(safe-area-inset-left));
  right: max(14px, env(safe-area-inset-right));
  bottom: max(14px, env(safe-area-inset-bottom));
  width: min(760px, calc(100% - 28px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(32, 184, 180, 0.35);
  border-radius: 18px;
  background: rgba(2, 15, 30, 0.98);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  color: #F7F9FC;
}
.meta-consent-copy { flex: 1 1 auto; min-width: 0; }
.meta-consent-copy strong { display: block; margin-bottom: 5px; font-size: 0.95rem; }
.meta-consent-copy p { margin: 0; color: #cbd6e2; font-size: 0.84rem; line-height: 1.45; }
.meta-consent-copy a { color: #20B8B4; }
.meta-consent-actions { display: flex; flex: 0 0 auto; gap: 10px; }
.meta-consent-button { min-width: 104px; padding: 10px 14px; font-size: 0.84rem; }
@media (max-width: 640px) {
  .meta-consent { align-items: stretch; flex-direction: column; gap: 14px; padding: 16px; }
  .meta-consent-actions { width: 100%; }
  .meta-consent-button { flex: 1 1 50%; }
}
