/* === TDevelopers — refined neutral theme === */
:root {
  --container-width: 1280px;
  --page-padding-mobile: 20px;
  --page-padding-tablet: 24px;
  --page-padding-desktop: 32px;
}
/* Subtle film noise + grid */
.noise {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1   0 0 0 0 1   0 0 0 0 1   0 0 0 0.55 0'/></filter><rect width='160' height='160' filter='url(%23n)'/></svg>");
}
.grid-bg {
  background-image:
    linear-gradient(to right, rgba(255,255,255,1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

/* Section eyebrow + title */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #26a534;
}
.section-eyebrow::before {
  content: "";
  display: inline-block;
  height: 1px;
  width: 2rem;
  background: #0141d2;
}
.section-title {
  margin-top: 1rem;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  line-height: 1.02;
}

/* Stat tiles */
.stat-tile {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  padding: 1.4rem 1.4rem 1.55rem;
  background: linear-gradient(165deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
@media (min-width: 640px) { .stat-tile { padding: 1.75rem; } }
.stat-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(1,65,210,0.35);
  background: linear-gradient(165deg, rgba(1,65,210,0.06), rgba(255,255,255,0.02));
}
.stat-num {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  font-size: clamp(1.8rem, 5.5vw, 2.85rem);
  line-height: 1;
}
.stat-lbl {
  margin-top: 0.55rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* Store buttons */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.25rem;
  border-radius: 0.95rem;
  background: #fff;
  color: #08080a;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform .2s ease, box-shadow .2s ease;
}
.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -12px rgba(1, 65, 210, 0.25);
}
.store-btn--dark {
  background: #15151c;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
}
.store-btn--dark:hover {
  background: #1d1d26;
  box-shadow: 0 18px 36px -12px rgba(0, 0, 0, 0.6);
}

/* Hero CTAs (studio-flavored, not store-flavored) */
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.005em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}
.hero-cta--primary {
  background: #fff;
  color: #08080a;
  box-shadow: 0 14px 30px -14px rgba(255,255,255,0.35), 0 0 0 1px rgba(255,255,255,0.06);
}
.hero-cta--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px -14px rgba(1, 65, 210, 0.45), 0 0 0 1px rgba(255,255,255,0.08);
}
.hero-cta__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 1.85rem;
  width: 1.85rem;
  border-radius: 999px;
  background: #014cf0;
  color: #fff;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), background .25s ease;
  margin-right: -0.4rem;
}
.hero-cta--primary:hover .hero-cta__arrow {
  transform: translateX(4px) rotate(-8deg);
  background: #0141d2;
}
.hero-cta--ghost {
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}
.hero-cta--ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(38,165,52,0.45);
  color: #fff;
}
.hero-cta__dot {
  height: 0.55rem;
  width: 0.55rem;
  border-radius: 999px;
  background: #2dd178;
  box-shadow: 0 0 0 4px rgba(45,209,120,0.18);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(45,209,120,0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(45,209,120,0.05); }
}

/* Chips */
.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.95rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all .2s ease;
}
.chip:hover {
  border-color: rgba(1, 65, 210, 0.4);
  background: rgba(1, 65, 210, 0.06);
  color: #fff;
}

/* Quote card (about) */
.quote-card {
  position: relative;
  border-radius: 1.5rem;
  padding: 2rem;
  background: linear-gradient(165deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
@media (min-width: 640px) { .quote-card { padding: 2.5rem; } }
.quote-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: rgba(1, 65, 210, 0.15);
  filter: blur(80px);
  pointer-events: none;
}

/* Value cards â€” editorial numbered grid (rule-divided, no boxy chips) */
.value-card {
  position: relative;
  overflow: hidden;
  padding: 2.4rem 2rem 2.6rem;
  background: #0c0c0f;
  transition: background .35s ease;
}
.value-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #014cf0, #26a534 60%, transparent);
  transition: width .55s cubic-bezier(.2,.7,.2,1);
}
.value-card:hover {
  background: #101015;
}
.value-card:hover::before { width: 100%; }
.value-card:hover .value-num { color: rgba(38,165,52,0.9); transform: translateY(-2px); }
.value-num {
  display: inline-block;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.28);
  transition: color .35s ease, transform .35s ease;
}
.value-card h3 {
  margin-top: 1.6rem;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.2;
}
.value-card p {
  margin-top: 0.8rem;
  font-size: 0.97rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  max-width: 30ch;
}
@media (max-width: 640px) {
  .value-card { padding: 1.9rem 1.5rem 2rem; }
  .value-card h3 { font-size: 1.2rem; }
}

