:root {
  --bg: #020615;
  --bg-soft: #07152f;
  --primary: #00cfff;
  --primary-dark: #0077ff;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --border: rgba(255, 255, 255, 0.12);
  --accent: #79ffcb;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 115px;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 207, 255, 0.2), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(0, 119, 255, 0.16), transparent 32%),
    linear-gradient(135deg, var(--bg-soft), #000 65%);
  overflow-x: hidden;
  width: 100%;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.9) 1px, transparent 1px),
    radial-gradient(rgba(255, 255, 255, 0.55) 1px, transparent 1px);
  background-size: 70px 70px, 130px 130px;
  opacity: 0.08;
  animation: starsMove 65s linear infinite;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.035), transparent 30%, rgba(0, 207, 255, 0.04));
}

@keyframes starsMove {
  from { transform: translateY(0); }
  to { transform: translateY(-220px); }
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(0, 207, 255, 0.85);
  outline-offset: 3px;
}

.glass {
  position: fixed;
  width: min(1120px, calc(100% - 32px));
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(4, 12, 28, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 45%, rgba(0, 207, 255, 0.24), transparent 62%),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 24px rgba(0, 207, 255, 0.28),
    inset 0 0 18px rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.nav-container .brand-link {
  min-height: 64px;
  padding: 0;
}

.nav-container .brand-link:hover {
  background:
    radial-gradient(circle at 50% 45%, rgba(0, 207, 255, 0.34), transparent 62%),
    rgba(255, 255, 255, 0.1);
}

.brand-link::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.35);
}

.logo {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 0 9px rgba(0, 207, 255, 0.32));
}

.nav-container ul {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-container a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.86);
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.nav-container a:hover,
.nav-container a.active {
  color: #00121a;
   background: linear-gradient(45deg, var(--primary), var(--primary-dark));
  box-shadow: 0 0 25px rgba(0, 207, 255, 0.48);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(280px, 470px);
  align-items: center;
  justify-content: center;
  gap: clamp(42px, 7vw, 96px);
  padding: 120px 5% 80px;
}

.orbit-container {
  position: relative;
  width: min(420px, 78vw);
  aspect-ratio: 1;
  transform-style: preserve-3d;
  will-change: transform;
}

.orbit {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: inset 0 0 35px rgba(0, 207, 255, 0.14), 0 0 35px rgba(0, 207, 255, 0.1);
  animation: rotate 25s linear infinite;
}

.orbit-item {
  position: absolute;
  width: clamp(52px, 13vw, 74px);
  aspect-ratio: 1;
}

.orbit-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 0 14px rgba(0, 207, 255, 0.8));
  transition: transform 0.3s ease;
}

.orbit-item img:hover {
  transform: scale(1.14);
}

.orbit-container:hover .orbit {
  animation-play-state: paused;
}

.orbit-item:nth-child(1) { top: -28px; left: 50%; transform: translateX(-50%); }
.orbit-item:nth-child(2) { right: -28px; top: 50%; transform: translateY(-50%); }
.orbit-item:nth-child(3) { bottom: -28px; left: 50%; transform: translateX(-50%); }
.orbit-item:nth-child(4) { left: -28px; top: 50%; transform: translateY(-50%); }

@keyframes rotate {
  to { transform: rotate(360deg); }
}

.center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(96px, 24vw, 144px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
}

.center-logo img {
  position: relative;
  z-index: 2;
  width: 100%;
  filter: drop-shadow(0 0 25px rgba(0, 207, 255, 0.75));
}

.center-logo::before,
.center-logo::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.center-logo::before {
  width: 132%;
  height: 132%;
  border: 2px solid rgba(0, 207, 255, 0.45);
  animation: pulseRing 2.5s infinite;
}

.center-logo::after {
  width: 166%;
  height: 166%;
  background: radial-gradient(circle, rgba(0, 207, 255, 0.25), transparent 67%);
}

@keyframes pulseRing {
  0% { transform: scale(0.88); opacity: 0.75; }
  100% { transform: scale(1.22); opacity: 0; }
}

.hero-text h1,
.hero-text h2,
.section-title,
.about-left h2,
.contact-left h1 {
  margin: 0;
  letter-spacing: 0;
}

