:root {
  --night: #061a3a;
  --night-2: #0b2a54;
  --ink: #102033;
  --muted: #5f6d80;
  --cyan: #00c7d9;
  --green: #20b26b;
  --paper: #f6f9fc;
  --white: #ffffff;
  --line: #dbe5ef;
  --amber: #ffb84d;
  --danger: #ef476f;
  --shadow: 0 24px 70px rgba(6, 26, 58, .15);
  --radius: 12px;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
::selection {
  color: var(--night);
  background: rgba(0, 199, 217, .32);
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
p { color: var(--muted); line-height: 1.65; }
h1, h2, h3, strong, b { font-family: "Manrope", "DM Sans", sans-serif; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { letter-spacing: -.05em; }
main section { scroll-margin-top: 76px; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 12px 16px;
  background: var(--night);
  color: var(--white);
  border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(219, 229, 239, .78);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
}
.scroll-progress {
  position: absolute;
  left: 0;
  right: auto;
  bottom: -1px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--danger), var(--amber), var(--cyan), var(--green));
  box-shadow: 0 0 18px rgba(0, 199, 217, .38);
  transition: width .08s linear;
}
.site-header.is-scrolled { box-shadow: 0 12px 34px rgba(6, 26, 58, .08); }
.brand { display: flex; align-items: center; width: min(178px, 44vw); height: 44px; }
.brand img { width: 178px; max-height: 40px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: clamp(14px, 3vw, 30px); color: var(--muted); font-size: .94rem; font-weight: 700; }
.site-nav a:hover { color: var(--night); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(246, 249, 252, .82);
}
.language-switcher button {
  min-width: 34px;
  height: 30px;
  padding: 0 8px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .04em;
}
.language-switcher button:hover,
.language-switcher button.is-active {
  color: var(--night);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(6, 26, 58, .1);
}
.header-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
}
.header-cta { border-color: var(--line); white-space: nowrap; }
.btn-primary { color: var(--night); background: linear-gradient(135deg, var(--cyan), #57efb4); box-shadow: 0 16px 34px rgba(0, 199, 217, .24); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 42px rgba(32, 178, 107, .3); }
.btn-secondary { color: var(--night); background: var(--white); border-color: var(--line); }
.btn { transition: transform .2s, box-shadow .2s, border-color .2s; }

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  padding: clamp(52px, 6.5vw, 82px) clamp(18px, 5vw, 72px);
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(239, 71, 111, .1), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(0, 199, 217, .2), transparent 26%),
    linear-gradient(135deg, #f8fbff 0%, #ffffff 42%, #eff8fb 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 26, 58, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 26, 58, .04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, black, transparent 92%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(500px, .98fr) minmax(480px, .96fr);
  align-items: center;
  gap: clamp(34px, 4.6vw, 60px);
  row-gap: clamp(24px, 3vw, 36px);
  max-width: 1320px;
  margin: 0 auto;
}
.hero-copy { max-width: 720px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--green);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--green);
  transform: rotate(45deg);
}
.hero h1 {
  margin-bottom: 22px;
  color: var(--night);
  font-size: clamp(3rem, 5.9vw, 5.65rem);
  line-height: .98;
}
.hero h1 span { display: block; color: var(--cyan); }
.hero-lead {
  max-width: 620px;
  margin-bottom: 24px;
  color: #33445a;
  font-size: clamp(1.08rem, 1.7vw, 1.34rem);
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.proof-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  color: var(--night);
  font-weight: 900;
}
.proof-link::after {
  content: "→";
  margin-left: 8px;
  color: var(--green);
  transition: transform .2s;
}
.proof-link:hover::after { transform: translateX(4px); }
.hero-proof {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 100%;
  margin-top: 0;
}
.truth-strip {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  justify-content: center;
  padding: 18px 22px;
  border: 1px solid rgba(239, 71, 111, .24);
  border-radius: 18px;
  color: var(--night);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .88), rgba(255, 244, 246, .92)),
    var(--white);
  box-shadow: 0 22px 60px rgba(6, 26, 58, .09);
}
.truth-strip b {
  color: var(--danger);
  font-size: .86rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.truth-strip span {
  color: var(--night);
  font-family: "Manrope", "DM Sans", sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 900;
}
.hero-proof span {
  min-height: 78px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .76);
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.35;
  box-shadow: 0 16px 36px rgba(6, 26, 58, .07);
}
.hero-proof strong {
  display: block;
  color: var(--night);
  font-size: 1.48rem;
}

