:root {
  --primary: #20395f;
  --secondary: #4f6b89;
  --accent: #9bb9d3;
  --neutral: #d7dce2;
  --paper: #f5f5f2;
  --white: #ffffff;
  --ink: #1a1a2e;
  --muted: #555f6e;
  --line: rgba(32, 57, 95, 0.16);
  --shadow: 0 24px 70px rgba(32, 57, 95, 0.12);
  --soft-shadow: 0 2px 12px rgba(32, 57, 95, 0.08);
  --radius: 8px;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: Sora, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.shell {
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.section-tight {
  padding: 64px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 11px;
  color: var(--secondary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  max-width: 980px;
  font-size: clamp(42px, 6.4vw, 74px);
}

h2 {
  max-width: 760px;
  font-size: clamp(32px, 4vw, 48px);
}

h3 {
  font-size: clamp(21px, 2vw, 26px);
}

p {
  color: var(--muted);
}

.lead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 20px);
}

.lead.dark {
  color: var(--muted);
}

.nav {
  position: fixed;
  top: 18px;
  right: 0;
  left: 0;
  z-index: 20;
  pointer-events: none;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 32px, 1180px);
  min-height: 62px;
  margin-inline: auto;
  padding: 8px 10px 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(245, 245, 242, 0.13);
  box-shadow: 0 18px 55px rgba(7, 19, 38, 0.12);
  color: var(--white);
  pointer-events: auto;
  transition: background 650ms var(--ease), border-color 650ms var(--ease), color 650ms var(--ease), transform 650ms var(--ease);
}

.nav.is-scrolled .nav-shell,
.nav.solid .nav-shell {
  border-color: rgba(32, 57, 95, 0.12);
  background: rgba(32, 57, 95, 0.95);
  color: var(--white);
  transform: translateY(-4px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  object-fit: contain;
  padding: 6px;
}

.brand-text {
  display: grid;
  color: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-text span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  opacity: 0.72;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.nav-link {
  border-radius: 999px;
  padding: 8px 13px;
  color: inherit;
  font-size: 13px;
  font-weight: 700;
  transition: background 450ms var(--ease), transform 450ms var(--ease);
}

.nav-link:hover,
.nav-link.is-active {
  background: rgba(255, 255, 255, 0.18);
}

.nav-link:active,
.button:active,
.icon-button:active {
  transform: scale(0.98);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 10px 16px 10px 18px;
  background: var(--primary);
  color: var(--white);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 450ms var(--ease), background 450ms var(--ease), color 450ms var(--ease), border-color 450ms var(--ease);
}

.button .button-icon {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  transition: transform 450ms var(--ease), background 450ms var(--ease);
}

.button:hover .button-icon {
  transform: translate(3px, -1px);
}

.button.light {
  background: var(--white);
  color: var(--primary);
}

.button.light .button-icon {
  background: rgba(32, 57, 95, 0.09);
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button.secondary {
  background: var(--secondary);
}

.icon-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: inherit;
  cursor: pointer;
}

.icon-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 450ms var(--ease), opacity 450ms var(--ease);
}

.icon-button[aria-expanded="true"] span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.icon-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.icon-button[aria-expanded="true"] span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 94px 16px auto 16px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  background: rgba(32, 57, 95, 0.96);
  color: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-14px);
  transition: opacity 450ms var(--ease), transform 450ms var(--ease);
}

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

.hero {
  position: relative;
  display: grid;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--primary);
  color: var(--white);
}

.hero.media {
  isolation: isolate;
}

.hero.media::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--hero-image) center / cover no-repeat;
  content: "";
  transform: scale(1.02);
}

.hero.media::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 75% 35%, rgba(155, 185, 211, 0.45), transparent 28%),
    linear-gradient(110deg, rgba(32, 57, 95, 0.9) 0%, rgba(32, 57, 95, 0.76) 45%, rgba(32, 57, 95, 0.44) 100%);
  content: "";
}

.hero .shell {
  display: grid;
  align-items: end;
  padding: 150px 0 72px;
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.55fr);
  gap: 44px;
  align-items: end;
}

.hero h1 {
  margin: 18px 0 22px;
  color: var(--white);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-note {
  align-self: end;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 28px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.hero-note strong {
  display: block;
  color: var(--white);
  font-size: 38px;
  letter-spacing: 0;
  line-height: 1;
}

.scroll-cue {
  position: absolute;
  right: max(20px, calc((100vw - 1180px) / 2));
  bottom: 24px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
}

.scroll-cue span {
  animation: cue 1.8s var(--ease) infinite;
}

@keyframes cue {
  0%, 100% {
    opacity: 0.5;
    transform: translateY(-6px);
  }
  50% {
    opacity: 1;
    transform: translateY(6px);
  }
}

.page-hero {
  padding: 160px 0 80px;
  background: var(--primary);
  color: var(--white);
}

.page-hero h1,
.page-hero h2 {
  color: var(--white);
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
}

.about-page {
  overflow-x: hidden;
  background: #e8edf0;
}

/* Sticky nav shared behavior — see reveal rules below near .home-awwwards > .nav */

.about-hero {
  min-height: 100dvh;
  padding: 8px 8px 0;
  background: #e8edf0;
  color: #183247;
}

.about-hero-frame {
  position: relative;
  min-height: 72dvh;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.68), transparent 26%),
    linear-gradient(135deg, #c9dce5 0%, #9ebdcd 54%, #8fb1c3 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.74);
  isolation: isolate;
}

.about-hero-nav {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 24px 34px 0;
  color: rgba(24, 50, 71, 0.84);
}

.about-hero-brand {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.about-hero-brand img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  object-fit: contain;
  padding: 3px;
}

.about-hero-links {
  display: flex;
  gap: 34px;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 700;
}

.about-hero-links a {
  opacity: 0.82;
}

.about-hero-links .is-active {
  opacity: 1;
}

.about-hero-cta {
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  padding: 13px 24px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.about-hero-stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 0 0 18px 18px;
}

.about-word {
  position: absolute;
  z-index: 6;
  color: rgba(255, 255, 255, 0.9);
  font-family: Sora, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(66px, 11vw, 146px);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.9;
  pointer-events: none;
}

.about-word-left {
  top: 15%;
  left: 5%;
}

.about-word-right {
  right: 6%;
  bottom: 26%;
  font-size: clamp(58px, 10.2vw, 136px);
}

.about-hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 34px 56px rgba(16, 45, 64, 0.28));
  border-radius: 0 0 18px 18px;
  transform: none;
}

.about-video-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 64%, rgba(143, 177, 195, 0.72) 100%);
}

.about-callout {
  position: absolute;
  z-index: 7;
  display: grid;
  grid-template-columns: 86px auto;
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-transform: uppercase;
}

.about-callout::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  content: "";
}

.about-callout-left {
  left: 3.5%;
  bottom: 28%;
}

.about-callout-right {
  right: 3.5%;
  top: 21%;
  grid-template-columns: auto 86px;
}

.about-mini-media {
  display: block;
  width: 86px;
  height: 64px;
  overflow: hidden;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.about-mini-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hotspot {
  position: absolute;
  z-index: 8;
  width: 26px;
  height: 26px;
  border: 4px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 1px rgba(76, 108, 130, 0.25);
}

.about-hotspot::after {
  position: absolute;
  top: 50%;
  width: 180px;
  height: 1px;
  background: rgba(255, 255, 255, 0.54);
  content: "";
}

.about-hotspot-one {
  left: 36%;
  top: 45%;
}

.about-hotspot-one::after {
  right: 22px;
  transform: rotate(138deg);
  transform-origin: right center;
}

.about-hotspot-two {
  right: 29%;
  top: 35%;
}

.about-hotspot-two::after {
  left: 22px;
}

.about-buy-pill {
  position: absolute;
  z-index: 9;
  bottom: -19px;
  left: 50%;
  border-radius: 999px;
  padding: 17px 30px;
  background: #05080a;
  color: var(--white);
  box-shadow: 0 16px 28px rgba(7, 19, 38, 0.3);
  font-size: 12px;
  font-weight: 900;
  transform: translateX(-50%);
}

.about-bottom-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.2fr) minmax(0, 0.9fr);
  gap: 4px;
  width: calc(100% - 16px);
  margin: 3px auto 0;
  background: transparent;
}

.about-bottom-card {
  min-height: 226px;
  padding: 34px 44px 24px;
  background: rgba(255, 255, 255, 0.92);
  color: #183247;
  border-radius: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.about-bottom-left {
  clip-path: none;
}

.about-bottom-center {
  clip-path: none;
  text-align: center;
}

.about-bottom-right {
  clip-path: none;
}

.about-icon-row {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}

.about-icon-row span {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(24, 50, 71, 0.08);
  border-radius: 50%;
  background: rgba(143, 177, 195, 0.1);
}

.about-bottom-card p {
  margin: 0;
  color: rgba(24, 50, 71, 0.86);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.34;
}

.about-bottom-left a {
  display: inline-block;
  margin-top: 34px;
  border-bottom: 1px solid currentColor;
  color: #183247;
  font-size: 13px;
  font-weight: 900;
}

.about-bottom-center h1 {
  max-width: 430px;
  margin: 16px auto 30px;
  color: #101a24;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.about-bottom-center p {
  color: rgba(24, 50, 71, 0.54);
  font-size: 12px;
  font-weight: 700;
}

.about-bottom-right strong {
  display: block;
  margin-bottom: 30px;
  color: #101a24;
  font-size: clamp(44px, 5vw, 74px);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.about-bottom-right p {
  max-width: 300px;
  color: rgba(24, 50, 71, 0.62);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.catalog-page {
  overflow-x: hidden;
  background: #fafafa;
}

/* Sticky nav shared behavior — see reveal rules below near .home-awwwards > .nav */

.catalog-hero {
  position: relative;
  min-height: max(820px, 100dvh);
  padding: 30px 30px 0;
  background:
    radial-gradient(circle at 55% 48%, rgba(155, 185, 211, 0.12), transparent 28%),
    #fafafa;
  color: #101214;
  isolation: isolate;
}

.catalog-hero-nav {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  gap: 34px;
  align-items: start;
  min-height: 42px;
}

.catalog-hero-brand {
  display: inline-flex;
  gap: 8px;
  align-items: start;
  width: fit-content;
  color: #161719;
}

.catalog-hero-brand img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: contain;
}

.catalog-hero-brand span {
  display: block;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
}

.catalog-hero-brand em {
  display: block;
  max-width: 92px;
  margin-left: 4px;
  color: rgba(16, 18, 20, 0.38);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.08;
}

.catalog-hero-links {
  display: flex;
  gap: 24px;
  align-items: center;
  color: rgba(16, 18, 20, 0.34);
  font-size: 13px;
  font-weight: 800;
}

.catalog-hero-links a::before {
  content: "+ ";
}

.catalog-hero-links .is-active {
  color: #101214;
}

.catalog-hero-pill {
  justify-self: end;
  border: 1px solid rgba(16, 18, 20, 0.18);
  border-radius: 999px;
  padding: 13px 24px;
  color: rgba(16, 18, 20, 0.74);
  font-size: 12px;
  font-weight: 900;
  transition: transform 520ms var(--ease), background 520ms var(--ease);
}

.catalog-hero-pill:hover {
  background: #101214;
  color: var(--white);
  transform: translateY(-2px);
}

.catalog-hero-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.98fr) minmax(520px, 0.92fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: stretch;
  min-height: calc(100dvh - 210px);
  padding-top: 134px;
}

.catalog-hero-copy {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: start;
  max-width: 780px;
}

.catalog-kicker {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  width: fit-content;
  margin-bottom: 26px;
  color: rgba(16, 18, 20, 0.34);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.catalog-kicker::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #101214;
  content: "";
}

.catalog-hero-copy h1 {
  max-width: 660px;
  margin: 0;
  color: #101214;
  font-size: clamp(58px, 6.25vw, 96px);
  font-weight: 300;
  letter-spacing: -0.075em;
  line-height: 0.98;
  text-wrap: balance;
}

.catalog-hero-copy p {
  max-width: 440px;
  margin: 30px 0 20px;
  border-top: 1px solid rgba(16, 18, 20, 0.08);
  padding-top: 20px;
  color: rgba(16, 18, 20, 0.42);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.catalog-primary-cta {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 54px;
  border-radius: 999px;
  padding: 8px 9px 8px 26px;
  background: #101214;
  color: var(--white);
  box-shadow: 0 20px 50px rgba(16, 18, 20, 0.16);
  font-size: 15px;
  font-weight: 900;
  transition: transform 520ms var(--ease);
}

.catalog-primary-cta span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  transition: transform 520ms var(--ease);
}

.catalog-primary-cta:hover {
  transform: translateY(-3px);
}

.catalog-primary-cta:hover span {
  transform: translate(3px, -2px);
}

.catalog-hero-media {
  position: absolute;
  top: 86px;
  right: 30px;
  bottom: 30px;
  width: min(44vw, 840px);
}

.catalog-media-card {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 40px;
  background: #d5d5d1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 34px 90px rgba(16, 18, 20, 0.08);
}

.catalog-media-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
  filter: saturate(0.92) contrast(0.96);
}

.catalog-media-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 18, 20, 0.12), rgba(16, 18, 20, 0.02) 36%, rgba(16, 18, 20, 0.22)),
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.42), transparent 34%);
  content: "";
}

.catalog-media-top {
  position: absolute;
  top: 46px;
  left: 46px;
  z-index: 2;
  display: grid;
  gap: 16px;
  width: min(62%, 470px);
  color: rgba(255, 255, 255, 0.86);
}