/* App card */
.app-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(165deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012));
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s ease, background .35s ease;
}
.app-card:hover {
  transform: translateY(-5px);
  border-color: rgba(1, 65, 210, 0.35);
  background: linear-gradient(165deg, rgba(1,65,210,0.06), rgba(255,255,255,0.02));
}
.app-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(700px circle at var(--mx,50%) var(--my,0%), rgba(255,80,80,0.13), transparent 40%);
  opacity: 0;
  transition: opacity .35s ease;
}
.app-card:hover::after { opacity: 1; }

.app-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 12px 24px -10px rgba(0,0,0,0.7);
  background: #15151c;
}
@media (min-width: 640px) { .app-icon { width: 64px; height: 64px; border-radius: 16px; } }

/* CTA panel */
.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: 1.75rem;
  padding: 2.5rem 1.75rem;
  background: linear-gradient(165deg, #15151c 0%, #0c0c0f 100%);
  border: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 640px) {
  .cta-panel { border-radius: 2.25rem; padding: 4rem; }
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  background: #0141d2;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(38, 165, 52, 0.3);
  box-shadow: 0 12px 32px -10px rgba(1, 65, 210, 0.6);
  transition: transform .2s ease, background .2s ease;
}
.cta-primary:hover {
  background: #014cf0;
  transform: translateY(-2px);
}
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all .2s ease;
}
.cta-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}

/* Reveal */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .65s ease, transform .65s ease;
  }
  .reveal.is-visible { opacity: 1; transform: translateY(0); }
}

/* Smoothing */
html { scrollbar-gutter: stable; }
body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

/* Mobile fine-tunes */
@media (max-width: 639px) {
  .store-btn { width: 100%; justify-content: center; }
  .hero-cta { width: 100%; }
  .cta-primary, .cta-secondary { width: 100%; }
  .stat-tile { text-align: left; }
}

/* ============== HERO redesign ============== */
.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.85rem 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(45,209,120,0.06);
  border: 1px solid rgba(45,209,120,0.22);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.hero-status__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #2dd178;
  box-shadow: 0 0 0 4px rgba(45,209,120,0.18);
  animation: pulseDot 2s ease-in-out infinite;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.hero-meta__num {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1;
}
.hero-meta__lbl {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
}
.hero-meta__sep {
  height: 2.2rem;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.15), transparent);
}

/* ===== Bento + floating icon stack ===== */
.hero-bento {
  position: relative;
  aspect-ratio: 1 / 1.05;
  width: 100%;
  max-width: 32rem;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .hero-bento { margin: 0 0 0 auto; }
}

