:root {
  --ink: #07111f;
  --ink-soft: #27344c;
  --paper: #ffffff;
  --muted: #4f5f76;
  --line: #dce5ef;
  --wash: #f4f8fb;
  --cyan: #19f2d3;
  --cyan-2: #36a3ff;
  --violet: #9b5cff;
  --lime: #63ff9c;
  --amber: #f9c84a;
  --rose: #ff4f87;
  --green: #11c56f;
  --shadow: 0 22px 60px rgba(7, 17, 31, .16);
  --r: 8px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: var(--r);
  background: var(--paper);
  color: var(--ink);
  transition: top .2s ease;
}

.skip-link:focus {
  top: 12px;
}

.topbar {
  background: #061321;
  color: #d8fff8;
  font-size: 14px;
  border-bottom: 1px solid rgba(25, 242, 211, .18);
}

.topbar-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}

.topbar a {
  color: #ffffff;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(220, 229, 239, .9);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.brand-logo img {
  width: 42px;
  height: 42px;
}

.brand-logo span {
  display: grid;
  gap: 0;
}

.brand-logo strong {
  font-size: 18px;
  font-weight: 950;
  line-height: 1.05;
}

.brand-logo small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: #061321;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-2) 48%, var(--violet));
  font-weight: 950;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a:hover {
  color: #0a7fa3;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--r);
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  color: #03151b;
  box-shadow: 0 16px 34px rgba(25, 242, 211, .26);
}

.btn-dark {
  background: var(--ink);
  color: var(--paper);
}

.btn-light {
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
  border-color: rgba(255, 255, 255, .72);
}

.btn-wa {
  background: var(--green);
  color: #03170f;
}

.hero {
  position: relative;
  color: var(--paper);
  overflow: hidden;
}

.hero-ai {
  min-height: 640px;
  background:
    linear-gradient(120deg, rgba(7, 17, 31, .98), rgba(9, 24, 43, .94) 48%, rgba(38, 18, 72, .88)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, transparent 1px 78px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.04) 0 1px, transparent 1px 78px);
}

.hero-ai::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 56px;
  background: linear-gradient(180deg, rgba(255,255,255,0), var(--paper));
}

.hero-clean {
  min-height: 560px;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 22%, rgba(25, 242, 211, .28), transparent 30%),
    radial-gradient(circle at 12% 18%, rgba(54, 163, 255, .14), transparent 28%),
    linear-gradient(180deg, #ffffff, #f5fbfc 72%, #ffffff);
}

.hero-clean::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,17,31,.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7,17,31,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.5), transparent 72%);
}

.hero-clean::after {
  height: 52px;
  background: linear-gradient(180deg, rgba(255,255,255,0), #ffffff);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 58px;
}

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  align-items: center;
  gap: 48px;
}

.hero-clean-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .95fr);
  align-items: center;
  gap: 56px;
  min-width: 0;
}

.hero-copy {
  max-width: 780px;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: #007f87;
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(99, 255, 156, .15);
}

.hero h1 {
  margin: 0;
  max-width: 920px;
  font-size: 64px;
  line-height: .98;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-clean h1 {
  max-width: 760px;
  color: var(--ink);
  font-size: 72px;
  line-height: .95;
}

.hero p {
  margin: 22px 0 0;
  max-width: 690px;
  color: #e7f4ff;
  font-size: 21px;
}

.hero-clean p {
  color: #334155;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-proof span,
.tech-strip span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--r);
  background: rgba(255, 255, 255, .1);
  color: #ffffff;
  font-size: 14px;
  font-weight: 850;
}

.hero-clean .hero-proof span {
  border-color: rgba(7, 17, 31, .1);
  background: rgba(255, 255, 255, .82);
  color: var(--ink-soft);
  box-shadow: 0 8px 22px rgba(7, 17, 31, .06);
}

.hero-clean .eyebrow {
  color: #007f87;
}

.btn-outline {
  background: #ffffff;
  color: var(--ink);
  border-color: rgba(7, 17, 31, .16);
  box-shadow: 0 10px 26px rgba(7, 17, 31, .06);
}

.intro-video-shell {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  isolation: isolate;
  perspective: 1200px;
  max-width: 100%;
  min-width: 0;
}

