:root {
  --navy-950: #070d1a;
  --navy-900: #0f172a;
  --navy-800: #17233d;
  --ink: #172033;
  --slate: #64748b;
  --slate-light: #94a3b8;
  --line: #e2e8f0;
  --surface: #f8fafc;
  --white: #ffffff;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-soft: #eff6ff;
  --pink: #eb1c65;
  --pink-soft: #fdedf4;
  --green: #16934a;
  --green-soft: #e9f9ef;
  --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 30px 80px rgba(7, 13, 26, 0.24);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-geist-sans, Inter), ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
a {
  font: inherit;
}

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

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

button {
  color: inherit;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 78px;
  background: rgba(7, 13, 26, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1280px, calc(100% - 48px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 174px;
  height: 62px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  max-width: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 27px;
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 560;
}

.nav-links > a:not(.button) {
  position: relative;
  transition: color 180ms ease;
}

.nav-links > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--pink);
  transition: right 180ms ease;
}

.nav-links > a:not(.button):hover {
  color: var(--white);
}

.nav-links > a:not(.button):hover::after {
  right: 0;
}

.nav-links .button {
  min-height: 42px;
  padding: 0 18px;
  font-size: 12px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 180ms ease;
}

.menu-toggle.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 13px;
  font-weight: 680;
  font-size: 14px;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 13px 30px rgba(37, 99, 235, 0.28);
}

.button-primary:hover {
  box-shadow: 0 17px 36px rgba(37, 99, 235, 0.37);
}

.button-secondary {
  color: var(--blue);
  background: var(--blue-soft);
  border: 1px solid #cfddff;
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 890px;
  padding: 155px 0 92px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 25%, rgba(37, 99, 235, 0.14), transparent 28%),
    linear-gradient(135deg, #070d1a 0%, #0f172a 52%, #101a31 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 85%);
}

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

.hero-glow-one {
  width: 460px;
  height: 460px;
  right: -180px;
  top: 90px;
  background: radial-gradient(circle, rgba(235, 28, 101, 0.13), transparent 68%);
}

.hero-glow-two {
  width: 520px;
  height: 520px;
  left: -280px;
  bottom: -290px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.14), transparent 70%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(450px, 0.94fr);
  align-items: center;
  gap: 72px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--blue);
  font-size: 11px;
  font-weight: 740;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 8px 13px;
  color: #dbeafe;
  background: rgba(37, 99, 235, 0.13);
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 999px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #60a5fa;
  box-shadow: 0 0 0 5px rgba(96, 165, 250, 0.09);
}

.hero h1 {
  max-width: 720px;
  margin: 25px 0 24px;
  font-size: clamp(48px, 5.2vw, 76px);
  line-height: 0.99;
  letter-spacing: -0.055em;
  font-weight: 720;
}

.hero h1 em {
  position: relative;
  color: #93c5fd;
  font-style: normal;
  white-space: nowrap;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), transparent);
}

.hero-lead {
  max-width: 650px;
  margin: 0;
  color: #aebbd0;
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 31px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dbeafe;
  font-weight: 620;
  font-size: 14px;
}

.text-link svg {
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.launch-block {
  max-width: 510px;
  margin-top: 39px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.launch-kicker {
  display: block;
  margin-bottom: 13px;
  color: #8fa0ba;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.countdown-unit {
  min-width: 0;
  padding: 11px 7px 9px;
  text-align: center;
  border-radius: 12px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.07);
}

.countdown-unit strong {
  display: block;
  font-family: var(--font-geist-mono, monospace), ui-monospace, monospace;
  color: var(--white);
  font-size: clamp(21px, 2.5vw, 29px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.countdown-unit span {
  display: block;
  margin-top: 6px;
  color: #7f91ad;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.launch-time {
  display: block;
  margin-top: 11px;
  color: #71839f;
  font-size: 10px;
}

.launch-live {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 70px;
  padding: 0 21px;
  color: #dcfce7;
  background: rgba(22, 147, 74, .16);
  border: 1px solid rgba(74, 222, 128, .2);
  border-radius: 14px;
  font-size: 20px;
  font-weight: 720;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 7px rgba(74, 222, 128, .1);
}

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

.hero-proof div {
  position: relative;
  padding-right: 30px;
}

.hero-proof div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 4px;
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,.12);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: var(--white);
  font-size: 14px;
}

.hero-proof span {
  margin-top: 3px;
  color: #6f819d;
  font-size: 10px;
}

.hero-visual {
  position: relative;
  height: 660px;
  min-width: 0;
  isolation: isolate;
}

.visual-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(96, 165, 250, 0.12);
  border-radius: 50%;
}

.orbit-one {
  inset: 35px 14px 35px;
}

.orbit-two {
  inset: 105px 75px;
}

.phone {
  position: absolute;
  overflow: hidden;
  background: var(--white);
  border: 6px solid #1d293f;
  border-radius: 33px;
  box-shadow: var(--shadow-lg);
  transform-origin: center bottom;
}

.phone img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  background: #f8fafc;
}

.phone-left,
.phone-right {
  z-index: 1;
  top: 145px;
  width: 202px;
  height: 350px;
  opacity: .82;
  filter: saturate(.78) brightness(.83);
}

.phone-left {
  left: 1px;
  transform: rotate(-8deg);
}

.phone-right {
  right: 0;
  transform: rotate(8deg);
}

