:root {
  --bg: #050506;
  --bg-soft: #0a0a0d;
  --panel: #101014;
  --line: rgba(255,255,255,.12);
  --text: #f5f4f7;
  --muted: #aaa9b1;
  --cyan: #00e5ff;
  --green: #35ff83;
  --violet: #855cff;
  --pink: #ff337e;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.page-loader {
  position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center;
  background: #030304; transition: opacity .6s, visibility .6s;
}
.page-loader span { width: 72px; height: 1px; background: var(--line); overflow: hidden; position: relative; }
.page-loader span::after { content: ""; position: absolute; inset: 0; background: var(--cyan); animation: load 1s infinite; }
.page-loader.done { opacity: 0; visibility: hidden; }
@keyframes load { from { transform: translateX(-100%); } to { transform: translateX(100%); } }

.cursor-glow {
  width: 460px; height: 460px; border-radius: 50%; position: fixed; z-index: -1;
  background: rgba(0, 229, 255, .055); filter: blur(75px); transform: translate(-50%, -50%);
  pointer-events: none;
}

.site-header {
  height: 94px; padding: 0 5vw; display: flex; align-items: center; gap: 48px;
  position: fixed; z-index: 100; top: 0; left: 0; right: 0;
  border-bottom: 1px solid transparent; transition: .35s;
}
.site-header.scrolled { height: 76px; background: rgba(5,5,6,.88); backdrop-filter: blur(18px); border-color: var(--line); }
.brand, .footer-brand { display: flex; align-items: center; gap: 11px; font: 700 20px/1 "Segoe UI", Arial, sans-serif; letter-spacing: -.04em; }
.brand img, .footer-brand img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.brand small, .footer-brand small { display: block; color: var(--muted); font: 500 8px/1.3 "Segoe UI", Arial, sans-serif; letter-spacing: .18em; text-transform: uppercase; margin-top: 4px; }
nav { display: flex; gap: 34px; margin-left: auto; }
nav a { color: #cccbd0; font-size: 14px; position: relative; }
nav a::after { content: ""; position: absolute; height: 1px; left: 0; right: 100%; bottom: -8px; background: var(--cyan); transition: .3s; }
nav a:hover::after { right: 0; }
.language-switch { display: flex; align-items: center; gap: 6px; color: #606068; font-size: 11px; letter-spacing: .08em; }
.language-switch button { border: 0; padding: 8px 3px; color: #777780; background: transparent; cursor: pointer; font-weight: 700; }
.language-switch button.active { color: var(--cyan); }
.language-switch button:hover { color: var(--text); }
.header-cta { padding: 13px 20px; border: 1px solid var(--line); font-size: 13px; }
.header-cta span, .button span { color: var(--cyan); margin-left: 10px; }
.menu-toggle { display: none; }

.hero {
  min-height: 100svh; padding: 160px 7vw 80px; position: relative; overflow: hidden;
  display: flex; align-items: center;
  background: radial-gradient(circle at 76% 48%, rgba(60,25,95,.2), transparent 32%), linear-gradient(120deg, #060607, #09090d 70%, #050507);
}
.hero::after { content: ""; position: absolute; z-index: 2; inset: 0; background: linear-gradient(90deg, rgba(5,5,6,.98) 0%, rgba(5,5,6,.88) 34%, rgba(5,5,6,.28) 72%, rgba(5,5,6,.5) 100%), linear-gradient(0deg, var(--bg), transparent 32%); pointer-events: none; }
.hero-photo { position: absolute; z-index: 0; inset: 0 0 0 34%; background: url("img/711269184_122241841784320263_1747778288608135624_n.jpg") center/cover no-repeat; opacity: .7; filter: saturate(.9) contrast(1.08); }
.hero-content { position: relative; z-index: 5; max-width: 790px; }
.eyebrow { color: var(--cyan); font-size: 11px; text-transform: uppercase; letter-spacing: .25em; font-weight: 600; }
.eyebrow::before { content: ""; display: inline-block; width: 34px; height: 1px; background: currentColor; margin: 0 13px 3px 0; }
h1, h2, h3 { font-family: "Segoe UI", Arial, sans-serif; margin-top: 0; }
h1 { font-size: clamp(58px, 8.4vw, 132px); line-height: .86; letter-spacing: -.075em; margin: 34px 0 35px; }
h1 span, h2 em { font-weight: inherit; font-style: normal; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.58); }
.hero-copy { max-width: 575px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 36px; margin-top: 38px; }
.button { border: 0; display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 25px; cursor: pointer; font-weight: 600; font-size: 13px; transition: .3s; }
.button-primary { color: #050506; background: var(--text); }
.button-primary span { color: #050506; }
.button-primary:hover { background: var(--cyan); transform: translateY(-3px); box-shadow: 0 12px 35px rgba(0,229,255,.16); }
.text-link { font-size: 13px; color: #d7d6dc; }
.play { border: 1px solid var(--line); width: 42px; height: 42px; border-radius: 50%; display: inline-grid; place-items: center; margin-right: 10px; }
.hero-mark { position: absolute; z-index: 3; right: 5vw; bottom: 8vh; font: 700 clamp(110px, 18vw, 280px)/.8 "Segoe UI", Arial, sans-serif; letter-spacing: -.12em; color: rgba(255,255,255,.025); -webkit-text-stroke: 1px rgba(255,255,255,.1); }
.hero-mark span { color: rgba(0,229,255,.04); }
.scroll-note { position: absolute; z-index: 6; right: 3vw; top: 46%; color: #777780; font-size: 9px; letter-spacing: .2em; text-transform: uppercase; writing-mode: vertical-rl; }
.scroll-note span { display: inline-block; height: 60px; width: 1px; margin-top: 12px; background: linear-gradient(var(--cyan), transparent); }

.laser-stage { position: absolute; inset: 0 0 0 42%; z-index: 1; overflow: hidden; perspective: 800px; opacity: .32; mix-blend-mode: screen; }
.beam { --c: var(--cyan); position: absolute; bottom: 22%; left: 58%; width: 2px; height: 72%; transform-origin: bottom; background: linear-gradient(to top, var(--c), transparent); box-shadow: 0 0 8px var(--c), 0 0 25px var(--c); opacity: .65; filter: blur(.2px); animation: pulse 4s ease-in-out infinite alternate; }
.beam::after { content: ""; position: absolute; inset: 0 -10px; background: linear-gradient(to top, color-mix(in srgb, var(--c) 30%, transparent), transparent); filter: blur(9px); }
.beam-1 { --c: var(--pink); transform: rotate(-54deg); }
.beam-2 { --c: #ff9d00; transform: rotate(-34deg); animation-delay: -.7s; }
.beam-3 { --c: var(--green); transform: rotate(-14deg); animation-delay: -1.4s; }
.beam-4 { transform: rotate(13deg); animation-delay: -2s; }
.beam-5 { --c: var(--violet); transform: rotate(34deg); animation-delay: -2.7s; }
.beam-6 { --c: #255cff; transform: rotate(54deg); animation-delay: -3.2s; }
.horizon { position: absolute; left: 20%; right: -5%; bottom: 21%; height: 1px; background: linear-gradient(90deg, transparent, var(--cyan), transparent); box-shadow: 0 0 80px 30px rgba(0,229,255,.1); }
@keyframes pulse { to { opacity: .3; filter: blur(1.3px); } }

.section-pad { padding: 130px 7vw; }
.intro { background: var(--bg); }
.section-heading { display: grid; grid-template-columns: 1fr 1.6fr 1fr; align-items: end; gap: 5vw; margin-bottom: 75px; }
.section-heading .eyebrow { align-self: start; }
h2 { font-size: clamp(42px, 5vw, 76px); line-height: 1.03; letter-spacing: -.055em; margin-bottom: 0; }
.section-heading > p:last-child { color: var(--muted); line-height: 1.75; margin: 0; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-card { min-height: 395px; padding: 42px; position: relative; border-right: 1px solid var(--line); transition: .4s; overflow: hidden; }
.service-card:last-child { border: 0; }
.service-card::before { content: ""; position: absolute; inset: 100% 0 0; background: linear-gradient(145deg, rgba(0,229,255,.08), transparent 65%); transition: .4s; }
.service-card:hover::before { inset: 0; }
.service-card:hover { transform: translateY(-8px); border-color: rgba(0,229,255,.25); }
.service-no { color: #66666d; font-size: 11px; letter-spacing: .2em; }
.service-icon { width: 68px; height: 68px; border: 1px solid var(--line); margin: 48px 0 32px; display: grid; place-items: center; transform: rotate(45deg); }
.service-icon span { color: var(--cyan); font-size: 28px; transform: rotate(-45deg); }
.service-card h3 { font-size: 26px; margin-bottom: 15px; }
.service-card p { color: var(--muted); font-size: 14px; line-height: 1.7; }
.service-card a { display: inline-block; margin-top: 22px; color: #dedde2; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.service-card a span { color: var(--cyan); margin-left: 8px; }

.about { display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; align-items: center; background: var(--bg-soft); }
.about-visual { min-height: 620px; display: grid; place-items: center; position: relative; overflow: hidden; background: radial-gradient(circle, #101e22, #08080a 65%); border: 1px solid var(--line); }
.laser-orb { position: relative; width: 220px; height: 220px; border-radius: 50%; border: 1px solid rgba(0,229,255,.35); display: grid; place-items: center; box-shadow: inset 0 0 80px rgba(0,229,255,.07), 0 0 80px rgba(0,229,255,.07); }
.laser-orb strong { font: 700 52px "Segoe UI", Arial, sans-serif; letter-spacing: -.1em; }
.laser-orb span { position: absolute; width: 1px; height: 460px; top: 50%; left: 50%; transform-origin: top; background: linear-gradient(var(--cyan), transparent 70%); }
.laser-orb span:nth-child(1) { transform: rotate(35deg); }
.laser-orb span:nth-child(2) { transform: rotate(105deg); background: linear-gradient(var(--pink), transparent 70%); }
.laser-orb span:nth-child(3) { transform: rotate(175deg); background: linear-gradient(var(--green), transparent 70%); }
.laser-orb span:nth-child(4) { transform: rotate(245deg); background: linear-gradient(var(--violet), transparent 70%); }
.laser-orb span:nth-child(5) { transform: rotate(315deg); }
.about-visual > p { position: absolute; left: 30px; bottom: 20px; color: #55555d; text-transform: uppercase; font: 600 11px/1.5 "Segoe UI", Arial, sans-serif; letter-spacing: .25em; }
.about-copy h2 { margin: 27px 0 32px; }
.about-copy > p { color: var(--muted); line-height: 1.8; max-width: 600px; }
.about-copy .lead { color: #e1e0e4; font-size: 20px; line-height: 1.55; }
.about-facts { display: flex; gap: 55px; margin: 38px 0; padding: 27px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-facts div { display: grid; }
.about-facts strong { font: 600 32px "Segoe UI", Arial, sans-serif; }
.about-facts span { color: #888890; font-size: 11px; margin-top: 5px; text-transform: uppercase; letter-spacing: .08em; }
.button-outline { color: var(--text); border: 1px solid var(--line); }
.button-outline:hover { border-color: var(--cyan); }

.process { background: var(--bg); }
.section-heading.compact { display: block; max-width: 700px; }
.section-heading.compact h2 { margin-top: 25px; }
.process-list { margin: 70px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 90px 1fr 1.3fr; gap: 30px; align-items: center; padding: 36px 20px; border-bottom: 1px solid var(--line); transition: .3s; }
.process-list li:hover { padding-left: 35px; background: rgba(255,255,255,.025); }
.process-list span { color: var(--cyan); font: 500 11px "Segoe UI", Arial, sans-serif; }
.process-list h3 { font-size: 25px; margin: 0; }
.process-list p { color: var(--muted); line-height: 1.6; margin: 0; max-width: 540px; }

.show-store { background: #08080a; }
.license-panel { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; border: 1px solid var(--line); background: #0c0c0f; }
.license-preview { position: relative; overflow: hidden; min-height: 470px; }
.license-preview::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,5,6,.9), transparent 55%); }
.license-preview img { width: 100%; height: 100%; object-fit: cover; object-position: 45% center; filter: saturate(.75) contrast(1.1); }
.license-preview > span { position: absolute; z-index: 2; left: 30px; bottom: 27px; color: var(--cyan); text-transform: uppercase; letter-spacing: .18em; font-size: 10px; }
.license-copy { padding: 65px; align-self: center; }
.license-copy h3 { font-size: clamp(30px, 3vw, 48px); letter-spacing: -.045em; margin: 25px 0 20px; }
.license-copy > p:not(.eyebrow) { color: var(--muted); line-height: 1.75; }
.license-copy ul { list-style: none; padding: 0; margin: 30px 0; color: #d3d2d8; font-size: 13px; }
.license-copy li { padding: 10px 0; border-bottom: 1px solid var(--line); }
.license-copy li::before { content: "↗"; color: var(--cyan); margin-right: 12px; }
.license-copy .license-disclaimer { color: #777780; font-size: 11px; margin: 15px 0 0; }
.license-steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); margin: 32px 0 0; padding: 0; border: 1px solid var(--line); }
.license-steps li { padding: 27px; border-right: 1px solid var(--line); display: grid; gap: 8px; }
.license-steps li:last-child { border: 0; }
.license-steps span { color: var(--cyan); font-size: 10px; letter-spacing: .15em; }
.license-steps strong { font: 600 16px "Segoe UI", Arial, sans-serif; }
.license-steps small { color: var(--muted); line-height: 1.5; }

.gallery { background: #08080a; }
.gallery-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 55px; }
.gallery-heading h2 { text-align: right; }
.gallery-grid { display: grid; grid-template-columns: 1.15fr .8fr 1.15fr; gap: 18px; height: 550px; }
.gallery-item { margin: 0; position: relative; overflow: hidden; background: #0d0d10; border: 1px solid var(--line); }
.gallery-item:nth-child(2) { margin: 65px 0 0; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.85) contrast(1.1); transition: .6s; }
.gallery-item:first-child img { object-position: center 54%; }
.gallery-item:nth-child(2) img { object-position: center; }
.gallery-item:nth-child(3) img { object-position: 45% center; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 55%, rgba(0,0,0,.92)); }
.gallery-item figcaption { position: absolute; z-index: 2; left: 25px; bottom: 24px; }
.gallery-item figcaption span { display: block; color: var(--cyan); font-size: 9px; text-transform: uppercase; letter-spacing: .18em; margin-bottom: 7px; }
.gallery-item figcaption strong { font: 600 18px "Segoe UI", Arial, sans-serif; }
.mini-lasers, .rings { position: absolute; inset: 0; overflow: hidden; background: radial-gradient(circle at 50% 70%, rgba(0,229,255,.15), transparent 42%); }
.mini-lasers i { position: absolute; width: 2px; height: 100%; left: 50%; top: 68%; transform-origin: top; background: linear-gradient(var(--cyan), transparent); box-shadow: 0 0 12px var(--cyan); }
.mini-lasers i:nth-child(1) { transform: rotate(58deg); }
.mini-lasers i:nth-child(2) { transform: rotate(29deg); background: linear-gradient(var(--pink), transparent); }
.mini-lasers i:nth-child(3) { transform: rotate(0); background: linear-gradient(var(--green), transparent); }
.mini-lasers i:nth-child(4) { transform: rotate(-29deg); background: linear-gradient(var(--violet), transparent); }
.mini-lasers i:nth-child(5) { transform: rotate(-58deg); }
.rings { display: grid; place-items: center; background: radial-gradient(circle, rgba(133,92,255,.18), transparent 60%); }
.rings i { position: absolute; width: 50%; aspect-ratio: 1; border: 1px solid var(--violet); border-radius: 50%; box-shadow: 0 0 30px rgba(133,92,255,.18), inset 0 0 30px rgba(133,92,255,.12); }
.rings i:nth-child(2) { width: 70%; border-color: var(--cyan); }
.rings i:nth-child(3) { width: 90%; border-color: rgba(255,51,126,.5); }

.contact { background: radial-gradient(circle at 15% 60%, rgba(0,229,255,.07), transparent 28%), var(--bg); display: grid; grid-template-columns: .9fr 1.1fr; gap: 9vw; }
.contact-copy h2 { margin: 28px 0 32px; }
.contact-copy > p { color: var(--muted); line-height: 1.75; max-width: 500px; }
.contact-note { display: flex; gap: 15px; margin-top: 40px; align-items: center; }
.contact-note > span { width: 48px; height: 48px; flex: none; border: 1px solid var(--line); display: grid; place-items: center; color: var(--cyan); }
.contact-note p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.contact-note strong { color: var(--text); }
.social-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.social-links a { padding: 12px 17px; border: 1px solid var(--line); color: #d8d7dc; font-size: 12px; transition: .3s; }
.social-links a span { color: var(--cyan); margin-left: 8px; }
.social-links a:hover { color: var(--text); border-color: var(--cyan); transform: translateY(-2px); }
.contact-form { background: #0b0b0e; border: 1px solid var(--line); padding: 50px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.contact-form label { display: block; color: #a4a3aa; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 28px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid #303036; border-radius: 0; outline: 0; color: var(--text); background: transparent; padding: 13px 0; margin-top: 6px; resize: vertical; transition: border .3s; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--cyan); }
.contact-form option { background: #111; }
.contact-form .button { margin-top: 7px; }
.form-status { min-height: 20px; color: var(--cyan); font-size: 12px; margin: 16px 0 0; }

footer { min-height: 120px; padding: 30px 5vw; display: flex; align-items: center; gap: 30px; border-top: 1px solid var(--line); }
footer > p { color: #686870; font-size: 11px; margin-left: auto; }
.footer-links { display: flex; gap: 25px; color: #888890; font-size: 11px; }
.footer-links a:hover { color: var(--cyan); }

.legal-copy { color: var(--muted); line-height: 1.8; margin: 50px 0; }
.legal-copy h2 { color: var(--text); font-size: 24px; letter-spacing: -.03em; margin: 42px 0 10px; }
.legal-copy a { color: var(--cyan); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1000px) {
  nav, .header-cta { display: none; }
  .menu-toggle { display: block; position: relative; z-index: 2; margin-left: auto; width: 42px; height: 42px; border: 1px solid var(--line); background: transparent; }
  .menu-toggle span { position: absolute; width: 18px; height: 1px; left: 11px; background: white; transition: .3s; }
  .menu-toggle span:first-child { top: 16px; }
  .menu-toggle span:last-child { top: 24px; }
  .menu-toggle[aria-expanded="true"] span:first-child { top: 20px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { top: 20px; transform: rotate(-45deg); }
  .site-header nav.open { display: flex; position: fixed; inset: 0; background: rgba(5,5,6,.98); flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
  .site-header nav.open a { font: 600 30px "Segoe UI", Arial, sans-serif; }
  .section-heading { grid-template-columns: 1fr 2fr; }
  .section-heading > p:last-child { grid-column: 2; }
  .service-card { padding: 30px; }
  .about { gap: 6vw; }
  .about-visual { min-height: 500px; }
  .gallery-grid { height: 450px; }
  .license-copy { padding: 45px; }
  .license-steps { grid-template-columns: 1fr 1fr; }
  .license-steps li:nth-child(2) { border-right: 0; }
  .license-steps li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 760px) {
  .site-header { height: 76px; padding: 0 20px; }
  .hero { min-height: 760px; padding: 130px 24px 80px; align-items: flex-start; }
  h1 { margin-top: 50px; font-size: clamp(54px, 17vw, 80px); }
  .hero-copy { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .laser-stage { inset: 22% -20% 0 0; opacity: .5; }
  .hero-photo { inset: 0; opacity: .42; background-position: 58% center; }
  .hero::after { background: linear-gradient(90deg, rgba(5,5,6,.96), rgba(5,5,6,.48)), linear-gradient(0deg, var(--bg), transparent 45%); }
  .scroll-note { display: none; }
  .section-pad { padding: 90px 24px; }
  .section-heading { display: block; }
  .section-heading h2 { margin: 24px 0; }
  .service-grid { display: block; }
  .service-card { min-height: auto; padding: 40px 8px; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-icon { margin: 35px 0 27px; }
  .about { display: flex; flex-direction: column; }
  .about-visual { min-height: 430px; width: 100%; }
  .about-copy { margin-top: 25px; }
  .about-facts { gap: 20px; }
  .about-facts strong { font-size: 26px; }
  .process-list li { grid-template-columns: 45px 1fr; padding: 28px 8px; }
  .process-list li p { grid-column: 2; }
  .license-panel { display: block; }
  .license-preview { min-height: 390px; }
  .license-copy { padding: 38px 25px; }
  .license-steps { display: block; }
  .license-steps li { border-right: 0; border-bottom: 1px solid var(--line); }
  .gallery-heading { display: block; }
  .gallery-heading h2 { text-align: left; margin-top: 24px; }
  .gallery-grid { display: block; height: auto; }
  .gallery-item, .gallery-item:nth-child(2) { height: 410px; margin: 0 0 16px; }
  .contact { display: block; }
  .contact-form { margin-top: 55px; padding: 30px 22px; }
  .form-row { display: block; }
  footer { flex-wrap: wrap; }
  footer > p { margin-left: 0; order: 3; width: 100%; }
  .footer-links { margin-left: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