.hero-visual {
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 620px;
  justify-self: end;
  margin-top: -10px;
  animation: visualEnter 1s ease both .18s;
}
.visual-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 22px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  color: var(--white);
  background: rgba(3, 16, 34, .58);
  backdrop-filter: blur(12px);
}
.audit-panel {
  position: absolute;
  right: -16px;
  bottom: 46px;
  z-index: 3;
  width: min(260px, 48%);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 20px;
  color: var(--white);
  background: rgba(3, 16, 34, .76);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
  backdrop-filter: blur(14px);
}
.audit-panel::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 8px rgba(255, 184, 77, .14);
}
.audit-panel span,
.audit-panel b,
.audit-panel small {
  display: block;
  padding-left: 28px;
}
.audit-panel span {
  color: #ffcad5;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.audit-panel b {
  margin-top: 8px;
  font-size: 1.18rem;
  line-height: 1.1;
}
.audit-panel small {
  margin-top: 8px;
  color: #b8f6dd;
  font-weight: 800;
}
.visual-caption span {
  color: #ffcad5;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.visual-caption strong {
  color: var(--white);
  font-size: .94rem;
  text-align: right;
}
.warehouse-flow {
  width: 100%;
  height: auto;
  border-radius: 28px;
  box-shadow: 0 34px 90px rgba(6, 26, 58, .27);
}
.visual-grid path {
  fill: none;
  stroke: rgba(0, 199, 217, .16);
  stroke-width: 1;
}
.svg-kicker {
  fill: var(--cyan);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .12em;
}
.route use {
  fill: none;
  stroke: rgba(255, 255, 255, .24);
  stroke-width: 3;
  stroke-dasharray: 8 12;
}
.route-out use { stroke: rgba(32, 178, 107, .45); }
.signal-dots-in circle { fill: var(--cyan); filter: drop-shadow(0 0 8px rgba(0, 199, 217, .75)); }
.signal-dots-out circle { fill: var(--green); filter: drop-shadow(0 0 8px rgba(32, 178, 107, .75)); }
.svg-card rect { fill: #ffffff; }
.output-card rect { fill: #e8fff5; stroke: rgba(32, 178, 107, .35); }
.input-card rect { stroke: rgba(0, 199, 217, .2); }
.svg-card-title { fill: var(--night); font-size: 18px; font-weight: 900; }
.svg-card-sub { fill: #60708a; font-size: 14px; font-weight: 700; }
.core-name { fill: var(--night); font-size: 18px; font-weight: 900; }
.core-sub { fill: #60708a; font-size: 13px; font-weight: 800; }

.pain, .money-leak, .certainty, .control-room, .flow, .case, .final-cta {
  padding: clamp(76px, 9vw, 118px) clamp(18px, 5vw, 72px);
}
.section-heading {
  max-width: 860px;
  margin: 0 auto 38px;
  text-align: center;
}
.section-heading h2, .control-copy h2, .case h2, .final-cta h2 {
  color: var(--night);
  font-size: clamp(2.25rem, 4.7vw, 4.8rem);
  line-height: 1.02;
}
.section-heading p {
  max-width: 760px;
  margin-inline: auto;
  font-size: 1.08rem;
  line-height: 1.75;
}

.pain {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(239, 71, 111, .24), transparent 28%),
    radial-gradient(circle at 82% 8%, rgba(255, 184, 77, .16), transparent 22%),
    linear-gradient(135deg, #020814, #061a3a 58%, #120712);
}
.pain::before {
  content: "DINERO BLOQUEADO";
  position: absolute;
  left: 50%;
  top: 28%;
  color: rgba(255, 255, 255, .035);
  font-family: "Manrope", "DM Sans", sans-serif;
  font-size: clamp(4.5rem, 12vw, 12rem);
  font-weight: 900;
  letter-spacing: -.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}
.pain > * {
  position: relative;
}
.pain .section-heading h2, .pain .section-heading p { color: var(--white); }
.pain .section-heading p { color: #b8c6d8; }
.pain .section-heading h2 {
  color: var(--white);
  text-wrap: balance;
}
.pain .section-heading h2::after {
  content: "";
  display: block;
  width: min(180px, 38vw);
  height: 5px;
  margin: 24px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--danger), var(--amber));
}
.pain-warning {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  justify-content: center;
  align-items: center;
  max-width: 980px;
  margin: -10px auto 28px;
  padding: 18px 22px;
  border: 1px solid rgba(239, 71, 111, .42);
  border-radius: 18px;
  color: #ffdce5;
  background: rgba(239, 71, 111, .12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .18);
}
.pain-warning strong {
  color: var(--amber);
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.pain-warning span {
  color: var(--white);
  font-weight: 800;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}
.pain-card {
  min-height: 300px;
  padding: 28px;
  border: 1px solid rgba(239, 71, 111, .2);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(239, 71, 111, .13), rgba(255, 255, 255, .035)),
    rgba(255, 255, 255, .04);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .16);
}
.pain-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 56px;
  border-radius: 50%;
  color: var(--white);
  background: var(--danger);
  font-weight: 900;
  box-shadow: 0 0 0 10px rgba(239, 71, 111, .12);
}
.pain-card h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1.12;
}
.pain-card p {
  margin: 0;
  color: #b8c6d8;
  line-height: 1.7;
}
.impact-box {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: center;
  max-width: 1180px;
  margin: 22px auto 0;
  padding: 28px;
  border-radius: 18px;
  border: 1px solid rgba(239, 71, 111, .38);
  background:
    radial-gradient(circle at 12% 10%, rgba(239, 71, 111, .24), transparent 28%),
    linear-gradient(135deg, rgba(239, 71, 111, .16), rgba(3, 16, 34, .92) 46%, rgba(18, 7, 18, .96));
  box-shadow: 0 28px 80px rgba(0, 0, 0, .24);
}
.impact-box::after {
  content: "COSTE OCULTO";
  position: absolute;
  right: -10px;
  bottom: -14px;
  color: rgba(255, 255, 255, .055);
  font-family: "Manrope", "DM Sans", sans-serif;
  font-size: clamp(2.8rem, 7vw, 7rem);
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: .8;
}
.impact-label {
  position: relative;
  display: block;
  margin-bottom: 8px;
  color: var(--danger);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.impact-box strong {
  position: relative;
  color: var(--amber);
  font-size: clamp(1.5rem, 3vw, 2.7rem);
  line-height: 1.05;
}
.impact-box p {
  position: relative;
  margin: 0;
  color: #d8e1ec;
  font-weight: 800;
}

.money-leak {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(239, 71, 111, .28), transparent 30%),
    radial-gradient(circle at 84% 22%, rgba(255, 184, 77, .17), transparent 26%),
    linear-gradient(135deg, #020816 0%, #061a3a 48%, #170814 100%);
}
.money-leak::before {
  content: "STOCK DESCONTROLADO";
  position: absolute;
  left: 50%;
  top: 50%;
  color: rgba(255, 255, 255, .035);
  font-family: "Manrope", "DM Sans", sans-serif;
  font-size: clamp(4rem, 12vw, 12rem);
  font-weight: 900;
  letter-spacing: -.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translate(-50%, -50%) rotate(-4deg);
}
.leak-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 64px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 32px;
  background: rgba(255, 255, 255, .075);
  box-shadow: 0 40px 110px rgba(0, 0, 0, .34);
  backdrop-filter: blur(16px);
}
.leak-card h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 5.8rem);
  line-height: .92;
}
.leak-list {
  display: grid;
  gap: 12px;
}
.leak-list p {
  position: relative;
  margin: 0;
  padding: 18px 18px 18px 46px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  color: #d7e2ef;
  background: rgba(255, 255, 255, .08);
  line-height: 1.62;
}
.leak-list p::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 26px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--danger);
  box-shadow: 0 0 0 8px rgba(239, 71, 111, .12);
}
.leak-list b {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 1.08rem;
}

