:root {
  --navy-950: #041225;
  --navy-900: #071a34;
  --navy-800: #0a2a50;
  --blue-700: #0d4fa3;
  --blue-600: #1268d3;
  --blue-400: #65a9f3;
  --blue-200: #bddbfb;
  --blue-100: #e5f1ff;
  --ivory: #f5f4ef;
  --white: #fff;
  --ink: #0b1b2e;
  --muted: #5c6876;
  --line-dark: rgba(229, 241, 255, 0.2);
  --line-light: rgba(7, 26, 52, 0.17);
  --sans: "DM Sans", Arial, sans-serif;
  --display: "Manrope", Arial, sans-serif;
  --serif: "Playfair Display", Georgia, serif;
  --pad: clamp(1.25rem, 4.6vw, 4.8rem);
  --section-space: clamp(5rem, 10vw, 10rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  font-size: clamp(18px, 1.15vw, 21px);
}

html.ready {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow: hidden;        /* no scrolling on coming-soon page */
  height: 100vh;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--navy-950);
  background: var(--white);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.grain {
  position: fixed;
  z-index: 90;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  right: var(--pad);
  left: var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 126px;
  color: var(--blue-100);
  border-bottom: 1px solid var(--line-dark);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  width: fit-content;
}

.brand-mark {
  display: block;
  width: 68px;
  height: 68px;
  color: var(--white);
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 1.9rem;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.brand-copy small {
  color: rgba(229, 241, 255, 0.6);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.6vw, 2.8rem);
  color: rgba(229, 241, 255, 0.72);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.site-nav a,
.header-cta {
  transition: color 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  color: var(--white);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  gap: 0.8rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.84rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.header-cta span,
.text-link span,
.footer-links span,
.card-link b {
  transition: transform 0.25s ease;
}

.header-cta:hover span,
.text-link:hover span,
.footer-links a:hover span,
.card-link:hover b,
.work-card:hover > .card-link b {
  transform: translate(3px, -3px);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: clamp(10.5rem, 20vh, 14rem) var(--pad) 2.1rem;
  overflow: hidden;
  color: var(--blue-100);
  background: var(--navy-950);
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  align-items: center;
}

.hero-art {
  position: absolute;
  z-index: 0;
  inset: 0 0 0 auto;
  width: min(76%, 1220px);
  overflow: hidden;
}

.hero-art::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--navy-950) 0%, rgba(4, 18, 37, 0.92) 24%, rgba(4, 18, 37, 0.28) 67%, rgba(4, 18, 37, 0.08) 100%),
    linear-gradient(0deg, rgba(4, 18, 37, 0.55), transparent 45%);
  content: "";
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-motion {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  overflow: visible;
  pointer-events: none;
  transform: translate(12px, -42px);
}

.hero-motion.is-playing {
  animation: motionSequence 6.2s ease-out forwards;
}

.globe-outline,
.globe-line {
  fill: none;
  stroke: rgba(202, 229, 255, 0.78);
  stroke-width: 1.6;
}

.globe-orbit-line {
  stroke: rgba(91, 174, 255, 0.94);
  stroke-width: 2.2;
}

.hero-motion.is-playing .motion-globe {
  transform-origin: 1225px 550px;
  animation: globeIntroSpin 5.2s cubic-bezier(0.2, 0.72, 0.25, 1) forwards;
}

.hero-motion.is-playing .globe-meridian-one {
  transform-origin: 1225px 550px;
  animation: globeCounterSpin 4.8s ease-in-out forwards;
}

.hero-motion.is-playing .globe-meridian-two {
  transform-origin: 1225px 550px;
  animation: globeCounterSpinTwo 4.8s ease-in-out forwards;
}

.route-base,
.route {
  fill: none;
  stroke-linecap: round;
}

.route-base {
  stroke: rgba(89, 170, 255, 0.2);
  stroke-width: 2;
}

.route {
  opacity: 0;
  stroke: rgba(215, 238, 255, 0.94);
  stroke-width: 4;
  stroke-dasharray: 0.07 0.045;
  stroke-dashoffset: 1;
}

.hero-motion.is-playing .route {
  animation: routeFlow 4.4s linear forwards;
}

.hero-motion.is-playing .route-two {
  animation-delay: 0.18s;
}

.hero-motion.is-playing .route-three {
  animation-delay: 0.36s;
}

@keyframes motionSequence {
  0%,
  5% {
    opacity: 0;
  }
  14%,
  76% {
    opacity: 0.88;
  }
  100% {
    opacity: 0;
  }
}

@keyframes globeIntroSpin {
  0% {
    transform: rotate(-42deg) scale(0.82);
  }
  65% {
    transform: rotate(295deg) scale(1.04);
  }
  100% {
    transform: rotate(318deg) scale(1);
  }
}

@keyframes globeCounterSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-310deg);
  }
}