.intro-canvas {
  position: absolute;
  inset: -18px;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: .92;
  pointer-events: none;
}

.intro-video-shell::before {
  content: "";
  position: absolute;
  inset: 34px 12px 20px;
  z-index: 0;
  border-radius: 32px;
  background:
    radial-gradient(circle at 72% 30%, rgba(25, 242, 211, .34), transparent 32%),
    radial-gradient(circle at 28% 72%, rgba(54, 163, 255, .22), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,.56), rgba(255,255,255,.06));
  filter: blur(10px);
}

.ai-video-frame {
  position: relative;
  z-index: 1;
  width: min(690px, 100%);
  max-width: 100%;
  overflow: hidden;
  border: 1px solid rgba(7, 17, 31, .12);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.9), rgba(229,255,251,.76)),
    rgba(255,255,255,.84);
  box-shadow: 0 36px 100px rgba(7, 17, 31, .18);
  backdrop-filter: blur(18px);
  transform: rotateX(2deg) rotateY(-4deg);
  transform-origin: center;
}

.ai-video-topbar {
  display: grid;
  grid-template-columns: 12px 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 50px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(7, 17, 31, .08);
  color: var(--ink);
}

.ai-video-topbar small {
  color: #058b92;
  font-weight: 800;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(25, 242, 211, .48);
  animation: pulseLive 1.8s ease infinite;
}

.ai-video-scene {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 48%, rgba(25, 242, 211, .26), transparent 26%),
    radial-gradient(circle at 78% 20%, rgba(54, 163, 255, .2), transparent 28%),
    linear-gradient(135deg, rgba(246, 253, 255, .96), rgba(232, 255, 251, .84)),
    linear-gradient(90deg, rgba(7,17,31,.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7,17,31,.045) 1px, transparent 1px);
  background-size: auto, auto, auto, 44px 44px, 44px 44px;
}

.ai-video-scene::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 118px;
  background: linear-gradient(180deg, rgba(25, 242, 211, .2), transparent);
  animation: scanLine 5s ease-in-out infinite;
}

.ai-video-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.64), transparent 18%, transparent 82%, rgba(255,255,255,.74));
  pointer-events: none;
}

.agent-node,
.design-board,
.code-console,
.launch-panel,
.video-cursor {
  position: absolute;
  z-index: 2;
}

.agent-node {
  display: grid;
  gap: 4px;
  width: 124px;
  min-height: 116px;
  padding: 14px;
  border: 1px solid rgba(7, 17, 31, .11);
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 20px 44px rgba(7, 17, 31, .12);
  backdrop-filter: blur(14px);
  animation: floatAgent 5.8s ease-in-out infinite;
}

.agent-node span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
  color: #03151b;
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 0 0 8px rgba(25, 242, 211, .12);
}

.agent-node strong {
  font-size: 16px;
  line-height: 1;
}

.agent-node small,
.launch-panel small,
.site-card small {
  color: #058b92;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.agent-design {
  left: 22px;
  top: 54px;
}

.agent-code {
  right: 28px;
  top: 70px;
  animation-delay: .8s;
}

.agent-sales {
  left: 42px;
  bottom: 44px;
  animation-delay: 1.45s;
}

.design-board {
  left: 50%;
  top: 52%;
  width: 380px;
  min-height: 252px;
  padding: 18px;
  border: 1px solid rgba(7, 17, 31, .12);
  border-radius: 22px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 28px 70px rgba(7, 17, 31, .16);
  backdrop-filter: blur(12px);
  transform: translate(-50%, -50%);
  animation: boardPulse 4.8s ease-in-out infinite;
}

.browser-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}

.browser-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6d6d;
}

.browser-dots span:nth-child(2) {
  background: var(--amber);
}

.browser-dots span:nth-child(3) {
  background: var(--cyan);
}

.wire-hero,
.wire-copy,
.wire-grid span {
  border-radius: 10px;
  background: rgba(7, 17, 31, .08);
}

.wire-hero {
  height: 72px;
  background:
    linear-gradient(90deg, rgba(25,242,211,.72), rgba(54,163,255,.62)),
    rgba(7,17,31,.08);
  animation: wireGlow 4.4s ease-in-out infinite;
}