.hero-text h1 {
  font-size: clamp(34px, 5vw, 56px);
  color: rgba(255, 255, 255, 0.65);
}

.hero-text h2 {
  margin-top: 6px;
  font-size: clamp(44px, 6vw, 72px);
  color: var(--primary);
  line-height: 1;
}

.hero-text p {
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.8;
}

.hero-brand-card {
  width: min(430px, 100%);
  margin-bottom: 24px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.hero-brand-card img {
  width: 100%;
  max-height: 130px;
  object-fit: contain;
}

.primary-btn,
button,
.cta-btn {
  border: 0;
  border-radius: 14px;
  background: linear-gradient(45deg, var(--primary), var(--primary-dark));
  color: #fff;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  font-weight: 700;
}

button:hover,
.primary-btn:hover,
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(0, 207, 255, 0.48);
}

.section {
  padding: 120px 5%;
}

.section-title {
  text-align: center;
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 56px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.company-card,
.counter,
.story-block,
.founder,
.info-box,
.contact-form-box,
.modal-content {
  background: var(--panel);
  border: 1px solid var(--border);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.company-card {
  position: relative;
  overflow: hidden;
  min-height: 382px;
  padding: 18px 18px 24px;
  border-radius: 18px;
  text-align: center;
  transform-style: preserve-3d;
}

.company-card::after,
.story-block::after,
.social-icon::before,
.social-icons a::before {
  content: "";
  position: absolute;
  inset: -60%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: translateX(-65%) rotate(25deg);
  transition: transform 0.7s ease;
  pointer-events: none;
}

.company-card:hover::after,
.story-block:hover::after,
.social-icon:hover::before,
.social-icons a:hover::before {
  transform: translateX(65%) rotate(25deg);
}

.card-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: -34px auto 18px;
  position: relative;
  z-index: 2;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(3, 12, 28, 0.78);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: scale(0.65);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.brand-preview {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  height: 126px;
  margin-bottom: 14px;
  padding: 12px;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.brand-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: inherit;
  pointer-events: none;
}

.brand-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  min-width: 0;
}

.company-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.company-card p {
  min-height: 52px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.explore-btn {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: 24px;
  padding: 13px 18px;
  font-weight: 700;
}

@media (hover: hover) {
  .company-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 207, 255, 0.45);
  }
}

.about-container {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: clamp(32px, 4.5vw, 62px);
  max-width: 1320px;
  margin: 0 auto;
  align-items: start;
}

.about-left {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  min-width: 0;
}

.about-left h2 {
  grid-column: 1 / -1;
  font-size: clamp(40px, 6vw, 58px);
  text-align: justify;
}

.tagline {
  grid-column: 1 / -1;
  margin: 12px 0 18px;
  color: var(--muted);
  line-height: 1.75;
}

.counters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-width: 0;
}

.counters {
  grid-column: 1 / -1;
  gap: 18px;
}

.about-right {
  min-width: 0;
  position: sticky;
  top: 112px;
}

.counter {
  padding: 20px;
  border-radius: 16px;
}

.counter h3 {
  margin: 0 0 8px;
  font-size: 30px;
  text-align: justify;
  color: var(--primary);
}

.counter p,
.counter small {
  margin: 0;
}

.counter small,
.story-block p,
.founder-info p {
  color: var(--muted);
  line-height: 1.75;
}

.story-block {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: clamp(22px, 2.1vw, 30px);
  border-radius: 18px;
  transition: transform 0.3s ease, border-color 0.3s ease;
  isolation: isolate;
}

.story-feature {
  grid-column: 1 / -1;
}

.story-block:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 207, 255, 0.35);
}

.story-block h3,
.founder-info h3 {
  margin: 0 0 12px;
  font-size: 24px;
  
}

.story-block p,
.founder-info p {
  margin: 0;
}

.founder {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  padding: clamp(24px, 2.5vw, 34px);
  border-radius: 22px;
  overflow: hidden;
  width: 100%;
  text-align: justify;
}

.founder img {
  width: 100%;
  height: clamp(420px, 38vw, 560px);
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  box-shadow: 0 0 28px rgba(0, 207, 255, 0.48);
}

.founder-info p + p {
  margin-top: 14px;
}

.founder-info {
  min-width: 0;
  align-self: start;
}