.catalog-media-top strong {
  display: inline-flex;
  gap: 10px;
  align-items: baseline;
  border-bottom: 2px solid rgba(255, 255, 255, 0.34);
  padding-bottom: 18px;
  font-size: clamp(38px, 4.8vw, 76px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.catalog-media-top span {
  max-width: 410px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.catalog-search-bubble {
  position: absolute;
  top: 44px;
  right: 44px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  color: #101214;
  font-size: 38px;
  font-weight: 300;
}

.catalog-product-chip {
  position: absolute;
  top: 28%;
  right: 19%;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 74px;
  gap: 8px 12px;
  align-items: center;
  min-width: 240px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 24px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.catalog-product-chip span,
.catalog-product-chip strong {
  grid-column: 1;
  font-size: 14px;
  line-height: 1;
}

.catalog-product-chip strong {
  font-size: 18px;
}

.catalog-product-chip em {
  grid-column: 1;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.catalog-product-chip::after {
  grid-column: 2;
  grid-row: 1 / span 3;
  width: 74px;
  height: 74px;
  border-radius: 18px;
  background: url("/assets/herocatalogo.webp") center / cover;
  content: "";
}

.catalog-orbit-badge {
  position: absolute;
  top: 44%;
  left: -82px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 142px;
  height: 142px;
  color: #101214;
}

.catalog-orbit-badge svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.catalog-orbit-badge path {
  fill: none;
}

.catalog-orbit-badge text {
  fill: #101214;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-orbit-badge i {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #101214;
}

.catalog-floating-note {
  position: absolute;
  right: 48%;
  bottom: 48px;
  z-index: 5;
  display: grid;
  grid-template-columns: 132px minmax(260px, 1fr) 28px;
  gap: 24px;
  align-items: center;
  width: min(560px, 54vw);
  border-radius: 24px;
  padding: 15px 20px 15px 15px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 70px rgba(16, 18, 20, 0.1);
}

.catalog-floating-note img {
  width: 132px;
  height: 112px;
  border-radius: 18px;
  object-fit: cover;
}

.catalog-floating-note h2 {
  margin: 0 0 10px;
  color: #101214;
  font-size: 22px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.catalog-floating-note p {
  margin: 0;
  color: rgba(16, 18, 20, 0.42);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.catalog-floating-note > span {
  align-self: start;
  color: rgba(16, 18, 20, 0.38);
  font-size: 26px;
}

.catalog-hero-bottom {
  position: absolute;
  bottom: 24px;
  left: 30px;
  z-index: 4;
  width: min(650px, 52vw);
}

.catalog-hero-bottom h2 {
  margin: 0 0 16px;
  color: #101214;
  font-size: clamp(30px, 2.6vw, 42px);
  font-weight: 400;
  letter-spacing: -0.06em;
}

.catalog-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.catalog-chip-row a {
  border: 1px solid rgba(16, 18, 20, 0.08);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(16, 18, 20, 0.62);
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 420ms var(--ease), background 420ms var(--ease), color 420ms var(--ease);
}

.catalog-chip-row a:hover {
  background: #101214;
  color: var(--white);
  transform: translateY(-2px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 56px;
  align-items: center;
}

.media-card,
.double-card {
  border: 1px solid rgba(32, 57, 95, 0.08);
  border-radius: 30px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: var(--soft-shadow);
}

.media-card-inner,
.double-card-inner {
  overflow: hidden;
  border-radius: 22px;
  background: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.media-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.quote {
  position: relative;
  margin-top: -86px;
  margin-inline: 26px;
  border-left: 4px solid var(--secondary);
  border-radius: 8px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.quote p {
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
}

.dark-band {
  background: var(--primary);
  color: var(--white);
}

.dark-band h2,
.dark-band h3 {
  color: var(--white);
}

.dark-band p {
  color: rgba(255, 255, 255, 0.76);
}

.audience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 18px;
  margin-top: 38px;
}

.audience-card {
  min-height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.08);
}

.audience-card:nth-child(2) {
  margin-top: 48px;
}

.icon-pill {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 36px;
}

.section-head p {
  max-width: 410px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.category-card {
  display: grid;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(32, 57, 95, 0.09);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition: transform 550ms var(--ease), box-shadow 550ms var(--ease);
}

.category-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.category-card:nth-child(3n + 1) {
  transform: translateY(18px);
}

.category-card:nth-child(3n + 1):hover {
  transform: translateY(12px);
}

.category-card img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}

.category-body {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.category-body h3 {
  margin-bottom: 0;
  font-size: 21px;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 800;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 16px;
}

.project-card {
  overflow: hidden;
  border: 1px solid rgba(32, 57, 95, 0.1);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  cursor: pointer;
}

.project-card:first-child {
  grid-row: span 2;
}

.project-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.project-card:first-child img {
  height: 460px;
}

.project-body {
  padding: 22px;
}

.meta {
  color: var(--secondary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  color: var(--primary);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.logo-chip,
.chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 13px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}

.cta-band {
  border-radius: 34px;
  padding: 54px;
  background: var(--secondary);
  color: var(--white);
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.8);
}

.values-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 16px;
}

.value-card,
.course-card,
.product-card {
  border: 1px solid rgba(32, 57, 95, 0.09);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.value-card {
  padding: 30px;
}

.catalog-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.breadcrumb a {
  color: var(--white);
}

.category-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
}

.category-aside {
  position: sticky;
  top: 112px;
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.68);
}

.category-aside a {
  display: block;
  border-radius: 14px;
  padding: 9px 11px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.category-aside a.is-active,
.category-aside a:hover {
  background: var(--white);
  color: var(--primary);
}

.search-box {
  width: 100%;
  min-height: 48px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  background: var(--white);
  color: var(--ink);
  outline: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  overflow: hidden;
  transition: transform 520ms var(--ease), box-shadow 520ms var(--ease);
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 18px;
  background: linear-gradient(135deg, #fff, #edf2f6);
}

.product-card-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.product-card h3 {
  margin-bottom: 0;
  font-size: 19px;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 44px;
  align-items: start;
}

.product-media {
  position: sticky;
  top: 112px;
}

.product-media img {
  width: 100%;
  max-height: 680px;
  object-fit: contain;
  border-radius: 24px;
  background: var(--white);
}

.product-panel {
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.72);
}

.product-panel h1 {
  font-size: clamp(32px, 3.4vw, 48px);
}

.spec-list {
  display: grid;
  gap: 10px;
  margin: 26px 0;
}

.spec-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.spec-item strong {
  color: var(--primary);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.filter {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.filter.is-active {
  background: var(--primary);
  color: var(--white);
}

.courses-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.course-card {
  overflow: hidden;
}

.course-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.course-body {
  padding: 28px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 26px;
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-item {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #e8edf0;
  color: var(--white);
}

.footer-scene {
  position: relative;
  min-height: min(900px, 100dvh);
  isolation: isolate;
  overflow: hidden;
  border-radius: 34px 34px 0 0;
  background: #07172c;
}

.footer-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04) brightness(0.78);
  transform: scale(1.02);
}

.footer-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 20%, rgba(232, 237, 240, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(7, 23, 44, 0.22) 0%, rgba(7, 23, 44, 0.22) 32%, rgba(7, 23, 44, 0.62) 68%, rgba(7, 23, 44, 0.88) 100%);
}

.footer-shade::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.26;
  content: "";
}

.footer-content {
  display: grid;
  align-content: space-between;
  width: min(100% - 20px, 1420px);
  min-height: min(900px, 100dvh);
  margin-inline: auto;
  padding: clamp(76px, 9vw, 118px) 0 0;
}

.footer-message {
  display: grid;
  justify-items: center;
  gap: 12px;
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.footer-message h2 {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(34px, 4.2vw, 64px);
  font-weight: 650;
  letter-spacing: -0.062em;
  line-height: 0.95;
  text-wrap: balance;
  text-shadow: 0 18px 70px rgba(7, 23, 44, 0.46);
}

.footer-message p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 700;
  line-height: 1.35;
  text-wrap: balance;
}

.footer-glass {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.9fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: start;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 0;
  border-radius: 26px 26px 0 0;
  padding: clamp(22px, 2.9vw, 34px) clamp(28px, 4vw, 48px) clamp(20px, 2.7vw, 32px);
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: none;
}

.footer-brand-note {
  display: grid;
  gap: 16px;
}

.footer-white-logo {
  display: block;
  width: fit-content;
  margin: 0;
}

.footer-white-logo img {
  width: min(220px, 52vw);
  height: auto;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.22));
}

.footer-brand-note p {
  max-width: 330px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.42;
}

.footer-links {
  display: grid;
  grid-template-columns: 0.85fr 1.12fr 1.08fr 0.7fr;
  gap: clamp(20px, 3.2vw, 44px);
}

.footer h3 {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer a {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 7px 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.25;
  overflow-wrap: anywhere;
  transition: color 260ms var(--ease), transform 260ms var(--ease);
}

.footer a:hover {
  color: rgba(255, 255, 255, 0.98);
  transform: translateX(3px);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 14px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .footer-scene,
  .footer-content {
    min-height: 920px;
  }

  .footer-glass {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .footer-scene,
  .footer-content {
    min-height: 980px;
  }

  .footer-content {
    width: min(100% - 14px, 1420px);
    padding: 68px 0 14px;
  }

  .footer-message h2 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .footer-message p {
    font-size: 13px;
  }

  .footer-glass {
    border-radius: 22px 22px 0 0;
    padding: 24px 22px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 18;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin: 0;
  border: 1.5px solid #5c8bb0;
  border-radius: 50%;
  background: #eaf1f5;
  color: #5c8bb0;
  box-shadow: 0 4px 14px rgba(32, 57, 95, 0.1);
  transition: transform 280ms var(--ease), border-color 280ms var(--ease), background 280ms var(--ease), color 280ms var(--ease), box-shadow 280ms var(--ease);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  overflow: visible;
}

.whatsapp-float:hover {
  color: #20395f;
  border-color: #20395f;
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(32, 57, 95, 0.16);
}

.home-redesign {
  background:
    radial-gradient(circle at 12% 8%, rgba(155, 185, 211, 0.34), transparent 24%),
    linear-gradient(90deg, rgba(79, 107, 137, 0.08) 0 1px, transparent 1px),
    var(--paper);
  background-size: auto, 96px 96px, auto;
  overflow-x: hidden;
}

.home-redesign::before {
  position: fixed;
  inset: 0;
  z-index: 19;
  pointer-events: none;
  opacity: 0.014;
  background-image:
    repeating-radial-gradient(circle at 20% 20%, rgba(26, 26, 46, 0.9) 0 1px, transparent 1px 5px);
  content: "";
}

.home-nav .nav-shell {
  border-color: rgba(32, 57, 95, 0.11);
  background: rgba(245, 245, 242, 0.68);
  color: var(--primary);
  box-shadow: none;
}

.home-nav .nav-links {
  background: transparent;
}

.home-nav .nav-link:hover,
.home-nav .nav-link.is-active {
  background: rgba(32, 57, 95, 0.08);
}

.home-nav .button.light {
  background: var(--primary);
  color: var(--white);
}

.home-nav .button.light .button-icon {
  background: rgba(255, 255, 255, 0.16);
}

.home-nav.is-scrolled .nav-shell {
  border-color: rgba(32, 57, 95, 0.13);
  background: rgba(245, 245, 242, 0.92);
  color: var(--primary);
}

.orthos-home-hero {
  min-height: 100dvh;
  padding: 74px 0 52px;
  background: #e9edf0;
  color: var(--primary);
}

.home-frame {
  display: grid;
  grid-template-columns: minmax(390px, 0.9fr) minmax(430px, 1.1fr);
  gap: clamp(30px, 4vw, 64px);
  width: min(100% - 72px, 1180px);
  min-height: calc(100dvh - 126px);
  margin: 0 auto;
  border: 1px solid rgba(32, 57, 95, 0.12);
  border-radius: 38px;
  padding: 66px 48px 38px;
  background:
    linear-gradient(90deg, rgba(32, 57, 95, 0.08) 0 1px, transparent 1px 185px),
    rgba(245, 245, 242, 0.66);
  box-shadow: 0 34px 95px rgba(32, 57, 95, 0.09);
  overflow: hidden;
}

.home-bento {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 104px;
  align-self: stretch;
  min-height: 560px;
  padding-top: 0;
}

.bento-logo-tile,
.bento-photo-tall,
.bento-accent-tile,
.bento-white-tile,
.bento-pattern-tile {
  overflow: hidden;
  border: 1px solid rgba(32, 57, 95, 0.12);
}

.bento-logo-tile {
  display: grid;
  place-items: center;
  grid-column: 2;
  grid-row: 1;
  border-radius: 0 0 44px 44px;
  border-top: 0;
  background: var(--white);
}

.bento-logo-tile img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.bento-logo-tile span {
  margin-top: -24px;
  color: var(--primary);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bento-photo-tall {
  position: relative;
  grid-column: 1;
  grid-row: 1 / span 3;
  border-radius: 84px 0 0 0;
  background: #dce5eb;
}

.bento-photo-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.round-plus {
  position: absolute;
  top: 26px;
  left: 25px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  transition: transform 500ms var(--ease);
}

.round-plus:hover {
  transform: rotate(90deg) scale(1.04);
}

.tile-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 104px;
  padding: 22px;
  background: var(--primary);
}

.tile-caption span {
  display: block;
  width: 6px;
  height: 6px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--white);
}

.tile-caption p {
  max-width: 145px;
  margin: 0;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.bento-accent-tile {
  display: grid;
  place-items: center;
  grid-column: 2;
  grid-row: 2 / span 2;
  border-radius: 0 64px 0 0;
  background: var(--accent);
  text-align: center;
}

.bento-accent-tile strong {
  color: var(--primary);
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.bento-accent-tile p,
.bento-white-tile p,
.bento-pattern-tile p {
  max-width: 130px;
  margin: -34px auto 0;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.18;
  text-transform: uppercase;
}

.bento-white-tile {
  display: grid;
  place-items: center;
  grid-column: 2;
  grid-row: 4;
  border-radius: 42px;
  background: var(--white);
  text-align: center;
}

.bento-white-tile strong {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
  letter-spacing: -0.02em;
}

.bento-pattern-tile {
  display: grid;
  grid-column: 1;
  grid-row: 4 / span 2;
  align-content: end;
  border-radius: 0 64px 0 0;
  padding: 24px;
  background:
    radial-gradient(ellipse at center, transparent 0 42%, rgba(155, 185, 211, 0.85) 43% 45%, transparent 46%),
    repeating-radial-gradient(ellipse at 18% 18%, transparent 0 10px, rgba(155, 185, 211, 0.9) 11px 14px),
    var(--primary);
  background-size: 65px 46px, 100% 100%, auto;
}

.bento-pattern-tile span {
  width: 7px;
  height: 7px;
  margin-bottom: 68px;
  border-radius: 50%;
  background: var(--white);
}

.bento-pattern-tile p {
  margin: 0;
  color: var(--white);
}

.hero-orb-card {
  position: absolute;
  top: 226px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 164px;
  height: 164px;
  border: 1px solid rgba(32, 57, 95, 0.18);
  border-radius: 50%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 52px rgba(32, 57, 95, 0.14);
  transform: translateX(-50%);
}

.hero-orb-card img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.orb-line {
  position: absolute;
  top: 390px;
  left: 50%;
  width: 1px;
  height: 118px;
  background: rgba(32, 57, 95, 0.42);
}

.orb-line span {
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
}

.orb-line p {
  position: absolute;
  bottom: -36px;
  left: -52px;
  width: 128px;
  margin: 0;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: underline;
}

.home-hero-copy {
  display: grid;
  align-content: start;
  padding-top: 58px;
}

.home-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-kicker::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.home-hero-copy h1 {
  max-width: 660px;
  margin: 18px 0 22px;
  color: #07172c;
  font-size: clamp(48px, 5.15vw, 72px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.94;
  text-transform: uppercase;
  text-wrap: balance;
}

.home-hero-copy h1 span {
  display: block;
}

.home-hero-copy p {
  max-width: 530px;
  color: #354253;
  font-size: 15px;
  line-height: 1.55;
}

.home-hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 34px;
}

.home-primary {
  min-width: 166px;
  min-height: 54px;
  padding-left: 22px;
  background: #07172c;
}

.home-arrow-link {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  font-size: 24px;
  box-shadow: 0 12px 32px rgba(32, 57, 95, 0.08);
  transition: transform 450ms var(--ease);
}

.home-arrow-link:hover {
  transform: translate(3px, -3px);
}

.home-texture-pill {
  width: 104px;
  height: 54px;
  border-radius: 999px;
  background:
    repeating-radial-gradient(ellipse at 32% 50%, #07172c 0 2px, transparent 3px 6px),
    var(--white);
  border: 1px solid rgba(32, 57, 95, 0.1);
}

.home-news-list {
  display: grid;
  max-width: 610px;
}

.home-news-list a {
  display: grid;
  grid-template-columns: 72px 34px 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 68px;
  border-top: 1px solid rgba(32, 57, 95, 0.28);
  color: var(--primary);
}

.home-news-list a:last-child {
  border-bottom: 1px solid rgba(32, 57, 95, 0.28);
}

.home-news-list strong {
  color: #07172c;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.home-news-list img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.home-news-list span {
  max-width: 250px;
  color: #2d3948;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.home-news-list em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.home-main {
  background: var(--paper);
}

.home-story-strip,
.home-audience-section,
.home-catalog-section,
.home-project-section,
.home-cta-section {
  padding: 112px 0;
}

.home-story-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
  border-top: 1px solid rgba(32, 57, 95, 0.18);
  padding-top: 34px;
}

.home-story-grid h2,
.home-section-head h2,
.home-big-panel h2,
.home-final-card h2 {
  max-width: 760px;
  color: #07172c;
  font-size: clamp(38px, 4.6vw, 68px);
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
  text-wrap: balance;
}

.home-story-grid p {
  max-width: 620px;
  color: #354253;
  font-size: 18px;
}

.home-split-board {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(250px, 0.58fr) minmax(250px, 0.58fr);
  gap: 18px;
}

.home-big-panel,
.home-service-card,
.home-final-card {
  border: 1px solid rgba(32, 57, 95, 0.12);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.58);
}

.home-big-panel {
  min-height: 460px;
  padding: 42px;
  background:
    radial-gradient(circle at 86% 16%, rgba(155, 185, 211, 0.62), transparent 27%),
    rgba(255, 255, 255, 0.62);
}

.home-mini-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 44px;
}

.home-mini-metrics span {
  display: grid;
  min-width: 132px;
  border: 1px solid rgba(32, 57, 95, 0.14);
  border-radius: 22px;
  padding: 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.home-mini-metrics strong {
  color: var(--primary);
  font-size: 34px;
  line-height: 1;
}

.home-service-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 20px;
}

.home-service-card > span {
  color: #07172c;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.home-service-card img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}

.home-service-card h3 {
  color: #07172c;
  font-size: 24px;
  line-height: 1;
}

.home-service-card p {
  color: #354253;
  font-size: 14px;
}

.home-section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 42px;
}

.home-catalog-section .category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-catalog-section .category-card {
  border-radius: 42px;
  box-shadow: none;
}

.home-catalog-section .category-card:nth-child(3n + 1) {
  transform: none;
}

.home-catalog-section .category-card img {
  aspect-ratio: 1;
  border-radius: 36px;
  padding: 8px;
}

.home-project-section {
  background: #e9edf0;
}

.home-project-section .project-card {
  border-radius: 42px;
  box-shadow: none;
}

.home-final-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  padding: 52px;
  background: var(--primary);
}

.home-final-card h2 {
  color: var(--white);
}

.home-final-card p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.76);
}

.home-final-card .home-kicker {
  color: var(--accent);
}

.home-premium {
  overflow-x: hidden;
  background: #edf1f3;
  font-family: Sora, ui-sans-serif, system-ui, sans-serif;
}

.home-premium .nav-shell {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(10, 23, 42, 0.54);
  color: var(--white);
  box-shadow: 0 24px 70px rgba(2, 8, 23, 0.18);
}

.home-premium .home-nav.is-scrolled .nav-shell {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(10, 23, 42, 0.82);
  color: var(--white);
}

.home-premium .home-nav .button.light {
  background: var(--white);
  color: #07172c;
}

.premium-hero {
  position: relative;
  min-height: 100dvh;
  padding: 18px;
  background:
    radial-gradient(circle at 80% 10%, rgba(155, 185, 211, 0.32), transparent 28%),
    radial-gradient(circle at 12% 82%, rgba(79, 107, 137, 0.32), transparent 30%),
    #07172c;
  color: var(--white);
  isolation: isolate;
}

.premium-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.05;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.7) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.7) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
}

.premium-shell {
  min-height: calc(100dvh - 36px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 44px;
  padding: 116px 42px 28px;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.premium-hero-grid {
  display: grid;
  grid-template-columns: minmax(390px, 0.88fr) minmax(520px, 1.12fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
  width: min(100%, 1280px);
  margin: 0 auto;
}

.premium-copy {
  display: grid;
  align-content: center;
}

.premium-index {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  width: fit-content;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.premium-index::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.premium-copy h1 {
  max-width: 720px;
  margin: 18px 0 24px;
  color: var(--white);
  font-family: Sora, sans-serif;
  font-size: clamp(58px, 7vw, 112px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.84;
  text-wrap: balance;
}

.premium-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.55;
}

.premium-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 26px;
}

.premium-button {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 8px 9px 8px 22px;
  background: var(--white);
  color: #07172c;
  font-size: 14px;
  font-weight: 900;
  transition: transform 520ms var(--ease), background 520ms var(--ease), color 520ms var(--ease);
}

.premium-button span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #07172c;
  color: var(--white);
  transition: transform 520ms var(--ease), background 520ms var(--ease);
}

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

.premium-button:hover span {
  transform: translate(3px, -3px);
}

.premium-button.light {
  background: #07172c;
  color: var(--white);
}

.premium-button.light span {
  background: rgba(255, 255, 255, 0.14);
}

.premium-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.premium-stage {
  position: relative;
  min-height: 560px;
}

.stage-word {
  position: absolute;
  top: -28px;
  right: -2vw;
  color: rgba(255, 255, 255, 0.08);
  font-family: Sora, sans-serif;
  font-size: clamp(92px, 14vw, 190px);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 1;
  pointer-events: none;
}

.stage-image-wrap {
  position: absolute;
  inset: 54px 86px 34px 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 52px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.36);
}

.stage-image-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 44px;
  object-fit: cover;
}

.stage-card,
.stage-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(245, 245, 242, 0.82);
  color: #07172c;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

.stage-card {
  display: grid;
  gap: 10px;
  width: 190px;
  border-radius: 30px;
  padding: 20px;
}

.stage-card span {
  font-family: Sora, sans-serif;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.stage-card p {
  margin: 0;
  color: #334155;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.stage-card-a {
  top: 0;
  left: 0;
}

.stage-card-b {
  right: 0;
  bottom: 22px;
}

.stage-orbit {
  right: 34px;
  top: 84px;
  display: grid;
  place-items: center;
  width: 164px;
  height: 164px;
  border-radius: 50%;
  padding: 12px;
  text-align: center;
  transition: transform 600ms var(--ease);
}

.stage-orbit:hover {
  transform: rotate(-6deg) scale(1.04);
}

.stage-orbit img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.stage-orbit span {
  position: absolute;
  border-radius: 999px;
  padding: 6px 10px;
  background: #07172c;
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
}

.premium-bottom {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(100%, 1280px);
  margin: 36px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.premium-bottom a {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 92px;
  padding: 18px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.premium-bottom a:last-child {
  border-right: 0;
}

.premium-bottom strong {
  color: var(--accent);
  font-family: Sora, sans-serif;
  font-size: 42px;
  letter-spacing: -0.06em;
}

.premium-bottom span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.premium-main {
  background: #edf1f3;
  color: #07172c;
}

.premium-manifesto,
.premium-expertise,
.premium-proof,
.premium-projects,
.premium-final {
  width: min(100% - 48px, 1280px);
  margin-inline: auto;
}

.premium-manifesto {
  padding: 140px 0 96px;
}

.premium-wide {
  border-top: 1px solid rgba(32, 57, 95, 0.18);
  padding-top: 34px;
}

.premium-wide h2,
.expertise-list h2,
.premium-section-head h2,
.premium-final h2 {
  max-width: 1040px;
  margin: 18px 0 22px;
  color: #07172c;
  font-family: Sora, sans-serif;
  font-size: clamp(44px, 6vw, 96px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.88;
  text-wrap: balance;
}

.premium-wide p {
  max-width: 720px;
  color: #405066;
  font-size: 19px;
}

.premium-expertise {
  padding: 24px 0 120px;
}

.premium-split {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.14fr);
  gap: 34px;
  align-items: start;
}

.expertise-visual {
  position: sticky;
  top: 110px;
  overflow: hidden;
  min-height: 620px;
  border-radius: 48px;
  background: #d9e2e9;
}

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

.expertise-badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  border-radius: 999px;
  padding: 14px 18px;
  background: var(--white);
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.expertise-list {
  padding: 8px 0;
}

.expertise-list a {
  display: grid;
  grid-template-columns: 64px 0.7fr 1fr;
  gap: 18px;
  align-items: center;
  min-height: 104px;
  border-top: 1px solid rgba(32, 57, 95, 0.16);
  color: #07172c;
}

.expertise-list a:last-child {
  border-bottom: 1px solid rgba(32, 57, 95, 0.16);
}

.expertise-list a span {
  color: var(--secondary);
  font-family: Sora, sans-serif;
  font-size: 32px;
  font-weight: 700;
}

.expertise-list a strong {
  font-size: 18px;
  line-height: 1.1;
}

.expertise-list a em {
  color: #405066;
  font-size: 14px;
  font-style: normal;
}

.premium-proof {
  padding: 0 0 130px;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr 1fr;
  border-top: 1px solid rgba(32, 57, 95, 0.18);
  border-bottom: 1px solid rgba(32, 57, 95, 0.18);
}

.proof-grid article {
  min-height: 220px;
  border-right: 1px solid rgba(32, 57, 95, 0.18);
  padding: 30px 24px;
}

.proof-grid article:last-child {
  border-right: 0;
}

.proof-grid span {
  display: block;
  color: #07172c;
  font-family: Sora, sans-serif;
  font-size: clamp(42px, 5vw, 82px);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.proof-grid p {
  max-width: 220px;
  margin-top: 22px;
  color: #405066;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.premium-projects {
  padding: 0 0 130px;
}

.premium-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 38px;
}

.premium-section-head .premium-index {
  grid-column: 1 / -1;
}

.home-premium .premium-projects .project-card {
  border: 0;
  border-radius: 42px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(32, 57, 95, 0.09);
}

.premium-final {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 84px;
  border-radius: 48px;
  padding: 52px;
  background:
    radial-gradient(circle at 86% 16%, rgba(155, 185, 211, 0.38), transparent 26%),
    #07172c;
}

.premium-final h2 {
  color: var(--white);
}

.premium-final p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.7);
}

.home-awwwards {
  overflow-x: hidden;
  background: #e9eef1;
  color: #07172c;
  font-family: Sora, ui-sans-serif, system-ui, sans-serif;
}

.home-awwwards .nav-shell {
  border-color: rgba(7, 23, 44, 0.1);
  background: rgba(245, 245, 242, 0.78);
  color: #07172c;
  box-shadow: 0 18px 60px rgba(32, 57, 95, 0.08);
}

.home-awwwards .home-nav.is-scrolled .nav-shell {
  border-color: rgba(7, 23, 44, 0.14);
  background: rgba(245, 245, 242, 0.92);
  color: #07172c;
}

.home-awwwards .home-nav .nav-links {
  background: rgba(7, 23, 44, 0.04);
}

.home-awwwards .home-nav .button.light {
  background: #07172c;
  color: var(--white);
}

.home-awwwards .home-nav .button.light .button-icon {
  background: rgba(255, 255, 255, 0.14);
}

.aw-hero {
  position: relative;
  min-height: 100dvh;
  padding: 18px;
  background:
    linear-gradient(90deg, rgba(7, 23, 44, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(7, 23, 44, 0.045) 1px, transparent 1px),
    #e9eef1;
  background-size: 88px 88px;
}

.aw-hero-shell {
  position: relative;
  min-height: calc(100dvh - 36px);
  overflow: hidden;
  border: 1px solid rgba(7, 23, 44, 0.1);
  border-radius: 46px;
  padding: 118px 46px 28px;
  background:
    radial-gradient(circle at 78% 24%, rgba(155, 185, 211, 0.42), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.22));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 28px 80px rgba(32, 57, 95, 0.1);
}

.aw-rail {
  position: absolute;
  top: 122px;
  bottom: 34px;
  left: 32px;
  display: grid;
  align-content: space-between;
  width: 34px;
  color: rgba(7, 23, 44, 0.58);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.aw-hero-copy {
  position: relative;
  z-index: 2;
  max-width: min(56vw, 780px);
  padding-left: 38px;
}

.aw-kicker {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--secondary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.aw-kicker::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.aw-hero-copy h1 {
  margin: 12px 0 18px;
  color: #07172c;
  font-family: Sora, sans-serif;
  font-size: clamp(70px, 10.2vw, 158px);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.78;
}

.aw-hero-copy h1 span {
  display: block;
}

.aw-hero-copy p {
  max-width: 520px;
  color: #314158;
  font-size: clamp(17px, 1.35vw, 20px);
  font-weight: 600;
  line-height: 1.55;
}

.aw-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
}

.aw-button {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border: 1px solid rgba(7, 23, 44, 0.1);
  border-radius: 999px;
  padding: 8px 9px 8px 22px;
  background: #07172c;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  transition: transform 560ms var(--ease), background 560ms var(--ease), color 560ms var(--ease);
}

.aw-button span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: transform 560ms var(--ease), background 560ms var(--ease);
}

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

.aw-button:hover span {
  transform: translate(4px, -4px);
}

.aw-button.dark {
  background: var(--white);
  color: #07172c;
}

.aw-button.dark span {
  background: rgba(7, 23, 44, 0.08);
}

.aw-text-link {
  color: #07172c;
  font-size: 14px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.aw-visual {
  position: absolute;
  right: min(5vw, 74px);
  bottom: 102px;
  z-index: 1;
  width: min(44vw, 570px);
  height: min(61vh, 560px);
}

.aw-visual-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.68);
  border-radius: 56px 56px 180px 56px;
  background: #dbe5eb;
  box-shadow: 0 44px 110px rgba(32, 57, 95, 0.18);
  transform: rotate(-2.5deg);
}

.aw-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04) rotate(2.5deg);
}

.aw-floating,
.aw-floating-image {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(7, 23, 44, 0.1);
  background: rgba(245, 245, 242, 0.86);
  color: #07172c;
  box-shadow: 0 22px 70px rgba(32, 57, 95, 0.14);
}

.aw-floating {
  display: grid;
  gap: 8px;
  width: 170px;
  border-radius: 30px;
  padding: 18px;
}

.aw-floating strong {
  font-family: Sora, sans-serif;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.aw-floating span {
  color: #314158;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.22;
  text-transform: uppercase;
}

.aw-floating-a {
  top: -32px;
  left: -52px;
}

.aw-floating-b {
  right: -28px;
  bottom: 24px;
}

.aw-floating-image {
  top: 74px;
  right: -64px;
  display: grid;
  place-items: center;
  width: 146px;
  height: 146px;
  overflow: hidden;
  border-radius: 50%;
  padding: 9px;
  transition: transform 600ms var(--ease);
}

.aw-floating-image:hover {
  transform: rotate(8deg) scale(1.04);
}

.aw-floating-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.aw-floating-image span {
  position: absolute;
  border-radius: 999px;
  padding: 6px 10px;
  background: #07172c;
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
}

.aw-marquee {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  display: flex;
  gap: 24px;
  overflow: hidden;
  border-top: 1px solid rgba(7, 23, 44, 0.1);
  padding-top: 18px;
  color: rgba(7, 23, 44, 0.18);
  font-family: Sora, sans-serif;
  font-size: clamp(34px, 5vw, 78px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.9;
  text-transform: uppercase;
  white-space: nowrap;
}

.aw-marquee span {
  animation: awDrift 16s var(--ease) infinite alternate;
}

@keyframes awDrift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-14vw);
  }
}

.aw-main {
  background: #e8edf0;
}

.aw-manifesto,
.aw-paths,
.aw-proof,
.aw-projects,
.aw-final {
  width: min(100% - 48px, 1280px);
  margin-inline: auto;
}

.aw-manifesto {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(520px, 1.1fr);
  gap: 8px;
  height: clamp(350px, 33vw, 430px);
  padding: 18px 0 22px;
}

.aw-manifesto-title,
.aw-paths-head,
.aw-projects-head,
.aw-final {
  border-top: 1px solid rgba(7, 23, 44, 0.12);
  padding-top: 22px;
}

.aw-manifesto-title {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: stretch;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(7, 23, 44, 0.1);
  border-radius: 10px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.78);
}

.aw-manifesto h2,
.aw-projects h2,
.aw-final h2 {
  margin: 8px 0 0;
  color: #07172c;
  font-family: Sora, sans-serif;
  font-size: clamp(25px, 2.35vw, 38px);
  font-weight: 700;
  letter-spacing: -0.062em;
  line-height: 0.92;
  text-wrap: balance;
}

.aw-manifesto-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.aw-manifesto-top div {
  display: flex;
  gap: 8px;
}

.aw-manifesto-top div span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(7, 23, 44, 0.14);
  border-radius: 50%;
  color: #07172c;
  font-size: 11px;
  font-weight: 800;
}

.aw-manifesto-title > p {
  display: -webkit-box;
  max-width: 470px;
  margin: 10px 0 0;
  color: rgba(7, 23, 44, 0.62);
  overflow: hidden;
  font-size: clamp(11px, 0.92vw, 13px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.08;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.aw-manifesto-mini {
  position: relative;
  align-self: end;
  width: min(32%, 130px);
  min-width: 124px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(7, 23, 44, 0.05);
}

.aw-manifesto-mini > span {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  border: 1px solid rgba(7, 23, 44, 0.12);
  border-radius: 999px;
  padding: 4px 7px;
  background: rgba(255, 255, 255, 0.68);
  color: rgba(7, 23, 44, 0.72);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.aw-manifesto-mini img,
.aw-manifesto-mini video {
  display: block;
  width: 100%;
  height: 58px;
  object-fit: cover;
}

.aw-manifesto-mini button {
  position: absolute;
  right: 8px;
  bottom: 8px;
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border: 0;
  border-radius: 50%;
  background: rgba(7, 23, 44, 0.78);
  color: var(--white);
  font-size: 18px;
}

.aw-manifesto-progress {
  display: grid;
  grid-template-columns: 42px 42px 42px;
  gap: 7px;
  margin-top: 8px;
}

.aw-manifesto-progress span {
  height: 6px;
  border-radius: 999px;
  background: rgba(7, 23, 44, 0.08);
}

.aw-manifesto-progress span:first-child {
  background: #07172c;
}

.aw-manifesto-text {
  display: grid;
  grid-template-rows: minmax(0, 1fr) 118px;
  gap: 8px;
  height: 100%;
  min-height: 0;
  border-radius: 10px;
}

.aw-manifesto blockquote {
  display: grid;
  align-content: end;
  min-height: 0;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(7, 23, 44, 0.08);
  border-radius: 10px;
  padding: 14px;
  background:
    radial-gradient(circle at 18% 16%, rgba(155, 185, 211, 0.32), transparent 34%),
    rgba(255, 255, 255, 0.74);
  color: #07172c;
  font-family: Sora, sans-serif;
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.aw-manifesto blockquote span {
  display: block;
  margin-top: 6px;
  color: #64748b;
  font-family: Sora, sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.aw-difference-visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(7, 23, 44, 0.08);
  border-radius: 10px;
  background: #dce4e9;
}

.aw-difference-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 25, 44, 0.06), rgba(255, 255, 255, 0.18)),
    rgba(155, 185, 211, 0.14);
  content: "";
}

.aw-difference-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aw-difference-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.24);
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.aw-difference-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: min(15vw, 154px);
  aspect-ratio: 1;
  border: 11px solid rgba(255, 255, 255, 0.64);
  border-left-color: rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(32deg);
}

