/* Youth Digital — institutional site */

@import url('https://api.fontshare.com/v2/css?f[]=satoshi@500,700&display=swap');

:root {
  --orange: #FF6B00;
  --orange-2: #FF7A00;
  --black: #0D0D0D;
  --black-2: #141414;
  --gray-dark: #6B6B6B;
  --gray-mid: #A1A1A1;
  --gray-light: #F2F2F2;
  --white: #FFFFFF;
  --bg: #0D0D0D;
  --surface: #141414;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #FFFFFF;
  --text-mute: #A1A1A1;
  --text-dim: #6B6B6B;
  --font: 'Satoshi', 'Geist', 'General Sans', 'Inter', 'Plus Jakarta Sans', -apple-system, system-ui, sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.45);
  --shadow-orange: 0 12px 40px rgba(255, 107, 0, 0.35);
}

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

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

img, video { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
a, [role="button"], button, .clickable { cursor: pointer; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--orange); color: var(--white); }

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 32px;
  margin: 0 auto;
}

/* ============ DOCK ============ */
.dock {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 8px 8px 16px;
  background: rgba(20, 20, 20, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}
.dock__brand { display: flex; align-items: center; gap: 10px; padding-right: 4px; }
.dock__brand img { height: 22px; width: auto; }
.dock__brand-text {
  font-family: 'Satoshi', var(--font);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--white);
}
.dock__sep { width: 1px; height: 22px; background: var(--border); margin: 0 4px; }
.dock__link {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--text-mute);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: color .2s ease, background .2s ease;
}
.dock__link:hover { color: var(--white); background: rgba(255,255,255,0.06); }

/* === skool-style button === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 8px 8px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font);
  letter-spacing: 0.005em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  transition: transform .25s ease, background .25s ease;
}
.btn__icon svg { width: 13px; height: 13px; }

/* white pill with dark icon — dock "Ver vagas" + secondary CTAs */
.btn--light {
  background: var(--white);
  color: var(--black);
}
.btn--light .btn__icon { background: var(--black); color: var(--white); }
.btn--light:hover { transform: translateY(-1px); }
.btn--light:hover .btn__icon { transform: rotate(-12deg) scale(1.06); }

/* orange pill with white icon + black arrow — primary CTAs */
.btn--orange {
  background: var(--orange);
  color: var(--white);
}
.btn--orange .btn__icon { background: var(--white); color: var(--black); }
.btn--orange:hover { background: var(--orange-2); transform: translateY(-1px); }
.btn--orange:hover .btn__icon { transform: rotate(-12deg) scale(1.06); }

/* outline ghost pill */
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-strong);
  padding: 7px 7px 7px 18px;
}
.btn--ghost .btn__icon { background: var(--white); color: var(--black); }
.btn--ghost:hover { border-color: var(--orange); transform: translateY(-1px); }
.btn--ghost:hover .btn__icon { background: var(--orange); color: var(--white); transform: rotate(-12deg) scale(1.06); }

/* dock size variant */
.dock .btn { padding: 6px 6px 6px 16px; font-size: 14px; }
.dock .btn .btn__icon { width: 24px; height: 24px; }
.dock .btn .btn__icon svg { width: 12px; height: 12px; }

/* large hero CTA size */
.btn--lg { padding: 8px 8px 8px 24px; font-size: 15px; }
.btn--lg .btn__icon { width: 36px; height: 36px; }
.btn--lg .btn__icon svg { width: 16px; height: 16px; }

