:root {
  --ink: #16122f;
  --purple: #4f23d5;
  --purple2: #7b3cff;
  --blue: #00a8ff;
  --pink: #f22f78;
  --paper: #fbfaff;
  --muted: #706b82;
  --line: #e8e5f0;
  --dark: #130b35;
  --radius: 26px;
  --shadow: 0 24px 80px rgba(39, 19, 101, 0.13);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Poppins, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
.announcement {
  height: 38px;
  background: linear-gradient(90deg, #31128e, #7136e7, #341295);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.announcement a {
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.nav {
  height: 82px;
  max-width: 1240px;
  margin: auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 20;
}
.nav img {
  width: 174px;
  height: auto;
}
.nav nav {
  display: flex;
  gap: 30px;
  font-size: 14px;
  color: #57516a;
}
.nav nav a:hover {
  color: var(--purple);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 12px;
  background: linear-gradient(115deg, var(--purple), #6e35e8);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(79, 35, 213, 0.25);
  transition:
    0.25s transform,
    0.25s box-shadow;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(79, 35, 213, 0.34);
}
.button-sm {
  padding: 13px 19px;
  font-size: 13px;
}
.button-lg {
  padding: 18px 23px;
  font-size: 15px;
}
.button-xl {
  padding: 20px 28px;
  font-size: 16px;
}
.menu {
  display: none;
  border: 0;
  background: none;
}
.section {
  max-width: 1240px;
  margin: auto;
  padding: 110px 28px;
}
.hero {
  min-height: 690px;
  padding-top: 72px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 60px;
  position: relative;
}
.hero:before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(124, 76, 255, 0.12),
    transparent 67%
  );
  right: -260px;
  top: -160px;
  pointer-events: none;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: var(--purple);
}
.eyebrow span,
.eyebrow i {
  width: 7px;
  height: 7px;
  background: #5dd48d;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(93, 212, 141, 0.14);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-size: clamp(48px, 5.5vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.055em;
  margin: 24px 0 26px;
  max-width: 740px;
}
h1 em,
h2 em {
  font-style: normal;
  background: linear-gradient(100deg, #5527d4, #f03779);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 620px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 36px 0;
}
.text-link {
  font-size: 14px;
  font-weight: 600;
}
.trust-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.trust-row p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}
.avatars {
  display: flex;
}
.avatars b {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 2px solid var(--paper);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  margin-left: -8px;
  font-size: 10px;
  color: var(--purple);
}
.avatars b:first-child {
  margin: 0;
  background: #1b1250;
  color: #fff;
}
.hero-stage {
  min-height: 530px;
  display: grid;
  place-items: center;
  position: relative;
}
.dashboard {
  position: relative;
  width: min(450px, 95%);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(85, 39, 212, 0.12);
  border-radius: 30px;
  padding: 25px;
  box-shadow: var(--shadow);
  z-index: 2;
  backdrop-filter: blur(15px);
  transform: rotate(1deg);
}
.dash-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
  color: #3b2f76;
}
.live {
  font-size: 10px;
  color: var(--muted);
}
.live i {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #4dcc88;
  border-radius: 50%;
  margin-right: 5px;
}
.metric-main {
  text-align: center;
  padding: 35px 10px;
}
.metric-main span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.metric-main strong {
  display: block;
  font-size: 62px;
  line-height: 1.1;
  letter-spacing: -0.06em;
  color: #2a166f;
}
.metric-main small {
  color: var(--muted);
}
.signal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 17px;
  background: #f8f7fc;
  border-radius: 14px;
  margin-top: 9px;
}
.signal span {
  display: block;
  font-size: 9px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.signal b {
  font-size: 12px;
}
.signal i {
  font-style: normal;
  color: #22aa69;
  background: #dff8eb;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
}
.dash-footer {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}
.dash-footer span {
  flex: 1;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 8px;
  font-size: 9px;
  color: var(--muted);
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}
.orb-a {
  width: 350px;
  height: 350px;
  background: linear-gradient(
    140deg,
    rgba(34, 171, 255, 0.35),
    rgba(120, 55, 255, 0.2)
  );
  top: 30px;
  right: -20px;
}
.orb-b {
  width: 270px;
  height: 270px;
  background: linear-gradient(
    140deg,
    rgba(246, 40, 123, 0.26),
    rgba(255, 191, 60, 0.14)
  );
  bottom: 0;
  left: 10px;
}
.float-card {
  position: absolute;
  z-index: 3;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 12px 35px rgba(36, 20, 82, 0.13);
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 10px;
  color: var(--muted);
}
.float-card span {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--purple);
}
.fc-one {
  left: 0;
  top: 90px;
}
.fc-two {
  right: -10px;
  bottom: 80px;
}
.logo-cloud {
  padding: 28px 0 45px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: #fff;
}
.logo-cloud > p {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
  color: #9a96a6;
}
.marquee {
  overflow: hidden;
}
.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: scroll 28s linear infinite;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
.brands span {
  width: 190px;
  text-align: center;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #9692a1;
  filter: grayscale(1);
  opacity: 0.72;
}
.brands .belcorp {
  font-weight: 500;
}
.brands .repsol {
  font-size: 19px;
}
.problem {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  border-bottom: 1px solid var(--line);
}
.section-no {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--purple);
}
h2 {
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin: 20px 0;
}
.problem-copy {
  align-self: end;
}
.problem-copy p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}
.problem-copy strong {
  color: var(--ink);
}
.section-heading {
  max-width: 820px;
  margin-bottom: 55px;
}
.section-heading > p {
  font-size: 17px;
  color: var(--muted);
  max-width: 610px;
  line-height: 1.7;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.service-card {
  position: relative;
  min-height: 410px;
  padding: 36px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition:
    0.3s transform,
    0.3s box-shadow;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.service-card.featured {
  background: linear-gradient(150deg, #291071, #5421cc);
  color: #fff;
  border: 0;
}
.service-card.wide {
  grid-column: 1/-1;
  min-height: 280px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: linear-gradient(110deg, #fff, #f2efff);
}
.service-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #f1edff;
  color: var(--purple);
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 42px;
}
.service-card.featured .icon {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.service-card small {
  font-size: 10px;
  letter-spacing: 0.14em;
  font-weight: 700;
  opacity: 0.7;
}
.service-card h3 {
  font-size: 27px;
  margin: 12px 0;
}
.service-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
  max-width: 510px;
}
.service-card.featured p {
  color: #dcd3fb;
}
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 23px 0 0;
}
.service-card li {
  font-size: 13px;
  margin: 9px 0;
}
.service-card li:before {
  content: "✓";
  color: #25bd79;
  margin-right: 9px;
}
.card-label {
  position: absolute;
  right: 25px;
  top: 25px;
  border: 1px solid currentColor;
  border-radius: 99px;
  padding: 6px 10px;
  font-size: 9px;
  opacity: 0.55;
}
.work {
  max-width: none;
  background: var(--dark);
  color: #fff;
  padding-left: max(28px, calc((100vw - 1184px) / 2));
  padding-right: max(28px, calc((100vw - 1184px) / 2));
  position: relative;
  overflow: hidden;
}
.work:after {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: #5424db;
  filter: blur(160px);
  opacity: 0.2;
  right: -300px;
  top: -100px;
}
.section-heading.light {
  position: relative;
  z-index: 1;
}
.section-heading.light .section-no {
  color: #a88bff;
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  gap: 20px;
  position: relative;
  z-index: 1;
  align-items: center;
}
.video-shell {
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  height: 570px;
}
.video-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.work-copy {
  padding: 40px;
}
.pill {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 99px;
  padding: 7px 11px;
  font-size: 10px;
  letter-spacing: 0.1em;
}
.work-copy h3 {
  font-size: 50px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 26px 0;
}
.work-copy p {
  color: #bdb7d2;
  line-height: 1.7;
}
.button-white {
  background: #fff;
  color: var(--dark);
  box-shadow: none;
  padding: 16px 19px;
  margin-top: 16px;
}
.framework-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.framework-core {
  aspect-ratio: 1;
  max-width: 390px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 25%, #8856ff, #32108c 66%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 30px 80px rgba(79, 35, 213, 0.32);
  position: relative;
}
.framework-core:before,
.framework-core:after {
  content: "";
  position: absolute;
  border: 1px solid #ddd6fa;
  border-radius: 50%;
}
.framework-core:before {
  inset: -25px;
}
.framework-core:after {
  inset: -50px;
  opacity: 0.4;
}
.framework-core span {
  font-size: 10px;
  letter-spacing: 0.18em;
}
.framework-core strong {
  font-size: 64px;
  letter-spacing: -0.06em;
}
.framework-core small {
  color: #d8cff6;
}
.steps article {
  display: flex;
  gap: 24px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}
.steps article > b {
  color: var(--purple);
  font-size: 12px;
}
.steps h3 {
  font-size: 21px;
  margin-bottom: 5px;
}
.steps p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.quote {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px;
}
.stars {
  color: #ffb300;
  letter-spacing: 0.13em;
}
.quote blockquote {
  margin: 30px 0;
  font-size: 16px;
  line-height: 1.75;
}
.quote figcaption {
  display: flex;
  flex-direction: column;
  font-size: 12px;
}
.quote figcaption span {
  color: var(--muted);
  margin-top: 3px;
}
.fit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.fit-card {
  padding: 52px;
  border-radius: 30px;
}
.fit-card > span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.fit-card h2 {
  font-size: 39px;
}
.fit-card ul {
  list-style: none;
  padding: 0;
  margin: 35px 0 0;
}
.fit-card li {
  border-top: 1px solid;
  padding: 15px 0;
  font-size: 14px;
}
.fit-card li:before {
  margin-right: 10px;
}
.yes {
  background: #251064;
  color: #fff;
}
.yes > span {
  color: #8af0b7;
}
.yes li {
  border-color: rgba(255, 255, 255, 0.14);
}
.yes li:before {
  content: "✓";
  color: #69e2a0;
}
.no {
  background: #f0eef4;
  color: #3f3a49;
}
.no > span {
  color: #8a8493;
}
.no li {
  border-color: #dad6df;
}
.no li:before {
  content: "×";
  color: #a39dab;
}
.media-strip {
  padding: 38px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: #fff;
}
.reverse .marquee-track {
  animation-direction: reverse;
}
.media span {
  width: 210px;
  text-align: center;
  color: #8c8995;
  font-size: 18px;
  font-weight: 700;
  filter: grayscale(1);
  opacity: 0.65;
}
.media span:nth-child(2),
.media span:nth-child(6) {
  font-family: Georgia, serif;
  font-size: 27px;
}
.cta {
  max-width: 1184px;
  padding: 120px 28px;
}
.cta-inner {
  text-align: center;
  padding: 95px 30px;
  border-radius: 36px;
  background: linear-gradient(145deg, #1b0b53, #5321cb);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-inner:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(0, 174, 255, 0.2), transparent 37%),
    radial-gradient(
      circle at 90% 80%,
      rgba(247, 47, 120, 0.22),
      transparent 36%
    );
}
.cta-inner > * {
  position: relative;
}
.cta .eyebrow {
  color: #bfaeff;
}
.cta h2 {
  font-size: clamp(42px, 5vw, 68px);
}
.cta p {
  color: #d4cdea;
  max-width: 700px;
  margin: 0 auto 35px;
  line-height: 1.7;
}
.cta small {
  display: block;
  color: #afa5cc;
  margin-top: 18px;
}
.cta .button-xl {
  background: #fff;
  color: #321181;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
}
footer {
  max-width: 1184px;
  margin: auto;
  padding: 40px 28px 60px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 12px;
}
footer img {
  width: 150px;
}
footer p {
  margin: 0;
  text-align: center;
}
footer div {
  display: flex;
  gap: 18px;
}
footer small {
  grid-column: 1/-1;
  text-align: center;
  color: #aaa5b5;
}
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #25d366;
  color: #062d15;
  border-radius: 99px;
  padding: 11px 17px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 50;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.3);
  font-size: 13px;
}
.wa-float span {
  font-size: 21px;
  color: #fff;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.delay-1 {
  transition-delay: 0.12s;
}
@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 900px) {
  .nav nav {
    display: none;
  }
  .nav .button {
    display: none;
  }
  .menu {
    display: block;
  }
  .menu span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    margin: 6px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 55px;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-copy .lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions,
  .trust-row {
    justify-content: center;
  }
  .hero-stage {
    min-height: 500px;
  }
  .problem,
  .framework-layout {
    grid-template-columns: 1fr;
  }
  .video-grid {
    grid-template-columns: 1fr 1fr;
  }
  .work-copy {
    grid-column: 1/-1;
    text-align: center;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .framework-core {
    margin: 30px auto;
  }
  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 620px) {
  .announcement {
    font-size: 9px;
    gap: 9px;
  }
  .nav {
    height: 72px;
    padding: 0 18px;
  }
  .nav img {
    width: 145px;
  }
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }
  .hero {
    padding-top: 40px;
    gap: 20px;
    min-height: auto;
  }
  h1 {
    font-size: 43px;
  }
  .lead {
    font-size: 16px;
  }
  .hero-actions {
    flex-direction: column;
    margin: 28px 0;
  }
  .button-lg {
    width: 100%;
  }
  .trust-row {
    text-align: left;
  }
  .hero-stage {
    min-height: 440px;
  }
  .dashboard {
    padding: 18px;
  }
  .metric-main strong {
    font-size: 49px;
  }
  .fc-one {
    left: -7px;
    top: 35px;
  }
  .fc-two {
    right: -5px;
    bottom: 24px;
  }
  .problem {
    gap: 20px;
  }
  .problem-copy p {
    font-size: 16px;
  }
  .service-grid,
  .fit,
  .video-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 380px;
    padding: 28px;
  }
  .service-card.wide {
    grid-template-columns: 1fr;
    min-height: 460px;
  }
  .video-shell {
    height: 600px;
  }
  .work-copy {
    grid-column: auto;
    padding: 25px 5px;
  }
  .work-copy h3 {
    font-size: 42px;
  }
  .fit-card {
    padding: 36px 25px;
  }
  .fit-card h2 {
    font-size: 33px;
  }
  .framework-core {
    max-width: 270px;
  }
  .framework-core strong {
    font-size: 47px;
  }
  .framework-core:after {
    inset: -30px;
  }
  .testimonial-grid {
    gap: 12px;
  }
  .cta {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .cta-inner {
    padding: 70px 20px;
  }
  .button-xl {
    width: 100%;
    font-size: 14px;
  }
  footer {
    grid-template-columns: 1fr;
    text-align: center;
  }
  footer img {
    margin: auto;
  }
  footer p {
    text-align: center;
  }
  footer div {
    justify-content: center;
  }
  .wa-float b {
    display: inline;
  }
  .wa-float {
    padding: 9px 13px;
  }
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}
.wa-float span {
  width: 25px;
  height: 25px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 9px;
  font-weight: 800;
  color: #fff;
}
.privacy-link {
  border: 0;
  padding: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
.privacy-link:hover { text-decoration: underline; }
.consent-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  max-width: 920px;
  margin: auto;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 18px 60px rgba(22,18,47,.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.consent-banner[hidden] { display: none; }
.consent-banner strong { display: block; margin-bottom: 5px; }
.consent-banner p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; max-width: 580px; }
.consent-banner .privacy-link { margin-top: 6px; color: var(--purple); font-size: 12px; font-weight: 700; }
.consent-actions,
.privacy-actions { display: flex; gap: 9px; flex-shrink: 0; }
.consent-actions button,
.privacy-actions button { border: 1px solid var(--line); border-radius: 10px; padding: 11px 14px; background: #fff; color: var(--ink); font: 600 12px Poppins,sans-serif; cursor: pointer; }
.consent-actions .consent-accept,
.privacy-actions .consent-accept { border-color: var(--purple); background: var(--purple); color: #fff; }
.privacy-dialog { width: min(640px,calc(100% - 32px)); border: 0; border-radius: 24px; padding: 34px; color: var(--ink); box-shadow: 0 24px 90px rgba(22,18,47,.28); }
.privacy-dialog::backdrop { background: rgba(16,10,42,.58); backdrop-filter: blur(3px); }
.privacy-dialog h2 { font-size: 32px; margin: 10px 0 18px; }
.privacy-dialog p { font-size: 14px; line-height: 1.7; color: var(--muted); }
.privacy-dialog a { color: var(--purple); font-weight: 600; }
.privacy-close { position: absolute; right: 18px; top: 15px; border: 0; background: none; font-size: 30px; cursor: pointer; color: var(--muted); }
.privacy-actions { margin-top: 22px; justify-content: flex-end; }

@media (max-width: 620px) {
  .hero:before { width: 420px; height: 420px; right: -210px; }
  .hero-stage { width: 100%; min-width: 0; }
  .dashboard { width: 100%; max-width: 350px; }
  .orb-a { width: 260px; height: 260px; right: -40px; }
  .orb-b { width: 210px; height: 210px; left: -30px; }
  .framework-layout { gap: 24px; }
  .framework-core { width: min(72vw,270px); max-width: none; margin: 38px auto 52px; }
  .framework-core span { font-size: 9px; }
  .framework-core strong { font-size: clamp(42px,13vw,54px); }
  .framework-core small { font-size: 11px; line-height: 1.45; max-width: 180px; }
  .framework-core:before { inset: -16px; }
  .framework-core:after { inset: -30px; }
  .wa-float { right: 14px; bottom: 14px; font-size: 12px; }
  .consent-banner { left: 10px; right: 10px; bottom: 10px; padding: 16px; display: block; }
  .consent-actions { margin-top: 14px; }
  .consent-actions button { flex: 1; }
  .privacy-dialog { padding: 28px 20px; }
  .privacy-dialog h2 { font-size: 27px; }
  .privacy-actions { flex-direction: column; }
  .privacy-actions button { width: 100%; }
  body.consent-pending .wa-float { bottom: 190px; }
}