.wire-copy {
  width: 76%;
  height: 14px;
  margin-top: 16px;
}

.wire-copy.short {
  width: 54%;
  margin-top: 9px;
}

.wire-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.wire-grid span {
  height: 52px;
}

.site-card {
  position: absolute;
  right: -28px;
  bottom: -22px;
  width: 210px;
  padding: 14px;
  border: 1px solid rgba(25, 242, 211, .34);
  border-radius: 16px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 40px rgba(7, 17, 31, .14);
}

.site-card strong {
  display: block;
  margin-top: 4px;
  line-height: 1.05;
}

.code-console {
  right: 26px;
  bottom: 38px;
  display: grid;
  gap: 6px;
  width: 248px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(6, 19, 33, .86);
  color: #cffff8;
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  box-shadow: 0 22px 48px rgba(7, 17, 31, .22);
}

.code-console span {
  overflow: hidden;
  white-space: nowrap;
  animation: codeGlow 3.8s ease-in-out infinite;
}

.code-console span:nth-child(2) {
  animation-delay: .45s;
}

.code-console span:nth-child(3) {
  animation-delay: .9s;
}

.launch-panel {
  right: 52px;
  top: 220px;
  width: 132px;
  padding: 14px;
  border: 1px solid rgba(7, 17, 31, .1);
  border-radius: 16px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 40px rgba(7, 17, 31, .13);
}

.launch-panel strong {
  display: block;
  margin: 2px 0 10px;
  font-size: 34px;
  line-height: 1;
}

.launch-panel span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--lime));
  transform-origin: left;
  animation: growBar 3.8s ease-in-out infinite;
}

.video-cursor {
  left: 48%;
  top: 62%;
  width: 18px;
  height: 18px;
  border-left: 12px solid #061321;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  filter: drop-shadow(0 10px 18px rgba(7,17,31,.3));
  animation: cursorPath 6s ease-in-out infinite;
}

.video-cursor::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 8px rgba(25, 242, 211, .18);
}

.video-controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-top: 1px solid rgba(7, 17, 31, .08);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 900;
}

.video-progress {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(7, 17, 31, .08);
}

.video-progress span {
  display: block;
  height: 100%;
  width: 42%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-2), var(--lime));
  animation: videoProgress 6s ease-in-out infinite;
}

@keyframes pulseLive {
  0% { box-shadow: 0 0 0 0 rgba(25, 242, 211, .42); }
  70% { box-shadow: 0 0 0 10px rgba(25, 242, 211, 0); }
  100% { box-shadow: 0 0 0 0 rgba(25, 242, 211, 0); }
}

@keyframes scanLine {
  0%, 100% { transform: translateY(-60px); opacity: .35; }
  50% { transform: translateY(360px); opacity: .1; }
}

@keyframes codeGlow {
  0%, 100% { opacity: .62; }
  50% { opacity: 1; }
}

@keyframes growBar {
  0%, 100% { transform: scaleX(.62); opacity: .7; }
  50% { transform: scaleX(1); opacity: 1; }
}

@keyframes floatAgent {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes boardPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(.985); }
  50% { transform: translate(-50%, -50%) scale(1.015); }
}

@keyframes wireGlow {
  0%, 100% { opacity: .82; }
  50% { opacity: 1; box-shadow: 0 0 34px rgba(25, 242, 211, .24); }
}

@keyframes cursorPath {
  0%, 100% { transform: translate(-70px, -74px); }
  22% { transform: translate(42px, -112px); }
  46% { transform: translate(98px, -8px); }
  72% { transform: translate(-24px, 74px); }
}

@keyframes videoProgress {
  0%, 100% { width: 18%; }
  50% { width: 92%; }
}

@media (prefers-reduced-motion: reduce) {
  .ai-video-frame,
  .ai-video-frame *,
  .floating-chip {
    animation: none !important;
    transition: none !important;
  }

  .ai-video-frame {
    transform: none;
  }
}

.floating-chip {
  position: absolute;
  display: grid;
  gap: 2px;
  width: 176px;
  padding: 14px;
  border: 1px solid rgba(25, 242, 211, .34);
  border-radius: var(--r);
  background: rgba(255,255,255,.88);
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(7, 17, 31, .12);
  backdrop-filter: blur(14px);
}

