:root {
  --bg: #ffffff;
  --bg-soft: #f4f6f7;
  --ink: #121417;
  --muted: #5b636c;
  --faint: #8a929b;
  --line: #e7ecee;
  --brand: #159A91;
  --brand-hover: #0e7d76;
  --brand-soft: #e6f6f4;
  --danger: #dc2626;
  --ok: #159A91;
  --ok-soft: #e6f6f4;
  --success: #159A91;
  --success-soft: #e6f6f4;
  --err-soft: #fef3f2;
  --device: #1a1d21;
  --charcoal: #12161d;
  --header: 72px;
  --wrap: 1180px;
  --font: Inter, "Segoe UI", system-ui, -apple-system, sans-serif;
  --ease: 180ms ease;
  --radius-pill: 999px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--brand-hover); }
.wrap { width: min(var(--wrap), calc(100% - 48px)); margin: 0 auto; }

.eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}
.eyebrow--on-dark { color: var(--brand); }
h1, h2, h3 { margin: 0; letter-spacing: -0.04em; line-height: 1.1; font-weight: 700; }
h1 { font-size: clamp(40px, 5.2vw, 62px); }
h2 { font-size: clamp(28px, 3.2vw, 42px); }
h3 { font-size: 17px; letter-spacing: -0.02em; }
.lead { margin: 18px 0 0; font-size: 18px; line-height: 1.55; color: var(--muted); max-width: 36rem; font-weight: 400; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  height: var(--header);
  background: rgba(255,255,255,0.86);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  box-shadow: none;
}
.site-header.is-scrolled {
  border-bottom-color: rgba(12, 18, 34, 0.05);
  box-shadow: 0 1px 0 rgba(12, 18, 34, 0.03);
}
.site-header .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink); font-weight: 600; font-size: 15px; letter-spacing: -0.02em;
}
.brand img { width: 28px; height: 28px; }
.brand span { color: var(--brand); font-weight: 600; }
nav.menu { display: flex; gap: 28px; align-items: center; flex: 1; justify-content: center; }
nav.menu a { color: var(--muted); font-size: 14px; font-weight: 500; }
nav.menu a:hover { color: var(--ink); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta .btn { white-space: nowrap; }
.menu-toggle {
  display: none; width: 40px; height: 40px; border: 0;
  border-radius: 8px; background: transparent; cursor: pointer;
  padding: 11px 10px; flex-direction: column; justify-content: center; gap: 5px;
}
.menu-toggle span {
  display: block; height: 1.5px; width: 18px; background: var(--ink); border-radius: 1px;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 0 20px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 14px; border: 1px solid transparent; cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease), opacity var(--ease);
}
.btn-icon { width: 16px; height: 16px; flex-shrink: 0; }
.btn-arrow { width: 15px; height: 15px; flex-shrink: 0; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-hover); color: #fff; }
.btn-ghost { background: #fff; color: var(--ink); border-color: #d7dee3; }
.btn-ghost:hover { border-color: #c5ced4; color: var(--ink); background: #fff; }
.btn-lg { min-height: 52px; padding: 0 22px; }
.btn:focus-visible, .menu-toggle:focus-visible, a:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.hero { padding: 88px 0 80px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(368px, 575px);
  gap: 56px;
  align-items: center;
}
.hero h1 .accent { color: var(--brand); }
.hero-badge {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 12px;
  font-weight: 600;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.os-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 32px 0 0;
  font-size: 13px;
  color: var(--faint);
}
.os-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.os-chip svg { width: 16px; height: 16px; display: block; flex-shrink: 0; }
a.os-chip:hover { color: var(--ink); border-color: #c5ced4; }

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.hero-float {
  width: 90%;
  max-width: 538px;
  animation: hero-float 5.6s ease-in-out infinite;
  will-change: transform;
}
.hero-shot {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 48px rgba(12, 18, 34, 0.1));
}
@keyframes hero-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -12px, 0); }
}
.product-shot-wrap { min-width: 0; }
.product-shot {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.refs-layout--media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 480px);
  gap: 56px;
  align-items: center;
}
.video-frame {
  position: relative;
  width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #121417;
  box-shadow: 0 12px 28px rgba(12, 18, 34, 0.08);
}
.video-frame iframe,
.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}
#referencias .lead { margin-bottom: 0; }
.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 64px;
  align-items: start;
}
.problem-grid h2 { max-width: 16ch; }
.problem-pains {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.problem-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 10px 28px rgba(18, 20, 23, 0.04);
}
.problem-card h3 { margin: 12px 0 8px; font-size: 16px; }
.problem-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