.hero-stack {
  position: absolute;
  inset: 0;
  border-radius: 2rem;
  overflow: hidden;
  background:
    radial-gradient(140% 80% at 50% 0%, rgba(1,65,210,0.10), transparent 55%),
    linear-gradient(180deg, #101015, #08080a 70%);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
    0 30px 80px -30px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,255,255,0.04);
}
.hero-stack__bg {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  pointer-events: none;
}
.hero-stack__floor {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 8%;
  height: 26%;
  background: radial-gradient(60% 100% at 50% 100%, rgba(1,65,210,0.18), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.hero-icon {
  position: absolute;
  border-radius: 22%;
  object-fit: cover;
  box-shadow:
    0 22px 40px -18px rgba(0,0,0,0.85),
    0 0 0 1px rgba(255,255,255,0.04) inset;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
  animation: heroFloat 7s ease-in-out infinite;
  will-change: transform;
}
.hero-icon:hover { transform: translateY(-6px) scale(1.06) !important; z-index: 5; }

/* arrange in a soft staircase / cluster */
.hero-icon--1 { left: 12%;  top: 14%; width: 26%; animation-delay: -0.2s; }
.hero-icon--2 { left: 42%;  top: 8%;  width: 22%; animation-delay: -1.4s; }
.hero-icon--3 { left: 70%;  top: 18%; width: 20%; animation-delay: -2.6s; }
.hero-icon--4 { left: 6%;   top: 46%; width: 22%; animation-delay: -3.5s; }
.hero-icon--5 { left: 36%;  top: 38%; width: 30%; animation-delay: -1.0s; z-index: 2; } /* hero icon */
.hero-icon--6 { left: 72%;  top: 48%; width: 22%; animation-delay: -4.2s; }
.hero-icon--7 { left: 24%;  top: 70%; width: 24%; animation-delay: -5.0s; }

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(-0.5deg); }
  50%      { transform: translateY(-10px) rotate(0.6deg); }
}

/* small floating tiles around the bento */
.hero-bento__caption,
.hero-bento__platforms,
.hero-bento__from {
  position: absolute;
  background: rgba(15,15,20,0.85);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 16px 40px -20px rgba(0,0,0,0.8);
}
.hero-bento__caption {
  left: -1.25rem;
  bottom: 14%;
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  min-width: 11rem;
}
.hero-bento__platforms {
  right: -1rem;
  top: 6%;
  border-radius: 1rem;
  padding: 0.75rem 0.95rem;
}
.hero-bento__from {
  right: 6%;
  bottom: -0.6rem;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

@media (max-width: 1023px) {
  .hero-bento__caption { left: 0; bottom: 8%; }
  .hero-bento__platforms { right: 0; top: 4%; }
}
@media (max-width: 640px) {
  .hero-bento { aspect-ratio: 1 / 0.9; max-width: 26rem; }
  .hero-icon--5 { width: 32%; }
  .hero-bento__caption { padding: 0.7rem 0.85rem; min-width: 10rem; }
  .hero-meta__num { font-size: 1.4rem; }
  .hero-meta__sep { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-icon { animation: none; }
}

/* ===== Hero floating apps cluster ===== */
.hero-cluster {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 460px;
  margin-left: auto;
}
.hero-cluster__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: clusterSpin 60s linear infinite;
}
@keyframes clusterSpin {
  to { transform: rotate(360deg); }
}

.float-icon {
  position: absolute;
  border-radius: 1.4rem;
  padding: 0.5rem;
  background: linear-gradient(165deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 22px 50px -16px rgba(0,0,0,0.65),
    0 0 0 1px rgba(255,255,255,0.02) inset;
  backdrop-filter: blur(14px);
  animation: floatBob 6s ease-in-out infinite;
  animation-delay: var(--d, 0s);
  will-change: transform;
}
.float-icon img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  object-fit: cover;
}
.float-icon__rating {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(15,15,21,0.9);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}
.float-icon__rating svg {
  width: 0.75rem;
  height: 0.75rem;
  color: #f59e0b;
}

/* Positions â€” composed asymmetric cluster */
.float-icon--a { top: 6%;  left: 18%; width: 132px; height: 132px; --d: 0s;    z-index: 3; }
.float-icon--b { top: 4%;  right: 6%; width: 96px;  height: 96px;  --d: -1.6s; z-index: 2; animation-duration: 7s; }
.float-icon--c { top: 38%; right: 0;  width: 110px; height: 110px; --d: -3.2s; z-index: 4; animation-duration: 8s; }
.float-icon--d { bottom: 8%; right: 22%; width: 118px; height: 118px; --d: -2.4s; z-index: 3; animation-duration: 6.5s; }
.float-icon--e { bottom: 18%; left: 4%; width: 88px;  height: 88px;  --d: -0.8s; z-index: 2; animation-duration: 7.5s; }

@keyframes floatBob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-14px) rotate(2deg); }
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .float-icon, .hero-cluster__ring { animation: none; }
}

