/* === Zebra Insurtech — Redesign demo by Vortik === */

:root {
  --orange: #FF6B1A;
  --orange-2: #FF8A47;
  --orange-deep: #C24500;
  --black: #0A0A0A;
  --ink: #15110D;
  --off: #FAFAFA;
  --paper: #F4EFE8;
  --green: #00D27A;
  --line: rgba(255,255,255,0.08);
  --line-dark: rgba(10,10,10,0.08);
  --muted: rgba(255,255,255,0.62);
  --muted-dark: rgba(10,10,10,0.6);
  --radius: 14px;
  --maxw: 1280px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--black); color: var(--off); }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-feature-settings: 'ss01','cv11';
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.skip {
  position: absolute; top: -40px; left: 12px; background: var(--orange); color: #000;
  padding: 8px 12px; border-radius: 8px; z-index: 1000;
}
.skip:focus { top: 12px; }

.display { font-family: 'Space Grotesk', sans-serif; letter-spacing: -0.02em; line-height: 1.02; font-weight: 600; }
.mono { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .wrap { padding: 0 20px; } }

/* === NAV === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 240ms ease, border-color 240ms ease, backdrop-filter 240ms;
  border-bottom: 1px solid transparent;
}
.nav.solid { background: rgba(10,10,10,0.78); backdrop-filter: blur(14px) saturate(140%); border-bottom-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 14px; color: rgba(255,255,255,0.78); transition: color 160ms; }
.nav-links a:hover { color: #fff; }
.brand { display: flex; align-items: center; gap: 10px; font-family: 'Space Grotesk'; font-weight: 600; font-size: 19px; letter-spacing: -0.01em; }
.brand-mark { width: 26px; height: 26px; display: inline-block; }
@media (max-width: 860px) { .nav-links { display: none; } }

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px; border-radius: 999px; font-size: 14px; font-weight: 500;
  transition: transform 180ms, box-shadow 200ms, background 200ms;
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn-primary { background: var(--orange); color: #0A0A0A; font-weight: 600; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 24px -8px rgba(255,107,26,0.7), 0 1px 0 rgba(255,255,255,0.2) inset; }
.btn-ghost { border: 1px solid rgba(255,255,255,0.2); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.35); }
.btn-dark { background: #0A0A0A; color: #fff; }
.btn-dark:hover { transform: translateY(-1px); }
.btn-white { background: #fff; color: #0A0A0A; font-weight: 600; }
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 8px 24px -8px rgba(0,0,0,0.4); }
.btn-lg { padding: 16px 24px; font-size: 15px; }
.btn .arr { transition: transform 220ms; }
.btn:hover .arr { transform: translateX(3px); }

/* shimmer */
.btn::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,0.35) 50%, transparent 65%);
  transform: translateX(-120%); transition: transform 700ms;
  pointer-events: none;
}
.btn:hover::after { transform: translateX(120%); }
.btn-ghost::after, .btn-dark::after { background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,0.12) 50%, transparent 65%); }

