:root {
  color-scheme: light;
  --ink: #f6f8fb;
  --muted: #b9c2cd;
  --subtle: #7e8a98;
  --line: rgba(255, 255, 255, 0.14);
  --panel: rgba(6, 45, 78, 0.84);
  --panel-strong: #062d4e;
  --bg: #031a2e;
  --blue: #00aeef;
  --blue-soft: #67d8ff;
  --blue-deep: #006ea8;
  --blue-ink: #02121e;
  --graphite: #575b62;
  --cyan: var(--blue);
  --mint: #7ed7ff;
  --amber: #a7dff7;
  --red: #f06f61;
  --whatsapp: #25d366;
  --max: 1180px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--blue-ink);
}

body::selection {
  background: var(--cyan);
  color: #031114;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  display: flex;
  gap: 24px;
  height: 76px;
  justify-content: space-between;
  left: 0;
  padding: 0 max(20px, calc((100vw - var(--max)) / 2));
  position: fixed;
  right: 0;
  top: 0;
  transition: border-color 180ms ease, background 180ms ease;
  z-index: 10;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(0, 110, 168, 0.16);
  box-shadow: 0 14px 36px rgba(2, 18, 30, 0.08);
}

.brand,
.nav,
.nav-cta,
.button,
.language-toggle {
  align-items: center;
  display: inline-flex;
}

.brand {
  color: var(--blue-ink);
  font-size: 0.98rem;
  font-weight: 800;
  gap: 12px;
  letter-spacing: 0;
}

.brand-logo {
  background: #ffffff;
  border: 1px solid rgba(8, 174, 234, 0.32);
  border-radius: 999px;
  height: 46px;
  object-fit: contain;
  padding: 5px;
  width: 46px;
}

.mobile-menu-toggle {
  align-items: center;
  background: var(--blue-deep);
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  display: none;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.mobile-menu-toggle svg {
  height: 22px;
  width: 22px;
}

.mobile-nav {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 110, 168, 0.14);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(2, 18, 30, 0.16);
  display: none;
  left: 20px;
  padding: 12px;
  position: absolute;
  right: 20px;
  top: calc(100% + 10px);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav nav {
  display: grid;
  gap: 4px;
}

.mobile-nav a {
  border-radius: 8px;
  color: var(--blue-ink);
  font-weight: 800;
  padding: 14px 12px;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  background: rgba(0, 174, 239, 0.10);
  color: var(--blue-deep);
}

.nav {
  gap: 18px;
}

.nav a {
  color: #33485b;
  font-size: 0.88rem;
  transition: color 160ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--blue-deep);
}

.language-toggle {
  background: rgba(0, 110, 168, 0.08);
  border: 1px solid rgba(0, 110, 168, 0.16);
  border-radius: 999px;
  gap: 2px;
  padding: 4px;
}

.language-toggle button {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: #33485b;
  cursor: pointer;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 850;
  height: 30px;
  letter-spacing: 0;
  padding: 0 10px;
}

.language-toggle button.is-active {
  background: var(--blue-deep);
  color: #ffffff;
}

.nav-cta,
.button {
  border-radius: 8px;
  font-weight: 750;
  gap: 9px;
  justify-content: center;
  min-height: 44px;
}

.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: 0 14px 36px rgba(0, 174, 239, 0.24);
  color: #ffffff;
  font-size: 0.92rem;
  padding: 0 16px;
}

.button {
  border: 1px solid var(--line);
  padding: 13px 18px;
}

.button.primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  border-color: transparent;
  box-shadow: 0 18px 44px rgba(0, 174, 239, 0.26);
  color: #ffffff;
}

.button.secondary {
  background: rgba(0, 174, 239, 0.12);
  border-color: rgba(103, 216, 255, 0.55);
  box-shadow: inset 0 0 0 1px rgba(0, 174, 239, 0.08);
  color: var(--ink);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(0, 174, 239, 0.22);
  border-color: var(--blue-soft);
}