.solution { overflow-x: clip; }
.solution-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.98fr);
  gap: 56px 64px;
  align-items: center;
}
.solution-copy h2 { max-width: 14ch; }
.solution-copy .accent { color: var(--brand); }
.solution-copy .lead { max-width: 34rem; }
.solution-mods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 32px;
}
@media (min-width: 1180px) {
  .solution-mods { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}
.solution-mod {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 92px;
  padding: 14px 8px 12px;
  background: #fff;
  border: 1px solid #edf1f3;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(18, 20, 23, 0.035);
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.solution-mod:hover {
  transform: translateY(-3px);
  border-color: #d7ebe8;
  box-shadow: 0 12px 24px rgba(21, 154, 145, 0.08);
}
.solution-mod-ico {
  width: 28px;
  height: 28px;
  color: var(--brand);
}
.solution-mod-ico svg { width: 100%; height: 100%; display: block; }
.solution-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 0;
  padding: 14px 16px;
  background: var(--brand-soft);
  border-radius: 16px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}
.solution-banner-ico {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--brand);
}
.solution-banner-ico svg { width: 100%; height: 100%; display: block; }
.solution-visual {
  position: relative;
  min-width: 0;
  isolation: isolate;
}
.solution-visual img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: 42% 18%;
  border-radius: 24px;
  display: block;
  background: #eef5f4;
}
.sol-stack {
  position: absolute;
  top: 18px;
  right: 14px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 152px;
}
.sol-float {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  background: #fff;
  border: 1px solid #edf1f3;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(18, 20, 23, 0.07);
  padding: 10px 12px;
  animation: sol-float 5.8s ease-in-out infinite;
}
.sol-float span {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
}
.sol-float strong {
  display: block;
  margin: 2px 0 0;
  font-size: 15px;
  letter-spacing: -0.04em;
  color: var(--brand);
}
.sol-float em {
  display: inline-block;
  margin-top: 4px;
  padding: 1px 6px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
}
.sol-float small {
  display: block;
  margin-top: 2px;
  color: var(--faint);
  font-size: 10px;
}
.sol-spark {
  display: block;
  width: 100%;
  height: 18px;
  margin-top: 6px;
  color: var(--brand);
}
.sol-float--spend { animation-delay: 0.45s; }
.sol-float--spend strong { color: var(--ink); font-size: 14px; }
.sol-spend-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.sol-donut {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: conic-gradient(#159A91 0 32%, #3b82f6 32% 52%, #f59e0b 52% 74%, #dbe4ea 74% 100%);
  mask: radial-gradient(circle, transparent 52%, #000 53%);
  -webkit-mask: radial-gradient(circle, transparent 52%, #000 53%);
}
.sol-float--spend ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
  font-size: 10px;
  color: var(--muted);
}
.sol-float--spend li { display: flex; align-items: center; gap: 5px; }
.sol-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}
.sol-dot--a { background: #159A91; }
.sol-dot--b { background: #3b82f6; }
.sol-dot--c { background: #f59e0b; }
.sol-dot--d { background: #dbe4ea; }
.sol-float--goals { animation-delay: 0.9s; }
.sol-goal { margin-top: 8px; }
.sol-goal div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
  font-size: 11px;
}
.sol-goal b { font-weight: 600; color: var(--ink); }
.sol-goal em { margin: 0; padding: 0; background: none; color: var(--muted); font-weight: 600; }
.sol-float--safe {
  position: absolute;
  left: 14px;
  bottom: 16px;
  width: auto;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  animation-delay: 1.2s;
}
.sol-float--safe .solution-banner-ico { width: 18px; height: 18px; }
@keyframes sol-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -4px, 0); }
}
.users-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.user-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.user-stars {
  display: flex;
  gap: 3px;
  margin: 14px 0 12px;
  color: var(--brand);
}
.user-stars svg { width: 14px; height: 14px; display: block; }
.user-card p { margin: 0 0 16px; color: var(--ink); }
.user-card cite { font-style: normal; font-weight: 600; display: block; }
.user-card small { color: var(--muted); }
.user-card--slot {
  align-items: flex-start;
  background: var(--bg-soft);
}
.user-slot {
  margin: 0;
  color: var(--faint);
  font-size: 14px;
}
.quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}
.quote-card p { margin: 0 0 16px; color: var(--ink); }
.quote-card cite { font-style: normal; font-weight: 600; display: block; }
.quote-card small { color: var(--muted); }

.mock-stack {
  position: relative;
  min-height: 520px;
  width: 100%;
}
.mock-stack__back {
  position: absolute;
  right: 8px;
  top: 48px;
  z-index: 1;
  transform: scale(0.84) rotate(7deg);
  transform-origin: top right;
  filter: saturate(0.92);
}
.mock-stack__front {
  position: relative;
  z-index: 2;
  margin-left: 8%;
  filter: drop-shadow(0 24px 48px rgba(12, 18, 34, 0.12));
}
.mock-stack .device { width: 248px; }