/* ===== Premium Hero Section ===== */
.premium-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.15), transparent 60%);
  z-index: 0;
}
.light .premium-hero-bg {
  background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 60%);
}

.premium-hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.premium-hero-content {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  position: relative;
  z-index: 10;
}

.premium-heading {
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -2px;
  font-size: 3.2rem;
  margin-top: 1rem;
}
.premium-heading-sub {
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.8);
}
.light .premium-heading-sub {
  color: rgba(10, 10, 10, 0.8);
}

.premium-desc {
  max-width: 600px;
  margin: 2rem auto 0 auto;
}

.premium-cta-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
  width: 100%;
}
.premium-trust-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
}
.premium-logos-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.premium-logos-container {
  margin-top: 3rem;
  text-align: center;
}

.premium-visuals {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  height: 500px;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .premium-heading { font-size: 4rem; }
  .premium-heading-sub { font-size: 3rem; }
  .premium-cta-group { flex-direction: row; justify-content: center; width: auto; }
  .premium-visuals { display: flex; }
}

@media (min-width: 1024px) {
  .premium-hero-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .premium-hero-content {
    text-align: center;
    align-items: center;
  }
  .premium-heading { font-size: 5rem; letter-spacing: -3px; }
  .premium-heading-sub { font-size: 4.5rem; }
  .premium-desc { margin: 2.25rem auto 0 auto; max-width: 800px; }
  .premium-cta-group { justify-content: center; }
  .premium-trust-group { justify-content: center; gap: 3rem; }
  .premium-logos-group { justify-content: center; gap: 2rem; }
  .premium-logos-container { text-align: center; }
  .premium-visuals { margin-top: 0; height: 100%; justify-content: flex-end; }
}

.premium-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #0141d2, #26a534);
  color: white;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1.1rem 2.2rem;
  border-radius: 999px;
  box-shadow: 0 10px 25px -5px rgba(1, 65, 210, 0.5);
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
}
.premium-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px -5px rgba(1, 65, 210, 0.7);
}

.premium-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1.1rem 2.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  white-space: nowrap;
}
.light .premium-btn-secondary {
  background: rgba(0, 0, 0, 0.05);
  color: #111;
  border-color: rgba(0, 0, 0, 0.1);
}
.premium-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
}
.light .premium-btn-secondary:hover {
  background: rgba(0, 0, 0, 0.1);
}

.premium-card-gradient {
  background: linear-gradient(135deg, #6366f1, #0141d2, #312e81);
}
.premium-card-icon-gradient {
  background: linear-gradient(45deg, #014cf0, #26a534);
}

/* ===== Premium Layout & Global Spacing ===== */
.section-padding {
  padding-top: 120px;
  padding-bottom: 120px;
}

.global-container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: clamp(var(--page-padding-mobile), 4vw, var(--page-padding-desktop));
}

/* ===== Bento Box UI ===== */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .bento-col-span-2 { grid-column: span 2 / span 2; }
  .bento-row-span-2 { grid-row: span 2 / span 2; }
}

.bento-card {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}
.light .bento-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.04);
}
.bento-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}
.light .bento-card:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
}

.bento-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #26a534;
  font-weight: 700;
  margin-bottom: 1rem;
}

.bento-title {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: -0.03em;
  color: white;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.light .bento-title { color: #111; }

.bento-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}
.light .bento-desc { color: rgba(0, 0, 0, 0.6); }

/* ===== Aurora Background & Glows ===== */
.aurora-bg-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.6;
  animation: floatOrb 15s infinite alternate ease-in-out;
}
.glow-orb-1 {
  background: rgba(1, 65, 210, 0.4);
  width: 600px;
  height: 600px;
  top: -20%;
  left: -10%;
}
.glow-orb-2 {
  background: rgba(38, 165, 52, 0.3);
  width: 500px;
  height: 500px;
  bottom: -10%;
  right: -5%;
  animation-duration: 20s;
  animation-direction: alternate-reverse;
}
.glow-orb-3 {
  background: rgba(99, 102, 241, 0.3);
  width: 400px;
  height: 400px;
  top: 40%;
  left: 40%;
  animation-duration: 18s;
}
.light .glow-orb-1 { background: rgba(1, 65, 210, 0.15); }
.light .glow-orb-2 { background: rgba(38, 165, 52, 0.1); }
.light .glow-orb-3 { background: rgba(99, 102, 241, 0.1); }

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -50px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
  100% { transform: translate(0, 0) scale(1); }
}