.ai-chat-hint {
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(0, 110, 168, 0.16);
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(2, 18, 30, 0.10);
  color: var(--blue-ink);
  display: inline-flex;
  font-weight: 850;
  gap: 10px;
  min-height: 44px;
  padding: 5px 16px 5px 6px;
}

.chatgpt-mark {
  align-items: center;
  background: linear-gradient(135deg, #0f1720, #006ea8);
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.chatgpt-mark svg {
  fill: currentColor;
  height: 25px;
  width: 25px;
}

.button svg,
.nav-cta svg {
  height: 18px;
  width: 18px;
}

.hero {
  background: #ffffff;
  color: var(--blue-ink);
  isolation: isolate;
  min-height: 86vh;
  overflow: hidden;
  position: relative;
}

.hero picture,
.hero img,
.hero-overlay {
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero picture {
  z-index: -2;
}

.hero img {
  height: 100%;
  object-fit: cover;
  object-position: center right;
  width: 100%;
  z-index: -2;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 37%, rgba(255, 255, 255, 0.35) 72%, rgba(3, 26, 46, 0.16) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.98));
  z-index: -1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  max-width: var(--max);
  min-height: 86vh;
  padding: 112px 20px 48px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(4.5rem, 12vw, 9rem);
  letter-spacing: 0;
  line-height: 0.88;
  margin-bottom: 24px;
}

.hero h1,
.hero h2,
.hero h3 {
  color: var(--blue-ink);
}

h2 {
  font-size: clamp(2rem, 4vw, 4.35rem);
  letter-spacing: 0;
  line-height: 1.02;
  margin-bottom: 0;
}

h3 {
  font-size: 1.05rem;
  letter-spacing: 0;
  margin-bottom: 12px;
}

p {
  color: #40566a;
  line-height: 1.7;
}

.hero-lede {
  color: #24384d;
  font-size: clamp(1.08rem, 2.3vw, 1.45rem);
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.hero-metrics {
  border-top: 1px solid rgba(0, 110, 168, 0.18);
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 70px 0 0;
  max-width: 760px;
  padding-top: 22px;
}

.hero-metrics div {
  min-width: 0;
}

.hero-metrics dt {
  color: var(--blue-deep);
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-weight: 850;
  line-height: 1;
}

.hero-metrics dd {
  color: #52677a;
  margin: 8px 0 0;
}

.band,
.section,
.contact,
.footer {
  margin: 0 auto;
  max-width: var(--max);
  padding-left: 20px;
  padding-right: 20px;
}

.intro {
  align-items: end;
  background: #ffffff;
  box-shadow: 0 0 0 100vmax #ffffff;
  clip-path: inset(0 -100vmax);
  color: var(--blue-ink);
  display: grid;
  gap: 42px;
  grid-template-columns: 1.05fr 0.95fr;
  padding-bottom: 82px;
  padding-top: 82px;
}

.intro > p {
  color: #40566a;
  font-size: 1.08rem;
  margin-bottom: 0;
}

.intro h2 {
  color: var(--blue-ink);
}

.section {
  padding-bottom: 104px;
  padding-top: 26px;
}

.section-heading h2 {
  color: var(--blue-ink);
}

.section-heading > p:not(.eyebrow) {
  color: #40566a;
}

.tech-ai {
  border-top: 1px solid rgba(103, 216, 255, 0.18);
}

.tech-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tech-grid article {
  background:
    linear-gradient(180deg, rgba(0, 174, 239, 0.16), rgba(6, 45, 78, 0.82)),
    var(--panel);
  color: var(--ink);
  border: 1px solid rgba(103, 216, 255, 0.22);
  border-radius: 8px;
  min-height: 260px;
  padding: 24px;
}

.tech-grid h3,
.service-card h3,
.use-case-list h3,
.process-grid h3,
.value-stack h3,
.architecture-map h3,
.governance-grid h3,
.enterprise-lead h3,
.contact h2,
.contact h3 {
  color: var(--ink);
}

.tech-grid span {
  color: var(--blue-soft);
  display: block;
  font-weight: 850;
  margin-bottom: 42px;
}

.tech-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.section-heading {
  margin-bottom: 34px;
  max-width: 780px;
}

.section-heading > p:not(.eyebrow) {
  font-size: 1.06rem;
  margin-top: 20px;
}

.service-grid,
.governance-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.use-case-list article,
.process-grid div,
.value-stack div,
.architecture-map div,
.governance-grid article {
  background: var(--panel);
  border: 1px solid rgba(103, 216, 255, 0.20);
  border-radius: 8px;
  color: var(--ink);
}

.service-card {
  min-height: 245px;
  padding: 26px;
}

.service-card svg {
  color: var(--blue-soft);
  height: 28px;
  margin-bottom: 36px;
  width: 28px;
}

.service-card p,
.use-case-list p,
.process-grid p,
.value-stack p,
.architecture-map p,
.governance-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.enterprise {
  border-top: 1px solid rgba(0, 110, 168, 0.16);
}

.enterprise-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 0.9fr 1.1fr;
}

.enterprise-lead {
  background:
    linear-gradient(145deg, rgba(0, 174, 239, 0.24), rgba(0, 110, 168, 0.18)),
    var(--panel-strong);
  border: 1px solid rgba(103, 216, 255, 0.24);
  border-radius: 8px;
  color: var(--ink);
  padding: 30px;
}

.enterprise-lead p {
  color: #dce4ec;
  font-size: 1.08rem;
}

.enterprise-lead p:last-child {
  margin-bottom: 0;
}

.value-stack {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.value-stack div {
  min-height: 230px;
  padding: 24px;
}

.value-stack span,
.use-case-list span,
.process-grid span {
  color: var(--mint);
  font-weight: 850;
}

.value-stack span {
  display: block;
  margin-bottom: 44px;
}

.architecture {
  border-top: 1px solid rgba(0, 110, 168, 0.16);
}

.architecture-map {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.architecture-map div {
  background: rgba(5, 44, 77, 0.94);
  border-radius: 0;
  min-height: 250px;
  padding: 28px;
  position: relative;
}

.architecture-map div:first-child {
  border-bottom-left-radius: 8px;
  border-top-left-radius: 8px;
}

.architecture-map div:last-child {
  border-bottom-right-radius: 8px;
  border-top-right-radius: 8px;
}

.architecture-map div::after {
  color: var(--blue-soft);
  content: "→";
  font-size: 1.7rem;
  position: absolute;
  right: -13px;
  top: 34px;
  z-index: 1;
}

.architecture-map div:last-child::after {
  content: "";
}

.architecture-map svg,
.governance-grid svg {
  color: var(--cyan);
  height: 30px;
  margin-bottom: 48px;
  width: 30px;
}

.outcomes {
  border-top: 1px solid rgba(0, 110, 168, 0.16);
}

.outcome-table {
  background: var(--panel);
  border: 1px solid rgba(103, 216, 255, 0.22);
  border-radius: 8px;
  overflow: hidden;
}

.outcome-table [role="row"] {
  display: grid;
  grid-template-columns: 0.62fr 1fr 1.28fr;
}

.outcome-table [role="row"] + [role="row"] {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.outcome-table span {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--muted);
  line-height: 1.55;
  min-width: 0;
  padding: 18px;
}

.outcome-table span:last-child {
  border-right: 0;
}

.outcome-table [role="columnheader"] {
  background: rgba(0, 174, 239, 0.18);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.outcome-table [role="row"]:not(:first-child) span:first-child {
  color: var(--ink);
  font-weight: 800;
}

.governance {
  border-top: 1px solid rgba(0, 110, 168, 0.16);
}

.governance-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.governance-grid article {
  min-height: 260px;
  padding: 24px;
}

.split {
  align-items: start;
  display: grid;
  gap: 54px;
  grid-template-columns: 0.86fr 1.14fr;
}

.sticky-copy {
  position: sticky;
  top: 112px;
}

.use-case-list {
  display: grid;
  gap: 12px;
}

.use-case-list article {
  display: grid;
  gap: 8px 22px;
  grid-template-columns: 58px 1fr;
  padding: 24px;
}

.use-case-list h3 {
  margin-bottom: 0;
}

.use-case-list p {
  grid-column: 2;
}

.process {
  border-top: 1px solid rgba(0, 110, 168, 0.16);
}

.process-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid div {
  min-height: 220px;
  padding: 24px;
}

.process-grid span {
  display: block;
  font-size: 2.2rem;
  margin-bottom: 46px;
}

.proof {
  align-items: start;
  border-top: 1px solid rgba(0, 110, 168, 0.16);
  display: grid;
  gap: 48px;
  grid-template-columns: 0.9fr 1.1fr;
}

.proof-copy {
  display: grid;
  gap: 18px;
}

.proof-copy p {
  color: #40566a;
  font-size: 1.08rem;
  margin-bottom: 0;
}

.contact {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(0, 174, 239, 0.18), rgba(6, 45, 78, 0.92)),
    var(--panel-strong);
  border: 1px solid rgba(103, 216, 255, 0.24);
  border-radius: 8px;
  color: var(--ink);
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 72px;
  padding-bottom: 34px;
  padding-top: 34px;
}

.contact .button {
  flex: 0 0 auto;
}

.contact h2 {
  font-size: clamp(1.75rem, 3vw, 3rem);
  max-width: 760px;
}

.contact p:last-child {
  color: var(--muted);
  margin-bottom: 0;
}

.contact-email {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  border-color: transparent;
  box-shadow: 0 18px 44px rgba(0, 174, 239, 0.26);
  color: #ffffff;
}

.floating-whatsapp {
  align-items: center;
  background: var(--whatsapp);
  border-radius: 999px;
  bottom: 24px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
  color: #031207;
  display: inline-flex;
  height: 58px;
  justify-content: center;
  position: fixed;
  right: 24px;
  width: 58px;
  z-index: 12;
}

.floating-whatsapp svg {
  height: 26px;
  width: 26px;
}

.footer {
  align-items: center;
  border-top: 1px solid rgba(0, 110, 168, 0.16);
  color: #52677a;
  display: flex;
  justify-content: space-between;
  padding-bottom: 28px;
  padding-top: 28px;
}

@media (max-width: 920px) {
  .site-header {
    gap: 10px;
    justify-content: flex-start;
  }

  .nav {
    display: none;
  }

  .site-header > .language-toggle {
    display: inline-flex;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .intro,
  .split,
  .proof,
  .enterprise-grid {
    grid-template-columns: 1fr;
  }

  .sticky-copy {
    position: static;
  }

  .service-grid,
  .value-stack,
  .governance-grid,
  .tech-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid,
  .architecture-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .architecture-map div,
  .architecture-map div:first-child,
  .architecture-map div:last-child {
    border-radius: 8px;
  }

  .architecture-map div::after {
    content: "";
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 68px;
  }

  .brand span:last-child {
    display: none;
  }

  .brand-logo {
    height: 42px;
    width: 42px;
  }

  .hero,
  .hero-content {
    min-height: 88vh;
  }

  .hero-content {
    padding-top: 92px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.82)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.98));
  }

  .hero-metrics,
  .service-grid,
  .process-grid,
  .value-stack,
  .architecture-map,
  .governance-grid,
  .tech-grid {
    grid-template-columns: 1fr;
  }

  .enterprise-lead,
  .value-stack div,
  .architecture-map div,
  .governance-grid article,
  .tech-grid article {
    min-height: auto;
    padding: 22px;
  }

  .value-stack span,
  .tech-grid span,
  .architecture-map svg,
  .governance-grid svg {
    margin-bottom: 28px;
  }

  .outcome-table {
    border: 0;
    border-radius: 0;
    display: grid;
    gap: 12px;
    overflow: visible;
  }

  .outcome-table [role="row"] {
    background: var(--panel);
    border: 1px solid rgba(103, 216, 255, 0.20);
    border-radius: 8px;
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .outcome-table [role="row"]:first-child {
    display: none;
  }

  .outcome-table [role="row"] + [role="row"] {
    border-top: 1px solid var(--line);
  }

  .outcome-table span {
    border-right: 0;
    padding: 16px 18px;
  }

  .outcome-table span + span {
    border-top: 1px solid var(--line);
  }

  .hero-metrics {
    margin-top: 34px;
  }

  .intro,
  .section {
    padding-bottom: 68px;
    padding-top: 28px;
  }

  .service-card {
    min-height: 210px;
  }

  .use-case-list article {
    grid-template-columns: 44px 1fr;
    padding: 20px;
  }

  .contact {
    align-items: stretch;
    flex-direction: column;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}


/* Accenture-inspired editorial refresh */
:root {
  --editorial-black: #05070a;
  --editorial-ink: #101820;
  --editorial-muted: #4a5d70;
  --editorial-border: rgba(2, 18, 30, 0.12);
  --editorial-shadow: 0 28px 80px rgba(2, 18, 30, 0.14);
}

body { overflow-x: hidden; }

.site-header { border-bottom: 1px solid rgba(2, 18, 30, 0.08); }
.site-header::after {
  background: linear-gradient(90deg, var(--blue), transparent 78%);
  bottom: -1px; content: ""; height: 2px; left: 0; position: absolute;
  transform: scaleX(0.32); transform-origin: left; transition: transform 240ms ease; width: 100%;
}
.site-header.is-scrolled::after { transform: scaleX(1); }
.nav a { position: relative; }
.nav a::after {
  background: var(--blue); bottom: -9px; content: ""; height: 2px; left: 0; position: absolute;
  transform: scaleX(0); transform-origin: left; transition: transform 180ms ease; width: 100%;
}
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); }

.hero { min-height: 92vh; }
.hero img { filter: saturate(0.96) contrast(1.03); object-position: center right; transform: scale(1.03); }
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 34%, rgba(255, 255, 255, 0.32) 65%, rgba(5, 7, 10, 0.34) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 1) 96%);
}
.hero-content::before {
  background: var(--blue); content: ""; height: 84px; left: 20px; position: absolute; top: 142px; width: 7px;
}
.hero .eyebrow, .hero h1, .hero-lede, .hero-actions, .hero-metrics { margin-left: 34px; }
.hero h1 { color: var(--editorial-black); font-size: clamp(5.4rem, 12vw, 10.5rem); letter-spacing: 0; }
.hero-lede { color: #172637; font-weight: 520; max-width: 820px; }
.hero-metrics {
  background: rgba(255, 255, 255, 0.78); border: 1px solid rgba(0, 110, 168, 0.14);
  border-radius: 8px; box-shadow: 0 20px 70px rgba(2, 18, 30, 0.10); padding: 22px;
}

.button.primary, .contact-email { position: relative; transition: transform 180ms ease, box-shadow 180ms ease; }
.button.primary:hover, .button.primary:focus-visible, .contact-email:hover, .contact-email:focus-visible {
  box-shadow: 0 22px 56px rgba(0, 174, 239, 0.34); transform: translateY(-2px);
}
.ai-chat-hint { transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease; }
.ai-chat-hint:hover, .ai-chat-hint:focus-visible {
  border-color: rgba(0, 174, 239, 0.42); box-shadow: 0 22px 60px rgba(2, 18, 30, 0.16); transform: translateY(-2px);
}

.visual-story {
  display: grid; gap: 18px; grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  margin: 0 auto 104px; max-width: var(--max); padding: 0 20px;
}
.visual-story img { height: 100%; object-fit: cover; transition: transform 500ms ease; width: 100%; }
.visual-story__main, .visual-story__stack, .visual-story__signal { border-radius: 8px; overflow: hidden; }
.visual-story__main { aspect-ratio: 16 / 8.3; box-shadow: var(--editorial-shadow); position: relative; }
.visual-story__main::after {
  background: linear-gradient(90deg, rgba(0, 174, 239, 0.45), transparent 44%);
  content: ""; inset: 0; mix-blend-mode: multiply; pointer-events: none; position: absolute;
}
.visual-story__stack { display: grid; gap: 18px; grid-template-rows: 1fr auto; }
.visual-story__stack img { aspect-ratio: 4 / 3; box-shadow: var(--editorial-shadow); }
.visual-story__main:hover img, .visual-story__stack:hover img { transform: scale(1.045); }
.visual-story__signal { background: var(--editorial-black); display: grid; gap: 12px; padding: 24px; }
.visual-story__signal span {
  background: linear-gradient(90deg, var(--blue), rgba(255, 255, 255, 0.18)); border-radius: 999px; display: block; height: 8px;
}
.visual-story__signal span:nth-child(2) { width: 74%; }
.visual-story__signal span:nth-child(3) { width: 52%; }

.section, .intro, .contact, .visual-story {
  opacity: 0; transform: translateY(28px); transition: opacity 560ms ease, transform 560ms ease;
}
.section.is-visible, .intro.is-visible, .contact.is-visible, .visual-story.is-visible { opacity: 1; transform: translateY(0); }
.section-heading { position: relative; }
.section-heading::before {
  background: var(--blue); content: ""; height: 48px; left: -22px; position: absolute; top: 2px; width: 5px;
}
.tech-grid article, .service-card, .use-case-list article, .process-grid div, .value-stack div, .governance-grid article {
  box-shadow: 0 20px 48px rgba(2, 18, 30, 0.10); overflow: hidden; position: relative;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.tech-grid article::before, .service-card::before, .use-case-list article::before, .process-grid div::before, .value-stack div::before, .governance-grid article::before {
  background: var(--blue); content: ""; height: 4px; left: 0; position: absolute; top: 0;
  transform: scaleX(0.28); transform-origin: left; transition: transform 220ms ease; width: 100%;
}
.tech-grid article:hover, .service-card:hover, .use-case-list article:hover, .process-grid div:hover, .value-stack div:hover, .governance-grid article:hover {
  border-color: rgba(103, 216, 255, 0.48); box-shadow: 0 28px 70px rgba(2, 18, 30, 0.16); transform: translateY(-5px);
}
.tech-grid article:hover::before, .service-card:hover::before, .use-case-list article:hover::before, .process-grid div:hover::before, .value-stack div:hover::before, .governance-grid article:hover::before { transform: scaleX(1); }
.enterprise-lead, .contact, .architecture-map { box-shadow: var(--editorial-shadow); }
.proof {
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 58%, rgba(0, 174, 239, 0.08) 58%, rgba(0, 174, 239, 0.08) 100%);
  box-shadow: 0 0 0 100vmax rgba(0, 174, 239, 0.035); clip-path: inset(0 -100vmax); padding-top: 90px;
}
.floating-whatsapp { transition: transform 180ms ease, box-shadow 180ms ease; }
.floating-whatsapp:hover, .floating-whatsapp:focus-visible { box-shadow: 0 22px 60px rgba(37, 211, 102, 0.34); transform: translateY(-3px) scale(1.03); }

@media (max-width: 920px) {
  .hero .eyebrow, .hero h1, .hero-lede, .hero-actions, .hero-metrics { margin-left: 22px; }
  .hero-content::before { left: 20px; top: 124px; }
  .visual-story { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero h1 { font-size: clamp(4rem, 22vw, 5.6rem); }
  .hero .eyebrow, .hero h1, .hero-lede, .hero-actions, .hero-metrics { margin-left: 18px; }
  .hero-metrics { padding: 18px; }
  .visual-story { margin-bottom: 68px; }
  .visual-story__main, .visual-story__stack img { aspect-ratio: 4 / 3; }
  .section-heading::before { left: -12px; }
}