.founder-info h3 {
  font-size: clamp(28px, 2.4vw, 36px);
}

.founder-info p {
  font-size: 15.5px;
}

.venture-modal,
.thoughts-modal,
.updates-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.venture-modal.active,
.thoughts-modal.active,
.updates-modal.active {
  visibility: visible;
  opacity: 1;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(980px, calc(100% - 36px));
  max-height: calc(100dvh - 48px);
  overflow: hidden;
  overscroll-behavior: contain;
  transform: translate(-50%, -46%) scale(0.92);
  opacity: 0;
  padding: clamp(22px, 3vw, 32px);
  border-radius: 24px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

.venture-modal.active .modal-content {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.thoughts-modal.active .modal-content,
.updates-modal.active .modal-content {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.08);
}

.modal-inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 3vw, 38px);
  align-items: stretch;
  max-height: calc(100dvh - 112px);
}

.modal-left,
.modal-right {
  min-width: 0;
}

.modal-lottie-frame {
  width: 100%;
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: clamp(14px, 2vw, 22px);
  border: 1px solid rgba(0, 207, 255, 0.22);
  border-radius: 20px;
  background:
    radial-gradient(circle at 35% 20%, rgba(0, 207, 255, 0.16), transparent 42%),
    rgba(255, 255, 255, 0.96);
  overflow: hidden;
}

.modal-lottie-frame lottie-player {
  width: 100%;
  height: min(360px, 48vh);
}

.lottie-fallback {
  width: 100%;
  min-height: 320px;
  display: none;
  place-items: center;
  gap: 10px;
  padding: 26px;
  color: #061126;
  text-align: center;
}

.lottie-fallback.active {
  display: grid;
}

.fallback-orbit {
  position: relative;
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  margin-bottom: 6px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, var(--primary), var(--primary-dark));
  box-shadow: 0 18px 45px rgba(0, 119, 255, 0.28), 0 0 34px rgba(0, 207, 255, 0.28);
}

.fallback-orbit::before,
.fallback-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 119, 255, 0.24);
  animation: fallbackPulse 2.6s ease-in-out infinite;
}

.fallback-orbit::before {
  inset: -14px;
}

.fallback-orbit::after {
  inset: -30px;
  animation-delay: 0.35s;
}

.fallback-orbit i {
  position: relative;
  z-index: 1;
  font-size: 42px;
}

.lottie-fallback strong {
  font-size: 22px;
}

.lottie-fallback span {
  max-width: 280px;
  color: rgba(6, 17, 38, 0.72);
  line-height: 1.6;
}

@keyframes fallbackPulse {
  0%, 100% { transform: scale(0.92); opacity: 0.34; }
  50% { transform: scale(1.08); opacity: 0.9; }
}

.modal-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-height: calc(100dvh - 112px);
  overflow-y: auto;
  padding-right: 4px;
}

.modal-right h2 {
  margin: 0;
  font-size: clamp(28px, 5vw, 40px);
  color: var(--primary);
}

.modal-intro {
  margin: 14px 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.modal-points {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.modal-points li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.5;
}

.modal-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px rgba(0, 207, 255, 0.75);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  font-weight: 700;
  align-self: flex-start;
}

.thoughts-content {
  width: min(760px, calc(100% - 36px));
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
}

.updates-content {
  width: min(680px, calc(100% - 36px));
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}

.updates-content::before {
  content: "";
  position: absolute;
  inset: -42% -30% auto;
  height: 260px;
  background: radial-gradient(circle, rgba(0, 207, 255, 0.26), transparent 68%);
  pointer-events: none;
  z-index: -1;
}

.updates-card-head {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding-top: 10px;
}

.updates-logo-ring {
  position: relative;
  width: 98px;
  height: 98px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 45%, rgba(0, 207, 255, 0.22), transparent 62%),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 32px rgba(0, 207, 255, 0.24), inset 0 0 18px rgba(255, 255, 255, 0.08);
}

.updates-logo-ring::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
}

.updates-logo-ring img {
  position: relative;
  z-index: 1;
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 18px;
  filter: drop-shadow(0 0 10px rgba(0, 207, 255, 0.3));
}

.updates-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  max-width: 100%;
  padding: 7px 14px;
  border: 1px solid rgba(0, 207, 255, 0.24);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(0, 207, 255, 0.09);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.updates-name {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  letter-spacing: 0;
}