/* ============ SECTIONS ============ */
section { position: relative; }
.sec-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.sec-mark__label {
  position: relative;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.sec-mark__label::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  margin-right: 12px;
  vertical-align: 1px;
}
.sec-mark--plain .sec-mark__label::before { display: none; }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__title {
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.hero__title-line { display: block; }
.hero__rotator { color: var(--orange); position: relative; display: inline-block; }
.hero__rotator-caret {
  display: inline-block;
  width: 3px;
  height: 0.9em;
  background: var(--orange);
  vertical-align: -0.06em;
  margin-left: 4px;
  animation: caret 1s steps(2) infinite;
}
@keyframes caret { 50% { opacity: 0; } }

.hero__subtitle {
  margin-top: 28px;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.65;
  color: var(--text-mute);
  max-width: 540px;
}
.hero__cta-row { margin-top: 40px; }

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
}
.hero__visual::before {
  content: "";
  position: absolute;
  inset: -6% -10%;
  background:
    radial-gradient(closest-side at 50% 50%, rgba(255,107,0,0.22), rgba(255,107,0,0.06) 45%, transparent 72%),
    radial-gradient(closest-side at 50% 80%, rgba(255,107,0,0.14), transparent 68%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
  animation: heroAura 8s ease-in-out infinite;
}
@keyframes heroAura {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.06); }
}
.hero__stage {
  position: relative;
  width: 86%;
  height: 86%;
  perspective: 1200px;
  perspective-origin: 50% 50%;
  animation: heroOrbit 14s ease-in-out infinite;
  will-change: transform;
  z-index: 1;
}
.hero__logo3d {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transform-style: preserve-3d;
  backface-visibility: visible;
  animation: heroSpin 11s cubic-bezier(.45,.05,.55,.95) infinite;
  will-change: transform;
}
@keyframes heroSpin {
  0%   { transform: rotateY(-26deg) rotateX(8deg) scale(1); }
  25%  { transform: rotateY(18deg)  rotateX(-6deg) scale(1.03); }
  50%  { transform: rotateY(32deg)  rotateX(10deg) scale(1); }
  75%  { transform: rotateY(-14deg) rotateX(-8deg) scale(1.03); }
  100% { transform: rotateY(-26deg) rotateX(8deg) scale(1); }
}
@keyframes heroOrbit {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* ============ SOBRE ============ */
.sobre { padding: 90px 0; }
.sobre__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: flex-start;
}
.sobre__rail {
  align-self: center;
  perspective: 1200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.sobre__rail .sec-mark { align-self: flex-start; margin-left: 8px; }
.phase-list {
  display: flex;
  flex-direction: column;
  gap: 52px;
  position: relative;
  transform-style: preserve-3d;
  align-items: flex-start;
}
.phase-list::before {
  content: "";
  position: absolute;
  left: 53px;
  top: 30px;
  bottom: 30px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,107,0,0.45), rgba(255,107,0,0.12), transparent);
  opacity: 0.7;
}
.phase {
  display: flex;
  align-items: center;
  gap: 26px;
  position: relative;
  opacity: 0;
  transform: translateY(22px) rotateX(-18deg) scale(0.96);
  transform-origin: top center;
  transition: opacity .7s cubic-bezier(.2,.7,.2,1),
              transform .7s cubic-bezier(.2,.7,.2,1),
              color .4s ease;
}
.phase.is-in {
  opacity: 1;
  transform: translateY(0) rotateX(0) scale(1);
}
.phase.is-active .phase__icon {
  background: linear-gradient(160deg, rgba(255,122,0,0.4), rgba(255,107,0,0.12));
  border-color: rgba(255,107,0,0.5);
  box-shadow: 0 12px 32px rgba(255,107,0,0.28);
}
.phase.is-active .phase__icon svg { transform: rotateY(360deg) scale(1.06); }
.phase.is-active .phase__text strong { color: var(--white); }
.phase__icon {
  position: relative;
  width: 108px;
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 26px;
  flex-shrink: 0;
  color: var(--orange);
  background: linear-gradient(160deg, rgba(255,122,0,0.18), rgba(255,107,0,0.04));
  border: 1px solid rgba(255,107,0,0.18);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: background .5s ease, border-color .5s ease, box-shadow .5s ease;
  z-index: 1;
}
.phase__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.22), transparent 55%);
  pointer-events: none;
}
.phase__icon svg {
  width: 50px;
  height: 50px;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.phase__text { display: flex; flex-direction: column; gap: 6px; }
.phase__text strong { font-size: 20px; font-weight: 700; color: var(--text-mute); letter-spacing: -0.01em; transition: color .35s ease; }
.phase__text span { font-size: 14px; color: var(--text-dim); }

.sobre__title {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.022em;
  margin-bottom: 32px;
}
.sobre__title--quote {
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.018em;
  color: var(--white);
  text-wrap: balance;
}
.sobre__body p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-mute);
  margin-bottom: 18px;
}
.sobre__body p strong { color: var(--white); font-weight: 700; }

/* ============ SOLUÇÕES ============ */
.solucoes { padding: 80px 0 90px; background: linear-gradient(180deg, transparent, rgba(255,107,0,0.02), transparent); }
.solucoes__head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.solucoes__head h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.solucoes__head .sec-mark { justify-content: center; }
.solucoes__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.solucao-card {
  position: relative;
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
  overflow: hidden;
}
.solucao-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 107, 0, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.solucao-card:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.solucao-card:hover::before { opacity: 1; }
.solucao-card__tag {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 700;
  margin-bottom: 18px;
}
.solucao-card__name {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.solucao-card__name .orange { color: var(--orange); }
.solucao-card__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-mute);
  margin-bottom: 28px;
}
.solucao-card__phases {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.solucao-card__phase {
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  background: rgba(255, 107, 0, 0.1);
  color: var(--orange);
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.solucao-card__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.solucao-card__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mute);
}
.solucao-card__bullets li svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 4px; color: var(--orange); }
.solucao-card__cta { margin-top: auto; align-self: flex-start; }

/* ============ VAGAS ============ */
.vagas { padding: 80px 0 100px; }
.vagas__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
}
.vagas__title {
  font-size: clamp(32px, 3.6vw, 50px);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.08;
  margin-bottom: 18px;
}
.vagas__desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-mute);
  margin-bottom: 20px;
  max-width: 560px;
}
.vagas__desc--areas { margin-top: 8px; margin-bottom: 14px; }
.vagas__areas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
  max-width: 560px;
}
.vagas__area {
  font-size: 13px;
  padding: 8px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-mute);
  font-weight: 500;
}