.certainty {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(440px, 1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(32, 178, 107, .16), transparent 28%),
    radial-gradient(circle at 86% 28%, rgba(0, 199, 217, .18), transparent 30%),
    linear-gradient(135deg, #f8fcff, #ffffff 50%, #effbf6);
}
.certainty::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(6, 26, 58, .08);
  border-radius: 30px;
  pointer-events: none;
}
.certainty-copy {
  position: relative;
  max-width: 620px;
}
.certainty-copy h2 {
  margin-bottom: 22px;
  color: var(--night);
  font-size: clamp(2.9rem, 6.7vw, 6.4rem);
  line-height: .93;
}
.certainty-copy h2 span {
  display: block;
  color: var(--green);
}
.certainty-copy p {
  max-width: 570px;
  color: #31445c;
  font-size: 1.1rem;
  line-height: 1.72;
}
.certainty-promise {
  display: grid;
  gap: 4px;
  max-width: 560px;
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(32, 178, 107, .24);
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 50px rgba(6, 26, 58, .08);
}
.certainty-promise b {
  color: var(--green);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.certainty-promise span {
  color: var(--night);
  font-weight: 900;
}
.certainty-board {
  position: relative;
  min-height: 560px;
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(32, 178, 107, .26), transparent 28%),
    radial-gradient(circle at 20% 20%, rgba(239, 71, 111, .16), transparent 24%),
    linear-gradient(135deg, #031022, #061a3a 54%, #07344b);
  box-shadow: 0 34px 90px rgba(6, 26, 58, .28);
}
.certainty-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 199, 217, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 199, 217, .08) 1px, transparent 1px);
  background-size: 56px 56px;
}
.certainty-board::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(0, 199, 217, .54), rgba(32, 178, 107, .54), transparent);
}
.certainty-core {
  position: absolute;
  left: 50%;
  top: 42%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 168px;
  min-height: 182px;
  padding: 18px;
  translate: -50% -50%;
  border-radius: 36px;
  background: var(--white);
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .34);
}
.certainty-core img { width: 78px; }
.certainty-core b {
  margin-top: 8px;
  color: var(--night);
  font-size: .9rem;
  letter-spacing: .12em;
  line-height: 1.15;
}
.certainty-core span {
  color: #60708a;
  font-size: .72rem;
  font-weight: 900;
  line-height: 1.25;
}
.certainty-column {
  position: absolute;
  z-index: 2;
  top: 86px;
  display: grid;
  gap: 12px;
  width: min(220px, 34%);
}
.certainty-column span {
  color: #9fb2c8;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.certainty-column p {
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  color: var(--white);
  font-weight: 900;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .14);
}
.certainty-column.is-input { left: 34px; }
.certainty-column.is-input p {
  border-color: rgba(239, 71, 111, .28);
  background: rgba(239, 71, 111, .13);
}
.certainty-column.is-output { right: 34px; }
.certainty-column.is-output p {
  border-color: rgba(32, 178, 107, .34);
  background: rgba(32, 178, 107, .16);
}
.certainty-column p b {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 24px;
  margin-right: 8px;
  border-radius: 999px;
  color: var(--night);
  background: var(--green);
  font-size: .68rem;
}
.certainty-status {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 2;
  padding: 20px;
  border: 1px solid rgba(0, 199, 217, .24);
  border-radius: 20px;
  text-align: center;
  background: rgba(3, 16, 34, .74);
  backdrop-filter: blur(12px);
}
.certainty-status strong {
  display: block;
  color: var(--cyan);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}
