/* ============================================================
   ÍNDIGO — one-page B2B landing
   Visual language: porcelain canvas, matte plum ink,
   pastel grass/sky/lavender light — luxury, never flashy.
   ============================================================ */

:root {
  --bg: #F6F6F2;
  --plum: #221C36;
  --plum-soft: #2C2546;
  --grass: #7CB98A;
  --grass-light: #CDE8CC;
  --sky: #C9DFF0;
  --sage: #A9C8B4;
  --lavender: #CCC4E8;
  --signal: #46D08A;
  --muted: #8B8A94;

  --line: rgba(34, 28, 54, 0.12);
  --line-on-dark: rgba(246, 246, 242, 0.18);

  --grad-grass: linear-gradient(156.75deg, #CDE8CC 1.34%, #A9C8B4 65%, #C9DFF0 120.85%);
  --grad-sky: linear-gradient(156.75deg, #C9DFF0 1.44%, #CCC4E8 94.35%);
  --grad-sage: linear-gradient(135deg, #A9C8B4, #DDEFD6 55%, #C9DFF0);
  --grad-lavender: linear-gradient(-40deg, #CCC4E8 -9.14%, #E4DFF2 46.7%, #F0EDE4 96.65%);
  --grad-deep-grass: linear-gradient(120deg, #5FA372, #8CC3A4 70%, #A9C8B4);
  --grad-deep-sky: linear-gradient(120deg, #6E9BC4, #9C92CE);

  --display: "Archivo", "Helvetica Neue", Helvetica, sans-serif;
  --body: "Inter", -apple-system, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", "Courier New", monospace;

  --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-reveal: cubic-bezier(1, 0, 0.25, 0.995);
  --rail-w: 6.5rem;

  /* grain: subtle SVG turbulence for the matte texture */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg);
  color: var(--plum);
  font-family: var(--body);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
  overflow-x: hidden;
}

::selection { background-color: var(--grass); color: #fff; text-shadow: none; }

a { color: currentColor; text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
}
.ttu { text-transform: uppercase; }

/* ============ Wordmark (brand manual v3) ============ */

.wm {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  position: relative;
  white-space: nowrap;
  font-size: 1.9rem;
  /* --wm-cut = colour of the surface behind the mark (fills the D slice) */
  --wm-cut: var(--bg);
}

.wm__d, .wm__o { position: relative; display: inline-block; }

/* editing cut — a precise horizontal slice through the D */
.wm__d::after {
  content: "";
  position: absolute;
  left: 15%;
  right: 19%;
  top: 50%;
  height: 0.085em;
  transform: translateY(-50%);
  background: var(--wm-cut);
}

/* active dot — sits just up-and-right of the O */
.wm__o::after {
  content: "";
  position: absolute;
  top: -0.04em;
  right: -0.20em;
  width: 0.175em;
  height: 0.175em;
  border-radius: 50%;
  background: var(--signal);
}

/* stacked lockup: wordmark + descriptor (footer) */
.wm-lock {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-size: 4.4rem;
}

.wm-lock .wm { font-size: 1em; padding-left: 0.40em; color: var(--bg); --wm-cut: var(--plum); }

.wm-desc {
  margin-top: 0.42em;
  font-family: var(--body);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.142em;
  letter-spacing: 0.60em;
  padding-left: 0.60em;
  color: rgba(246, 246, 242, 0.6);
  white-space: nowrap;
}

/* ============ Header ============ */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 2rem 2rem 0;
}

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

.header__nav { display: none; }

.header__nav a {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.15;
  transition: opacity 0.3s var(--ease-out);
}

.header__nav a:hover { opacity: 0.45; }

.header__actions { display: flex; align-items: center; gap: 1.2rem; }

.btn-pill {
  position: relative;
  display: inline-block;
  overflow: hidden;
  background: var(--plum);
  color: var(--bg);
  border-radius: 10rem;
  padding: 1.2rem 2.4rem;
  font-size: 1.5rem;
  font-weight: 600;
  transition: background 0.4s var(--ease-out);
}

.btn-pill:hover { background: var(--plum-soft); }

.btn-pill__label {
  display: block;
  transition: transform 0.5s var(--ease-out);
}

.btn-pill__label--hover {
  position: absolute;
  inset: 1.2rem 2.4rem;
  transform: translateY(160%);
}

.btn-pill:hover .btn-pill__label { transform: translateY(-160%); }
.btn-pill:hover .btn-pill__label--hover { transform: translateY(0); }

/* ============ Mobile menu ============ */

.menu-btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.6rem;
  width: 4.4rem;
  height: 4.4rem;
  padding: 1.2rem 1rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--bg);
  cursor: pointer;
}

.menu-btn__bar {
  display: block;
  height: 1.5px;
  background: var(--plum);
  transition: transform 0.4s var(--ease-out);
}

.menu-btn[aria-expanded="true"] .menu-btn__bar:first-child { transform: translateY(0.38rem) rotate(45deg); }
.menu-btn[aria-expanded="true"] .menu-btn__bar:last-child { transform: translateY(-0.38rem) rotate(-45deg); }

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: var(--plum);
  color: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out), visibility 0s linear 0.5s;
}

.menu-overlay.is-open {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.5s var(--ease-out);
}

.menu-overlay__nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.menu-overlay__nav a {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: clamp(3.2rem, 9vw, 5.6rem);
  line-height: 1.1;
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.menu-overlay.is-open .menu-overlay__nav a { opacity: 1; transform: translateY(0); }
.menu-overlay.is-open .menu-overlay__nav a:nth-child(1) { transition-delay: 0.08s; }
.menu-overlay.is-open .menu-overlay__nav a:nth-child(2) { transition-delay: 0.16s; }
.menu-overlay.is-open .menu-overlay__nav a:nth-child(3) { transition-delay: 0.24s; }
.menu-overlay.is-open .menu-overlay__nav a:nth-child(4) { transition-delay: 0.32s; }
.menu-overlay.is-open .menu-overlay__nav a:nth-child(5) { transition-delay: 0.40s; }
.menu-overlay.is-open .menu-overlay__nav a:nth-child(6) { transition-delay: 0.48s; }
.menu-overlay.is-open .menu-overlay__nav a:last-child { color: var(--grass-light); }

.menu-overlay__meta {
  position: absolute;
  bottom: 2.4rem;
  left: 2rem;
  font-family: var(--mono);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(246, 246, 242, 0.5);
}

@media (min-width: 1024px) {
  .menu-btn, .menu-overlay { display: none; }
}

/* ============ Side rail ============ */

.side-rail {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: var(--rail-w);
  z-index: 40;
  border-left: 1px solid var(--line);
  background: var(--bg);
}

.side-rail__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--plum);
}