/* === team row of avatars (overlapping horizontal) === */
.team-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 16px 0 32px;
  height: 80px;
  padding-left: 0;
  width: max-content;
  isolation: isolate;
}
.team-avatar {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--surface);
  border: 3px solid var(--bg);
  box-shadow: 0 8px 18px rgba(0,0,0,0.35);
  margin-left: -12px;
  flex-shrink: 0;
}
.team-avatar:first-child { margin-left: 0; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

.team-glow {
  position: absolute;
  left: 0;
  right: 0;
  top: -30%;
  bottom: -30%;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,107,0,0.14), transparent 65%);
  filter: blur(36px);
  z-index: -1;
  pointer-events: none;
}

/* === 3D members icon (right-side stage, bigger) === */
.members-3d {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 460px;
  margin: 0 auto;
  perspective: 900px;
}
.members-3d__stack {
  position: absolute;
  inset: 14%;
  transform-style: preserve-3d;
  animation: float3d 7s ease-in-out infinite;
}
.members-3d__card {
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.18 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>"),
    linear-gradient(135deg, #FF7A00 0%, #FF6B00 45%, #E55A00 100%);
  background-blend-mode: overlay, normal;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 28px;
  box-shadow: 0 24px 56px rgba(255,107,0,0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.members-3d__card svg { width: 38%; height: 38%; }
.members-3d__card--back {
  transform: translate3d(-30px, 30px, -56px) rotate(-7deg);
  opacity: 0.55;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.14 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>"),
    linear-gradient(135deg, #C95400 0%, #9F4400 100%);
  background-blend-mode: overlay, normal;
}
.members-3d__card--mid  {
  transform: translate3d(-14px, 14px, -28px) rotate(-3.5deg);
  opacity: 0.78;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.16 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>"),
    linear-gradient(135deg, #E55A00 0%, #B84500 100%);
  background-blend-mode: overlay, normal;
}
@keyframes float3d {
  0%, 100% { transform: rotateY(-10deg) rotateX(8deg) translateY(0); }
  50%      { transform: rotateY(10deg) rotateX(-6deg) translateY(-10px); }
}

/* ============ FOOTER ============ */
.footer {
  padding: 56px 0 36px;
  border-top: 1px solid var(--border);
  background: var(--black-2);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 36px;
}
.footer__lockup { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer__lockup img { height: 24px; width: auto; display: block; }
.footer__brand-text {
  font-family: 'Satoshi', var(--font);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--white);
}
.footer__brand p { font-size: 14px; line-height: 1.6; color: var(--text-mute); max-width: 320px; }
.footer__col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  margin-bottom: 18px;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 14px; color: var(--text-mute); transition: color .2s ease; }
.footer__col a:hover { color: var(--orange); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__cnpj { font-size: 12px; color: var(--text-dim); margin-top: 8px; }

/* ============ LEGAL PAGES ============ */
.legal { padding: 140px 0 100px; max-width: 820px; margin: 0 auto; }
.legal h1 { font-size: 40px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 12px; }
.legal .lead { color: var(--text-mute); margin-bottom: 36px; }
.legal h2 { font-size: 22px; font-weight: 700; margin: 36px 0 14px; }
.legal h3 { font-size: 17px; font-weight: 700; margin: 24px 0 10px; color: var(--orange); }
.legal p, .legal li { color: var(--text-mute); line-height: 1.75; margin-bottom: 12px; font-size: 15px; }
.legal ul { margin: 0 0 18px 22px; }
.legal a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }
.legal__back {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 32px; font-size: 14px; color: var(--text-mute);
}
.legal__back:hover { color: var(--orange); }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .hero { padding: 100px 0 60px; }
  .hero__grid { grid-template-columns: 1fr; gap: 32px; justify-items: center; }
  .hero__visual { max-width: 320px; margin: 0 auto; order: -1; }
  .hero__copy { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__cta-row { display: flex; justify-content: center; }
  .sobre__grid { grid-template-columns: 1fr; gap: 56px; }
  .sobre__rail { align-self: stretch; }
  .solucoes__grid { grid-template-columns: 1fr; }
  .vagas__grid { grid-template-columns: 1fr; gap: 40px; }
  .vagas__copy { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .vagas__desc, .vagas__areas { margin-left: auto; margin-right: auto; }
  .vagas__areas { justify-content: center; }
  .members-3d { max-width: 280px; order: -1; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .dock { top: 16px; padding: 6px 8px 6px 12px; gap: 4px; }
  .dock__link { padding: 6px 10px; font-size: 13px; }
  .dock__brand img { height: 20px; }
  .dock__brand-text { font-size: 13px; }
  .team-avatar { width: 64px; height: 64px; margin-left: -10px; }
  .team-avatar--lg { width: 80px; height: 80px; }
  .team-row { height: 96px; }
}
@media (max-width: 560px) {
  .container { padding: 0 22px; }
  .dock__sep { display: none; }
  .dock__link { display: none; }
  .dock__brand-text { display: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