.certainty-status small {
  display: block;
  margin-top: 8px;
  color: #c6d5e5;
  font-weight: 800;
}

.control-room {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 199, 217, .2), transparent 28%),
    radial-gradient(circle at 86% 78%, rgba(32, 178, 107, .22), transparent 30%),
    linear-gradient(135deg, #031022, #061a3a 54%, #07344b);
}
.control-room::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 199, 217, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 199, 217, .08) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}
.control-copy {
  position: relative;
  max-width: 1050px;
  margin: 0 auto 38px;
  text-align: center;
}
.control-copy h2 { color: var(--white); }
.control-copy h2 span { color: var(--cyan); }
.control-copy p {
  max-width: 760px;
  margin-inline: auto;
  color: #c6d5e5;
  font-size: 1.08rem;
}
.control-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
.before-panel,
.after-panel {
  min-height: 420px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .22);
  backdrop-filter: blur(12px);
}
.before-panel { background: linear-gradient(180deg, rgba(239, 71, 111, .16), rgba(255, 255, 255, .06)); }
.after-panel { background: linear-gradient(180deg, rgba(32, 178, 107, .18), rgba(255, 255, 255, .06)); }
.panel-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--night);
  background: var(--amber);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.after-panel .panel-label { background: var(--green); color: var(--white); }
