/* Futgoolazo TLAMATINI landing
   Notes:
   - Dark green background
   - Intro logo slides down; content fades in afterwards
   - Fluid spacing and readable line length
*/

:root{
  --bg: #081f16;
  --bg2: #0b2a1d;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.09);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --line: rgba(255,255,255,.14);
  --shadow: 0 22px 60px rgba(0,0,0,.45);
  --radius: 18px;

  --green: #2bd47d;
  --green2: #1bbf6b;
  --red: #C8102E;
  --gold: #b68a3a;

  --blue: #3b82f6;
  --purple: #8b5cf6;
  --orange: #f59e0b;
  --teal: #14b8a6;

  --max: 1120px;
  --pad: clamp(18px, 3vw, 28px);
  --gap: clamp(14px, 2vw, 22px);

  --h1: clamp(34px, 5vw, 56px);
  --h2: clamp(26px, 3.2vw, 36px);
  --h3: 18px;
  --lead: clamp(16px, 1.7vw, 18px);
}

*{ box-sizing: border-box; }
html,body{ height: 100%; }
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(900px 500px at 20% 15%, rgba(43,212,125,.18), transparent 60%),
    radial-gradient(900px 500px at 80% 20%, rgba(200,16,46,.12), transparent 60%),
    radial-gradient(1200px 800px at 50% 110%, rgba(182,138,58,.10), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x: hidden;
}

/* Accessibility */
a{ color: inherit; }
a:focus-visible, button:focus-visible{
  outline: 2px solid rgba(43,212,125,.75);
  outline-offset: 3px;
}

img{ max-width: 100%; display: block; }
.container{
  width: min(var(--max), calc(100% - var(--pad) * 2));
  margin: 0 auto;
}

/* Topbar */
.topbar{
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(8,31,22,.55);
  border-bottom: 1px solid var(--line);
}
.topbar .brand{ display: inline-flex; align-items: center; padding: 12px var(--pad); }
.brand-logo{ height: 34px; width: auto; filter: drop-shadow(0 8px 22px rgba(0,0,0,.45)); }
.brand-text{ font-weight: 900; letter-spacing: .3px; color: rgba(255,255,255,.92); font-size: 15px; white-space: nowrap; }
.brand-text__sub{ font-weight: 900; color: rgba(255,255,255,.78); }

.nav{
  display: none;
  gap: 18px;
  align-items: center;
  padding-right: var(--pad);
}
.topbar{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav a{
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .2px;
}
.nav a:hover{ color: var(--text); }

/* Intro */
.intro{
  position: fixed;
  inset: 0;
  display: grid;
  place-items: start center;
  pointer-events: none;
  z-index: 50;
  background: radial-gradient(900px 500px at 50% 20%, rgba(43,212,125,.10), transparent 55%);
  padding-top: 28px;
}
.intro-logo{
  /* Bigger logo + slower, diagonal intro (from top-left) */
  margin-top: 0;
  height: clamp(110px, 18vw, 180px);
  width: auto;
  filter: drop-shadow(0 28px 80px rgba(0,0,0,.55));
  /* Cinematic: slow glide + subtle micro-bounce at the end */
  animation: logoDrop 6.7s cubic-bezier(.12,.92,.18,1) forwards;
}
@keyframes logoDrop{
  0%{ transform: translate(-70vw, -180px) scale(.90); opacity: 0; }
  22%{ opacity: 1; }
  /* Arrive slightly past the final size/position */
  86%{ transform: translate(0, 230px) scale(1.028); opacity: 1; }
  /* Micro-bounce (settle) */
  93%{ transform: translate(0, 226px) scale(.996); }
  100%{ transform: translate(0, 230px) scale(1); opacity: 1; }
}

/* Page content reveal */
.page{
  opacity: 1;
  transform: translateY(0);
  transition: opacity .55s ease, transform .55s ease;
}
body.preload .page{
  opacity: 0;
  transform: translateY(10px);
}
body.ready .intro{
  opacity: 0;
  transition: opacity .7s ease;
}
body.ready .intro-logo{
  animation: none;
}
@media (prefers-reduced-motion: reduce){
  .intro, .intro-logo, .page{ animation: none !important; transition: none !important; }
  body.preload .page{ opacity: 1; transform: none; }
  .intro{ display: none; }
}

/* Sections */
.section{
  padding: clamp(42px, 6vw, 86px) 0;
}
.hero{ padding-top: clamp(28px, 5vw, 70px); }
h1{ font-size: var(--h1); line-height: 1.02; margin: 10px 0 10px; letter-spacing: -0.5px; }
h2{ font-size: var(--h2); margin: 0 0 12px; letter-spacing: -0.3px; }
h3{ font-size: var(--h3); margin: 0 0 10px; }
p{ margin: 0 0 14px; color: var(--muted); line-height: 1.6; }
.lead{ font-size: var(--lead); color: rgba(255,255,255,.86); max-width: 54ch; }
.subhead{ max-width: 70ch; margin-bottom: 26px; }

/* Pills / badges */
.pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius: 999px;
  width: fit-content;
  margin: 0 0 10px;
  color: rgba(255,255,255,.86);
  font-weight: 700;
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .2px;
  cursor: pointer;
  transition: transform .08s ease, background .18s ease, border-color .18s ease;
}
.btn:hover{ background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.22); }
.btn:active{ transform: translateY(1px); }
.btn--primary{
  border-color: rgba(43,212,125,.45);
  background: linear-gradient(180deg, rgba(43,212,125,.95), rgba(27,191,107,.92));
  color: #062115;
  box-shadow: 0 14px 36px rgba(43,212,125,.22);
}
.btn--primary:hover{ filter: brightness(1.02); }
.btn--ghost{ background: rgba(255,255,255,.02); }

