:root {
  --bg: #eef4ff;
  --bg-soft: #f7faff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --surface-dark: #08162f;
  --surface-muted: #dce8ff;
  --text: #08152e;
  --text-soft: #52627d;
  --line: rgba(8, 21, 46, 0.12);
  --brand: #a943ff;
  --brand-2: #164aeb;
  --brand-3: #15ddaf;
  --brand-4: #0d96e9;
  --shadow: 0 20px 60px rgba(12, 36, 91, 0.16);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(169, 67, 255, 0.14), transparent 30%),
    radial-gradient(circle at top right, rgba(13, 150, 233, 0.16), transparent 24%),
    radial-gradient(circle at 20% 80%, rgba(21, 221, 175, 0.12), transparent 26%),
    linear-gradient(180deg, #f6f9ff 0%, #edf4ff 48%, #f9fbff 100%);
  line-height: 1.6;
}

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

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

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(246, 249, 255, 0.76);
  border-bottom: 1px solid rgba(8, 21, 46, 0.06);
}

.site-header.compact {
  position: relative;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 1rem;
}

.brand {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  height: 42px;
  width: auto;
}

.footer-brand .brand-logo {
  height: 46px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.96rem;
}

.site-nav a:not(.button) {
  color: var(--text-soft);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  box-shadow: 0 14px 30px rgba(22, 74, 235, 0.28);
}

.button-secondary {
  border: 1px solid rgba(22, 74, 235, 0.16);
  background: rgba(255, 255, 255, 0.74);
}

.button-small {
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
}

.large {
  padding-inline: 1.8rem;
}

.invert {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.hero {
  padding: 5.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2rem;
  align-items: center;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.6rem;
}

.hero-iso {
  width: 54px;
  height: 54px;
  border-radius: 16px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(169, 67, 255, 0.18);
  background: rgba(255, 255, 255, 0.66);
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1,
.section h2,
.subpage-hero h1,
.article h1 {
  margin: 1rem 0 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.05rem, 4.8vw, 3.75rem);
  line-height: 1.01;
  letter-spacing: -0.05em;
  max-width: 18ch;
}

.section h2,
.article h1,
.subpage-hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  max-width: 25ch;
}

.hero-lead,
.section-heading p,
.subpage-lead,
.article-lead {
  font-size: 1.08rem;
  color: var(--text-soft);
  max-width: 62ch;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 1.5rem;
}

.hero-points,
.vertical-card ul,
.article ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li,
.vertical-card li,
.article li {
  position: relative;
  padding-left: 1.35rem;
  margin: 0.75rem 0;
}

.hero-points li::before,
.vertical-card li::before,
.article li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
}

.hero-panel {
  position: relative;
}

.glass-card,
.value-card,
.vertical-card,
.module-card,
.client-card,
.blog-card,
.post-card,
.timeline-card,
.split-stats article,
.faq-list details,
.cta-panel,
.highlight-panel,
.timeline-step,
.client-grid article,
.article,
.flow-card {
  border: 1px solid rgba(8, 21, 46, 0.08);
  box-shadow: var(--shadow);
}

.glass-card {
  padding: 1.3rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(169, 67, 255, 0.18), rgba(13, 150, 233, 0.1));
  color: #eef5ff;
}

