:root {
  color-scheme: dark;
  --bg: #050608;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-strong: rgba(255, 255, 255, 0.075);
  --ink: #f3f6fb;
  --muted: #9aa4b2;
  --soft: #c9d1dd;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --accent: #8fa2ff;
  --paper: #f4f0e8;
  --green: #6ee7c8;
  --orange: #f0a45d;
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 0%, rgba(143, 162, 255, 0.18), transparent 24rem),
    linear-gradient(180deg, #050608 0%, #080a0f 48%, #050608 100%);
  font-family: Inter, "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.72;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.62), transparent 74%);
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

p {
  word-break: keep-all;
}

.cursor-light {
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(143, 162, 255, 0.18), transparent 68%);
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 180ms ease;
}

.section-shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(var(--max), calc(100% - 24px));
  margin: 0 auto;
  padding: 12px 0;
}

.site-header::before {
  position: fixed;
  inset: 0 0 auto;
  z-index: -1;
  height: 72px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 6, 8, 0.92), rgba(5, 6, 8, 0));
  backdrop-filter: blur(16px);
  content: "";
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: max-content;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 760;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.055);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  gap: 2px;
  max-width: 100%;
  padding: 4px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  flex: 0 0 auto;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 720;
}

.site-nav a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
}

.hero {
  display: grid;
  gap: 30px;
  padding: 42px 0 36px;
}

.archive-cover {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.archive-number {
  color: var(--paper);
  font-size: clamp(2.7rem, 17vw, 7.2rem);
  font-weight: 250;
  line-height: 0.9;
}

.archive-cover strong {
  display: grid;
  color: var(--paper);
  font-size: clamp(3.35rem, 20vw, 8.5rem);
  font-weight: 850;
  letter-spacing: 0.01em;
  line-height: 0.82;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(1.6rem, 8vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.55rem, 8vw, 3rem);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.1rem;
  line-height: 1.35;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--soft);
  font-size: 1.02rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 780;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #06070a;
  background: #f2f5fb;
}

.button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--surface);
}

.hero-visual {
  position: relative;
  height: clamp(300px, 80vw, 380px);
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(16, 18, 27, 0.94), rgba(7, 8, 12, 0.98)),
    linear-gradient(45deg, rgba(143, 162, 255, 0.13), transparent 45%);
  contain: layout paint;
  isolation: isolate;
}

#networkCanvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  color: transparent;
  background: transparent;
}

.ops-panel {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 6, 8, 0.76);
  backdrop-filter: blur(14px);
}

.ops-panel-header,
.ops-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ops-panel span,
.ops-row span {
  color: var(--muted);
  font-size: 0.76rem;
}

.ops-panel strong,
.ops-row strong {
  color: var(--ink);
  font-size: 0.83rem;
}