.phone-center {
  z-index: 3;
  left: 50%;
  top: 62px;
  width: 308px;
  height: 535px;
  transform: translateX(-50%);
  border-width: 8px;
  border-color: #121d31;
}

.phone-speaker {
  display: none;
}

.floating-note {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 178px;
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 15px;
  box-shadow: 0 18px 40px rgba(7, 13, 26, .24);
  animation: float 5s ease-in-out infinite;
}

.note-top {
  z-index: 6;
  right: 2px;
  top: 76px;
}

.note-bottom {
  z-index: 6;
  left: 5px;
  bottom: 85px;
  animation-delay: -2s;
}

.note-icon {
  display: grid;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 10px;
}

.note-bottom .note-icon {
  background: var(--pink);
}

.floating-note strong,
.floating-note span span {
  display: block;
}

.floating-note strong {
  margin-bottom: 2px;
  font-size: 11px;
}

.floating-note span span {
  color: var(--slate);
  font-size: 9px;
}

.always-on {
  position: absolute;
  z-index: 5;
  right: 35px;
  bottom: 23px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  color: #bfdbfe;
  background: rgba(37, 99, 235, .13);
  border: 1px solid rgba(96, 165, 250, .18);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 650;
}

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

.trust-strip {
  position: relative;
  z-index: 10;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 13px 35px rgba(15,23,42,.04);
}

.trust-inner {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}

.trust-inner > p {
  max-width: 280px;
  margin: 0;
  color: var(--slate);
  font-size: 12px;
  line-height: 1.7;
}

.trust-inner > p strong {
  color: var(--ink);
}

.client-logos {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 50px;
}

.client-logo {
  color: #606b7d;
  white-space: nowrap;
  filter: grayscale(1);
  opacity: .72;
}

.client-logo.honda {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.client-logo.vistazo {
  font-size: 22px;
  font-weight: 850;
  letter-spacing: .12em;
}

.client-logo.colvin {
  font-size: 18px;
  font-weight: 760;
}

.evolution-section {
  padding: 88px 0;
  background: var(--white);
}

.evolution-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
  gap: 72px;
  align-items: center;
  padding: 64px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 12%, rgba(59, 130, 246, .22), transparent 32%),
    radial-gradient(circle at 4% 100%, rgba(37, 99, 235, .13), transparent 35%),
    var(--navy-950);
  border: 1px solid rgba(148, 163, 184, .14);
  border-radius: 32px;
  box-shadow: 0 32px 75px rgba(7, 13, 26, .16);
}

.evolution-panel::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -75px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(96, 165, 250, .13);
  border-radius: 50%;
}

.evolution-copy,
.evolution-path {
  position: relative;
  z-index: 1;
}

.evolution-copy h2 {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--white);
  font-size: clamp(39px, 4vw, 58px);
  line-height: 1.04;
  letter-spacing: -.048em;
  font-weight: 720;
}

.evolution-copy p {
  max-width: 720px;
  margin: 24px 0 0;
  color: #aebbd0;
  font-size: 16px;
  line-height: 1.8;
}

.evolution-copy p strong {
  color: #e8f1ff;
  font-weight: 680;
}

.evolution-path {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.evolution-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 17px;
  align-items: center;
  padding: 22px;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(148, 163, 184, .13);
  border-radius: 18px;
}

.evolution-step > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #9ca9bb;
  background: rgba(255, 255, 255, .06);
  border-radius: 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.evolution-step strong,
.evolution-step small {
  display: block;
}

.evolution-step strong {
  color: #dce5f3;
  font-size: 16px;
}

.evolution-step small {
  margin-top: 5px;
  color: #8f9db1;
  font-size: 11px;
  line-height: 1.5;
}

.evolution-arrow {
  align-self: center;
  color: #60a5fa;
}

.evolution-step-active {
  background: linear-gradient(135deg, rgba(37, 99, 235, .3), rgba(37, 99, 235, .1));
  border-color: rgba(96, 165, 250, .42);
  box-shadow: inset 0 0 0 1px rgba(96, 165, 250, .08);
}

.evolution-step-active > span {
  color: var(--white);
  background: var(--blue);
}

.evolution-step-active strong {
  color: var(--white);
}

.evolution-step-active small {
  color: #bfdbfe;
}

.section {
  padding: 112px 0;
}

.section-heading {
  margin-bottom: 52px;
}

.section-heading.centered {
  max-width: 730px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .section-tag {
  margin-inline: auto;
}

.section-heading h2,
.ai-copy h2,
.brand-copy h2,
.faq-heading h2,
.cta-inner h2 {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: clamp(37px, 4vw, 55px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 720;
}

.section-heading > p,
.section-heading.centered p,
.brand-copy > p,
.faq-heading > p {
  margin: 20px 0 0;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.75;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  align-items: end;
  gap: 80px;
}

.split-heading p {
  margin: 0 0 5px;
}

.benefits-section {
  background:
    radial-gradient(circle at 0% 0%, rgba(37,99,235,.055), transparent 27%),
    var(--surface);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.benefit-card {
  position: relative;
  min-height: 285px;
  padding: 28px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.benefit-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--pink));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.benefit-card:hover {
  transform: translateY(-7px);
  border-color: #ccd8ed;
  box-shadow: 0 20px 40px rgba(15,23,42,.1);
}

.benefit-card:hover::after {
  transform: scaleX(1);
}

.card-number {
  position: absolute;
  right: 23px;
  top: 21px;
  color: #e2e8f0;
  font-family: var(--font-geist-mono, monospace), monospace;
  font-size: 13px;
}

.icon-box,
.industry-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--blue);
  background: var(--blue-soft);
  border: 1px solid #dbeafe;
  border-radius: 14px;
}

