*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #2f6bff;
  --blue-deep: #1d4fd6;
  --ink: #14161d;
  --ink-soft: #5b6172;
  --bg: #ffffff;
  --bg-soft: #f3f5fb;
  --line: #e4e7f0;
  --dark: #0b0c12;
  --maxw: 1180px;
  --r: 18px;
}

html { scroll-behavior: smooth; }
body {
  font-family: "Poppins", system-ui, sans-serif;
  background: var(--bg); color: var(--ink);
  line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.section-title { text-align: center; font-size: clamp(1.6rem, 4vw, 2.3rem); font-weight: 700; letter-spacing: -.01em; }
.section-sub { text-align: center; color: var(--ink-soft); margin-top: .4rem; }

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem clamp(1.25rem, 5vw, 4rem);
  transition: background .3s, box-shadow .3s, padding .3s;
}
.nav.is-stuck { background: rgba(11,12,18,.85); backdrop-filter: blur(12px); box-shadow: 0 1px 0 rgba(255,255,255,.06); padding-block: .7rem; }
.nav__brand { display: inline-flex; align-items: center; }
.nav__brand-logo { height: 30px; width: auto; display: block; transition: height .3s; }
.nav.is-stuck .nav__brand-logo { height: 26px; }
.nav__links { display: flex; gap: clamp(1rem, 2.6vw, 2.4rem); }
.nav__links a { color: rgba(255,255,255,.82); font-size: .82rem; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; transition: color .2s; }
.nav__links a:hover { color: var(--blue); }
.nav__links a.is-current { color: #fff; position: relative; }
.nav__links a.is-current::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; border-radius: 2px; background: var(--blue); }
.nav__actions { display: flex; align-items: center; gap: .8rem; }
.lang { display: inline-flex; border: 1px solid rgba(255,255,255,.28); border-radius: 100px; overflow: hidden; }
.lang button { font-family: inherit; font-size: .72rem; font-weight: 600; letter-spacing: .05em; color: rgba(255,255,255,.7); background: none; border: 0; padding: .34rem .68rem; cursor: pointer; transition: background .2s, color .2s; }
.lang button:hover { color: #fff; }
.lang button.is-active { background: var(--blue); color: #fff; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__burger span { width: 24px; height: 2px; background: #fff; transition: .3s; }

.nav--light:not(.is-stuck) .nav__brand-logo { filter: brightness(0); }
.nav--light:not(.is-stuck) .nav__burger span { background: var(--ink); }
.nav--light:not(.is-stuck) .lang { border-color: var(--line); }
.nav--light:not(.is-stuck) .lang button { color: var(--ink-soft); }
.nav--light:not(.is-stuck) .lang button:hover { color: var(--ink); }
.nav--light:not(.is-stuck) .lang button.is-active { color: #fff; }
@media (min-width: 721px) {
  .nav--light:not(.is-stuck) .nav__links a { color: var(--ink-soft); }
  .nav--light:not(.is-stuck) .nav__links a:hover { color: var(--blue); }
  .nav--light:not(.is-stuck) .nav__links a.is-current { color: var(--ink); }
}

.hero {
  position: relative; background: linear-gradient(160deg, #0b0c12 0%, #161826 60%, #0e1018 100%);
  padding: clamp(7.5rem, 14vw, 10rem) clamp(1.25rem, 5vw, 4rem) clamp(5.5rem, 11vw, 8rem);
  border-bottom-left-radius: 50% 14%; border-bottom-right-radius: 50% 14%; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; right: 8%; top: 30%; width: 55vw; height: 55vw;
  max-width: 640px; max-height: 640px; transform: translateY(-30%);
  background: radial-gradient(circle, rgba(47,107,255,.32), transparent 62%); pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center;
}
.hero__eyebrow { color: rgba(255,255,255,.5); font-size: .8rem; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 1rem; }
.hero__title { font-size: clamp(3.2rem, 10vw, 7rem); font-weight: 800; color: #fff; line-height: .95; letter-spacing: -.03em; }
.hero__title .accent { color: var(--blue); }
.hero__role { margin-top: 1.1rem; color: rgba(255,255,255,.6); font-size: clamp(.72rem, 2vw, .95rem); font-weight: 500; letter-spacing: .1em; }
.hero__cta { display: flex; gap: .8rem; margin-top: 2rem; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .82rem 1.7rem; border-radius: 100px; font-family: inherit; font-weight: 600; font-size: .9rem;
  transition: transform .15s, background .2s, color .2s, border-color .2s;
}
.btn:active { transform: translateY(1px); }
.btn--solid { background: var(--blue); color: #fff; }
.btn--solid:hover { background: #fff; color: var(--blue); }
.btn--ghost { border: 1px solid rgba(255,255,255,.35); color: #fff; }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }

.hero__photo { position: relative; justify-self: center; display: grid; place-items: center; }
.hero__photo img {
  position: relative; z-index: 3; width: min(330px, 74vw); height: auto;
  filter: grayscale(1) contrast(1.08) brightness(1.05);
  -webkit-mask-image: linear-gradient(#000 86%, transparent 100%);
          mask-image: linear-gradient(#000 86%, transparent 100%);
}
.hero__blob {
  position: absolute; z-index: 1; width: min(360px, 80vw); aspect-ratio: 1;
  background: radial-gradient(circle at 50% 40%, #2f6bff 0%, #1d3fae 55%, transparent 72%);
  border-radius: 50%; filter: blur(2px); opacity: .85;
}
.hero__ring { position: absolute; z-index: 2; width: min(300px, 70vw); aspect-ratio: 1; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }

.hero__text > *, .hero__photo { opacity: 0; animation: heroIn .7s ease forwards; }
.hero__eyebrow { animation-delay: .05s; }
.hero__title { animation-delay: .14s; }
.hero__role { animation-delay: .22s; }
.hero__cta { animation-delay: .3s; }
.hero__photo { animation: heroIn .85s ease .26s forwards; }
@keyframes heroIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

.tools-wrap { position: relative; z-index: 30; margin-top: -3rem; padding-inline: 1.25rem; display: flex; justify-content: center; }
.tools-card { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 1.1rem clamp(1rem, 3vw, 2rem) 1.3rem; box-shadow: 0 30px 60px -32px rgba(20,30,80,.45); text-align: center; }
.tools-card__eyebrow { font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .2em; color: var(--blue); margin-bottom: .85rem; }
.tools-card__row { display: flex; align-items: stretch; }
.tool { display: flex; flex-direction: column; align-items: center; gap: .55rem; padding-inline: clamp(.7rem, 2.4vw, 1.6rem); min-width: 70px; }
.tool + .tool { border-left: 1px solid var(--line); }
.tool__ic { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 13px; background: var(--bg-soft); transition: background .2s, transform .2s; }
.tool__ic svg { width: 22px; height: 22px; color: var(--ink); transition: color .2s; }
.tool__lb { font-size: .76rem; font-weight: 600; color: var(--ink-soft); letter-spacing: .02em; }
.tool:hover .tool__ic { background: var(--blue); transform: translateY(-3px); }
.tool:hover .tool__ic svg { color: #fff; }

.about { max-width: 880px; margin: 0 auto; text-align: center; padding: clamp(4rem, 9vw, 6.5rem) clamp(1.25rem, 5vw, 2rem) clamp(2rem, 5vw, 3rem); }
.about__eyebrow { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .2em; color: var(--blue); margin-bottom: 1.4rem; }
.about__lead { font-size: clamp(1.25rem, 3.4vw, 1.9rem); font-weight: 500; line-height: 1.45; letter-spacing: -.01em; color: var(--ink); }
.about__lead strong { color: var(--blue); font-weight: 600; }
.about__note { color: var(--ink-soft); margin-top: 1.4rem; font-size: 1.02rem; max-width: 58ch; margin-inline: auto; }
.about__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 2.8rem; padding-top: 2.2rem; border-top: 1px solid var(--line); }
.about__stats div { display: flex; flex-direction: column; gap: .3rem; }
.about__stats span { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: var(--blue); line-height: 1; }
.about__stats em { font-style: normal; font-size: .82rem; color: var(--ink-soft); }

.work { max-width: var(--maxw); margin: 0 auto; padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.25rem, 5vw, 2rem); }
.work__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.2vw, 1.5rem); margin-top: 2.6rem; }
.card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: #fff; cursor: pointer; transition: transform .25s, box-shadow .25s, border-color .25s; }
.card:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -28px rgba(20,30,80,.5); border-color: var(--blue); }
.card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-soft); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.card:hover .card__media img { transform: scale(1.06); }
.card__view { position: absolute; inset: 0; z-index: 1; display: grid; place-items: center; background: linear-gradient(to top, rgba(47,107,255,.92), rgba(29,63,174,.55)); color: #fff; font-weight: 600; font-size: .92rem; opacity: 0; transition: opacity .3s; }
.card:hover .card__view { opacity: 1; }
.card__body { display: flex; flex-direction: column; flex: 1; padding: 1.1rem 1.2rem 1.3rem; }
.card__top { display: flex; justify-content: space-between; align-items: baseline; gap: .8rem; }
.card__title { font-size: 1.12rem; font-weight: 600; }
.card__count { font-size: .74rem; color: var(--ink-soft); white-space: nowrap; }
.card__desc { color: var(--ink-soft); font-size: .88rem; margin-top: .35rem; }
.card--feature { grid-column: span 2; flex-direction: row; }
.card--feature .card__media { aspect-ratio: auto; flex: 1.2; min-height: 260px; }
.card--feature .card__body { flex: 1; justify-content: center; }
.card--feature .card__title { font-size: 1.4rem; }
.card--feature .card__desc { font-size: .95rem; margin-top: .5rem; }

.lumix {
  position: relative; margin-top: clamp(2.5rem, 6vw, 5rem); overflow: hidden;
  background: radial-gradient(130% 90% at 50% -10%, #1a2a5c 0%, #0d1124 42%, #06070d 100%);
  color: #eef1fb; padding: clamp(4rem, 9vw, 7rem) clamp(1.25rem, 5vw, 4rem);
}
.lumix::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(rgba(126,155,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(126,155,255,.06) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(120% 80% at 50% 0%, #000 30%, transparent 75%);
          mask-image: radial-gradient(120% 80% at 50% 0%, #000 30%, transparent 75%);
}
.lumix__inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; }
.lumix__head { text-align: center; }
.lumix__badge { display: inline-block; font-size: .74rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #cfe0ff; padding: .5rem 1.1rem; border-radius: 100px; border: 1px solid rgba(126,155,255,.4); background: rgba(47,107,255,.12); }
.lumix__title {
  font-size: clamp(3.5rem, 15vw, 9rem); font-weight: 800; line-height: .9; margin: 1.1rem 0 .4rem; letter-spacing: -.02em;
  background: linear-gradient(120deg, #fff 0%, #8fa8ff 50%, #38d0ff 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent; text-shadow: 0 0 60px rgba(56,160,255,.25);
}
.lumix__sub { color: rgba(255,255,255,.62); letter-spacing: .02em; font-weight: 500; }
.lumix__tag { color: #8fa8ff; margin-top: .7rem; font-size: .96rem; font-style: italic; }
.lumix__feature { position: relative; margin: clamp(2.2rem, 5vw, 3.4rem) auto 0; border-radius: 20px; overflow: hidden; cursor: pointer; border: 1px solid rgba(126,155,255,.25); box-shadow: 0 40px 90px -40px rgba(20,40,120,.7); }
.lumix__feature img { width: 100%; display: block; aspect-ratio: 16/8; object-fit: cover; transition: transform .6s; }
.lumix__feature:hover img { transform: scale(1.04); }
.lumix__feature figcaption { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(1.2rem, 4vw, 2.4rem); background: linear-gradient(to top, rgba(6,7,13,.92) 0%, rgba(6,7,13,.2) 55%, transparent 100%); }
.lumix__pill { align-self: flex-start; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #06070d; background: #38d0ff; padding: .3rem .7rem; border-radius: 100px; margin-bottom: .7rem; }
.lumix__feature figcaption h3 { font-size: clamp(1.6rem, 5vw, 2.6rem); font-weight: 800; letter-spacing: -.01em; }
.lumix__feature figcaption p { color: rgba(255,255,255,.75); margin-top: .3rem; max-width: 46ch; }
.lumix__body { display: grid; grid-template-columns: 1.3fr .9fr; gap: clamp(1.5rem, 4vw, 3.5rem); margin: clamp(2.2rem, 5vw, 3.4rem) 0; align-items: center; }
.lumix__story p { color: rgba(255,255,255,.78); margin-bottom: 1rem; max-width: 56ch; font-size: 1.04rem; }
.lumix__story strong { color: #cfe0ff; font-weight: 600; }
.lumix__stats { display: grid; gap: 1rem; }
.lumix__stats div { display: flex; align-items: baseline; gap: .9rem; padding: 1rem 1.2rem; border-radius: 14px; border: 1px solid rgba(126,155,255,.18); background: rgba(126,155,255,.05); }
.lumix__stats span { font-size: 2rem; font-weight: 800; line-height: 1; color: #fff; min-width: 3.2rem; }
.lumix__stats em { font-style: normal; color: rgba(255,255,255,.6); font-size: .9rem; }
.lumix__gallery-label { text-transform: uppercase; letter-spacing: .2em; font-size: .72rem; font-weight: 600; color: rgba(143,170,255,.65); margin-bottom: 1rem; }
.lumix__gallery { display: grid; grid-template-columns: repeat(5, 1fr); gap: .9rem; }
.lumix__shot { border-radius: 12px; overflow: hidden; border: 1px solid rgba(126,155,255,.2); cursor: pointer; aspect-ratio: 16/10; }
.lumix__shot img { width: 100%; height: 100%; object-fit: cover; opacity: .85; transition: transform .5s, opacity .3s; }
.lumix__shot:hover img { transform: scale(1.07); opacity: 1; }

.contact { position: relative; background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%); color: #fff; overflow: hidden; padding: clamp(3rem, 7vw, 5.5rem) clamp(1.25rem, 5vw, 4rem); }
.contact__inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.contact__info h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); font-weight: 700; }
.contact__info > p { color: rgba(255,255,255,.85); margin-top: .6rem; max-width: 36ch; }
.contact__list { list-style: none; margin: 1.8rem 0 1.4rem; display: grid; gap: 1rem; }
.contact__list li { display: flex; align-items: center; gap: .8rem; }
.contact__list svg { width: 20px; height: 20px; flex: none; }
.contact__list a { font-weight: 500; }
.contact__list a:hover { text-decoration: underline; }
.contact__social { display: flex; gap: .7rem; }
.contact__social a, .footer__social a { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; transition: background .2s, color .2s; }
.contact__social svg { width: 18px; height: 18px; }
.contact__social a:hover { background: #fff; color: var(--blue); }
.contact__form { display: grid; gap: .9rem; }
.contact__form input, .contact__form textarea { font-family: inherit; font-size: .95rem; padding: .9rem 1.1rem; border: 0; border-radius: 12px; background: rgba(255,255,255,.96); color: var(--ink); resize: vertical; }
.contact__form input::placeholder, .contact__form textarea::placeholder { color: #9aa0b2; }
.contact__form button { justify-self: start; background: var(--ink); color: #fff; font-family: inherit; font-weight: 600; font-size: .95rem; padding: .85rem 2.2rem; border: 0; border-radius: 100px; cursor: pointer; transition: transform .15s, background .2s; }
.contact__form button:hover { background: #000; }
.contact__form button:active { transform: translateY(1px); }

.footer { background: var(--dark); color: rgba(255,255,255,.65); text-align: center; padding: clamp(2.5rem, 5vw, 3.5rem) 1.25rem; display: grid; gap: 1rem; justify-items: center; }
.footer__logo { line-height: 0; }
.footer__logo-img { height: 52px; width: auto; display: inline-block; }
.footer p { font-size: .9rem; }
.footer__social { display: flex; gap: .7rem; }
.footer__social svg { width: 18px; height: 18px; }
.footer__social a:hover { background: #fff; color: var(--dark); }
.footer__copy { font-size: .78rem; color: rgba(255,255,255,.4); margin-top: .4rem; }

.lb { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; background: rgba(8,9,14,.93); backdrop-filter: blur(6px); padding: 4vw; }
.lb.is-open { display: flex; }
.lb__img { max-width: 90vw; max-height: 82vh; border-radius: 10px; object-fit: contain; }
.lb__close { position: absolute; top: 1.2rem; right: 1.4rem; background: none; border: 0; color: #fff; font-size: 2.4rem; line-height: 1; cursor: pointer; opacity: .8; }
.lb__close:hover { opacity: 1; }
.lb__nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; width: 48px; height: 48px; border-radius: 50%; font-size: 1.6rem; cursor: pointer; display: grid; place-items: center; transition: background .2s; }
.lb__nav:hover { background: rgba(255,255,255,.22); }
.lb__prev { left: 2vw; } .lb__next { right: 2vw; }
.lb__caption { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.7); font-size: .85rem; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }

@media (max-width: 920px) {
  .work__grid { grid-template-columns: repeat(2, 1fr); }
  .lumix__body { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; }
  .card--feature { grid-column: span 2; flex-direction: column; }
  .card--feature .card__media { min-height: 0; aspect-ratio: 16 / 10; }
}
@media (max-width: 760px) { .lumix__gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) {
  .nav__burger { display: flex; }
  .nav__links { position: absolute; top: 100%; right: clamp(1.25rem, 5vw, 4rem); flex-direction: column; gap: 1rem; background: rgba(11,12,18,.97); padding: 1.2rem 1.6rem; border-radius: 14px; border: 1px solid rgba(255,255,255,.1); display: none; }
  .nav__links.is-open { display: flex; }
}
@media (max-width: 560px) {
  .work__grid { grid-template-columns: 1fr; }
  .about__stats { grid-template-columns: repeat(2, 1fr); }
  .card--feature { grid-column: span 1; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

.pagehead {
  position: relative; text-align: center; color: #fff; overflow: hidden;
  background: linear-gradient(160deg, #0b0c12 0%, #161826 60%, #0e1018 100%);
  padding: clamp(7.5rem, 14vw, 9.5rem) clamp(1.25rem, 5vw, 4rem) clamp(3.5rem, 7vw, 5rem);
  border-bottom-left-radius: 50% 9%; border-bottom-right-radius: 50% 9%;
}
.pagehead::after {
  content: ""; position: absolute; right: 6%; top: 20%; width: 50vw; height: 50vw;
  max-width: 560px; max-height: 560px;
  background: radial-gradient(circle, rgba(47,107,255,.3), transparent 62%); pointer-events: none;
}
.pagehead__inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; }
.pagehead__title { font-size: clamp(2.4rem, 7vw, 4.3rem); font-weight: 800; line-height: 1; letter-spacing: -.02em; }
.pagehead__sub { color: rgba(255,255,255,.62); max-width: 56ch; margin: 1rem auto 0; font-size: clamp(.95rem, 2.4vw, 1.1rem); }
.pagehead__back { display: inline-block; margin-top: 1.4rem; color: rgba(255,255,255,.7); font-size: .82rem; font-weight: 500; transition: color .2s; }
.pagehead__back:hover { color: var(--blue); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: clamp(3rem, 7vw, 5rem) clamp(1.25rem, 5vw, 2rem); }
.eyebrow-c { text-align: center; font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .2em; color: var(--blue); margin-bottom: .6rem; }

.home-intro { max-width: 760px; margin: 0 auto; text-align: center; padding: clamp(3.5rem, 8vw, 5.5rem) clamp(1.25rem, 5vw, 2rem) clamp(1.5rem, 4vw, 2.5rem); }
.home-intro__lead { font-size: clamp(1.2rem, 3.2vw, 1.7rem); font-weight: 500; line-height: 1.5; letter-spacing: -.01em; }
.home-intro__lead strong { color: var(--blue); font-weight: 600; }

.explore { max-width: var(--maxw); margin: 0 auto; padding: clamp(2rem, 5vw, 3.5rem) clamp(1.25rem, 5vw, 2rem) clamp(3rem, 6vw, 4.5rem); }
.explore__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2.2vw, 1.4rem); margin-top: 2.4rem; }
.ecard { display: flex; flex-direction: column; gap: .5rem; padding: 1.4rem 1.3rem 1.5rem; border: 1px solid var(--line); border-radius: var(--r); background: #fff; transition: transform .25s, box-shadow .25s, border-color .25s; }
.ecard:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -28px rgba(20,30,80,.5); border-color: var(--blue); }
.ecard__num { font-size: .78rem; font-weight: 700; color: var(--blue); }
.ecard h3 { font-size: 1.18rem; font-weight: 700; }
.ecard p { color: var(--ink-soft); font-size: .88rem; flex: 1; }
.ecard__go { margin-top: .6rem; font-size: .82rem; font-weight: 600; color: var(--blue); }

.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2.2vw, 1.5rem); margin-top: 2.6rem; }
.svc { padding: 1.6rem 1.4rem; border: 1px solid var(--line); border-radius: var(--r); background: #fff; transition: transform .25s, box-shadow .25s, border-color .25s; }
.svc:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -28px rgba(20,30,80,.5); border-color: var(--blue); }
.svc__ic { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 15px; background: var(--bg-soft); margin-bottom: 1rem; transition: background .2s; }
.svc__ic svg { width: 26px; height: 26px; color: var(--blue); transition: color .2s; }
.svc:hover .svc__ic { background: var(--blue); }
.svc:hover .svc__ic svg { color: #fff; }
.svc h3 { font-size: 1.12rem; font-weight: 700; }
.svc p { color: var(--ink-soft); font-size: .9rem; margin-top: .4rem; }

.process { background: var(--bg-soft); }
.process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2.4vw, 1.6rem); margin-top: 2.6rem; }
.pstep { position: relative; padding: 1.6rem 1.4rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r); }
.pstep__n { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--blue); color: #fff; font-weight: 800; font-size: 1.05rem; margin-bottom: 1rem; }
.pstep h3 { font-size: 1.08rem; font-weight: 700; }
.pstep p { color: var(--ink-soft); font-size: .88rem; margin-top: .4rem; }

.dgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.2vw, 1.5rem); margin-top: 2.6rem; }
.dtile { position: relative; border-radius: var(--r); overflow: hidden; cursor: pointer; aspect-ratio: 4 / 3; background: var(--bg-soft); border: 1px solid var(--line); }
.dtile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.dtile:hover img { transform: scale(1.06); }
.dtile__cap { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.1rem 1.2rem; background: linear-gradient(to top, rgba(11,12,18,.86) 0%, rgba(11,12,18,.1) 55%, transparent 100%); opacity: 0; transition: opacity .3s; }
.dtile:hover .dtile__cap { opacity: 1; }
.dtile__cap h3 { color: #fff; font-size: 1.12rem; font-weight: 700; }
.dtile__cat { align-self: flex-start; font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #06070d; background: var(--blue); padding: .26rem .6rem; border-radius: 100px; margin-bottom: .55rem; }

.cta { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%); color: #fff; text-align: center; padding: clamp(3rem, 7vw, 4.5rem) 1.25rem; }
.cta h2 { font-size: clamp(1.6rem, 4vw, 2.3rem); font-weight: 700; }
.cta p { color: rgba(255,255,255,.85); margin-top: .5rem; }
.cta .btn { margin-top: 1.6rem; background: #fff; color: var(--blue); }
.cta .btn:hover { background: var(--ink); color: #fff; }

.lumix-teaser { max-width: var(--maxw); margin: 0 auto clamp(3rem, 6vw, 4.5rem); padding: 0 clamp(1.25rem, 5vw, 2rem); }
.lumix-teaser__box { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; padding: clamp(1.8rem, 4vw, 2.6rem); border-radius: 22px; color: #eef1fb; background: radial-gradient(130% 120% at 0% 0%, #1a2a5c 0%, #0d1124 55%, #06070d 100%); }
.lumix-teaser__box h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 800; background: linear-gradient(120deg, #fff, #8fa8ff 60%, #38d0ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lumix-teaser__box p { color: rgba(255,255,255,.72); margin-top: .7rem; }
.lumix-teaser__box .btn { margin-top: 1.3rem; }

@media (max-width: 920px) {
  .explore__grid, .services__grid, .process__grid { grid-template-columns: repeat(2, 1fr); }
  .dgrid { grid-template-columns: repeat(2, 1fr); }
  .lumix-teaser__box { grid-template-columns: 1fr; }
}
.lumix--page { margin-top: 0; padding-top: clamp(7.5rem, 13vw, 9.5rem); }

.lx-body { background: #06070d; }
.lx-display { font-family: "Orbitron", "Poppins", sans-serif; }

.lumix--page .lumix__head { display: flex; flex-direction: column; align-items: center; }
.lumix--page .lumix__title { font-size: clamp(3rem, 12vw, 7rem); }

.lx-status { display: inline-flex; align-items: center; gap: .5rem; font-size: .7rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: #ffce8a; padding: .4rem .9rem; border-radius: 100px; border: 1px solid rgba(255,180,77,.35); background: rgba(255,180,77,.08); margin-bottom: 1rem; }
.lx-intro { max-width: 62ch; margin: 1.4rem auto 0; color: rgba(255,255,255,.72); font-size: clamp(1rem, 2.4vw, 1.18rem); line-height: 1.75; }
.lx-hero__cta { display: flex; gap: .8rem; margin-top: 2rem; flex-wrap: wrap; justify-content: center; }

.lx-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: clamp(2.5rem, 6vw, 4rem); }
.lx-stat { position: relative; text-align: center; padding: 1.5rem 1rem; border-radius: 16px; border: 1px solid rgba(126,155,255,.18); background: rgba(126,155,255,.05); overflow: hidden; }
.lx-stat::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, #38d0ff, transparent); opacity: .7; }
.lx-stat b { display: block; font-size: clamp(1.9rem, 5vw, 2.9rem); font-weight: 800; line-height: 1; background: linear-gradient(120deg, #fff, #8fa8ff 55%, #38d0ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lx-stat span { display: block; margin-top: .55rem; font-size: .8rem; color: rgba(255,255,255,.55); }

.lx-sec { position: relative; padding: clamp(3.5rem, 8vw, 6rem) clamp(1.25rem, 5vw, 4rem); color: #eef1fb; }
.lx-sec--alt { background: linear-gradient(180deg, rgba(26,42,92,.22), rgba(6,7,13,0)); }
.lx-sec--tight { padding-top: clamp(1.5rem, 3vw, 2.5rem); padding-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.lx-inner { max-width: var(--maxw); margin: 0 auto; }
.lx-narrow { max-width: 780px; }
.lx-eyebrow { font-size: .72rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: #38d0ff; margin-bottom: .7rem; }
.lx-title { font-size: clamp(1.8rem, 5vw, 2.9rem); font-weight: 800; line-height: 1.05; letter-spacing: .01em; background: linear-gradient(120deg, #fff, #8fa8ff 60%, #38d0ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lx-sub { color: rgba(255,255,255,.6); margin-top: .5rem; }
.lx-prose { margin-top: 1.4rem; }
.lx-prose p { color: rgba(255,255,255,.78); font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.1rem; max-width: 68ch; }
.lx-prose strong { color: #cfe0ff; font-weight: 600; }

.lx-feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.2vw, 1.4rem); margin-top: 2.6rem; }
.lx-card { position: relative; padding: 1.6rem 1.4rem; border-radius: 16px; border: 1px solid rgba(126,155,255,.18); background: rgba(126,155,255,.05); overflow: hidden; transition: transform .25s, box-shadow .25s, border-color .25s; }
.lx-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 2px; background: linear-gradient(90deg, #2f6bff, #38d0ff); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.lx-card:hover { transform: translateY(-5px); border-color: rgba(56,208,255,.5); box-shadow: 0 30px 60px -30px rgba(56,160,255,.55); }
.lx-card:hover::before { transform: scaleX(1); }
.lx-card__ic { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 13px; background: rgba(47,107,255,.16); border: 1px solid rgba(126,155,255,.25); margin-bottom: 1rem; }
.lx-card__ic svg { width: 24px; height: 24px; color: #38d0ff; }
.lx-card h3 { font-size: 1.1rem; font-weight: 700; color: #fff; }
.lx-card p { color: rgba(255,255,255,.62); font-size: .9rem; margin-top: .45rem; }

.lx-chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.4rem; }
.lx-chips span { font-family: "Orbitron", "Poppins", sans-serif; font-size: .72rem; font-weight: 600; letter-spacing: .04em; color: #cfe0ff; padding: .45rem .9rem; border-radius: 100px; border: 1px solid rgba(126,155,255,.3); background: rgba(126,155,255,.06); }

.lx-journey { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2.2vw, 1.4rem); margin-top: 2.6rem; }
.lx-jstep { position: relative; padding: 1.6rem 1.4rem; border-radius: 16px; border: 1px solid rgba(126,155,255,.18); background: rgba(126,155,255,.05); }
.lx-jstep__n { display: block; font-size: 1.5rem; font-weight: 800; color: #38d0ff; opacity: .85; margin-bottom: .6rem; }
.lx-jstep h3 { font-size: 1.05rem; font-weight: 700; color: #fff; }
.lx-jstep p { color: rgba(255,255,255,.6); font-size: .88rem; margin-top: .4rem; }

.lx-legacy { text-align: center; padding: clamp(4rem, 9vw, 6.5rem) clamp(1.25rem, 5vw, 4rem); background: radial-gradient(120% 120% at 50% 0%, rgba(47,107,255,.22), rgba(6,7,13,0) 60%); }
.lx-legacy h2 { font-size: clamp(1.8rem, 5vw, 3rem); font-weight: 800; line-height: 1.1; background: linear-gradient(120deg, #fff, #8fa8ff 60%, #38d0ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lx-legacy p { color: rgba(255,255,255,.72); max-width: 60ch; margin: 1.1rem auto 0; font-size: 1.05rem; line-height: 1.75; }

@media (max-width: 920px) {
  .lx-stats, .lx-feat-grid, .lx-journey { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .lx-stats, .lx-feat-grid, .lx-journey { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .explore__grid, .services__grid, .process__grid, .dgrid { grid-template-columns: 1fr; }
}

.dtile, .lumix__shot, .cs__shot {
  display: block; width: 100%; padding: 0; font: inherit; color: inherit;
  background: none; text-align: left; -webkit-appearance: none; appearance: none;
}
.card { color: inherit; text-decoration: none; }

:where(a, button, [tabindex]):focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 6px;
}
.lb :focus-visible { outline-color: #fff; }

.btn--outline { border: 1px solid var(--line); color: var(--ink); background: #fff; }
.btn--outline:hover { border-color: var(--blue); color: var(--blue); }
.btn svg { width: 18px; height: 18px; margin-right: .55rem; flex: none; }
.about__cv { margin-top: 2.4rem; }
.contact__cv { margin-bottom: 1.6rem; }

.cf__botcheck { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.cf__status { margin-top: .2rem; font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.85); }
.cf__status.is-ok { color: #d6ffe4; }
.cf__status.is-err { color: #ffd8d8; }
.contact__form button[disabled] { opacity: .6; cursor: progress; }

.cs { padding-top: clamp(6.5rem, 11vw, 8rem); }
.cs__head { max-width: 780px; margin: 0 auto 1rem; text-align: center; }
.cs__head .pagehead__title { color: var(--ink); }
.cs__head .pagehead__sub { color: var(--ink-soft); margin-top: .8rem; }
.cs__blocks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin: clamp(2.5rem, 6vw, 4rem) 0; }
.cs__block { padding: 1.6rem; border: 1px solid var(--line); border-radius: var(--r); background: var(--bg-soft); }
.cs__block-h { font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--blue); margin-bottom: .8rem; }
.cs__block p { color: var(--ink-soft); font-size: .95rem; }
.cs__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.2rem; margin-top: 2rem; }
.cs__shot { border-radius: 12px; overflow: hidden; border: 1px solid var(--line); cursor: pointer; aspect-ratio: 16/10; }
.cs__shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.cs__shot:hover img { transform: scale(1.06); }
.cs__nav { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: clamp(2.5rem, 6vw, 4rem); padding-top: 1.6rem; border-top: 1px solid var(--line); font-size: .92rem; font-weight: 500; }
.cs__nav a:hover { color: var(--blue); }
.cs__missing { text-align: center; color: var(--ink-soft); margin-bottom: 1.5rem; }

@media (max-width: 760px) {
  .cs__blocks { grid-template-columns: 1fr; }
  .cs__nav { justify-content: center; text-align: center; }
}
