@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("/fonts/ibm-plex-sans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "IBM Plex Sans Fallback";
  src: local("Arial");
  ascent-override: 101.32%;
  descent-override: 27.18%;
  line-gap-override: 0%;
  size-adjust: 101.17%;
}

:root {
  color: #0f172a;
  background: #fff;
  font-family:
    "IBM Plex Sans", "IBM Plex Sans Fallback", "PingFang SC", "Microsoft YaHei", system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #fff;
  color: #0f172a;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

body.landscape-open {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

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

button {
  border: 0;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-right: 24px;
  padding-left: 24px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid #f1f5f9;
  background: rgb(255 255 255 / 95%);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  height: 64px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0f172a;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.brand-mark {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #0f172a;
  color: #fff;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 8px;
  background: #0f172a;
  color: #fff;
  font-weight: 500;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.button:hover {
  background: #1e293b;
}

.button:focus-visible,
.video-control:focus-visible,
.video-play:focus-visible {
  outline: 3px solid #2563eb;
  outline-offset: 3px;
}

.button-small {
  min-height: 32px;
  padding: 0 20px;
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #f8fafc 0%, #eff6ff 30%, #f8fafc 60%, #fefce8 100%);
}

.hero-glow {
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  filter: blur(120px);
}

.hero-glow-right {
  top: -240px;
  right: 0;
  width: 700px;
  height: 700px;
  background: #1e3a8a;
  opacity: 0.07;
}

.hero-glow-left {
  bottom: 0;
  left: -160px;
  width: 500px;
  height: 500px;
  background: #ca8a04;
  opacity: 0.05;
  filter: blur(100px);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100dvh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.trust-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

.trust-badge svg {
  width: 14px;
  height: 14px;
}

.trust-badge-blue {
  border-color: #dbeafe;
  background: rgb(239 246 255 / 80%);
  color: #1e3a8a;
}

.trust-badge-green {
  border-color: #d1fae5;
  background: rgb(236 253 245 / 80%);
  color: #047857;
}

.hero-title {
  margin: 0;
  text-align: center;
  font-size: 72px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.golden-text {
  background: linear-gradient(135deg, #92400e 0%, #ca8a04 45%, #a16207 100%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-summary {
  max-width: 672px;
  margin: 32px 0 0;
  color: #475569;
  text-align: center;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.625;
}

.hero-summary span {
  color: #64748b;
}

.hero-network {
  margin: 16px 0 0;
  color: #94a3b8;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-align: center;
}

.hero-actions {
  margin-top: 40px;
}

.button-primary {
  min-height: 48px;
  border-radius: 12px;
  padding: 0 16px;
  font-size: 16px;
  box-shadow: 0 10px 25px -5px rgb(15 23 42 / 10%);
}

.button-primary:hover {
  box-shadow: 0 20px 35px -10px rgb(15 23 42 / 18%);
  transform: translateY(-1px);
}

.button-primary svg {
  width: 16px;
  height: 16px;
  margin-left: 12px;
}

.capability-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
  color: #94a3b8;
  font-size: 12px;
  line-height: 16px;
}

.capability-list span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
}

.dot-green { background: #10b981; }
.dot-blue { background: #3b82f6; }
.dot-amber { background: #f59e0b; }
.dot-violet { background: #8b5cf6; }

.hero-disclaimer {
  max-width: 660px;
  margin: 24px 0 0;
  color: #cbd5e1;
  text-align: center;
  font-size: 11px;
  line-height: 1.625;
}

.video-section {
  position: relative;
  display: flex;
  width: 100%;
  min-height: calc(100svh - 64px);
  align-items: center;
  overflow: hidden;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
  background: #fff;
  padding: 96px 0;
}

.gold-line {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(to right, transparent, rgb(252 211 77 / 70%), transparent);
}

.video-layout {
  display: grid;
  width: 100%;
  max-width: 1536px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  gap: 40px;
  margin: 0 auto;
  padding: 0 48px;
}

.video-copy {
  display: flex;
  grid-column: span 3;
  align-self: stretch;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 0;
}

.video-eyebrow {
  color: #ca8a04;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.video-eyebrow-desktop {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}

.video-eyebrow-desktop i {
  width: 32px;
  height: 1px;
  flex: none;
  background: currentColor;
}

.video-eyebrow-mobile {
  display: none;
}

.video-copy h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(2.25rem, 3.25vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.video-copy h2 span {
  display: block;
}

.video-copy h2 span + span {
  margin-top: 8px;
}

.video-copy > p {
  margin: 0;
  color: #475569;
  font-size: 18px;
  line-height: 1.75;
}

.video-copy-line {
  width: 64px;
  height: 1px;
  background: #ca8a04;
}

.served-count {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #475569;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.served-count strong {
  color: #2563eb;
  font-size: 14px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack img {
  width: 32px;
  height: 32px;
  margin-left: -8px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #f1f5f9;
  object-fit: cover;
  box-shadow: 0 1px 2px rgb(15 23 42 / 8%);
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.video-column {
  grid-column: span 9;
}

.video-stage {
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #020617;
  box-shadow: 0 24px 70px -42px rgb(15 23 42 / 65%);
}

.video-frame,
.video-unavailable {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #020617;
}

.video-frame[hidden] {
  display: none;
}

.video-unavailable[hidden] {
  display: none;
}

.video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgb(2 6 23 / 45%);
  color: rgb(255 255 255 / 90%);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.025em;
  transition: background-color 0.2s ease;
}

.video-play[hidden] {
  display: none;
}

.video-play:hover {
  background: rgb(2 6 23 / 35%);
}

.video-play span {
  display: flex;
  width: 80px;
  height: 80px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid rgb(255 255 255 / 30%);
  border-radius: 50%;
  background: #fff;
  color: #0f172a;
  box-shadow: 0 20px 30px rgb(0 0 0 / 25%);
  transition: transform 0.2s ease;
}

.video-play:hover span {
  transform: scale(1.05);
}

.video-play svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
  fill: currentColor;
}

.video-control {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 50%;
  background: rgb(0 0 0 / 55%);
  color: #fff;
  backdrop-filter: blur(8px);
}

.video-control:hover {
  background: rgb(0 0 0 / 75%);
}

.video-control svg {
  width: 20px;
  height: 20px;
}

.mobile-landscape,
.close-landscape {
  display: none;
}

.video-unavailable {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  padding: 24px;
  text-align: center;
}

.video-unavailable-icon {
  display: flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  background: #fff;
  color: #64748b;
  box-shadow: 0 1px 2px rgb(15 23 42 / 8%);
}

.video-unavailable-icon svg {
  width: 24px;
  height: 24px;
}

.video-unavailable strong {
  margin-top: 16px;
  color: #334155;
  font-size: 16px;
}

.video-unavailable > span:last-child {
  margin-top: 8px;
  color: #64748b;
  font-size: 14px;
}

.content-section {
  width: 100%;
  padding: 112px 0;
  background: #fff;
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 20px;
  color: #0f172a;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.section-heading p {
  max-width: 600px;
  margin: 0;
  color: #64748b;
  font-size: 18px;
  line-height: 1.625;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 72px;
  padding-right: 80px;
  padding-left: 80px;
}

.step-card {
  position: relative;
  min-width: 0;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  padding: 32px;
  box-shadow: 0 1px 3px rgb(0 0 0 / 4%);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgb(0 0 0 / 6%);
}

.step-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.step-icon {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
}

.step-icon svg {
  width: 22px;
  height: 22px;
}

.step-icon-blue { background: #1e3a8a; }
.step-icon-dark { background: #0f172a; }
.step-icon-green { background: #059669; }

.step-number {
  color: #f1f5f9;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 30px;
  font-weight: 700;
}

.step-card h3 {
  margin: 0 0 12px;
  color: #0f172a;
  font-size: 18px;
  line-height: 28px;
}

.step-card > p {
  margin: 0 0 24px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.625;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list span {
  border: 1px solid #f1f5f9;
  border-radius: 6px;
  background: #f8fafc;
  padding: 4px 10px;
  color: #64748b;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

.step-arrow {
  position: absolute;
  top: 50%;
  right: -13px;
  z-index: 2;
  display: flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  background: #fff;
  color: #cbd5e1;
  font-size: 24px;
  font-style: normal;
  line-height: 1;
  transform: translateY(-50%);
}

.sandbox-layout {
  display: flex;
  align-items: center;
  gap: 64px;
  margin-top: 64px;
  padding-right: 80px;
  padding-left: 80px;
}

.terminal-shell,
.sandbox-copy {
  width: 50%;
}

.terminal-shell {
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgb(0 0 0 / 4%);
}

.terminal {
  width: 100%;
  height: 400px;
  overflow: hidden;
  background: #0f172a;
  color: #e2e8f0;
}

.terminal-top {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid #334155;
  padding: 16px;
}

.terminal-top i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
}

.terminal-top i:nth-child(2) { background: #eab308; }
.terminal-top i:nth-child(3) { background: #22c55e; }

.terminal pre {
  height: calc(100% - 41px);
  margin: 0;
  padding: 16px;
  overflow: auto;
  white-space: pre-wrap;
}

.terminal code {
  display: grid;
  gap: 4px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 14px;
  line-height: 1.45;
}

.terminal-line {
  display: block;
  opacity: 0;
  transform: translateY(-5px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.terminal-line.visible {
  opacity: 1;
  transform: translateY(0);
}

.terminal .amber { color: #fbbf24; }
.terminal .green { color: #4ade80; }
.terminal .blue { color: #60a5fa; }
.terminal .green-strong { color: #22c55e; }
.terminal .emerald { color: #34d399; }

.sandbox-copy {
  color: #64748b;
}

.sandbox-eyebrow {
  margin: 0 0 12px;
  color: #ca8a04;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sandbox-copy h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.sandbox-copy > p:not(.sandbox-eyebrow) {
  margin: 24px 0 0;
  font-size: 16px;
  line-height: 1.75;
}

.tag-list-large {
  gap: 10px;
  margin-top: 24px;
}

.tag-list-large span {
  padding: 6px 12px;
}

.site-footer {
  margin-top: 80px;
  padding-bottom: 32px;
  text-align: center;
}

.site-footer hr {
  height: 1px;
  margin: 0;
  border: 0;
  background: #f1f5f9;
}

.site-footer > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: rgb(203 213 225 / 80%);
}

.site-footer p {
  margin: 0;
}

.site-footer .footer-title {
  color: #94a3b8;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.site-footer .footer-title + p {
  font-size: 14px;
  line-height: 1.55;
}

.filing-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 12px;
  margin-top: 4px;
}

.filing-links[hidden] {
  display: none;
}

.filing-links a {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  color: #64748b;
  font-size: 12px;
  line-height: 1.4;
}

.filing-links a:hover {
  color: #1e293b;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.filing-links img {
  margin-right: 6px;
  opacity: 0.6;
}

.filing-links i {
  width: 1px;
  height: 12px;
  background: #cbd5e1;
}

.action-notice {
  position: fixed;
  right: 50%;
  bottom: 28px;
  z-index: 10000;
  max-width: calc(100vw - 32px);
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 10px;
  background: rgb(15 23 42 / 94%);
  color: #fff;
  padding: 11px 16px;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transform: translate(50%, 10px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.action-notice.visible {
  opacity: 1;
  transform: translate(50%, 0);
}

.noscript {
  position: fixed;
  inset: auto 16px 16px;
  z-index: 10001;
  margin: 0;
  border-radius: 8px;
  background: #0f172a;
  color: #fff;
  padding: 12px;
  text-align: center;
  font-size: 13px;
}

@media (max-width: 1023px) {
  .video-section {
    min-height: 0;
    padding: 80px 0;
  }

  .video-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 32px;
  }

  .video-copy,
  .video-column {
    grid-column: auto;
  }

  .video-copy {
    order: 2;
    max-width: 620px;
    gap: 28px;
    padding: 0;
  }

  .video-column {
    order: 1;
  }

  .video-copy h2 span {
    display: inline;
  }

  .video-copy h2 span + span {
    margin: 0;
  }

  .step-grid,
  .sandbox-layout {
    padding-right: 32px;
    padding-left: 32px;
  }

  .step-card {
    padding: 24px;
  }

  .sandbox-layout {
    gap: 40px;
  }
}

@media (min-width: 1280px) {
  .video-eyebrow-desktop {
    font-size: 18px;
  }

  .video-copy h2 {
    font-size: 48px;
  }
}

@media (max-width: 767px) {
  .container {
    padding-right: 16px;
    padding-left: 16px;
  }

  .header-inner {
    height: 56px;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
  }

  .button-small {
    min-height: 32px;
    padding: 0 16px;
    font-size: 13px;
  }

  .trust-badges {
    gap: 12px;
    margin-bottom: 24px;
  }

  .trust-badge {
    padding: 6px 12px;
  }

  .hero-title {
    font-size: 30px;
    line-height: 1.25;
    letter-spacing: -0.025em;
  }

  .hero-summary {
    margin-top: 24px;
    font-size: 16px;
  }

  .hero-actions {
    margin-top: 40px;
  }

  .button-primary {
    min-height: 48px;
    padding: 0 16px;
  }

  .capability-list {
    gap: 16px;
    margin-top: 32px;
  }

  .hero-disclaimer {
    margin-top: 20px;
  }

  .video-section {
    border-top: 0;
    border-bottom: 0;
    padding: 48px 0;
  }

  .video-layout {
    gap: 48px;
    padding: 0 16px;
  }

  .video-eyebrow-desktop,
  .video-copy-line {
    display: none;
  }

  .video-eyebrow-mobile {
    display: block;
    margin: 0 0 24px;
    font-size: 18px;
  }

  .video-copy {
    gap: 0;
  }

  .video-copy h2 {
    font-size: 30px;
  }

  .video-copy > p {
    margin-top: 40px;
    font-size: 16px;
  }

  .served-count {
    margin-top: 48px;
  }

  .video-play span {
    width: 64px;
    height: 64px;
  }

  .desktop-fullscreen {
    display: none;
  }

  .mobile-landscape {
    display: flex;
  }

  .video-stage.is-mobile-landscape {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    width: 100vw;
    height: 100dvh;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 0;
    background: #020617;
  }

  .video-stage.is-mobile-landscape .video-frame {
    width: 100dvh;
    height: 100vw;
    flex: none;
    aspect-ratio: auto;
    transform: rotate(90deg);
    transform-origin: center;
  }

  .video-stage.is-mobile-landscape .mobile-landscape,
  .video-stage.is-mobile-landscape .desktop-fullscreen {
    display: none;
  }

  .video-stage.is-mobile-landscape .close-landscape {
    display: flex;
  }

  .content-section {
    padding: 56px 0;
  }

  .section-heading {
    padding: 0 16px;
  }

  .section-heading h2 {
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 32px;
  }

  .section-heading p {
    font-size: 14px;
  }

  .step-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 56px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .step-card {
    padding: 28px;
  }

  .step-card > p {
    min-height: 0;
  }

  .step-arrow {
    display: none;
  }

  .sandbox-layout {
    flex-direction: column;
    gap: 48px;
    margin-top: 56px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .terminal-shell,
  .sandbox-copy {
    width: 100%;
  }

  .terminal {
    height: 320px;
  }

  .terminal code {
    font-size: 12px;
  }

  .sandbox-copy h2 {
    font-size: 30px;
  }

  .site-footer {
    margin-top: 56px;
  }

  .site-footer > div {
    line-height: 1.6;
  }

  .filing-links i {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .terminal-line {
    opacity: 1;
    transform: none;
  }
}