@keyframes globeCounterSpinTwo {
  from {
    transform: rotate(58deg);
  }
  to {
    transform: rotate(-252deg);
  }
}

@keyframes routeFlow {
  0% {
    opacity: 0;
    stroke-dashoffset: 1;
  }
  12% {
    opacity: 1;
  }
  88% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    stroke-dashoffset: -0.25;
  }
}

.hero-orbit {
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(189, 219, 251, 0.12);
  border-radius: 50%;
}

.orbit-one {
  top: -52vw;
  right: 8vw;
  width: 105vw;
  height: 105vw;
}

.orbit-two {
  right: -18vw;
  bottom: -49vw;
  width: 78vw;
  height: 78vw;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: min(1000px, 72vw);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 clamp(1.8rem, 4vh, 3.25rem);
  color: rgba(229, 241, 255, 0.67);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.eyebrow .eyebrow-dot {
  position: relative;
  width: 6px;
  height: 6px;
  background: var(--blue-200);
  border-radius: 50%;
  flex: 0 0 auto;
}

.eyebrow .eyebrow-dot::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(189, 219, 251, 0.38);
  border-radius: 50%;
  content: "";
  animation: pulse 2.5s ease-out infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.8;
    transform: scale(0.65);
  }
  75%,
  100% {
    opacity: 0;
    transform: scale(1.4);
  }
}

.hero h1 {
  max-width: 920px;
  /* 3 lines × line-height 1.12 — enough for the longer Spanish headline */
  min-height: 3.36em;
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(2rem, 3.8vw, 4rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.hero h1 em {
  /* Inline so italic word flows on the same line as the text before it */
  display: inline;
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.03em;
}

.hero-intro {
  max-width: 690px;
  /* 3 lines × line-height 1.65 — fits Spanish without letting it push Stay Tuned down */
  min-height: 4.95em;
  margin: clamp(2.2rem, 5vh, 3.5rem) 0 0;
  /* Extra blank line after the paragraph in all views */
  padding-bottom: 1.65em;
  color: rgba(229, 241, 255, 0.78);
  font-size: clamp(1.14rem, 1.55vw, 1.42rem);
  line-height: 1.65;
}

/* Mobile-only line breaks — hidden on desktop */
.mob-br { display: none; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.25rem);
  margin-top: 2.5rem;
}

/* ── Portrait — repositioned to upper-right, circular ── */
.hero-portrait {
  position: absolute;
  z-index: 3;
  top: clamp(7.5rem, 16vh, 11rem);
  right: clamp(2.5rem, 6vw, 7rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  width: clamp(150px, 14vw, 220px);
}

/* Canvas sits exactly over the circle */
.portrait-burst-canvas {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(150px, 14vw, 220px);
  height: clamp(150px, 14vw, 220px);
  pointer-events: none;
  z-index: 2;
}

/* Circular photo */
.portrait-circle-wrap {
  position: relative;
  width: clamp(150px, 14vw, 220px);
  height: clamp(150px, 14vw, 220px);
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(229, 241, 255, 0.45);
  box-shadow: 0 0 0 4px rgba(101, 169, 243, 0.18), 0 18px 50px rgba(1, 8, 18, 0.5);
  opacity: 0;
  transition: opacity 1.1s ease;
}

.portrait-circle-wrap.is-visible {
  opacity: 1;
}

.portrait-circle-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  filter: brightness(0.88) contrast(1.18) saturate(1.05);
}

/* Caption below the circle */
.portrait-below-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  text-align: center;
  color: var(--white);
  opacity: 0;
  transition: opacity 1.1s ease 0.5s;
}

.portrait-below-caption.is-visible {
  opacity: 1;
}