/* Google Play badge CTA */
.gp-badge, .gp-nav{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0;
  border: none;
  background: transparent;
}
.gp-badge img{
  height: 58px;
  width: auto;
  display: block;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,.35));
  transition: transform .08s ease, filter .18s ease;
}
.gp-nav img{
  height: 34px;
  width: auto;
  display: block;
  opacity: .95;
  transition: transform .08s ease, opacity .18s ease;
}
.gp-badge:hover img{ filter: drop-shadow(0 14px 34px rgba(0,0,0,.42)); }
.gp-badge:active img, .gp-nav:active img{ transform: translateY(1px); }
.gp-nav:hover img{ opacity: 1; }

@media (max-width: 520px){
  .gp-badge img{ height: 52px; }
}

/* No-JS helper */
.noscript{
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 80;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.55);
  color: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
}
.noscript a{ color: rgba(255,255,255,.95); font-weight: 800; }

/* Hero grid */
.hero__grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
}
.hero__visual{ position: relative; }
.hero-logo{ width: clamp(320px, 40vw, 560px); max-width: 96%; height: auto; display:block; margin: 14px 0 12px; filter: drop-shadow(0 14px 40px rgba(0,0,0,.45)); }

/* Hero video replaces the hero image on top */
.hero-video-wrap{
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
}

.device-card{
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.device-shot{ width: 100%; height: auto; display: block; }
.mascot{
  position: absolute;
  right: -10px;
  bottom: -18px;
  width: min(420px, 58vw);
  filter: drop-shadow(0 26px 70px rgba(0,0,0,.55));
  pointer-events: none;
}

/* CTA row */
.cta{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 18px;
}


/* QR download */
.qr-download{
  display:flex;
  align-items:center;
  gap: 14px;
  margin: 6px 0 18px;
  padding: 12px 14px;
  width: fit-content;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.qr-link{ display:inline-flex; }
.qr-img{
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 12px;
  background: rgba(255,255,255,.92);
  padding: 6px;
}
.qr-text strong{ display:block; color: rgba(255,255,255,.92); font-size: 14px; margin-bottom: 4px; }
.qr-text span{ display:block; color: var(--muted); font-size: 13px; line-height: 1.3; max-width: 260px; }

@media (max-width: 520px){
  .qr-download{ width: 100%; }
  .qr-img{ width: 86px; height: 86px; }
}
/* Badges row */
.badges{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
  margin-top: 12px;
}
.badge{
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 12px;
}
.badge strong{ display:block; color: rgba(255,255,255,.92); font-size: 14px; margin-bottom: 3px; }
.badge span{ display:block; color: var(--muted); font-size: 13px; line-height: 1.25; }

/* Feature cards grid */
.grid3{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: var(--gap);
}
.card{
  /* Per-card accent color (set via nth-child) */
  --accent: rgba(255,255,255,.08);
  --accentSolid: rgba(255,255,255,.18);

  position: relative;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accentSolid);
  border-radius: var(--radius);
  padding: 18px 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
.card::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 260px at 10% 0%,
      var(--accent),
      transparent 60%);
  pointer-events: none;
}
.card > *{ position: relative; }

/* Feature cards: each one gets a different accent color */
.grid3 .card:nth-child(1){ --accent: rgba(43,212,125,.22); --accentSolid: rgba(7, 237, 118, 0.95); } /* green */
.grid3 .card:nth-child(2){ --accent: rgba(200,16,46,.20);  --accentSolid: rgba(200,16,46,.95); }  /* red */
.grid3 .card:nth-child(3){ --accent: rgba(59,130,246,.20); --accentSolid: rgba(18, 106, 248, 0.95); } /* blue */
.grid3 .card:nth-child(4){ --accent: rgba(182,138,58,.18); --accentSolid: rgba(165, 112, 13, 0.95); } /* brown */
.grid3 .card:nth-child(5){ --accent: rgba(20,184,166,.18); --accentSolid: rgba(243, 248, 88, 0.95); } /* yelow */
.grid3 .card:nth-child(6){ --accent: rgba(139,92,246,.18); --accentSolid: rgba(81, 10, 246, 0.95); } /* purple */
.card p{ margin: 0; }