.aw-difference-metric {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  color: rgba(255, 255, 255, 0.9);
  font-family: Sora, sans-serif;
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.8;
  transform: translate(-50%, -50%);
}

.aw-difference-lower {
  display: grid;
  grid-template-columns: 0.48fr 0.52fr;
  gap: 8px;
  min-height: 0;
}

.aw-difference-note {
  display: grid;
  align-content: end;
  overflow: hidden;
  border: 1px solid rgba(7, 23, 44, 0.08);
  border-radius: 10px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(155, 185, 211, 0.32), rgba(233, 238, 241, 0.74)),
    rgba(255, 255, 255, 0.58);
  color: rgba(7, 23, 44, 0.7);
}

.aw-difference-note > span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: #07172c;
  font-size: 18px;
}

.aw-difference-note p {
  max-width: 260px;
  margin: 8px 0 0;
  color: rgba(7, 23, 44, 0.58);
  font-size: clamp(11px, 0.9vw, 13px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.aw-difference-note button {
  justify-self: end;
  width: 34px;
  height: 24px;
  border: 0;
  border-radius: 999px;
  background: rgba(7, 23, 44, 0.12);
  color: #07172c;
  font-weight: 800;
}

.aw-manifesto-compact {
  max-height: 476px;
  overflow: hidden;
}

.aw-manifesto-compact > * {
  min-height: 0;
}

.aw-paths {
  padding: 110px 0 132px;
}

.aw-csr-shell {
  overflow: hidden;
  border-top: 1px solid rgba(7, 23, 44, 0.12);
  border-bottom: 1px solid rgba(7, 23, 44, 0.12);
  background: rgba(255, 255, 255, 0.42);
}

.aw-csr-nav {
  display: grid;
  grid-template-columns: 180px 1fr auto 1fr 1fr;
  align-items: center;
  min-height: 62px;
  border-bottom: 1px solid rgba(7, 23, 44, 0.12);
}

.aw-csr-nav > * {
  min-height: 62px;
  border-right: 1px solid rgba(7, 23, 44, 0.12);
  padding: 15px 22px;
}

.aw-csr-nav > *:last-child {
  border-right: 0;
}

.aw-csr-nav strong {
  color: #07172c;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.8;
}

.aw-csr-nav span,
.aw-csr-nav p,
.aw-csr-nav a {
  margin: 0;
  color: rgba(7, 23, 44, 0.66);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.08;
  text-decoration: none;
}

.aw-csr-nav p {
  color: #07172c;
  text-transform: uppercase;
}

.aw-csr-purpose {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  border-bottom: 1px solid rgba(7, 23, 44, 0.12);
}

.aw-csr-purpose > article {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.aw-csr-purpose > article:first-child {
  border-right: 1px solid rgba(7, 23, 44, 0.12);
}

.aw-csr-portrait img {
  width: min(72%, 430px);
  aspect-ratio: 1.05;
  object-fit: cover;
  border-radius: 50%;
}

.aw-csr-portrait a {
  position: absolute;
  right: 16%;
  bottom: 74px;
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: #07172c;
  font-size: 28px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 520ms var(--ease);
}

.aw-csr-portrait a:hover {
  transform: translate(4px, -4px);
}

.aw-csr-portrait a span {
  display: block;
  font-size: 11px;
  letter-spacing: -0.04em;
}

.aw-csr-orb::before {
  position: absolute;
  width: min(70%, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 72% 34%, rgba(7, 23, 44, 0.16), transparent 18%),
    radial-gradient(circle at 44% 60%, rgba(255, 255, 255, 0.76), transparent 28%),
    #dfe6ea;
  box-shadow: inset 0 1px 20px rgba(255, 255, 255, 0.62);
  content: "";
}

.aw-csr-orb div {
  position: relative;
  z-index: 1;
  max-width: 330px;
  text-align: center;
}

.aw-csr-orb div > span {
  display: block;
  color: #07172c;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aw-csr-orb h2 {
  margin: 12px 0 0;
  color: #07172c;
  font-family: Sora, sans-serif;
  font-size: clamp(34px, 3.55vw, 56px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.94;
  text-wrap: balance;
}

.aw-csr-chip {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(7, 23, 44, 0.14);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 255, 255, 0.76);
  color: rgba(7, 23, 44, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.aw-csr-chip-a {
  top: 70px;
  left: 15%;
}

.aw-csr-chip-b {
  top: 96px;
  right: 8%;
}

.aw-csr-chip-c {
  bottom: 96px;
  left: 14%;
}

.aw-csr-marquee {
  overflow: hidden;
  border-bottom: 1px solid rgba(7, 23, 44, 0.12);
  padding: 18px 0 16px;
  color: #07172c;
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.84;
  text-transform: uppercase;
  white-space: nowrap;
}

.aw-csr-marquee-track {
  display: flex;
  width: max-content;
  animation: aw-csr-marquee-scroll 28s linear infinite;
}

.aw-csr-marquee-group {
  display: inline-block;
  padding-right: 40px;
  flex: none;
}

.aw-csr-marquee-group em {
  display: inline-block;
  margin: 0 24px;
  font-size: 28px;
  vertical-align: 14px;
  font-style: normal;
}

@keyframes aw-csr-marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

.aw-csr-marquee:hover .aw-csr-marquee-track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .aw-csr-marquee-track { animation: none; }
}

.aw-csr-benefits {
  display: grid;
  border-bottom: 1px solid rgba(7, 23, 44, 0.12);
}

.aw-csr-label {
  display: block;
  border-bottom: 1px solid rgba(7, 23, 44, 0.12);
  padding: 20px 16px;
  color: #07172c;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.aw-csr-benefit {
  display: grid;
  grid-template-columns: minmax(230px, 0.82fr) minmax(230px, 0.58fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: center;
  min-height: 330px;
  border-bottom: 1px solid rgba(7, 23, 44, 0.12);
  padding: 38px 28px;
}

.aw-csr-benefit:last-child {
  border-bottom: 0;
}

.aw-csr-benefit h3 {
  margin: 0;
  color: #07172c;
  font-family: Sora, sans-serif;
  font-size: clamp(26px, 2.65vw, 42px);
  font-weight: 800;
  letter-spacing: -0.058em;
  line-height: 0.96;
  text-transform: uppercase;
  text-wrap: balance;
}

.aw-csr-benefit-image {
  position: relative;
  width: min(100%, 270px);
  justify-self: center;
  aspect-ratio: 1;
}

.aw-csr-benefit-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.aw-csr-benefit-image span {
  position: absolute;
  right: -20px;
  bottom: -20px;
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #07172c;
  font-size: 26px;
  font-weight: 800;
}

.aw-csr-benefit-image small {
  display: block;
  font-size: 10px;
  font-weight: 700;
}

.aw-csr-benefit-copy {
  display: grid;
  justify-items: start;
}

.aw-csr-benefit-copy > span {
  margin-bottom: 18px;
  color: rgba(7, 23, 44, 0.58);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aw-csr-benefit-copy p {
  max-width: 450px;
  margin: 0;
  color: rgba(7, 23, 44, 0.68);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.34;
}

.aw-csr-cta {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
  border-radius: 999px;
  padding: 8px 8px 8px 18px;
  background: var(--white);
  color: #07172c;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 520ms var(--ease), background 520ms var(--ease);
}

.aw-csr-cta:hover {
  background: #07172c;
  color: var(--white);
  transform: translateY(-2px);
}

.aw-csr-cta span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #07172c;
  color: var(--white);
  transition: background 520ms var(--ease), color 520ms var(--ease);
}

.aw-csr-cta:hover span {
  background: var(--white);
  color: #07172c;
}

.aw-proof {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.18fr 0.92fr;
  padding-bottom: 126px;
  border-top: 1px solid rgba(7, 23, 44, 0.14);
  border-bottom: 1px solid rgba(7, 23, 44, 0.14);
}

.aw-proof article {
  min-height: 230px;
  border-right: 1px solid rgba(7, 23, 44, 0.14);
  padding: 30px 24px;
}

.aw-proof article:last-child {
  border-right: 0;
}

.aw-proof span {
  display: block;
  color: #07172c;
  font-family: Sora, sans-serif;
  font-size: clamp(44px, 5.6vw, 86px);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.aw-proof p {
  max-width: 230px;
  margin-top: 22px;
  color: #314158;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.32;
  text-transform: uppercase;
}

.aw-projects {
  padding: 92px 0 118px;
}

.aw-projects-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 38px;
}

.aw-projects-head .aw-kicker {
  grid-column: 1 / -1;
}

.home-awwwards .aw-projects .project-card {
  border: 0;
  border-radius: 42px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(32, 57, 95, 0.08);
}

.aw-video-projects {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(400px, 0.88fr);
  grid-template-rows: 178px 520px;
  gap: 10px 18px;
  min-height: 708px;
  overflow: visible;
}

.aw-video-tile {
  position: relative;
  display: block;
  overflow: hidden;
  background: #dfe6ea;
  color: #07172c;
  text-decoration: none;
  z-index: 3;
}

.aw-video-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transition: transform 700ms var(--ease);
}

.aw-video-tile:hover img {
  filter: none;
  transform: scale(1.045);
}

.aw-video-small {
  width: auto;
  height: auto;
  border-radius: 42px;
  z-index: 4;
}

.aw-video-one {
  grid-column: 1;
  grid-row: 1;
  width: calc((100% - 16px) / 3);
  border-radius: 42px 42px 18px 42px;
}

.aw-video-two {
  grid-column: 1;
  grid-row: 1;
  width: calc((100% - 16px) / 3);
  margin-left: calc((100% - 16px) / 3 + 8px);
  border-radius: 42px;
  background: #dfe6ea;
}

.aw-video-two::before {
  position: absolute;
  inset: 24px;
  z-index: 1;
  border-radius: 50%;
  background: #e9eef1;
  content: "";
  display: none;
}

.aw-video-two img {
  opacity: 1;
}

.aw-video-three {
  grid-column: 1;
  grid-row: 1;
  width: calc((100% - 16px) / 3);
  margin-left: calc(((100% - 16px) / 3 + 8px) * 2);
  border-radius: 42px;
}

.aw-video-tile > span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: auto;
  height: 34px;
  min-width: 86px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #07172c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.04em;
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 30px rgba(7, 23, 44, 0.12);
}

.aw-video-copy {
  position: relative;
  grid-column: 1;
  grid-row: 2;
  z-index: 1;
  width: auto;
  height: auto;
  overflow: visible;
  padding-top: 14px;
  pointer-events: none;
}

.aw-video-copy .aw-kicker {
  position: static;
  width: fit-content;
  margin: 0 0 14px 16%;
  color: #4f6b89;
  font-size: 14px;
  letter-spacing: 0.18em;
}

.aw-video-copy h2 {
  position: relative;
  width: 100%;
  margin: 0;
  color: #050d17;
  font-family: Sora, sans-serif;
  font-size: clamp(56px, 5.35vw, 88px);
  font-weight: 900;
  letter-spacing: -0.068em;
  line-height: 0.88;
}

.aw-video-copy h2 span {
  display: block;
  white-space: normal;
}

.aw-video-copy p {
  position: relative;
  left: auto;
  bottom: auto;
  z-index: 4;
  max-width: 340px;
  margin: 18px 0 0 16%;
  color: #07172c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-transform: uppercase;
}

.aw-video-feature {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: stretch;
  width: auto;
  height: auto;
  border-radius: 42px 42px 72px 42px;
  z-index: 5;
}

.aw-video-feature img {
  object-position: center;
}

.aw-video-one img,
.aw-video-three img {
  object-position: center;
}

.aw-video-feature::after {
  position: absolute;
  inset: auto 0 0 auto;
  width: 146px;
  height: 132px;
  border-radius: 46px 0 0 0;
  background: rgba(233, 238, 241, 0.82);
  content: "";
}

.aw-video-feature > span {
  position: absolute;
  left: 28px;
  right: auto;
  bottom: 22px;
  z-index: 2;
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.78);
  color: #07172c;
  font-size: 12px;
  font-weight: 800;
}

.aw-video-feature em {
  position: absolute;
  right: 34px;
  bottom: 50px;
  z-index: 2;
  color: #07172c;
  font-style: normal;
  font-size: 58px;
  font-weight: 800;
  line-height: 0.8;
}

.aw-final {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: end;
  margin-bottom: 92px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 48px;
  padding: 54px;
  background:
    radial-gradient(circle at 88% 20%, rgba(155, 185, 211, 0.38), transparent 26%),
    #07172c;
}

.aw-final .aw-kicker {
  color: var(--accent);
}

.aw-final h2 {
  max-width: 980px;
  color: var(--white);
}

.home-awwwards {
  overflow-x: hidden;
  background: #e8edf0;
  font-family: Sora, ui-sans-serif, system-ui, sans-serif;
}

/* Sticky nav reveal-on-scroll — home + all inner pages */
.home-awwwards > .nav,
.about-page > .nav,
.catalog-page > .nav,
.projects-page > .nav,
.courses-page > .nav,
.contact-page > .nav,
.catalog-page > .nav {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  transition: opacity 380ms var(--ease), transform 380ms var(--ease), visibility 0s linear 380ms;
}

.home-awwwards > .nav.is-scrolled,
.about-page > .nav.is-scrolled,
.catalog-page > .nav.is-scrolled,
.projects-page > .nav.is-scrolled,
.courses-page > .nav.is-scrolled,
.contact-page > .nav.is-scrolled {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 380ms var(--ease), transform 380ms var(--ease), visibility 0s linear 0s;
}

/* Shared shell look — paper light pill matching home */
.about-page > .nav.is-scrolled .nav-shell,
.catalog-page > .nav.is-scrolled .nav-shell,
.projects-page > .nav.is-scrolled .nav-shell,
.courses-page > .nav.is-scrolled .nav-shell,
.contact-page > .nav.is-scrolled .nav-shell {
  border-color: rgba(7, 23, 44, 0.14);
  background: rgba(245, 245, 242, 0.92);
  color: #07172c;
}

.about-page > .nav .nav-links,
.catalog-page > .nav .nav-links,
.projects-page > .nav .nav-links,
.courses-page > .nav .nav-links,
.contact-page > .nav .nav-links {
  background: rgba(7, 23, 44, 0.04);
}

.about-page > .nav .button.light,
.catalog-page > .nav .button.light,
.projects-page > .nav .button.light,
.courses-page > .nav .button.light,
.contact-page > .nav .button.light {
  background: #07172c;
  color: var(--white);
}

.about-page > .nav .button.light .button-icon,
.catalog-page > .nav .button.light .button-icon,
.projects-page > .nav .button.light .button-icon,
.courses-page > .nav .button.light .button-icon,
.contact-page > .nav .button.light .button-icon {
  background: rgba(255, 255, 255, 0.14);
}

/* Sticky nav brand — logo horizontal grande, sin círculo ni texto */
.home-awwwards > .nav .brand-mark,
.about-page > .nav .brand-mark,
.catalog-page > .nav .brand-mark,
.projects-page > .nav .brand-mark,
.courses-page > .nav .brand-mark,
.contact-page > .nav .brand-mark {
  width: auto;
  height: 62px;
  max-width: 200px;
  margin: -8px 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  object-fit: contain;
}

.home-awwwards > .nav .brand-text,
.about-page > .nav .brand-text,
.catalog-page > .nav .brand-text,
.projects-page > .nav .brand-text,
.courses-page > .nav .brand-text {
  display: none;
}

.contact-page > .nav .brand-text {
  display: none;
}

.home-awwwards > .nav .brand,
.about-page > .nav .brand,
.catalog-page > .nav .brand,
.projects-page > .nav .brand,
.courses-page > .nav .brand,
.contact-page > .nav .brand {
  gap: 0;
}

.aw-hero {
  min-height: 100dvh;
  padding: 8px;
  background: #dfe6ea;
  color: #061527;
}

.visor-hero {
  position: relative;
  min-height: calc(100dvh - 16px);
  overflow: hidden;
  border: 1px solid rgba(6, 21, 39, 0.22);
  border-radius: 0;
  background: #e8edf0;
}

.visor-top {
  position: absolute;
  top: 0;
  z-index: 8;
  display: flex;
  align-items: center;
  height: 56px;
  border: 1px solid rgba(6, 21, 39, 0.28);
  border-top: 0;
  background: rgba(248, 250, 250, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.visor-top-left {
  left: 0;
  border-left: 0;
  border-radius: 0 0 28px 0;
  padding: 0 8px 0 0;
}

.visor-top-right {
  right: 0;
  border-right: 0;
  border-radius: 0 0 0 28px;
  padding: 0 0 0 8px;
}

.visor-top a,
.visor-top button {
  display: grid;
  place-items: center;
  min-width: 74px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #061527;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.visor-top a.is-active,
.visor-contact {
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 28px rgba(6, 21, 39, 0.07);
}

.visor-top-right a:not(.visor-contact),
.visor-top button {
  min-width: 44px;
  width: 44px;
}

.visor-top button {
  gap: 4px;
}

.visor-top button span {
  display: block;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: #061527;
}

.visor-brand-panel {
  position: absolute;
  inset: 56px auto 0 0;
  z-index: 3;
  display: grid;
  align-content: space-between;
  width: 25.2%;
  min-width: 260px;
  padding: 27vh 28px 72px;
}

.visor-brand-lockup span {
  display: block;
  margin-bottom: 4px;
  color: #061527;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.visor-brand-lockup strong {
  display: block;
  color: #061527;
  font-family: Sora, sans-serif;
  font-size: clamp(45px, 5.4vw, 88px);
  font-weight: 800;
  letter-spacing: -0.105em;
  line-height: 0.78;
  text-transform: uppercase;
}

.visor-brand-lockup em {
  display: block;
  margin-top: 11px;
  color: #061527;
  font-size: clamp(16px, 1.9vw, 31px);
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.28em;
  line-height: 0.9;
  text-transform: uppercase;
}

.visor-copy-block span {
  display: block;
  margin-bottom: 9px;
  color: #061527;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.visor-copy-block p {
  max-width: 270px;
  margin: 0;
  color: #061527;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.45;
}

.visor-video-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 25.2%;
  z-index: 2;
  width: 49.8%;
  overflow: hidden;
  border: 1px solid rgba(6, 21, 39, 0.28);
  border-top: 0;
  border-radius: 0 0 12px 12px;
  background: #9bb9d3;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 17% 100%, 0 77%);
}

.visor-video-panel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visor-card-stack {
  position: absolute;
  top: 39%;
  right: 24px;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(2, 176px);
  gap: 14px;
}

.visor-mini-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 172px;
  overflow: hidden;
  border: 4px solid #f8fbfc;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(6, 21, 39, 0.14);
}

.visor-mini-card::before {
  position: absolute;
  inset: 0 0 42px;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(155, 185, 211, 0.36), rgba(79, 107, 137, 0.18)),
    rgba(155, 185, 211, 0.2);
  pointer-events: none;
  transition: opacity 520ms var(--ease);
  content: "";
}

.visor-mini-card:hover::before {
  opacity: 0;
}

.visor-mini-card video,
.visor-mini-card img {
  position: absolute;
  inset: 0 0 42px;
  width: 100%;
  height: calc(100% - 42px);
  object-fit: cover;
}

.visor-mini-card span {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 42px;
  padding: 12px 46px 10px 12px;
  background: #fff;
  color: #061527;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.1;
}

.visor-mini-card b {
  position: absolute;
  right: 10px;
  bottom: 9px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #4f6b89;
  color: #fff;
  font-size: 15px;
}

.visor-social {
  position: absolute;
  right: 20px;
  bottom: 22px;
  z-index: 5;
  display: flex;
  gap: 30px;
}

.visor-social a {
  color: #061527;
  font-size: 11px;
  font-weight: 900;
}

.product-mobile-cta {
  display: none;
}

.reveal {
  animation: reveal 860ms var(--ease) both;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

dialog {
  width: min(920px, calc(100vw - 28px));
  border: 0;
  border-radius: 26px;
  padding: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}

dialog::backdrop {
  background: rgba(26, 26, 46, 0.72);
}

.lightbox-img {
  width: 100%;
  max-height: 80dvh;
  object-fit: contain;
  border-radius: 18px;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1020px) {
  .nav-links,
  .nav-actions > .button {
    display: none;
  }

  .icon-button {
    display: block;
  }

  .hero-panel,
  .intro-grid,
  .audience-grid,
  .category-layout,
  .product-detail,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-nav {
    grid-template-columns: 1fr auto;
  }

  .about-hero-links {
    display: none;
  }

  .about-hero-frame {
    min-height: 68dvh;
  }

  .about-word-left {
    top: 16%;
  }

  .about-word-right {
    bottom: 26%;
  }

  .about-hero-video {
    width: 100%;
  }

  .about-callout-left {
    left: 3%;
  }

  .about-callout-right {
    right: 3%;
  }

  .about-bottom-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-bottom-center {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .catalog-hero {
    padding: 22px 18px 0;
  }

  .catalog-hero-nav {
    grid-template-columns: 1fr auto;
  }

  .catalog-hero-links {
    display: none;
  }

  .catalog-hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 86px;
  }

  .catalog-hero-copy {
    max-width: 680px;
  }

  .catalog-hero-media {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    min-height: 680px;
    margin-top: 40px;
  }

  .catalog-media-card {
    border-radius: 34px;
  }

  .catalog-orbit-badge {
    top: -52px;
    left: auto;
    right: 26px;
  }

  .catalog-floating-note {
    right: 22px;
    bottom: -38px;
    width: min(620px, calc(100% - 44px));
  }

  .catalog-hero-bottom {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    margin-top: 86px;
    padding-bottom: 46px;
  }

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

  .projects-grid,
  .values-grid,
  .courses-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .category-aside,
  .product-media {
    position: static;
  }

  .home-frame {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 760px);
    padding: 92px 28px 34px;
  }

  .home-bento {
    min-height: 540px;
    max-width: 460px;
    margin-inline: auto;
  }

  .home-hero-copy {
    padding-top: 0;
  }

  .home-hero-copy h1 {
    max-width: 720px;
    font-size: clamp(48px, 10vw, 82px);
  }

  .home-hero-actions {
    margin-bottom: 44px;
  }

  .home-story-grid,
  .home-split-board,
  .home-final-card {
    grid-template-columns: 1fr;
  }

  .home-catalog-section .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .premium-shell {
    padding: 104px 24px 26px;
  }

  .premium-hero-grid,
  .premium-split,
  .premium-section-head,
  .premium-final {
    grid-template-columns: 1fr;
  }

  .premium-stage {
    min-height: 520px;
    order: -1;
  }

  .stage-image-wrap {
    inset: 58px 72px 42px 12px;
  }

  .stage-card-a {
    top: 6px;
    left: 0;
  }

  .stage-card-b {
    right: 0;
    bottom: 4px;
  }

  .premium-bottom,
  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }

  .premium-bottom a:nth-child(2),
  .proof-grid article:nth-child(2) {
    border-right: 0;
  }

  .premium-bottom a:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .expertise-visual {
    position: relative;
    top: auto;
    min-height: 420px;
  }

  .expertise-visual img {
    min-height: 420px;
  }

  .expertise-list a {
    grid-template-columns: 54px 1fr;
  }

  .expertise-list a em {
    grid-column: 2;
  }

  .aw-hero-shell {
    padding: 104px 24px 24px;
  }

  .aw-rail {
    display: none;
  }

  .aw-hero-copy {
    max-width: 620px;
    padding-left: 0;
  }

  .aw-visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 620px);
    height: 470px;
    margin: 38px 0 76px auto;
  }

  .aw-floating-a {
    left: 0;
  }

  .aw-floating-image {
    right: 0;
  }

  .aw-marquee {
    font-size: 54px;
  }

  .aw-projects-head,
  .aw-final {
    grid-template-columns: 1fr;
  }

  .aw-manifesto-title,
  .aw-manifesto-text {
    min-height: 0;
  }

  .aw-csr-nav {
    grid-template-columns: 1fr 1fr;
  }

  .aw-csr-nav a {
    display: none;
  }

  .aw-csr-purpose {
    grid-template-columns: 1fr;
  }

  .aw-csr-purpose > article:first-child {
    border-right: 0;
    border-bottom: 1px solid rgba(7, 23, 44, 0.12);
  }

  .aw-csr-benefit {
    grid-template-columns: minmax(220px, 0.75fr) minmax(220px, 0.6fr) minmax(280px, 1fr);
    gap: 24px;
  }

  .aw-proof {
    grid-template-columns: 1fr 1fr;
  }

  .aw-proof article:nth-child(2) {
    border-right: 0;
  }

  .visor-brand-panel {
    width: 28%;
    min-width: 224px;
    padding-left: 24px;
  }

  .visor-video-panel {
    left: 28%;
    width: 52%;
  }

  .visor-card-stack {
    top: 42%;
    right: 16px;
    grid-template-columns: repeat(2, 138px);
  }

  .visor-mini-card {
    min-height: 146px;
    border-width: 3px;
  }

  .visor-top a {
    min-width: 62px;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 68px 0;
  }

  .hero {
    min-height: 85dvh;
  }

  .about-hero {
    padding: 6px;
  }

  .about-hero-frame {
    min-height: 650px;
    border-radius: 16px;
  }

  .about-hero-nav {
    padding: 18px 18px 0;
  }

  .about-hero-brand span {
    font-size: 14px;
  }

  .about-hero-cta {
    padding: 11px 14px;
    font-size: 11px;
  }

  .about-hero-stage {
    inset: 70px 0 0;
    border-radius: 0 0 16px 16px;
  }

  .about-word {
    font-size: clamp(48px, 18vw, 82px);
    letter-spacing: -0.07em;
  }

  .about-word-left {
    top: 8%;
    left: 4%;
  }

  .about-word-right {
    display: block;
    right: 4%;
    bottom: 30%;
    font-size: clamp(42px, 16vw, 68px);
  }

  .about-hero-video {
    width: 100%;
    height: 100%;
    border-radius: 0 0 16px 16px;
    transform: none;
  }

  .about-callout {
    display: none;
  }

  .about-hotspot {
    width: 20px;
    height: 20px;
    border-width: 3px;
  }

  .about-hotspot::after {
    width: 84px;
  }

  .about-hotspot-one {
    left: 18%;
    top: 48%;
  }

  .about-hotspot-two {
    right: 16%;
    top: 38%;
  }

  .about-buy-pill {
    bottom: -17px;
    padding: 14px 22px;
  }

  .about-bottom-grid {
    grid-template-columns: 1fr;
    gap: 4px;
    width: calc(100% - 12px);
    margin-top: 3px;
  }

  .about-bottom-card,
  .about-bottom-left,
  .about-bottom-center,
  .about-bottom-right {
    min-height: auto;
    border-radius: 14px;
    padding: 26px 24px;
    clip-path: none;
  }

  .about-bottom-center {
    grid-column: auto;
    grid-row: auto;
  }

  .about-bottom-center h1 {
    margin-top: 0;
    font-size: clamp(27px, 9vw, 38px);
  }

  .catalog-hero {
    padding: 18px 12px 0;
  }

  .catalog-hero-nav {
    gap: 14px;
  }

  .catalog-hero-brand em,
  .catalog-hero-pill {
    display: none;
  }

  .catalog-hero-layout {
    padding-top: 70px;
  }

  .catalog-hero-copy h1 {
    font-size: clamp(47px, 15vw, 72px);
    letter-spacing: -0.08em;
  }

  .catalog-hero-copy p {
    margin-top: 26px;
  }

  .catalog-primary-cta {
    width: 100%;
  }

  .catalog-hero-media {
    min-height: 520px;
    margin-top: 30px;
  }

  .catalog-media-card {
    border-radius: 28px;
  }

  .catalog-media-top {
    top: 24px;
    left: 24px;
    width: 70%;
  }

  .catalog-media-top strong {
    font-size: 42px;
  }

  .catalog-search-bubble {
    top: 22px;
    right: 22px;
    width: 52px;
    height: 52px;
    font-size: 28px;
  }

  .catalog-product-chip,
  .catalog-orbit-badge {
    display: none;
  }

  .catalog-floating-note {
    grid-template-columns: 82px 1fr;
    gap: 14px;
    right: 12px;
    bottom: -54px;
    width: calc(100% - 24px);
    padding: 12px;
  }

  .catalog-floating-note img {
    width: 82px;
    height: 76px;
  }

  .catalog-floating-note h2 {
    font-size: 18px;
  }

  .catalog-floating-note p {
    font-size: 12px;
  }

  .catalog-floating-note > span {
    display: none;
  }

  .catalog-hero-bottom {
    margin-top: 86px;
  }

  .catalog-hero-bottom h2 {
    font-size: 34px;
  }

  .hero .shell {
    padding: 132px 0 58px;
  }

  .hero-note,
  .scroll-cue,
  .brand-text {
    display: none;
  }

  .section-head {
    display: grid;
  }

  .category-grid,
  .product-grid,
  .related-grid,
  .projects-grid,
  .values-grid,
  .courses-grid,
  .stats,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .category-card:nth-child(3n + 1),
  .category-card:nth-child(3n + 1):hover,
  .audience-card:nth-child(2) {
    margin-top: 0;
    transform: none;
  }

  .media-card img {
    height: 360px;
  }

  .quote {
    margin: 14px 0 0;
  }

  .project-card:first-child {
    grid-row: auto;
  }

  .project-card:first-child img,
  .project-card img {
    height: 260px;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .cta-band {
    padding: 32px 24px;
  }

  .spec-item {
    grid-template-columns: 1fr;
  }

  .product-mobile-cta {
    position: fixed;
    right: 90px;
    bottom: 22px;
    left: 14px;
    z-index: 17;
    display: block;
  }

  .product-mobile-cta .button {
    width: 100%;
    box-shadow: 0 16px 40px rgba(32, 57, 95, 0.28);
  }

  .orthos-home-hero {
    padding: 16px 0 28px;
  }

  .home-frame {
    width: min(100% - 20px, 430px);
    min-height: auto;
    border-radius: 30px;
    padding: 80px 14px 24px;
  }

  .home-bento {
    grid-auto-rows: 86px;
    min-height: 420px;
  }

  .bento-logo-tile {
    border-radius: 0 0 34px 34px;
  }

  .bento-logo-tile img {
    width: 44px;
    height: 44px;
  }

  .bento-logo-tile span {
    display: none;
  }

  .bento-photo-tall {
    border-radius: 58px 0 0 0;
  }

  .round-plus {
    width: 44px;
    height: 44px;
    font-size: 26px;
  }

  .tile-caption {
    min-height: 82px;
    padding: 16px;
  }

  .tile-caption p {
    font-size: 10px;
  }

  .bento-accent-tile {
    border-radius: 0 46px 0 0;
  }

  .bento-accent-tile strong {
    font-size: 30px;
  }

  .bento-accent-tile p,
  .bento-white-tile p,
  .bento-pattern-tile p {
    max-width: 100px;
    margin-top: -24px;
    font-size: 10px;
  }

  .bento-white-tile {
    border-radius: 30px;
  }

  .bento-white-tile strong {
    width: 42px;
    height: 42px;
    font-size: 10px;
  }

  .hero-orb-card {
    top: 204px;
    width: 132px;
    height: 132px;
    padding: 10px;
  }

  .orb-line {
    top: 336px;
    height: 72px;
  }

  .orb-line p {
    display: none;
  }

  .home-hero-copy h1 {
    font-size: clamp(34px, 10vw, 43px);
  }

  .home-hero-copy p {
    font-size: 15px;
  }

  .home-hero-actions {
    display: grid;
    grid-template-columns: 1fr 54px 88px;
    gap: 8px;
  }

  .home-primary {
    min-width: 0;
  }

  .home-news-list a {
    grid-template-columns: 54px 30px 1fr;
    gap: 12px;
    min-height: 84px;
  }

  .home-news-list strong {
    font-size: 30px;
  }

  .home-news-list em {
    display: none;
  }

  .home-story-strip,
  .home-audience-section,
  .home-catalog-section,
  .home-project-section,
  .home-cta-section {
    padding: 72px 0;
  }

  .home-story-grid {
    gap: 22px;
  }

  .home-story-grid h2,
  .home-section-head h2,
  .home-big-panel h2,
  .home-final-card h2 {
    font-size: clamp(32px, 10vw, 48px);
  }

  .home-split-board {
    gap: 14px;
  }

  .home-big-panel,
  .home-service-card,
  .home-final-card {
    border-radius: 30px;
  }

  .home-big-panel,
  .home-final-card {
    min-height: auto;
    padding: 28px 22px;
  }

  .home-section-head {
    display: grid;
  }

  .home-catalog-section .category-grid {
    grid-template-columns: 1fr;
  }

  .premium-hero {
    padding: 10px;
  }

  .premium-shell {
    min-height: auto;
    border-radius: 32px;
    padding: 86px 14px 20px;
  }

  .premium-copy h1 {
    font-size: clamp(42px, 14vw, 62px);
    letter-spacing: -0.07em;
  }

  .premium-copy p {
    font-size: 16px;
  }

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

  .premium-button {
    width: 100%;
  }

  .premium-stage {
    min-height: 420px;
  }

  .stage-word {
    top: 8px;
    font-size: 84px;
  }

  .stage-image-wrap {
    inset: 68px 18px 44px;
    border-radius: 34px;
  }

  .stage-image-wrap img {
    border-radius: 26px;
  }

  .stage-card {
    width: 142px;
    border-radius: 22px;
    padding: 14px;
  }

  .stage-card span {
    font-size: 32px;
  }

  .stage-card p {
    font-size: 10px;
  }

  .stage-orbit {
    right: 6px;
    top: 18px;
    width: 104px;
    height: 104px;
  }

  .stage-card-b {
    right: 2px;
    bottom: 0;
  }

  .premium-bottom {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .premium-bottom a,
  .premium-bottom a:nth-child(2),
  .premium-bottom a:last-child {
    grid-column: auto;
    grid-template-columns: 52px 1fr;
    min-height: 82px;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    padding: 14px 4px;
  }

  .premium-bottom a:last-child {
    border-bottom: 0;
  }

  .premium-bottom strong {
    font-size: 32px;
  }

  .premium-manifesto,
  .premium-expertise,
  .premium-proof,
  .premium-projects,
  .premium-final {
    width: min(100% - 28px, 1280px);
  }

  .premium-manifesto {
    padding: 82px 0 64px;
  }

  .premium-wide h2,
  .expertise-list h2,
  .premium-section-head h2,
  .premium-final h2 {
    font-size: clamp(36px, 12vw, 52px);
  }

  .premium-wide p {
    font-size: 16px;
  }

  .premium-expertise,
  .premium-proof,
  .premium-projects {
    padding-bottom: 82px;
  }

  .expertise-visual,
  .expertise-visual img {
    min-height: 360px;
  }

  .expertise-list a {
    grid-template-columns: 44px 1fr;
    min-height: 118px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid article,
  .proof-grid article:nth-child(2) {
    min-height: 160px;
    border-right: 0;
    border-bottom: 1px solid rgba(32, 57, 95, 0.18);
  }

  .proof-grid article:last-child {
    border-bottom: 0;
  }

  .premium-final {
    margin-bottom: 56px;
    padding: 30px 22px;
    border-radius: 32px;
  }

  .aw-hero {
    padding: 10px;
  }

  .aw-hero-shell {
    min-height: auto;
    border-radius: 32px;
    padding: 88px 14px 20px;
  }

  .aw-hero-copy h1 {
    font-size: clamp(58px, 20vw, 78px);
  }

  .aw-hero-copy p {
    font-size: 16px;
  }

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

  .aw-button {
    width: 100%;
  }

  .aw-visual {
    height: 390px;
    margin: 30px 0 82px;
  }

  .aw-visual-frame {
    border-width: 7px;
    border-radius: 34px 34px 118px 34px;
    transform: rotate(-1.5deg);
  }

  .aw-floating {
    width: 130px;
    border-radius: 22px;
    padding: 13px;
  }

  .aw-floating strong {
    font-size: 32px;
  }

  .aw-floating span {
    font-size: 9px;
  }

  .aw-floating-a {
    top: -16px;
    left: -2px;
  }

  .aw-floating-b {
    right: -4px;
    bottom: 2px;
  }

  .aw-floating-image {
    top: 54px;
    right: -4px;
    width: 106px;
    height: 106px;
  }

  .aw-marquee {
    bottom: 14px;
    padding-top: 12px;
    font-size: 34px;
  }

  .aw-manifesto,
  .aw-paths,
  .aw-proof,
  .aw-projects,
  .aw-final {
    width: min(100% - 28px, 1280px);
  }

  .aw-manifesto {
    grid-template-columns: 1fr;
    gap: 8px;
    height: auto;
    padding: 28px 0 34px;
  }

  .aw-manifesto-compact {
    max-height: none;
    overflow: visible;
  }

  .aw-manifesto-title {
    min-height: 260px;
    border-radius: 10px;
    padding: 22px;
  }

  .aw-manifesto-text {
    grid-template-rows: auto auto;
    min-height: auto;
    border-radius: 10px;
  }

  .aw-difference-visual {
    min-height: 180px;
    border-radius: 10px;
  }

  .aw-difference-visual img {
    height: 180px;
  }

  .aw-difference-ring {
    width: 140px;
    border-width: 10px;
  }

  .aw-difference-lower {
    grid-template-columns: 1fr;
  }

  .aw-difference-note,
  .aw-manifesto blockquote {
    min-height: auto;
    border-radius: 10px;
    padding: 22px;
  }

  .aw-manifesto h2,
  .aw-projects h2,
  .aw-final h2 {
    font-size: clamp(36px, 12vw, 54px);
  }

  .aw-manifesto-title > p,
  .aw-difference-note p {
    font-size: 13px;
  }

  .aw-manifesto-mini {
    width: min(150px, 46vw);
  }

  .aw-paths {
    padding: 78px 0;
  }

  .aw-csr-nav {
    display: none;
  }

  .aw-csr-purpose {
    min-height: auto;
  }

  .aw-csr-purpose > article {
    min-height: 330px;
  }

  .aw-csr-portrait img {
    width: min(82%, 340px);
  }

  .aw-csr-portrait a {
    right: 10%;
    bottom: 34px;
    width: 90px;
    height: 90px;
  }

  .aw-csr-orb::before {
    width: min(82%, 310px);
  }

  .aw-csr-chip {
    display: none;
  }

  .aw-csr-marquee {
    font-size: 36px;
  }

  .aw-csr-benefit {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 30px 18px 42px;
  }

  .aw-csr-benefit h3 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .aw-csr-benefit-image {
    width: min(250px, 74vw);
  }

  .aw-csr-benefit-image span {
    right: -8px;
    bottom: -8px;
    width: 78px;
    height: 78px;
  }

  .aw-csr-cta {
    width: 100%;
    justify-content: space-between;
  }

  .aw-proof {
    grid-template-columns: 1fr;
    padding-bottom: 78px;
  }

  .aw-proof article,
  .aw-proof article:nth-child(2) {
    min-height: 160px;
    border-right: 0;
    border-bottom: 1px solid rgba(7, 23, 44, 0.14);
  }

  .aw-proof article:last-child {
    border-bottom: 0;
  }

  .aw-projects {
    padding: 80px 0;
  }

  .aw-video-projects {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 150px 150px auto 360px;
    gap: 8px;
    min-height: auto;
  }

  .aw-video-tile,
  .aw-video-small,
  .aw-video-feature,
  .aw-video-copy {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
  }

  .aw-video-copy {
    grid-column: 1 / -1;
    grid-row: 3;
    padding: 20px 0;
  }

  .aw-video-copy .aw-kicker {
    margin-left: 0;
  }

  .aw-video-copy h2 {
    font-size: clamp(54px, 16vw, 86px);
    line-height: 0.78;
  }

  .aw-video-copy h2 span {
    white-space: normal;
  }

  .aw-video-copy p {
    position: static;
    margin: 18px 0 0;
  }

  .aw-video-one,
  .aw-video-two,
  .aw-video-three {
    grid-column: auto;
    grid-row: auto;
    width: auto;
    margin-left: 0;
    min-height: 150px;
  }

  .aw-video-two::before {
    inset: 22px;
  }

  .aw-video-feature {
    grid-column: 1 / -1;
    grid-row: 4;
    min-height: 360px;
  }

  .aw-final {
    margin-bottom: 56px;
    padding: 30px 22px;
    border-radius: 32px;
  }

  .aw-hero {
    padding: 6px;
  }

  .visor-hero {
    display: grid;
    min-height: calc(100dvh - 12px);
    border-radius: 0;
    padding: 76px 14px 20px;
  }

  .visor-top {
    left: 8px;
    right: 8px;
    width: auto;
    height: 54px;
    border: 1px solid rgba(6, 21, 39, 0.24);
    border-radius: 999px;
    padding: 4px;
  }

  .visor-top-left {
    justify-content: flex-start;
  }

  .visor-top-right {
    top: 64px;
    display: none;
  }

  .visor-top a {
    min-width: auto;
    padding: 0 12px;
    font-size: 10px;
  }

  .visor-top-left a:nth-child(n+4) {
    display: none;
  }

  .visor-brand-panel,
  .visor-video-panel,
  .visor-card-stack,
  .visor-social {
    position: relative;
    inset: auto;
    width: auto;
  }

  .visor-video-panel {
    order: 1;
    height: 56dvh;
    min-height: 390px;
    border: 1px solid rgba(6, 21, 39, 0.24);
    border-radius: 28px 28px 10px 10px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 22% 100%, 0 82%);
  }

  .visor-brand-panel {
    order: 2;
    display: block;
    min-width: 0;
    padding: 24px 2px 0;
  }

  .visor-brand-lockup {
    margin-bottom: 28px;
  }

  .visor-brand-lockup strong {
    font-size: clamp(45px, 16vw, 70px);
  }

  .visor-brand-lockup em {
    font-size: clamp(14px, 5vw, 22px);
    letter-spacing: 0.18em;
  }

  .visor-copy-block p {
    max-width: 330px;
    font-size: 11px;
  }

  .visor-card-stack {
    order: 3;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    margin-top: 22px;
    padding-bottom: 4px;
  }

  .visor-mini-card {
    flex: 0 0 154px;
    min-height: 146px;
  }

  .visor-social {
    order: 4;
    justify-content: flex-end;
    margin-top: 22px;
  }
}

/* ============================================================
   CATALOG SHOWCASE — Product-style category grid
   ============================================================ */
.catalog-showcase {
  --card-canvas: #eeeee9;
  --card-tag: #ecebe6;
  --card-view-size: 96px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 22px;
  padding: 12px 0 48px;
}

.catalog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--primary);
  transition: transform 520ms var(--ease);
  isolation: isolate;
}