.updates-copy h2 {
  margin: 8px 0 14px;
  color: var(--primary);
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.12;
}

.updates-copy p {
  width: min(540px, 100%);
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.updates-cta {
  align-self: center;
  min-width: 160px;
}

.thoughts-head {
  padding-right: 42px;
  margin-bottom: 22px;
}

.thoughts-head span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.thoughts-head h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 5vw, 46px);
}

.thoughts-head p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.thoughts-list {
  display: grid;
  gap: 16px;
}

.thought-card {
  position: relative;
  overflow: hidden;
  padding: clamp(20px, 3vw, 26px);
  border: 1px solid rgba(0, 207, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.thought-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
}

.thought-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.thought-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.thought-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-wrapper {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 520px);
  gap: clamp(34px, 6vw, 70px);
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
  padding: 120px 5%;
}

.contact-left {
  display: flex;
  flex-direction: column;
}

.contact-left h1 {
  font-size: clamp(42px, 6vw, 64px);
  color: var(--primary);
}

.contact-left > p {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.info-box {
  margin-top: 25px;
  padding: 22px;
 padding-left: 35PX;
  border-radius: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 24px rgba(0, 207, 255, 0.2);
}

.contact-info-box {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-icon,
.social-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--primary);
}

.contact-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  font-size: 20px;
}

.contact-row h3,
.contact-row p,
.social-box h3 {
  margin: 0;
}

.contact-row p {
  color: var(--muted);
}

.contact-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 207, 255, 0.35), transparent);
}

.social-box h3 {
  margin-bottom: 22px;
}

.social-box{
  padding-left: 35px;
}

.update-hub-box {
  overflow: hidden;
  padding: 22px;
  padding-left: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 210px;
}

.social-box .update-hub-title {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 20px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.25;
  text-align: center;
}

.social-box .update-hub-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  width: min(120px, 70%);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
  box-shadow: 0 0 14px rgba(0, 207, 255, 0.45);
  transform: translateX(-50%);
}

.venture-update-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(74px, 1fr));
  gap: 14px;
}

.venture-update-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  width: 100%;
  aspect-ratio: 1;
  min-height: 82px;
  display: grid;
  place-items: center;
  padding: 14px;
  
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 28% 18%, rgba(0, 207, 255, 0.22), transparent 46%),
    rgba(255, 255, 255, 0.055);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -16px 28px rgba(0, 0, 0, 0.16),
    0 14px 34px rgba(0, 0, 0, 0.22),
    0 0 24px rgba(0, 207, 255, 0.12);
  isolation: isolate;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, filter 0.28s ease;
}

.venture-update-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(
    from var(--flow-angle, 0deg),
    transparent 0deg,
    rgba(0, 207, 255, 0.16) 70deg,
    rgba(121, 255, 203, 0.95) 110deg,
    rgba(255, 255, 255, 0.74) 132deg,
    rgba(0, 119, 255, 0.2) 172deg,
    transparent 240deg,
    transparent 360deg
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: ventureBorderFlow 4s linear infinite;
  opacity: 0.82;
  pointer-events: none;
  z-index: 0;
}

.venture-update-card::after {
  content: "";
  position: absolute;
  inset: -45% -80%;
  background:
    linear-gradient(115deg, transparent 36%, rgba(255, 255, 255, 0.34) 48%, transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.14), transparent 42%);
  transform: translateX(-48%) rotate(9deg);
  animation: ventureLogoGloss 3.8s ease-in-out infinite;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 2;
}

.venture-update-card img {
  position: relative;
  z-index: 1;
  width: clamp(58px, 7vw, 76px);
  height: clamp(38px, 5vw, 56px);
  padding: 8px;
  object-fit: contain;
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(232, 248, 255, 0.92));
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.28),
    0 0 22px rgba(0, 207, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  animation: ventureLogoFloat 4.6s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.venture-update-card:hover {
  transform: translateY(-7px) scale(1.03);
  border-color: rgba(121, 255, 203, 0.48);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05)),
    radial-gradient(circle at 28% 18%, rgba(0, 207, 255, 0.32), transparent 50%),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 22px 42px rgba(0, 207, 255, 0.18),
    0 0 32px rgba(121, 255, 203, 0.18);
}

