:root {
  --ink: #0b0d12;
  --ink-soft: #1a1f29;
  --muted: #5b6573;
  --muted-strong: #2b3340;
  --paper: #f6f7f9;
  --surface: #ffffff;
  --line: rgba(11, 13, 18, 0.09);
  --line-strong: rgba(11, 13, 18, 0.16);
  --blue: #2456ff;
  --blue-deep: #1740d8;
  --cyan: #22c8db;
  --violet: #6f4cff;
  --shadow-sm: 0 1px 2px rgba(11, 13, 18, 0.05), 0 1px 1px rgba(11, 13, 18, 0.04);
  --shadow-md: 0 12px 30px -12px rgba(11, 13, 18, 0.14);
  --shadow-lg: 0 30px 70px -24px rgba(11, 13, 18, 0.22);
  --shadow-feature: 0 40px 80px -28px rgba(20, 40, 120, 0.45);
  --radius: 14px;
  --radius-lg: 20px;
  --maxw: 1160px;
  --gutter: clamp(20px, 5vw, 40px);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-feature-settings: "cv05" 1, "ss01" 1;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: var(--blue);
  text-underline-offset: 0.2em;
}

::selection {
  background: rgba(36, 86, 255, 0.18);
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 16px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid transparent;
  background: rgba(246, 247, 249, 0);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.scrolled {
  background: rgba(246, 247, 249, 0.78);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -18px rgba(11, 13, 18, 0.25);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
}

.nav {
  width: min(var(--maxw), calc(100% - 2 * var(--gutter)));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: min(264px, 58vw);
  transition: width 0.3s var(--ease);
}

.site-header.scrolled .brand img {
  width: min(236px, 56vw);
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  white-space: nowrap;
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.nav-links a:not(.nav-cta):hover {
  color: var(--blue);
}

.nav-links a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff !important;
  font-weight: 650;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.nav-cta:hover {
  background: var(--blue);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(58% 50% at 12% 6%, rgba(34, 200, 219, 0.20), transparent 70%),
    radial-gradient(54% 52% at 92% 16%, rgba(111, 76, 255, 0.18), transparent 70%),
    radial-gradient(40% 40% at 70% 90%, rgba(36, 86, 255, 0.12), transparent 70%);
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(11, 13, 18, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11, 13, 18, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 35%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 35%, transparent 78%);
}

.hero-inner {
  position: relative;
  width: min(var(--maxw), calc(100% - 2 * var(--gutter)));
  min-height: clamp(560px, 72vh, 720px);
  margin: 0 auto;
  padding: clamp(72px, 10vh, 120px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.92fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero-copy {
  align-self: center;
  min-width: 0;
}

.eyebrow,
.section-kicker,
.project-meta {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 7px 14px 7px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-sm);
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(36, 86, 255, 0.16);
  animation: pulse 2.6s var(--ease) infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(36, 86, 255, 0.18); }
  50% { box-shadow: 0 0 0 6px rgba(36, 86, 255, 0.05); }
}

.hero h1 {
  max-width: 16ch;
  margin: 24px 0 0;
  font-size: clamp(2.8rem, 5.4vw, 5.2rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
}

.hero h1 .accent {
  background: linear-gradient(100deg, var(--blue) 0%, var(--violet) 60%, var(--cyan) 120%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--muted-strong);
  font-size: clamp(1.12rem, 1.6vw, 1.34rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

/* ---------- Hero lab map ---------- */
.lab-map {
  position: relative;
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow-lg);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
}

.map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 4px;
}

.map-header span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.map-header strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #0f9b72;
}

.map-header strong::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #15c08a;
  box-shadow: 0 0 0 3px rgba(21, 192, 138, 0.18);
  animation: pulse-green 2.4s var(--ease) infinite;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 3px rgba(21, 192, 138, 0.2); }
  50% { box-shadow: 0 0 0 6px rgba(21, 192, 138, 0.04); }
}

.map-node {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.map-node:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}

.map-node span {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--blue);
}

.map-node strong {
  display: block;
  margin-top: 6px;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.map-node p {
  margin-top: 6px;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--muted);
}

.map-node.primary {
  border-color: rgba(36, 86, 255, 0.35);
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(36, 86, 255, 0.12), transparent 60%),
    var(--surface);
}

.map-line {
  width: 2px;
  height: 22px;
  margin: -6px auto;
  background: linear-gradient(180deg, var(--blue), rgba(36, 86, 255, 0.15));
  border-radius: 2px;
}

.map-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.signal-grid {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 38px;
  margin-top: 2px;
  padding: 0 2px;
}

.signal-grid i {
  flex: 1;
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, var(--blue), var(--violet));
  opacity: 0.85;
  animation: equalize 1.6s var(--ease) infinite;
}

.signal-grid i:nth-child(1) { height: 40%; animation-delay: 0s; }
.signal-grid i:nth-child(2) { height: 75%; animation-delay: 0.15s; }
.signal-grid i:nth-child(3) { height: 55%; animation-delay: 0.3s; }
.signal-grid i:nth-child(4) { height: 90%; animation-delay: 0.45s; }
.signal-grid i:nth-child(5) { height: 50%; animation-delay: 0.6s; }
.signal-grid i:nth-child(6) { height: 70%; animation-delay: 0.75s; }

@keyframes equalize {
  0%, 100% { transform: scaleY(0.5); transform-origin: bottom; }
  50% { transform: scaleY(1); transform-origin: bottom; }
}

/* ---------- Buttons ---------- */
.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 650;
  text-decoration: none;
  transition: transform 0.22s var(--ease), background 0.22s var(--ease), box-shadow 0.22s var(--ease), color 0.22s var(--ease), border-color 0.22s var(--ease);
}

