/* MERIDIAN — Lightship-inspired premium landing */

:root {
  --bg: #f7f7f5;
  --bg-white: #ffffff;
  --ink: #0a0a0a;
  --ink-soft: #3a3a3a;
  --muted: #6b6b6b;
  --line: rgba(0, 0, 0, 0.08);
  --banner: #29525e;
  --radius: 14px;
  --radius-lg: 22px;
  --pad-x: clamp(1rem, 3vw, 2.5rem);
  --content: min(96vw, 1680px);
  --header-h: 56px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0, 1, 0.4, 1);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
}

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

html {
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
}

html.lenis,
html.lenis body {
  height: auto;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg-white);
  line-height: 1.5;
  overflow-x: hidden;
}

img,
video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button,
input {
  font: inherit;
  border: none;
  background: none;
  color: inherit;
}

button {
  cursor: pointer;
}

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

/* —— Announcement —— */
.announcement {
  position: relative;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 44px;
  padding: 0.55rem var(--pad-x);
  background: var(--banner);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
}

.announcement.is-hidden {
  display: none;
}

.announcement__label {
  position: absolute;
  left: var(--pad-x);
  opacity: 0.7;
  font-size: 0.75rem;
}

.announcement__text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  text-align: center;
}

.announcement__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 600;
  transition: transform 0.25s var(--ease);
}

.announcement__cta:hover {
  transform: scale(1.03);
}

.announcement__close {
  position: absolute;
  right: var(--pad-x);
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  opacity: 0.85;
}

.announcement__close:hover {
  opacity: 1;
}

/* —— Header —— */
.header {
  position: fixed;
  top: var(--announce-h, 44px);
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0.55rem var(--pad-x);
  transition: padding 0.35s var(--ease), top 0.3s var(--ease);
  pointer-events: none;
}

.header > * {
  pointer-events: auto;
}

body.has-no-announce .header {
  top: 0;
}

.header__bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-h);
  padding: 0 0.85rem;
  border-radius: 999px;
  transition:
    background 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    backdrop-filter 0.35s var(--ease);
}

.header.is-solid .header__bar,
.header.is-over-light .header__bar {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}

.header.is-over-hero:not(.is-solid) .header__bar {
  color: #fff;
}

.header__left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header__menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
}

.header__menu span {
  display: block;
  height: 1.5px;
  width: 18px;
  background: currentColor;
  border-radius: 2px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.header__nav a {
  font-size: 0.8125rem;
  font-weight: 550;
  letter-spacing: 0.01em;
  opacity: 0.92;
  transition: opacity 0.2s;
}

.header__nav a:hover {
  opacity: 1;
}

.header__nav--right {
  justify-content: flex-end;
}

.header__buy {
  font-weight: 700 !important;
}

.header__lang {
  min-width: 2.25rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  border: 1px solid currentColor;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  opacity: 0.9;
  transition: opacity 0.2s, background 0.2s;
}

.header__lang:hover {
  opacity: 1;
}

.header.is-solid .header__lang,
.header.is-over-light .header__lang {
  border-color: rgba(0, 0, 0, 0.2);
}

.header__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.95rem;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.header__mark {
  width: 28px;
  height: 14px;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: grid;
  place-items: center;
  background: rgba(247, 247, 245, 0.97);
  backdrop-filter: blur(12px);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}

/* —— Buttons / links —— */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 650;
  transition: transform 0.25s var(--ease), background 0.25s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--dark {
  background: var(--ink);
  color: #fff;
}

.btn--light {
  background: #fff;
  color: var(--ink);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 650;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  width: fit-content;
}

/* —— Hero —— */
.hero {
  position: relative;
  height: 280vh;
}

.hero__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.hero__grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.85rem;
  padding: clamp(4.5rem, 10vh, 6.5rem) var(--pad-x) 2rem;
  background: var(--bg);
}

.hero__grid-item {
  overflow: hidden;
  border-radius: var(--radius);
  background: #ddd;
}

.hero__grid-item--a {
  grid-row: 1 / 3;
}

.hero__grid-item--c {
  grid-row: 1 / 3;
}

.hero__grid-item--b,
.hero__grid-item--d,
.hero__grid-item--e {
  min-height: 0;
}

.hero__grid-item--e {
  display: none;
}

.hero__mask {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  clip-path: inset(0 round 0px);
  will-change: clip-path;
}

.hero__media {
  position: absolute;
  inset: 0;
  background: #1a1f22;
}

.hero__video,
.hero__fallback {
  position: absolute;
  inset: 0;
}

.hero__video {
  z-index: 1;
}

