:root {
  --bg: #f6f4f1;
  --bg-soft: #fdfcfb;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-strong: rgba(255, 255, 255, 0.98);
  --line: rgba(20, 30, 48, 0.08);
  --line-strong: rgba(20, 30, 48, 0.16);
  --text: #14233b;
  --muted: #6f7b8d;
  --blue: #1676c5;
  --blue-strong: #124d85;
  --blue-soft: #eef4f8;
  --cyan: #b7d6ef;
  --footer: #10243f;
  --footer-soft: #193251;
  --shadow-lg: 0 22px 54px rgba(20, 30, 48, 0.06);
  --shadow-md: 0 10px 24px rgba(20, 30, 48, 0.045);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  font-family: "Mulish", sans-serif;
  background:
    linear-gradient(180deg, #fdfcfb 0%, #f7f5f2 46%, #f5f4f1 100%);
}

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.page-shell {
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(253, 252, 251, 0.9);
  border-bottom: 1px solid rgba(15, 26, 49, 0.05);
  overflow: visible;
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  position: relative;
  z-index: 2;
}

.brand img {
  width: auto;
  height: clamp(34px, 4vw, 48px);
  max-width: 190px;
}

.site-nav {
  position: fixed;
  inset: 0;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
  width: 100vw;
  min-height: 100dvh;
  overflow: auto;
  border-radius: 0;
  background: rgba(253, 252, 251, 0.98);
  border: 0;
  box-shadow: none;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 60;
}

.site-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.site-nav a {
  padding: 16px 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(20, 30, 48, 0.08);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover {
  color: var(--blue-strong);
  background: transparent;
}

.site-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.site-nav-head img {
  height: 36px;
  width: auto;
  max-width: 150px;
}

.menu-close {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(20, 30, 48, 0.08);
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
}

.menu-close span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.menu-close span:first-child {
  transform: rotate(45deg);
}

.menu-close span:last-child {
  transform: rotate(-45deg);
}

.menu-toggle {
  position: relative;
  z-index: 62;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(15, 26, 49, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

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

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

.desktop-cta {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, #1c6eb6, #2282d4);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(15, 94, 165, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(15, 94, 165, 0.2);
  filter: none;
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(15, 26, 49, 0.08);
  box-shadow: none;
}

.section {
  position: relative;
  padding: 82px 0;
  scroll-margin-top: 92px;
}

#inicio,
#sobre,
#solucoes,
#integracoes,
#insights,
#contato {
  scroll-margin-top: 92px;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(248, 246, 243, 0.96));
}

.section-angle::before,
.section-angle::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  height: 86px;
  pointer-events: none;
}

.section-angle::before {
  top: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(20, 30, 48, 0.015));
  clip-path: polygon(0 0, 100% 0, 100% 52%, 0 100%);
}

.section-angle::after {
  bottom: -1px;
  background: linear-gradient(135deg, rgba(20, 30, 48, 0.015), rgba(255, 255, 255, 0.56));
  clip-path: polygon(0 42%, 100% 0, 100% 100%, 0 100%);
}

.hero-angle-top::before {
  display: none;
}

.section-angle-invert::before {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 58%);
}

.section-hero-tone {
  background:
    linear-gradient(180deg, rgba(252, 251, 249, 0.96), rgba(247, 245, 242, 0.92));
}

.section-band-tone {
  background:
    linear-gradient(180deg, rgba(20, 30, 48, 0.015), rgba(20, 30, 48, 0)),
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(20, 30, 48, 0.015), rgba(255, 255, 255, 0));
}

.section-tone-a {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(20, 30, 48, 0.02)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(247, 245, 242, 0.94));
}

.section-tone-b {
  background:
    linear-gradient(135deg, rgba(20, 30, 48, 0.015), rgba(255, 255, 255, 0.78) 42%, rgba(247, 245, 242, 0.96));
}

.section-tone-c {
  background:
    linear-gradient(180deg, rgba(20, 30, 48, 0.015), rgba(255, 255, 255, 0)),
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(20, 30, 48, 0.012), rgba(255, 255, 255, 0));
}

.section-tone-d {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(20, 30, 48, 0.02));
}

.hero {
  padding-top: 42px;
  padding-bottom: 68px;
}

