@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(/assets/fonts/manrope-latin-variable.woff2) format("woff2");
}
@font-face {
  font-family: "Instrument Serif";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/fonts/instrument-serif-latin-regular.woff2) format("woff2");
}
@font-face {
  font-family: "Instrument Serif";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/fonts/instrument-serif-latin-italic.woff2) format("woff2");
}
:root {
  color-scheme: light;
  --paper: #eeeae1;
  --paper-light: #f7f4ed;
  --ink: #202e29;
  --muted: #5e6860;
  --dark: #192b25;
  --brass: #c1ad78;
  --line: #c6c9bd;
  --sans: Manrope, "Segoe UI", sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --gutter: clamp(20px, 4.4vw, 88px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  background: var(--paper);
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 400 16px/1.7 var(--sans);
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
p {
  margin: 0;
}
h1,
h2 {
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.03;
}
em {
  font: italic 400 1em/1 var(--serif);
  letter-spacing: -0.025em;
}
a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  touch-action: manipulation;
}
img,
svg,
canvas {
  display: block;
  max-width: 100%;
}
img {
  height: auto;
}
[hidden] {
  display: none !important;
}
::selection {
  background: var(--ink);
  color: var(--paper);
}
:focus-visible {
  outline: 2px solid #b48a45;
  outline-offset: 5px;
}
.wrap {
  width: min(100%, 1680px);
  padding-inline: var(--gutter);
  margin-inline: auto;
}
.eyebrow {
  font-size: 10px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.105em;
  text-transform: uppercase;
}
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: currentColor;
  vertical-align: middle;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 20px;
  padding: 12px 20px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
.reading-progress {
  position: fixed;
  z-index: 80;
  inset: 0 0 auto;
  height: 2px;
  pointer-events: none;
}
.reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: #a58d57;
  transform: scaleX(0);
  transform-origin: left;
}

/* The small-screen layout is the default; larger layouts add columns below. */
.site-header {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 40;
  max-width: none;
  background: #eeeae1f5;
  transition: box-shadow 0.3s;
  backdrop-filter: blur(16px);
}
.site-header.is-scrolled {
  box-shadow: 0 1px 0 #202e2920;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}
.brand img {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.brand__role {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 400;
}
.header-nav {
  display: none;
}
.header-home {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  flex-shrink: 0;
  font-size: 11px;
}
.header-home span {
  font-size: 20px;
  transition: transform 0.3s var(--ease);
}
.header-home:hover span {
  transform: translate(3px, -3px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 26px;
  padding-top: 26px;
}
.intro__copy {
  min-width: 0;
  padding-top: 8px;
}
.intro__eyebrow {
  margin-bottom: 23px;
}
.intro h1 {
  font-size: clamp(46px, 12.4vw, 85px);
  letter-spacing: -0.067em;
}
.intro h1 em {
  font-size: 1.1em;
}
.intro__description {
  max-width: 450px;
  margin-top: 25px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.intro__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 26px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 56px;
  padding: 14px 19px;
  background: var(--ink);
  color: var(--paper-light);
  font-size: 12px;
  font-weight: 600;
  transition:
    background 0.25s,
    transform 0.3s var(--ease);
}
.button span {
  font-size: 22px;
  line-height: 1;
}
.button:hover {
  background: #384a3f;
  transform: translateY(-3px);
}
.intro__count {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.intro__count strong {
  color: var(--ink);
  font: 400 38px/1 var(--serif);
  letter-spacing: -0.04em;
}
.intro__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  min-height: 54px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
}
.intro__foot > span:first-child {
  max-width: 190px;
}
.intro__foot > span:last-child {
  flex-shrink: 0;
}
.intro__foot span:last-child span {
  margin-left: 8px;
  color: var(--ink);
  font-size: 15px;
}

.signature-study {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-block: 1px solid var(--line);
  background: radial-gradient(ellipse at 53% 52%, #d7d9c945, transparent 68%);
}
.signature-study__top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.025em;
}
.signature-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1.32;
  isolation: isolate;
}
.signature-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  stroke: #9fa990;
  stroke-width: 0.8;
  opacity: 0.53;
}
.signature-grid__accent {
  stroke: #8d7543;
  stroke-width: 1.2;
}
.signature-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s;
}
#links-signature {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  pointer-events: none;
}
.has-signature #links-signature {
  visibility: visible;
}
.has-signature .signature-fallback {
  opacity: 0;
}
.signature-study__bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 14px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.7;
}
.signature-study__bottom em {
  display: inline-block;
  margin-top: 2px;
  font-size: 23px;
  color: var(--ink);
}
.assembly-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 44px;
  padding: 9px 12px;
  border: 1px solid #a7ad9a;
  background: #f7f4ed55;
  font-size: 10px;
  transition: background 0.25s;
}
.assembly-toggle:hover {
  background: var(--paper-light);
}
.assembly-toggle span:last-child {
  font-size: 17px;
}

