:root {
  --teal-950: #0a2b27;
  --teal-900: #0d3833;
  --teal-800: #0f4b44;
  --teal-700: #136059;
  --teal-600: #177d72;
  --teal-500: #249688;
  --bone: #f7f2ea;
  --bone-dim: #efe7da;
  --ink: #182420;
  --ink-soft: #4e5c57;
  --orange: #e2672a;
  --orange-light: #f0925c;
  --gold: #c9a15a;
  --line: rgba(24, 36, 32, 0.12);
  --line-dark: rgba(247, 242, 234, 0.16);
  --shadow: 0 20px 60px rgba(10, 43, 39, 0.16);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .strip-track {
    animation: none;
  }
}
body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: var(--orange);
  color: white;
}
a {
  color: inherit;
}
img,
svg {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
h4 {
  font-family: "Fraunces", serif;
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.mono {
  font-family: "IBM Plex Mono", monospace;
}
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) {
  .wrap {
    padding: 0 20px;
  }
}
.eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--orange);
  display: inline-block;
}
section {
  padding: 112px 0;
  position: relative;
}
@media (max-width: 720px) {
  section {
    padding: 72px 0;
  }
}
.surface-alt {
  background: var(--bone-dim);
}
.dark {
  background: var(--teal-950);
  color: var(--bone);
}
.dark .ink-soft-local {
  color: #b9cfc9;
}
.section-head {
  max-width: 680px;
  margin-bottom: 56px;
}
.section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-top: 14px;
}
.section-head p {
  margin-top: 16px;
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 560px;
}
.dark .section-head p {
  color: #afc9c3;
}
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 43, 39, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-dark);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  height: 36px;
  width: auto;
  display: block;
}
.foot-logo {
  height: 30px;
  width: auto;
  display: block;
  opacity: 0.92;
}
.nav-cta {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-950);
  background: var(--orange);
  padding: 11px 20px;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
}
.nav-cta:hover {
  background: var(--orange-light);
}
.hero {
  background:
    radial-gradient(
      ellipse 900px 500px at 85% -10%,
      rgba(226, 103, 42, 0.16),
      transparent 60%
    ),
    linear-gradient(180deg, var(--teal-950), #0c332f 60%, var(--teal-950));
  color: var(--bone);
  padding: 88px 0 100px;
  overflow: hidden;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.hero h1 {
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 1.05;
  margin-top: 22px;
  color: var(--bone);
}
.hero h1 em {
  font-style: italic;
  color: var(--orange-light);
  font-weight: 500;
}
.hero-sub {
  margin-top: 24px;
  font-size: 18px;
  color: #b9cfc9;
  max-width: 480px;
  line-height: 1.65;
}
.hero-ctas {
  margin-top: 38px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-primary {
  background: var(--orange);
  color: var(--teal-950);
  font-weight: 700;
  text-decoration: none;
  padding: 15px 26px;
  border-radius: 2px;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 30px rgba(226, 103, 42, 0.28);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(226, 103, 42, 0.36);
}
.btn-ghost {
  color: var(--bone);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 600;
  border-bottom: 1px solid var(--line-dark);
  padding-bottom: 3px;
}
.hero-tagline {
  margin-top: 52px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6e938b;
}
.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: clamp(420px, 42vw, 520px);
  margin: 0 auto;
}
.hero-art-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(226, 103, 42, 0.3), transparent 62%),
    radial-gradient(circle at 50% 50%, rgba(201, 161, 90, 0.14), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
}
.hero-art-ring {
  position: absolute;
  width: min(100%, 520px);
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(226, 103, 42, 0.28);
  border-radius: 50%;
  pointer-events: none;
}
.hero-art-ring--inner {
  width: min(82%, 430px);
  border-color: rgba(201, 161, 90, 0.22);
  transform: translate(-50%, -50%);
}
.hero-image-frame {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(226, 103, 42, 0.42);
  background: linear-gradient(180deg, #0f4b44, #0a2b27);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.34),
    0 0 0 10px rgba(226, 103, 42, 0.1);
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  transform: scale(1.12);
  mix-blend-mode: screen;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.3));
}
@media (max-width: 900px) {
  .hero-art {
    min-height: 380px;
    margin-top: 8px;
  }
  .hero-image-frame {
    width: min(100%, 360px);
  }
  .hero-art-ring {
    width: min(100%, 400px);
  }
  .hero-art-ring--inner {
    width: min(82%, 330px);
  }
}
@media (max-width: 520px) {
  .hero-art {
    min-height: 320px;
  }
  .hero-image-frame {
    width: min(100%, 300px);
  }
}
.strip {
  background: var(--bone-dim);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  overflow: hidden;
}
.strip-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: scroll 28s linear infinite;
  width: max-content;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.strip-item {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 14px;
}
.strip-item::after {
  content: "•";
  color: var(--gold);
  margin-left: 14px;
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 760px) {
  .compare-grid {
    grid-template-columns: 1fr;
  }
}
.compare-col {
  background: var(--bone);
  padding: 44px 40px;
}
.compare-col.featured {
  background: var(--teal-950);
  color: var(--bone);
}
.compare-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.compare-col.featured .compare-label {
  color: var(--orange-light);
}
.compare-col h3 {
  font-size: 24px;
  margin-top: 10px;
}
.compare-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.compare-list li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.compare-col.featured .compare-list li {
  color: #c7deda;
}
.compare-list li .mark {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) {
  .pillars {
    grid-template-columns: 1fr;
  }
}
.pillar-card {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 34px 30px;
  background: white;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.pillar-num {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.pillar-card h3 {
  font-size: 22px;
}
.pillar-card p {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin: 0;
}
.pillar-metric {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-600);
}
.ledger {
  display: flex;
  flex-direction: column;
}
.ledger-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.dark .ledger-row {
  border-bottom: 1px solid var(--line-dark);
}
.ledger-row:first-child {
  padding-top: 0;
}
.ledger.compact {
  margin-top: 4px;
}
.ledger-name {
  font-size: 16.5px;
  font-weight: 600;
  white-space: nowrap;
}
.ledger-dots {
  flex: 1;
  border-bottom: 2px dotted var(--gold);
  position: relative;
  top: -5px;
  opacity: 0.6;
}
.ledger-value {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  color: var(--ink-soft);
  text-align: right;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .ledger-row {
    flex-wrap: wrap;
  }
  .ledger-name {
    white-space: normal;
  }
  .ledger-dots {
    display: none;
  }
  .ledger-value {
    order: 3;
    width: 100%;
    text-align: left;
    margin-top: 2px;
  }
}
.dark .ledger-value {
  color: #afc9c3;
}
.ledger-desc {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  color: var(--ink-soft);
  font-weight: 400;
  margin-top: 6px;
}
.dark .ledger-desc {
  color: #93b3ac;
}
.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 860px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.two-col.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}
.two-col.reverse > :last-child {
  order: -1;
}
@media (max-width: 860px) {
  .two-col.reverse {
    grid-template-columns: 1fr;
  }
  .two-col.reverse > :last-child {
    order: 0;
  }
}
.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--teal-950);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.icon-badge.accent,
.dark .icon-badge {
  background: var(--orange);
}
.icon-badge svg {
  width: 24px;
  height: 24px;
}
.pillar-intro-title {
  font-size: 26px;
  margin-top: 20px;
}
.pillar-intro-copy {
  color: var(--ink-soft);
  margin-top: 14px;
  max-width: 380px;
}
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
@media (max-width: 860px) {
  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.kpi-cell {
  background: var(--teal-950);
  padding: 36px 28px;
}
.kpi-label {
  font-size: 14px;
  color: #afc9c3;
  font-weight: 600;
}
.kpi-sub {
  margin-top: 10px;
  font-size: 12.5px;
  color: #6e938b;
  line-height: 1.5;
}
.kpi-icon {
  margin-bottom: 18px;
}
.kpi-note {
  margin-top: 26px;
  font-size: 12.5px;
  font-style: italic;
  color: #6e938b;
}
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
@media (max-width: 860px) {
  .process {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.process-step {
  padding: 0 24px;
  position: relative;
}
.process-step:first-child {
  padding-left: 0;
}
.process-step:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 1px;
  height: calc(100% - 40px);
  background: var(--line);
}
@media (max-width: 860px) {
  .process-step:not(:first-child)::before {
    display: none;
  }
  .process-step {
    padding-left: 0;
  }
}
.process-index {
  font-family: "IBM Plex Mono", monospace;
  color: var(--gold);
  font-size: 13px;
}
.process-step h4 {
  font-size: 19px;
  margin-top: 12px;
}
.process-step p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 14px;
}
.roadmap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) {
  .roadmap {
    grid-template-columns: 1fr;
  }
}
.phase {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 32px 28px;
}
.phase.active {
  background: var(--teal-950);
  color: var(--bone);
  border-color: var(--teal-950);
}
.phase-month {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.phase h4 {
  font-size: 22px;
  margin-top: 8px;
}
.phase ul {
  margin: 22px 0 0;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.9;
}
.phase.active ul {
  color: #c7deda;
}
.cs-carousel {
  position: relative;
}
.cs-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}
.cs-track::-webkit-scrollbar {
  display: none;
}
.cs-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  background: var(--teal-900);
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  padding: 44px;
}
@media (max-width: 860px) {
  .cs-slide {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 30px;
  }
}
.cs-client {
  font-family: "Fraunces", serif;
  font-size: 30px;
  color: var(--bone);
}
.cs-tag {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 10px;
  display: block;
}
.cs-branch {
  color: #8fb3ac;
  font-size: 13.5px;
  margin-top: 8px;
}
.cs-desc {
  color: #afc9c3;
  font-size: 14px;
  margin-top: 18px;
  line-height: 1.6;
}
.cs-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 26px;
}
.cs-controls,
.reel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.cs-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: var(--bone);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}
.cs-arrow:hover {
  background: var(--teal-800);
  border-color: var(--orange);
}
.cs-arrow.on-light {
  border-color: rgba(24, 36, 32, 0.18);
  color: var(--ink);
}
.cs-arrow.on-light:hover {
  background: var(--bone-dim);
  border-color: var(--orange);
}
.cs-dots {
  display: flex;
  gap: 9px;
}
.cs-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--line-dark);
  cursor: pointer;
  border: none;
  padding: 0;
}
.cs-dot.on-light {
  background: rgba(24, 36, 32, 0.18);
}
.cs-dot.active {
  background: var(--orange);
}
.reel-carousel {
  position: relative;
}
.reel-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 6px;
}
.reel-track::-webkit-scrollbar {
  display: none;
}
.reel-slide {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: var(--bone-dim);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.reel-embed {
  display: block;
  width: 100%;
  height: 680px;
  border: none;
  background: var(--bone-dim);
}
.mock-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 860px) {
  .mock-row {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin: 0 auto;
  }
}
.phone {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
}
.phone-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
.phone-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-600), var(--teal-900));
}
.phone-handle {
  font-size: 12.5px;
  font-weight: 600;
}
.phone-media {
  aspect-ratio: 1 / 1;
  background: linear-gradient(160deg, var(--bone-dim), #e4d9c8);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.phone-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--orange);
  color: white;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: 600;
}
.phone-body {
  padding: 18px 16px 22px;
}
.phone-body h4 {
  font-size: 14.5px;
}
.phone-body p {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 8px;
  line-height: 1.55;
}
.engage-list {
  display: flex;
  flex-direction: column;
}
.engage-row {
  display: grid;
  grid-template-columns: 52px 260px 1fr;
  gap: 24px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 720px) {
  .engage-row {
    grid-template-columns: 44px 1fr;
    row-gap: 6px;
  }
  .engage-title {
    grid-column: 2;
  }
  .engage-desc {
    grid-column: 1 / -1;
  }
}
.engage-row:last-child {
  border-bottom: none;
}
.engage-title {
  font-weight: 600;
  font-size: 15.5px;
}
.engage-desc {
  color: var(--ink-soft);
  font-size: 14px;
}
.cta-section {
  background: linear-gradient(135deg, var(--teal-950), #0c332f);
  padding: 120px 0;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.cta-inner {
  max-width: 640px;
}
.cta-section h2 {
  color: var(--bone);
  font-size: clamp(32px, 5vw, 52px);
}
.cta-section p {
  color: #b9cfc9;
  margin-top: 18px;
  font-size: 17px;
  max-width: 480px;
}
.cta-actions {
  margin-top: 36px;
}
.cta-contact {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cta-contact .name {
  color: var(--bone);
  font-weight: 600;
}
.cta-contact .email {
  color: var(--orange-light);
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
}
.cta-orb {
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(226, 103, 42, 0.18),
    transparent 70%
  );
}
footer {
  background: var(--teal-950);
  border-top: 1px solid var(--line-dark);
  padding: 36px 0;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
footer .foot-brand {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6e938b;
}

/* Scroll reveal (uses data-aos attributes) */
[data-aos] {
  opacity: 0;
  transition:
    opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}
[data-aos].is-visible {
  opacity: 1;
  transform: none;
}
[data-aos="fade-up"] {
  transform: translate3d(0, 48px, 0);
}
[data-aos="fade-down"] {
  transform: translate3d(0, -48px, 0);
}
[data-aos="fade-left"] {
  transform: translate3d(48px, 0, 0);
}
[data-aos="fade-right"] {
  transform: translate3d(-48px, 0, 0);
}
[data-aos="zoom-in-up"] {
  transform: translate3d(0, 48px, 0) scale(0.96);
}
@media (prefers-reduced-motion: reduce) {
  [data-aos] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