.section { padding: 112px 0; }
.section--soft { background: var(--bg-soft); }
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 380px);
  gap: 80px;
  align-items: center;
}
.split--rev { grid-template-columns: minmax(240px, 380px) minmax(0, 1fr); }
.split-copy .lead { margin-bottom: 0; }
.quiet-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}
.quiet-list li {
  position: relative;
  padding: 8px 0 8px 18px;
  color: var(--muted);
  font-size: 15px;
}
.quiet-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 16px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand);
}

.system {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 28px;
  margin-top: 64px;
}
.system article { padding: 0; background: none; border: 0; box-shadow: none; }
.system h3 { margin: 14px 0 8px; font-size: 18px; }
.system p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.system-mark {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 36px;
  height: 36px;
  color: var(--brand);
}
.system-mark svg { width: 32px; height: 32px; display: block; }

.voice {
  background: var(--bg);
  padding: 120px 0;
}
.voice-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 400px);
  gap: 72px 80px;
  align-items: start;
}
.voice-copy h2 { max-width: 16ch; }
.voice-copy .lead { max-width: 34rem; }
.voice-copy .accent { color: var(--brand); }
.voice-note {
  margin-top: 16px;
  color: var(--faint);
  font-size: 13px;
  line-height: 1.55;
  max-width: 34rem;
}
.voice-mic {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  margin-top: 48px;
  min-height: 168px;
}
.voice-mic-core {
  position: relative;
  width: 168px;
  height: 168px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
}
.voice-ring {
  position: absolute;
  inset: 28px;
  border-radius: 50%;
  border: 1px solid rgba(21, 154, 145, 0.18);
  pointer-events: none;
}
.voice-ring--mid { inset: 14px; border-color: rgba(21, 154, 145, 0.12); }
.voice-ring--out { inset: 0; border-color: rgba(21, 154, 145, 0.08); }
.voice-mic-btn {
  position: relative;
  z-index: 1;
  width: 124px;
  height: 124px;
  border: 0;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(21, 154, 145, 0.22);
  transition: transform 280ms ease, box-shadow 280ms ease, background 200ms ease;
}
.voice-mic-btn svg { width: 32px; height: 32px; display: block; }
.voice-mic-btn:hover {
  transform: scale(1.035);
  box-shadow: 0 16px 34px rgba(21, 154, 145, 0.28);
  background: var(--brand);
}
.voice-mic-btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 6px;
}
.voice-mic.is-recording .voice-mic-btn {
  animation: voice-btn-pulse 1.6s ease-in-out infinite;
}
.voice-mic.is-recording .voice-ring {
  animation: voice-ring-out 1.8s ease-out infinite;
}
.voice-mic.is-recording .voice-ring--mid { animation-delay: .18s; }
.voice-mic.is-recording .voice-ring--out { animation-delay: .36s; }
.voice-mic.is-processing .voice-mic-btn {
  opacity: 0.88;
}
.voice-mic.is-error .voice-mic-btn {
  background: var(--ink);
  box-shadow: 0 10px 24px rgba(18, 20, 23, 0.18);
}
.voice-wave {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 48px;
}
.voice-wave i {
  display: block;
  width: 2px;
  height: 10px;
  border-radius: 99px;
  background: rgba(21, 154, 145, 0.22);
  transform-origin: center;
}
.voice-wave i:nth-child(odd) { height: 16px; }
.voice-wave i:nth-child(3n) { height: 22px; }
.voice-wave i:nth-child(5) { height: 28px; }
.voice-mic.is-recording .voice-wave i {
  animation: voice-bar 900ms ease-in-out infinite;
}
.voice-mic.is-recording .voice-wave i:nth-child(2) { animation-delay: 80ms; }
.voice-mic.is-recording .voice-wave i:nth-child(3) { animation-delay: 140ms; }
.voice-mic.is-recording .voice-wave i:nth-child(4) { animation-delay: 40ms; }
.voice-mic.is-recording .voice-wave i:nth-child(5) { animation-delay: 200ms; }
.voice-mic.is-recording .voice-wave i:nth-child(6) { animation-delay: 110ms; }
.voice-mic.is-recording .voice-wave i:nth-child(7) { animation-delay: 60ms; }
.voice-mic.is-recording .voice-wave i:nth-child(8) { animation-delay: 170ms; }
.voice-mic.is-recording .voice-wave i:nth-child(9) { animation-delay: 90ms; }
.voice-mic-status {
  margin: 10px 0 0;
  min-height: 1.4em;
  font-size: 13px;
  color: var(--faint);
  letter-spacing: 0.01em;
}
.voice-mic.is-recording + .voice-mic-status,
.voice-copy:has(.voice-mic.is-recording) .voice-mic-status { color: var(--ink); }
.voice-mic.is-error + .voice-mic-status,
.voice-copy:has(.voice-mic.is-error) .voice-mic-status { color: var(--danger); }
.voice-cards {
  display: grid;
  gap: 14px;
  padding-top: 8px;
}
.voice-card {
  padding: 24px 26px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(18, 20, 23, 0.07);
  box-shadow: 0 8px 24px rgba(18, 22, 28, 0.035);
  transition: transform 400ms ease, box-shadow 400ms ease;
}
.voice-card.reveal { transition-delay: var(--voice-delay, 0ms); }
.voice-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
}
.voice-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--brand-soft);
  color: var(--brand);
}
.voice-card-icon svg { width: 16px; height: 16px; display: block; }
.voice-card--gastos .voice-card-icon {
  background: var(--err-soft);
  color: var(--danger);
}
.voice-card--deudas .voice-card-icon {
  background: #eef2f6;
  color: var(--muted);
}
.voice-card h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.voice-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}
.voice-card blockquote {
  margin: 14px 0 0;
  padding: 10px 12px 10px 14px;
  border-radius: 999px;
  background: #f4f6f8;
  color: var(--ink);
  font-size: 13px;
  font-style: italic;
  line-height: 1.4;
  border: 0;
  border-left: 2px solid var(--brand);
  box-shadow: none;
}
@keyframes voice-btn-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}
@keyframes voice-ring-out {
  0% { opacity: 0.7; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.12); }
}
@keyframes voice-bar {
  0%, 100% { transform: scaleY(0.45); opacity: 0.35; }
  50% { transform: scaleY(1); opacity: 0.85; }
}