.hero-grid,
.feature-layout,
.footer-grid {
  display: grid;
  gap: 28px;
}

.hero-grid {
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(22, 118, 197, 0.08);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -0.045em;
}

h1 {
  margin-top: 18px;
  font-size: clamp(2.5rem, 8vw, 5.2rem);
  line-height: 0.96;
  max-width: 11ch;
}

h2 {
  margin-top: 16px;
  font-size: clamp(2rem, 4.6vw, 3.35rem);
  line-height: 1.02;
  max-width: 15ch;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.24;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.72;
}

.hero-lead {
  margin-top: 18px;
  max-width: 60ch;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.hero-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.97rem;
  font-weight: 700;
}

.hero-list span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 0 0 6px rgba(17, 146, 245, 0.08);
  flex: 0 0 auto;
}

.hero-mini-stats {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.hero-mini-stats article,
.band-grid article,
.metric-card,
.service-card,
.feature-card,
.stats-ribbon article,
.insight-card,
.glass-card,
.cta-panel,
.hero-card,
.feature-visual {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.hero-mini-stats article,
.band-grid article,
.stats-ribbon article {
  padding: 18px 20px;
  border-radius: 20px;
}

.hero-mini-stats strong,
.band-grid strong,
.metric-card strong,
.feature-card strong,
.stats-ribbon strong,
.footer-column span,
.feature-visual-copy strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 800;
}

.hero-showcase {
  position: relative;
  display: grid;
  gap: 16px;
}

.hero-stage {
  position: relative;
  padding: 16px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.86)),
    linear-gradient(135deg, rgba(20, 30, 48, 0.02), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-lg);
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: auto 24px 18px;
  height: 30px;
  background: linear-gradient(90deg, rgba(20, 30, 48, 0), rgba(20, 30, 48, 0.06), rgba(20, 30, 48, 0));
  filter: blur(22px);
}

.hero-glow {
  position: absolute;
  inset: 10% 8% auto auto;
  width: 34%;
  aspect-ratio: 1;
  border-radius: 40% 60% 52% 48%;
  background: radial-gradient(circle, rgba(20, 30, 48, 0.045), rgba(20, 30, 48, 0));
}

.hero-image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
  border-radius: 28px;
  background: linear-gradient(180deg, #fff, #f7f6f3);
}

.hero-card,
.cta-panel {
  border-radius: var(--radius-lg);
}

.hero-card {
  padding: 22px;
}

.card-tag,
.insight-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(22, 118, 197, 0.08);
  color: var(--blue-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin: 10px 0 10px;
  font-size: 1.28rem;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -0.04em;
}

.hero-metrics {
  display: grid;
  gap: 12px;
}

.metric-card {
  padding: 18px 20px;
  border-radius: 20px;
}

.metric-card span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.section-band {
  padding: 20px 0 14px;
}

.band-grid {
  display: grid;
  gap: 14px;
}

.section-heading {
  position: relative;
  max-width: 760px;
}

.section-heading p {
  margin-top: 18px;
  max-width: 64ch;
}

.about-grid,
.solutions-grid,
.insights-grid {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.glass-card,
.service-card,
.insight-card,
.feature-card {
  border-radius: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.glass-card,
.service-card,
.insight-card {
  padding: 24px;
}

.glass-card::before,
.service-card::before,
.feature-card::before,
.insight-card::before,
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(20, 133, 222, 0.02) 55%, transparent);
  pointer-events: none;
}

.angle-card {
  clip-path: polygon(0 0, 92% 0, 100% 18%, 100% 100%, 0 100%);
}

.topic-media,
.service-media,
.insight-media {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 74px;
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(20, 30, 48, 0.025)),
    linear-gradient(90deg, rgba(20, 30, 48, 0.01), rgba(22, 118, 197, 0.03));
  border: 1px solid rgba(20, 30, 48, 0.06);
}

.topic-media::after,
.service-media::after,
.insight-media::after {
  content: "";
  position: absolute;
  right: -16px;
  top: -18px;
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(22, 118, 197, 0.08), rgba(20, 30, 48, 0));
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.topic-media img,
.service-media img,
.insight-media img,
.feature-icon {
  width: 42px;
  height: 42px;
  padding: 9px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 22px rgba(16, 33, 64, 0.08);
}