.floating-chip strong {
  color: #058b92;
  font-size: 16px;
}

.floating-chip span {
  color: var(--muted);
  font-size: 13px;
}

.chip-top {
  top: 42px;
  right: -18px;
}

.chip-bottom {
  left: -24px;
  bottom: 48px;
}

.ai-portrait-wrap {
  position: relative;
  justify-self: end;
  width: min(470px, 100%);
}

.ai-portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .34);
}

.ai-portrait-wrap::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  border: 1px solid rgba(25, 242, 211, .38);
  border-radius: 18px;
}

.ai-signal-card {
  position: absolute;
  width: 210px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--r);
  background: rgba(7, 17, 31, .78);
  color: #e9fbff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
  backdrop-filter: blur(14px);
}

.ai-signal-card strong {
  display: block;
  color: var(--cyan);
  font-size: 15px;
}

.ai-signal-card span {
  display: block;
  margin-top: 3px;
  color: #dbe8f5;
  font-size: 13px;
}

.signal-sales {
  left: -42px;
  bottom: 72px;
}

.signal-support {
  right: -26px;
  top: 78px;
}

.section {
  padding: 56px 0;
}

.section.compact {
  padding: 24px 0 34px;
}

.section-soft {
  background:
    linear-gradient(180deg, #f7fbfd, #eef5f9);
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  max-width: 800px;
  margin-bottom: 28px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2,
.page-head h1 {
  margin: 0;
  color: var(--ink);
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-head p,
.page-head p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.page-head {
  padding: 56px 0 38px;
  background:
    linear-gradient(100deg, #f8fbfd, #eef8f7 58%, #f3efff);
  border-bottom: 1px solid var(--line);
}

.page-head .eyebrow {
  color: #007f87;
}

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

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

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

.service-card,
.plan-card,
.case-card,
.metric-card,
.blog-card,
.form-panel,
.quote-panel {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--paper);
  box-shadow: 0 8px 28px rgba(7, 17, 31, .06);
}

.service-card,
.plan-card,
.metric-card,
.blog-card {
  padding: 24px;
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-2), var(--violet));
}

.service-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: var(--r);
  background: #e7fffb;
  color: #087b85;
  font-weight: 950;
  font-size: 13px;
}

.service-card:nth-child(2n) .service-icon {
  background: #eef3ff;
  color: #3055c8;
}

.service-card:nth-child(3n) .service-icon {
  background: #f4efff;
  color: #7140d6;
}

.ai-card {
  min-height: 310px;
}

.service-card h3,
.plan-card h3,
.case-card h3,
.blog-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
}

.service-card p,
.plan-card p,
.case-card p,
.blog-card p,
.metric-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.service-card ul,
.plan-card ul {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.service-card li,
.plan-card li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.5;
}

.service-card li::before,
.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.rubros {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rubros span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--paper);
  color: var(--ink-soft);
  font-weight: 850;
}

.tech-strip span {
  border-color: rgba(25, 242, 211, .24);
  background: #061321;
  color: #eafffb;
}

.future-statement {
  position: relative;
  overflow: hidden;
  padding: 64px 0;
  color: var(--paper);
  background:
    linear-gradient(105deg, rgba(7, 17, 31, .96), rgba(7, 17, 31, .84) 48%, rgba(7, 17, 31, .48)),
    url("/assets/img/future-technology-trends.jpg") center / cover;
}

.future-statement::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(25, 242, 211, .08) 0 1px, transparent 1px 74px),
    linear-gradient(180deg, rgba(25, 242, 211, .08), transparent 52%);
  pointer-events: none;
}

.future-statement-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 36px;
  align-items: end;
}

.future-statement h2 {
  margin: 0;
  max-width: 740px;
  font-size: 46px;
  line-height: 1.02;
}

.future-statement p {
  max-width: 720px;
  color: #d9edf7;
  font-size: 18px;
}

.future-statement .eyebrow,
.neural-band .eyebrow,
.dark-panel .eyebrow,
.cta-band .eyebrow {
  color: #9fffee;
}

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

.statement-points span {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--r);
  background: rgba(255, 255, 255, .08);
  color: #edfffb;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.neural-band {
  overflow: hidden;
  background:
    linear-gradient(120deg, #07111f, #0b1d2f 52%, #211338);
  color: var(--paper);
}