/* === HERO === */
.hero { position: relative; min-height: 100vh; padding: 140px 0 80px; overflow: hidden; isolation: isolate; }
.hero-bg, .hero-mesh, .hero-stripes, .hero-vignette { position: absolute; inset: 0; z-index: -1; }
.hero-mesh {
  background:
    radial-gradient(60% 80% at 18% 30%, rgba(255,107,26,0.28), transparent 60%),
    radial-gradient(50% 70% at 90% 80%, rgba(255,107,26,0.18), transparent 65%),
    radial-gradient(70% 90% at 50% 110%, rgba(194,69,0,0.4), transparent 60%),
    #0A0A0A;
  animation: meshShift 14s ease-in-out infinite alternate;
}
@keyframes meshShift {
  0%   { background-position: 0% 0%, 100% 100%, 50% 100%; }
  100% { background-position: 8% -6%, 92% 106%, 50% 95%; }
}
.hero-stripes {
  background-image: repeating-linear-gradient(
    115deg,
    rgba(255,255,255,0.025) 0 1px,
    transparent 1px 48px,
    rgba(255,107,26,0.05) 48px 49px,
    transparent 49px 96px
  );
  animation: stripeSlide 38s linear infinite;
  mask-image: radial-gradient(80% 80% at 50% 40%, #000 40%, transparent 100%);
}
@keyframes stripeSlide { from { background-position: 0 0; } to { background-position: 600px -300px; } }
.hero-vignette {
  background: radial-gradient(80% 70% at 50% 110%, rgba(0,0,0,0.5), transparent 70%),
              linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.6));
}
.hero-eyebrow {
  display: inline-flex; gap: 10px; align-items: center;
  padding: 6px 12px 6px 8px; border-radius: 999px;
  background: rgba(255,107,26,0.12); border: 1px solid rgba(255,107,26,0.35);
  color: #FFB683; font-size: 12px; margin-bottom: 28px;
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(0,210,122,0.18); }
.hero h1 {
  font-family: 'Space Grotesk'; font-weight: 600;
  font-size: clamp(40px, 6.4vw, 84px); line-height: 0.98; letter-spacing: -0.035em;
  margin: 0 0 22px; max-width: 16ch; text-wrap: balance;
}
.hero h1 .accent { color: var(--orange); }
.hero h1 .strike-wrap { position: relative; display: inline-block; }
.hero-sub {
  font-size: clamp(17px, 1.4vw, 21px); line-height: 1.5; color: rgba(255,255,255,0.74);
  max-width: 58ch; margin: 0 0 36px; text-wrap: pretty;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-trust { display: flex; align-items: center; gap: 18px; margin-bottom: 48px; flex-wrap: wrap; }
.hero-trust .label { font-size: 12px; color: rgba(255,255,255,0.5); }
.logo-pl {
  border: 1px dashed rgba(255,255,255,0.22); padding: 6px 12px; border-radius: 6px;
  font-family: 'Space Grotesk'; font-weight: 600; font-size: 13px; color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}
.hero-counters {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border-top: 1px solid var(--line); padding-top: 28px; max-width: 760px;
}
.counter { padding: 0 24px; border-right: 1px solid var(--line); }
.counter:last-child { border-right: none; }
.counter:first-child { padding-left: 0; }
.counter .val { font-family: 'Space Grotesk'; font-weight: 600; font-size: clamp(28px, 3vw, 40px); letter-spacing: -0.02em; color: #fff; }
.counter .val .pre { color: var(--orange); }
.counter .lbl { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 6px; }
@media (max-width: 720px) {
  .hero-counters { grid-template-columns: 1fr; }
  .counter { border-right: none; border-bottom: 1px solid var(--line); padding: 16px 0; }
  .counter:first-child { padding-top: 0; }
  .counter:last-child { border-bottom: none; padding-bottom: 0; }
  .hero-ctas .btn { flex: 1 1 100%; justify-content: center; }
}

/* fade reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* === LOGO BAR === */
.logobar { padding: 56px 0; background: #07070A; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.logobar .lbl { text-align: center; color: rgba(255,255,255,0.5); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 28px; }
.marquee { display: flex; gap: 64px; animation: marq 36s linear infinite; width: max-content; }
.logobar:hover .marquee { animation-play-state: paused; }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-mask { mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.logo-card {
  height: 44px; padding: 0 22px; display: flex; align-items: center; justify-content: center;
  border: 1px dashed rgba(255,255,255,0.18); border-radius: 8px;
  font-family: 'Space Grotesk'; font-weight: 600; font-size: 17px; color: rgba(255,255,255,0.6); white-space: nowrap;
  letter-spacing: -0.01em;
}

/* === SECTIONS === */
section { position: relative; }
.section-dark { background: var(--black); color: var(--off); padding: 120px 0; }
.section-light { background: var(--off); color: var(--ink); padding: 120px 0; }
.section-paper { background: var(--paper); color: var(--ink); padding: 120px 0; }
@media (max-width: 720px) { .section-dark, .section-light, .section-paper { padding: 80px 0; } }

.section-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: 'JetBrains Mono'; font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--orange); margin-bottom: 22px; }
.section-eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--orange); display: inline-block; }
.section-dark .section-eyebrow { color: #FFB683; }
.section-dark .section-eyebrow::before { background: #FFB683; }

h2.h2 {
  font-family: 'Space Grotesk'; font-weight: 600;
  font-size: clamp(32px, 4.5vw, 56px); line-height: 1.02; letter-spacing: -0.03em;
  margin: 0 0 22px; max-width: 22ch; text-wrap: balance;
}
.h-sub { font-size: clamp(16px, 1.3vw, 19px); line-height: 1.55; max-width: 62ch; opacity: 0.75; }
.section-light .h-sub, .section-paper .h-sub { color: var(--muted-dark); opacity: 1; }

/* === PROBLEMA CARDS === */
.prob-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 64px; }
@media (max-width: 860px) { .prob-grid { grid-template-columns: 1fr; } }
.prob-card {
  padding: 36px 28px 28px; border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.prob-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--orange), transparent);
  opacity: 0; transition: opacity 240ms;
}
.prob-card:hover::before { opacity: 1; }
.prob-card .emj { font-size: 30px; margin-bottom: 26px; display: block; filter: grayscale(0.2); }
.prob-card .h { font-family: 'Space Grotesk'; font-size: 21px; font-weight: 600; line-height: 1.2; letter-spacing: -0.01em; margin: 0 0 10px; }
.prob-card .p { font-size: 14px; line-height: 1.55; color: var(--muted); margin: 0; }
.prob-card .stat { font-family: 'Space Grotesk'; font-weight: 600; color: var(--orange); }