.benefit-card h3 {
  margin: 45px 0 12px;
  font-size: 18px;
  letter-spacing: -.02em;
}

.benefit-card p {
  margin: 0;
  color: var(--slate);
  font-size: 13px;
  line-height: 1.75;
}

.steps-section {
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 25px;
}

.step-copy {
  min-height: 205px;
  padding: 25px 24px 20px;
}

.step-number {
  display: inline-grid;
  width: 36px;
  height: 28px;
  place-items: center;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 8px;
  font-family: var(--font-geist-mono, monospace), monospace;
  font-size: 10px;
  font-weight: 720;
}

.step-card h3 {
  margin: 25px 0 10px;
  font-size: 17px;
  letter-spacing: -.025em;
}

.step-card p {
  margin: 0;
  color: var(--slate);
  font-size: 12px;
  line-height: 1.65;
}

.step-image {
  position: relative;
  height: 320px;
  margin: 0 14px 14px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 17px;
}

.step-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44px;
  background: linear-gradient(to top, rgba(255,255,255,.9), transparent);
}

.step-image img {
  width: 100%;
  height: auto;
}

.privacy-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 26px 0 0;
  color: var(--slate-light);
  font-size: 11px;
}

.ai-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(37,99,235,.08), transparent 40%),
    var(--navy-950);
}

.ai-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image: radial-gradient(rgba(255,255,255,.15) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(90deg, black, transparent 65%);
}

.ai-glow {
  position: absolute;
  width: 650px;
  height: 650px;
  right: -230px;
  top: -210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.2), transparent 68%);
}

.ai-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 100px;
}

.tag-dark {
  color: #bfdbfe;
}

.ai-copy h2 {
  color: var(--white);
}

.ai-copy > p {
  max-width: 520px;
  margin: 23px 0 0;
  color: #91a1ba;
  font-size: 16px;
  line-height: 1.75;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 22px;
  margin: 30px 0 33px;
  padding: 0;
  list-style: none;
  color: #d7e0ee;
  font-size: 12px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.check-list li > span {
  display: grid;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #93c5fd;
  background: rgba(37,99,235,.14);
  border-radius: 50%;
}

.chat-panel {
  max-width: 540px;
  justify-self: end;
  overflow: hidden;
  color: var(--ink);
  background: #f8fafc;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 27px;
  box-shadow: 0 35px 90px rgba(0,0,0,.35);
}

.chat-header {
  min-height: 77px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.ai-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #5692ff);
  border-radius: 13px;
}

.chat-header strong,
.chat-header span {
  display: block;
}

.chat-header strong {
  font-size: 13px;
}

.chat-header div > span {
  margin-top: 3px;
  color: var(--slate);
  font-size: 9px;
}

.chat-header i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 4px;
  border-radius: 50%;
  background: #22c55e;
}

.secure-chat {
  margin-left: auto;
  color: var(--slate-light);
}

.chat-body {
  display: flex;
  flex-direction: column;
  min-height: 460px;
  padding: 25px 20px 19px;
}

.bubble {
  position: relative;
  max-width: 82%;
  padding: 13px 15px 21px;
  font-size: 12px;
  line-height: 1.55;
  box-shadow: 0 5px 13px rgba(15,23,42,.05);
}

.bubble small {
  position: absolute;
  right: 10px;
  bottom: 5px;
  color: #98a3b5;
  font-size: 7px;
}

.bubble-user {
  align-self: flex-end;
  color: var(--white);
  background: var(--blue);
  border-radius: 16px 16px 4px 16px;
}

.bubble-user small {
  color: rgba(255,255,255,.62);
}

.bubble-ai {
  align-self: flex-start;
  margin-top: 13px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px 16px 16px 4px;
}

.slot-options {
  display: flex;
  gap: 7px;
  margin: 10px 0 0;
}

.slot-options span {
  padding: 8px 12px;
  color: var(--slate);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 9px;
  font-size: 9px;
  font-weight: 700;
}

.slot-options span.selected {
  color: var(--blue);
  background: var(--blue-soft);
  border-color: #bfdbfe;
}

.bubble.compact {
  margin-top: 13px;
}

.bubble.success {
  display: flex;
  gap: 10px;
  max-width: 91%;
  margin-top: 13px;
  background: var(--green-soft);
  border-color: #c5efd4;
}

.bubble.success strong {
  display: block;
  margin-bottom: 2px;
  color: #087333;
}

.success-icon {
  display: grid;
  flex: 0 0 auto;
  width: 29px;
  height: 29px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
}

.chat-footer {
  min-height: 66px;
  margin: 0 15px 15px;
  padding: 0 8px 0 18px;
  display: flex;
  align-items: center;
  color: #a0aaba;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 10px;
}

.chat-footer button {
  display: grid;
  width: 36px;
  height: 36px;
  margin-left: auto;
  padding: 0;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border: 0;
  border-radius: 10px;
}

.channels-section {
  background: var(--surface);
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
  max-width: 920px;
  margin: 0 auto;
}

.channel-card {
  display: flex;
  align-items: center;
  min-height: 72px;
  gap: 11px;
  padding: 0 18px;
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 17px;
  box-shadow: 0 8px 25px rgba(15,23,42,.04);
}

