@font-face {
  font-family: "PortalKai";
  src: url("./fonts/portal-kai.v1.3.0.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "PortalText";
  src: url("./fonts/portal-text.v1.3.0.woff2") format("woff2");
  font-display: swap;
}

:root {
  color-scheme: dark;
  --page: #0f0f11;
  --surface: rgba(35, 35, 38, 0.82);
  --surface-strong: #ffffff;
  --text: #f5f5f7;
  --muted: #a1a1a6;
  --line: rgba(255, 255, 255, 0.09);
  --header: rgba(15, 15, 17, 0.82);
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  --card-border: rgba(255, 255, 255, 0.07);
  --card-overlay: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0));
  --chip: rgba(255, 255, 255, 0.07);
  --scene-panel: rgba(54, 54, 58, 0.72);
  --scene-panel-border: rgba(255, 255, 255, 0.08);
  --arrow-bg: #f5f5f7;
  --arrow-color: #1d1d1f;
  --body-wash: rgba(34, 34, 37, 0.62);
  --container: 1280px;
  --accent: #0a84ff;
  --portal-emphasis-font: "PortalKai", "STKaiti", "KaiTi", serif;
  --portal-text-font: "PortalText", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

:root[data-theme="light"] {
  color-scheme: light;
  --page: #f5f5f7;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --text: #1d1d1f;
  --muted: #6e6e73;
  --line: rgba(29, 29, 31, 0.09);
  --header: rgba(245, 245, 247, 0.82);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.07);
  --card-border: rgba(255, 255, 255, 0.62);
  --card-overlay: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.09));
  --chip: rgba(29, 29, 31, 0.055);
  --scene-panel: rgba(255, 255, 255, 0.68);
  --scene-panel-border: rgba(255, 255, 255, 0.62);
  --arrow-bg: #1d1d1f;
  --arrow-color: #ffffff;
  --body-wash: rgba(255, 255, 255, 0.78);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--page);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: linear-gradient(180deg, var(--body-wash) 0%, transparent 31rem), var(--page);
  color: var(--text);
  font-family: var(--portal-text-font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
a {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

a {
  text-decoration: none;
}

button {
  font: inherit;
}

[data-parallax] {
  --parallax-y: 0px;
  transform: translate3d(0, var(--parallax-y), 0);
  will-change: transform;
}

.ambient {
  position: fixed;
  z-index: -2;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.ambient-one {
  width: 31rem;
  height: 31rem;
  top: -18rem;
  right: -10rem;
  background: rgba(84, 163, 255, 0.23);
}

.ambient-two {
  width: 28rem;
  height: 28rem;
  top: 38rem;
  left: -17rem;
  background: rgba(190, 112, 255, 0.16);
}

.ambient-three {
  width: 24rem;
  height: 24rem;
  top: 92rem;
  right: -12rem;
  background: rgba(255, 159, 10, 0.12);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  width: 100%;
  padding-top: env(safe-area-inset-top, 0px);
  border-bottom: 1px solid var(--line);
  background: var(--header);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
}

.header-inner,
.page-shell,
.footer-inner {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-right: max(18px, env(safe-area-inset-right));
  padding-left: max(18px, env(safe-area-inset-left));
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  font-family: var(--portal-emphasis-font);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  grid-template-columns: repeat(2, 7px);
  grid-template-rows: repeat(2, 7px);
  gap: 2px;
}

.brand-mark span {
  display: block;
  border-radius: 50%;
  background: var(--text);
}

.brand-mark span:nth-child(2) {
  border-radius: 3px;
}

.brand-mark span:nth-child(3) {
  width: 16px;
  height: 5px;
  grid-column: 1 / 3;
  border-radius: 999px;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 8px;
}

.release-meta-header {
  color: var(--muted);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0;
  white-space: nowrap;
}

@media (max-width: 519px) {
  .header-actions {
    position: relative;
    width: 34px;
    height: 34px;
  }

  .release-meta-header {
    position: absolute;
    top: 50%;
    right: 42px;
    transform: translateY(-50%);
  }
}

.header-note {
  display: none;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0;
  white-space: nowrap;
}

.theme-toggle {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.theme-toggle:hover {
  border-color: var(--muted);
}

.theme-toggle:active {
  transform: scale(0.92);
}

.theme-toggle:focus-visible {
  outline: 3px solid rgba(10, 132, 255, 0.38);
  outline-offset: 3px;
}

.theme-toggle-icon {
  font-family: "Segoe UI Symbol", sans-serif;
  font-size: 16px;
  line-height: 1;
}

.page-shell {
  padding-right: max(18px, env(safe-area-inset-right));
  padding-left: max(18px, env(safe-area-inset-left));
}

.hero {
  position: relative;
  display: grid;
  min-height: 610px;
  align-items: center;
  padding: 56px 0 64px;
}

.hero-copy-block {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0;
}

.hero h1 {
  display: grid;
  gap: 0.06em;
  max-width: 100%;
  margin: 16px 0 0;
  font-family: var(--portal-emphasis-font);
  font-size: clamp(40px, 11.8vw, 48px);
  font-weight: 720;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

.hero-copy {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

.hero-scene {
  position: relative;
  width: min(100%, 360px);
  height: 260px;
  margin: 36px auto 0;
}

.scene-layer {
  position: absolute;
  inset: 0;
}

.scene-layer > span {
  position: absolute;
  display: block;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.scene-disc {
  width: 154px;
  height: 154px;
  right: 6%;
  bottom: 7%;
  border-radius: 50%;
  background: linear-gradient(145deg, #66b2ff, #0a84ff);
}

.scene-panel {
  width: 196px;
  height: 128px;
  top: 18%;
  left: 5%;
  border: 1px solid var(--scene-panel-border);
  border-radius: 32px;
  background: var(--scene-panel);
  transform: rotate(-9deg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.scene-capsule {
  width: 60px;
  height: 152px;
  top: 1%;
  right: 25%;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffbd54, #ff7a00);
  transform: rotate(29deg);
}

.scene-grid {
  position: absolute;
  left: 18%;
  bottom: 9%;
  width: 120px;
  height: 82px;
  opacity: 0.18;
  background-image: linear-gradient(var(--text) 1px, transparent 1px), linear-gradient(90deg, var(--text) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(135deg, #000 20%, transparent 92%);
  -webkit-mask-image: linear-gradient(135deg, #000 20%, transparent 92%);
}

.tool-section {
  padding: 20px 0 72px;
}

.section-heading {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.section-heading h2 {
  margin: 7px 0 0;
  font-family: var(--portal-emphasis-font);
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0;
}

.tool-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.tool-card {
  --scroll-visibility: 1;
  --scroll-shift: 0px;
  position: relative;
  display: grid;
  min-height: 360px;
  padding: 20px;
  overflow: hidden;
  grid-template-rows: auto auto 1fr auto;
  border: 1px solid var(--card-border);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.tool-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--card-overlay);
  content: "";
}

.tool-card::after {
  position: absolute;
  z-index: -2;
  right: -86px;
  bottom: -102px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  opacity: 0.11;
  content: "";
}

.card-blue::after { background: #0a84ff; }
.card-orange::after { background: #ff9f0a; }
.card-violet::after { background: #bf5af2; }
.card-green::after { background: #30d158; }

.spectrum-icon {
  overflow: hidden;
  background: linear-gradient(145deg, #6857e5, #9d71f4);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.spectrum-axis {
  position: absolute;
  right: 17px;
  bottom: 17px;
  left: 17px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
}

.spectrum-bar {
  position: absolute;
  bottom: 19px;
  width: 13px;
  border-radius: 7px 7px 2px 2px;
  background: #ffffff;
}

.spectrum-a { left: 20px; height: 31px; opacity: 0.72; }
.spectrum-b { left: 47px; height: 58px; }
.spectrum-c { right: 20px; height: 43px; opacity: 0.86; }

.spectrum-glow {
  position: absolute;
  width: 48px;
  height: 48px;
  top: -13px;
  right: -12px;
  border-radius: 50%;
  background: rgba(143, 255, 225, 0.66);
  filter: blur(5px);
}

.tool-card-active {
  transition: transform 220ms cubic-bezier(.2, .8, .2, 1), box-shadow 220ms ease, border-color 220ms ease;
}

.tool-card-active:active {
  transform: scale(0.985);
}

.tool-card-active:focus-visible {
  outline: 4px solid rgba(10, 132, 255, 0.32);
  outline-offset: 4px;
}

.card-topline,
.card-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.status-dot,
.status-pending {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  gap: 6px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--chip);
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  white-space: nowrap;
}

.status-dot i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #30b45a;
  box-shadow: 0 0 0 4px rgba(48, 180, 90, 0.11);
}

.status-meta {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
}

.card-version {
  color: color-mix(in srgb, var(--muted) 82%, transparent);
  font-size: 11px;
  font-weight: 650;
  white-space: nowrap;
}

.card-number {
  color: color-mix(in srgb, var(--muted) 66%, transparent);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0;
  white-space: nowrap;
}

.card-visual {
  height: 142px;
  align-self: start;
}

.abstract-icon {
  position: relative;
  width: 108px;
  height: 108px;
  margin: 26px 0 28px;
  border-radius: 28px;
  transform-origin: left top;
}

.qr-icon {
  background: #0a84ff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.qr-cell {
  position: absolute;
  display: block;
  border-radius: 6px;
  background: #ffffff;
}

.qr-a { width: 31px; height: 31px; top: 16px; left: 16px; box-shadow: inset 0 0 0 8px #0a84ff; }
.qr-b { width: 28px; height: 28px; top: 16px; right: 16px; box-shadow: inset 0 0 0 7px #0a84ff; }
.qr-c { width: 29px; height: 29px; bottom: 16px; left: 16px; box-shadow: inset 0 0 0 7px #0a84ff; }
.qr-d { width: 13px; height: 29px; right: 18px; bottom: 16px; }
.qr-e { width: 13px; height: 13px; right: 36px; bottom: 16px; }

.food-icon {
  overflow: hidden;
  background: #ff9f0a;
}

.food-orbit,
.food-core,
.food-slice {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.food-orbit { width: 78px; height: 78px; top: 15px; left: 15px; border: 13px solid rgba(255, 255, 255, 0.88); }
.food-core { width: 31px; height: 31px; top: 38px; left: 38px; background: #ffffff; }
.food-slice { width: 62px; height: 62px; top: -8px; right: -10px; border-radius: 0 0 0 62px; background: #ffcc72; }

.lancelot-icon {
  display: grid;
  place-items: center;
  background: var(--chip);
}

.lancelot-icon span {
  position: absolute;
  display: block;
  border-radius: 999px;
}

.placeholder-one span:nth-child(1) { width: 66px; height: 20px; background: #bf5af2; transform: rotate(38deg); }
.placeholder-one span:nth-child(2) { width: 20px; height: 66px; background: #d99af7; transform: rotate(38deg); }
.placeholder-one span:nth-child(3) { width: 24px; height: 24px; background: #ffffff; }
.lancelot-icon span:nth-child(1) { width: 64px; height: 64px; border: 16px solid #30d158; }
.lancelot-icon span:nth-child(2) { width: 31px; height: 31px; top: 14px; right: 14px; border-radius: 9px; background: #9ce7ad; }
.lancelot-icon span:nth-child(3) { width: 21px; height: 21px; bottom: 14px; left: 14px; border-radius: 50%; background: #ffffff; }

.card-content {
  min-width: 0;
  align-self: end;
}

.card-content h3 {
  margin: 0;
  font-family: var(--portal-emphasis-font);
  font-size: clamp(27px, 7.6vw, 35px);
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: 0;
}

.card-subtitle {
  max-width: 100%;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0;
}

.tool-secondary .card-content h3 {
  overflow: hidden;
  font-size: clamp(26px, 6.9vw, 33px);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.secondary-details {
  min-width: 0;
}

.tool-secondary .secondary-details .card-subtitle {
  font-size: 14px;
  line-height: 1.55;
}

.card-action {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0;
}

.arrow {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--arrow-bg);
  color: var(--arrow-color);
  font-size: 16px;
  transition: transform 220ms ease;
}

.tool-card-placeholder {
  min-height: 310px;
  box-shadow: none;
}

.muted-action {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 7px;
  padding: 24px max(18px, env(safe-area-inset-right)) calc(30px + env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left));
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0;
}

.footer-inner p {
  margin: 0;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .header-inner,
  .page-shell,
  .footer-inner {
    padding-right: max(36px, env(safe-area-inset-right));
    padding-left: max(36px, env(safe-area-inset-left));
  }

  .header-inner { min-height: 66px; }
  .header-note { display: inline; }

  .page-shell {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(390px, 1.18fr);
    gap: clamp(34px, 5vw, 58px);
    align-items: stretch;
  }

  .hero {
    position: relative;
    min-height: auto;
    align-self: stretch;
    align-content: start;
    padding: 54px 0 56px;
  }

  .hero-copy-block {
    position: sticky;
    top: calc(66px + 54px + env(safe-area-inset-top, 0px));
    align-self: start;
  }

  .hero h1 {
    font-size: clamp(52px, 5.4vw, 62px);
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-scene {
    width: min(100%, 310px);
    height: 260px;
    margin: 26px 0 0;
    opacity: 0.88;
  }

  .scene-disc { width: 168px; height: 168px; }
  .scene-panel { width: 198px; height: 130px; }
  .scene-capsule { width: 58px; height: 156px; }

  .tool-section {
    min-width: 0;
    padding: 76px 0 100px;
  }

  .section-heading {
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: row;
  }

  .tool-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tool-card {
    min-height: 430px;
    padding: 26px;
    border-radius: 32px;
  }

  .card-visual { height: 174px; }
  .abstract-icon { margin: 32px 0; transform: scale(1.12); }
  .tool-card-placeholder { min-height: 350px; }

  .card-content,
  .card-action {
    opacity: var(--scroll-visibility);
    transform: translate3d(0, var(--scroll-shift), 0);
    will-change: opacity, transform;
  }

  .footer-inner {
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
  }
}

@media (min-width: 1000px) and (max-width: 1199px) and (orientation: landscape) {
  .tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .tool-card,
  .tool-card-placeholder {
    min-height: 380px;
    padding: 20px;
    border-radius: 28px;
  }

  .card-visual { height: 144px; }
  .abstract-icon { margin: 26px 0 24px; transform: scale(1); }
  .card-content h3 { font-size: clamp(25px, 2.7vw, 29px); }
  .tool-secondary .card-content h3 { font-size: clamp(24px, 2.5vw, 28px); }
  .card-subtitle { font-size: 13px; }
}

@media (min-width: 1200px) {
  .header-inner,
  .page-shell,
  .footer-inner {
    padding-right: max(64px, env(safe-area-inset-right));
    padding-left: max(64px, env(safe-area-inset-left));
  }

  .header-inner { min-height: 70px; }
  .header-note { display: inline; }

  .page-shell {
    display: grid;
    grid-template-columns: minmax(420px, 0.88fr) minmax(660px, 1.12fr);
    gap: clamp(52px, 5vw, 88px);
    align-items: stretch;
  }

  .hero {
    position: relative;
    min-height: auto;
    align-self: stretch;
    align-content: start;
    padding: 70px 0;
  }

  .hero-copy-block {
    position: sticky;
    top: calc(70px + 70px + env(safe-area-inset-top, 0px));
    align-self: start;
  }

  .hero h1 {
    font-size: clamp(68px, 5.2vw, 82px);
  }

  .hero-copy {
    max-width: 530px;
    font-size: 19px;
  }

  .hero-scene {
    width: min(100%, 420px);
    height: 340px;
    margin: 30px 0 0;
  }

  .scene-disc { width: 214px; height: 214px; right: 2%; }
  .scene-panel { width: 260px; height: 168px; }
  .scene-capsule { width: 72px; height: 198px; right: 22%; }
  .scene-grid { width: 160px; height: 112px; }

  .tool-section {
    min-width: 0;
    padding: 96px 0 120px;
  }

  .section-heading {
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: row;
    margin-bottom: 28px;
  }

  .section-heading h2 { font-size: 44px; }

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

  .tool-primary { grid-column: span 7; }
  .tool-secondary { grid-column: span 5; }
  .tool-dataspectrum,
  .tool-lancelot { grid-column: span 6; }

  .tool-card {
    min-height: 490px;
    padding: 28px;
    border-radius: 34px;
  }

  .card-visual { height: 204px; }
  .tool-primary .abstract-icon { transform: scale(1.34); }
  .tool-secondary .abstract-icon { transform: scale(1.2); }
  .tool-dataspectrum .abstract-icon,
  .tool-lancelot .abstract-icon { transform: scale(1.12); }
  .abstract-icon { margin: 38px 0 34px; }
  .tool-primary .card-content h3 { font-size: 38px; }
  .tool-secondary .card-content h3 { font-size: clamp(28px, 2.35vw, 33px); }
  .card-subtitle { font-size: 15px; }
  .tool-card-placeholder { min-height: 370px; }

  .card-content,
  .card-action {
    opacity: var(--scroll-visibility);
    transform: translate3d(0, var(--scroll-shift), 0);
    will-change: opacity, transform;
  }

  .tool-card-active:hover {
    transform: translateY(-6px);
    border-color: var(--surface-strong);
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.16);
  }

  .tool-card-active:hover .arrow {
    transform: translate(2px, -2px);
  }

  .footer-inner {
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
  }
}

@media (min-width: 1200px) and (hover: hover) and (pointer: fine) {
  .tool-secondary .secondary-details {
    --secondary-detail-offset: 8px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, calc(var(--scroll-shift) + var(--secondary-detail-offset)), 0);
    transition: max-height 240ms ease, opacity 180ms ease, transform 220ms ease;
  }

  .tool-secondary .secondary-details .card-action {
    margin-top: 16px;
    padding-top: 12px;
  }

  .tool-secondary:hover .secondary-details,
  .tool-secondary:focus-visible .secondary-details {
    --secondary-detail-offset: 0px;
    max-height: 136px;
    opacity: var(--scroll-visibility);
    pointer-events: auto;
  }

}

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

  [data-parallax] {
    --parallax-y: 0px !important;
    transform: none !important;
    will-change: auto;
  }

  .tool-card-active,
  .arrow,
  .theme-toggle,
  .tool-secondary .secondary-details {
    transition: none;
  }

  .tool-card-active:hover,
  .tool-card-active:active {
    transform: none;
  }

  .card-content,
  .card-action {
    opacity: 1 !important;
    transform: none !important;
    will-change: auto;
  }
}