.catalog-card:hover {
  transform: translateY(-6px);
}

.catalog-card-canvas {
  position: relative;
  aspect-ratio: 1 / 1.05;
  border-radius: 28px;
  overflow: hidden;
  background: var(--card-canvas);
}

.catalog-card-canvas::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 50% 100%, rgba(32, 57, 95, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 520ms var(--ease);
  pointer-events: none;
  z-index: 1;
}

.catalog-card:hover .catalog-card-canvas::after {
  opacity: 1;
}

.catalog-card-canvas img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease), filter 520ms var(--ease);
  filter: saturate(0.96);
}

.catalog-card:hover .catalog-card-canvas img {
  transform: scale(1.05);
  filter: saturate(1);
}

.catalog-card-view {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: var(--card-view-size);
  height: var(--card-view-size);
  border-radius: 999px;
  background: #14213a;
  color: #fff;
  font-family: "Plus Jakarta Sans", Sora, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translate(-50%, -30%) scale(0.85);
  transition: opacity 380ms var(--ease), transform 520ms var(--ease);
  box-shadow: 0 18px 40px rgba(20, 33, 58, 0.35);
}

.catalog-card-view em {
  font-style: normal;
  font-size: 11px;
  margin-left: 1px;
  transform: translateY(-1px);
}