.surface-dark {
  background:
    radial-gradient(circle at top right, rgba(21, 221, 175, 0.2), transparent 34%),
    radial-gradient(circle at top left, rgba(169, 67, 255, 0.26), transparent 28%),
    linear-gradient(180deg, #0f224f, #08162f);
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.hero-card-main,
.hero-card-floating {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.hero-card-main {
  inset: 0 0 72px 42px;
  background: rgba(255, 255, 255, 0.03);
}

.hero-card-floating {
  right: 0;
  bottom: 0;
  width: min(66%, 430px);
  padding: 1.1rem 1.2rem;
  background:
    linear-gradient(180deg, rgba(8, 21, 46, 0.52), rgba(8, 21, 46, 0.84)),
    rgba(8, 21, 46, 0.7);
  backdrop-filter: blur(10px);
}

.hero-image {
  position: relative;
  height: 100%;
  min-height: 100%;
  border-radius: inherit;
  overflow: hidden;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 10%, rgba(169, 67, 255, 0.34), transparent 34%),
    radial-gradient(circle at 84% 10%, rgba(13, 150, 233, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(4, 11, 26, 0.42));
}

.hero-rotating-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.8) saturate(0.96);
  transition: opacity 0.5s ease;
}

.hero-rotating-image.is-fading {
  opacity: 0.68;
}

.hero-tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.65rem 0.95rem;
  background: rgba(10, 16, 28, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(246, 251, 255, 0.95);
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.mini-label {
  margin: 0 0 0.95rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(255, 221, 171, 0.88);
}

.hero-mini-item + .hero-mini-item {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(245, 250, 255, 0.12);
}

.hero-mini-item h3 {
  margin: 0 0 0.18rem;
  font-size: 1.06rem;
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: #f6fbff;
}

.hero-mini-item p {
  margin: 0;
  color: rgba(234, 243, 253, 0.8);
  font-size: 0.97rem;
  line-height: 1.38;
}

.panel-top,
.flow-card,
.logo-strip,
.split-stats,
.highlight-panel,
.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.chip,
.pill,
.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 800;
}

.chip-live {
  background: rgba(21, 221, 175, 0.12);
  color: #bffeed;
}

.muted {
  color: rgba(239, 245, 239, 0.68);
  font-size: 0.92rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.4rem 0;
}

.metric-grid article,
.stack-item,
.flow-card {
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
}

.metric-grid strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.metric-grid span,
.stack-item span {
  color: rgba(239, 245, 239, 0.72);
  font-size: 0.92rem;
}

.stack-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.stack-item strong {
  display: block;
  margin-top: 0.2rem;
}

.logo-bar {
  padding: 1.2rem 0;
}

.logo-strip {
  flex-wrap: wrap;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
}

.logo-strip span {
  color: var(--text-soft);
}

.logo-strip a {
  font-weight: 800;
}

.section {
  padding: 5.25rem 0;
}

.section-accent {
  background:
    linear-gradient(180deg, rgba(169, 67, 255, 0.12), rgba(169, 67, 255, 0.04)),
    linear-gradient(180deg, rgba(13, 150, 233, 0.08), rgba(255, 255, 255, 0.12));
}

.section-dark {
  background:
    radial-gradient(circle at top left, rgba(169, 67, 255, 0.2), transparent 30%),
    radial-gradient(circle at top right, rgba(13, 150, 233, 0.18), transparent 26%),
    linear-gradient(180deg, #08162f, #102554);
  color: #edf4ff;
}

.section-muted {
  background: rgba(255, 255, 255, 0.44);
}

.section-highlight {
  padding-top: 0;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading.narrow {
  max-width: 58rem;
}

.section-heading.light p,
.section-dark .module-card p {
  color: rgba(237, 243, 234, 0.7);
}

.value-grid,
.module-grid,
.vertical-grid,
.client-grid,
.blog-grid,
.blog-list {
  display: grid;
  gap: 1.25rem;
}

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

.value-card,
.difference-card,
.vertical-card,
.module-card,
.client-card,
.blog-card,
.post-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
}

.vertical-visual {
  width: 100%;
  object-fit: cover;
  display: block;
}

.vertical-grid {
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  align-items: stretch;
}

.vertical-featured {
  background: linear-gradient(180deg, rgba(169, 67, 255, 0.08), rgba(255, 255, 255, 0.82));
}

.vertical-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.vertical-visual {
  margin: 0;
  width: 100%;
  height: 184px;
  object-position: center;
  background: #dce8ff;
}

.vertical-body {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  padding-top: 1.3rem;
  flex: 1;
}

.vertical-body h3,
.module-head h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.48rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.vertical-body p,
.module-card p {
  margin: 0;
}

.vertical-body ul {
  margin-top: auto;
}

.vertical-visual-manufactura {
  object-position: center 40%;
}

.vertical-visual-refacciones {
  object-position: center 58%;
}

.vertical-visual-restaurante {
  object-position: center 52%;
}

.vertical-visual-lavanderia {
  object-position: center 48%;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.difference-card h3 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.16rem, 1.9vw, 1.42rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.difference-card p {
  margin: 0;
  color: var(--text-soft);
}

.section-core {
  padding-top: 2rem;
}

.core-shell {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.4rem;
  align-items: start;
}

.core-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.core-card,
.core-panel {
  border: 1px solid rgba(8, 21, 46, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.core-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem;
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.core-card:hover,
.core-card.is-active {
  transform: translateY(-1px);
  border-color: rgba(169, 67, 255, 0.24);
  background: linear-gradient(180deg, rgba(169, 67, 255, 0.08), rgba(255, 255, 255, 0.88));
}

.core-icon {
  flex: 0 0 48px;
}

.core-copy {
  display: grid;
  gap: 0.35rem;
}

.core-copy strong {
  font-size: 1.02rem;
}

.core-copy span {
  color: var(--text-soft);
}

.core-panel {
  padding: 1.5rem;
}

.core-panel h3 {
  margin: 0.55rem 0 0.65rem;
  font-size: clamp(1.22rem, 2vw, 1.56rem);
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.core-panel p {
  margin: 0;
  color: var(--text-soft);
}

.core-points {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.core-points li {
  position: relative;
  padding-left: 1.15rem;
}

.core-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-4));
}

.pill,
.tag {
  background: rgba(22, 74, 235, 0.1);
  color: var(--brand);
}

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

.module-card {
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
}

.module-card p {
  margin: 0;
}

.module-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.module-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 16px;
  border: 1px solid rgba(169, 67, 255, 0.2);
  background: linear-gradient(135deg, rgba(169, 67, 255, 0.2), rgba(13, 150, 233, 0.14));
}

.module-icon i {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.92);
}

.module-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
  color: rgba(237, 243, 234, 0.78);
}

.module-points li {
  position: relative;
  padding-left: 1rem;
}

.module-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-4));
}