.neural-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 42px;
}

.neural-band h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.08;
}

.neural-band p {
  color: #d3dfec;
  font-size: 18px;
}

.flow-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(25,242,211,.12), rgba(155,92,255,.12)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, transparent 1px 48px);
  box-shadow: var(--shadow);
}

.flow-node {
  min-height: 86px;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r);
  background: rgba(255,255,255,.08);
  color: #eaf8ff;
  font-weight: 950;
  text-align: center;
}

.flow-node.hot {
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  color: #03151b;
}

.split-feature {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.split-feature h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.08;
}

.split-feature p {
  color: var(--muted);
  font-size: 18px;
}

.feature-media {
  min-height: 420px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background:
    linear-gradient(135deg, #efffff, #f2efff),
    repeating-linear-gradient(0deg, rgba(7,17,31,.05) 0 1px, transparent 1px 44px);
  border: 1px solid var(--line);
}

.feature-media img {
  width: min(430px, 88%);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 24px 56px rgba(7, 17, 31, .16);
}

.entrepreneur-media {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #f7fbfd;
  box-shadow: 0 18px 48px rgba(7, 17, 31, .1);
}

.entrepreneur-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(25,242,211,.1), transparent 44%, rgba(155,92,255,.12));
  pointer-events: none;
}

.entrepreneur-media img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.dream-feature {
  align-items: center;
}

.value-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.value-list div {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fbfdff;
}

.value-list strong {
  color: var(--ink);
}

.value-list span {
  color: var(--muted);
}

.plan-card {
  position: relative;
}

.plan-card.featured {
  border-color: rgba(25, 242, 211, .72);
  box-shadow: 0 20px 52px rgba(25, 242, 211, .18);
}

.plan-card.starter {
  border-color: rgba(17, 197, 111, .45);
  background:
    linear-gradient(180deg, rgba(230, 255, 244, .72), rgba(255,255,255,.96)),
    var(--paper);
}

.plan-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: var(--r);
  background: #e7fffb;
  color: #006f78;
  font-size: 13px;
  font-weight: 950;
}

.price {
  margin: 16px 0 0;
  font-size: 30px;
  font-weight: 950;
}

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

.plan-card .btn {
  width: 100%;
  margin-top: 22px;
}

.case-card {
  overflow: hidden;
}

.case-card img,
.blog-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.case-card div,
.blog-card div {
  padding: 22px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

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

.metric-card strong {
  display: block;
  color: #087b85;
  font-size: 32px;
}

.dark-panel {
  background:
    linear-gradient(135deg, #07111f, #122a3a 62%, #251541);
  color: var(--paper);
}

.dark-panel p {
  color: #d8e5ef;
}

.dark-panel .metric-card {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
}

.dark-panel .metric-card strong {
  color: var(--cyan);
}

.dark-panel .metric-card p {
  color: #d8e5ef;
}

.process {
  counter-reset: step;
  display: grid;
  gap: 14px;
}

.process-item {
  counter-increment: step;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--paper);
}

.process-item::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: var(--r);
  background: var(--ink);
  color: var(--paper);
  font-weight: 950;
}

.process-item h3 {
  margin: 0;
}

.process-item p {
  margin: 6px 0 0;
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
  align-items: start;
}

.quote-panel,
.form-panel {
  padding: 24px;
}

.form-panel form {
  display: grid;
  gap: 14px;
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cad3df;
  border-radius: var(--r);
  background: var(--paper);
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
}

textarea {
  min-height: 126px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cyan-2);
  box-shadow: 0 0 0 3px rgba(54, 163, 255, .16);
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.check-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.form-message {
  display: none;
  margin-top: 14px;
  padding: 12px;
  border-radius: var(--r);
  font-weight: 850;
}

.form-message.ok,
.form-message.error {
  display: block;
}

.form-message.ok {
  background: #eafaf2;
  color: #086243;
}

.form-message.error {
  background: #fff0f3;
  color: #a31f3a;
}

.quote-options {
  display: grid;
  gap: 10px;
}

.quote-options label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fbfcfe;
}

.quote-options input {
  width: 18px;
}