.venture-update-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.04);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.32),
    0 0 30px rgba(121, 255, 203, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.venture-update-card:active {
  transform: translateY(-2px) scale(0.99);
}

@property --flow-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@keyframes ventureBorderFlow {
  to { --flow-angle: 360deg; }
}

@keyframes ventureLogoGloss {
  0%, 100% { transform: translateX(-55%) rotate(9deg); opacity: 0; }
  38% { opacity: 0.85; }
  62% { transform: translateX(55%) rotate(9deg); opacity: 0; }
}

@keyframes ventureLogoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.social-contact-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  overflow: visible;
}

.social-icon {
  position: relative;
  overflow: hidden;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.social-icon:hover {
  transform: translateY(-6px) scale(1.04);
}

.facebook:hover { color: #1877f2; box-shadow: 0 0 24px rgba(24, 119, 242, 0.4); }
.instagram:hover { color: #ff4fd8; box-shadow: 0 0 24px rgba(255, 79, 216, 0.4); }
.whatsapp:hover { color: #25d366; box-shadow: 0 0 24px rgba(37, 211, 102, 0.4); }
.linkedin:hover { color: #4da3ff; box-shadow: 0 0 24px rgba(77, 163, 255, 0.4); }
.youtube:hover { color: #ff3b3b; box-shadow: 0 0 24px rgba(255, 59, 59, 0.4); }
.blog:hover { color: #ffd166; box-shadow: 0 0 24px rgba(255, 209, 102, 0.4); }

.contact-form-box {
  display: flex;
  align-items: center;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 22px;
}

.contact-form-box form {
  width: 100%;
}

.input-group {
  position: relative;
  margin-bottom: 28px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 17px 15px;
  border: 1px solid var(--border);
  outline: none;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  font: inherit;
  resize: vertical;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 207, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
}

.input-group label {
  position: absolute;
  left: 15px;
  top: 17px;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.64);
  transition: top 0.22s ease, left 0.22s ease, color 0.22s ease, font-size 0.22s ease, background 0.22s ease;
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:not(:placeholder-shown) + label,
.input-group textarea:valid + label {
  top: -10px;
  left: 10px;
  padding: 2px 9px;
  border-radius: 999px;
  background: #061126;
  color: var(--primary);
  font-size: 12px;
}

.contact-form-box button {
  width: 100%;
  min-height: 52px;
  padding: 14px 20px;
  font-weight: 700;
}

.form-message {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--muted);
  text-align: center;
}

.form-message.error {
  color: #ffb4b4;
}

.form-message.success {
  color: #93ffd0;
}

#goTopBtn {
  position: fixed;
  right: 28px;
  bottom: 32px;
  z-index: 999;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  background: rgba(3, 15, 31, 0.75);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

#goTopBtn img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

#goTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.center-footer {
  position: relative;
  width: 100%;
  padding: 50px 20px 42px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 207, 255, 0.14), transparent 38%),
    rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

.center-footer::before {
  content: "";
  position: absolute;
  inset: auto 8% -110px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 207, 255, 0.18), transparent 68%);
  filter: blur(4px);
  pointer-events: none;
}

.footer-social-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: clamp(18px, 4vw, 42px);
  width: min(880px, 100%);
  margin: 0 auto 18px;
}

.social-icons {
  display: grid;
  grid-template-columns: repeat(4, 52px);
  justify-content: end;
  align-items: center;
  gap: clamp(10px, 1.6vw, 16px);
}

.footer-social-right {
  justify-content: start;
}

.social-icons a {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.045)),
    rgba(1, 13, 30, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 14px 34px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(0, 207, 255, 0.14);
  backdrop-filter: blur(16px);
  animation: socialBubbleRise 4.8s ease-in-out infinite;
  transition: transform 0.24s ease, color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
  isolation: isolate;
}

.social-icons a::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.social-icons a i {
  position: relative;
  z-index: 1;
  font-size: 19px;
  filter: drop-shadow(0 0 8px rgba(0, 207, 255, 0.38));
}

.social-icons a:nth-child(1) { animation-delay: 0s; }
.social-icons a:nth-child(2) { animation-delay: 0.25s; }
.social-icons a:nth-child(3) { animation-delay: 0.5s; }
.social-icons a:nth-child(4) { animation-delay: 0.75s; }