.module-label {
  margin: 28px 0 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--faint);
  letter-spacing: 0.04em;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 24px;
  margin-top: 56px;
  text-align: center;
}
.gallery .device { margin: 0 auto; width: 210px; }
.gallery figcaption {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}
.gallery figure { margin: 0; }

.flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.flow-step {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--ink);
  padding: 10px 4px;
}
.flow-step.is-end { color: var(--brand); }
.flow-sep { color: var(--faint); font-size: 16px; opacity: 0.6; }

.license-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 400px) minmax(0, 0.8fr);
  gap: 48px 40px;
  align-items: start;
}
.trust-line {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
}
.trust-line li { position: relative; padding-left: 36px; }
.trust-line li::before {
  content: "";
  position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--brand-soft);
  box-shadow: inset 0 0 0 1.5px var(--brand);
}
.pay-side { padding-top: 8px; }
.pay-marks {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-top: 8px;
  color: var(--ink);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.pay-marks strong { font-weight: 700; }
.pay-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.pay-brands span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.mod-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}
.mod-row li {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}
.order-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
  margin: 24px 0 8px;
  padding: 0;
}
.order-meta div { margin: 0; }
.order-meta dt {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.order-meta dd {
  margin: 2px 0 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.form--wide { max-width: 640px; }
.confirm-actions { display: grid; gap: 10px; margin-top: 8px; }
.admin-nav-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-right: 8px;
  line-height: 1.15;
}
.admin-nav-brand small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-sheet {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 32px 32px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(18, 20, 23, 0.06);
}
.product-sheet .badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}
.product-sheet h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -0.03em;
  text-transform: none;
}
.price { font-size: 40px; font-weight: 600; letter-spacing: -0.04em; line-height: 1; margin: 4px 0 6px; }
.price-note { margin: 0 0 22px; color: var(--faint); font-size: 14px; }
.checks { list-style: none; padding: 0; margin: 0 0 24px; }
.checks li { padding: 7px 0 7px 22px; font-size: 14px; color: var(--muted); position: relative; }
.checks li::before { content: ""; position: absolute; left: 0; top: 13px; width: 8px; height: 4px; border-left: 1.6px solid var(--brand); border-bottom: 1.6px solid var(--brand); transform: rotate(-45deg); }
.checks--aside { margin: 28px 0 0; }
.checks--aside li { font-size: 16px; padding: 10px 0 10px 24px; color: var(--ink); }
.fine { font-size: 12px; color: var(--faint); margin: 16px 0 0; text-align: left; }
.license-fine {
  margin: 16px 0 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--brand);
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 64px;
  align-items: center;
}
.ui-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ui-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 16px 14px;
  box-shadow: 0 10px 28px rgba(18, 20, 23, 0.05);
  min-height: 210px;
}
.ui-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 600;
}
.ui-card header b {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: grid; place-items: center;
  font-size: 15px; font-weight: 500; line-height: 1;
}
.ui-donut-wrap { position: relative; width: 108px; height: 108px; margin: 8px auto 12px; }
.ui-donut {
  width: 100%; height: 100%; border-radius: 50%;
  background: conic-gradient(#159A91 0 28%, #0f766e 28% 62%, #94a3b8 62% 78%, #dbe4ea 78% 100%);
  mask: radial-gradient(circle, transparent 52%, #000 53%);
  -webkit-mask: radial-gradient(circle, transparent 52%, #000 53%);
}
.ui-donut-label {
  position: absolute; inset: 0;
  display: grid; place-content: center; text-align: center; line-height: 1.15;
}
.ui-donut-label small { font-size: 10px; color: var(--faint); }
.ui-donut-label strong { font-size: 14px; }
.ui-legend { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.ui-legend li { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); }
.ui-legend i { width: 8px; height: 8px; border-radius: 50%; }
.ui-goal { margin-bottom: 16px; }
.ui-goal div { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 8px; }
.ui-goal span { color: var(--muted); }
.ui-goal i, .diff-bar {
  display: block; height: 7px; background: #e8eef0; border-radius: 99px; overflow: hidden;
}
.ui-goal b, .diff-bar b { display: block; height: 100%; background: var(--brand); border-radius: 99px; }
.ui-funds { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.ui-funds li {
  display: flex; justify-content: space-between; gap: 8px;
  padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 13px;
}
.ui-funds li:last-child { border-bottom: 0; }
.ui-funds span { color: var(--muted); }
.ui-net { margin: 0 0 8px; font-size: 22px; font-weight: 700; letter-spacing: -0.04em; }
.ui-line { width: 100%; height: 86px; display: block; }

.diff {
  background: var(--charcoal);
  color: #d5dae0;
  padding: 0;
}
.diff-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 1.15fr);
  gap: 56px;
  align-items: center;
  padding: 88px 0;
}
.diff h2 { color: #fff; max-width: 16ch; }
.diff .accent { color: var(--brand); }
.diff-copy p {
  margin: 20px 0 0;
  max-width: 32rem;
  color: #9aa3ad;
  font-size: 17px;
  line-height: 1.55;
}
.diff-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  font-size: 13px;
  color: #c5cbd3;
}
.diff-pillars li { position: relative; padding-left: 16px; }
.diff-pillars li::before {
  content: "";
  position: absolute; left: 0; top: 6px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand);
}
.diff-visual { position: relative; --diff-accent: var(--brand); --diff-card-bg: #fff; }
.diff-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: 72% 18%;
  border-radius: 8px;
}
.diff-card {
  position: absolute;
  min-width: 168px;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--diff-card-bg);
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--ink);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}
.diff-card span { display: block; font-size: 11px; color: var(--muted); }
.diff-card strong { display: block; margin: 4px 0 8px; font-size: 20px; letter-spacing: -0.03em; color: var(--ink); }
.diff-card em { font-style: normal; font-size: 12px; font-weight: 600; color: var(--diff-accent); }
.diff-card--goal { left: -18px; top: 16%; }
.diff-card--fund { right: 10px; bottom: 18%; }
.diff-card--fund strong { color: var(--ink); margin-bottom: 0; }
.diff-card--ok {
  left: 18px;
  bottom: 22px;
  min-width: 0;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--diff-accent);
  display: flex;
  align-items: center;
  gap: 8px;
}
.diff-card--ok::before {
  content: "";
  width: 8px; height: 5px;
  border-left: 1.8px solid var(--diff-accent);
  border-bottom: 1.8px solid var(--diff-accent);
  transform: rotate(-45deg);
}
.diff-visual .diff-bar b { background: var(--diff-accent); }