/* Screenshots */
.split{
  display:flex;
  justify-content: space-between;
  align-items: end;
  gap: 14px;
  margin-bottom: 16px;
}
.shots{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
}
.shots img{
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  box-shadow: 0 12px 34px rgba(0,0,0,.25);
}

/* Screenshot grids: flexible variant for many images */
.shots--auto{
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

/* Full-width callouts with colored border */
.callout{
  border-width: 2px;
}
.callout--green{
  border-color: rgba(43,212,125,.75);
}
.callout--gold{
  border-color: rgba(182,138,58,.85);
}
.callout p{
  color: rgba(255,255,255,.86);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.65;
}

/* Simple spacing helpers */
.spacer-xxl{ height: clamp(22px, 3.2vw, 34px); }

/* Video */
.video-card{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: var(--gap);
  align-items: start;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  padding: clamp(16px, 2.6vw, 22px);
  box-shadow: 0 14px 44px rgba(0,0,0,.26);
}
.yt-embed{ width: 100%; height: 100%; border: 0; display:block; }

.video-wrap{
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.22);
}
.promo-video{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
}
.video-wrap.missing .promo-video{ display: none; }
.video-placeholder{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  text-align: center;
  color: rgba(255,255,255,.90);
  font-weight: 900;
  background:
    radial-gradient(600px 240px at 50% 22%, rgba(43,212,125,.14), transparent 55%),
    rgba(0,0,0,.22);
}
.video-placeholder small{
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}
.video-wrap:not(.missing) .video-placeholder{ display: none; }
.video-meta p{ margin: 0; }

/* Steps */
.steps{
  list-style: none;
  padding: 0;
  margin: 0;
  display:grid;
  gap: 14px;
}
.steps li{
  display:flex;
  gap: 14px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 18px;
}
.step__num{
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display:grid;
  place-items:center;
  font-weight: 900;
  color: #062115;
  background: linear-gradient(180deg, rgba(43,212,125,.95), rgba(27,191,107,.92));
}
.step__body h3{ margin: 2px 0 6px; }
.step__body p{ margin: 0; }

/* Big CTA */
.cta-section{ padding-bottom: 96px; }
.cta-box{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(18px, 3.6vw, 32px);
  box-shadow: var(--shadow);
}
.cta-box__visual img{
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(0,0,0,.28);
}
.fineprint{
  margin-top: 12px;
  color: rgba(255,255,255,.58);
  font-size: 12.5px;
}

/* Footer */
.footer{
  border-top: 1px solid var(--line);
  padding: 30px 0;
  background: rgba(0,0,0,.12);
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.4fr .8fr 1fr;
  gap: 18px;
  align-items: start;
}
.footer__brand > img{
  height: 120px;
  width: auto;
  margin-bottom: 10px;
}