.process-layout,
.split-panel,
.faq-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: start;
}

.timeline-card {
  padding: 1.2rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
}

.timeline-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  margin-bottom: 0.9rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-step span:first-child {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  font-weight: 800;
}

.split-panel {
  grid-template-columns: 1.1fr 0.9fr;
  padding: 1.8rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.split-stats {
  flex-direction: column;
  align-items: stretch;
}

.split-stats article {
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
}

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

.client-card a,
.post-card a,
.blog-card a {
  font-weight: 800;
  color: var(--brand);
}

.highlight-panel,
.cta-panel {
  padding: 2rem;
  border-radius: var(--radius-xl);
}

.highlight-panel {
  background:
    radial-gradient(circle at top left, rgba(169, 67, 255, 0.24), transparent 35%),
    radial-gradient(circle at bottom right, rgba(21, 221, 175, 0.16), transparent 28%),
    linear-gradient(135deg, #13307a, #08162f);
  color: #f6f9ff;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-list details {
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin: 0.75rem 0 0;
  color: var(--text-soft);
}

.final-cta {
  padding-top: 2rem;
}

.cta-panel {
  background:
    radial-gradient(circle at bottom right, rgba(13, 150, 233, 0.18), transparent 35%),
    radial-gradient(circle at top left, rgba(169, 67, 255, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(241, 246, 255, 0.94));
  border: 1px solid rgba(169, 67, 255, 0.14);
}

.centered {
  margin-top: 2rem;
  text-align: center;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-shell {
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-note {
  max-width: 22rem;
  color: var(--text-soft);
}

.subpage-body {
  background:
    radial-gradient(circle at top left, rgba(169, 67, 255, 0.08), transparent 30%),
    radial-gradient(circle at top right, rgba(13, 150, 233, 0.08), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

.subpage-main {
  min-height: 70vh;
}

.subpage-hero {
  padding-bottom: 1.5rem;
}

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

.article {
  max-width: 860px;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.8);
}

.article h2 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.28rem, 2.6vw, 1.56rem);
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.article-cta {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.static-nav {
  gap: 0.8rem;
}

@media (max-width: 1080px) {
  .hero-grid,
  .core-shell,
  .process-layout,
  .split-panel,
  .faq-layout,
  .value-grid,
  .difference-grid,
  .module-grid,
  .vertical-grid,
  .client-grid {
    grid-template-columns: 1fr 1fr;
  }

  .vertical-featured,
  .hero-copy,
  .hero-panel,
  .section-heading,
  .split-copy,
  .split-stats {
    grid-column: span 2;
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero-card-main {
    inset: 0 28px 68px 0;
  }

  .hero-card-floating {
    width: min(88%, 430px);
  }
}

@media (max-width: 780px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.6rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(248, 251, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .static-nav {
    display: flex;
    position: static;
    flex-direction: row;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: 0;
  }

  .hero,
  .section {
    padding: 4rem 0;
  }

  .hero-grid,
  .core-shell,
  .core-grid,
  .process-layout,
  .split-panel,
  .faq-layout,
  .value-grid,
  .difference-grid,
  .module-grid,
  .vertical-grid,
  .client-grid,
  .blog-grid,
  .blog-list {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-panel,
  .section-heading,
  .split-copy,
  .split-stats,
  .vertical-featured {
    grid-column: auto;
  }

  .hero-visual {
    min-height: 440px;
  }

  .hero-card-main {
    inset: 0 0 58px 0;
  }

  .hero-card-floating {
    right: 0;
    left: 1rem;
    width: auto;
    padding: 1rem;
  }

  .hero-tag {
    top: 0.95rem;
    left: 0.95rem;
    font-size: 0.76rem;
  }

  .hero-mini-item h3 {
    font-size: 1rem;
  }

  .hero-mini-item p {
    font-size: 0.92rem;
  }

  .hero h1,
  .section h2,
  .subpage-hero h1,
  .article h1 {
    max-width: none;
  }

  .logo-strip,
  .highlight-panel,
  .cta-panel,
  .footer-shell {
    align-items: flex-start;
    flex-direction: column;
  }

  .static-nav {
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .article {
    padding: 1.4rem;
  }

  .brand-logo {
    height: 36px;
  }

  .hero-brand {
    gap: 0.65rem;
  }

  .hero-iso {
    width: 46px;
    height: 46px;
  }

  .vertical-visual {
    height: 200px;
  }
}