.topic-media span,
.service-media em {
  position: relative;
  z-index: 1;
  color: var(--text);
  font-size: 0.84rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 10px;
}

.service-top span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 800;
}

.service-card p,
.glass-card p,
.insight-card p {
  margin-top: 12px;
}

.service-card:nth-child(4n + 1) .service-media {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(22, 118, 197, 0.03)),
    linear-gradient(90deg, rgba(20, 30, 48, 0.012), rgba(22, 118, 197, 0.03));
}

.service-card:nth-child(4n + 2) .service-media {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(22, 118, 197, 0.025)),
    linear-gradient(90deg, rgba(20, 30, 48, 0.012), rgba(22, 118, 197, 0.025));
}

.service-card:nth-child(4n + 3) .service-media {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(22, 118, 197, 0.02)),
    linear-gradient(90deg, rgba(20, 30, 48, 0.01), rgba(22, 118, 197, 0.025));
}

.service-card:nth-child(4n) .service-media {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(22, 118, 197, 0.025)),
    linear-gradient(90deg, rgba(20, 30, 48, 0.012), rgba(22, 118, 197, 0.02));
}

.feature-layout {
  align-items: start;
}

.feature-stack {
  display: grid;
  gap: 14px;
}

.feature-visual {
  display: grid;
  gap: 0;
  margin-top: 26px;
  border-radius: 28px;
}

.feature-visual::before {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, rgba(20, 30, 48, 0.04), rgba(20, 30, 48, 0));
  clip-path: polygon(0 0, 100% 46%, 58% 100%);
}

.feature-visual img {
  width: 100%;
  min-height: 220px;
  object-fit: cover;
}

.feature-visual-copy {
  position: absolute;
  inset: 20px auto auto 20px;
  z-index: 1;
  max-width: 290px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(20, 35, 59, 0.74);
  backdrop-filter: blur(14px);
}

.feature-visual-copy strong,
.feature-visual-copy p {
  color: #fff;
}

.feature-card {
  padding: 20px 22px;
}

.feature-card p {
  margin-top: 8px;
}

.feature-icon {
  margin-bottom: 14px;
}

.stats-ribbon {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.stats-ribbon article {
  border-radius: 22px;
}

.stats-ribbon span {
  color: rgba(18, 32, 59, 0.78);
  font-size: 0.92rem;
  line-height: 1.55;
}

.insight-card {
  min-height: 100%;
}

.insight-card h3 {
  margin-top: 14px;
}

.insight-media {
  min-height: 88px;
  justify-content: flex-start;
}

.contact-section {
  padding-bottom: 36px;
}

.cta-panel {
  display: grid;
  gap: 22px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(16, 36, 63, 0.96), rgba(25, 50, 81, 0.94)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 36px rgba(20, 30, 48, 0.12);
}

.cta-panel h2,
.cta-panel p,
.cta-panel .eyebrow {
  color: #fff;
}

.cta-panel .eyebrow {
  background: rgba(255, 255, 255, 0.14);
}

.cta-panel .button {
  justify-self: start;
  background: #fff;
  color: var(--blue-strong);
  box-shadow: none;
}

.site-footer {
  position: relative;
  padding: 56px 0 56px;
  background:
    linear-gradient(135deg, var(--footer) 0%, var(--footer-soft) 62%, #0f2036 100%);
  color: rgba(255, 255, 255, 0.88);
}

.site-footer::before {
  display: none;
}

.footer-shape {
  position: absolute;
  pointer-events: none;
}

.footer-shape-a {
  inset: 40px auto auto 8%;
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, rgba(126, 209, 255, 0.04), rgba(20, 133, 222, 0));
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  filter: blur(10px);
}

.footer-shape-b {
  inset: auto 8% 18px auto;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(20, 133, 222, 0));
  clip-path: polygon(0 0, 100% 40%, 58% 100%);
  filter: blur(8px);
}

.footer-grid {
  position: relative;
  z-index: 1;
}

.footer-brand,
.footer-column {
  display: grid;
  gap: 10px;
}

.footer-grid {
  row-gap: 28px;
}

.footer-brand img {
  width: auto;
  height: 42px;
  max-width: 180px;
  filter: none;
}