.button {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.button:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -16px rgba(36, 86, 255, 0.6);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.button.light {
  border-color: transparent;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 40px -20px rgba(0, 0, 0, 0.6);
}

.button.light:hover {
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-2px);
}

.arrow {
  width: 16px;
  height: 16px;
  flex: none;
  transition: transform 0.25s var(--ease);
}

.button:hover .arrow,
.button-secondary:hover .arrow,
.card-link:hover .arrow {
  transform: translateX(4px);
}

/* ---------- Sections ---------- */
.section {
  width: min(var(--maxw), calc(100% - 2 * var(--gutter)));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 116px) 0;
}

.section-heading {
  margin-bottom: 40px;
}

h2,
h3,
p {
  margin: 0;
}

.section-kicker {
  display: block;
  margin-bottom: 14px;
}

h2 {
  max-width: 20ch;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

h3 {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* ---------- Thesis ---------- */
.thesis {
  border-top: 1px solid var(--line);
}

.thesis-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.thesis-grid p {
  color: var(--muted);
  font-size: 1.08rem;
}

.thesis-grid p + p {
  margin-top: 18px;
}

/* ---------- Explorations ---------- */
.explorations {
  border-top: 1px solid var(--line);
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.explore-grid article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.explore-grid article:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-lg);
}

.explore-grid article span {
  display: block;
  margin-bottom: 16px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

.explore-grid article h3 {
  font-size: 1.32rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.explore-grid article p {
  margin-top: 12px;
  color: var(--muted);
}

/* ---------- Projects ---------- */
.project-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  gap: 20px;
}

.project-card {
  position: relative;
  min-height: 340px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-lg);
}

.project-card h3 {
  margin-top: 36px;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.project-card p {
  margin-top: 14px;
  color: var(--muted);
}

.card-link {
  margin-top: auto;
  padding-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 650;
  font-size: 0.96rem;
  text-decoration: none;
}

.feature-project {
  color: #fff;
  border-color: transparent;
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(36, 86, 255, 0.55), transparent 55%),
    linear-gradient(150deg, #15234d 0%, #0a0d18 60%);
  box-shadow: var(--shadow-feature);
  overflow: hidden;
}

.feature-project::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 90% 100%, rgba(111, 76, 255, 0.4), transparent 60%);
  pointer-events: none;
}

.feature-project > * {
  position: relative;
  z-index: 1;
}

.feature-project:hover {
  box-shadow: 0 50px 90px -28px rgba(20, 40, 120, 0.6);
}

.feature-project .project-meta {
  color: #8fb0ff;
}

.feature-project p {
  color: rgba(255, 255, 255, 0.78);
}

.feature-project .card-link {
  color: #fff;
}

/* ---------- Writing band ---------- */
.band {
  position: relative;
  color: #fff;
  background:
    radial-gradient(70% 120% at 100% 0%, rgba(36, 86, 255, 0.3), transparent 60%),
    linear-gradient(135deg, #0d111c 0%, #161f37 100%);
  overflow: hidden;
}

.band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.band-copy {
  max-width: 640px;
}

.band .section-kicker {
  color: #8fb0ff;
}

.band h2 {
  color: #fff;
}

.band-text {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

/* ---------- Principles ---------- */
.principles {
  border-top: 1px solid var(--line);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 44px);
}

.principle-grid > div {
  padding-top: 26px;
  border-top: 2px solid var(--ink);
}

.principle-grid span {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.principle-grid h3 {
  margin-top: 18px;
}

.principle-grid p {
  margin-top: 12px;
  color: var(--muted);
}

/* ---------- Contact ---------- */
.contact {
  border-top: 1px solid var(--line);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

/* ---------- Footer ---------- */
.site-footer {
  color: rgba(255, 255, 255, 0.7);
  background: var(--ink);
}

.footer-inner {
  width: min(var(--maxw), calc(100% - 2 * var(--gutter)));
  margin: 0 auto;
  padding: 44px 0;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.footer-inner img {
  width: 210px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s var(--ease);
}

.footer-links a:hover {
  color: #fff;
}

.footer-inner p {
  font-size: 0.86rem;
  text-align: right;
}

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .nav {
    min-height: 68px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: var(--gutter);
    left: var(--gutter);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    transform: translateY(-8px) scale(0.99);
    transform-origin: top right;
    pointer-events: none;
    transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
  }

  .nav-open .nav-links {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 1rem;
  }

  .nav-links a:not(.nav-cta)::after {
    display: none;
  }

  .nav-links a:not(.nav-cta):hover {
    background: rgba(36, 86, 255, 0.08);
  }

  .nav-cta {
    margin-top: 4px;
    text-align: center;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 44px;
    align-items: start;
  }

  .thesis-grid,
  .band-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }

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

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

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

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 28px;
  }

  .footer-inner p {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: min(242px, 64vw);
  }

  .hero-inner {
    width: calc(100% - 48px);
    min-height: auto;
    padding: 64px 0 76px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 11vw, 3.4rem);
  }

  .lede {
    max-width: 100%;
    font-size: 1.04rem;
    line-height: 1.58;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .button,
  .button-secondary {
    width: 100%;
  }

  .lab-map {
    width: 100%;
    padding: 18px;
    border-radius: 18px;
  }

  .map-split {
    grid-template-columns: 1fr;
  }

  .map-node {
    padding: 14px 16px;
  }

  .signal-grid {
    height: 30px;
  }

  .section {
    padding: 64px 0;
  }

  .explore-grid article {
    padding: 24px;
  }

  .project-card {
    min-height: 0;
    padding: 26px;
  }

  .project-card h3 {
    margin-top: 28px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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