.ops-row {
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.ops-row:hover {
  border-color: rgba(143, 162, 255, 0.44);
  background: rgba(255, 255, 255, 0.075);
  transform: translateY(-1px);
}

.proof-strip {
  display: grid;
  gap: 10px;
  padding: 16px 0 42px;
}

.proof-strip article,
.profile-card,
.profile-note,
.work-card,
.project-detail,
.principle-list article,
.timeline-item,
.infra-copy,
.system-map {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.proof-strip article {
  padding: 0 0 16px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.proof-strip span,
.work-card span,
.timeline-item span,
.principle-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 830;
}

.proof-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.proof-strip p,
.profile-note p,
.work-card p,
.infra-copy p,
.principle-list p,
.timeline-item p,
.project-detail p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.profile-section,
.selected-section,
.project-section,
.infra-section,
.principle-section,
.timeline-section {
  padding: 48px 0;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.section-heading h2 {
  max-width: 820px;
}

.section-number {
  color: var(--paper);
  font-size: clamp(2.2rem, 12vw, 5.5rem);
  font-weight: 260;
  line-height: 0.9;
}

.profile-grid,
.infra-layout {
  display: grid;
  gap: 12px;
}

.profile-card,
.profile-note,
.infra-copy {
  padding: 18px;
}

.profile-name {
  display: grid;
  gap: 4px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.profile-name span,
.profile-note span {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 830;
}

.profile-name strong {
  color: var(--paper);
  font-size: clamp(2rem, 11vw, 4.2rem);
  font-weight: 780;
  line-height: 0.98;
}

.profile-name small {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 720;
}

.profile-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.profile-list div {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.profile-list div:first-child {
  padding-top: 0;
}

.profile-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.profile-list dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 780;
}

.profile-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 760;
  line-height: 1.5;
}

.profile-list a {
  color: var(--paper);
  text-decoration: underline;
  text-decoration-color: rgba(244, 240, 232, 0.34);
  text-underline-offset: 4px;
}

.profile-list a:hover {
  text-decoration-color: var(--paper);
}

.profile-note {
  display: grid;
  align-content: start;
  gap: 12px;
}

.profile-note div {
  display: grid;
  gap: 10px;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
}

.profile-note div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.work-list,
.principle-list,
.timeline {
  display: grid;
  gap: 0;
}

.story-lead {
  max-width: 860px;
  margin: -8px 0 24px;
  color: var(--soft);
  font-size: 1rem;
  line-height: 1.75;
  word-break: keep-all;
}

.work-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-width: 0 0 1px;
  border-radius: 0;
  background: transparent;
}

.work-card h3 {
  margin-bottom: 7px;
  color: var(--paper);
  font-size: clamp(1.35rem, 8vw, 2.75rem);
  letter-spacing: 0;
  line-height: 1.05;
}

.text-link {
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.text-link:hover {
  border-color: rgba(143, 162, 255, 0.42);
  background: rgba(255, 255, 255, 0.07);
}

.project-browser {
  display: grid;
  gap: 16px;
}

.project-rail {
  display: flex;
  gap: 8px;
  margin: 0 -16px;
  padding: 0 16px 4px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.project-rail::-webkit-scrollbar {
  display: none;
}

.project-tab {
  display: grid;
  flex: 0 0 156px;
  gap: 5px;
  min-height: 70px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  scroll-snap-align: start;
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease;
}

.project-tab span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 720;
}

.project-tab strong {
  overflow: hidden;
  color: var(--soft);
  font-size: 0.9rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-tab.active,
.project-tab:hover {
  border-color: rgba(143, 162, 255, 0.48);
  background: rgba(143, 162, 255, 0.1);
}

.project-tab.active strong {
  color: var(--ink);
}

.project-detail {
  display: grid;
  gap: 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.detail-meta span,
.tag-list li {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--soft);
  font-size: 0.76rem;
  font-weight: 760;
}

.detail-meta span:first-child {
  color: var(--accent);
}

.detail-meta span:nth-child(2) {
  color: var(--green);
}

.project-detail-copy h3 {
  margin-bottom: 10px;
  color: var(--paper);
  font-size: clamp(1.7rem, 9vw, 3.4rem);
  line-height: 1.02;
}

.detail-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.detail-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 820;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.detail-link svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.detail-link.github svg {
  stroke: none;
}

.detail-link.service {
  color: #06070a;
  border-color: rgba(244, 240, 232, 0.78);
  background: var(--paper);
}

.detail-link.github {
  color: var(--paper);
  border-color: rgba(244, 240, 232, 0.24);
  background: rgba(244, 240, 232, 0.08);
}

.detail-link:hover {
  border-color: rgba(143, 162, 255, 0.58);
  transform: translateY(-1px);
}

.detail-link.service:hover {
  background: #fffaf1;
}

.detail-link.github:hover {
  background: rgba(244, 240, 232, 0.13);
}

.case-layout {
  display: grid;
  gap: 18px;
  align-items: start;
}

.project-gallery {
  display: grid;
  gap: 10px;
}

.project-shot {
  position: relative;
  min-height: 190px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(18, 20, 30, 0.96), rgba(7, 8, 12, 0.96)),
    linear-gradient(45deg, rgba(143, 162, 255, 0.12), transparent);
}

.primary-shot {
  min-height: 250px;
}

.project-shot-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  transition: opacity 220ms ease;
}

.project-shot.has-image .project-shot-image {
  opacity: 1;
}

.project-shot.image-contain .project-shot-image {
  padding: 10px;
  background: #07080c;
}

.shot-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 20px;
  text-align: center;
}

.shot-fallback span {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 820;
}

.shot-fallback strong {
  font-size: 1.28rem;
}

.project-shot figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(5, 6, 8, 0.72);
  color: var(--soft);
  font-size: 0.78rem;
  backdrop-filter: blur(12px);
}