.channel-card > span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 640;
}

.channel-card i {
  display: grid;
  width: 21px;
  height: 21px;
  margin-left: auto;
  place-items: center;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 50%;
}

.sync-line {
  max-width: 820px;
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.sync-line > span {
  height: 1px;
  background: linear-gradient(90deg, transparent, #a9c5fa);
}

.sync-line > span:last-child {
  background: linear-gradient(90deg, #a9c5fa, transparent);
}

.sync-core {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  align-items: center;
  padding: 13px 20px;
  color: var(--blue);
  background: var(--blue-soft);
  border: 1px solid #cfe0ff;
  border-radius: 15px;
}

.sync-core svg {
  grid-row: 1 / 3;
}

.sync-core strong {
  color: var(--ink);
  font-size: 11px;
}

.sync-core small {
  color: var(--slate);
  font-size: 8px;
}

.industries-section {
  background: var(--white);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.industry-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
  min-height: 128px;
  padding: 21px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.industry-card:hover {
  transform: translateY(-4px);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.industry-card > svg {
  color: #b4c0d1;
  transition: transform 180ms ease;
}

.industry-card:hover > svg {
  color: var(--blue);
  transform: translateX(4px);
}

.industry-card h3 {
  margin: 0 0 7px;
  font-size: 14px;
  letter-spacing: -.02em;
}

.industry-card p {
  margin: 0;
  color: var(--slate);
  font-size: 10px;
  line-height: 1.55;
}

.brand-section {
  padding: 120px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(37,99,235,.08), transparent 25%),
    var(--surface);
}

.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
}

.brand-visual {
  position: relative;
  height: 510px;
}

.brand-card {
  position: absolute;
  padding: 26px;
  border-radius: 27px;
  box-shadow: 0 30px 70px rgba(15,23,42,.15);
}

.brand-card-back {
  left: 5px;
  top: 28px;
  width: 330px;
  height: 390px;
  transform: rotate(-7deg);
  color: var(--white);
  background: linear-gradient(145deg, var(--blue), #163c95);
}

.brand-card-back > span {
  font-size: 12px;
  font-weight: 700;
}

.brand-swatch {
  width: 70px;
  height: 70px;
  margin-top: 35px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 83px 0 0 #93c5fd, 166px 0 0 #ffffff;
}

.brand-lines {
  margin-top: 60px;
}

.brand-lines i {
  display: block;
  width: 80%;
  height: 9px;
  margin-top: 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.17);
}

.brand-lines i:nth-child(2) {
  width: 65%;
}

.brand-lines i:nth-child(3) {
  width: 44%;
}

.brand-card-front {
  z-index: 2;
  right: 0;
  bottom: 10px;
  width: 330px;
  height: 405px;
  background: var(--white);
  border: 1px solid var(--line);
}

.demo-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 750;
}

.brand-card-front > strong {
  display: block;
  margin: 44px 0 24px;
  font-size: 25px;
}

.demo-input {
  height: 48px;
  margin-top: 13px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 11px;
}

.demo-input.short {
  width: 70%;
}

.demo-button {
  display: grid;
  width: 54%;
  height: 43px;
  margin-top: 25px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
}

.brand-card-front small {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 23px;
  color: #a1abba;
  text-align: center;
  font-size: 8px;
}

.brand-copy > p {
  max-width: 540px;
}

.brand-points {
  margin-top: 31px;
}

.brand-points > div {
  display: flex;
  gap: 13px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.brand-points > div > svg {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--blue);
}

.brand-points span,
.brand-points strong {
  display: block;
}

.brand-points strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 12px;
}

.brand-points span {
  color: var(--slate);
  font-size: 10px;
  line-height: 1.5;
}

.law-home-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, rgba(37, 99, 235, .08), transparent 27%),
    var(--white);
}

.law-home-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(470px, 1.08fr);
  align-items: center;
  gap: 85px;
}

.law-home-copy h2 {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(38px, 4.2vw, 57px);
  line-height: 1.06;
  letter-spacing: -.048em;
  font-weight: 720;
}

.law-home-copy > p {
  max-width: 650px;
  margin: 23px 0 0;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.78;
}

.law-home-copy .button {
  margin-top: 30px;
}

.law-home-copy > small {
  display: block;
  max-width: 620px;
  margin-top: 16px;
  color: #7b8798;
  font-size: 10px;
  line-height: 1.6;
}

.law-home-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.law-home-pillars article {
  min-height: 180px;
  padding: 25px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.law-home-pillars article:nth-child(4) {
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(96, 165, 250, .25), transparent 43%),
    var(--navy-950);
  border-color: rgba(148, 163, 184, .15);
}

.law-home-pillars article > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}

.law-home-pillars article:nth-child(4) > span {
  color: var(--white);
  background: var(--blue);
}

.law-home-pillars strong,
.law-home-pillars small {
  display: block;
}

.law-home-pillars strong {
  margin-top: 26px;
  color: var(--ink);
  font-size: 15px;
}

.law-home-pillars small {
  margin-top: 8px;
  color: var(--slate);
  font-size: 10px;
  line-height: 1.55;
}

.law-home-pillars article:nth-child(4) strong {
  color: var(--white);
}

.law-home-pillars article:nth-child(4) small {
  color: #aebbd0;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: start;
  gap: 110px;
}