.before-panel h3,
.after-panel h3 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
}
.before-panel ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}
.before-panel li,
.live-row {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
}
.before-panel li b,
.live-row b { color: var(--white); }
.before-panel li span,
.live-row span { color: #c6d5e5; font-size: .9rem; }
.before-panel li::after {
  content: "!";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--white);
  background: var(--danger);
  font-weight: 900;
}
.conversion-core {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 260px;
  text-align: center;
}
.conversion-core img {
  position: relative;
  z-index: 2;
  width: 116px;
  padding: 16px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}
.conversion-core strong,
.conversion-core span {
  position: relative;
  z-index: 2;
  display: block;
}
.conversion-core strong { margin-top: 16px; color: var(--white); letter-spacing: .12em; }
.conversion-core span { margin-top: 6px; color: #9fb2c8; font-size: .82rem; }
.pulse-ring {
  position: absolute;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(0, 199, 217, .42);
  border-radius: 50%;
  animation: pulseRing 2.4s ease-in-out infinite;
}
.pulse-ring::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(32, 178, 107, .42);
  border-radius: 50%;
  animation: pulseRing 2.4s ease-in-out infinite .6s;
}
.after-panel {
  display: grid;
  align-content: start;
  gap: 12px;
}
.after-panel h3 { margin-bottom: 22px; }
.live-row i {
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 28px;
  border-radius: 999px;
  color: var(--night);
  background: var(--green);
  font-size: .68rem;
  font-style: normal;
  font-weight: 900;
}
.live-row.is-live i {
  color: var(--night);
  background: var(--cyan);
  animation: liveBlink 1.4s ease-in-out infinite;
}
.control-outcomes {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 1180px;
  margin: 22px auto 0;
}
.control-outcomes span {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  color: #c6d5e5;
  background: rgba(255, 255, 255, .07);
}
.control-outcomes b {
  display: block;
  color: var(--cyan);
  font-size: 1.1rem;
}