.portrait-below-caption strong {
  font-family: var(--display);
  font-size: clamp(0.8rem, 1vw, 1rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.portrait-below-caption span {
  color: rgba(229, 241, 255, 0.6);
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 220px;
  padding: 1.05rem 1.2rem;
  font-size: 0.84rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.button-solid {
  color: var(--navy-950);
  background: var(--blue-100);
}

.button-solid:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  gap: 0.7rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(229, 241, 255, 0.55);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.hero-profile {
  position: relative;
  z-index: 2;
  justify-self: center;
  text-align: center;
}

.profile-seal {
  position: relative;
  display: grid;
  width: clamp(190px, 21vw, 290px);
  height: clamp(190px, 21vw, 290px);
  place-items: center;
}

.profile-seal svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin 28s linear infinite;
}

.profile-seal text {
  fill: rgba(229, 241, 255, 0.63);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.45px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.profile-photo-wrap {
  position: relative;
  z-index: 2;
  width: 46%;
  aspect-ratio: 0.79;
  overflow: hidden;
  border: 1px solid rgba(229, 241, 255, 0.45);
  border-radius: 48% 48% 5px 5px;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.25);
}

.profile-photo-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, transparent 55%, rgba(7, 26, 52, 0.45));
  content: "";
}

.profile-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.03);
  transform: scale(1.05);
}

.hero-profile > p {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin: 1.3rem 0 0;
  font-size: 0.82rem;
}