.hero__fallback {
  z-index: 0;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, transparent 35%, transparent 65%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
}

.hero__title {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  color: #fff;
  font-size: clamp(1.85rem, 5.2vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
  pointer-events: none;
}

.hero__title-line {
  display: block;
  overflow: hidden;
  white-space: nowrap;
}

.hero__title-line:last-child {
  text-align: right;
  margin-left: auto;
}

.hero__title-line .char {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
}

.hero__scroll {
  position: absolute;
  left: var(--pad-x);
  right: var(--pad-x);
  bottom: 1.5rem;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
}

.hero__scroll-arrow {
  display: grid;
  place-items: center;
  animation: bob 1.8s var(--ease) infinite;
}

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

.hero__intro {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding: 4rem var(--pad-x) 2rem;
  background: var(--bg-white);
  margin-top: -1px;
}

.hero__intro-text {
  max-width: 52rem;
  text-align: center;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.55;
  letter-spacing: -0.02em;
  color: var(--ink-soft);
}

/* —— Stacking cards —— */
.stack {
  position: relative;
  background: var(--bg-white);
  padding-bottom: 2rem;
}

.stack__sticky {
  position: relative;
  padding: 2rem 0 6rem;
}

.stack__heading {
  position: sticky;
  top: 28vh;
  z-index: 0;
  width: var(--content);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  font-size: clamp(2.8rem, 10vw, 8.5rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.95;
  text-align: center;
  pointer-events: none;
  color: var(--ink);
}

.stack__list {
  position: relative;
  z-index: 1;
  width: var(--content);
  margin: 8rem auto 0;
  padding: 0 var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 18vh;
}

.stack__card {
  position: sticky;
  top: 16vh;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 10;
  max-height: 72vh;
  background: #222;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

.stack__card:nth-child(2) {
  top: 18vh;
}

.stack__card:nth-child(3) {
  top: 20vh;
}

.stack__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  z-index: 0;
}

.stack__card-copy {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  z-index: 1;
  color: #fff;
  max-width: 22rem;
}

.stack__card-copy h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
  font-weight: 650;
  letter-spacing: -0.03em;
}

.stack__card-copy p {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.stack__card-copy--side {
  left: auto;
  right: 1.5rem;
  bottom: auto;
  top: 30%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
}

.stack__card-copy .link-arrow {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.stack__card-copy--side .link-arrow {
  color: var(--ink);
  border-color: var(--ink);
}

/* —— Technology —— */
.tech {
  padding: 5rem 0 4rem;
  background: var(--bg-white);
}

.tech__head {
  width: var(--content);
  margin: 0 auto 2.5rem;
  padding: 0 var(--pad-x);
  text-align: center;
}

.tech__title {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
}

.tech__pill {
  display: inline-flex;
  margin-top: 1.25rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: #ececec;
  font-size: 0.8rem;
  font-weight: 600;
}

.tech__carousel {
  width: 100%;
  overflow: hidden;
}

.tech__track {
  display: flex;
  gap: 1rem;
  padding: 0 var(--pad-x);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.tech__track::-webkit-scrollbar {
  display: none;
}

.tech__slide {
  position: relative;
  flex: 0 0 min(78vw, 920px);
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  scroll-snap-align: center;
  background: #111;
  color: #fff;
}

.tech__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
}

.tech__slide-top,
.tech__slide-bottom {
  position: absolute;
  z-index: 1;
  left: 1.35rem;
  right: 1.35rem;
}

.tech__slide-top {
  top: 1.25rem;
  font-size: 0.85rem;
  font-weight: 650;
}

.tech__slide-bottom {
  bottom: 1.25rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.tech__slide-bottom h3 {
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.tech__plus {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.55);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.25s var(--ease), background 0.25s;
}

.tech__plus:hover {
  transform: scale(1.06);
  background: rgba(0, 0, 0, 0.75);
}

.tech__controls {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: var(--content);
  margin: 1.25rem auto 0;
  padding: 0 var(--pad-x);
}

.tech__nav {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  transition: background 0.2s, transform 0.2s;
}

.tech__nav:hover {
  background: #f0f0f0;
  transform: scale(1.04);
}

.tech__nav:disabled {
  opacity: 0.35;
  pointer-events: none;
}

.tech__dots {
  display: flex;
  gap: 0.4rem;
  margin-left: 0.5rem;
}

.tech__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #cfcfcf;
  transition: background 0.2s, transform 0.2s;
}

.tech__dot.is-active {
  background: var(--ink);
  transform: scale(1.15);
}

/* —— Push —— */
.push {
  padding: 2rem var(--pad-x) 4rem;
}

.push__media {
  position: relative;
  width: var(--content);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #111;
  color: #fff;
}

.push__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 1rem;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.65) 100%);
}