.flow { background: var(--white); }
.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
  border-radius: 24px;
}
.step {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .64);
  border-radius: 22px;
  background: var(--step-bg, var(--white));
  box-shadow: 0 22px 60px rgba(6, 26, 58, .1);
}
.step:last-child { border-right: 0; }
.step::before {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  background: var(--step-glow, rgba(0, 199, 217, .18));
}
.step::after {
  content: "";
  position: absolute;
  inset: auto 24px 22px 24px;
  height: 4px;
  border-radius: 999px;
  background: var(--step-accent, var(--cyan));
}
.step span {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  color: var(--step-number, var(--white));
  background: var(--step-accent, var(--night));
  border-radius: 50%;
  font-weight: 900;
  box-shadow: 0 14px 28px var(--step-shadow, rgba(6, 26, 58, .18));
}
.step h3 {
  position: relative;
  margin-bottom: 10px;
  color: var(--night);
  font-size: 1.34rem;
}
.step p {
  position: relative;
  margin: 0;
  color: #42536a;
  font-weight: 700;
}
.step-capture {
  --step-bg: linear-gradient(160deg, #e7fbff, #ffffff 62%);
  --step-accent: var(--cyan);
  --step-glow: rgba(0, 199, 217, .28);
  --step-shadow: rgba(0, 199, 217, .22);
  --step-number: var(--night);
}
.step-read {
  --step-bg: linear-gradient(160deg, #f0eaff, #ffffff 62%);
  --step-accent: #7c3cff;
  --step-glow: rgba(124, 60, 255, .22);
  --step-shadow: rgba(124, 60, 255, .2);
}
.step-check {
  --step-bg: linear-gradient(160deg, #fff4df, #ffffff 62%);
  --step-accent: var(--amber);
  --step-glow: rgba(255, 184, 77, .28);
  --step-shadow: rgba(255, 184, 77, .22);
  --step-number: var(--night);
}
.step-update {
  --step-bg: linear-gradient(160deg, #e9fff5, #ffffff 62%);
  --step-accent: var(--green);
  --step-glow: rgba(32, 178, 107, .24);
  --step-shadow: rgba(32, 178, 107, .22);
}

.case {
  background:
    radial-gradient(circle at 12% 24%, rgba(0, 199, 217, .22), transparent 28%),
    linear-gradient(135deg, #061a3a, #07344b);
}
.case-card {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(430px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 70px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 28px;
  background: radial-gradient(circle at 85% 18%, rgba(0, 199, 217, .22), transparent 32%), rgba(255, 255, 255, .07);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .22);
}
.case-card h2, .case-card p { color: var(--white); }
.case-copy p:not(.eyebrow) {
  max-width: 660px;
  color: #d4deea;
  font-size: 1.08rem;
  line-height: 1.72;
}
.case-quote {
  position: relative;
  margin: 30px 0 0;
  padding: 24px;
  border: 1px solid rgba(0, 199, 217, .28);
  border-radius: 20px;
  background: rgba(0, 199, 217, .1);
}
.case-quote::before {
  content: "“";
  position: absolute;
  right: 22px;
  top: -18px;
  color: rgba(0, 199, 217, .34);
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
}
.case-quote p {
  position: relative;
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: -.03em;
}
.case-quote cite {
  color: #b8c6d8;
  font-style: normal;
  font-weight: 800;
}
.case-quote a {
  color: var(--cyan);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.case-card strong { color: var(--cyan); }
.case-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 0;
}
.case-metrics span {
  position: relative;
  padding: 20px 20px 20px 72px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  color: #c8d6e5;
  background: rgba(255, 255, 255, .075);
  line-height: 1.55;
}
.case-metrics span::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 24px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 10px rgba(0, 199, 217, .12);
}
.case-metrics b { display: block; color: var(--green); font-size: 1.25rem; }

.final-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(32, 178, 107, .18), transparent 30%),
    linear-gradient(180deg, #f6f9fc, #ffffff);
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(6, 26, 58, .08);
  border-radius: 32px;
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 28px;
  text-align: left;
  background: var(--white);
  box-shadow: var(--shadow);
}
.final-cta-copy {
  max-width: 720px;
}
.final-cta-inner h2 {
  color: var(--night);
  font-size: clamp(2rem, 3.8vw, 3.6rem);
}
.final-cta-inner p {
  margin-bottom: 0;
  color: #42536a;
  font-size: 1.08rem;
  line-height: 1.72;
}
.final-cta .hero-actions {
  justify-content: flex-end;
  margin-top: 0;
}
.final-cta-action {
  justify-self: end;
  padding: 18px;
  border: 1px solid rgba(32, 178, 107, .18);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(32, 178, 107, .18), transparent 62%),
    #f6fbf8;
}
.final-cta .btn { min-width: 190px; }

.site-footer {
  padding: 56px clamp(18px, 5vw, 72px) 24px;
  color: #b9c6d8;
  background: #031022;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.35fr .7fr .8fr .8fr;
  gap: 42px;
  max-width: 1180px;
  margin: 0 auto;
}
.footer-logo {
  display: flex;
  align-items: center;
  width: 190px;
  height: 62px;
  padding: 10px 14px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--white);
}
.footer-logo img {
  width: 162px;
  max-height: 42px;
  object-fit: contain;
}
.footer-brand p {
  max-width: 390px;
  margin: 18px 0 22px;
  color: #b9c6d8;
}
.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}
.footer-col b {
  margin-bottom: 8px;
  color: var(--white);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer-col a,
.footer-col span {
  color: #9fb2c8;
  font-size: .94rem;
}
.footer-col a:hover { color: var(--cyan); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1180px;
  margin: 42px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: #71859d;
  font-size: .86rem;
}

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s, visibility .25s;
}
.demo-modal.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.demo-modal__backdrop { position: absolute; inset: 0; background: rgba(6, 26, 58, .78); backdrop-filter: blur(10px); }
.demo-modal__dialog {
  position: relative;
  width: min(100%, 560px);
  padding: 34px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .32);
  transform: translateY(14px) scale(.98);
  transition: transform .25s;
}
.demo-modal.is-open .demo-modal__dialog { transform: none; }
.demo-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  font-size: 1.35rem;
}
.demo-modal__badge {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.demo-modal h2 { margin-bottom: 12px; color: var(--night); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.04; }
.demo-access-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--night);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.demo-access-form__row { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.demo-access-form input[type="email"] {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
  font-weight: 700;
}
.demo-access-form input[type="email"]:focus { border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(0, 199, 217, .12); }
.demo-hp { position: absolute; left: -9999px; opacity: 0; }
.demo-access-status { min-height: 22px; margin: 12px 0 0; font-size: .86rem; }
.demo-access-status.is-ok { color: #14744d; }
.demo-access-status.is-error { color: var(--danger); }
.demo-access-link {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(32, 178, 107, .28);
  border-radius: 14px;
  background: #e8fff5;
}
.demo-access-link span { display: block; margin-bottom: 10px; color: #14744d; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; }
.demo-access-link .btn { width: 100%; }
.demo-access-link small { display: block; margin-top: 10px; color: #3c8063; text-align: center; }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes visualEnter {
  from { opacity: 0; transform: translateY(28px) scale(.96); }
  to { opacity: 1; transform: none; }
}
@keyframes pulseRing {
  0%, 100% { transform: scale(.92); opacity: .45; }
  50% { transform: scale(1.16); opacity: 1; }
}
@keyframes liveBlink {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 199, 217, .32); }
  50% { box-shadow: 0 0 0 6px rgba(0, 199, 217, .1); }
}
@media (max-width: 1120px) {
  .site-nav { display: none; }
}

@media (max-width: 1040px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 780px; }
  .hero-visual { max-width: 720px; margin: 0 auto; justify-self: center; }
  .audit-panel { right: 18px; }
  .leak-card { grid-template-columns: 1fr; }
  .certainty { grid-template-columns: 1fr; }
  .certainty-board { min-height: 520px; }
  .case-card { grid-template-columns: 1fr; }
  .control-stage { grid-template-columns: 1fr; }
  .conversion-core { min-height: 210px; }
  .control-outcomes, .flow-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 760px) {
  .site-header { min-height: 68px; }
  .brand { width: min(132px, 35vw); }
  .brand img { width: 132px; }
  .site-nav { display: none; }
  .header-actions { gap: 8px; }
  .language-switcher { gap: 2px; padding: 3px; }
  .language-switcher button { min-width: 28px; height: 28px; padding: 0 6px; font-size: .66rem; }
  .header-cta { min-height: 42px; padding: 0 14px; }
  .pain, .money-leak, .certainty, .control-room, .flow, .case, .final-cta {
    padding-top: 66px;
    padding-bottom: 66px;
  }
  .hero { min-height: auto; padding-top: 54px; }
  .hero-grid { gap: 32px; }
  .visual-caption {
    position: static;
    margin-bottom: 10px;
    flex-direction: column;
    align-items: flex-start;
    background: var(--night);
  }
  .visual-caption strong { text-align: left; }
  .audit-panel {
    position: static;
    width: 100%;
    margin-top: 10px;
    background: #031022;
  }
  .truth-strip { align-items: flex-start; justify-content: flex-start; }
  .hero-proof, .pain-grid, .impact-box, .control-outcomes, .flow-steps, .case-metrics { grid-template-columns: 1fr; }
  .hero-proof { grid-column: auto; }
  .hero-proof { max-width: none; }
  .money-leak::before { font-size: 4.8rem; white-space: normal; text-align: center; }
  .pain::before { font-size: 5rem; white-space: normal; text-align: center; top: 20%; }
  .pain-warning { margin-top: -18px; margin-bottom: 20px; padding: 14px 16px; text-align: center; }
  .pain-warning strong { width: 100%; font-size: .82rem; }
  .pain-warning span { font-size: .95rem; line-height: 1.45; }
  .leak-card { grid-template-columns: 1fr; padding: 24px; border-radius: 24px; }
  .leak-card h2 { font-size: 2.34rem; line-height: .98; }
  .leak-list { gap: 9px; }
  .leak-list p { padding: 14px 14px 14px 40px; line-height: 1.52; }
  .leak-list b { font-size: 1rem; }
  .pain-card, .step, .before-panel, .after-panel { min-height: auto; }
  .pain-card span, .step span { margin-bottom: 22px; }
  .control-room { padding-top: 66px; padding-bottom: 66px; }
  .control-copy { margin-bottom: 24px; }
  .control-copy h2 { font-size: 2.35rem; }
  .control-stage { gap: 14px; }
  .before-panel, .after-panel { padding: 20px; border-radius: 18px; }
  .before-panel h3, .after-panel h3 { font-size: 1.75rem; margin-bottom: 14px; }
  .before-panel ul { gap: 8px; margin-top: 18px; }
  .conversion-core { min-height: 148px; }
  .conversion-core img { width: 86px; padding: 12px; border-radius: 20px; }
  .conversion-core strong { margin-top: 10px; }
  .pulse-ring { width: 132px; height: 132px; }
  .pulse-ring::after { inset: 20px; }
  .before-panel li, .live-row { grid-template-columns: 1fr auto; }
  .before-panel li, .live-row { padding: 10px; gap: 6px 10px; }
  .before-panel li span, .live-row span { grid-column: 1 / -1; }
  .control-outcomes { margin-top: 14px; gap: 8px; }
  .control-outcomes span { padding: 14px; }
  .control-outcomes { display: none; }
  .flow-steps { gap: 12px; border-radius: 16px; }
  .case-card { padding: 26px; border-radius: 24px; gap: 22px; }
  .case-copy p:not(.eyebrow), .final-cta-inner p { font-size: 1rem; line-height: 1.64; }
  .case-quote { margin-top: 22px; padding: 20px; }
  .case-quote p { font-size: 1.18rem; }
  .case-metrics { gap: 10px; }
  .case-metrics span { padding: 16px 16px 16px 54px; }
  .case-metrics span::before { left: 18px; top: 20px; width: 16px; height: 16px; box-shadow: 0 0 0 7px rgba(0, 199, 217, .12); }
  .final-cta-inner { grid-template-columns: 1fr; padding: 28px; border-radius: 24px; text-align: left; }
  .final-cta-action { width: 100%; justify-self: stretch; padding: 12px; }
  .final-cta .hero-actions { justify-content: flex-start; }
  .final-cta .btn { width: 100%; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .demo-access-form__row { grid-template-columns: 1fr; }
  .demo-access-form .btn { width: 100%; }
}

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

@media (max-width: 760px) {
  .certainty-copy h2 { font-size: 3rem; }
  .certainty-board { min-height: 680px; border-radius: 22px; }
  .certainty-board::after { display: none; }
  .certainty-core {
    top: 50%;
    width: 138px;
    min-height: 148px;
    border-radius: 28px;
  }
  .certainty-core img { width: 58px; }
  .certainty-column {
    left: 18px;
    right: 18px;
    width: auto;
  }
  .certainty-column.is-input { left: 18px; top: 24px; }
  .certainty-column.is-output { right: 18px; top: auto; bottom: 148px; }
  .certainty-column p { padding: 11px 12px; font-size: .86rem; }
  .certainty-status { left: 18px; right: 18px; bottom: 18px; padding: 16px; }
}