.catalog-card:hover .catalog-card-view,
.catalog-card:focus-visible .catalog-card-view {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Middle column card of each row always shows the "Ver" pill,
   like the reference featured tile. */
.catalog-card:nth-child(3n + 2) .catalog-card-view {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.catalog-card-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 10px 10px 20px;
  border-radius: 999px;
  background: var(--card-tag);
  min-height: 60px;
  transition: background 380ms var(--ease);
}

.catalog-card:hover .catalog-card-tag {
  background: #e5e4de;
}

.catalog-card-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.catalog-card-info h3 {
  margin: 0;
  color: var(--primary);
  font-family: "Plus Jakarta Sans", Sora, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.005em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalog-card-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(32, 57, 95, 0.55);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.catalog-card-meta em {
  font-style: normal;
  color: rgba(32, 57, 95, 0.45);
  font-weight: 500;
}

.catalog-card-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #14213a;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  transition: transform 380ms var(--ease), background 380ms var(--ease);
}

.catalog-card:hover .catalog-card-cta {
  transform: rotate(45deg);
  background: var(--primary);
}

/* Vary the canvas background across cards so the grid breathes a little,
   without breaking the reference's calm neutral palette. */
.catalog-card:nth-child(6n + 1) .catalog-card-canvas { background: #eeeee9; }
.catalog-card:nth-child(6n + 2) .catalog-card-canvas { background: #e8ecec; }
.catalog-card:nth-child(6n + 3) .catalog-card-canvas { background: #efece5; }
.catalog-card:nth-child(6n + 4) .catalog-card-canvas { background: #eaeae4; }
.catalog-card:nth-child(6n + 5) .catalog-card-canvas { background: #e6ebec; }
.catalog-card:nth-child(6n + 6) .catalog-card-canvas { background: #eeeae2; }

@media (max-width: 960px) {
  .catalog-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 18px;
  }
  .catalog-card:nth-child(3n + 2) .catalog-card-view {
    opacity: 0;
    transform: translate(-50%, -30%) scale(0.85);
  }
  .catalog-card:nth-child(2n) .catalog-card-view {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@media (max-width: 560px) {
  .catalog-showcase {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .catalog-showcase {
    --card-view-size: 84px;
  }
  .catalog-card:nth-child(2n) .catalog-card-view {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  .catalog-card-info h3 {
    font-size: 16px;
    white-space: normal;
  }
}

/* ============================================================
   PROJECTS HERO — Editorial "Titans of the Mavericks" layout
   ============================================================ */
.projects-page {
  background: #fafafa;
  overflow-x: hidden;
}

/* Sticky nav shared behavior — see reveal rules below near .home-awwwards > .nav */

.projects-hero {
  position: relative;
  min-height: 100dvh;
  padding: 26px 34px 40px;
  background: #fafafa;
  color: #0d0d10;
  font-family: Sora, ui-sans-serif, system-ui, sans-serif;
  isolation: isolate;
}

.projects-hero-frame {
  display: flex;
  flex-direction: column;
  min-height: calc(100dvh - 66px);
  padding-top: 20px;
  border-top: 1px solid rgba(13, 13, 16, 0.16);
}

/* --- Top nav row --------------------------------------------- */
.projects-hero-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 28px;
}

.projects-hero-mark {
  display: inline-flex;
  align-items: center;
  width: 60px;
  color: #0d0d10;
}

.projects-hero-mark svg {
  width: 100%;
  height: auto;
}

.projects-hero-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  justify-self: center;
  text-align: left;
  font-family: Sora, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #0d0d10;
}

.projects-hero-menu li {
  line-height: 1.4;
}

.projects-hero-menu a {
  color: inherit;
  transition: opacity 240ms ease;
}

.projects-hero-menu a:hover {
  opacity: 0.55;
}

.projects-hero-menu .is-active {
  color: rgba(13, 13, 16, 0.45);
}

.projects-hero-search {
  justify-self: end;
  font-family: Sora, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #0d0d10;
  transition: opacity 240ms ease;
}

.projects-hero-search:hover {
  opacity: 0.55;
}

/* --- Editorial grid: title | video | meta -------------------- */
.projects-hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr minmax(420px, 560px) 1fr;
  gap: 22px;
  align-items: stretch;
}

.projects-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 6px 0 8px;
  min-width: 0;
}

.projects-hero-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6px 0 8px;
  min-width: 0;
}

.projects-hero-kicker {
  display: inline-block;
  font-family: Sora, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(13, 13, 16, 0.55);
  margin-bottom: 20px;
}

.projects-hero-title {
  position: relative;
  margin: 0;
  z-index: 4;
  font-family: Sora, sans-serif;
  font-weight: 800;
  font-size: clamp(46px, 5.6vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  color: #0d0d10;
  pointer-events: none;
}

.projects-hero-title span {
  display: block;
}

/* Last line "vidas" overlaps into the video area,
   mirroring the reference where the title runs into the image. */
.projects-hero-title .is-overlap {
  padding-left: 0.35em;
  transform: translateX(38%);
  color: #0d0d10;
  mix-blend-mode: normal;
}

/* --- Center: video stage (bigger, rounded, color) ------------ */
.projects-hero-stage {
  position: relative;
  align-self: center;
  justify-self: center;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 0.78;
  overflow: hidden;
  border-radius: 28px;
  background: #e6e6e4;
  z-index: 2;
  box-shadow: 0 24px 60px rgba(13, 13, 16, 0.14);
}

.projects-hero-stage video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Right column meta --------------------------------------- */
.projects-hero-scale {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  font-family: Sora, sans-serif;
  font-weight: 800;
  font-size: clamp(38px, 4.4vw, 68px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #0d0d10;
  align-self: flex-start;
  margin-top: 10px;
}

.projects-hero-scale span {
  font-weight: 500;
  font-size: 0.55em;
  color: rgba(13, 13, 16, 0.55);
  transform: translateY(-0.08em);
}

.projects-hero-place {
  align-self: flex-end;
  margin-top: auto;
  text-align: right;
  font-family: Sora, sans-serif;
  font-size: 13px;
  line-height: 1.45;
  color: #0d0d10;
}

.projects-hero-place strong {
  display: block;
  font-weight: 700;
  letter-spacing: -0.005em;
}

.projects-hero-place span {
  display: block;
  color: rgba(13, 13, 16, 0.7);
}

.projects-hero-place em {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(13, 13, 16, 0.45);
}

.projects-hero-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 18px;
}

.projects-hero-arrow {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  border: 1px solid rgba(13, 13, 16, 0.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0d0d10;
  background: transparent;
  transition: transform 380ms var(--ease), background 380ms var(--ease), color 380ms var(--ease);
}

.projects-hero-arrow:hover {
  background: #0d0d10;
  color: #fafafa;
  transform: translateX(4px);
}

.projects-hero-arrow svg {
  width: 22px;
  height: 22px;
}

.projects-hero-expand {
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  color: #0d0d10;
  cursor: pointer;
  padding: 0;
  transition: opacity 240ms ease;
}

.projects-hero-expand:hover {
  opacity: 0.6;
}

.projects-hero-expand svg {
  width: 100%;
  height: 100%;
}

/* --- Caption below hero grid --------------------------------- */
.projects-hero-caption {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 40px;
  align-items: end;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(13, 13, 16, 0.14);
}

.projects-hero-caption strong {
  font-family: Sora, sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.005em;
  color: #0d0d10;
}

.projects-hero-caption p {
  margin: 0;
  font-family: Sora, sans-serif;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(13, 13, 16, 0.7);
  max-width: 560px;
}

/* --- Responsive --------------------------------------------- */
@media (max-width: 1180px) {
  .projects-hero-grid {
    grid-template-columns: 1fr minmax(360px, 480px) 1fr;
    gap: 18px;
  }
  .projects-hero-title {
    font-size: clamp(42px, 5.2vw, 76px);
  }
  .projects-hero-title .is-overlap {
    transform: translateX(30%);
  }
}

@media (max-width: 960px) {
  .projects-hero-grid {
    grid-template-columns: 1fr minmax(300px, 400px) 1fr;
    gap: 14px;
  }
  .projects-hero-title .is-overlap {
    transform: translateX(20%);
  }
}

@media (max-width: 780px) {
  .projects-hero {
    padding: 22px 22px 40px;
    min-height: auto;
  }
  .projects-hero-nav {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 24px;
  }
  .projects-hero-menu {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
    justify-self: start;
    text-align: left;
  }
  .projects-hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .projects-hero-stage {
    order: -1;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 0.9;
  }
  .projects-hero-title {
    font-size: clamp(44px, 11vw, 78px);
  }
  .projects-hero-title .is-overlap {
    transform: none;
    padding-left: 0;
  }
  .projects-hero-kicker {
    margin-bottom: 14px;
  }
  .projects-hero-scale {
    align-self: flex-start;
    margin-top: 10px;
  }
  .projects-hero-place {
    text-align: left;
    align-self: flex-start;
    margin-top: 22px;
  }
  .projects-hero-cta {
    justify-content: flex-start;
    margin-top: 18px;
  }
  .projects-hero-caption {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ============================================================
   COURSES HERO — Bento layout in Orthos palette
   ============================================================ */
.courses-page {
  --paper: #e8edf0;
  --hero-paper: #e8edf0;
  background: #e8edf0;
  overflow-x: clip;
}

/* Sticky nav shared behavior — see reveal rules below near .home-awwwards > .nav */

.courses-hero {
  --hero-dark: #16294a;
  --hero-primary: var(--primary);
  --hero-paper: #f5f5f2;
  --hero-white: #ffffff;
  --hero-muted: #5f6b7b;
  --hero-line: rgba(32, 57, 95, 0.12);
  --hero-accent: #9bb9d3;
  --hero-radius: 26px;
  position: relative;
  padding: 88px 20px 20px;
  background: var(--paper);
  font-family: Sora, ui-sans-serif, system-ui, sans-serif;
  color: var(--primary);
  isolation: isolate;
  overflow: hidden;
}

/* Inset background image with rounded corners + darkening overlay */
.courses-hero-backdrop {
  position: absolute;
  top: 88px;
  left: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 108px);
  object-fit: cover;
  border-radius: 28px;
  z-index: 0;
  pointer-events: none;
}

.courses-hero-overlay {
  position: absolute;
  top: 88px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  pointer-events: none;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(22, 41, 74, 0.28) 0%, rgba(22, 41, 74, 0.16) 40%, rgba(22, 41, 74, 0.42) 100%),
    radial-gradient(90% 60% at 20% 40%, rgba(22, 41, 74, 0.28), transparent 70%);
}

.courses-hero-topbar,
.courses-hero-grid {
  position: relative;
  z-index: 3;
}

/* --- Top bar: socials · search · nav ------------------------ */
.courses-hero-topbar {
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.courses-hero-socials {
  display: flex;
  gap: 10px;
}

.courses-hero-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px 10px 12px;
  border-radius: 999px;
  background: rgba(22, 41, 74, 0.55);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  backdrop-filter: blur(18px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--hero-white);
  font-size: 13px;
  font-weight: 600;
  transition: transform 260ms var(--ease), background 260ms var(--ease);
}

.courses-hero-social:hover {
  transform: translateY(-2px);
  background: rgba(22, 41, 74, 0.75);
}

.courses-hero-social svg {
  width: 18px;
  height: 18px;
}

.courses-hero-social em {
  font-style: normal;
  font-weight: 500;
  opacity: 0.7;
  font-size: 12px;
  margin-left: 2px;
}

.courses-hero-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--primary);
  min-width: 0;
}

.courses-hero-search svg {
  width: 18px;
  height: 18px;
  color: rgba(32, 57, 95, 0.7);
  flex-shrink: 0;
}

.courses-hero-search input {
  border: none;
  outline: none;
  background: transparent;
  color: var(--primary);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  min-width: 0;
}

.courses-hero-search input::placeholder {
  color: rgba(32, 57, 95, 0.55);
}

.courses-hero-nav {
  display: flex;
  gap: 22px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--hero-white);
  background: rgba(22, 41, 74, 0.42);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  backdrop-filter: blur(18px) saturate(1.2);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.courses-hero-nav a {
  color: inherit;
  padding: 4px 2px;
  transition: opacity 240ms ease;
}

.courses-hero-nav a:hover {
  opacity: 0.7;
}

.courses-hero-nav .is-active {
  color: rgba(255, 255, 255, 0.6);
}

/* --- Main bento grid ---------------------------------------- */
.courses-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  min-height: min(440px, calc(100dvh - 140px));
}

.courses-hero-col {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 6px;
}

/* --- Left top: dark tagline card ---------------------------- */
.courses-hero-tag {
  background: rgba(22, 41, 74, 0.42);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--hero-white);
  border-radius: var(--hero-radius);
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 150px;
  justify-content: space-between;
}

.courses-hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--hero-white);
}

.courses-hero-brand img {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: var(--hero-white);
  padding: 2px;
}

.courses-hero-brand span {
  font-family: 'Plus Jakarta Sans', Sora, sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
}

.courses-hero-tag p {
  margin: 0;
  font-family: 'Plus Jakarta Sans', Sora, sans-serif;
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--hero-white);
}

/* --- Left middle: headline + description + CTAs ------------- */
.courses-hero-headline {
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(28px) saturate(1.4);
  backdrop-filter: blur(28px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--hero-radius);
  padding: 34px 30px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.courses-hero-headline-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 4px 4px 0;
}

.courses-hero-headline h1 {
  margin: 0;
  font-family: Sora, sans-serif;
  font-weight: 800;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--primary);
}

.courses-hero-headline h1 span {
  display: block;
}

.courses-hero-lead {
  margin: 0;
  font-family: Sora, sans-serif;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--hero-muted);
  max-width: 480px;
}

.courses-hero-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.courses-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 999px;
  font-family: Sora, sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 240ms var(--ease), background 240ms var(--ease), color 240ms var(--ease);
  border: 1px solid transparent;
}

.courses-hero-btn.primary {
  background: var(--hero-dark);
  color: var(--hero-white);
}

.courses-hero-btn.primary:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.courses-hero-btn.primary span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--hero-white);
  color: var(--hero-dark);
  font-size: 11px;
}

.courses-hero-btn.ghost {
  background: transparent;
  color: var(--primary);
  border-color: rgba(32, 57, 95, 0.35);
}

.courses-hero-btn.ghost:hover {
  background: rgba(32, 57, 95, 0.06);
  transform: translateY(-2px);
}

/* --- Left bottom: two facts row ----------------------------- */
.courses-hero-facts {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 10px;
  margin-top: auto;
}

.courses-hero-fact {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  min-height: 118px;
  box-shadow: 0 6px 18px rgba(32, 57, 95, 0.06);
}

.courses-hero-fact strong {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: Sora, sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.courses-hero-fact strong em {
  font-style: normal;
  font-weight: 500;
  font-size: 0.32em;
  color: var(--hero-muted);
  letter-spacing: 0;
  text-transform: uppercase;
}

.courses-hero-fact span {
  font-family: Sora, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--hero-muted);
  line-height: 1.4;
}

.courses-hero-fact-photo {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 118px;
  box-shadow: 0 6px 18px rgba(32, 57, 95, 0.06);
}

.courses-hero-fact-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.courses-hero-fact-text span {
  font-family: Sora, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.005em;
  line-height: 1.25;
}

.courses-hero-fact-text em {
  font-style: normal;
  font-size: 11.5px;
  color: var(--hero-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.courses-hero-fact-avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.courses-hero-fact-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid var(--hero-white);
  margin-left: -12px;
  box-shadow: 0 2px 8px rgba(32, 57, 95, 0.12);
}

.courses-hero-fact-avatars img:first-child {
  margin-left: 0;
}

/* --- Right: image stage with floating cards ----------------- */
.courses-hero-stage {
  position: relative;
  min-height: 620px;
  background: transparent;
}

.courses-hero-float {
  position: absolute;
  z-index: 3;
  border-radius: 20px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 240px;
  max-width: 300px;
  box-shadow: 0 20px 40px rgba(32, 57, 95, 0.14);
  backdrop-filter: blur(6px);
}

.courses-hero-float h3 {
  margin: 0 0 6px;
  font-family: Sora, sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.courses-hero-float p {
  margin: 0;
  font-family: Sora, sans-serif;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 500;
}

.courses-hero-float-top {
  top: 22px;
  right: 22px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--primary);
}

.courses-hero-float-top p {
  color: var(--hero-muted);
}

.courses-hero-float-bottom {
  top: auto;
  bottom: 96px;
  right: 22px;
  background: rgba(22, 41, 74, 0.92);
  color: var(--hero-white);
}

.courses-hero-float-bottom p {
  color: rgba(255, 255, 255, 0.75);
}

.courses-hero-float-arrow,
.courses-hero-float-plus {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 260ms var(--ease), background 260ms var(--ease);
}

.courses-hero-float-arrow {
  background: var(--hero-dark);
  color: var(--hero-white);
}

.courses-hero-float-arrow:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.courses-hero-float-arrow svg {
  width: 18px;
  height: 18px;
}

.courses-hero-float-plus {
  background: var(--hero-white);
  color: var(--hero-dark);
}

.courses-hero-float-plus:hover {
  transform: translateY(-2px) rotate(90deg);
}

.courses-hero-float-plus svg {
  width: 20px;
  height: 20px;
}

.courses-hero-corner {
  position: absolute;
  bottom: 22px;
  right: 22px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
}

.courses-hero-expand {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: var(--hero-white);
  cursor: pointer;
  padding: 0;
  transition: opacity 240ms ease;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

.courses-hero-expand:hover {
  opacity: 0.75;
}

.courses-hero-expand svg {
  width: 100%;
  height: 100%;
}

.courses-hero-star {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--hero-accent);
  color: var(--hero-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 26px rgba(32, 57, 95, 0.28);
  transition: transform 260ms var(--ease), background 260ms var(--ease);
}

.courses-hero-star:hover {
  transform: rotate(20deg) scale(1.05);
  background: var(--hero-white);
}

.courses-hero-star svg {
  width: 24px;
  height: 24px;
}

/* --- Responsive --------------------------------------------- */
@media (max-width: 1080px) {
  .courses-hero-topbar {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .courses-hero-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 18px;
    padding: 4px;
  }
  .courses-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .courses-hero-stage {
    min-height: 520px;
  }
}

@media (max-width: 720px) {
  .courses-hero {
    padding: 14px;
  }
  .courses-hero-tag {
    padding: 22px 22px;
    min-height: 130px;
  }
  .courses-hero-headline {
    padding: 26px 24px;
    gap: 22px;
  }
  .courses-hero-headline h1 {
    font-size: clamp(34px, 8vw, 52px);
  }
  .courses-hero-facts {
    grid-template-columns: 1fr;
  }
  .courses-hero-float {
    max-width: 260px;
    min-width: 220px;
  }
  .courses-hero-float-top {
    top: 16px;
    right: 16px;
    left: 16px;
    max-width: none;
  }
  .courses-hero-float-bottom {
    top: auto;
    bottom: 100px;
    right: 16px;
    left: 16px;
    max-width: none;
  }
  .courses-hero-stage {
    min-height: 560px;
  }
  .courses-hero-corner {
    bottom: 18px;
    right: 18px;
  }
}

/* ============================================================
   CONTACT HERO — Editorial split with video on the left
   ============================================================ */
.contact-page {
  background: #fafafa;
  overflow-x: hidden;
}

/* Sticky nav shared behavior — see reveal rules below near .home-awwwards > .nav */

.contact-hero {
  position: relative;
  min-height: 100dvh;
  padding: 22px 34px 34px;
  background: #fafafa;
  color: #0d0d10;
  font-family: Sora, ui-sans-serif, system-ui, sans-serif;
  display: flex;
  flex-direction: column;
  isolation: isolate;
}

/* --- Top bar: menu | brand ---------------------------------- */
.contact-hero-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(13, 13, 16, 0.14);
}

.contact-hero-menu {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  padding: 6px 4px;
  cursor: pointer;
  color: #0d0d10;
  font-family: Sora, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: opacity 240ms ease;
}

.contact-hero-menu:hover {
  opacity: 0.55;
}

.contact-hero-menu svg {
  width: 26px;
  height: 12px;
}

.contact-hero-brand {
  font-family: Sora, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #0d0d10;
  transition: opacity 240ms ease;
}

.contact-hero-brand:hover {
  opacity: 0.55;
}

/* --- Grid: video left | content right ------------------------ */
.contact-hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.6fr);
  gap: 44px;
  padding-top: 30px;
}

.contact-hero-stage {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #eaeaea;
  min-height: 620px;
  align-self: stretch;
}

.contact-hero-stage video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Right column content ----------------------------------- */
.contact-hero-content {
  display: flex;
  flex-direction: column;
  padding: 8px 0 4px;
}

.contact-hero-title {
  margin: 0 0 74px;
  font-family: Sora, sans-serif;
  font-weight: 900;
  font-size: clamp(84px, 10vw, 158px);
  line-height: 0.9;
  letter-spacing: -0.055em;
  color: #0d0d10;
}

.contact-hero-body {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 2fr);
  gap: 48px;
  align-items: start;
}

.contact-hero-lead {
  margin: 0;
  font-family: Sora, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #0d0d10;
  font-weight: 500;
}

.contact-hero-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 28px;
}

.contact-hero-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-hero-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: Sora, sans-serif;
  min-width: 0;
}

.contact-hero-item > span {
  font-size: 12px;
  font-weight: 500;
  color: rgba(13, 13, 16, 0.5);
  letter-spacing: 0.01em;
}

.contact-hero-item a,
.contact-hero-item p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  color: #0d0d10;
  word-break: break-word;
}

.contact-hero-item a {
  transition: opacity 240ms ease;
}

.contact-hero-item a:hover {
  opacity: 0.55;
}

.contact-hero-item em {
  font-style: normal;
  font-size: 11.5px;
  color: rgba(13, 13, 16, 0.5);
  letter-spacing: 0.01em;
}

.contact-hero-social {
  display: inline-flex;
  gap: 16px;
  font-size: 14px;
  font-weight: 500;
  color: #0d0d10;
}

.contact-hero-social a {
  color: inherit;
  transition: opacity 240ms ease;
}

.contact-hero-social a:hover {
  opacity: 0.55;
}

/* --- Responsive --------------------------------------------- */
@media (max-width: 1080px) {
  .contact-hero-title {
    font-size: clamp(64px, 9vw, 120px);
    margin-bottom: 50px;
  }
  .contact-hero-body {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-hero-info {
    gap: 26px 22px;
  }
}

@media (max-width: 820px) {
  .contact-hero {
    padding: 20px 20px 34px;
    min-height: auto;
  }
  .contact-hero-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 24px;
  }
  .contact-hero-stage {
    min-height: 320px;
    aspect-ratio: 1.1;
    order: -1;
  }
  .contact-hero-title {
    font-size: clamp(56px, 15vw, 96px);
    margin-bottom: 34px;
  }
  .contact-hero-info {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 500px) {
  .contact-hero-info {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   CONTACT FORM — Editorial minimalist form
   ============================================================ */
.contact-form-section {
  background: #fafafa;
  padding: 96px 34px 110px;
  font-family: Sora, ui-sans-serif, system-ui, sans-serif;
  color: #0d0d10;
}

.contact-form-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.2fr);
  gap: 80px;
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 46px;
  border-top: 1px solid rgba(13, 13, 16, 0.14);
}

.contact-form-header {
  position: sticky;
  top: 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-right: 20px;
}

.contact-form-kicker {
  display: inline-block;
  align-self: flex-start;
  font-family: Sora, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(13, 13, 16, 0.55);
}

.contact-form-header h2 {
  margin: 0;
  font-family: Sora, sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #0d0d10;
  max-width: 460px;
}

.contact-form-header p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(13, 13, 16, 0.65);
  max-width: 400px;
}

/* Form layout */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  min-width: 0;
}

.contact-form-field > span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(13, 13, 16, 0.55);
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.contact-form-field > span em {
  font-style: normal;
  color: #20395f;
  font-weight: 700;
  transform: translateY(-1px);
}

.contact-form-field input,
.contact-form-field textarea,
.contact-form-field select {
  appearance: none;
  border: none;
  background: transparent;
  border-bottom: 1px solid rgba(13, 13, 16, 0.24);
  padding: 12px 0 12px;
  font-family: Sora, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #0d0d10;
  line-height: 1.4;
  outline: none;
  transition: border-color 240ms ease;
  width: 100%;
  border-radius: 0;
}

.contact-form-field textarea {
  resize: vertical;
  min-height: 110px;
  padding-top: 14px;
}

.contact-form-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230d0d10' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 18px;
  padding-right: 30px;
  cursor: pointer;
}

.contact-form-field input::placeholder,
.contact-form-field textarea::placeholder {
  color: rgba(13, 13, 16, 0.35);
  font-weight: 400;
}

.contact-form-field input:focus,
.contact-form-field textarea:focus,
.contact-form-field select:focus {
  border-bottom-color: #0d0d10;
}

.contact-form-field:has(input:invalid:not(:placeholder-shown)) input,
.contact-form-field:has(textarea:invalid:not(:placeholder-shown)) textarea {
  border-bottom-color: #b93131;
}

.contact-form-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.contact-form-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  border: none;
  border-radius: 999px;
  background: #0d0d10;
  color: #fafafa;
  font-family: Sora, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 260ms var(--ease), background 260ms var(--ease);
}

.contact-form-submit:hover {
  transform: translateY(-2px);
  background: #20395f;
}

.contact-form-submit span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #fafafa;
  color: #0d0d10;
  font-size: 12px;
}

.contact-form-hint {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(13, 13, 16, 0.55);
  max-width: 360px;
}

.contact-form-hint a {
  color: #0d0d10;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.contact-form-hint a:hover {
  color: #20395f;
}

@media (max-width: 960px) {
  .contact-form-section {
    padding: 64px 22px 80px;
  }
  .contact-form-shell {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 32px;
  }
  .contact-form-header {
    position: static;
    padding-right: 0;
  }
  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-form {
    gap: 24px;
  }
}

/* ============================================================
   HOME FINAL — "Siguiente paso" editorial split
   ============================================================ */
.aw-final {
  position: relative;
  isolation: isolate;
  width: min(100% - 40px, 1280px);
  margin: 66px auto 104px;
  border-top: 0;
  padding: 0;
  background: transparent;
}

.aw-final::before {
  position: absolute;
  inset: -70px max(-80px, -5vw);
  z-index: -1;
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 255, 255, 0.54), transparent 31%),
    radial-gradient(circle at 76% 20%, rgba(155, 185, 211, 0.24), transparent 35%);
  content: "";
  pointer-events: none;
}

.aw-final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(380px, 0.86fr);
  gap: clamp(20px, 5vw, 76px);
  align-items: start;
  min-height: clamp(560px, 59vw, 700px);
}

.aw-final-media {
  position: relative;
  min-height: clamp(540px, 57vw, 700px);
  margin: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.aw-final-media::after {
  position: absolute;
  inset: auto 4% 2% 12%;
  height: 46%;
  z-index: -1;
  background:
    radial-gradient(ellipse at center, rgba(7, 23, 44, 0.12), transparent 66%);
  filter: blur(18px);
  content: "";
  pointer-events: none;
}

.aw-final-media > img,
.aw-final-card-small img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.92) contrast(0.98) brightness(1.02);
  transition: transform 900ms var(--ease), filter 900ms var(--ease);
}

.aw-final-media > img {
  object-position: left center;
  mix-blend-mode: screen;
  filter: saturate(1.14) contrast(1.26) brightness(0.92);
  transform: translateX(-10%) translateY(-2%) scale(1.18);
}

.aw-final-media:hover > img {
  transform: translateX(-10%) translateY(-2%) scale(1.22);
  filter: saturate(0.98) contrast(1.02) brightness(1.04);
}