.trust.section {
  padding: 0;
  overflow: hidden;
  background: var(--charcoal);
  color: #d5dae0;
}
.trust-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 28px 40px;
  align-items: stretch;
  min-height: 0;
}
.trust-copy {
  padding: 36px 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.trust-title {
  text-align: left;
  font-weight: 700;
  color: #fff;
  max-width: 22ch;
}
.trust-title .accent { color: var(--brand); }
.trust-lead {
  margin: 18px 0 0;
  max-width: 34rem;
  color: #9aa3ad;
  font-size: 16px;
  line-height: 1.55;
}
.trust-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px 12px;
  margin-top: 24px;
}
.trust-benefits article { min-width: 0; }
.trust-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(21, 154, 145, 0.4);
  background: rgba(21, 154, 145, 0.12);
  color: var(--brand);
}
.trust-ico svg { width: 18px; height: 18px; display: block; }
.trust-benefits h3 {
  margin: 12px 0 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}
.trust-benefits p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: #9aa3ad;
}
.trust-visual {
  position: relative;
  min-height: 0;
  overflow: hidden;
  align-self: end;
  --trust-accent: var(--brand);
  --trust-card-bg: #12161d;
}
.trust-visual img {
  position: relative;
  z-index: 0;
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 420px;
  margin-left: auto;
  object-fit: contain;
  object-position: right bottom;
}
.trust-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, var(--charcoal) 0%, rgba(18, 22, 29, 0.55) 18%, transparent 42%);
}
.trust-growth {
  position: absolute;
  inset: 8% 6% 18% 8%;
  z-index: 1;
  color: var(--trust-accent);
  opacity: 0.85;
  filter: drop-shadow(0 0 8px var(--trust-accent));
  pointer-events: none;
}
.trust-float {
  position: absolute;
  z-index: 3;
  min-width: 176px;
  max-width: 228px;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--trust-card-bg);
  background: color-mix(in srgb, var(--trust-card-bg) 90%, transparent);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fff;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}