.case-sections {
  display: grid;
  gap: 0;
}

.case-section {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.case-number {
  width: 26px;
  height: 26px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 820;
}

.case-section h4 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 0.92rem;
}

.case-section strong {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
}

.case-section p {
  color: var(--soft);
  line-height: 1.7;
  word-break: keep-all;
}

.detail-foot {
  display: grid;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.detail-foot dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.detail-foot dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 780;
}

.detail-foot dd {
  margin: 0;
  color: var(--soft);
  line-height: 1.5;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.capability-grid span {
  display: grid;
  gap: 5px;
  min-height: 76px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.capability-grid strong {
  color: var(--ink);
  font-size: 0.86rem;
}

.capability-grid small,
.system-map small {
  color: var(--muted);
  line-height: 1.45;
}

.system-map {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.system-map article {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.system-map span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 830;
}

.system-map strong {
  color: var(--ink);
}

.principle-list article,
.timeline-item {
  padding: 18px 0;
  border-width: 0 0 1px;
  border-radius: 0;
  background: transparent;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 42px;
  color: var(--muted);
  font-size: 0.86rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 720px) {
  .section-shell {
    width: min(var(--max), calc(100% - 56px));
  }

  .site-header {
    width: min(var(--max), calc(100% - 56px));
    padding: 16px 0;
  }

  .site-nav a {
    padding: 9px 13px;
    font-size: 0.88rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.76fr);
    align-items: center;
    min-height: calc(100vh - 76px);
    padding: 70px 0 52px;
  }

  .hero-visual {
    height: clamp(420px, 42vw, 520px);
  }

  .proof-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-bottom: 64px;
  }

  .profile-section,
  .selected-section,
  .project-section,
  .infra-section,
  .principle-section,
  .timeline-section {
    padding: 62px 0;
  }

  .profile-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .infra-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .profile-card,
  .profile-note,
  .infra-copy {
    padding: 24px;
  }

  .profile-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
  }

  .profile-name {
    position: sticky;
    top: 96px;
    margin-bottom: 0;
    padding-right: 24px;
    padding-bottom: 0;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .profile-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
  }

  .profile-list div:nth-child(4),
  .profile-list div:nth-child(5) {
    grid-column: 1 / -1;
  }

  .profile-list div:nth-child(2) {
    padding-top: 0;
  }

  .profile-note {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .profile-note div {
    min-height: 100%;
    padding: 0 24px 0 0;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .profile-note div:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .project-detail {
    padding: 0;
  }

  .case-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 28px;
  }

  .case-layout .project-gallery {
    grid-template-columns: 1fr;
    position: sticky;
    top: 96px;
  }

  .case-layout .primary-shot {
    grid-row: auto;
    min-height: 360px;
  }

  .principle-list,
  .detail-foot dl {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .case-sections {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .detail-foot dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .system-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (min-width: 1040px) {
  .project-browser {
    grid-template-columns: 230px minmax(0, 1fr);
    align-items: start;
  }

  .project-rail {
    position: sticky;
    top: 90px;
    display: grid;
    margin: 0;
    padding: 8px;
    overflow: visible;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
  }

  .project-tab {
    flex: initial;
    min-height: 64px;
  }

  .project-detail {
    gap: 22px;
    padding: 0;
  }
}

@media (max-width: 480px) {
  .brand span:last-child {
    display: none;
  }

  .work-card {
    grid-template-columns: 1fr;
  }

  .text-link {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