.push__overlay h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  max-width: 14ch;
}

.push__overlay p {
  max-width: 36rem;
  font-size: 1rem;
  opacity: 0.92;
}

/* —— Specs —— */
.specs {
  padding: 2rem var(--pad-x) 4rem;
}

.specs__inner {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.specs__item {
  padding: 0.5rem 0.75rem;
}

.specs__value {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.specs__unit {
  margin-left: 0.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
}

.specs__item p {
  margin-top: 0.45rem;
  font-size: 0.875rem;
  color: var(--muted);
}

/* —— About —— */
.about {
  padding: 3rem var(--pad-x) 5rem;
}

.about__grid {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.about__copy p {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  letter-spacing: -0.015em;
  color: var(--ink-soft);
}

.about__media {
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  background: #ddd;
}

/* —— Journal —— */
.journal {
  padding: 2rem 0 5rem;
}

.journal__head {
  width: var(--content);
  margin: 0 auto 1.75rem;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.journal__head h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.journal__controls {
  display: flex;
  gap: 0.5rem;
}

.journal__track {
  display: flex;
  gap: 1rem;
  padding: 0 var(--pad-x);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.journal__track::-webkit-scrollbar {
  display: none;
}

.journal__card {
  flex: 0 0 min(72vw, 340px);
  scroll-snap-align: start;
  transition: transform 0.3s var(--ease);
}

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

.journal__card figure {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ddd;
  margin-bottom: 0.9rem;
}

.journal__card h3 {
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 0.4rem;
}

.journal__card time {
  font-size: 0.8rem;
  color: var(--muted);
}

/* —— Newsletter —— */
.newsletter {
  padding: 1rem var(--pad-x) 5rem;
}

.newsletter__card {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #f0efec;
  min-height: 420px;
}

.pattern-bg {
  background-image:
    radial-gradient(rgba(0, 0, 0, 0.08) 0.7px, transparent 0.7px);
  background-size: 18px 18px;
  background-color: #f0efec;
}

.newsletter__content {
  padding: clamp(1.75rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.newsletter__eyebrow {
  font-size: 0.85rem;
  font-weight: 550;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.newsletter__content h2 {
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 22ch;
}

.newsletter__form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.newsletter__form input {
  flex: 1 1 140px;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
}

.newsletter__form input:focus {
  outline: 2px solid rgba(41, 82, 94, 0.35);
  outline-offset: 1px;
}

.newsletter__note {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--banner);
}

.newsletter__image {
  min-height: 280px;
}

/* —— Footer —— */
.footer {
  padding: 3rem var(--pad-x) 2rem;
  background: #111;
  color: #f3f3f3;
}

.footer__top {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1.5fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__tagline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 0.85rem;
}

.footer__brand p:last-child {
  max-width: 32ch;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.footer__cols h4 {
  font-size: 0.8rem;
  font-weight: 650;
  margin-bottom: 0.85rem;
  opacity: 0.55;
}

.footer__cols a {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.55rem;
  opacity: 0.9;
}

.footer__cols a:hover {
  opacity: 1;
}

.footer__bottom {
  width: var(--content);
  margin: 0 auto;
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer__legal {
  display: flex;
  gap: 1.25rem;
}

/* —— Reveal helpers —— */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
}

/* —— Responsive —— */
@media (max-width: 960px) {
  .announcement__label {
    display: none;
  }

  .header__nav--left,
  .header__nav--right a:not(.header__buy) {
    display: none;
  }

  .header__menu {
    display: flex;
  }

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

  .header__logo {
    justify-self: center;
  }

  .hero__title {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .hero__title-line:last-child {
    text-align: left;
  }

  .hero__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.2fr 1fr 1fr;
  }

  .hero__grid-item--a {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .hero__grid-item--c {
    grid-row: auto;
  }

  .hero__grid-item--e {
    display: block;
  }

  .stack__card-copy--side {
    top: auto;
    bottom: 1.25rem;
    right: 1.25rem;
    left: 1.25rem;
  }

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

  .about__grid,
  .newsletter__card,
  .footer__top {
    grid-template-columns: 1fr;
  }

  .newsletter__image {
    order: -1;
    max-height: 240px;
  }

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

@media (max-width: 560px) {
  .hero {
    height: 220vh;
  }

  .stack__list {
    gap: 12vh;
    margin-top: 4rem;
  }

  .stack__card {
    top: 14vh;
    aspect-ratio: 4 / 5;
  }

  .tech__slide {
    flex-basis: 88vw;
  }

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

@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;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