/* === SOLUCIÓN === */
.sol-stack { margin-top: 64px; display: flex; flex-direction: column; gap: 16px; }
.sol-row {
  display: grid; grid-template-columns: 80px 1.2fr 2fr; gap: 32px; align-items: start;
  padding: 32px; border-radius: 20px;
  background: #fff; border: 1px solid rgba(10,10,10,0.06);
  transition: transform 280ms, box-shadow 280ms;
}
.sol-row:hover { transform: translateY(-2px); box-shadow: 0 24px 48px -28px rgba(10,10,10,0.18); }
.sol-icn {
  width: 60px; height: 60px; border-radius: 14px; background: #0A0A0A; color: var(--orange);
  display: grid; place-items: center; flex-shrink: 0;
}
.sol-row .h { font-family: 'Space Grotesk'; font-size: 26px; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 6px; }
.sol-row .lead { font-size: 14px; color: var(--muted-dark); margin: 0; }
.sol-bullets { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.sol-bullets li { display: flex; gap: 10px; align-items: baseline; font-size: 14px; }
.sol-bullets svg { flex-shrink: 0; }
@media (max-width: 860px) {
  .sol-row { grid-template-columns: 1fr; gap: 18px; padding: 24px; }
}

/* === COMO FUNCIONA timeline === */
.timeline { position: relative; margin-top: 80px; }
.timeline-track { position: absolute; left: 0; right: 0; top: 38px; height: 2px; background: rgba(255,255,255,0.08); }
.timeline-fill { position: absolute; left: 0; top: 0; bottom: 0; background: linear-gradient(90deg, var(--orange), var(--orange-2)); transition: width 80ms linear; }
.timeline-steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.tl-step { position: relative; padding-top: 0; }
.tl-step .num {
  width: 76px; height: 76px; border-radius: 50%;
  background: #0A0A0A; border: 2px solid var(--orange);
  display: grid; place-items: center; position: relative; z-index: 2;
  font-family: 'Space Grotesk'; font-size: 28px; font-weight: 600; color: var(--orange);
  box-shadow: 0 0 0 8px #0A0A0A, 0 0 40px -6px rgba(255,107,26,0.5);
}
.tl-step .meta { font-family: 'JetBrains Mono'; font-size: 11px; color: var(--orange); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 28px; }
.tl-step .h { font-family: 'Space Grotesk'; font-size: 24px; font-weight: 600; letter-spacing: -0.015em; margin: 8px 0 8px; }
.tl-step .p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.55; }
@media (max-width: 860px) {
  .timeline-track { left: 38px; right: auto; top: 0; bottom: 0; width: 2px; height: auto; }
  .timeline-fill { width: 100% !important; height: var(--vfill, 0%); }
  .timeline-steps { grid-template-columns: 1fr; gap: 48px; }
  .tl-step .num { margin-left: 0; }
}