.quote-output {
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--r);
  background: var(--ink);
  color: var(--paper);
}

.quote-output strong {
  display: block;
  font-size: 30px;
}

.quote-help-panel {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r);
  background: rgba(255,255,255,.08);
}

.quote-help-panel h3 {
  margin: 0;
  color: #ffffff;
}

.quote-help-panel p {
  margin: 0;
}

.quote-help-panel ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: #e9f5ff;
}

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

.faq details {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--paper);
  padding: 16px 18px;
}

.faq summary {
  cursor: pointer;
  font-weight: 950;
}

.faq p {
  color: var(--muted);
}

.cta-band {
  background:
    linear-gradient(120deg, #07111f, #0b1d2f 54%, #251541);
  color: var(--paper);
  padding: 48px 0;
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band h2 {
  margin: 0;
  font-size: 34px;
}

.cta-band p {
  margin: 8px 0 0;
  color: #cbd6e7;
}

.footer {
  background: #050b14;
  color: #cbd6e7;
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .72fr .72fr .98fr 1.1fr;
  gap: 28px;
}

.footer .brand-logo strong {
  color: #ffffff;
}

.footer .brand-logo small {
  color: #aebaca;
}

.footer h3 {
  margin: 0 0 12px;
  color: var(--paper);
  font-size: 16px;
}

.footer a {
  display: block;
  margin: 8px 0;
  color: #cbd6e7;
}

.footer p {
  color: #cbd6e7;
}

.footer-contact-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.footer-contact-list p {
  margin: 0;
}

.footer-contact-list strong {
  display: block;
  color: #ffffff;
}

.footer-hours {
  display: grid;
  gap: 6px;
  margin-top: 12px;
}

.footer-map {
  min-height: 190px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r);
  background: #07111f;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  min-height: 190px;
  border: 0;
  filter: saturate(.9) contrast(1.05);
}

.blog-card.featured-article {
  grid-column: span 2;
}

.read-more {
  display: inline-flex;
  margin-top: 16px;
  color: #007f87;
  font-size: 14px;
  font-weight: 950;
}

.article-page {
  background: #ffffff;
}

.article-hero {
  padding: 56px 0 42px;
  background:
    radial-gradient(circle at 86% 20%, rgba(25, 242, 211, .22), transparent 30%),
    linear-gradient(100deg, #f8fbfd, #eef8f7 58%, #f3efff);
  border-bottom: 1px solid var(--line);
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
  gap: 36px;
  align-items: center;
}

.article-hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: 52px;
  line-height: 1.02;
  letter-spacing: 0;
}

.article-hero p {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: 19px;
}

.article-hero img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 22px 58px rgba(7, 17, 31, .13);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(260px, 1fr);
  gap: 38px;
  align-items: start;
  padding-top: 42px;
  padding-bottom: 56px;
}

.article-content {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.75;
}

.article-content h2 {
  margin: 34px 0 10px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.16;
}

.answer-box {
  margin: 0 0 26px;
  padding: 18px;
  border: 1px solid rgba(25, 242, 211, .38);
  border-radius: var(--r);
  background: #effffb;
  color: var(--ink);
}