.faq-heading {
  position: sticky;
  top: 118px;
}

.faq-heading .button {
  margin-top: 30px;
}

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

.faq-list details:first-child {
  border-top: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 45px 24px 0;
  cursor: pointer;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  list-style: none;
}

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

.faq-list summary span {
  position: absolute;
  right: 0;
  top: 18px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 10px;
  font-size: 19px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: -5px 45px 23px 0;
  color: var(--slate);
  font-size: 12px;
  line-height: 1.75;
}

.final-cta {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .3;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 50px 50px;
}

.cta-glow {
  position: absolute;
  left: 50%;
  bottom: -460px;
  width: 900px;
  height: 720px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.22), transparent 65%);
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  text-align: center;
}

.cta-inner > img {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  object-fit: contain;
}

.cta-inner .section-tag {
  margin-inline: auto;
}

.cta-inner h2 {
  max-width: 760px;
  margin-inline: auto;
  color: var(--white);
}

.cta-inner > p {
  max-width: 590px;
  margin: 22px auto 30px;
  color: #91a1ba;
  font-size: 15px;
  line-height: 1.7;
}

.cta-inner .button {
  margin-inline: auto;
}

.cta-inner > small {
  display: block;
  margin-top: 15px;
  color: #63738c;
  font-size: 9px;
}

footer {
  color: #9aa8bc;
  background: #050912;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr .7fr .9fr;
  gap: 80px;
  padding-top: 65px;
  padding-bottom: 55px;
}

.footer-brand img {
  width: 172px;
}

.footer-brand p {
  max-width: 310px;
  margin: 15px 0 0;
  font-size: 11px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-size: 10px;
}

.footer-links strong {
  margin-bottom: 3px;
  color: var(--white);
  font-size: 11px;
}

.footer-links a:hover {
  color: #bfdbfe;
}

.footer-bottom {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #59677d;
  font-size: 9px;
}

.footer-bottom strong {
  color: #8898ae;
}

@media (max-width: 1100px) {
  .nav-links {
    gap: 17px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 450px;
    gap: 35px;
  }

  .hero-visual {
    transform: scale(.9);
    transform-origin: center;
  }

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

  .step-card {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
  }

  .step-copy {
    min-height: 0;
  }

  .step-image {
    height: 400px;
    margin: 14px;
  }

  .ai-grid {
    gap: 55px;
  }
}