.side-rail__square {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.2rem;
  height: 1.2rem;
  background: var(--grad-deep-grass);
}

/* ============ Layout wrapper ============ */

.content-wrapper { position: relative; }

@media (min-width: 1024px) {
  .header { padding: 2.4rem 9.5rem 0 3rem; }
  .header__nav { display: flex; gap: 4.5rem; }
  .side-rail { display: block; }
  .content-wrapper { margin-right: var(--rail-w); }
}

/* ============ Hero ============ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10rem 2rem 3rem;
  overflow: hidden;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero__meta {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem 6rem;
  margin-bottom: auto;
  padding-top: 4rem;
}

.hero__meta-item {
  font-family: var(--mono);
  font-size: 1.3rem;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero__title {
  position: relative;
  font-family: var(--display);
  font-size: 15.2vw;
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 4rem 0 5rem;
}

.hero__title-line { display: block; overflow: hidden; }
.hero__title-line--indent { padding-left: 8vw; }

.hero__title-inner {
  display: inline-flex;
  align-items: center;
  gap: 2.2vw;
  will-change: transform;
}

/* the wordmark cut + dot, scaled to the hero */
.wm__d--hero::after { background: var(--bg); }
.wm__o--hero::after { background: var(--signal); }
.hero__title-inner > span { display: inline-block; }
.hero__title-inner .wm__d, .hero__title-inner .wm__o { display: inline-block; }