/* Glass panel for CTA */
.premium-cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: 2.5rem;
  padding: 4rem 2rem;
  background: rgba(15, 15, 20, 0.6);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
  text-align: center;
  z-index: 10;
}
@media (min-width: 640px) {
  .premium-cta-panel { padding: 6rem 4rem; }
}
.light .premium-cta-panel {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.1);
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border-radius: 1.5rem;
}
.light .glass-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
}

.blob-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: rgba(37, 99, 235, 0.3);
  filter: blur(80px);
  border-radius: 50%;
  animation: blobFloat 10s infinite alternate;
  z-index: 0;
  pointer-events: none;
}

.blob-2 {
  position: absolute;
  bottom: -20%;
  right: 20%;
  width: 300px;
  height: 300px;
  background: rgba(45, 209, 120, 0.2);
  filter: blur(80px);
  border-radius: 50%;
  animation: blobFloat 12s infinite alternate-reverse;
  z-index: 0;
  pointer-events: none;
}

@keyframes blobFloat {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-40px) scale(1.1); }
}

.app-card-float {
  animation: appFloat 6s ease-in-out infinite;
}
.app-card-float-delayed {
  animation: appFloat 6s ease-in-out infinite;
  animation-delay: -3s;
}

@keyframes appFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ============== Toolkit page (/my-tools) ============== */
.tool-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 1.5rem;
  padding: 1.6rem 1.6rem 1.75rem;
  background: linear-gradient(165deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012));
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s ease, background .35s ease;
}
.tool-card:hover {
  transform: translateY(-5px);
  border-color: rgba(1, 65, 210, 0.30);
  background: linear-gradient(165deg, rgba(1,65,210,0.05), rgba(255,255,255,0.02));
}
.tool-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(600px circle at var(--mx,50%) var(--my,0%), rgba(255,80,80,0.10), transparent 40%);
  opacity: 0;
  transition: opacity .35s ease;
}
.tool-card:hover::after { opacity: 1; }

/* Featured "most used" card */
.tool-card--featured {
  border-color: rgba(245,158,11,0.45);
  background: linear-gradient(165deg, rgba(245,158,11,0.07), rgba(255,255,255,0.012));
}
.tool-card--featured:hover {
  border-color: rgba(245,158,11,0.65);
  background: linear-gradient(165deg, rgba(245,158,11,0.10), rgba(255,255,255,0.02));
}
.tool-card--featured::after {
  background: radial-gradient(600px circle at var(--mx,50%) var(--my,0%), rgba(245,158,11,0.14), transparent 40%);
}

.tool-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.85rem;
  font-size: 1.5rem;
  line-height: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 10px 22px -12px rgba(0,0,0,0.7);
}

.tool-name {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.2;
}