@media (max-width: 900px) {
  .shell,
  .nav-shell {
    width: min(100% - 34px, 720px);
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 17px;
    right: 17px;
    top: 66px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,.25);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links > a:not(.button) {
    padding: 13px 8px;
  }

  .nav-links > a:not(.button)::after {
    display: none;
  }

  .nav-links .button {
    min-height: 48px;
    margin-top: 8px;
  }

  .hero {
    padding-top: 128px;
  }

  .hero-grid,
  .ai-grid,
  .brand-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero h1 {
    max-width: 640px;
  }

  .hero-visual {
    width: 520px;
    max-width: 100%;
    margin: -20px auto -30px;
    transform: none;
  }

  .trust-inner {
    padding: 28px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-inner > p {
    max-width: 430px;
  }

  .client-logos {
    width: 100%;
    justify-content: space-between;
    gap: 20px;
  }

  .evolution-panel {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 52px;
  }

  .evolution-copy {
    max-width: 680px;
  }

  .evolution-path {
    max-width: 580px;
  }

  .law-home-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .law-home-copy {
    max-width: 720px;
  }

  .law-home-pillars {
    max-width: 720px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ai-grid {
    gap: 65px;
  }

  .ai-copy {
    max-width: 660px;
  }

  .chat-panel {
    justify-self: center;
    width: min(100%, 550px);
  }

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

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

  .brand-grid {
    gap: 70px;
  }

  .brand-visual {
    width: min(100%, 570px);
    margin-inline: auto;
  }

  .faq-grid {
    gap: 55px;
  }

  .faq-heading {
    position: static;
    max-width: 590px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 35px;
  }
}

@media (max-width: 620px) {
  .shell,
  .nav-shell {
    width: min(100% - 28px, 550px);
  }

  .site-header {
    height: 70px;
  }

  .brand {
    width: 154px;
  }

  .brand img {
    width: 100%;
  }

  .hero {
    min-height: 0;
    padding: 115px 0 64px;
  }

  .eyebrow {
    font-size: 9px;
  }

  .hero h1 {
    margin-top: 21px;
    font-size: clamp(42px, 13vw, 57px);
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 17px;
  }

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

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

  .launch-block {
    margin-top: 30px;
    padding: 16px;
  }

  .countdown {
    gap: 5px;
  }

  .countdown-unit {
    padding-inline: 3px;
  }

  .hero-proof {
    gap: 18px;
  }

  .hero-proof div {
    padding-right: 18px;
  }

  .hero-visual {
    height: 530px;
    margin-top: 15px;
  }

  .phone-center {
    top: 58px;
    width: 246px;
    height: 425px;
  }

  .phone-left,
  .phone-right {
    top: 128px;
    width: 154px;
    height: 264px;
  }

  .floating-note {
    min-width: 153px;
    padding: 9px 10px;
  }

  .note-top {
    right: -8px;
    top: 60px;
  }

  .note-bottom {
    left: -8px;
    bottom: 48px;
  }

  .always-on {
    right: 10px;
    bottom: 0;
  }

  .trust-inner {
    gap: 22px;
  }

  .client-logos {
    flex-wrap: wrap;
    justify-content: flex-start;
    row-gap: 16px;
  }

  .client-logo.honda,
  .client-logo.colvin {
    font-size: 13px;
  }

  .client-logo.vistazo {
    font-size: 17px;
  }

  .evolution-section {
    padding: 56px 0;
  }

  .evolution-panel {
    gap: 36px;
    padding: 34px 24px;
    border-radius: 24px;
  }

  .evolution-copy h2 {
    font-size: 38px;
  }

  .evolution-copy p {
    font-size: 14px;
  }

  .evolution-step {
    grid-template-columns: 42px 1fr;
    padding: 17px;
  }

  .evolution-step > span {
    width: 42px;
    height: 42px;
  }

  .law-home-copy h2 {
    font-size: 38px;
  }

  .law-home-copy > p {
    font-size: 14px;
  }

  .law-home-copy .button {
    width: 100%;
  }

  .law-home-pillars {
    grid-template-columns: 1fr;
  }

  .law-home-pillars article {
    min-height: 158px;
  }

  .section,
  .ai-section,
  .brand-section {
    padding: 80px 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .ai-copy h2,
  .brand-copy h2,
  .faq-heading h2,
  .cta-inner h2 {
    font-size: 37px;
  }

  .section-heading > p,
  .section-heading.centered p,
  .brand-copy > p,
  .faq-heading > p {
    font-size: 14px;
  }

  .benefit-grid,
  .steps-grid,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 245px;
  }

  .benefit-card h3 {
    margin-top: 34px;
  }

  .step-card {
    display: block;
  }

  .step-copy {
    min-height: 185px;
  }

  .step-image {
    height: 370px;
  }

  .ai-grid {
    gap: 50px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .chat-body {
    min-height: 440px;
  }

  .channel-grid {
    grid-template-columns: 1fr;
  }

  .sync-line {
    grid-template-columns: 1fr;
  }

  .sync-line > span {
    display: none;
  }

  .sync-core {
    justify-self: center;
  }

  .industry-card {
    min-height: 115px;
  }

  .brand-visual {
    height: 445px;
  }

  .brand-card-back,
  .brand-card-front {
    width: 280px;
    height: 350px;
  }

  .brand-card-back {
    left: -40px;
  }

  .brand-card-front {
    right: -10px;
  }

  .brand-card-front > strong {
    margin-top: 34px;
    font-size: 21px;
  }

  .faq-list summary {
    font-size: 13px;
  }

  .final-cta {
    padding: 85px 0;
  }

  .cta-inner .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    padding: 20px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

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

/* SEO/GEO content pages */
.seo-page {
  min-height: 100vh;
}

.seo-hero {
  position: relative;
  min-height: 740px;
  padding: 150px 0 95px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 18%, rgba(37, 99, 235, .22), transparent 30%),
    radial-gradient(circle at 10% 88%, rgba(235, 28, 101, .12), transparent 28%),
    var(--navy-950);
}

.seo-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .36;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 50px 50px;
}

.seo-hero-glow {
  position: absolute;
  right: -220px;
  top: 60px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.18), transparent 67%);
}

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

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 34px;
  color: #8fa0ba;
  font-size: 11px;
}

.breadcrumb a {
  color: #cbd5e1;
}

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

.seo-hero h1 {
  max-width: 920px;
  margin: 26px 0 0;
  color: var(--white);
  font-size: clamp(54px, 6.6vw, 88px);
  line-height: .98;
  letter-spacing: -.06em;
}

.seo-hero-inner > p {
  max-width: 760px;
  margin: 28px 0 0;
  color: #aebbd0;
  font-size: 18px;
  line-height: 1.72;
}

.seo-hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.seo-hero-actions .text-link {
  color: #dce7f8;
}

.seo-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  max-width: 820px;
  margin-top: 54px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.05);
}

.seo-proof span {
  flex: 1 1 220px;
  padding: 20px 24px;
  color: #9cabbe;
  font-size: 11px;
  line-height: 1.5;
  background: rgba(7,13,26,.35);
}

.seo-proof strong {
  display: block;
  color: var(--white);
  font-size: 17px;
}

.seo-answer-section {
  padding: 76px 0;
  background: var(--blue-soft);
}

.seo-answer {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 65px;
  align-items: start;
}

.answer-label {
  display: inline-flex;
  justify-content: center;
  padding: 8px 12px;
  color: var(--blue);
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: var(--white);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.seo-answer h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.seo-answer p {
  max-width: 870px;
  margin: 22px 0 0;
  color: #475569;
  font-size: 17px;
  line-height: 1.82;
}

.law-source-section {
  padding: 0 0 38px;
  background: var(--blue-soft);
}

.law-source-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 25px 28px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid #cfe0ff;
  border-radius: 18px;
}

.law-source-note span,
.law-source-note strong {
  display: block;
}

.law-source-note span {
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.law-source-note strong {
  color: #334155;
  font-size: 12px;
  line-height: 1.55;
}

.law-source-note a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
}

.law-source-note a:hover {
  color: var(--blue-dark);
}

.seo-content-section {
  padding-top: 65px;
  padding-bottom: 65px;
}

.seo-content-block {
  display: grid;
  grid-template-columns: 80px minmax(0, 1.15fr) minmax(310px, .85fr);
  gap: 46px;
  align-items: start;
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}