/* === DASHBOARD === */
.dash-wrap { margin-top: 56px; perspective: 1800px; }
.dash {
  background: #0F0F12; border: 1px solid var(--line); border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 60px 120px -40px rgba(255,107,26,0.25), 0 30px 60px -30px rgba(0,0,0,0.6);
  transform-style: preserve-3d; transition: transform 320ms cubic-bezier(.2,.7,.2,1);
}
.dash-chrome { display: flex; align-items: center; gap: 8px; padding: 12px 14px; border-bottom: 1px solid var(--line); background: #0B0B0E; }
.dash-chrome .dot { width: 11px; height: 11px; border-radius: 50%; background: #2a2a30; }
.dash-chrome .url { margin-left: 16px; font-family: 'JetBrains Mono'; font-size: 12px; color: rgba(255,255,255,0.5); }
.dash-body { display: grid; grid-template-columns: 220px 1fr; min-height: 540px; }
@media (max-width: 720px) { .dash-body { grid-template-columns: 1fr; min-height: auto; } }
.dash-side { background: #0B0B0E; border-right: 1px solid var(--line); padding: 24px 18px; }
.dash-side .brand-mini { display: flex; align-items: center; gap: 8px; padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--line); font-family: 'Space Grotesk'; font-weight: 600; }
.dash-side ul { list-style: none; padding: 0; margin: 0; }
.dash-side li { font-size: 13px; padding: 9px 10px; border-radius: 7px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 10px; }
.dash-side li.active { background: rgba(255,107,26,0.12); color: var(--orange); }
.dash-side li .ico { width: 14px; height: 14px; border-radius: 4px; background: rgba(255,255,255,0.1); }
.dash-side li.active .ico { background: var(--orange); }
.dash-main { padding: 24px 28px; display: flex; flex-direction: column; gap: 18px; }
.dash-head { display: flex; justify-content: space-between; align-items: center; }
.dash-head .ttl { font-family: 'Space Grotesk'; font-weight: 600; font-size: 18px; }
.dash-head .pill { padding: 6px 10px; border-radius: 999px; background: rgba(0,210,122,0.12); color: var(--green); font-size: 11px; font-family: 'JetBrains Mono'; }
.kpi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 720px) { .kpi-grid { grid-template-columns: 1fr; } }
.kpi { background: #14141A; border: 1px solid var(--line); border-radius: 12px; padding: 16px; }
.kpi .l { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; }
.kpi .v { font-family: 'Space Grotesk'; font-size: 26px; font-weight: 600; margin-top: 6px; letter-spacing: -0.02em; }
.kpi .d { font-size: 11px; margin-top: 4px; }
.kpi .d.up { color: var(--green); }
.kpi .d.dn { color: #ff5b5b; }
.chart-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 12px; }
@media (max-width: 720px) { .chart-grid { grid-template-columns: 1fr; } }
.chart-card { background: #14141A; border: 1px solid var(--line); border-radius: 12px; padding: 16px; }
.chart-card .h { font-size: 13px; font-weight: 600; margin-bottom: 12px; display: flex; justify-content: space-between; align-items: center; }
.chart-card .h .leg { font-size: 11px; color: rgba(255,255,255,0.5); font-weight: 400; }
.placeholder-tag {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  padding: 4px 8px; border-radius: 4px; background: rgba(255,107,26,0.18); color: #FFB683;
  font-family: 'JetBrains Mono'; font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase;
  border: 1px dashed rgba(255,107,26,0.5);
}
.dash-feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
@media (max-width: 720px) { .dash-feats { grid-template-columns: 1fr; } }
.dash-feat { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: rgba(255,255,255,0.78); }
.dash-feat .chk { width: 22px; height: 22px; border-radius: 50%; background: rgba(0,210,122,0.15); color: var(--green); display: grid; place-items: center; flex-shrink: 0; }

/* === PARA QUIÉN === */
.tabs { display: flex; gap: 4px; margin-top: 56px; padding: 6px; background: rgba(10,10,10,0.04); border-radius: 14px; width: fit-content; border: 1px solid rgba(10,10,10,0.05); }
.tab { padding: 10px 18px; border-radius: 10px; font-size: 14px; color: rgba(10,10,10,0.6); font-weight: 500; transition: all 200ms; }
.tab.active { background: #0A0A0A; color: #fff; }
.audience-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; margin-top: 32px; border-radius: 22px; overflow: hidden; border: 1px solid rgba(10,10,10,0.08); background: #fff; min-height: 460px; }
@media (max-width: 860px) { .audience-grid { grid-template-columns: 1fr; } }
.aud-content { padding: 48px; display: flex; flex-direction: column; justify-content: space-between; }
.aud-content .l { font-family: 'JetBrains Mono'; font-size: 11px; color: var(--orange); letter-spacing: 0.12em; text-transform: uppercase; }
.aud-content h3 { font-family: 'Space Grotesk'; font-size: 38px; font-weight: 600; letter-spacing: -0.025em; line-height: 1.05; margin: 14px 0 16px; }
.aud-content .lead { font-size: 16px; line-height: 1.55; color: var(--muted-dark); margin: 0 0 28px; }
.aud-bullets { list-style: none; padding: 0; margin: 0 0 36px; display: grid; gap: 12px; }
.aud-bullets li { display: flex; gap: 10px; font-size: 14px; color: rgba(10,10,10,0.78); }
.aud-bullets li::before { content: "—"; color: var(--orange); font-weight: 600; }
.aud-visual { background: #0A0A0A; position: relative; overflow: hidden; }
.aud-visual::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(110deg, transparent 0 18px, rgba(255,107,26,0.06) 18px 19px, transparent 19px 38px);
}

/* phone mock for fintech */
.phone-mock {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%) rotate(-4deg);
  width: 260px; height: 420px; border-radius: 38px;
  background: #0F0F12; border: 8px solid #1a1a1f; padding: 22px 18px;
  box-shadow: 0 40px 80px -30px rgba(255,107,26,0.4);
  display: flex; flex-direction: column; gap: 12px;
}
.phone-mock .notch { position: absolute; left: 50%; top: 8px; transform: translateX(-50%); width: 90px; height: 18px; background: #000; border-radius: 0 0 12px 12px; }
.phone-mock .topbar { display: flex; justify-content: space-between; font-family: 'JetBrains Mono'; font-size: 10px; color: rgba(255,255,255,0.5); margin-top: 6px; }
.phone-mock .card-h { font-family: 'Space Grotesk'; font-size: 14px; color: rgba(255,255,255,0.8); margin: 10px 0 6px; }
.phone-mock .seguro-card {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  border-radius: 14px; padding: 16px; color: #fff;
  position: relative; overflow: hidden;
}
.phone-mock .seguro-card::after {
  content: ""; position: absolute; right: -20px; top: -20px; width: 80px; height: 80px;
  border-radius: 50%; background: rgba(255,255,255,0.12);
}
.phone-mock .seguro-card .l { font-size: 10px; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.08em; }
.phone-mock .seguro-card .v { font-family: 'Space Grotesk'; font-size: 20px; font-weight: 600; margin-top: 4px; }
.phone-mock .seguro-card .row { display: flex; justify-content: space-between; margin-top: 14px; font-size: 11px; }
.phone-mock .seguro-card .status { background: rgba(0,210,122,0.9); color: #003919; padding: 2px 8px; border-radius: 999px; font-size: 10px; font-weight: 600; }
.phone-mock .quick-list { display: grid; gap: 8px; }
.phone-mock .ql {
  display: flex; align-items: center; gap: 10px; padding: 9px 10px;
  background: rgba(255,255,255,0.05); border-radius: 10px; font-size: 11px; color: rgba(255,255,255,0.7);
}
.phone-mock .ql .ic { width: 22px; height: 22px; border-radius: 6px; background: rgba(255,107,26,0.18); }

/* api visual */
.api-vis { position: absolute; inset: 0; display: grid; place-items: center; }
.api-vis svg { width: 80%; max-width: 360px; height: auto; filter: drop-shadow(0 0 40px rgba(255,107,26,0.4)); }

/* broker visual */
.broker-vis { position: absolute; inset: 0; padding: 32px; display: flex; flex-direction: column; gap: 12px; justify-content: center; }
.broker-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; background: rgba(255,255,255,0.04); border: 1px solid var(--line); border-radius: 12px;
  font-size: 13px; color: rgba(255,255,255,0.8);
}
.broker-row .gain { color: var(--green); font-family: 'Space Grotesk'; font-weight: 600; }

/* === TESTIMONIOS === */
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 56px; }
@media (max-width: 860px) { .testi-grid { grid-template-columns: 1fr; } }
.testi {
  padding: 36px; background: linear-gradient(180deg, #111114, #0B0B0E);
  border: 1px solid var(--line); border-radius: 18px;
  display: flex; flex-direction: column; gap: 24px; position: relative;
}
.testi .quote { font-family: 'Space Grotesk'; font-size: 22px; line-height: 1.35; letter-spacing: -0.015em; }
.testi .quote::before { content: "“"; font-size: 56px; line-height: 0; vertical-align: -22px; color: var(--orange); margin-right: 6px; font-family: serif; }
.testi-foot { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--line); justify-content: space-between; }
.testi-id { display: flex; align-items: center; gap: 12px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), var(--orange-deep)); display: grid; place-items: center; font-family: 'Space Grotesk'; font-weight: 600; }
.testi-id .nm { font-size: 14px; font-weight: 600; }
.testi-id .ro { font-size: 12px; color: var(--muted); }
.testi .metric { padding: 10px 14px; background: rgba(0,210,122,0.1); border: 1px solid rgba(0,210,122,0.25); color: var(--green); border-radius: 10px; font-family: 'Space Grotesk'; font-weight: 600; font-size: 14px; }

/* === CTA FINAL === */
.cta-final { background: var(--orange); color: #0A0A0A; padding: 120px 0; position: relative; overflow: hidden; }
.cta-final::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(115deg, transparent 0 28px, rgba(255,255,255,0.06) 28px 29px, transparent 29px 56px);
}
.cta-final-inner { position: relative; text-align: center; max-width: 760px; margin: 0 auto; }
.cta-final h2 { font-family: 'Space Grotesk'; font-size: clamp(36px, 5vw, 64px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.02; margin: 0 0 18px; }
.cta-final p { font-size: 18px; line-height: 1.5; opacity: 0.85; max-width: 56ch; margin: 0 auto 32px; }
.cta-trust-line { margin-top: 24px; font-family: 'JetBrains Mono'; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; }

/* === FOOTER === */
footer { background: #07070A; color: rgba(255,255,255,0.7); padding: 80px 0 36px; border-top: 1px solid var(--line); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-col h4 { font-family: 'Space Grotesk'; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin: 0 0 16px; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot-col li a { font-size: 14px; color: rgba(255,255,255,0.75); }
.foot-col li a:hover { color: var(--orange); }
.foot-newsletter { margin-top: 14px; }
.foot-newsletter form { display: flex; gap: 8px; }
.foot-newsletter input {
  flex: 1; background: rgba(255,255,255,0.05); border: 1px solid var(--line); color: #fff;
  padding: 10px 12px; border-radius: 8px; font: inherit; font-size: 13px;
}
.foot-newsletter input:focus { outline: 1px solid var(--orange); border-color: var(--orange); }
.foot-socials { display: flex; gap: 10px; margin-top: 18px; }
.foot-socials a {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.05); border: 1px solid var(--line);
  display: grid; place-items: center; transition: all 200ms;
}
.foot-socials a:hover { background: var(--orange); color: #0A0A0A; border-color: var(--orange); }
.foot-bottom {
  margin-top: 60px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: 12px; color: rgba(255,255,255,0.45);
}
.foot-backed { display: flex; align-items: center; gap: 10px; font-size: 12px; color: rgba(255,255,255,0.6); }

/* small svgs */
.stripe-divider { display: block; width: 100%; height: 24px; }

/* Demo-tag (Vortik) */
.demo-banner {
  position: fixed; bottom: 16px; left: 16px; z-index: 99;
  padding: 10px 14px; border-radius: 999px;
  background: rgba(10,10,10,0.7); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12); color: #fff;
  font-size: 12px; display: flex; align-items: center; gap: 8px;
}
.demo-banner .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }

@media (prefers-reduced-motion: reduce) {
  .hero-mesh, .hero-stripes, .marquee { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn::after { display: none; }
}