.aw-final-media-card {
  position: absolute;
  left: clamp(44px, 12vw, 150px);
  right: auto;
  bottom: clamp(72px, 11vw, 128px);
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(520px, calc(100% - 72px));
  min-height: 120px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 999px;
  padding: 27px 42px;
  background: rgba(231, 237, 241, 0.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  backdrop-filter: blur(18px) saturate(1.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.46), 0 22px 52px rgba(7, 23, 44, 0.08);
  color: #07172c;
}

.aw-final-media-card > span {
  margin-bottom: 14px;
  color: rgba(7, 23, 44, 0.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.aw-final-media-card > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.aw-final-media-card strong {
  color: #07172c;
  font-size: clamp(13px, 1.25vw, 17px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
}

.aw-final-media-card em {
  margin-left: -9px;
  color: rgba(7, 23, 44, 0.62);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.aw-final-dot {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #2b93ad;
  color: #fff;
  box-shadow: 0 14px 26px rgba(43, 147, 173, 0.28);
}

.aw-final-dot svg {
  width: 18px;
  height: 18px;
}

.aw-final-content {
  display: grid;
  grid-template-rows: minmax(450px, auto) minmax(250px, 27vw);
  gap: 0;
  padding-top: clamp(8px, 2.2vw, 28px);
}

.aw-final-card,
.aw-final-card-small {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(7, 23, 44, 0.14);
  border-radius: clamp(44px, 5vw, 72px);
  background: transparent;
  box-shadow: none;
}

.aw-final-card {
  display: flex;
  flex-direction: column;
  z-index: 2;
  min-height: clamp(450px, 46vw, 600px);
  gap: clamp(22px, 3.2vw, 42px);
  padding: clamp(36px, 4.2vw, 58px) clamp(36px, 4.2vw, 58px) clamp(78px, 7vw, 112px);
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  color: #07172c;
}

.aw-final-card::before {
  content: none;
}

.aw-final-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}

.aw-final-kicker {
  color: rgba(7, 23, 44, 0.52);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.aw-final-arrow {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: clamp(70px, 5.6vw, 86px);
  height: clamp(70px, 5.6vw, 86px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #07172c;
  box-shadow: 0 18px 42px rgba(7, 23, 44, 0.06);
  transition: transform 420ms var(--ease), background 420ms var(--ease), color 420ms var(--ease);
}

.aw-final-arrow:hover {
  transform: translate(4px, -4px) scale(1.03);
  background: #07172c;
  color: #fff;
}

.aw-final-arrow svg {
  width: 25px;
  height: 25px;
}

.aw-final-card h2 {
  max-width: 590px;
  margin: 0;
  color: #07172c;
  font-size: clamp(27px, 2.38vw, 38px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.98;
  text-wrap: balance;
}

.aw-final-card p {
  max-width: 470px;
  margin: -10px 0 0;
  color: rgba(7, 23, 44, 0.64);
  font-size: clamp(14px, 1.25vw, 17px);
  font-weight: 650;
  line-height: 1.45;
}

.aw-final-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  margin-top: auto;
  color: rgba(7, 23, 44, 0.68);
  font-size: 12px;
  font-weight: 800;
}

.aw-final-meta span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.aw-final-meta svg {
  width: 18px;
  height: 18px;
  color: rgba(7, 23, 44, 0.5);
}

.aw-final-card-small {
  display: block;
  z-index: 3;
  width: 100%;
  min-height: clamp(250px, 28vw, 360px);
  margin-top: clamp(-86px, -6.8vw, -58px);
  margin-left: 0;
  background: #dfe7ee;
  box-shadow: 0 24px 70px rgba(7, 23, 44, 0.08);
}

.aw-final-card-small::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(223, 229, 235, 0.02), rgba(7, 23, 44, 0.04));
  content: "";
}

.aw-final-card-small img {
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1.02);
}

.aw-final-card-small:hover img {
  transform: scale(1.07);
}

@media (max-width: 980px) {
  .aw-final {
    width: min(100% - 32px, 1280px);
    margin: 54px auto 78px;
  }

  .aw-final-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: auto;
  }

  .aw-final-media {
    min-height: 560px;
    aspect-ratio: 1.05;
  }

  .aw-final-content {
    grid-template-rows: auto minmax(260px, 46vw);
    padding-top: 0;
  }

  .aw-final-card {
    min-height: 500px;
  }

  .aw-final-card-small {
    width: 100%;
    margin: -64px 0 0;
  }
}

@media (max-width: 560px) {
  .aw-final {
    width: min(100% - 24px, 1280px);
    margin: 42px auto 64px;
  }

  .aw-final::before {
    inset: -34px -14px;
  }

  .aw-final-media {
    min-height: 430px;
    aspect-ratio: 0.86;
  }

  .aw-final-media > img {
    object-position: left center;
    transform: translateX(-10%) scale(1.08);
  }

  .aw-final-media-card {
    left: 12px;
    right: 12px;
    bottom: 34px;
    width: auto;
    min-height: 96px;
    border-radius: 30px;
    padding: 20px 18px;
  }

  .aw-final-media-card > div {
    gap: 10px;
  }

  .aw-final-dot {
    width: 34px;
    height: 34px;
  }

  .aw-final-card {
    min-height: 470px;
    border-radius: 36px 36px 0 0;
    padding: 30px 24px 88px;
  }

  .aw-final-card-head {
    align-items: center;
  }

  .aw-final-arrow {
    width: 58px;
    height: 58px;
  }

  .aw-final-card h2 {
    font-size: clamp(27px, 8.4vw, 37px);
  }

  .aw-final-card p {
    margin-top: 0;
  }

  .aw-final-meta {
    flex-direction: column;
    gap: 12px;
  }

  .aw-final-card-small {
    min-height: 220px;
    width: 100%;
    margin: -54px 0 0;
    border-radius: 36px;
  }
}

/* ============================================================
   ABOUT PAGE — Redesigned sections (nosotros)
   ============================================================ */

/* Shared: soft steel background on the 4 main content sections */
.about-story,
.about-values,
.about-support,
.about-final {
  background: #e8edf0;
}

.about-final {
  padding: 40px 0 80px;
}

/* ---------- Section 1: "Una respuesta concreta..." ---------- */
.about-story {
  padding: 110px 0 100px;
}

.about-story-shell {
  display: flex;
  flex-direction: column;
  gap: 46px;
}

.about-story-head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  align-items: end;
  gap: 32px;
}

.about-story-heading .eyebrow {
  border-color: rgba(7, 23, 44, 0.16);
  background: transparent;
  color: rgba(7, 23, 44, 0.6);
  margin-bottom: 16px;
}

.about-story-heading h2 {
  margin: 0;
  font-family: Sora, sans-serif;
  font-weight: 800;
  font-size: clamp(38px, 4.4vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #07172c;
  max-width: 780px;
}

.about-story-actions {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 6px;
}

.about-story-dots {
  display: inline-flex;
  gap: 8px;
}

.about-story-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(7, 23, 44, 0.35);
  background: transparent;
  display: inline-block;
}

.about-story-dots span:last-child {
  background: #07172c;
  border-color: #07172c;
}

.about-story-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(7, 23, 44, 0.28);
  background: transparent;
  color: #07172c;
  font-family: Sora, sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 240ms var(--ease), color 240ms var(--ease), transform 240ms var(--ease);
  white-space: nowrap;
}

.about-story-cta:hover {
  background: #07172c;
  color: #fff;
  transform: translateY(-1px);
}

.about-story-body {
  padding-top: 22px;
  border-top: 1px solid rgba(7, 23, 44, 0.12);
  columns: 2;
  column-gap: 60px;
  column-fill: balance;
}

.about-story-body p {
  margin: 0 0 20px;
  font-family: Sora, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(7, 23, 44, 0.78);
  break-inside: avoid;
}

.about-story-body p:first-child {
  font-size: 17px;
  line-height: 1.5;
  color: #07172c;
  font-weight: 500;
}

/* ---------- Section 2: "Profesionalidad..." (values stack) ---------- */
.about-values {
  padding: 90px 0 130px;
  overflow: hidden;
}

.about-values-shell {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.about-values-head {
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) minmax(0, 1.5fr);
  align-items: end;
  gap: 32px;
}

.about-values-head .eyebrow {
  border-color: rgba(7, 23, 44, 0.16);
  background: transparent;
  color: rgba(7, 23, 44, 0.6);
  align-self: end;
  justify-self: start;
  margin-bottom: 20px;
}

.about-values-head h2 {
  margin: 0;
  font-family: Sora, sans-serif;
  font-weight: 900;
  font-size: clamp(46px, 6.4vw, 108px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: #07172c;
  text-align: right;
}

.about-values-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  min-height: 380px;
  perspective: 1000px;
}

/* Entry+exit wrapper — JS updates transform/opacity every scroll frame.
   No CSS transition needed since positions are scroll-linked continuously. */
.about-values-lift {
  transform: translate3d(0, 260px, 0);
  opacity: 0;
  will-change: transform, opacity;
}

/* --- Scroll-in reveal effect for individual elements --- */
.about-page [data-fx-in] {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 720ms cubic-bezier(0.32, 0.72, 0, 1),
    transform 820ms cubic-bezier(0.32, 0.72, 0, 1);
  transition-delay: var(--fx-delay, 0ms);
  will-change: transform, opacity;
}

/* Scale variant — for cards / images / media */
.about-page [data-fx-in][data-fx-scale] {
  transform: translate3d(0, 34px, 0) scale(0.965);
}

/* Strong variant — bigger recorrido, más lento, para títulos destacados */
.about-page [data-fx-in][data-fx-strong] {
  transform: translate3d(0, 64px, 0);
  transition:
    opacity 900ms cubic-bezier(0.32, 0.72, 0, 1),
    transform 1000ms cubic-bezier(0.22, 0.68, 0.05, 1);
}

/* Directional variants — slide in from a side */
.about-page [data-fx-in][data-fx-left] {
  transform: translate3d(-42px, 0, 0);
}

.about-page [data-fx-in][data-fx-right] {
  transform: translate3d(42px, 0, 0);
}

/* All active states */
.about-page [data-fx-in].is-inview,
.about-page [data-fx-in][data-fx-scale].is-inview,
.about-page [data-fx-in][data-fx-strong].is-inview,
.about-page [data-fx-in][data-fx-left].is-inview,
.about-page [data-fx-in][data-fx-right].is-inview {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.about-page [data-fx-in][data-fx-scale].is-inview {
  transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .about-page [data-fx-in] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.about-value-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 28px 30px 26px;
  background: linear-gradient(180deg, #ffffff 0%, #f0f3f6 100%);
  border: 1px solid rgba(7, 23, 44, 0.08);
  border-radius: 24px;
  color: #07172c;
  min-height: 380px;
  transform-origin: center center;
  will-change: transform, opacity;
  transition: box-shadow 320ms var(--ease);
  box-shadow: 0 20px 40px rgba(7, 23, 44, 0.06);
}

.about-value-card:hover {
  box-shadow: 0 26px 60px rgba(7, 23, 44, 0.14);
}

.about-value-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-value-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(7, 23, 44, 0.18);
  background: transparent;
  font-family: Sora, sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(7, 23, 44, 0.7);
}

.about-value-arrow {
  font-family: Sora, sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: #4f6b89;
  line-height: 1;
}

.about-value-card h3 {
  margin: 0;
  font-family: Sora, sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #07172c;
}

.about-value-card p {
  margin: 0;
  font-family: Sora, sans-serif;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(7, 23, 44, 0.65);
  flex: 1;
}

.about-value-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 8px;
}

.about-value-footer strong {
  font-family: Sora, sans-serif;
  font-weight: 400;
  font-size: clamp(60px, 5.6vw, 92px);
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: #07172c;
}

.about-value-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(7, 23, 44, 0.18);
  background: transparent;
  font-family: Sora, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(7, 23, 44, 0.7);
}

.about-value-chip em {
  font-style: normal;
  color: rgba(7, 23, 44, 0.5);
  font-size: 12px;
}

/* Initial stacked state — JS overrides on scroll */
.about-values-grid .about-value-card:nth-child(1) {
  transform: translate3d(78%, 14px, 0) rotate(-6deg) scale(0.94);
  opacity: 0.55;
  z-index: 1;
}

.about-values-grid .about-value-card:nth-child(2) {
  z-index: 3;
}

.about-values-grid .about-value-card:nth-child(3) {
  transform: translate3d(-78%, 14px, 0) rotate(6deg) scale(0.94);
  opacity: 0.55;
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .about-values-grid .about-value-card {
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ---------- Section 3: "Respaldo profesional" ---------- */
.about-support {
  padding: 110px 0 120px;
}

.about-support-shell {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.about-support-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}

.about-support-kicker {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(7, 23, 44, 0.24);
  background: transparent;
  font-family: Sora, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(7, 23, 44, 0.62);
}

.about-support-head h2 {
  margin: 0;
  font-family: Sora, sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.14;
  letter-spacing: -0.025em;
  color: #07172c;
  max-width: 900px;
}

.about-support-head h2 span {
  color: #07172c;
}

.about-support-head h2 em {
  font-style: normal;
  color: rgba(7, 23, 44, 0.42);
  font-weight: 700;
}

.about-support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 16px;
  align-items: stretch;
}

/* --- Left: video card --- */
.about-support-video {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #16294a;
  min-height: 300px;
  aspect-ratio: 1.5;
}

.about-support-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.about-support-video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 23, 44, 0) 40%, rgba(7, 23, 44, 0.6) 100%);
}

.about-support-caption {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 4;
  font-family: Sora, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: -0.005em;
  max-width: 60%;
}

/* --- Right: quote card --- */
.about-support-quote {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 30px 26px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(7, 23, 44, 0.08);
  box-shadow: 0 14px 32px rgba(7, 23, 44, 0.06);
}

.about-support-quote-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(7, 23, 44, 0.08);
}

.about-support-quote-head span {
  font-family: Sora, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(7, 23, 44, 0.55);
}

.about-support-quote-icons {
  font-family: Sora, sans-serif;
  font-size: 14px;
  color: rgba(7, 23, 44, 0.45);
  letter-spacing: 4px;
}

.about-support-quote strong {
  font-family: Sora, sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: #07172c;
}

.about-support-quote p {
  margin: 0;
  font-family: Sora, sans-serif;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(7, 23, 44, 0.72);
}

.about-support-quote-avatars {
  display: flex;
  align-items: center;
  margin-top: auto;
  padding-top: 8px;
}

.about-support-quote-avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
  margin-left: -8px;
  box-shadow: 0 2px 8px rgba(7, 23, 44, 0.14);
}

.about-support-quote-avatars img:first-child {
  margin-left: 0;
}

/* --- Bottom: rows of certifications/partners --- */
.about-support-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-support-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  padding: 26px 6px;
  border-top: 1px solid rgba(7, 23, 44, 0.16);
}

.about-support-row:last-child {
  border-bottom: 1px solid rgba(7, 23, 44, 0.16);
}

.about-support-row p {
  margin: 0;
  font-family: Sora, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(7, 23, 44, 0.72);
  max-width: 640px;
}

.about-support-row strong {
  font-family: Sora, sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 3.6vw, 54px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #07172c;
  white-space: nowrap;
  text-align: right;
}

.about-support-row strong em {
  font-style: normal;
  font-weight: 400;
  color: rgba(7, 23, 44, 0.55);
}

/* ---------- Section 4: CTA final ---------- */
.about-final .cta-band {
  border-radius: 40px;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .about-story {
    padding: 80px 0 70px;
  }
  .about-story-head {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .about-story-body {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .about-story-body p:first-child,
  .about-story-body p:nth-child(2),
  .about-story-body p:nth-child(3) {
    grid-column: 1;
    padding-top: 0;
  }
  .about-values {
    padding: 70px 0 100px;
  }
  .about-values-head {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .about-values-head h2 {
    text-align: left;
  }
  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .about-values-grid .about-value-card:nth-child(1),
  .about-values-grid .about-value-card:nth-child(3) {
    transform: none;
    opacity: 1;
  }
  .about-value-card {
    min-height: auto;
  }
  .about-support {
    padding: 70px 0 90px;
  }
  .about-support-shell {
    gap: 40px;
  }
  .about-support-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .about-support-video {
    aspect-ratio: 1.6;
    min-height: 240px;
  }
  .about-support-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 6px;
  }
  .about-support-row strong {
    text-align: left;
    font-size: clamp(28px, 8vw, 40px);
  }
}

/* ============================================================
   CATALOG PAGE — Editorial redesign (below hero)
   ============================================================ */
.catalog-main {
  background: #fafafa;
  color: #14140f;
  font-family: Sora, ui-sans-serif, system-ui, sans-serif;
}

/* ---------- Marquee ---------- */
.catalog-marquee {
  overflow: hidden;
  border-top: 1px solid rgba(20, 20, 15, 0.14);
  border-bottom: 1px solid rgba(20, 20, 15, 0.14);
  padding: 18px 0;
  background: #fafafa;
}

.catalog-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: catalog-scroll 44s linear infinite;
  padding-right: 40px;
}

.catalog-marquee-track span,
.catalog-marquee-track em {
  font-family: Sora, sans-serif;
  font-size: clamp(15px, 1.4vw, 20px);
  letter-spacing: -0.005em;
  color: #14140f;
  flex-shrink: 0;
}

.catalog-marquee-track span {
  font-weight: 600;
}

.catalog-marquee-track em {
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: rgba(20, 20, 15, 0.6);
}

@keyframes catalog-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Note band ---------- */
.catalog-note-band {
  padding: 22px 0;
  border-bottom: 1px solid rgba(20, 20, 15, 0.14);
}

.catalog-note-band .shell {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.catalog-note-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(20, 20, 15, 0.24);
  font-family: Sora, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(20, 20, 15, 0.7);
}

.catalog-note-band p {
  margin: 0;
  font-family: Sora, sans-serif;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(20, 20, 15, 0.72);
  max-width: 780px;
}

/* ---------- Category lineup header + grid ---------- */
.catalog-lineup {
  padding-top: 70px;
}

.catalog-lineup-header {
  padding-bottom: 46px;
}

.catalog-lineup-header .shell {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.catalog-lineup-kicker {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(20, 20, 15, 0.28);
  background: transparent;
  font-family: Sora, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(20, 20, 15, 0.7);
}

.catalog-lineup-header h2 {
  margin: 0;
  font-family: Sora, sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #14140f;
  max-width: 900px;
}

.catalog-lineup-header h2 em {
  font-style: italic;
  font-weight: 400;
  color: rgba(20, 20, 15, 0.55);
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
}

.catalog-lineup-grid,
.catalog-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(20, 20, 15, 0.14);
  border-bottom: 1px solid rgba(20, 20, 15, 0.14);
}

.catalog-lineup-card {
  position: relative;
  display: flex;
  flex-direction: column;
  color: #14140f;
  padding: 26px 26px 30px;
  border-right: 1px solid rgba(20, 20, 15, 0.14);
  transition: background 320ms ease;
}

.catalog-lineup-card:nth-child(4n) {
  border-right: 0;
}

.catalog-lineup-card:nth-child(n+5) {
  border-top: 1px solid rgba(20, 20, 15, 0.14);
}

.catalog-lineup-card:hover {
  background: rgba(20, 20, 15, 0.03);
}

.catalog-lineup-media {
  aspect-ratio: 1 / 1.05;
  overflow: hidden;
  background: #ebe9e0;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-lineup-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.32, 0.72, 0, 1);
}

.catalog-lineup-card:hover .catalog-lineup-media img {
  transform: scale(1.05);
}

.catalog-lineup-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.catalog-lineup-info h3 {
  margin: 0;
  font-family: Sora, sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  color: #14140f;
  line-height: 1.25;
}

.catalog-lineup-info span {
  font-family: Sora, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(20, 20, 15, 0.55);
}

/* ---------- Featured sections ---------- */
.catalog-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  min-height: 520px;
  border-bottom: 1px solid rgba(20, 20, 15, 0.14);
  background: #fafafa;
}

.catalog-feature-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
}

.catalog-feature-reverse .catalog-feature-media {
  order: 2;
}

.catalog-feature-reverse .catalog-feature-copy {
  order: 1;
  border-left: 0;
  border-right: 1px solid rgba(20, 20, 15, 0.14);
}

.catalog-feature-media {
  position: relative;
  overflow: hidden;
  background: #ebe9e0;
  min-height: 480px;
}

.catalog-feature-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1200ms cubic-bezier(0.32, 0.72, 0, 1);
}

.catalog-feature-media:hover img {
  transform: scale(1.03);
}

.catalog-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  padding: 60px 60px 60px 80px;
  border-left: 1px solid rgba(20, 20, 15, 0.14);
}

.catalog-feature-copy h2 {
  margin: 0;
  font-family: Sora, sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.028em;
  color: #14140f;
}

.catalog-feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: Sora, sans-serif;
  font-size: 14.5px;
  color: rgba(20, 20, 15, 0.7);
}

.catalog-feature-list li {
  line-height: 1.4;
}

.catalog-feature-cta {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid rgba(20, 20, 15, 0.35);
  background: transparent;
  color: #14140f;
  font-family: Sora, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 240ms ease, color 240ms ease, transform 240ms ease;
}

.catalog-feature-cta:hover {
  background: #14140f;
  color: #f5f4ef;
  transform: translateY(-1px);
}

/* ---------- Highlights (product preview) ---------- */
.catalog-highlights {
  padding-top: 80px;
}

.catalog-highlights-header {
  padding-bottom: 46px;
}

.catalog-highlights-header .shell {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.catalog-highlights-header h2 {
  margin: 0;
  font-family: Sora, sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.028em;
  color: #14140f;
  max-width: 800px;
}

/* ---------- Final CTA ---------- */
.catalog-final {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  border-top: 1px solid rgba(20, 20, 15, 0.14);
  border-bottom: 1px solid rgba(20, 20, 15, 0.14);
  background: #fafafa;
  min-height: 520px;
}

.catalog-final-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  padding: 70px 60px 60px 80px;
  border-right: 1px solid rgba(20, 20, 15, 0.14);
}

.catalog-final-copy h2 {
  margin: 0;
  font-family: Sora, sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: #14140f;
}

.catalog-final-copy p {
  margin: 0;
  font-family: Sora, sans-serif;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(20, 20, 15, 0.7);
  max-width: 440px;
}

.catalog-final-cta {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  border-radius: 999px;
  border: 1px solid rgba(20, 20, 15, 0.35);
  background: transparent;
  color: #14140f;
  font-family: Sora, sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 240ms ease, color 240ms ease, transform 240ms ease;
}

.catalog-final-cta:hover {
  background: #14140f;
  color: #f5f4ef;
  transform: translateY(-2px);
}

.catalog-final-media {
  position: relative;
  overflow: hidden;
  background: #ebe9e0;
  min-height: 480px;
}

.catalog-final-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .catalog-lineup-grid,
  .catalog-highlights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .catalog-lineup-card {
    border-right: 1px solid rgba(20, 20, 15, 0.14);
  }
  .catalog-lineup-card:nth-child(4n) {
    border-right: 1px solid rgba(20, 20, 15, 0.14);
  }
  .catalog-lineup-card:nth-child(2n) {
    border-right: 0;
  }
  .catalog-lineup-card:nth-child(n+3) {
    border-top: 1px solid rgba(20, 20, 15, 0.14);
  }
  .catalog-feature,
  .catalog-final {
    grid-template-columns: 1fr;
  }
  .catalog-feature-copy,
  .catalog-final-copy {
    padding: 50px 32px;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(20, 20, 15, 0.14);
    order: 2;
  }
  .catalog-feature-media,
  .catalog-final-media {
    order: 1;
    min-height: 380px;
    aspect-ratio: 1.4;
  }
  .catalog-feature-reverse .catalog-feature-copy {
    border-right: 0;
  }
  .catalog-feature-reverse .catalog-feature-media {
    order: 1;
  }
}

@media (max-width: 640px) {
  .catalog-lineup-grid,
  .catalog-highlights-grid {
    grid-template-columns: 1fr;
  }
  .catalog-lineup-card {
    border-right: 0 !important;
    border-top: 1px solid rgba(20, 20, 15, 0.14) !important;
  }
  .catalog-lineup-card:first-child {
    border-top: 0 !important;
  }
  .catalog-lineup { padding-top: 44px; }
  .catalog-lineup-header,
  .catalog-highlights-header { padding-bottom: 30px; }
  .catalog-feature-copy,
  .catalog-final-copy {
    padding: 40px 22px;
  }
}

/* ============================================================
   PROJECTS PAGE — Numbered horizontal strip
   ============================================================ */
.projects-main {
  background: #fafafa;
  color: #14140f;
  font-family: Sora, ui-sans-serif, system-ui, sans-serif;
}

/* ---------- Section header ---------- */
.projects-strip-header {
  padding: 80px 0 46px;
}

.projects-strip-header .shell {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.projects-strip-kicker {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(20, 20, 15, 0.28);
  background: transparent;
  font-family: Sora, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(20, 20, 15, 0.7);
}

.projects-strip-header h2 {
  margin: 0;
  font-family: Sora, sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #14140f;
  max-width: 960px;
}

.projects-strip-header h2 em {
  font-style: normal;
  color: rgba(20, 20, 15, 0.6);
}

/* ---------- The horizontal strip ---------- */
.projects-strip-section {
  position: relative;
}

.projects-strip {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  border-top: 1px solid #14140f;
  border-bottom: 1px solid #14140f;
}

.projects-strip-card {
  grid-column: span 3;
}

.projects-strip-card:nth-child(n+9) {
  grid-column: span 4;
}

.projects-strip-card {
  position: relative;
  aspect-ratio: 0.78;
  min-height: 460px;
  padding: 32px 26px 26px;
  color: #14140f;
  background: #fafafa;
  border-right: 1px solid #14140f;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  text-decoration: none;
  transition: background 320ms ease;
}

/* Right border: none for last column of each row */
.projects-strip-card:nth-child(4n),
.projects-strip-card:last-child {
  border-right: 0;
}

/* Bottom border: separates rows 1-2 from row 3 (cards 1-8) */
.projects-strip-card:nth-child(-n+8) {
  border-bottom: 1px solid #14140f;
}

.projects-strip-card:hover {
  background: #ecebe4;
}

/* Image variant — subtle overlay so the number stays readable */
.projects-strip-card-image {
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  color: #14140f;
}

.projects-strip-card-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(250, 250, 250, 0.72) 0%, rgba(250, 250, 250, 0.28) 45%, rgba(250, 250, 250, 0.9) 100%);
  transition: background 400ms ease;
}