.hero-profile > p span {
  color: rgba(229, 241, 255, 0.53);
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-foot {
  position: relative;
  z-index: 2;
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.65rem;
  color: rgba(229, 241, 255, 0.55);
  border-top: 1px solid var(--line-dark);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.numbers {
  display: grid;
  color: var(--navy-900);
  background: var(--blue-100);
  grid-template-columns: repeat(4, 1fr);
}

.numbers article {
  display: flex;
  min-height: 190px;
  padding: 2rem;
  border-right: 1px solid var(--line-light);
  flex-direction: column;
  justify-content: space-between;
}

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

.numbers strong {
  font-family: var(--display);
  font-size: clamp(2.5rem, 4vw, 4.4rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.07em;
}

.numbers span {
  max-width: 190px;
  color: rgba(7, 26, 52, 0.65);
  font-size: 0.94rem;
  line-height: 1.45;
}

.section {
  display: grid;
  padding: var(--section-space) var(--pad);
  grid-template-columns: minmax(145px, 0.25fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 7rem);
}

.section-label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-top: 0.5rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.section-label span {
  color: var(--blue-600);
  font-family: var(--display);
  font-weight: 600;
}

.section-label p {
  margin: 0;
}

.kicker {
  margin: 0 0 1.5rem;
  color: var(--blue-700);
  font-size: 0.84rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.section h2,
.work-heading h2,
.service-copy h2,
.credentials-heading h2,
.site-footer h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 6.7rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.section h2 em,
.work-heading h2 em,
.service-copy h2 em,
.credentials-heading h2 em,
.site-footer h2 em {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.profile-section {
  background: var(--ivory);
}

.profile-section h2 {
  max-width: 950px;
}

.profile-copy {
  display: grid;
  margin-top: clamp(3rem, 6vw, 6rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line-light);
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 7vw, 8rem);
}

.profile-copy p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
}

.profile-copy .lead {
  color: var(--ink);
  font-size: clamp(1.42rem, 2.1vw, 2rem);
  line-height: 1.42;
  letter-spacing: -0.025em;
}

.expertise-section {
  color: var(--blue-100);
  background:
    radial-gradient(circle at 5% 100%, rgba(18, 104, 211, 0.3), transparent 28%),
    var(--navy-900);
}

.expertise-section .section-label span,
.expertise-section .kicker {
  color: var(--blue-400);
}

.expertise-section .section-label {
  color: rgba(229, 241, 255, 0.75);
}

.expertise-intro {
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.expertise-list {
  border-top: 1px solid var(--line-dark);
}

.expertise-item {
  display: grid;
  align-items: center;
  min-height: 142px;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line-dark);
  grid-template-columns: 70px 1fr auto;
  gap: 1rem;
  transition: padding 0.3s ease;
}

.expertise-item:hover {
  padding-right: 1rem;
  padding-left: 1rem;
}

.item-number {
  color: var(--blue-400);
  font-size: 0.8rem;
}

.expertise-item h3 {
  margin: 0 0 0.45rem;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.4vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.expertise-item p {
  margin: 0;
  color: rgba(229, 241, 255, 0.58);
  font-size: 0.98rem;
}

.item-arrow {
  color: var(--blue-400);
  font-size: 1.2rem;
}

.work-section {
  padding: var(--section-space) var(--pad);
  background: #d9eafa;
}

.work-heading {
  display: grid;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
  grid-template-columns: 0.45fr 1fr 0.5fr;
  gap: 2rem;
}

.work-heading > p {
  margin: 0;
  color: #496075;
  font-size: 1.05rem;
  line-height: 1.65;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.work-card {
  position: relative;
  display: flex;
  min-height: 430px;
  padding: clamp(1.5rem, 2.5vw, 2.35rem);
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

a.work-card:hover {
  z-index: 2;
  box-shadow: 0 25px 55px rgba(7, 26, 52, 0.17);
  transform: translateY(-7px);
}

.work-card:nth-child(1),
.work-card:nth-child(4) {
  grid-column: span 7;
}

.work-card:nth-child(2),
.work-card:nth-child(3) {
  grid-column: span 5;
}

.work-card:nth-child(5),
.work-card:nth-child(6) {
  grid-column: span 6;
}

.card-type,
.card-index {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 0.79rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.card-index {
  margin-bottom: 2rem;
  opacity: 0.58;
}

.work-card h3 {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4.6rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.work-card p:not(.card-index) {
  position: relative;
  z-index: 2;
  max-width: 540px;
  margin: 1rem 0 0;
  font-size: 0.98rem;
  line-height: 1.55;
  opacity: 0.72;
}

.card-link {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid currentColor;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.card-link b {
  font-size: 1rem;
}

.card-feature {
  color: var(--blue-100);
  background:
    radial-gradient(circle at 90% 10%, rgba(18, 104, 211, 0.48), transparent 30%),
    var(--navy-950);
}

.card-light {
  color: var(--navy-900);
  background: var(--white);
}

.card-blue {
  color: var(--white);
  background: var(--blue-600);
}

.card-photo {
  min-height: 520px;
  color: var(--white);
}

.card-photo > img {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
  transition: transform 0.6s ease;
}

.card-photo:hover > img {
  transform: scale(1.035);
}

.photo-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 18, 37, 0.22), rgba(4, 18, 37, 0.94));
}

.card-ivory {
  color: var(--navy-900);
  background: #f5f4ef;
}

.card-outline {
  color: var(--navy-900);
  border: 1px solid rgba(7, 26, 52, 0.35);
}

.perspective-section {
  background: var(--ivory);
}

.perspective-section blockquote {
  max-width: 1100px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.7rem, 6.4vw, 7rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.perspective-section blockquote em {
  display: block;
  color: var(--blue-600);
  font-family: var(--serif);
  font-weight: 500;
}

.perspective-copy {
  display: grid;
  margin-top: clamp(3rem, 7vw, 7rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line-light);
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 7vw, 8rem);
}

.perspective-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
}

.service-section {
  display: grid;
  min-height: 760px;
  color: var(--blue-100);
  background: var(--navy-900);
  grid-template-columns: 1fr 1fr;
}

.service-visual {
  min-height: 620px;
  overflow: hidden;
}

.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03);
}

.service-copy {
  display: flex;
  padding: clamp(3rem, 7vw, 7rem);
  flex-direction: column;
  justify-content: center;
}

.service-copy h2 {
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  font-size: clamp(3rem, 5.6vw, 6.3rem);
}

.service-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 0 0 1.25rem;
  color: rgba(229, 241, 255, 0.66);
  font-size: 1.1rem;
  line-height: 1.72;
}

.credentials-section {
  display: grid;
  padding: var(--section-space) var(--pad);
  background: var(--blue-100);
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 8vw, 9rem);
}

.credentials-heading {
  align-self: start;
  position: sticky;
  top: 3rem;
}

.credential-rows {
  border-top: 1px solid var(--line-light);
}

.credential-row {
  display: grid;
  min-height: 175px;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 0.35fr 1fr;
  gap: 1.5rem;
}

.credential-row > span {
  color: var(--blue-700);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.credential-row strong {
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.4vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.credential-row p {
  margin: 0.7rem 0 0;
  color: #526b82;
  font-size: 1rem;
  line-height: 1.55;
}

.site-footer {
  padding: var(--section-space) var(--pad) 2rem;
  color: var(--blue-100);
  background:
    radial-gradient(circle at 75% 20%, rgba(18, 104, 211, 0.4), transparent 27%),
    var(--navy-950);
}

.footer-top h2 {
  max-width: 1050px;
  color: var(--white);
}

.footer-links {
  display: grid;
  margin-top: clamp(4rem, 8vw, 8rem);
  border-top: 1px solid var(--line-dark);
  grid-template-columns: repeat(3, 1fr);
}

.footer-links a {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  border-right: 1px solid var(--line-dark);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-links a:last-child {
  border-right: 0;
}

.footer-links a:hover {
  color: var(--white);
  background: rgba(18, 104, 211, 0.15);
}

.footer-bottom {
  display: grid;
  align-items: end;
  margin-top: 4rem;
  padding-top: 2rem;
  color: rgba(229, 241, 255, 0.48);
  border-top: 1px solid var(--line-dark);
  font-size: 0.8rem;
  grid-template-columns: 1fr auto 1fr;
}

.footer-bottom .brand {
  color: var(--blue-100);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom > a:last-child {
  justify-self: end;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

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

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .work-heading {
    grid-template-columns: 0.35fr 1fr;
  }

  .work-heading > p {
    grid-column: 2;
  }

  .work-card:nth-child(n) {
    grid-column: span 6;
  }

  .work-card h3 {
    font-size: clamp(2rem, 4.8vw, 4rem);
  }

  .hero-portrait {
    right: 1.5rem;
    width: clamp(130px, 13vw, 180px);
  }

  .portrait-burst-canvas,
  .portrait-circle-wrap {
    width: clamp(130px, 13vw, 180px);
    height: clamp(130px, 13vw, 180px);
  }
}

@media (max-width: 900px) {
  .hero-motion {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    position: fixed;
    z-index: 105;
    inset: 0;
    display: flex;
    padding: 8rem var(--pad) 3rem;
    visibility: hidden;
    opacity: 0;
    color: var(--blue-100);
    background: var(--navy-950);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.5rem;
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
  }

  .site-nav a {
    font-family: var(--display);
    font-size: clamp(2rem, 8vw, 3.5rem);
    text-transform: none;
    letter-spacing: -0.05em;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 110;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line-dark);
    background: transparent;
    place-content: center;
    gap: 6px;
  }

  .menu-toggle > span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--blue-100);
    transition: transform 0.25s ease;
  }

  .menu-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }
}

@media (max-width: 760px) {
  :root {
    --pad: 1.15rem;
    --section-space: 5.5rem;
  }

  /* Allow scrolling on phones — the hero is taller than 100vh */
  body {
    overflow: auto;
    height: auto;
  }

  .site-header {
    position: absolute;
    right: var(--pad);
    left: var(--pad);
    min-height: auto;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto;
    row-gap: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  /* Logo + name: 7px lower */
  .site-header .brand {
    margin-top: 7px;
  }

  .site-header .brand-mark {
    width: 44px;
    height: 44px;
  }

  .site-header .brand-copy small {
    display: none;
  }

  /* Hide View Resume on phone — override both the base rule and
     the more-specific .cs-disabled rule that sets inline-flex */
  .header-cta,
  .header-cta.cs-disabled {
    display: none !important;
  }

  .menu-toggle {
    position: relative;
    z-index: 110;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line-dark);
    background: transparent;
    place-content: center;
    gap: 6px;
  }

  .menu-toggle > span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--blue-100);
    transition: transform 0.25s ease;
  }

  .menu-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 105;
    inset: 0;
    display: flex;
    padding: 8rem var(--pad) 3rem;
    visibility: hidden;
    opacity: 0;
    color: var(--blue-100);
    background: var(--navy-950);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.5rem;
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
  }

  .site-nav a {
    font-family: var(--display);
    font-size: clamp(2rem, 10vw, 3.5rem);
    text-transform: none;
    letter-spacing: -0.05em;
  }

  .hero {
    min-height: 100svh;
    padding-top: 4.5rem;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    align-content: start;
  }

  .hero-art {
    width: 100%;
    opacity: 0.6;
  }

  .hero-art::after {
    background:
      linear-gradient(90deg, rgba(4, 18, 37, 0.98), rgba(4, 18, 37, 0.72)),
      linear-gradient(0deg, rgba(4, 18, 37, 0.88), transparent 45%);
  }

  .hero-content {
    max-width: 100%;
  }

  /* Portrait: sits just under the single-row header */
  .hero-portrait {
    top: calc(3.75rem + 63px);
    right: 1.35rem;
    bottom: auto;
    width: 88px;
    gap: 0.5rem;
  }

  .portrait-burst-canvas,
  .portrait-circle-wrap {
    width: 88px;
    height: 88px;
  }

  .portrait-below-caption {
    display: none;
  }

  /* Hide the h1 headline on phone — per user request */
  .hero h1 {
    display: none;
  }

  /* Eyebrow: keep tight */
  .eyebrow {
    margin-bottom: 0.5rem;
  }

  /* Activate mobile line breaks */
  .mob-br { display: block; }

  .hero-intro {
    font-size: clamp(0.88rem, 3.8vw, 1rem);
    margin-top: calc(3.5rem - 33px);
    min-height: 0;
    padding-bottom: 0;
  }

  /* Keep LinkedIn link on one line on narrow screens */
  .cs-linkedin {
    white-space: nowrap;
  }

  /* Use one shared size so changing language cannot alter this box. */
  .eyebrow {
    font-size: 0.68rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  /* Language switcher: centred on its own line below the tagline */
  .hero-foot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    text-align: center;
  }

  /* Shrink the badge on mobile so the cs-block stays compact */
  .cs-badge,
  .cs-badge-ring {
    width: 80px;
    height: 80px;
  }

  /* Tighten cs-block bottom margin */
  .coming-soon-block {
    margin-bottom: 0.75rem;
  }

  .cs-lang-links {
    display: flex;
    justify-content: center;
  }

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

  .numbers article {
    min-height: 160px;
    padding: 1.25rem;
    border-bottom: 1px solid var(--line-light);
  }

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

  .section {
    grid-template-columns: 1fr;
    gap: 2.6rem;
  }

  .profile-copy,
  .perspective-copy {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .expertise-item {
    min-height: 160px;
    grid-template-columns: 42px 1fr;
  }

  .item-arrow {
    display: none;
  }

  .expertise-item p {
    line-height: 1.55;
  }

  .work-heading {
    grid-template-columns: 1fr;
  }

  .work-heading > p {
    grid-column: auto;
  }

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

  .work-card:nth-child(n) {
    min-height: 410px;
    grid-column: auto;
  }

  .card-photo {
    min-height: 500px !important;
  }

  .service-section {
    grid-template-columns: 1fr;
  }

  .service-visual {
    min-height: 430px;
  }

  .service-copy {
    padding: var(--section-space) var(--pad);
  }

  .credentials-section {
    grid-template-columns: 1fr;
  }

  .credentials-heading {
    position: static;
  }

  .credential-row {
    grid-template-columns: 1fr;
  }

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

  .footer-links a {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .footer-bottom {
    align-items: start;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom p {
    order: 3;
  }

  .footer-bottom > a:last-child {
    justify-self: start;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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

  .hero-motion {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   SPLASH SCREEN
   ═══════════════════════════════════════════════════════════════════ */

.splash {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-950);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.splash.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.splash-svg {
  width: min(54vmin, 380px);
  height: min(54vmin, 380px);
  overflow: visible;
  transform-origin: center center;
  transition:
    transform 0.72s cubic-bezier(0.7, 0, 0.3, 1),
    opacity   0.35s ease;
}

/* Drawing pill — parked off-screen until JS moves it */
.sp-bullet {
  fill: #65a9f3;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.splash.drawing .sp-bullet {
  opacity: 1;
}

.splash.phase-3 .sp-bullet {
  opacity: 0;
}

/* JD path — invisible until .drawing is added */
.sp-jd-path {
  fill: none;
  stroke: var(--white);
  stroke-width: 5.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  opacity: 0;
}

.splash.drawing .sp-jd-path {
  opacity: 1;
}

.splash.phase-3 .sp-jd-path {
  opacity: 1;
  stroke-dashoffset: 0;
}

.splash.phase-3 .splash-svg {
  transform: var(--splash-fly-transform, translate(-39vw, -44vh) scale(0.15));
  opacity: 0.92;
}

/* On small screens the zoom fallback needs a tighter shift */
@media (max-width: 760px) {
  .splash.phase-3 .splash-svg {
    transform: var(--splash-fly-transform, translate(-36vw, -40vh) scale(0.12));
  }
}

/* ═══════════════════════════════════════════════════════════════════
   COMING SOON OVERRIDES
   Grays out nav, buttons, footer links; adds the "stay tuned" block.
   ═══════════════════════════════════════════════════════════════════ */

/* Disabled state — shared utility */
.cs-disabled {
  opacity: 0.32;
  cursor: not-allowed !important;
  pointer-events: none;
  user-select: none;
}

/* Header nav links replaced with inert spans */
.cs-nav-link {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-100);
  opacity: 0.28;
  cursor: default;
  pointer-events: none;
  user-select: none;
}

/* Hamburger toggle — grayed, no interaction */
.menu-toggle.cs-disabled {
  opacity: 0.28;
  pointer-events: none;
}

/* Header CTA as a span */
.header-cta.cs-disabled {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  justify-self: end;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--line-dark);
  border-radius: 2px;
  color: var(--blue-100);
}

/* ── Coming-soon hero block ── */
.coming-soon-block {
  margin-top: 12px;
  margin-bottom: 1.6rem;
  padding: 1.1rem 1.4rem;
  border-left: 2px solid var(--blue-400);
  background: rgba(18, 104, 211, 0.08);
  border-radius: 0 3px 3px 0;
}

.cs-block-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cs-block-text {
  flex: 1;
  min-width: 0;
}

.cs-eyebrow {
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-400);
  margin-bottom: 0.35rem;
}

.cs-headline {
  font-family: var(--display);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 0.3rem;
}

.cs-sub {
  font-size: 0.78rem;
  color: rgba(229, 241, 255, 0.55);
  line-height: 1.55;
}

/* ── Animated badge (ring + logo) ── */
.cs-badge {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs-badge-ring {
  position: relative;
  width: 110px;
  height: 110px;
}

/* Outer rotating SVG text ring */
.cs-ring-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: csRingSpin 18s linear infinite;
}

@keyframes csRingSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.cs-ring-text {
  font-family: var(--display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  fill: rgba(101, 169, 243, 0.7);
}

/* JD monogram + V2.0 centred inside the ring */
.cs-badge-logo {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.cs-badge-logo svg {
  width: 52px;
  height: 52px;
}

.cs-badge-version {
  font-family: var(--display);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(229, 241, 255, 0.45);
}

/* ── Language switcher links ── */
.cs-lang-links {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.cs-lang {
  font-size: inherit;
  color: rgba(229, 241, 255, 0.55);
  transition: color 0.2s ease;
  cursor: pointer;
}

.cs-lang:hover,
.cs-lang.active {
  color: var(--blue-100);
}

.cs-lang-sep {
  color: rgba(229, 241, 255, 0.3);
}

/* LinkedIn link inside coming-soon block */
.cs-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.9rem;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue-400);
  transition: color 0.2s ease;
}

.cs-linkedin:hover {
  color: var(--white);
}

/* Preview wrap — content below hero shown faded */
.cs-preview-wrap {
  opacity: 0.18;
  pointer-events: none;
  user-select: none;
  filter: blur(1.5px);
}

/* Footer links as inert spans */
.cs-footer-links-disabled {
  display: flex;
  gap: 0;
}

.cs-footer-links-disabled .cs-disabled {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  border-right: 1px solid var(--line-dark);
  color: var(--blue-100);
}

.cs-footer-links-disabled .cs-disabled:first-child {
  padding-left: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   SPANISH THEME  —  GREEN (active)
   Applied via body.lang-es when user switches to Español.
   To swap to burgundy: comment the GREEN block, uncomment BURGUNDY.
   ═══════════════════════════════════════════════════════════════════ */

/* ── GREEN OPTION (active) ──────────────────────────────────────── */
body.lang-es {
  /* Override colour tokens */
  --navy-950: #071a0f;
  --navy-900: #0a2414;
  --navy-800: #0f3620;
  --blue-700: #1a6b38;
  --blue-600: #1f8a47;
  --blue-400: #4dbf7a;
  --blue-200: #a3dfc0;
  --blue-100: #d6f2e4;
}

/* Splash background */
body.lang-es .splash {
  background: #071a0f;
}

/* Bullet glow colour */
body.lang-es .sp-bullet {
  fill: #4dbf7a;
}

/* Hero background tint */
body.lang-es .hero-art::after {
  background:
    linear-gradient(to right, rgba(7,26,15,0.92) 0%, rgba(7,26,15,0.55) 60%, transparent 100%),
    linear-gradient(to top,  rgba(7,26,15,0.88) 0%, transparent 55%);
}

/* Eyebrow pulse dot */
body.lang-es .eyebrow .eyebrow-dot {
  background: #a3dfc0;
}

/* Coming-soon block border */
body.lang-es .coming-soon-block {
  border-left-color: #4dbf7a;
  background: rgba(31, 138, 71, 0.1);
}

/* cs-eyebrow text */
body.lang-es .cs-eyebrow {
  color: #4dbf7a;
}

/* Ring text */
body.lang-es .cs-ring-text {
  fill: rgba(77, 191, 122, 0.7);
}

/* LinkedIn link */
body.lang-es .cs-linkedin {
  color: #4dbf7a;
}

body.lang-es .cs-linkedin:hover {
  color: #d6f2e4;
}

/* Language switcher active state */
body.lang-es .cs-lang.active {
  color: #d6f2e4;
}

/* Header bottom border */
body.lang-es .site-header {
  border-bottom-color: rgba(163, 223, 192, 0.2);
}

/* Globe orbit lines */
body.lang-es .globe-outline,
body.lang-es .globe-line {
  stroke: rgba(77, 191, 122, 0.55);
}

body.lang-es .globe-orbit-line {
  stroke: rgba(77, 191, 122, 0.35);
}

/* Route lines */
body.lang-es .route {
  stroke: rgba(77, 191, 122, 0.75);
}
/* ── END GREEN ──────────────────────────────────────────────────── */

/* ── BURGUNDY OPTION (inactive) ─────────────────────────────────
body.lang-es {
  --navy-950: #1a0810;  --navy-900: #240d17;  --navy-800: #38142a;
  --blue-700: #7a1f45;  --blue-600: #9c2557;  --blue-400: #d4547a;
  --blue-200: #f0b3c8;  --blue-100: #fae4ec;
}
body.lang-es .splash               { background: #1a0810; }
body.lang-es .sp-bullet            { fill: #d4547a; }
body.lang-es .hero-art::after      { background: linear-gradient(to right, rgba(26,8,16,0.92) 0%, rgba(26,8,16,0.55) 60%, transparent 100%), linear-gradient(to top, rgba(26,8,16,0.88) 0%, transparent 55%); }
body.lang-es .eyebrow span         { background: #f0b3c8; }
body.lang-es .coming-soon-block    { border-left-color: #d4547a; background: rgba(156,37,87,0.1); }
body.lang-es .cs-eyebrow           { color: #d4547a; }
body.lang-es .cs-ring-text         { fill: rgba(212,84,122,0.7); }
body.lang-es .cs-linkedin          { color: #d4547a; }
body.lang-es .cs-linkedin:hover    { color: #fae4ec; }
body.lang-es .cs-lang.active       { color: #fae4ec; }
body.lang-es .site-header          { border-bottom-color: rgba(240,179,200,0.2); }
body.lang-es .globe-outline,
body.lang-es .globe-line           { stroke: rgba(212,84,122,0.55); }
body.lang-es .globe-orbit-line     { stroke: rgba(212,84,122,0.35); }
body.lang-es .route                { stroke: rgba(212,84,122,0.75); }
── END BURGUNDY ─────────────────────────────────────────────────── */

/* ═══════════════════════════════════════════════════════════════════
   LAYOUT-STABLE LANGUAGE LAYERS
   Both layers size each component; only the selected layer is visible.
   ═══════════════════════════════════════════════════════════════════ */

.i18n-stable {
  display: grid;
}

.i18n-layer {
  grid-area: 1 / 1;
  opacity: 0;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.18s ease;
}

.lang-en .i18n-layer[data-i18n-lang="en"],
.lang-es .i18n-layer[data-i18n-lang="es"] {
  opacity: 1;
  user-select: text;
}

.eyebrow.i18n-stable {
  display: grid;
}

.eyebrow .i18n-layer {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.cs-linkedin.i18n-stable,
.header-cta.i18n-stable {
  display: inline-grid;
}

/* These mobile rules must follow the coming-soon base styles above. */
@media (max-width: 760px) {
  .cs-badge,
  .cs-badge-ring {
    width: 80px;
    height: 80px;
  }

  /* Keep the monogram comfortably inside the rotating text ring. */
  .cs-badge-logo svg {
    width: 36px;
    height: 36px;
  }

  .cs-badge-version {
    font-size: 0.48rem;
  }

  .coming-soon-block {
    margin-top: 32px;
    margin-bottom: 0.75rem;
  }

  /* The divider sits another 20px below the lowered message block. */
  .hero-foot {
    margin-top: calc(0.75rem + 20px);
  }

  .cs-lang-links {
    display: inline-flex;
  }
}