.hero__square {
  display: inline-block;
  width: 9.5vw;
  height: 9.5vw;
  flex: none;
}

.hero__square--grass { background: var(--grad-grass); }
.hero__square--sky { background: var(--grad-sky); }
.hero__square--plum { background: var(--plum); }

.hero__bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}

.hero__tagline {
  font-size: 1.7rem;
  line-height: 1.5;
  max-width: 38rem;
}

/* let the tagline wrap naturally on narrow screens */
@media (max-width: 767px) {
  .hero__tagline br { display: none; }
}

.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--mono);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.hero__scroll-arrow {
  display: inline-block;
  animation: bob 1.8s var(--ease-out) infinite;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(0.5rem); }
}

@media (min-width: 1024px) {
  .hero { padding: 12rem 3rem 4rem; }
  .hero__title { font-size: 13vw; }
  .hero__square { width: 8.2vw; height: 8.2vw; }
}

/* ============ Shared section rhythm ============ */

.manifesto, .services, .process, .studio, .work {
  padding: 12rem 2rem;
}

@media (min-width: 1024px) {
  .manifesto, .services, .process, .studio, .work {
    padding: 16rem 3rem;
  }
}

.manifesto__kicker, .services__kicker, .process__kicker, .studio__kicker, .work__kicker, .footer__kicker {
  font-family: var(--mono);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 3.2rem;
}

/* ============ Manifesto ============ */

.manifesto__title {
  font-family: var(--display);
  font-size: clamp(3.2rem, 6.2vw, 7.5rem);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 20ch;
  margin-bottom: 6.4rem;
}

.manifesto__body {
  display: grid;
  gap: 5rem;
  align-items: start;
}

.manifesto__body > p {
  font-size: 1.9rem;
  line-height: 1.6;
  max-width: 56rem;
}