.projects-strip-card-image:hover::before {
  background:
    linear-gradient(180deg, rgba(250, 250, 250, 0.6) 0%, rgba(250, 250, 250, 0.15) 45%, rgba(250, 250, 250, 0.85) 100%);
}

/* Giant number */
.projects-strip-number {
  position: relative;
  z-index: 2;
  align-self: flex-start;
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(160px, 18vw, 320px);
  line-height: 0.82;
  letter-spacing: -0.05em;
  color: #14140f;
  margin: -12px 0 0 -4px;
  user-select: none;
}

/* Category pill */
.projects-strip-tag {
  position: absolute;
  bottom: 96px;
  left: 26px;
  z-index: 2;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid #14140f;
  background: rgba(250, 250, 250, 0.92);
  font-family: Sora, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #14140f;
}

/* Footer */
.projects-strip-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.projects-strip-footer > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.projects-strip-footer strong {
  font-family: Sora, sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: -0.005em;
  color: #14140f;
  line-height: 1.2;
}

.projects-strip-footer p {
  margin: 0;
  font-family: Sora, sans-serif;
  font-size: 12px;
  color: rgba(20, 20, 15, 0.62);
  line-height: 1.35;
}

.projects-strip-arrow {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #14140f;
  background: rgba(250, 250, 250, 0.92);
  color: #14140f;
  font-family: Sora, sans-serif;
  font-size: 15px;
  transition: transform 240ms ease, background 240ms ease, color 240ms ease;
}

.projects-strip-card:hover .projects-strip-arrow {
  background: #14140f;
  color: #f5f4ef;
  transform: translateX(3px);
}

/* Prev / next controls */
.projects-strip-controls {
  display: inline-flex;
  gap: 10px;
  padding: 22px 30px;
}

.projects-strip-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(20, 20, 15, 0.3);
  background: transparent;
  color: #14140f;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 240ms ease, color 240ms ease;
}

.projects-strip-arrow-btn:hover {
  background: #14140f;
  color: #f5f4ef;
}

.projects-strip-arrow-btn svg {
  width: 18px;
  height: 18px;
}

/* ---------- Final CTA — split with two-tone straddling title ---------- */
.projects-final {
  position: relative;
  background: #fafafa;
  padding: 80px 40px 160px;
  isolation: isolate;
}

.projects-final-panels {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  border-radius: 28px;
  overflow: hidden;
}

.projects-final-plain {
  background: #fafafa;
}

.projects-final-video {
  position: relative;
  background: #14140f;
  overflow: hidden;
}

.projects-final-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projects-final-headline {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 80px 40px 160px;
  pointer-events: none;
}

.projects-final-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.projects-final-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 44%;
  padding-left: 20px;
}

.projects-final-title {
  position: relative;
  margin: 0;
  font-family: Sora, sans-serif;
  font-weight: 400;
  font-size: clamp(42px, 6vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  display: inline-block;
}

.projects-final-title-layer {
  display: block;
}

.projects-final-title-layer span {
  display: block;
}

.projects-final-title-dark {
  color: #14140f;
  clip-path: inset(0 50% 0 0);
}

.projects-final-title-light {
  position: absolute;
  inset: 0;
  color: #ffffff;
  clip-path: inset(0 0 0 50%);
}

.projects-final-lead {
  margin: 0;
  max-width: 420px;
  font-family: Sora, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(20, 20, 15, 0.7);
  text-align: left;
}

.projects-final-cta {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px 14px 26px;
  border-radius: 999px;
  background: #14140f;
  color: #ffffff;
  font-family: Sora, sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.005em;
  text-decoration: none;
  transition: background 240ms ease, transform 240ms ease;
}

.projects-final-cta:hover {
  background: #2b2b22;
  transform: translateY(-1px);
}

.projects-final-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 13px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .projects-strip-card {
    flex: 0 0 30%;
    min-height: 460px;
  }
  .projects-strip-number {
    font-size: clamp(140px, 24vw, 240px);
  }
  .projects-final {
    padding: 60px 20px 120px;
  }
  .projects-final-panels {
    min-height: 520px;
  }
  .projects-final-headline {
    padding: 60px 24px 120px;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .projects-final {
    padding: 50px 14px 100px;
  }
  .projects-final-panels {
    grid-template-columns: 1fr;
    grid-template-rows: 320px auto;
    min-height: 0;
  }
  .projects-final-plain {
    order: 2;
    min-height: 260px;
  }
  .projects-final-video {
    order: 1;
  }
  .projects-final-title-dark {
    clip-path: none;
  }
  .projects-final-title-light {
    display: none;
  }
  .projects-final-headline {
    position: static;
    padding: 0;
  }
  .projects-final-title-wrap {
    padding: 32px 20px;
  }
  .projects-final-bottom {
    max-width: none;
    padding: 0 20px 32px;
  }
}

@media (max-width: 640px) {
  .projects-strip-header {
    padding: 50px 0 30px;
  }
  .projects-strip-card {
    flex: 0 0 78%;
    min-height: 420px;
  }
  .projects-final-copy {
    padding: 40px 22px;
  }
}

/* ---------- Projects reveal animations ---------- */
.projects-page [data-reveal] {
  opacity: 0;
  transform: translate3d(0, var(--reveal-y, 28px), 0) scale(var(--reveal-s, 1));
  transition:
    opacity 780ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 900ms cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: calc(var(--reveal-i, 0) * 70ms);
  filter: blur(4px);
  will-change: transform, opacity, filter;
}

.projects-page [data-reveal="fade"] {
  --reveal-y: 0px;
}

.projects-page [data-reveal="rise"] {
  --reveal-y: 40px;
}

.projects-page [data-reveal="rise-lg"] {
  --reveal-y: 64px;
}

.projects-page [data-reveal="zoom"] {
  --reveal-y: 0px;
  --reveal-s: 0.94;
}

.projects-page [data-reveal="left"] {
  transform: translate3d(-40px, 0, 0);
}

.projects-page [data-reveal="right"] {
  transform: translate3d(40px, 0, 0);
}

.projects-page [data-reveal].is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .projects-page [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* ---------- Cursos hero — compact override (must win over base rules) ---------- */
.courses-page .courses-hero-grid {
  min-height: min(420px, calc(100dvh - 140px)) !important;
}
.courses-page .courses-hero-tag {
  padding: 12px 16px !important;
  min-height: 68px !important;
  gap: 6px !important;
}
.courses-page .courses-hero-tag p {
  font-size: clamp(12px, 1vw, 15px) !important;
}
.courses-page .courses-hero-headline {
  padding: 14px 18px 12px !important;
  gap: 8px !important;
}
.courses-page .courses-hero-headline-top {
  gap: 8px !important;
  padding: 0 !important;
}
.courses-page .courses-hero-headline h1 {
  font-size: clamp(26px, 2.7vw, 40px) !important;
  line-height: 1 !important;
}
.courses-page .courses-hero-lead {
  font-size: 13px !important;
  line-height: 1.45 !important;
  max-width: 440px !important;
}
.courses-page .courses-hero-btn {
  padding: 9px 15px !important;
  font-size: 11.5px !important;
}
.courses-page .courses-hero-btn.primary span {
  width: 18px !important;
  height: 18px !important;
  font-size: 10px !important;
}
.courses-page .courses-hero-facts {
  gap: 6px !important;
}
.courses-page .courses-hero-fact,
.courses-page .courses-hero-fact-photo {
  padding: 10px 12px !important;
  min-height: 66px !important;
  gap: 4px !important;
}
.courses-page .courses-hero-fact strong {
  font-size: clamp(20px, 2vw, 28px) !important;
}
.courses-page .courses-hero-fact span {
  font-size: 10px !important;
  line-height: 1.3 !important;
}
.courses-page .courses-hero-fact-avatars img {
  width: 26px !important;
  height: 26px !important;
}

/* ===================================================
   Cursos MORPH — inline icons → row of icons → cards
   =================================================== */
.morph {
  position: relative;
  background: #e8edf0;
  height: 260vh;
}
.morph-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.morph-stage {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Paragraph — centered in stage */
.morph-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 6vw;
  text-align: center;
  font-family: Sora, sans-serif;
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 34px);
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: #14233b;
  opacity: var(--text-op, 1);
  transition: opacity 60ms linear;
  pointer-events: none;
}
.morph-text-inner {
  max-width: 1000px;
}
.morph-word {
  display: inline-block;
  opacity: 0.12;
  filter: blur(4px);
  transform: translateY(6px);
  transition:
    opacity 500ms cubic-bezier(0.22, 0.61, 0.36, 1),
    filter  500ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 500ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, filter, transform;
}
.morph-word.is-in {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
.morph-slot {
  display: inline-block;
  width: 46px;
  height: 46px;
  vertical-align: middle;
  margin: 0 4px;
}

/* Cards layer — absolutely positioned by JS */
.morph-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.morph-card {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--w, 46px);
  height: var(--h, 46px);
  transform: translate3d(var(--x, 0px), var(--y, 0px), 0);
  border-radius: var(--r, 14px);
  overflow: hidden;
  transition:
    width 700ms cubic-bezier(0.22, 0.61, 0.36, 1),
    height 700ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1),
    border-radius 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: width, height, transform, border-radius;
  pointer-events: auto;
}

.morph-card-tint { background: var(--tint, #dbe9d0); }
.morph-card-photo { background: #d5dee5; }

/* Icon layer (visible when card is small) */
.morph-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tint-strong, #20395F);
  opacity: var(--icon-op, 1);
  transition: opacity 500ms ease;
}
.morph-icon svg { width: 60%; height: 60%; }
.morph-icon img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Content layer (visible when card is expanded) */
.morph-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  opacity: var(--content-op, 0);
  transition: opacity 500ms ease 200ms;
}
.morph-content-photo { padding: 0; }
.morph-content-photo img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.morph-chip {
  align-self: flex-start;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(20, 35, 59, 0.85);
  color: #fff;
  font: 700 10px/1 Sora, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.morph-content h3 {
  margin: 0;
  font: 700 17px/1.15 Sora, sans-serif;
  letter-spacing: -0.015em;
  color: #14233b;
}
.morph-content p {
  margin: 0;
  font: 400 12.5px/1.5 Sora, sans-serif;
  color: rgba(20, 35, 59, 0.72);
}
.morph-cta {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #14233b;
  color: #fff;
  font: 700 11.5px/1 Sora, sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
}
.morph-cta:hover { background: #20395F; }
.morph-caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  color: #14233b;
  font: 600 11px/1 Sora, sans-serif;
  backdrop-filter: blur(6px);
}

/* Phase states — JS toggles data-phase on .morph */
.morph[data-phase="row"] .morph-text,
.morph[data-phase="cards"] .morph-text {
  --text-op: 0;
}
.morph[data-phase="cards"] .morph-icon {
  --icon-op: 0;
}
.morph[data-phase="cards"] .morph-content {
  --content-op: 1;
}

@media (max-width: 900px) {
  .morph { height: 320vh; }
  .morph-text { font-size: clamp(18px, 4vw, 24px); }
  .morph-slot { width: 36px; height: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  .morph { height: auto; }
  .morph-sticky { position: static; height: auto; padding: 60px 20px; }
  .morph-text { position: static; padding: 0 0 40px; }
  .morph-cards { position: static; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .morph-card { position: static; width: 100% !important; height: 320px !important; transform: none !important; }
  .morph-icon { opacity: 0; }
  .morph-content { opacity: 1; }
  .morph-slot { display: none; }
}

/* ===================================================
   Cursos STACK — background text + stacked cards
   scroll swaps top card out (up + rotate + fade)
   =================================================== */
.stack {
  position: relative;
  background: #e8edf0;
  height: 320vh;
}
.stack-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stack-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 3vw;
  font-family: Sora, sans-serif;
  font-weight: 800;
  font-size: clamp(56px, 10vw, 170px);
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: rgba(20, 35, 59, 0.06);
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  pointer-events: none;
  user-select: none;
  opacity: 0;
  transform: translate3d(0, -70vh, 0);
  transition:
    opacity 900ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 1100ms cubic-bezier(0.34, 1.06, 0.5, 1);
}
.stack.is-in .stack-bg {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.stack-cards {
  position: relative;
  width: min(520px, 92vw);
  height: 360px;
  z-index: 2;
}
.stack-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px 34px 34px;
  background: #ffffff;
  border-radius: 22px;
  box-shadow:
    0 30px 60px -30px rgba(20, 35, 59, 0.28),
    0 8px 22px -12px rgba(20, 35, 59, 0.14);
  transform:
    translate3d(0, var(--ty, 0px), 0)
    rotate(var(--rot, 0deg))
    scale(var(--sc, 1));
  opacity: var(--op, 1);
  transition:
    transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 500ms ease;
  will-change: transform, opacity;
}

/* Entrance state — cards start below and blurred */
.stack:not(.is-in) .stack-card {
  transform:
    translate3d(0, 80px, 0)
    rotate(var(--rot, 0deg))
    scale(0.92);
  opacity: 0;
  filter: blur(6px);
  transition:
    transform 1000ms cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 800ms ease,
    filter 800ms ease;
}
.stack.is-in .stack-card {
  filter: blur(0);
}
.stack.is-in .stack-card:nth-child(1) { transition-delay: 100ms; }
.stack.is-in .stack-card:nth-child(2) { transition-delay: 200ms; }
.stack.is-in .stack-card:nth-child(3) { transition-delay: 300ms; }
.stack-card-icon {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #fff6d6;
  color: #14233b;
}
.stack-card-icon svg { width: 26px; height: 26px; }

.stack-card:nth-child(2) .stack-card-icon { background: #dbe9d0; }
.stack-card:nth-child(3) .stack-card-icon { background: #d7e6f2; }

.stack-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stack-card-body h3 {
  margin: 0;
  font-family: Sora, sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #14233b;
}
.stack-card-body p {
  margin: 0;
  font-family: Sora, sans-serif;
  font-weight: 500;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(20, 35, 59, 0.7);
}

.stack-nav {
  position: absolute;
  left: clamp(20px, 4vw, 64px);
  bottom: clamp(30px, 6vh, 60px);
  display: inline-flex;
  gap: 10px;
  z-index: 3;
}
.stack-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(20, 35, 59, 0.35);
  background: transparent;
  color: #14233b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
}
.stack-nav-btn:hover {
  background: #14233b;
  color: #fff;
}
.stack-nav-btn svg { width: 18px; height: 18px; }

@media (max-width: 720px) {
  .stack { height: 360vh; }
  .stack-cards { height: 400px; }
  .stack-card { padding: 26px 24px; }
  .stack-bg { font-size: clamp(60px, 20vw, 140px); white-space: normal; text-align: center; padding: 0 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .stack { height: auto; }
  .stack-sticky { position: static; height: auto; padding: 80px 20px; }
  .stack-cards { position: static; width: 100%; max-width: 520px; height: auto; margin: 0 auto; display: grid; gap: 20px; }
  .stack-card { position: static; transform: none !important; opacity: 1 !important; }
  .stack-bg { position: static; padding: 0 0 40px; opacity: 0.5; }
  .stack-nav { display: none; }
}

/* Cursos CTA plain — text + button directly on background */
.courses-cta-plain {
  background: #e8edf0;
  padding: clamp(60px, 10vh, 120px) clamp(24px, 6vw, 90px) clamp(80px, 12vh, 140px);
}
.courses-cta-plain-inner {
  max-width: 1200px;
  margin: 0 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 28px;
  text-align: right;
}
.courses-cta-plain h2 {
  margin: 0;
  font-family: Sora, sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #14233b;
  max-width: 780px;
  opacity: 0;
  transform: translate3d(60px, 20px, 0);
  filter: blur(4px);
  transition:
    opacity 900ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 900ms ease;
}
.courses-cta-plain-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  background: #14233b;
  color: #ffffff;
  font-family: Sora, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 220ms ease, transform 220ms ease;
  opacity: 0;
  transform: translate3d(60px, 20px, 0);
}
.courses-cta-plain-btn {
  transition:
    background 220ms ease,
    opacity 800ms cubic-bezier(0.22, 0.61, 0.36, 1) 150ms,
    transform 800ms cubic-bezier(0.22, 0.61, 0.36, 1) 150ms;
}
.courses-cta-plain.is-in h2 {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}
.courses-cta-plain.is-in .courses-cta-plain-btn {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.courses-cta-plain-btn:hover {
  background: #20395F;
  transform: translateY(-2px);
}

/* Hero cursos reveal animations */
.courses-page [data-hero-reveal] {
  opacity: 0;
  transform: translate3d(0, var(--hero-y, 24px), 0);
  filter: blur(3px);
  transition:
    opacity 700ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 800ms cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 700ms ease;
  transition-delay: calc(var(--hero-i, 0) * 90ms);
}
.courses-page [data-hero-reveal="rise"] { --hero-y: 30px; }
.courses-page [data-hero-reveal="right"] { transform: translate3d(40px, 0, 0); }
.courses-page [data-hero-reveal="left"] { transform: translate3d(-40px, 0, 0); }
.courses-page [data-hero-reveal="zoom"] { transform: scale(0.85); }
.courses-page [data-hero-reveal].is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}
@media (prefers-reduced-motion: reduce) {
  .courses-page [data-hero-reveal] {
    opacity: 1; transform: none; filter: none; transition: none;
  }
}

/* ===================================================
   Contacto — entrance animations (repeat on re-enter)
   =================================================== */
.contact-page [data-contact-reveal] {
  opacity: 0;
  transform: translate3d(0, var(--ry, 26px), 0) scale(var(--rs, 1));
  filter: blur(4px);
  transition:
    opacity 780ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 780ms ease;
  transition-delay: calc(var(--reveal-i, 0) * 80ms);
  will-change: transform, opacity, filter;
}
.contact-page [data-contact-reveal="rise"] { --ry: 32px; }
.contact-page [data-contact-reveal="left"] { transform: translate3d(-50px, 0, 0); }
.contact-page [data-contact-reveal="right"] { transform: translate3d(50px, 0, 0); }
.contact-page [data-contact-reveal="zoom"] { --rs: 0.9; --ry: 0px; }
.contact-page [data-contact-reveal].is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

/* Letter-wipe on hero title */
.contact-hero-title-ch {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 60%, 0) rotate(6deg);
  filter: blur(6px);
  transition:
    opacity 620ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 620ms ease;
  transition-delay: calc(var(--ci, 0) * 55ms);
}
.contact-hero-title.is-in .contact-hero-title-ch {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0);
  filter: blur(0);
}

/* Parallax video */
.contact-hero-stage video {
  transform: translate3d(0, calc(var(--parallax, 0) * -30px), 0) scale(1.04);
  transition: transform 120ms linear;
  will-change: transform;
}

/* Subtle hover lift on info items */
.contact-page .contact-hero-item {
  transition: transform 300ms ease, background 300ms ease;
}
.contact-page .contact-hero-item:hover {
  transform: translateY(-3px);
}

/* Form field focus glow */
.contact-page .contact-form-field input,
.contact-page .contact-form-field textarea,
.contact-page .contact-form-field select {
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}
.contact-page .contact-form-field input:focus,
.contact-page .contact-form-field textarea:focus,
.contact-page .contact-form-field select:focus {
  transform: translateY(-1px);
}

/* Submit button — subtle pulse on hover */
.contact-page .contact-form-submit {
  transition: transform 240ms ease, background 240ms ease, box-shadow 240ms ease;
}
.contact-page .contact-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -12px rgba(20, 35, 59, 0.5);
}

@media (prefers-reduced-motion: reduce) {
  .contact-page [data-contact-reveal],
  .contact-hero-title-ch {
    opacity: 1; transform: none; filter: none; transition: none;
  }
  .contact-hero-stage video { transform: none; }
}

/* ===================================================
   Inicio (home) — entrance animations + parallax
   =================================================== */
.home-awwwards [data-home-reveal] {
  opacity: 0;
  transform: translate3d(var(--rx, 0), var(--ry, 30px), 0) scale(var(--rs, 1));
  filter: blur(4px);
  transition:
    opacity 780ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 780ms ease;
  transition-delay: calc(var(--reveal-i, 0) * 80ms);
  will-change: transform, opacity, filter;
}
.home-awwwards [data-home-reveal="rise"] { --ry: 34px; }
.home-awwwards [data-home-reveal="left"] { --rx: -50px; --ry: 0px; }
.home-awwwards [data-home-reveal="right"] { --rx: 50px; --ry: 0px; }
.home-awwwards [data-home-reveal="zoom"] { --ry: 0px; --rs: 0.92; }
.home-awwwards [data-home-reveal].is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

/* Parallax on hero video (background element inside .visor-video-panel) */
.home-awwwards .visor-video-panel video {
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.05);
  transition: transform 120ms linear;
  will-change: transform;
}

/* Parallax on final CTA image */
.home-awwwards .aw-final-media-card img {
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.08);
  transition: transform 120ms linear;
  will-change: transform;
}

/* Big projects video subtle scale on scroll */
.home-awwwards .aw-video-projects video {
  transform: scale(var(--scroll-scale, 1));
  transition: transform 200ms ease;
  will-change: transform;
}

/* Manifesto title h2 words — split-word wipe */
.home-awwwards .aw-manifesto-title h2 {
  overflow: visible;
}

/* Small hover motion on mini cards */
.home-awwwards .visor-mini-card {
  transition: transform 320ms cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 320ms ease;
}
.home-awwwards .visor-mini-card:hover {
  transform: translateY(-4px);
}

/* Marquee benefits keep animating (already CSS-driven) — add hover slowdown */
.home-awwwards .aw-csr-marquee { will-change: transform; }

/* CSR benefits — subtle hover lift */
.home-awwwards .aw-csr-benefits > * {
  transition: transform 320ms ease;
}
.home-awwwards .aw-csr-benefits > *:hover {
  transform: translateY(-3px);
}

/* Final card lift on hover */
.home-awwwards .aw-final-card,
.home-awwwards .aw-final-card-small {
  transition: transform 340ms cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 340ms ease;
}
.home-awwwards .aw-final-card:hover,
.home-awwwards .aw-final-card-small:hover {
  transform: translateY(-4px);
}

/* Social icons in hero — playful hover */
.home-awwwards .visor-social a {
  transition: transform 280ms cubic-bezier(0.34, 1.5, 0.6, 1), background 220ms ease, color 220ms ease;
}
.home-awwwards .visor-social a:hover {
  transform: scale(1.15) rotate(-4deg);
}

/* Video panel border-radius reveal grow */
.home-awwwards .visor-video-panel {
  transition: transform 900ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Projects h2 spans — subtle stagger already via reveal-i */
.home-awwwards .aw-video-copy h2 span {
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .home-awwwards [data-home-reveal] {
    opacity: 1; transform: none; filter: none; transition: none;
  }
  .home-awwwards .visor-video-panel video,
  .home-awwwards .aw-final-media-card img,
  .home-awwwards .aw-video-projects video {
    transform: none;
  }
}

/* ===================================================
   Footer — entrance animations (repeat on re-enter)
   =================================================== */
.footer [data-footer-reveal] {
  opacity: 0;
  transform: translate3d(var(--fx, 0), var(--fy, 30px), 0) scale(var(--fs, 1));
  filter: blur(4px);
  transition:
    opacity 900ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 1000ms cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 900ms ease;
  transition-delay: calc(var(--footer-i, 0) * 90ms);
  will-change: transform, opacity, filter;
}
.footer [data-footer-reveal="rise"] { --fy: 34px; }
.footer [data-footer-reveal="left"] { --fx: -40px; --fy: 0px; }
.footer [data-footer-reveal="zoom"] { --fy: 0px; --fs: 1.06; }
.footer [data-footer-reveal].is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

/* Video keeps subtle inner scale when in-view */
.footer .footer-video[data-footer-reveal="zoom"].is-in {
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .footer [data-footer-reveal] {
    opacity: 1; transform: none; filter: none; transition: none;
  }
}

/* ===================================================
   Catálogo v3 — clean minimal grid on #fafafa
   =================================================== */
.cat3-main {
  --bg: #fafafa;
  --card: #ffffff;
  --ink: #14233b;
  --muted: #6b7480;
  --line: rgba(20, 35, 59, 0.10);
  --accent: #20395F;
  background: var(--bg);
  color: var(--ink);
  font-family: Sora, ui-sans-serif, system-ui, sans-serif;
  padding: 0;
}
.cat3-main * { max-width: none; }

/* Shared bits */
.cat3-eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.cat3-title {
  margin: 0;
  font-family: Sora, sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
}

/* Shell */
.cat3-intro,
.cat3-cats,
.cat3-featured,
.cat3-info,
.cat3-cta {
  padding-left: clamp(20px, 5vw, 80px);
  padding-right: clamp(20px, 5vw, 80px);
}

/* ---- Intro ---- */
.cat3-intro {
  padding-top: clamp(60px, 8vw, 110px);
  padding-bottom: clamp(30px, 4vw, 60px);
  border-bottom: 1px solid var(--line);
}
.cat3-intro-row {
  display: grid;
  grid-template-columns: 1.3fr minmax(0, 1fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
}
.cat3-lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 480px;
}

/* ---- Keyword search ---- */
.cat3-search-wrap {
  position: relative;
  width: min(100%, 720px);
  margin: clamp(28px, 3.4vw, 44px) auto 0;
}

.cat3-search {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 6px 6px 20px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(7, 23, 44, 0.06);
  transition: box-shadow 240ms ease, border-color 240ms ease;
}

.cat3-search:focus-within {
  border-color: rgba(7, 23, 44, 0.42);
  box-shadow: 0 12px 32px rgba(7, 23, 44, 0.1);
}

.cat3-search-input {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
  color: var(--ink);
}

.cat3-search-input svg {
  width: 20px;
  height: 20px;
  color: rgba(7, 23, 44, 0.5);
  flex-shrink: 0;
}

.cat3-search-input input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  padding: 12px 0;
}