.marquee {
  position: relative;
  background: var(--brass);
  color: var(--ink);
  border-block: 1px solid #a68d57;
}
.marquee__viewport {
  overflow: hidden;
}
/* Exactly two equal groups: half the track is one complete, seamless cycle. */
.marquee__track {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
  will-change: transform;
}
.marquee__group {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex: 0 0 auto;
  min-width: 100vw;
  gap: 26px;
  padding: 15px 13px;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
}
.marquee__group i {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}
.marquee__toggle {
  position: absolute;
  inset: 0 0 0 auto;
  display: grid;
  place-items: center;
  width: 48px;
  border: 0;
  border-left: 1px solid #8a743b;
  background: var(--brass);
  box-shadow: -12px 0 18px var(--brass);
}
.marquee__toggle svg {
  width: 18px;
  height: 18px;
}
.play-icon {
  display: none;
}
.marquee.is-paused .marquee__track {
  animation-play-state: paused;
}
.marquee.is-paused .pause-icon {
  display: none;
}
.marquee.is-paused .play-icon {
  display: block;
}

.directory {
  position: relative;
  isolation: isolate;
  padding-block: 66px 38px;
  background:
    radial-gradient(ellipse at 100% 20%, #45523b50, transparent 42%),
    radial-gradient(ellipse at 0 74%, #3b56452e, transparent 40%), #172a22;
  color: #edece0;
}
.section-heading {
  padding-bottom: 28px;
}
.section-heading > .eyebrow {
  color: #c8cdbb;
  margin-bottom: 22px;
}
.section-heading__body {
  display: grid;
  gap: 20px;
}
.section-heading h2 {
  font-size: clamp(48px, 12vw, 78px);
}
.section-heading h2 em {
  color: #cfbb8b;
}
.section-heading__body p {
  max-width: 355px;
  color: #bdc7b9;
  font-size: 13px;
  line-height: 1.75;
}
.cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}
.link-card {
  --card-text: #f2f1e7;
  --card-muted: #c0cbbf;
  --card-border: #a3b19440;
  --card-accent: #d3bf90;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  isolation: isolate;
  padding: 23px;
  border: 1px solid var(--card-border);
  background: linear-gradient(140deg, #ffffff08, transparent 55%), #ffffff04;
  color: var(--card-text);
  transition:
    border-color 0.3s,
    box-shadow 0.35s,
    background 0.35s,
    transform 0.4s var(--ease);
}
.link-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--card-accent);
  transition: width 0.65s var(--ease);
}
.link-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: auto 0 0;
  height: 60%;
  background: linear-gradient(transparent, #0c1c1630);
  pointer-events: none;
}
.link-card:focus-visible {
  outline-color: var(--brass);
  border-color: var(--brass);
}
.link-card:focus-visible::before {
  width: 100%;
}
.link-card__glow {
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: 0;
  background: radial-gradient(
    circle 300px at var(--glow-x, 50%) var(--glow-y, 50%),
    #d1c38c30,
    transparent 85%
  );
  pointer-events: none;
  transition: opacity 0.3s;
}
.link-card__top,
.link-card__body,
.link-card__bottom {
  position: relative;
  z-index: 2;
}
.link-card__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}
.link-card__icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  padding: 7px;
  border: 1px solid #ffffff4d;
  background: #f0ede3;
  box-shadow: 0 5px 15px #0a1c101a;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s;
}
.link-card__icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.link-card__index {
  max-width: 145px;
  padding-top: 2px;
  color: var(--card-muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.105em;
  text-align: right;
}
.link-card__body {
  display: flex;
  flex-direction: column;
  align-items: start;
  margin-top: auto;
  padding-top: 26px;
  min-width: 0;
}
.link-card__category {
  color: var(--card-accent);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.6;
  text-transform: uppercase;
}
.link-card__title {
  display: block;
  margin-top: 9px;
  font-size: clamp(38px, 10.5vw, 58px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1.04;
}
.link-card__title em {
  font-size: 1.07em;
}
.title-period {
  color: var(--card-accent);
}
.link-card__title--handle {
  max-width: 100%;
  overflow-wrap: anywhere;
  font-size: clamp(27px, 7.1vw, 39px);
  letter-spacing: -0.05em;
}
.link-card__description {
  display: block;
  max-width: 370px;
  margin-top: 13px;
  color: var(--card-muted);
  font-size: 13px;
  line-height: 1.75;
}
.link-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  padding-top: 13px;
  border-top: 1px solid var(--card-border);
  color: var(--card-muted);
  font-size: 10px;
  letter-spacing: 0.015em;
}
.link-card__bottom > span:first-child {
  overflow-wrap: anywhere;
  min-width: 0;
}
.link-card__arrow {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border: 1px solid var(--card-border);
  color: var(--card-text);
  font-size: 21px;
  line-height: 1;
  transition:
    background 0.3s,
    color 0.3s,
    transform 0.35s var(--ease);
}
.link-card--featured {
  --card-text: var(--ink);
  --card-muted: #526054;
  --card-border: #a5ae9d;
  --card-accent: #5f6745;
  min-height: 335px;
  background: #e9e9da;
}
.link-card--featured::after {
  background: linear-gradient(90deg, transparent 50%, #8b9b6e19);
}
.link-card--featured .link-card__title {
  font-size: clamp(48px, 12vw, 70px);
}
.link-card--featured .link-card__description {
  max-width: 350px;
}
.link-card--featured .link-card__glow {
  background: radial-gradient(
    circle 330px at var(--glow-x, 50%) var(--glow-y, 50%),
    #b0b9976b,
    transparent 80%
  );
}
.link-card__watermark {
  position: absolute;
  z-index: 1;
  right: -13%;
  top: 16%;
  width: 68%;
  opacity: 0.13;
  transform: rotate(-8deg);
  pointer-events: none;
  transition: transform 0.7s var(--ease);
}
.link-card--conectei {
  background: linear-gradient(145deg, #ffffff08, transparent 75%), #29463a80;
}
.link-card--volts {
  --card-accent: #f0d14b;
  background:
    radial-gradient(ellipse at 100% 0, #41658930, transparent 80%), #1c3241;
}
.link-card--lab {
  background: linear-gradient(130deg, #536f5a18, transparent 60%), #252f30;
}
.link-card--lab::after {
  inset: 0 0 auto auto;
  width: 54%;
  height: 100%;
  background: repeating-linear-gradient(
    -55deg,
    transparent 0 25px,
    #c1ad780e 25px 26px
  );
  mask-image: linear-gradient(90deg, transparent, black);
}
.link-card--github {
  background: #ceddc909;
}
.link-card--instagram {
  background:
    radial-gradient(ellipse at 100% 100%, #a9916b0f, transparent 70%), #ceddc905;
}
.directory__end {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #cbd1bc48;
  color: #b5c1b2;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.11em;
}
.directory__end span:last-child {
  white-space: nowrap;
}
.directory__end span:last-child span {
  margin-left: 12px;
  color: var(--brass);
  font-size: 15px;
}

.more {
  padding-block: 65px 75px;
}
.more__line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}
.more__line > span:last-child {
  display: none;
}
.more__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  padding-top: 36px;
}
.more h2 {
  font-size: clamp(45px, 11.8vw, 77px);
}
.more h2 em {
  font-size: 1.04em;
}
.more p {
  max-width: 570px;
  margin-top: 23px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}
.more__symbol {
  display: none;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  position: relative;
  min-height: 44px;
  margin-top: 22px;
  font-size: 13px;
  font-weight: 600;
}
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: calc(100% - 31px);
  height: 1px;
  background: currentColor;
  transform: scaleX(0.2);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.text-link:hover::after {
  transform: scaleX(1);
}
.text-link span {
  transition: transform 0.3s var(--ease);
}
.text-link:hover span {
  transform: translate(3px, -3px);
}
.site-footer {
  padding-top: 20px;
  padding-bottom: max(26px, env(safe-area-inset-bottom));
}
.footer-name {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(34px, 8.6vw, 70px);
  letter-spacing: -0.06em;
  line-height: 1.2;
}
.footer-name span {
  font-size: 0.65em;
  transition: transform 0.35s var(--ease);
}
.footer-name:hover span {
  transform: translate(4px, -4px);
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px 22px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 9px;
}
.footer-bottom a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.footer-bottom a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}
@keyframes intro-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .intro__copy > * {
    animation: intro-in 0.9s var(--ease) backwards;
  }
  .intro__copy > :nth-child(2) {
    animation-delay: 0.09s;
  }
  .intro__copy > :nth-child(3) {
    animation-delay: 0.18s;
  }
  .intro__copy > :nth-child(4) {
    animation-delay: 0.27s;
  }
  .signature-study {
    animation: intro-in 1.1s 0.18s var(--ease) backwards;
  }
}
@media (hover: hover) and (pointer: fine) {
  .link-card:hover {
    border-color: #c7caaa9c;
    box-shadow: 0 20px 45px #091a1260;
    transform: perspective(1100px) translateY(-4px) rotateX(var(--tilt-x, 0deg))
      rotateY(var(--tilt-y, 0deg));
  }
  .link-card:hover::before {
    width: 100%;
  }
  .link-card:hover .link-card__glow {
    opacity: 1;
  }
  .link-card:hover .link-card__icon {
    transform: rotate(-6deg) scale(1.06);
    box-shadow: 6px 10px 20px #07170f52;
  }
  .link-card:hover .link-card__arrow {
    transform: translate(2px, -2px);
    background: var(--card-accent);
    color: var(--ink);
  }
  .link-card--featured:hover .link-card__watermark {
    transform: rotate(-2deg) scale(1.06);
  }
}
@media (min-width: 600px) {
  .intro h1 {
    font-size: 78px;
  }
  .intro__description {
    font-size: 15px;
  }
  .intro__actions {
    gap: 28px;
  }
  .signature-stage {
    aspect-ratio: 1.55;
  }
  .signature-study__top {
    font-size: 10px;
  }
  .signature-study__bottom {
    font-size: 11px;
  }
  .signature-study__bottom em {
    font-size: 26px;
  }
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .link-card {
    min-height: 330px;
    padding: 26px;
  }
  .link-card--featured {
    grid-column: 1/-1;
  }
  .link-card__title {
    font-size: 42px;
  }
  .link-card__title--handle {
    font-size: 30px;
  }
  .link-card--featured .link-card__title {
    font-size: 68px;
  }
  .link-card__watermark {
    width: 45%;
    right: 0;
    top: 0;
    opacity: 0.22;
  }
  .more__line > span:last-child {
    display: block;
    color: var(--muted);
    font-size: 9px;
    letter-spacing: 0.07em;
  }
  .marquee__group {
    gap: 32px;
    font-size: 12px;
    padding-inline: 16px;
  }
  .footer-bottom {
    font-size: 10px;
  }
}
@media (min-width: 900px) {
  .site-header {
    height: 88px;
    gap: 26px;
  }
  .brand {
    font-size: 13px;
    gap: 13px;
  }
  .brand__role {
    font-size: 10px;
  }
  .header-nav {
    display: flex;
    gap: 28px;
    font-size: 12px;
  }
  .header-nav a {
    padding-block: 12px;
  }
  .header-nav a:hover {
    text-decoration: underline;
    text-underline-offset: 6px;
  }
  .header-nav span {
    margin-left: 8px;
    color: var(--muted);
    font-size: 9px;
  }
  .header-home {
    gap: 30px;
    font-size: 12px;
  }
  .eyebrow {
    font-size: 11px;
  }
  .intro {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px 4%;
    padding-top: 42px;
  }
  .intro__copy {
    align-self: center;
    padding-block: 20px 35px;
  }
  .intro__eyebrow {
    margin-bottom: 30px;
  }
  .intro h1 {
    font-size: clamp(59px, 6.2vw, 104px);
  }
  .intro h1 em {
    white-space: nowrap;
  }
  .intro__description {
    max-width: 420px;
    margin-top: 29px;
  }
  .intro__actions {
    margin-top: 32px;
  }
  .button {
    font-size: 13px;
    min-height: 58px;
    padding-inline: 22px;
  }
  .signature-stage {
    min-height: 385px;
    aspect-ratio: auto;
    flex: 1;
  }
  .signature-study__bottom {
    padding-bottom: 15px;
  }
  .intro__foot {
    grid-column: 1/-1;
    min-height: 65px;
    font-size: 10px;
  }
  .intro__foot > span:first-child {
    max-width: none;
  }
  .marquee__group {
    font-size: 12px;
    padding-block: 17px;
  }
  .directory {
    padding-block: 94px 55px;
  }
  .section-heading {
    padding-bottom: 43px;
  }
  .section-heading__body {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr);
    gap: 50px;
    align-items: end;
  }
  .section-heading h2 {
    font-size: clamp(64px, 6.7vw, 104px);
  }
  .section-heading__body p {
    max-width: 280px;
    font-size: 14px;
    padding-bottom: 4px;
  }
  .link-card {
    min-height: 375px;
    padding: 32px;
  }
  .link-card__icon {
    width: 56px;
    height: 56px;
    padding: 8px;
  }
  .link-card__icon img {
    width: 40px;
    height: 40px;
  }
  .link-card__body {
    padding-top: 35px;
  }
  .link-card__category {
    font-size: 10px;
  }
  .link-card__title {
    font-size: 55px;
  }
  .link-card__title--handle {
    font-size: 38px;
  }
  .link-card__description {
    font-size: 14px;
  }
  .link-card__bottom {
    margin-top: 28px;
  }
  .more {
    padding-block: 105px 120px;
  }
  .more__content {
    grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
    gap: 70px;
    padding-top: 60px;
  }
  .more h2 {
    font-size: clamp(58px, 5.7vw, 96px);
  }
  .more p {
    font-size: 15px;
  }
  .more__symbol {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    align-self: start;
    justify-self: center;
    width: 180px;
    aspect-ratio: 1;
    transform: rotate(-13deg);
    margin-top: 26px;
  }
  .more__symbol span {
    border: 1px solid #8f9c8c;
    background: linear-gradient(140deg, #d7d8c9, #eeece2 75%);
    box-shadow:
      inset 10px 10px 25px #fff8,
      14px 16px 18px #3f55451a;
  }
  .more__symbol span:nth-child(2) {
    transform: translate(13px, -13px);
  }
  .more__symbol span:nth-child(3) {
    transform: translate(-12px, 12px);
    background: var(--dark);
  }
  .more__symbol span:nth-child(4) {
    transform: translate(8px, 5px);
  }
  .footer-name {
    font-size: clamp(64px, 6vw, 90px);
    padding-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .signature-stage {
    min-height: 440px;
  }
  .intro {
    gap: 35px 4%;
  }
  .cards {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .link-card {
    grid-column: span 4;
    min-height: 360px;
    padding: 34px;
  }
  .link-card--featured,
  .link-card--lab {
    grid-column: span 7;
  }
  .link-card--conectei,
  .link-card--volts {
    grid-column: span 5;
  }
  .link-card--featured,
  .link-card--conectei {
    min-height: 420px;
  }
  .link-card--featured .link-card__title {
    font-size: clamp(65px, 5vw, 82px);
  }
  .link-card__title--handle {
    font-size: clamp(29px, 2.4vw, 39px);
  }
  .link-card__watermark {
    width: 65%;
    right: -22%;
    top: 12%;
    opacity: 0.23;
  }
  .link-card--lab .link-card__description {
    max-width: 410px;
  }
  .link-card--lab .link-card__title {
    font-size: 70px;
  }
}
@media (max-width: 359px) {
  .brand__role {
    display: none;
  }
  .brand {
    font-size: 11px;
    gap: 8px;
  }
  .intro__actions {
    gap: 16px;
  }
  .intro__count strong {
    font-size: 32px;
  }
  .link-card {
    padding: 20px;
  }
  .signature-study__bottom em {
    font-size: 21px;
  }
  .assembly-toggle {
    padding-inline: 9px;
    gap: 8px;
  }
  .footer-bottom > p:first-child {
    flex-basis: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .link-card,
  .link-card:hover {
    transform: none;
  }
  .marquee__toggle {
    display: none;
  }
}
@media (forced-colors: active) {
  .link-card,
  .link-card__arrow,
  .assembly-toggle {
    border: 1px solid CanvasText;
  }
}