.seo-content-block:last-child {
  border-bottom: 0;
}

.seo-content-number {
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 760;
  letter-spacing: .1em;
}

.seo-content-copy h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.06;
  letter-spacing: -.045em;
}

.seo-content-copy p {
  margin: 20px 0 0;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.8;
}

.seo-bullet-list {
  display: grid;
  gap: 13px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.seo-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #475569;
  font-size: 13px;
  line-height: 1.55;
}

.seo-bullet-list li > span {
  display: grid;
  flex: 0 0 27px;
  width: 27px;
  height: 27px;
  place-items: center;
  margin-top: -3px;
  color: var(--green);
  border-radius: 9px;
  background: var(--green-soft);
}

.seo-related-section,
.seo-hub-section {
  background: var(--surface);
}

.seo-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.seo-hub-section .seo-related-grid {
  grid-template-columns: repeat(2, 1fr);
}

.seo-related-card {
  display: flex;
  min-height: 240px;
  padding: 30px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.seo-related-card:hover {
  transform: translateY(-4px);
  border-color: #bfdbfe;
  box-shadow: 0 22px 55px rgba(15, 23, 42, .1);
}

.seo-related-card > span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.seo-related-card > strong {
  max-width: 420px;
  margin-top: 24px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.18;
  letter-spacing: -.03em;
}

.seo-related-card > small {
  margin-top: auto;
  padding-top: 30px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
}

.not-found {
  display: grid;
  min-height: 760px;
  padding: 150px 0 90px;
  place-items: center;
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(37,99,235,.2), transparent 35%),
    var(--navy-950);
}

.not-found .shell {
  max-width: 720px;
}

.not-found .shell > span {
  color: var(--pink);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .14em;
}

.not-found h1 {
  margin: 24px 0 0;
  font-size: clamp(52px, 8vw, 86px);
  line-height: 1;
  letter-spacing: -.06em;
}

.not-found p {
  max-width: 590px;
  margin: 25px auto 34px;
  color: #aebbd0;
  font-size: 16px;
  line-height: 1.75;
}

.not-found .shell > div {
  display: flex;
  justify-content: center;
  gap: 14px;
}