.cat3-search-input input::placeholder {
  color: rgba(7, 23, 44, 0.4);
}

.cat3-search-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 22px;
  border: none;
  border-radius: 999px;
  background: var(--primary, #20395f);
  color: #ffffff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: transform 220ms ease, background 220ms ease;
  flex-shrink: 0;
}

.cat3-search-btn:hover {
  background: #0e2244;
  transform: translateY(-1px);
}

.cat3-search-status {
  margin: 8px 22px 0;
  font-size: 12px;
  color: rgba(7, 23, 44, 0.55);
  min-height: 14px;
  text-align: center;
}

/* --- Results dropdown --- */
.cat3-search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 20;
  max-height: 460px;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 22px 48px rgba(7, 23, 44, 0.14);
}

.cat3-search-results[hidden] {
  display: none;
}

.cat3-search-results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px 10px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(7, 23, 44, 0.55);
}

.cat3-search-results-head em {
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(7, 23, 44, 0.5);
}

.cat3-search-results ul {
  list-style: none;
  margin: 0;
  padding: 6px 0;
}

.cat3-search-results li + li {
  border-top: 1px solid rgba(7, 23, 44, 0.06);
}

.cat3-search-results a {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 10px 22px;
  text-decoration: none;
  color: var(--ink);
  transition: background 180ms ease;
}

.cat3-search-results a:hover {
  background: rgba(7, 23, 44, 0.04);
}

.cat3-search-results img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 10px;
  background: rgba(7, 23, 44, 0.05);
}

.cat3-search-results a > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cat3-search-results a strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cat3-search-results a span {
  font-size: 12px;
  color: rgba(7, 23, 44, 0.55);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cat3-search-results a em {
  font-style: normal;
  font-size: 15px;
  color: rgba(7, 23, 44, 0.4);
  padding-right: 4px;
}

.cat3-search-empty {
  padding: 22px;
  text-align: center;
  font-size: 13.5px;
  color: rgba(7, 23, 44, 0.6);
}

/* Filter states on category cards */
.cat3-cat.is-hidden {
  display: none;
}

.cat3-cats-grid.is-empty::after {
  content: "Sin categorías coinciden. Los productos que buscas quizá aparecen en la lista de arriba.";
  grid-column: 1 / -1;
  padding: 30px 20px;
  text-align: center;
  font-size: 13px;
  color: rgba(7, 23, 44, 0.55);
  border: 1px dashed var(--line);
  border-radius: 18px;
}

@media (max-width: 640px) {
  .cat3-search {
    padding: 6px 6px 6px 14px;
    gap: 6px;
    border-radius: 22px;
  }
  .cat3-search-btn {
    padding: 12px 18px;
    font-size: 12px;
  }
  .cat3-search-btn span { display: none; }
  .cat3-search-results {
    max-height: 60vh;
  }
}

/* ---- Categories ---- */
.cat3-cats {
  padding-top: clamp(30px, 5vw, 60px);
  padding-bottom: clamp(60px, 8vw, 100px);
}
.cat3-cats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.cat3-cat {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: transform 260ms cubic-bezier(0.22, 0.61, 0.36, 1),
              box-shadow 260ms ease,
              border-color 260ms ease;
}
.cat3-cat:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(20, 35, 59, 0.18);
  border-color: rgba(20, 35, 59, 0.24);
}
.cat3-cat-media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #eef1f4;
}
.cat3-cat-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.cat3-cat:hover .cat3-cat-media img { transform: scale(1.05); }
.cat3-cat-info {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  justify-content: space-between;
}
.cat3-cat-info h3 {
  margin: 0;
  font-family: Sora, sans-serif;
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.cat3-cat-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cat3-cat-meta span {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.cat3-cat-meta em {
  font-style: normal;
  font-size: 14px;
  color: var(--ink);
  transition: transform 240ms ease;
}
.cat3-cat:hover .cat3-cat-meta em {
  transform: translateX(4px);
}

/* ---- Featured ---- */
.cat3-featured {
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(60px, 8vw, 100px);
  border-top: 1px solid var(--line);
}
.cat3-featured-head {
  display: grid;
  grid-template-columns: 1.3fr minmax(0, 1fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(30px, 4vw, 50px);
}
.cat3-featured-note {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 400px;
}
.cat3-featured-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.cat3-product {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 260ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.cat3-product:hover { transform: translateY(-3px); }
.cat3-product-media {
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  background: #eef1f4;
  border: 1px solid var(--line);
}
.cat3-product-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.cat3-product:hover .cat3-product-media img { transform: scale(1.05); }
.cat3-product-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 4px;
}
.cat3-product-cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.cat3-product-info h3 {
  margin: 0;
  font-family: Sora, sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--ink);
}

/* ---- Info blocks ---- */
.cat3-info {
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(40px, 6vw, 80px);
  border-top: 1px solid var(--line);
}
.cat3-info-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 60px);
}
.cat3-info-block p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 340px;
}

/* ---- Final CTA ---- */
.cat3-cta {
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(80px, 10vw, 130px);
  border-top: 1px solid var(--line);
}
.cat3-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 60px);
  flex-wrap: wrap;
}
.cat3-cta h2 {
  margin: 0 0 10px;
  font-family: Sora, sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.cat3-cta p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 480px;
}
.cat3-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  font-family: Sora, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 220ms ease, transform 220ms ease;
  flex-shrink: 0;
}
.cat3-cta-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* ---- Responsive ---- */
@media (max-width: 1080px) {
  .cat3-intro-row,
  .cat3-featured-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .cat3-cats-grid,
  .cat3-featured-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .cat3-info-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 720px) {
  .cat3-cats-grid,
  .cat3-featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}
@media (max-width: 440px) {
  .cat3-cats-grid,
  .cat3-featured-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Reveal ---- */
.cat3-main [data-cat3-reveal] {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 620ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: calc(var(--reveal-i, 0) * 50ms);
}
.cat3-main [data-cat3-reveal].is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
@media (prefers-reduced-motion: reduce) {
  .cat3-main [data-cat3-reveal] { opacity: 1; transform: none; transition: none; }
  .cat3-cat:hover, .cat3-product:hover { transform: none; }
}

/* ===================================================
   Catálogo subpáginas v2 — editorial minimalist
   =================================================== */

/* Global background on catalog subpages */
body:has(.category-layout),
body:has(.product-detail) {
  background: #fafafa;
  color: #14233b;
  font-family: Sora, ui-sans-serif, system-ui, sans-serif;
}

/* Kill legacy backgrounds */
body:has(.category-layout) .page-hero,
body:has(.product-detail) .page-hero,
body:has(.category-layout) main,
body:has(.product-detail) main,
body:has(.category-layout) main .section,
body:has(.product-detail) main .section {
  background: #fafafa !important;
}

/* ═══════════════════════════════════════════════════
   Shared page hero (editorial)
   ═══════════════════════════════════════════════════ */
body:has(.category-layout) .page-hero,
body:has(.product-detail) .page-hero {
  padding: clamp(100px, 12vw, 160px) 0 clamp(20px, 3vw, 40px);
  border: 0;
}
body:has(.category-layout) .page-hero .shell,
body:has(.product-detail) .page-hero .shell {
  padding: 0 clamp(20px, 5vw, 60px);
  max-width: 1440px;
  margin: 0 auto;
}
body:has(.category-layout) .breadcrumb,
body:has(.product-detail) .breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: Sora, sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #6b7480;
  margin-bottom: 32px;
  text-transform: uppercase;
}
body:has(.category-layout) .breadcrumb a,
body:has(.product-detail) .breadcrumb a {
  color: #6b7480;
  text-decoration: none;
  transition: color 220ms ease;
}
body:has(.category-layout) .breadcrumb a:hover,
body:has(.product-detail) .breadcrumb a:hover {
  color: #14233b;
}
body:has(.category-layout) .breadcrumb span,
body:has(.product-detail) .breadcrumb span {
  margin: 0 4px;
  opacity: 0.4;
}
body:has(.category-layout) .page-hero .eyebrow,
body:has(.product-detail) .page-hero .eyebrow {
  display: none;
}
body:has(.category-layout) .page-hero h1,
body:has(.product-detail) .page-hero h1 {
  margin: 0 0 clamp(16px, 2vw, 24px);
  font-family: Sora, sans-serif;
  font-weight: 700;
  font-size: clamp(38px, 5.6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: #14233b;
  max-width: none;
}
body:has(.category-layout) .page-hero p,
body:has(.product-detail) .page-hero p {
  margin: 0;
  font-family: Sora, sans-serif;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.6;
  color: #6b7480;
  max-width: 720px;
}

/* Sections padding & shell */
body:has(.category-layout) main .section,
body:has(.product-detail) main .section {
  padding: clamp(40px, 5vw, 70px) 0;
}
body:has(.category-layout) main .section .shell,
body:has(.product-detail) main .section .shell {
  padding: 0 clamp(20px, 5vw, 60px);
  max-width: 1440px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════
   CATEGORY PAGES — filter chips + full-width grid
   ═══════════════════════════════════════════════════ */

.category-layout {
  display: block;
}

/* Sidebar → transform into horizontal filter bar */
.category-aside {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 20px 0 32px;
  margin-bottom: clamp(28px, 4vw, 50px);
  border-bottom: 1px solid rgba(20, 35, 59, 0.10);
  background: transparent;
  border-radius: 0;
  position: static;
}
.category-aside .search-box {
  flex-shrink: 0;
  width: 240px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(20, 35, 59, 0.14);
  background: #ffffff;
  font-family: Sora, sans-serif;
  font-size: 13px;
  color: #14233b;
  outline: none;
  margin: 0;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.category-aside .search-box:focus {
  border-color: #14233b;
  box-shadow: 0 0 0 3px rgba(20, 35, 59, 0.08);
}
.category-aside a {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(20, 35, 59, 0.14);
  color: #6b7480;
  font-family: Sora, sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: all 200ms ease;
}
.category-aside a:hover {
  border-color: #14233b;
  color: #14233b;
  background: transparent;
}
.category-aside a.is-active {
  background: #14233b;
  color: #ffffff;
  border-color: #14233b;
  font-weight: 600;
}
.category-aside .catalog-note {
  display: none; /* moved to bottom of page implicitly via CTA */
}

/* Section head (row above product grid) */
body:has(.category-layout) .section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(24px, 3vw, 36px);
  padding-bottom: 0;
  border-bottom: 0;
}
body:has(.category-layout) .section-head h2 {
  margin: 0;
  font-family: Sora, sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #14233b;
  max-width: none;
}
body:has(.category-layout) .section-head .eyebrow {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(20, 35, 59, 0.12);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7480;
  margin-bottom: 10px;
}

/* Product grid — minimal 4-col with strong images */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px 6px;
}
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 20px;
  background: #ffffff;
  padding: 0;
  border: 0;
  text-decoration: none;
  color: #14233b;
  transition: transform 340ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: none;
  border-color: transparent;
}
.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #eef1f4;
  border-radius: 20px;
  transition: transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.product-card:hover img { transform: scale(1.03); }
.product-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 8px 6px;
}
.product-card-body .meta {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7480;
}
.product-card h3 {
  margin: 0;
  font-family: Sora, sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #14233b;
}
.product-card p {
  display: none;
}
.product-card .arrow-link {
  margin-top: 4px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7480;
  transition: color 240ms ease, transform 240ms ease;
}
.product-card:hover .arrow-link {
  color: #14233b;
  transform: translateX(3px);
}

/* ═══════════════════════════════════════════════════
   PRODUCT PAGES — sticky image + editorial info
   ═══════════════════════════════════════════════════ */

/* Hide the top hero on product pages — info lives in .product-detail */
body:has(.product-detail) .page-hero {
  padding-top: clamp(90px, 10vw, 130px);
  padding-bottom: 0;
}
body:has(.product-detail) .page-hero h1,
body:has(.product-detail) .page-hero p,
body:has(.product-detail) .page-hero .eyebrow {
  display: none;
}
/* Keep breadcrumb visible */

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
  padding-top: clamp(20px, 3vw, 40px);
}

.product-media,
.product-media.media-card {
  position: sticky;
  top: 100px;
  border-radius: 28px;
  overflow: hidden;
  background: #eef1f4;
  border: 0;
  padding: 0;
  aspect-ratio: 1;
}
.product-media .media-card-inner {
  width: 100%;
  height: 100%;
  border-radius: 0;
  padding: 0;
  background: transparent;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.product-panel {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding-top: 8px;
}
.product-panel .chip {
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(20, 35, 59, 0.16);
  color: #6b7480;
  font-family: Sora, sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.product-panel h1 {
  margin: 0;
  font-family: Sora, sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.032em;
  color: #14233b;
  max-width: none;
}
.product-panel > p {
  margin: 0;
  font-family: Sora, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #4a5568;
  max-width: 600px;
}
.product-panel h3 {
  margin: 20px 0 -8px;
  font-family: Sora, sans-serif;
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7480;
}

.spec-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(20, 35, 59, 0.10);
}
.spec-item {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(20, 35, 59, 0.10);
}
.spec-item strong {
  font-family: Sora, sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.01em;
  color: #14233b;
}
.spec-item span {
  font-family: Sora, sans-serif;
  font-size: 13.5px;
  line-height: 1.55;
  color: #6b7480;
}

/* Actions */
.product-panel .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}
.product-panel .actions .button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  border-radius: 999px;
  background: #14233b;
  color: #ffffff;
  font-family: Sora, sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #14233b;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}
.product-panel .actions .button:hover {
  background: #20395F;
  border-color: #20395F;
  transform: translateY(-2px);
}
.product-panel .actions .button.secondary {
  background: transparent;
  color: #14233b;
  border-color: rgba(20, 35, 59, 0.28);
}
.product-panel .actions .button.secondary:hover {
  background: #14233b;
  color: #ffffff;
  border-color: #14233b;
}
.product-panel .actions .button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.20);
  font-size: 11px;
}
.product-panel .actions .button.secondary .button-icon {
  background: rgba(20, 35, 59, 0.10);
}

/* Mobile CTA */
.product-mobile-cta { display: none; }

/* ═══════════════════════════════════════════════════
   Related products — clean 4-col grid
   ═══════════════════════════════════════════════════ */
body:has(.product-detail) main section:nth-of-type(2) {
  border-top: 1px solid rgba(20, 35, 59, 0.08);
  padding: clamp(60px, 8vw, 100px) 0;
}
body:has(.product-detail) main section:nth-of-type(2) .section-head {
  margin-bottom: clamp(24px, 3vw, 40px);
  padding-bottom: 0;
  border: 0;
}
body:has(.product-detail) main section:nth-of-type(2) .section-head h2 {
  margin: 6px 0 0;
  font-family: Sora, sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -0.02em;
  color: #14233b;
  max-width: none;
}
body:has(.product-detail) main section:nth-of-type(2) .section-head .eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7480;
  padding: 0;
  background: transparent;
  border: 0;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

/* ═══════════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════════ */
@media (max-width: 1080px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-detail {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .product-media,
  .product-media.media-card {
    position: static;
    aspect-ratio: 4/3;
  }
  .spec-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
@media (max-width: 720px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-aside { padding: 12px 0 20px; }
  .category-aside .search-box { width: 100%; }
  .product-mobile-cta {
    display: block;
    padding: 20px clamp(20px, 5vw, 40px) 0;
  }
  .product-mobile-cta .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px;
    background: #14233b;
    color: #fff;
    border-radius: 999px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.06em;
    font-size: 12.5px;
    text-decoration: none;
  }
}
@media (max-width: 460px) {
  .product-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   Catalog subpages — fixes v3
   ═══════════════════════════════════════════════════ */

/* 1. Image must fill the entire card (no padding/inner margin) */
body:has(.product-detail) .product-media,
body:has(.product-detail) .product-media.media-card {
  padding: 0 !important;
  background: #ffffff;
  border: 1px solid rgba(20, 35, 59, 0.10);
}
body:has(.product-detail) .product-media .media-card-inner {
  width: 100%;
  height: 100%;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: inherit;
  overflow: hidden;
  background: transparent;
  display: block;
}
body:has(.product-detail) .product-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  margin: 0;
  padding: 0;
}

/* 2. Prevent text overflow — h1, h2, h3 should break/wrap properly */
body:has(.product-detail) .product-panel h1,
body:has(.category-layout) .page-hero h1,
body:has(.product-detail) .page-hero h1 {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
  max-width: 100%;
}
body:has(.category-layout) .product-card h3,
body:has(.product-detail) .product-card h3,
body:has(.product-detail) .related-grid .product-card h3 {
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Ensure product panel doesn't overflow its column */
body:has(.product-detail) .product-panel {
  min-width: 0;
  max-width: 100%;
}
body:has(.product-detail) .product-panel > * {
  max-width: 100%;
  overflow-wrap: break-word;
}

/* Ensure category and page-hero shell containers respect width */
body:has(.category-layout) .page-hero,
body:has(.product-detail) .page-hero {
  overflow: hidden;
}
body:has(.category-layout) .page-hero h1,
body:has(.product-detail) .page-hero h1 {
  font-size: clamp(32px, 4.6vw, 62px);
}

/* 3. "Volver" button — floats near breadcrumb */
.subpage-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(20, 35, 59, 0.16);
  background: #ffffff;
  color: #14233b;
  font-family: Sora, sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 24px;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease, border-color 200ms ease;
}
.subpage-back:hover {
  background: #14233b;
  color: #ffffff;
  border-color: #14233b;
  transform: translateX(-3px);
}
.subpage-back svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ═══════════════════════════════════════════════════
   Catalog subpages — fixes v4
   ═══════════════════════════════════════════════════ */

/* 1. Volver button on its own row */
.subpage-back {
  display: flex !important;
  width: fit-content;
  margin-bottom: 20px !important;
}

/* Breadcrumb spacing so it doesn't stick to button */
body:has(.category-layout) .breadcrumb,
body:has(.product-detail) .breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px 4px;
  margin-top: 0;
}

/* 2. Product image FILLS the entire card — kill inner padding/border-radius mismatch */
body:has(.product-detail) .product-media,
body:has(.product-detail) .product-media.media-card {
  padding: 0 !important;
  border: 0 !important;
  background: #eef1f4 !important;
  box-shadow: none !important;
  border-radius: 28px !important;
  overflow: hidden !important;
  aspect-ratio: 1;
}
body:has(.product-detail) .product-media .media-card-inner {
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: hidden !important;
  display: block !important;
}
body:has(.product-detail) .product-media img,
body:has(.product-detail) .product-media .media-card-inner img,
body:has(.product-detail) .product-media.media-card img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  object-fit: cover !important;
  border-radius: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ═══════════════════════════════════════════════════
   Catalog subpages — fixes v5 (direct override + search icon)
   ═══════════════════════════════════════════════════ */

/* 1. Search input with magnifier icon on the right */
.category-aside .search-box {
  background-color: #ffffff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7480' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='7'/><path d='M20 20l-3.5-3.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px 16px;
  padding-right: 40px !important;
}

/* 2. FORCE zero border/padding/shadow on product media — override the base .media-card rule at all costs */
.product-detail .product-media,
.product-detail .product-media.media-card,
.product-detail div.product-media,
.product-detail div.product-media.media-card {
  border: 0 !important;
  padding: 0 !important;
  background: #eef1f4 !important;
  box-shadow: none !important;
  border-radius: 28px !important;
  overflow: hidden !important;
  aspect-ratio: 1 !important;
  position: sticky;
  top: 100px;
}
.product-detail .product-media > .media-card-inner,
.product-detail .product-media .media-card-inner {
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
}
.product-detail .product-media img,
.product-detail .product-media .media-card-inner img,
.product-detail .product-media.media-card img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: none !important;
  min-height: 0 !important;
  object-fit: cover !important;
  border: 0 !important;
  border-radius: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* ═══════════════════════════════════════════════════
   v6 — kill legacy padding on product-card img
   ═══════════════════════════════════════════════════ */
body:has(.category-layout) .product-card img,
body:has(.product-detail) .related-grid .product-card img,
.category-layout .product-card img,
.related-grid .product-card img {
  padding: 0 !important;
  margin: 0 !important;
  background: #eef1f4 !important;
  object-fit: cover !important;
  border-radius: 20px !important;
  border: 0 !important;
  box-shadow: none !important;
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 !important;
}

/* Kill card border too so image goes edge-to-edge visually */
body:has(.category-layout) .product-card,
body:has(.product-detail) .related-grid .product-card,
.category-layout .product-card,
.related-grid .product-card {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* ═══════════════════════════════════════════════════
   Product detail v7 — image + name on top, everything else below
   ═══════════════════════════════════════════════════ */
.product-detail {
  display: flex !important;
  flex-direction: column !important;
  gap: clamp(40px, 5vw, 70px) !important;
  padding-top: clamp(20px, 3vw, 40px);
}

.pd-top {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}

/* Image stays in its container (already sized right) */
.pd-top .product-media {
  position: static !important;
}

/* Title column (chip + h1) — centered vertically to image, no card */
.pd-title {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-self: center;
  min-width: 0;
}
.pd-title .chip {
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(20, 35, 59, 0.16);
  color: #6b7480;
  font-family: Sora, sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.pd-title h1 {
  margin: 0;
  font-family: Sora, sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: #14233b;
  max-width: none;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Bottom row — everything horizontal, full width from image to name right edge */
.pd-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: clamp(24px, 3vw, 40px);
  border-top: 1px solid rgba(20, 35, 59, 0.10);
}
.pd-bottom > p {
  margin: 0;
  font-family: Sora, sans-serif;
  font-size: 15.5px;
  line-height: 1.7;
  color: #4a5568;
  max-width: 900px;
}
.pd-bottom h3 {
  margin: 18px 0 -4px;
  font-family: Sora, sans-serif;
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7480;
}
.pd-bottom .spec-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(20, 35, 59, 0.10);
  border-bottom: 1px solid rgba(20, 35, 59, 0.10);
}
.pd-bottom .spec-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 24px 22px 0;
  border-right: 1px solid rgba(20, 35, 59, 0.10);
  border-bottom: 0;
}
.pd-bottom .spec-item:nth-child(3n),
.pd-bottom .spec-item:last-child {
  border-right: 0;
  padding-right: 0;
}
.pd-bottom .spec-item strong {
  font-family: Sora, sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7480;
}
.pd-bottom .spec-item span {
  font-family: Sora, sans-serif;
  font-size: 14.5px;
  line-height: 1.5;
  color: #14233b;
}
.pd-bottom .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.pd-bottom .actions .button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  border-radius: 999px;
  background: #14233b;
  color: #ffffff;
  font-family: Sora, sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #14233b;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}
.pd-bottom .actions .button:hover {
  background: #20395F;
  border-color: #20395F;
  transform: translateY(-2px);
}
.pd-bottom .actions .button.secondary {
  background: transparent;
  color: #14233b;
  border-color: rgba(20, 35, 59, 0.28);
}
.pd-bottom .actions .button.secondary:hover {
  background: #14233b;
  color: #ffffff;
  border-color: #14233b;
}
.pd-bottom .actions .button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.20);
  font-size: 11px;
}
.pd-bottom .actions .button.secondary .button-icon {
  background: rgba(20, 35, 59, 0.10);
}

/* Responsive */
@media (max-width: 1080px) {
  .pd-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .pd-title {
    align-self: start;
  }
  .pd-bottom .spec-list {
    grid-template-columns: 1fr;
  }
  .pd-bottom .spec-item {
    border-right: 0;
    padding-right: 0;
    border-bottom: 1px solid rgba(20, 35, 59, 0.10);
  }
  .pd-bottom .spec-item:last-child {
    border-bottom: 0;
  }
}