.social-icons a:hover {
  transform: translateY(-9px) scale(1.08);
  border-color: rgba(0, 207, 255, 0.58);
  color: var(--accent);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 20px 45px rgba(0, 207, 255, 0.22),
    0 0 28px rgba(121, 255, 203, 0.2);
}

@keyframes socialBubbleRise {
  0%, 100% {
    transform: translateY(7px) scale(0.98);
    opacity: 0.82;
  }
  45% {
    transform: translateY(-7px) scale(1.03);
    opacity: 1;
  }
  70% {
    transform: translateY(-2px) scale(1);
  }
}

.footer-logo-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  margin-bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 45%, rgba(0, 207, 255, 0.24), transparent 64%),
    rgba(255, 255, 255, 0.07);
  box-shadow:
    0 0 32px rgba(0, 207, 255, 0.25),
    inset 0 0 18px rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.footer-logo-wrapper::before {
  content: "";
  position: absolute;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  filter: blur(0);
  animation: footerGlow 4s ease-in-out infinite;
}

.center-footer-logo {
  position: relative;
  width: 66px;
  border-radius: 50%;
  z-index: 2;
  filter: drop-shadow(0 0 12px rgba(0, 207, 255, 0.45));
}

.center-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

@keyframes footerGlow {
  0%, 100% { transform: scale(1); opacity: 0.55; }
  50% { transform: scale(1.15); opacity: 0.95; }
}

.particle,
.shockwave,
.light {
  pointer-events: none;
}

.particle {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
  z-index: 9998;
}

.shockwave {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 207, 255, 0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 9998;
}

.light {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 207, 255, 0.14), transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 0;
}