.manifesto__words {
  display: flex;
  flex-direction: column;
  font-family: var(--display);
  font-size: clamp(4rem, 6.7vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}

.manifesto__word { overflow: hidden; display: block; }
.manifesto__word .anim-line { display: block; }

.manifesto__word:nth-child(1) .anim-line {
  background: var(--grad-deep-grass);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.manifesto__word:nth-child(2) .anim-line {
  background: var(--grad-deep-sky);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (min-width: 1024px) {
  .manifesto__body { grid-template-columns: 1.2fr 1fr; }
}

/* ============ Statement ============ */

.statement {
  padding: 10rem 2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.statement__title {
  font-family: var(--display);
  font-size: 10.1vw;
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.025em;
}

@media (min-width: 1024px) {
  .statement { padding: 12rem 3rem; }
  .statement__title { font-size: 7vw; max-width: 95%; }
}

/* ============ Services ============ */

.services__header { margin-bottom: 8rem; }

.services__title, .process__title, .studio__title, .work__title {
  font-family: var(--display);
  font-size: clamp(3.2rem, 5.4vw, 6.6rem);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 22ch;
}

.services__list {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.service {
  display: grid;
  gap: 3rem;
  border-top: 1px solid var(--line);
  padding-top: 4rem;
}

.service__media {
  position: relative;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: flex-end;
  padding: 2.4rem;
}

.service__index {
  font-family: var(--display);
  font-size: 6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--plum);
  line-height: 1;
  position: relative;
  z-index: 1;
}

.service__name {
  font-family: var(--display);
  font-size: clamp(2.6rem, 3.4vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 2rem;
  transition: color 0.4s var(--ease-out);
}

.service:hover .service__name { color: #5FA372; }

.service__desc {
  font-size: 1.7rem;
  line-height: 1.6;
  max-width: 50rem;
  margin-bottom: 2.4rem;
}

.service__tags {
  font-family: var(--mono);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

@media (min-width: 1024px) {
  .service {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }
  .service:nth-child(even) .service__media { order: 2; }
}

/* ============ Gradient overlay reveal ============ */

.gradient-overlay { overflow: hidden; position: relative; }

/* matte grain sits on every gradient surface */
.gradient-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: 0.10;
  pointer-events: none;
  z-index: 1;
}

.gradient-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: transform 1s var(--ease-reveal);
  z-index: 2;
  background: var(--plum);
}

.gradient-overlay.is-visible::after {
  transform: translateY(calc(100% + 0.1rem));
}

.gradient-overlay--grass { background: var(--grad-grass); }
.gradient-overlay--sky { background: var(--grad-sky); }
.gradient-overlay--sage { background: var(--grad-sage); }
.gradient-overlay--lavender { background: var(--grad-lavender); }

/* ============ Trabajo (showcase) ============ */

.work__intro {
  font-size: 1.9rem;
  line-height: 1.6;
  max-width: 56rem;
  margin-top: 4rem;
}

.work__grid {
  display: grid;
  gap: 2rem;
  margin-top: 7rem;
}

.work-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  aspect-ratio: 16 / 10;
  padding: 2.4rem;
  color: var(--plum);
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
}

/* card content sits above the grain (z1) and reveal curtain (z2) */
.work-card > * { position: relative; z-index: 3; }

.work-card:hover {
  transform: translateY(-0.6rem);
  box-shadow: 0 30px 60px -40px rgba(34, 28, 54, 0.45);
}

.work-card__top,
.work-card__bottom {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.work-card__top { justify-content: space-between; }

.work-card__label {
  font-family: var(--mono);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.work-card__duration {
  font-family: var(--mono);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(34, 28, 54, 0.25);
  border-radius: 10rem;
}

.work-card__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 50%;
  border: 1px solid rgba(34, 28, 54, 0.3);
  font-size: 1.1rem;
  transition: background 0.4s var(--ease-out), color 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}

.work-card:hover .work-card__play {
  background: var(--plum);
  color: var(--grass-light);
  border-color: var(--plum);
}

.work-card__name {
  font-family: var(--display);
  font-size: clamp(2rem, 2.4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.015em;
}

/* dark-gradient variant */
.work-card--deep { color: var(--bg); }
.work-card--deep .work-card__duration { border-color: rgba(246, 246, 242, 0.4); }
.work-card--deep .work-card__play { border-color: rgba(246, 246, 242, 0.5); }
.work-card--deep:hover .work-card__play {
  background: var(--bg);
  color: var(--plum);
  border-color: var(--bg);
}

.gradient-overlay--deep-grass { background: var(--grad-deep-grass); }

.work__note {
  margin-top: 4rem;
  font-family: var(--mono);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.work__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.8rem;
  font-family: var(--mono);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--plum);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.4rem;
  transition: gap 150ms ease, border-color 150ms ease;
}

.work__cta:hover { gap: 1rem; border-color: var(--plum); }

@media (min-width: 1024px) {
  .work__grid { grid-template-columns: repeat(2, 1fr); }
  .work-card { padding: 3rem; }
  .work-card--wide { grid-column: span 2; aspect-ratio: 21 / 8; }
}

/* ============ Stats ============ */

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

.stats__item {
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.stats__item:nth-child(odd) { border-right: 1px solid var(--line); }

.stats__value {
  font-family: var(--display);
  font-size: clamp(4.6rem, 7vw, 9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.stats__label {
  font-family: var(--mono);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: var(--muted);
}

@media (min-width: 1024px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
  .stats__item { border-right: 1px solid var(--line); padding: 6rem 3rem; }
  .stats__item:last-child { border-right: none; }
}

/* ============ Process ============ */

.process__header { margin-bottom: 8rem; }

.process__intro {
  font-size: 1.9rem;
  line-height: 1.6;
  max-width: 56rem;
  margin-top: 4rem;
}

.process__steps {
  list-style: none;
  display: grid;
  gap: 0;
}

.process__step {
  border-top: 1px solid var(--line);
  padding: 4rem 0;
  display: grid;
  gap: 1.6rem;
  transition: background 0.5s var(--ease-out);
}

.process__step:hover { background: rgba(205, 232, 204, 0.18); }

.process__step-num {
  font-family: var(--mono);
  font-size: 1.3rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.process__step-title {
  font-family: var(--display);
  font-size: clamp(2.8rem, 4vw, 4.6rem);
  font-weight: 700;
  letter-spacing: -0.015em;
}

.process__step-desc {
  font-size: 1.7rem;
  line-height: 1.6;
  max-width: 52rem;
}

@media (min-width: 1024px) {
  .process__step { grid-template-columns: 10rem 1fr 1.4fr; align-items: baseline; gap: 4rem; }
}

/* ============ Marquee ============ */

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2.8rem 0;
  white-space: nowrap;
}

.marquee__track {
  display: inline-flex;
  will-change: transform;
}

.marquee__text {
  font-family: var(--display);
  font-size: clamp(2.4rem, 3.2vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  padding-right: 1ch;
  color: var(--plum);
}

/* ============ El Sistema (studio) ============ */

.studio__grid {
  display: grid;
  gap: 2rem;
  margin-top: 7rem;
}

.studio__card {
  padding: 3.2rem 2.8rem 4rem;
  color: var(--plum);
  min-height: 32rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1.6rem;
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
}

.studio__card:hover {
  transform: translateY(-0.6rem);
  box-shadow: 0 30px 60px -40px rgba(34, 28, 54, 0.45);
}

.studio__card-title {
  font-family: var(--display);
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  position: relative;
  z-index: 1;
}

.studio__card-desc {
  font-size: 1.6rem;
  line-height: 1.55;
  opacity: 0.85;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .studio__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============ Footer ============ */

.footer {
  position: relative;
  background: var(--plum);
  color: var(--bg);
  padding: 12rem 2rem 4rem;
  margin-top: 4rem;
}

/* same matte grain on the dark surface */
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: 0.06;
  pointer-events: none;
}

.footer > * { position: relative; }

.footer__kicker { color: rgba(246, 246, 242, 0.5); }

.footer__title {
  font-family: var(--display);
  font-size: 12.5vw;
  line-height: 0.94;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 5rem;
}

.footer__email {
  display: inline-block;
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.4vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  background: linear-gradient(100deg, #CDE8CC, #C9DFF0 60%, #CCC4E8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: opacity 0.3s var(--ease-out);
}

.footer__email:hover { opacity: 0.7; }

/* primary conversion: drive account creation, not a meeting */
.footer__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.4rem;
}

.footer__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.2rem;
  border-radius: 999px;
  background: var(--signal);
  color: var(--plum);
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.05rem, 1.3vw, 1.45rem);
  letter-spacing: -0.01em;
  transition: transform 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.footer__cta:hover { transform: translateY(-3px); background: #5fe0a0; }

.footer__email--sm {
  font-size: clamp(0.95rem, 1.5vw, 1.3rem);
  font-weight: 600;
}

.footer__brand {
  display: flex;
  justify-content: center;
  margin-top: 10rem;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  margin-top: 10rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line-on-dark);
}

.footer__nav, .footer__socials {
  display: flex;
  gap: 2.8rem;
  font-size: 1.5rem;
}

.footer__nav a, .footer__socials a {
  transition: opacity 0.3s var(--ease-out);
}

.footer__nav a:hover, .footer__socials a:hover { opacity: 0.5; }

.footer__legal {
  font-family: var(--mono);
  font-size: 1.2rem;
  color: rgba(246, 246, 242, 0.45);
}

@media (min-width: 1024px) {
  .footer { padding: 16rem 3rem 4rem; }
  .footer__title { font-size: 9.8vw; }
}

/* ============ Animation primitives ============ */

.anim-line-wrap { overflow: hidden; display: block; }

/* split lines created by JS */
.split-line { display: block; overflow: hidden; }
.split-line__inner { display: block; will-change: transform; }

/* prefers-reduced-motion: show everything, kill movement */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