.devline{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.devline-text{
  font-weight: 700;
  color: rgba(255,255,255,.88);
  letter-spacing: .2px;
}

.footer__brand .datafox-logo{
  height: 48px;   /* ajusta aquí */
  width: auto;
  margin-top: 10px;
  opacity: .92;
  transition: transform .15s ease, opacity .15s ease;
}

.footer__brand .devline:hover .datafox-logo{
  transform: translateY(-1px);
  opacity: 1;
}
.footer__links{
  display:flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a{
  text-decoration:none;
  color: rgba(255,255,255,.72);
  font-weight: 700;
}
.footer__links a:hover{ color: rgba(255,255,255,.92); }

/* Modal */
.modal{
  width: min(980px, 92vw);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  background: rgba(8,31,22,.98);
  color: var(--text);
  box-shadow: 0 24px 90px rgba(0,0,0,.70);
  padding: 16px 16px 18px;
}
.modal::backdrop{
  background: rgba(0,0,0,.72);
}
.modal__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 6px 4px 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.modal__grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
.modal__grid img{
  border-radius: 14px;
  border: 1px solid var(--line);
}

@media (min-width: 981px){
  /* Desktop hero visual: avoid overlaps */
  .hero__visual{
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: clamp(18px, 2.8vw, 44px);
  }
  .device-card{
    width: min(460px, 46vw);
  }
  .mascot{
    position: static;
    width: min(360px, 28vw);
    margin: 0;
    transform: none;
  }
}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .mascot{ position: static; width: min(520px, 86vw); margin-top: 12px; }
  .badges{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .shots{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .video-card{ grid-template-columns: 1fr; }
  .cta-box{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; }
  .nav{ display:none; }
}
@media (min-width: 980px){
  .nav{ display:flex; }
  .hero__visual{ display:flex; align-items:flex-end; gap: 18px; }
  .device-card{ flex: 1 1 0; }
  .mascot{ position: static; width: min(360px, 32vw); margin: 0 0 -10px 0; }
}


/* Privacy policy page */
.policy{ background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(18px, 3vw, 28px); box-shadow: 0 14px 44px rgba(0,0,0,.26); }
.policy h1{ margin-top: 0; }
.policy h2{ margin-top: 20px; }
.policy p, .policy li{ color: rgba(255,255,255,.86); }
.policy ul, .policy ol{ padding-left: 18px; }
.policy a{ color: rgba(255,255,255,.92); font-weight: 800; }


/* YouTube embed */
.yt-iframe{ width: 100%; height: 100%; border: 0; display: block; }
.video-side h3{ margin: 0 0 8px; }
.video-side p{ margin: 0 0 14px; color: rgba(255,255,255,.82); }
.gp-badge-inline{ height: 54px; width: auto; display: inline-block; }
.devline{ margin-top: 10px; font-size: 13px; color: rgba(255,255,255,.70); }
.devline a{ color: rgba(255,255,255,.90); font-weight: 800; }
.devline a:hover{ color: rgba(255,255,255,.98); }

/* Prose */
.prose{ max-width: 82ch; }
.prose h2{ margin-top: 22px; margin-bottom: 8px; }
.prose p{ margin: 0 0 12px; color: rgba(255,255,255,.82); }
.prose ul{ margin: 0 0 14px 18px; color: rgba(255,255,255,.82); }
.prose li{ margin: 6px 0; }
.prose a{ color: rgba(255,255,255,.92); font-weight: 800; }
.prose a:hover{ color: rgba(255,255,255,.98); }


/* Hero countdown */
.countdown{
  margin: 10px 0 14px;
  font-size: clamp(18px, 3.2vw, 36px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.96);
  text-shadow: 0 14px 40px rgba(0,0,0,.45);
}
.countdown small{
  display: block;
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 700;
  letter-spacing: 0.02em;
  opacity: .85;
  margin-top: 8px;
}

/* --- Bigger hero video on tablet/desktop --- */
@media (min-width: 768px){
  /* Dale más espacio a la columna del video */
  .hero__grid{
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  /* Permite que el contenedor del video crezca */
  .hero-video-wrap{
    max-width: 820px;
    width: 100%;
    margin-left: auto;
  }
}

@media (min-width: 1100px){
  /* Aún más grande en escritorio */
  .hero__grid{
    grid-template-columns: 0.85fr 1.15fr;
  }

  .hero-video-wrap{
    max-width: 920px;
  }
}

.hero__copy .h2-center{
  text-align: center;
  width: 100%;
}

/* Ilustrativo: 2 capturas angostas + collage flexible, misma altura */
.shots--ilustrativo{
  display: grid;
  gap: 14px;
  align-items: stretch;
  grid-template-columns: minmax(170px, 220px) minmax(170px, 220px) 1fr;
}

.shots--ilustrativo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  aspect-ratio: 9 / 16;        /* fuerza misma altura entre las 3 */
}

/* el collage puede ser más “ancho” sin cambiar la altura */
.shots--ilustrativo img:nth-child(3){
  aspect-ratio: 16 / 9;        /* mantiene altura similar y se ve tipo banner */
}

/* Responsive: en móvil apila */
@media (max-width: 880px){
  .shots--ilustrativo{
    grid-template-columns: 1fr;
  }
  .shots--ilustrativo img:nth-child(3){
    aspect-ratio: 16 / 9;
  }
}

#descargar .cta-box__visual img{
  max-height: 260px;
  width: auto;
}

.hero__copy .quote{
  text-align: center;
  font-style: italic;
  font-weight: 600;
  max-width: 52ch;
  margin: 14px auto 6px;
  opacity: .92;
}

.store-badges{ display:inline-flex; align-items:center; gap:12px; flex-wrap:wrap; }
.store-badge{ display:inline-flex; align-items:center; }
.store-badge img{ height:44px; width:auto; display:block; }
.store-badge--disabled{ opacity:.55; cursor:default; pointer-events:none; filter:grayscale(1); }

/* Header store badges: stack + fixed size */
.topbar .store-badges--nav{
  display: flex;
  flex-direction: column;  /* Google arriba, Apple abajo */
  align-items: flex-end;
  gap: 8px;
  flex-wrap: nowrap;
}

.topbar .store-badges--nav .store-badge img{
  height: 34px;     /* mismo tamaño en header */
  width: auto;
  max-width: none;  /* evita que se estire por max-width:100% global */
}

/* Apple disabled: que no se “mueva” ni cambie tamaño */
.topbar .store-badges--nav .store-badge--disabled{
  opacity: .55;
  filter: grayscale(1);
}