.tool-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0.28rem 0.7rem;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.tool-blurb {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* Badge color variants */
.tool-badge--purple { color:#c4b5fd; background:rgba(167,139,250,0.12); border-color:rgba(167,139,250,0.22); }
.tool-badge--green  { color:#6ee7b7; background:rgba(52,211,153,0.12); border-color:rgba(52,211,153,0.22); }
.tool-badge--blue   { color:#93c5fd; background:rgba(96,165,250,0.12); border-color:rgba(96,165,250,0.22); }
.tool-badge--amber  { color:#fcd34d; background:rgba(251,191,36,0.12); border-color:rgba(251,191,36,0.22); }
.tool-badge--pink   { color:#f0abfc; background:rgba(232,121,249,0.12); border-color:rgba(232,121,249,0.22); }
.tool-badge--teal   { color:#5eead4; background:rgba(45,212,191,0.12); border-color:rgba(45,212,191,0.22); }
.tool-badge--yellow { color:#fde047; background:rgba(234,179,8,0.14); border-color:rgba(234,179,8,0.24); }
.tool-badge--gold   { color:#fbbf24; background:rgba(245,158,11,0.16); border-color:rgba(245,158,11,0.30); }

@media (max-width: 640px) {
  .tool-card { padding: 1.4rem 1.4rem 1.55rem; }
  .tool-name { font-size: 1.12rem; }
}

/* =========================================
   LEGAL PAGES & CONTACT PAGES (SmartAI Labs Layout)
   ========================================= */
.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.legal-toc {
  position: sticky;
  top: 120px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
}
.light .legal-toc {
  background: #ffffff;
  border-color: #e5e7eb;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.legal-toc h5 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #014cf0;
  margin-bottom: 1.5rem;
}

.legal-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-toc ul li {
  margin-bottom: 0.8rem;
}

.legal-toc ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
}
.light .legal-toc ul li a { color: #6b7280; }

.legal-toc ul li a:hover, .legal-toc ul li a.active {
  color: #fff;
  font-weight: 500;
}
.light .legal-toc ul li a:hover, .light .legal-toc ul li a.active { color: #111827; }

.legal-body h2 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.light .legal-body h2 { color: #111827; border-top-color: #e5e7eb; }

.legal-body h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-body h3 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}
.light .legal-body h3 { color: #111827; }

.legal-body p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.light .legal-body p { color: #4b5563; }

.legal-body ul {
  margin-bottom: 1.5rem;
  padding-left: 1.2rem;
}

.legal-body ul li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
  list-style-type: disc;
}
.light .legal-body ul li { color: #4b5563; }

.legal-body a {
  color: #014cf0;
  text-decoration: none;
}
.legal-body a:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .legal-toc {
    position: relative;
    top: 0;
    max-height: 300px;
    padding: 1.5rem;
  }
}


/* Animated Buttons */
.btn-whatsapp-animated {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #128C7E, #25D366);
  color: white;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1.1rem 2.2rem;
  border-radius: 999px;
  border: none;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  white-space: nowrap;
  animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.btn-whatsapp-animated:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
}

.btn-shine-animated {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #0141d2, #312e81);
  color: white;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1.1rem 2.2rem;
  border-radius: 999px;
  border: none;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(1, 65, 210, 0.5);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-shine-animated::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

.btn-shine-animated:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px -5px rgba(1, 65, 210, 0.7);
}


/* Premium Chat Animations */
.chat-bubble-anim {
  animation: chatPopIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  opacity: 0;
  transform-origin: bottom center;
}

@keyframes chatPopIn {
  0% { opacity: 0; transform: translateY(15px) scale(0.9); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.chat-dot-flashing {
  animation: dotFlashing 1s infinite linear alternate;
}
.chat-dot-flashing:nth-child(2) { animation-delay: 0.2s; }
.chat-dot-flashing:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotFlashing {
  0% { background-color: rgba(255, 255, 255, 0.5); }
  50%, 100% { background-color: rgba(255, 255, 255, 0.1); }
}

/* Premium AI Chat UI */
.ai-chat-modal {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  width: 380px !important;
  height: 600px !important;
  background: #f8fafc !important;
  border-radius: 24px !important;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.2), 0 0 30px rgba(1, 65, 210, 0.15) !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  z-index: 99999 !important;
  border: 1px solid rgba(255,255,255,0.8) !important;
  transform: scale(0.9) translateY(20px) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  transform-origin: bottom right !important;
}
.ai-chat-modal.is-active {
  transform: scale(1) translateY(0) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}
.ai-chat-header {
  background: linear-gradient(135deg, #0141d2 0%, #10b981 100%) !important;
  padding: 24px 20px !important;
  color: white !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-shrink: 0 !important;
  position: relative !important;
}
.ai-chat-header::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  height: 15px;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, transparent 100%);
  z-index: 2;
}
.ai-chat-body {
  flex: 1 !important;
  overflow-y: auto !important;
  padding: 24px 20px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  background: #f8fafc !important;
}
.ai-chat-body::-webkit-scrollbar {
  width: 6px;
}
.ai-chat-body::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.1);
  border-radius: 10px;
}
.ai-chat-footer {
  background: white !important;
  padding: 16px 20px !important;
  border-top: 1px solid rgba(0,0,0,0.05) !important;
  flex-shrink: 0 !important;
  z-index: 2 !important;
}
.ai-msg-ai, .ai-msg-user {
  max-width: 85% !important;
  padding: 14px 18px !important;
  border-radius: 20px !important;
  font-size: 14.5px !important;
  line-height: 1.5 !important;
  position: relative !important;
  animation: msgPopIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
  font-family: inherit !important;
  word-wrap: break-word !important;
}
.ai-msg-ai {
  align-self: flex-start !important;
  background: white !important;
  color: #1e293b !important;
  border-bottom-left-radius: 4px !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.02) !important;
  border: 1px solid rgba(0,0,0,0.02) !important;
}
.ai-msg-user {
  align-self: flex-end !important;
  background: linear-gradient(135deg, #0141d2 0%, #3b82f6 100%) !important;
  color: white !important;
  border-bottom-right-radius: 4px !important;
  box-shadow: 0 6px 15px rgba(1, 65, 210, 0.2) !important;
}
.ai-input-wrapper {
  display: flex !important;
  align-items: center !important;
  background: #f1f5f9 !important;
  border-radius: 30px !important;
  padding: 6px 6px 6px 20px !important;
  border: 1px solid transparent !important;
  transition: all 0.3s ease !important;
}
.ai-input-wrapper:focus-within {
  background: white !important;
  border-color: #0141d2 !important;
  box-shadow: 0 0 0 4px rgba(1, 65, 210, 0.1) !important;
}
.ai-input {
  flex: 1 !important;
  border: none !important;
  background: transparent !important;
  outline: none !important;
  font-size: 15px !important;
  color: #1e293b !important;
  padding: 8px 0 !important;
  width: 100% !important;
}
.ai-input::placeholder {
  color: #94a3b8 !important;
}
.ai-send-btn {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background: #0141d2 !important;
  color: white !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 4px 10px rgba(1, 65, 210, 0.3) !important;
  flex-shrink: 0 !important;
}
.ai-send-btn:hover {
  background: #10b981 !important;
  transform: scale(1.08) rotate(-10deg) !important;
  box-shadow: 0 6px 15px rgba(16, 185, 129, 0.4) !important;
}
.ai-online-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: rgba(255,255,255,0.15) !important;
  padding: 4px 10px !important;
  border-radius: 20px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  backdrop-filter: blur(4px) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
}
.ai-dot {
  width: 6px !important;
  height: 6px !important;
  background: #4ade80 !important;
  border-radius: 50% !important;
  box-shadow: 0 0 8px #4ade80 !important;
  animation: pulseDot 2s infinite !important;
}
.ai-typing {
  display: flex !important;
  gap: 4px !important;
  align-items: center !important;
  padding: 4px 0 !important;
}
.ai-typing span {
  width: 6px !important;
  height: 6px !important;
  background: #0141d2 !important;
  border-radius: 50% !important;
  animation: typingBounce 1.4s infinite ease-in-out both !important;
}
.ai-typing span:nth-child(1) { animation-delay: -0.32s !important; }
.ai-typing span:nth-child(2) { animation-delay: -0.16s !important; }

@keyframes msgPopIn {
  0% { opacity: 0; transform: translateY(15px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}
@keyframes typingBounce {
  0%, 80%, 100% { transform: scale(0); opacity: 0.3; }
  40% { transform: scale(1); opacity: 1; }
}