.trust-float span { display: block; font-size: 11px; color: #9aa3ad; }
.trust-float strong { display: block; margin: 4px 0 8px; font-size: 20px; letter-spacing: -0.03em; color: #fff; }
.trust-float em { font-style: normal; font-size: 12px; font-weight: 600; color: var(--trust-accent); }
.trust-float .diff-bar { background: rgba(255, 255, 255, 0.12); }
.trust-float .diff-bar b { background: var(--trust-accent); }
.trust-float--goal { left: 8px; top: 14%; }
.trust-float--fund { right: 14px; top: 46%; }
.trust-float--ok {
  left: 18px;
  bottom: 28px;
  min-width: 0;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--trust-accent);
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-float--ok::before {
  content: "";
  width: 8px; height: 5px;
  border-left: 1.8px solid var(--trust-accent);
  border-bottom: 1.8px solid var(--trust-accent);
  transform: rotate(-45deg);
}

.faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  margin: 48px 0 0;
}
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
@media (min-width: 981px) {
  .faq details:nth-last-child(2) { border-bottom: 1px solid var(--line); }
}
.faq summary {
  cursor: pointer; font-weight: 500; padding: 22px 0;
  list-style: none; font-size: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; float: right; color: var(--faint); font-weight: 400;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0 0 22px; color: var(--muted); max-width: 40rem; }

.cta-final {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 28px 0;
}
.cta-final .wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.cta-final h2 { font-size: clamp(22px, 2.4vw, 28px); }
.cta-final .lead { margin-top: 6px; font-size: 15px; max-width: none; }
.cta-final-logo { pointer-events: none; }

.site-footer {
  background: #0c1222;
  color: #c5cbd3;
  padding: 64px 0 28px;
}
.site-footer .brand { color: #fff; }
.site-footer .foot-tagline {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: #8b939c;
  max-width: 16rem;
}
.foot-grid { display: grid; grid-template-columns: 1.3fr repeat(4, 1fr); gap: 32px; }
.site-footer h4 {
  margin: 0 0 14px; font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: #6b7380; font-weight: 600;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 8px 0; }
.site-footer a { color: #c5cbd3; font-size: 14px; }
.site-footer a:hover { color: #fff; }
.foot-bottom {
  margin-top: 48px; padding-top: 20px;
  border-top: 1px solid #1c2433;
  color: #6b7380; font-size: 13px;
  display: flex; justify-content: center; text-align: center; gap: 12px; flex-wrap: wrap;
}
.foot-bottom a, .pudmark { color: var(--brand); font-style: normal; font-weight: 600; }
.foot-bottom a:hover { color: #7fd4cc; }

.flash { border-radius: 10px; padding: 12px 14px; margin: 16px 0; font-size: 14px; }
.flash-ok { background: var(--ok-soft); color: var(--ok); }
.flash-error { background: var(--err-soft); color: var(--danger); }

.page { padding: 48px 0 96px; }
.form { max-width: 440px; margin: 0 auto; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
}
label { display: block; font-size: 13px; color: var(--muted); margin: 14px 0 6px; }
input:not([type="radio"]):not([type="checkbox"]):not([type="hidden"]):not([type="color"]),
textarea, select {
  width: 100%; min-height: 44px; border: 1px solid var(--line); border-radius: 10px;
  padding: 10px 12px; font: inherit; background: #fff; color: var(--ink);
}
input[type="radio"], input[type="checkbox"] {
  width: auto; min-height: 0; margin: 0; flex-shrink: 0; accent-color: var(--brand);
}
textarea { min-height: 120px; resize: vertical; }
.pay-options { display: grid; gap: 10px; margin: 24px 0; }
.pay-option {
  display: flex; gap: 14px; align-items: center; padding: 14px 16px;
  border: 1px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer;
}
.pay-option:has(input:checked) { border-color: var(--brand); }
.keybox {
  font-family: ui-monospace, Consolas, monospace; background: #0c1222; color: #e7eef7;
  border-radius: 10px; padding: 16px; letter-spacing: 0.04em; word-break: break-all;
}

.admin { max-width: 980px; margin: 0 auto; padding: 24px; }
.admin-nav { display: flex; gap: 16px; align-items: center; margin-bottom: 20px; flex-wrap: wrap; }
.admin-nav a.is-active { color: var(--brand); font-weight: 600; }
.admin-who { margin-left: auto; display: flex; gap: 10px; align-items: center; color: var(--muted); }
.admin-badge {
  display: inline-block; padding: 2px 8px; border-radius: 999px;
  background: var(--brand-soft); color: var(--brand); font-size: 12px; font-weight: 600;
}
.admin-kpis { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: 20px 0 8px; }
.admin-kpi { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; }
.admin-kpi span { display: block; color: var(--muted); font-size: 13px; }
.admin-kpi strong { display: block; margin-top: 4px; font-size: 20px; }
.admin-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.admin-card {
  display: grid; gap: 6px; padding: 16px; border: 1px solid var(--line); border-radius: 14px; background: #fff;
}
.admin-card:hover { border-color: var(--brand); }
.admin-card span { color: var(--muted); font-size: 14px; }
.admin-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 20px 0 16px;
}
.admin-tabs a {
  display: inline-flex; align-items: center;
  min-height: 36px; padding: 0 14px;
  border: 1px solid var(--line); border-radius: 999px;
  font-size: 13px; font-weight: 500; color: var(--muted); background: #fff;
}
.admin-tabs a:hover { color: var(--ink); border-color: #d5dbe3; }
.admin-tabs a.is-active {
  background: var(--brand); color: #fff; border-color: var(--brand);
}
.admin-tabs a.is-active:hover { color: #fff; }
.admin-site-meta {
  display: flex; flex-wrap: wrap; gap: 12px 20px;
  align-items: center; margin: 0 0 16px;
  color: var(--muted); font-size: 13px;
}
.admin-site-meta a { color: var(--brand); font-weight: 600; }
.admin-preview {
  width: 160px; height: 160px; object-fit: cover;
  border-radius: 12px; border: 1px solid var(--line);
  margin: 0 0 10px; background: #fff;
}
.admin-color {
  width: 52px;
  height: 36px;
  padding: 2px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}
.admin-site-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; margin-top: 20px;
}
@media (max-width: 700px) {
  .admin-kpis { grid-template-columns: 1fr; }
}
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th, td { text-align: left; padding: 10px 8px; border-bottom: 1px solid var(--line); vertical-align: top; }

.device { width: 250px; }
.device-bezel {
  background: var(--device);
  border-radius: 36px;
  padding: 10px;
  box-shadow: 0 18px 40px rgba(12, 18, 34, 0.08);
}
.device-screen {
  background: #f3f4f6;
  border-radius: 26px;
  min-height: 480px;
  overflow: hidden;
  color: var(--ink);
  font-size: 11px;
}
.mock-status { height: 14px; }
.mock-bar {
  display: grid; grid-template-columns: 22px 1fr 22px;
  align-items: center; padding: 4px 12px 8px;
}
.mock-menu { width: 14px; height: 10px; border-top: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink); box-shadow: 0 4px 0 var(--ink); opacity: 0.7; }
.mock-brand { font-weight: 700; font-size: 13px; text-align: center; }
.mock-brand span { color: var(--brand); }
.mock-spark { position: absolute; right: 10px; bottom: 8px; width: 72px; height: 28px; opacity: 0.35; }
.mock-avatar {
  width: 22px; height: 22px; border-radius: 11px;
  background: var(--brand-soft); color: var(--brand);
  display: grid; place-items: center; font-size: 8px; font-weight: 700;
}
.mock-greet { padding: 0 14px 8px; font-weight: 600; font-size: 13px; }
.mock-cap {
  position: relative;
  margin: 0 12px 10px; padding: 12px 14px; border-radius: 14px; color: #fff;
  background: var(--brand);
}
.mock-cap--quiet { background: #1b1f24; }
.mock-cap span, .mock-cap em { display: block; opacity: 0.85; font-style: normal; font-size: 10px; }
.mock-cap strong { display: block; font-size: 22px; letter-spacing: -0.04em; margin: 4px 0 2px; font-weight: 600; }
.mock-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 0 12px 10px; }
.mock-kpis div { background: #fff; border-radius: 12px; padding: 8px 10px; }
.mock-kpis span { display: block; color: var(--muted); }
.mock-kpis b { display: block; margin-top: 2px; }
.mock-rows { padding: 0 12px 16px; display: grid; gap: 6px; }
.mock-rows div {
  background: #fff; border-radius: 10px; padding: 9px 10px;
  display: flex; justify-content: space-between; gap: 8px;
}
.mock-barline {
  height: 6px; margin: 0 12px 12px; background: #e5e7eb; border-radius: 99px; overflow: hidden;
}
.mock-barline i { display: block; height: 100%; background: var(--brand); border-radius: 99px; }

.reveal { opacity: 0; transform: translateY(8px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .voice-mic-btn,
  .voice-card { transition: none; }
  .voice-mic-btn:hover { transform: none; }
  .voice-mic.is-recording .voice-mic-btn,
  .voice-mic.is-recording .voice-ring,
  .voice-mic.is-recording .voice-wave i { animation: none; }
  .hero-float { animation: none; }
  .trust-growth { filter: none; }
  .sol-float { animation: none; }
  .solution-mod { transition: none; }
  .solution-mod:hover { transform: none; }
}

@media (max-width: 1100px) {
  .license-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
  }
  .pay-side { grid-column: 1 / -1; }
  .trust-benefits { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
  .wrap { width: min(var(--wrap), calc(100% - 32px)); }
  nav.menu { display: none; }
  nav.menu.is-open {
    display: flex; flex-direction: column; position: absolute;
    top: var(--header); left: 0; right: 0;
    background: rgba(255,255,255,0.98); border-bottom: 1px solid var(--line);
    padding: 16px 24px 22px; align-items: flex-start; gap: 14px;
    box-shadow: 0 12px 24px rgba(12, 18, 34, 0.04);
  }
  .menu-toggle { display: flex; }
  .hero-grid, .split, .split--rev, .license-layout, .product-grid, .diff-grid, .voice-grid, .refs-layout--media, .trust-banner, .problem-grid, .solution-grid { grid-template-columns: 1fr; }
  .trust.section { padding: 0; }
  .trust-copy { padding: 28px 0 20px; }
  .trust-title { max-width: none; }
  .trust-benefits { grid-template-columns: 1fr 1fr; margin-top: 22px; }
  .trust-visual { min-height: 0; align-self: center; }
  .trust-visual::before {
    background: linear-gradient(180deg, var(--charcoal) 0%, transparent 36%);
  }
  .trust-visual img { object-position: center bottom; }
  .trust-float { max-width: min(180px, 48vw); }
  .trust-float--goal { left: 12px; top: 12%; }
  .trust-float--fund { right: 12px; top: 44%; }
  .trust-float--ok { left: 14px; bottom: 16px; }
  .refs-layout--media .video-frame { max-width: 36rem; }
  .faq { grid-template-columns: 1fr; }
  .quotes, .users-grid { grid-template-columns: 1fr 1fr; }
  .problem-grid h2 { max-width: none; }
  .cta-final .wrap { display: grid; grid-template-columns: 1fr; align-items: start; }
  .cta-final { padding: 40px 0; }
  .cta-final-logo { display: none; }
  .ui-grid { grid-template-columns: 1fr 1fr; }
  .split--rev .hero-visual { order: 2; }
  .system { grid-template-columns: 1fr 1fr; }
  .gallery, .foot-grid { grid-template-columns: 1fr 1fr; }
  .mock-stack { min-height: 0; padding-top: 12px; }
  .mock-stack__back { display: none; }
  .mock-stack__front { margin: 0; display: flex; justify-content: center; filter: drop-shadow(0 18px 36px rgba(12, 18, 34, 0.1)); }
  .diff { padding: 0; }
  .diff-grid { padding: 64px 0; }
  .diff h2 { max-width: none; }
  .diff-visual img { height: 400px; }
  .diff-card--goal { left: 8px; }
  .section { padding: 80px 0; }
  .header-cta .btn-ghost:not(.header-trial) { display: none; }
  .voice { padding: 88px 0; }
  .voice-grid { gap: 40px; }
  .voice-copy h2 { max-width: none; }
  .voice-mic { justify-content: center; margin-top: 36px; }
  .voice-mic-status { text-align: center; }
  .voice-card { padding: 22px 22px; }
  .voice-card blockquote { border-radius: 14px; }
  .solution-copy h2 { max-width: none; }
  .solution-mods { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .solution-visual { max-width: none; }
  .solution-visual img { height: 420px; object-position: 48% 12%; }
  .sol-float { animation: none; }
  .sol-stack { top: 12px; right: 10px; width: 138px; gap: 12px; }
  .sol-float--safe { left: 10px; bottom: 12px; }
}
@media (max-width: 640px) {
  .system, .gallery, .foot-grid, .problem-pains, .users-grid, .quotes { grid-template-columns: 1fr; }
  .solution-mods { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .solution-visual { overflow: hidden; border-radius: 24px; max-width: none; }
  .solution-visual img { height: 340px; object-position: 50% 10%; }
  .sol-stack { width: 124px; gap: 10px; }
  .sol-float--spend { display: none; }
  .sol-float--balance strong { font-size: 13px; }
  .sol-float--safe { max-width: 48%; }
  .hero { padding: 40px 0 32px; }
  .hero-actions .btn { width: 100%; }
  .device { width: min(250px, 78vw); }
  .ui-grid { grid-template-columns: 1fr; }
  .diff-visual img { height: 300px; }
  .flow { flex-direction: column; gap: 0; }
  .diff-card { min-width: 120px; }
  .product-sheet { padding: 28px 20px; }
  .order-meta { grid-template-columns: 1fr; }
  .voice-mic { gap: 8px; min-height: 148px; }
  .voice-mic-core { width: 148px; height: 148px; }
  .voice-mic-btn { width: 112px; height: 112px; }
  .trust-copy { padding: 24px 0 16px; }
  .trust-benefits { gap: 16px 12px; }
  .trust-benefits h3 { font-size: 12px; }
  .trust-visual { min-height: 0; }
  .trust-visual img { max-height: 320px; }
  .trust-float { min-width: 0; padding: 10px 12px; }
  .trust-float strong { font-size: 15px; margin: 2px 0 6px; }
}