@media (max-width: 1024px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-brand-card {
    margin-left: auto;
    margin-right: auto;
  }

  .orbit-container {
    justify-self: center;
  }

  .about-container {
    max-width: 900px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-right {
    position: relative;
    top: 0;
  }

  .founder {
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
    align-items: center;
  }

  .founder img {
    height: 420px;
  }
}

@media (max-width: 900px) {
  .about-container,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .about-left {
    grid-template-columns: 1fr;
  }

  .story-feature {
    grid-column: auto;
  }

  .about-right {
    grid-template-columns: 1fr;
    position: relative;
    top: 0;
  }

  .about-left {
    position: relative;
    top: 0;
  }

  .contact-wrapper {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 92px;
  }

  body {
    min-width: 0;
  }

  .glass {
    top: 12px;
    width: calc(100% - 24px);
    padding: 8px 12px;
    border-radius: 16px;
  }

  .nav-container {
    gap: 12px;
  }

  .nav-container .brand-link {
    width: 54px;
    height: 54px;
    min-height: 54px;
    border-radius: 16px;
  }

  .brand-link::before {
    inset: 6px;
  }

  .logo {
    width: 40px;
    height: 40px;
    padding-left: 12px;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 44px;
  }

  .nav-container ul {
    position: fixed;
    top: 78px;
    right: 12px;
    width: min(320px, calc(100vw - 24px));
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(2, 8, 20, 0.94);
    backdrop-filter: blur(18px);
    transform: translateX(calc(100% + 24px));
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .nav-container ul.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-container a {
    width: 100%;
    justify-content: flex-start;
    min-height: 44px;
    font-size: 16px;
  }

  .hero {
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 56px;
    gap: 38px;
    overflow: hidden;
  }

  .orbit-container {
    width: min(300px, 76vw);
    max-width: 300px;
    margin-top: 4px;
  }

  .orbit-item:nth-child(1) { top: -18px; }
  .orbit-item:nth-child(2) { right: -18px; }
  .orbit-item:nth-child(3) { bottom: -18px; }
  .orbit-item:nth-child(4) { left: -18px; }

  .section,
  .contact-wrapper {
    padding: 88px 5%;
  }

  .hero-brand-card {
    width: min(360px, 100%);
    padding: 10px;
  }

  .hero-brand-card img {
    max-height: 96px;
  }

  .hero-text h1 {
    font-size: 30px;
  }

  .hero-text h2 {
    font-size: 40px;
  }

  .hero-text p {
    margin: 18px 0 24px;
  }

  .cards {
    gap: 20px;
  }

  .company-card {
    min-height: auto;
    padding: 16px 16px 22px;
  }

  .brand-preview {
    height: 112px;
  }

  .founder {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    padding: 20px;
  }

  .founder img {
    width: min(100%, 340px);
    height: min(420px, 112vw);
    min-height: 0;
    justify-self: center;
  }

  .modal-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    max-height: none;
  }

  .modal-content {
    width: min(94vw, 520px);
    max-height: calc(100dvh - 28px);
    overflow-y: auto;
    padding: 20px;
  }

  .thoughts-content {
    width: min(94vw, 520px);
  }

  .updates-content {
    width: min(94vw, 520px);
    padding: 22px 18px;
  }

  .updates-logo-ring {
    width: 86px;
    height: 86px;
    border-radius: 24px;
  }

  .updates-logo-ring img {
    width: 62px;
    height: 62px;
  }

  .updates-copy h2 {
    margin-top: 16px;
    font-size: 28px;
  }

  .updates-copy p {
    font-size: 15px;
    line-height: 1.7;
  }

  .thoughts-head {
    padding-right: 34px;
  }

  .modal-right {
    max-height: none;
    overflow: visible;
    padding-right: 0;
    justify-content: flex-start;
  }

  .modal-lottie-frame {
    min-height: 190px;
    padding: 10px;
  }

  .modal-lottie-frame lottie-player {
    height: 210px;
  }

  .contact-wrapper {
    gap: 28px;
  }

  .contact-left h1 {
    font-size: 38px;
  }

  .footer-social-stage {
    grid-template-columns: 1fr auto 1fr;
    width: min(360px, 100%);
    gap: 12px;
  }

  .social-icons {
    grid-template-columns: 48px;
    grid-auto-rows: 48px;
    justify-content: center;
    gap: 10px;
  }

  .social-icons a {
    width: 48px;
    height: 48px;
  }

  .footer-logo-wrapper {
    width: 90px;
    height: 90px;
  }

  .footer-logo-wrapper::before {
    width: 72px;
    height: 72px;
  }

  .center-footer-logo {
    width: 62px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .orbit-container {
    width: min(264px, 74vw);
  }

  .orbit-item {
    width: 46px;
  }

  .center-logo {
    width: 82px;
  }

  .center-logo::before {
    width: 124%;
    height: 124%;
  }

  .center-logo::after {
    width: 152%;
    height: 152%;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .counters {
    grid-template-columns: 1fr;
  }

  .about-left h2 {
    font-size: 40px;
  }

  .story-block,
  .counter {
    padding: 20px;
  }

  .founder-info h3 {
    font-size: 28px;
  }

  .founder-info p {
    font-size: 15px;
    line-height: 1.7;
  }

  .cta-btn {
    width: 100%;
  }

  .company-card {
    min-height: auto;
  }

  .contact-row {
    align-items: flex-start;
  }

  .social-box {
    padding-left: 20px;
    padding-right: 20px;
  }

  .venture-update-grid {
    grid-template-columns: repeat(4, minmax(48px, 1fr));
    gap: 10px;
  }

  .venture-update-card {
    min-height: 64px;
    padding: 9px;
    border-radius: 16px;
  }

  .venture-update-card img {
    width: clamp(42px, 13vw, 56px);
    height: clamp(42px, 13vw, 56px);
    padding: 6px;
    border-radius: 15px;
  }

  .contact-row {
    gap: 14px;
  }

  .contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
  }

  .contact-form-box {
    padding: 22px 16px;
  }

  .input-group input,
  .input-group textarea {
    padding: 15px 14px;
  }

  .footer-logo-wrapper {
    width: 82px;
    height: 82px;
  }

  .footer-social-stage {
    width: min(318px, 100%);
    gap: 8px;
  }

  .social-icons {
    grid-template-columns: 43px;
    grid-auto-rows: 43px;
    gap: 9px;
  }

  .social-icons a {
    width: 43px;
    height: 43px;
  }

  .social-icons a i {
    font-size: 16px;
  }

  .center-footer-logo {
    width: 56px;
  }

  #goTopBtn {
    right: 18px;
    bottom: 20px;
    width: 52px;
    height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