@media (max-width: 900px) {
  .seo-hero {
    min-height: 0;
  }

  .seo-answer {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .answer-label {
    justify-self: start;
  }

  .law-source-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .seo-content-block {
    grid-template-columns: 52px 1fr;
    gap: 26px;
  }

  .seo-bullet-list {
    grid-column: 2;
  }

  .seo-related-grid,
  .seo-hub-section .seo-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .seo-hero {
    padding: 120px 0 72px;
  }

  .seo-hero h1 {
    font-size: clamp(43px, 13vw, 61px);
  }

  .seo-hero-inner > p {
    font-size: 15px;
  }

  .seo-hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .seo-hero-actions .button {
    width: 100%;
  }

  .seo-proof {
    flex-direction: column;
  }

  .seo-proof span {
    flex-basis: auto;
  }

  .seo-answer-section {
    padding: 62px 0;
  }

  .seo-answer p {
    font-size: 15px;
  }

  .seo-content-block {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 48px 0;
  }

  .seo-bullet-list {
    grid-column: auto;
    margin-top: 10px;
  }

  .seo-related-grid,
  .seo-hub-section .seo-related-grid {
    grid-template-columns: 1fr;
  }

  .seo-related-card {
    min-height: 210px;
  }

  .not-found .shell > div {
    align-items: stretch;
    flex-direction: column;
  }
}

/* Ajuste fino para teléfonos */
@media (max-width: 480px) {
  html {
    scroll-padding-top: 76px;
  }

  body {
    overflow-x: clip;
  }

  .shell,
  .nav-shell {
    width: min(100% - 32px, 448px);
  }

  .site-header {
    height: 68px;
  }

  .brand {
    width: 146px;
    height: 56px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    border-radius: 11px;
  }

  .nav-links {
    left: 16px;
    right: 16px;
    top: 62px;
    padding: 13px;
    border-radius: 16px;
  }

  .hero {
    padding: 105px 0 52px;
  }

  .eyebrow {
    max-width: 100%;
    padding: 7px 11px;
    line-height: 1.35;
  }

  .hero h1 {
    margin: 20px 0 18px;
    font-size: clamp(39px, 11.2vw, 48px);
    line-height: 1.02;
    letter-spacing: -.048em;
  }

  .hero h1 em {
    white-space: normal;
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-actions {
    gap: 14px;
    margin-top: 26px;
  }

  .button {
    min-height: 54px;
    padding: 0 18px;
    border-radius: 14px;
    line-height: 1.25;
    text-align: center;
  }

  .launch-block {
    margin-top: 28px;
    padding: 15px;
    border-radius: 17px;
  }

  .launch-kicker {
    font-size: 9px;
    line-height: 1.45;
  }

  .countdown {
    gap: 5px;
  }

  .countdown-unit {
    display: grid;
    min-height: 62px;
    padding: 8px 2px;
    place-content: center;
    border-radius: 10px;
  }

  .countdown-unit strong {
    font-size: 22px;
  }

  .countdown-unit span {
    font-size: 8px;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 25px;
  }

  .hero-proof div {
    min-width: 0;
    padding: 0 9px;
    text-align: center;
  }

  .hero-proof div:first-child {
    padding-left: 0;
  }

  .hero-proof div:last-child {
    padding-right: 0;
  }

  .hero-proof div:not(:last-child)::after {
    top: 3px;
    height: 34px;
  }

  .hero-proof strong {
    font-size: 13px;
  }

  .hero-proof span {
    font-size: 9px;
    line-height: 1.4;
  }

  .hero-visual {
    width: 100%;
    height: 520px;
    margin: 24px auto -8px;
  }

  .phone-left,
  .phone-right,
  .orbit-two {
    display: none;
  }

  .phone-center {
    top: 26px;
    width: min(72vw, 266px);
    height: auto;
    aspect-ratio: 246 / 425;
    border-width: 7px;
    border-radius: 29px;
  }

  .orbit-one {
    inset: 55px 34px 52px;
  }

  .floating-note {
    width: min(145px, 42vw);
    min-width: 0;
    gap: 8px;
    padding: 9px;
    border-radius: 13px;
  }

  .floating-note .note-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }

  .floating-note strong {
    font-size: 10px;
  }

  .floating-note span span {
    font-size: 8px;
  }

  .note-top {
    top: 40px;
    right: 0;
  }

  .note-bottom {
    left: 0;
    bottom: 54px;
  }

  .always-on {
    left: 50%;
    right: auto;
    bottom: 6px;
    padding: 9px 13px;
    white-space: nowrap;
    transform: translateX(-50%);
  }

  .trust-inner {
    align-items: stretch;
    padding: 25px 0;
  }

  .trust-inner > p {
    max-width: none;
    text-align: center;
  }

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

  .client-logo {
    padding: 12px 8px;
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
  }

  .client-logo.colvin {
    grid-column: 1 / -1;
  }

  .evolution-panel {
    gap: 30px;
    padding: 30px 20px;
    border-radius: 22px;
  }

  .evolution-copy h2,
  .law-home-copy h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  .evolution-step {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 13px;
    padding: 15px;
    border-radius: 15px;
  }

  .evolution-step > span {
    width: 40px;
    height: 40px;
    border-radius: 11px;
  }

  .section,
  .ai-section,
  .brand-section {
    padding: 68px 0;
  }

  .section-heading h2,
  .ai-copy h2,
  .brand-copy h2,
  .faq-heading h2,
  .cta-inner h2 {
    font-size: 34px;
    line-height: 1.1;
  }

  .benefit-card {
    min-height: 0;
    padding: 24px;
    border-radius: 20px;
  }

  .benefit-card h3 {
    margin-top: 28px;
  }

  .step-card {
    border-radius: 20px;
  }

  .step-copy {
    min-height: 0;
    padding: 24px 22px;
  }

  .step-card h3 {
    margin-top: 21px;
  }

  .step-image {
    height: 320px;
    margin: 0 10px 10px;
    border-radius: 15px;
  }

  .privacy-caption {
    align-items: flex-start;
    margin-top: 22px;
    text-align: left;
    line-height: 1.55;
  }

  .chat-panel {
    border-radius: 20px;
  }

  .chat-header {
    min-height: 70px;
    padding: 0 14px;
  }

  .chat-body {
    min-height: 420px;
    padding-inline: 13px;
  }

  .channel-card,
  .industry-card {
    border-radius: 16px;
  }

  .channel-card {
    min-height: 68px;
    padding: 0 16px;
  }

  .industry-card {
    min-height: 105px;
    padding: 18px;
  }

  .brand-grid {
    gap: 44px;
  }

  .brand-visual {
    height: 390px;
  }

  .brand-card-back {
    display: none;
  }

  .brand-card-front {
    left: 50%;
    right: auto;
    width: min(100%, 300px);
    height: 360px;
    transform: translateX(-50%);
  }

  .law-home-grid {
    gap: 38px;
  }

  .law-home-pillars article {
    min-height: 0;
    padding: 22px;
    border-radius: 18px;
  }

  .law-home-pillars strong {
    margin-top: 20px;
  }

  .faq-grid {
    gap: 38px;
  }

  .faq-list summary {
    padding-block: 21px;
    font-size: 13px;
    line-height: 1.45;
  }

  .footer-grid {
    padding-top: 52px;
    padding-bottom: 42px;
  }

  .seo-hero {
    padding: 108px 0 62px;
  }

  .seo-hero h1 {
    margin-top: 21px;
    font-size: 40px;
    line-height: 1.03;
    letter-spacing: -.05em;
  }

  .breadcrumb {
    margin-bottom: 24px;
    line-height: 1.45;
  }

  .seo-hero-inner > p {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.65;
  }

  .seo-hero-actions {
    margin-top: 29px;
  }

  .seo-proof {
    margin-top: 35px;
    border-radius: 15px;
  }

  .seo-proof span {
    padding: 16px 18px;
  }

  .seo-answer-section {
    padding: 52px 0;
  }

  .seo-answer {
    gap: 21px;
  }

  .seo-answer h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  .seo-answer p {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.72;
  }

  .law-source-note {
    gap: 16px;
    padding: 20px;
    border-radius: 15px;
  }

  .seo-content-block {
    gap: 16px;
    padding: 40px 0;
  }

  .seo-content-copy h2 {
    font-size: 30px;
    line-height: 1.1;
  }

  .seo-related-card {
    min-height: 0;
    padding: 24px;
    border-radius: 19px;
  }

  .seo-related-card > strong {
    margin-top: 19px;
    font-size: 21px;
  }

  .final-cta {
    padding: 74px 0;
  }
}