.article-checklist {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.article-checklist li {
  position: relative;
  padding-left: 24px;
}

.article-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.article-aside {
  position: sticky;
  top: 104px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #f8fbfd;
  box-shadow: 0 12px 34px rgba(7, 17, 31, .07);
}

.article-aside h2 {
  margin: 0;
  font-size: 22px;
}

.article-aside p {
  color: var(--muted);
}

.article-aside .btn {
  width: 100%;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 14px;
}

.legal-content {
  max-width: 860px;
  color: var(--ink-soft);
}

.legal-content h2 {
  margin-top: 34px;
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 18;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: var(--r);
  background: var(--green);
  color: #04140e;
  box-shadow: 0 12px 30px rgba(19, 163, 109, .28);
  font-weight: 950;
}

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

  .nav-links {
    gap: 12px;
    font-size: 13px;
  }

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

@media (max-width: 980px) {
  .nav-links,
  .nav-actions .btn-wa {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
  }

  .nav-links.open {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 96px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .nav-links.open a {
    padding: 14px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open a:last-child {
    border-bottom: 0;
  }

  .hero-split,
  .hero-clean-grid,
  .grid-4,
  .grid-3,
  .grid-2,
  .article-hero-grid,
  .article-layout,
  .future-statement-grid,
  .neural-grid,
  .split-feature,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .blog-card.featured-article {
    grid-column: auto;
  }

  .article-aside {
    position: static;
  }

  .ai-portrait-wrap {
    justify-self: start;
    width: min(440px, 100%);
  }

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

  .hero-clean h1 {
    font-size: 54px;
  }

  .intro-video-shell {
    min-height: 520px;
    place-items: start;
  }

  .ai-video-frame {
    width: 100%;
    transform: none;
  }

  .agent-design {
    left: 16px;
  }

  .agent-code {
    right: 16px;
  }

  .agent-sales {
    left: 22px;
  }

  .design-board {
    width: min(420px, calc(100% - 72px));
  }

  .code-console {
    right: 16px;
    width: 220px;
  }

  .launch-panel {
    right: 28px;
  }

  .chip-top {
    right: 8px;
  }

  .chip-bottom {
    left: 8px;
  }

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

@media (max-width: 640px) {
  .topbar-inner {
    display: grid;
    gap: 4px;
    font-size: 12px;
    line-height: 1.25;
  }

  .brand-logo small {
    display: none;
  }

  .hero-ai {
    min-height: auto;
  }

  .hero-inner {
    width: min(var(--max), calc(100% - 28px));
    padding: 42px 0 58px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.02;
  }

  .hero-clean h1 {
    max-width: 340px;
    font-size: 36px;
  }

  .hero p {
    max-width: 340px;
    font-size: 17px;
  }

  .hero-clean-grid {
    align-items: start;
    gap: 18px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy .eyebrow {
    order: 1;
  }

  .hero-copy h1 {
    order: 2;
  }

  .hero-copy p {
    order: 3;
    margin-top: 0;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 340px;
    margin-top: 4px;
    order: 4;
  }

  .intro-video-shell {
    order: 5;
    margin-top: 22px;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-width: 340px;
    margin-top: 0;
    order: 6;
  }

  .hero-proof span {
    display: grid;
    place-items: center;
    min-height: 42px;
    padding: 8px;
    text-align: center;
    font-size: 12px;
  }

  .ai-signal-card {
    position: static;
    width: auto;
    margin-top: 10px;
  }

  .ai-portrait-wrap::before {
    display: none;
  }

  .section {
    padding: 40px 0;
  }

  .section-head h2,
  .page-head h1,
  .article-hero h1,
  .future-statement h2,
  .neural-band h2,
  .split-feature h2 {
    font-size: 32px;
  }

  .field-grid,
  .metric-row,
  .statement-points,
  .flow-panel {
    grid-template-columns: 1fr;
  }

  .floating-chip {
    position: static;
    width: auto;
    margin-top: 10px;
  }

  .intro-video-shell {
    min-height: auto;
  }

  .intro-canvas,
  .code-console,
  .video-cursor {
    display: none;
  }

  .ai-video-frame {
    border-radius: 18px;
    box-shadow: 0 18px 48px rgba(7, 17, 31, .12);
  }

  .ai-video-topbar {
    grid-template-columns: 12px 1fr;
    min-height: auto;
    padding: 14px;
  }

  .ai-video-topbar small {
    grid-column: 2;
  }

  .ai-video-scene {
    display: grid;
    gap: 12px;
    min-height: auto;
    padding: 14px;
  }

  .ai-video-scene::before {
    display: none;
  }

  .agent-node,
  .design-board,
  .launch-panel {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: auto;
    animation: none;
    transform: none;
  }

  .agent-node {
    display: grid;
    grid-template-columns: 38px 1fr;
    align-items: center;
    padding: 12px;
  }

  .agent-node small {
    grid-column: 2;
  }

  .design-board {
    min-height: 224px;
    order: -1;
  }

  .site-card {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .launch-panel strong {
    font-size: 28px;
  }

  .video-controls {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px 14px;
  }

  .cta-band .container,
  .footer-bottom {
    display: grid;
  }

  .wa-float {
    position: static;
    margin: 20px 16px 16px;
    justify-content: center;
  }
}