.footer-brand p,
.footer-column p,
.footer-column a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-column span {
  color: #ffffff;
}

.footer-column a:hover {
  color: #fff;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js-motion .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js-motion .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.glass-card:hover,
.service-card:hover,
.feature-card:hover,
.insight-card:hover,
.hero-mini-stats article:hover,
.band-grid article:hover,
.metric-card:hover,
.stats-ribbon article:hover,
.feature-visual:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: 0 16px 28px rgba(20, 30, 48, 0.07);
}

@media (min-width: 720px) {
  .hero-mini-stats,
  .band-grid,
  .stats-ribbon,
  .footer-grid,
  .about-grid,
  .insights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 980px) {
  .menu-toggle {
    display: none;
  }

  .site-nav-head,
  .menu-close {
    display: none;
  }

  .site-nav {
    position: static;
    inset: auto;
    display: flex;
    align-items: center;
    align-content: normal;
    gap: 8px;
    padding: 0;
    width: auto;
    min-height: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    z-index: auto;
  }

  .site-nav a {
    padding: 10px 12px;
    border: 0;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--muted);
  }

  .desktop-cta {
    display: inline-flex;
  }

  .hero-grid,
  .feature-layout {
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  }

  .hero-copy {
    padding-right: 24px;
  }

  .hero-mini-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid,
  .insights-grid,
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .solutions-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .stats-ribbon {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cta-panel {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 34px 38px;
  }
}

@media (max-width: 979px) {
  html {
    scroll-padding-top: 82px;
  }

  .site-header {
    height: 74px;
  }

  .header-inner {
    height: 74px;
    flex-wrap: nowrap;
    justify-content: center;
  }

  .desktop-cta {
    display: none !important;
  }

  .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .menu-toggle {
    position: fixed;
    top: 13px;
    right: 12px;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    width: 100vw;
    min-height: 100dvh;
    padding: 22px 22px 32px;
    z-index: 80;
  }
}

@media (max-width: 639px) {
  :root {
    --container: min(100% - 22px, 100%);
  }

  .site-header {
    background: rgba(251, 251, 250, 0.92);
  }

  html {
    scroll-padding-top: 78px;
  }

  .section-angle::before,
  .section-angle::after {
    opacity: 0.45;
  }

  .header-inner {
    min-height: 74px;
    height: 74px;
    justify-content: center;
  }

  .brand img {
    height: 34px;
    max-width: 142px;
  }

  .hero {
    padding-top: 18px;
  }

  .section {
    padding: 56px 0;
    scroll-margin-top: 78px;
  }

  .section-angle::before,
  .section-angle::after {
    height: 54px;
  }

  h1 {
    max-width: 8.8ch;
    font-size: clamp(2.15rem, 12vw, 3.35rem);
    line-height: 0.98;
  }

  h2 {
    max-width: none;
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  p,
  .hero-lead {
    font-size: 0.94rem;
  }

  .hero-grid,
  .feature-layout,
  .footer-grid,
  .about-grid,
  .solutions-grid,
  .insights-grid,
  .band-grid,
  .stats-ribbon,
  .hero-mini-stats,
  .hero-metrics {
    gap: 14px;
  }

  .hero-list div {
    align-items: flex-start;
    font-size: 0.93rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .hero-showcase {
    gap: 14px;
  }

  .hero-stage,
  .hero-card,
  .glass-card,
  .service-card,
  .insight-card,
  .cta-panel {
    border-radius: 22px;
  }

  .service-card,
  .glass-card,
  .insight-card,
  .feature-card {
    padding: 20px;
  }

  .topic-media,
  .service-media,
  .insight-media {
    min-height: 64px;
    margin-bottom: 14px;
    padding: 12px 14px;
  }

  .feature-visual {
    margin-top: 20px;
  }

  .feature-visual-copy {
    position: relative;
    inset: auto;
    max-width: none;
    border-radius: 0;
  }

  .feature-visual img {
    min-height: 180px;
  }

  .hero-mini-stats article,
  .band-grid article,
  .metric-card,
  .service-card,
  .feature-card,
  .stats-ribbon article,
  .insight-card,
  .glass-card,
  .cta-panel,
  .hero-card,
  .feature-visual {
    backdrop-filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
