:root {
  --void:      #08060D;
  --panel:     #100C19;
  --panel-2:   #16111F;
  --star:      #F4F0F7;
  --dust:      #ABA4B9;
  --dust-dim:  #7C7489;
  --violet:    #B14BF4;
  --violet-soft: #CB94F7;
  --magenta:   #E63FBE;
  --hair:      rgba(190, 170, 220, 0.19);
  --hair-soft: rgba(190, 170, 220, 0.12);

  --pad: clamp(20px, 5vw, 56px);

  --maxw: min(1480px, 92vw);
}

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

html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  background: var(--void);
  color: var(--star);

  font-family: 'Archivo', 'Noto Sans Georgian', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--violet); color: var(--void); }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 3px;
  border-radius: 4px;
}

.display {
  font-weight: 200;
  font-variation-settings: 'wdth' 116;
  font-size: clamp(2.5rem, 7.4vw, 6.25rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin: 0.18em 0 0;
}

.h2 {
  font-weight: 250;
  font-variation-settings: 'wdth' 112;
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0.15em 0 1.6em;
}

.eyebrow {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--violet-soft);
  margin: 0;
}

.lede {
  color: var(--dust);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 450;
  max-width: 34ch;
  margin: 1.2em auto 0;
}

html:not(.lang-en) .display { font-size: clamp(2.05rem, 6.1vw, 4.6rem); line-height: 1.1; font-weight: 400; letter-spacing: -0.005em; }
html:not(.lang-en) .h2      { font-size: clamp(1.45rem, 3vw, 2.2rem); line-height: 1.25; font-weight: 500; letter-spacing: 0; }
html:not(.lang-en) .eyebrow { letter-spacing: 0.04em; font-size: 0.75rem; }

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 14px var(--pad);
  background: linear-gradient(to bottom, rgba(8, 6, 13, 0.92), rgba(8, 6, 13, 0));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.wordmark {
  display: flex;
  align-items: baseline;
  gap: 0.45em;
  font-size: 0.9375rem;
  letter-spacing: 0.26em;
  white-space: nowrap;
}
.wordmark-a { font-weight: 700; font-variation-settings: 'wdth' 106; }
.wordmark-b { font-weight: 300; color: var(--dust); font-variation-settings: 'wdth' 106; }
@media (max-width: 520px) { .wordmark { font-size: 0.8125rem; letter-spacing: 0.2em; } }

.topnav { display: flex; justify-self: center; gap: clamp(16px, 2.2vw, 34px); }
.topnav a {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.13em;
  color: var(--dust-dim);
  white-space: nowrap;
  transition: color 0.2s;
}
.topnav a:hover { color: var(--star); }
html:not(.lang-en) .topnav a { font-family: 'Noto Sans Georgian', sans-serif; letter-spacing: 0.02em; font-size: 0.8125rem; }
@media (max-width: 940px) {
  .topnav { display: none; }
  .topbar { display: flex; justify-content: space-between; }
  .topbar-right .lang { display: none; }
}

.topbar-right { display: flex; align-items: center; justify-self: end; gap: clamp(10px, 2vw, 18px); }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 34px;
  height: 34px;
  margin-right: -6px;
}
.burger span {
  display: block;
  width: 21px;
  height: 1.5px;
  background: var(--star);
  transition: transform 0.32s cubic-bezier(0.16, 0.84, 0.28, 1);
}
.burger.is-open span:first-child { transform: translateY(3.75px) rotate(45deg); }
.burger.is-open span:last-child  { transform: translateY(-3.75px) rotate(-45deg); }
@media (max-width: 940px) { .burger { display: flex; } }

.mobilenav {
  position: fixed;
  left: 0; right: 0; top: 0;
  z-index: 35;
  display: flex;
  flex-direction: column;
  padding: 74px var(--pad) 26px;
  background: rgba(9, 7, 15, 0.98);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--hair);
  box-shadow: 0 26px 54px -22px rgba(0, 0, 0, 0.95);
  transform: translateY(-101%);
  transition: transform 0.4s cubic-bezier(0.16, 0.84, 0.28, 1);
}
.mobilenav.is-open { transform: none; }
@media (min-width: 941px) { .mobilenav { display: none; } }

.mobilenav a {
  padding: 15px 0;
  border-top: 1px solid var(--hair-soft);
  font-size: 1.0625rem;
  font-weight: 450;
  color: var(--dust);
  transition: color 0.2s;
}
.mobilenav a:first-child { border-top: 0; }
.mobilenav a:active { color: var(--star); }

.mobilenav-foot {
  display: flex;
  align-items: center;
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--hair-soft);
}

.mobilenav .lang {
  padding: 8px 14px;
  border: 1px solid var(--hair);
  border-radius: 999px;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
}

.lang {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.688rem;
  letter-spacing: 0.08em;
  color: var(--dust-dim);
  padding: 6px 2px;
}
.lang-opt.is-on { color: var(--star); }
.lang-sep { width: 1px; height: 11px; background: var(--hair); }

.hero {
  padding: 0 0 clamp(22px, 3vh, 42px);
  text-align: center;
}

.stage { width: 100%; }

.stage-frame {
  position: relative;
  height: clamp(198px, 31vh, 392px);
}
#ceiling, #build { display: block; width: 100%; height: 100%; }

.console {
  position: relative;
  z-index: 2;
  margin: clamp(-30px, -3vw, -16px) auto 0;
  padding-inline: var(--pad);
}

.modes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(14px, 3vw, 30px);
}

.mode {
  position: relative;
  padding: 6px 0 9px;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.17em;
  color: var(--dust-dim);
  white-space: nowrap;
  transition: color 0.2s;
}
.mode::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--violet);
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.mode:hover { color: var(--dust); }
.mode.is-on { color: var(--star); }
.mode.is-on::after { transform: scaleX(1); }

html:not(.lang-en) .mode { font-family: 'Noto Sans Georgian', sans-serif; font-size: 0.8125rem; letter-spacing: 0.02em; }

.swatches {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}
.sw {
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--sw);
  opacity: 0.72;
  transition: opacity 0.2s, transform 0.2s;
}
.sw:hover { opacity: 1; transform: scale(1.18); }
.sw.is-on { opacity: 1; transform: scale(1.32); }

.hero-copy { margin-top: clamp(18px, 2.6vh, 32px); padding-inline: var(--pad); }
.work { padding-top: clamp(44px, 6vh, 78px); }

.cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: clamp(26px, 4vh, 40px);
  padding: 15px 26px;
  border-radius: 999px;
  background: var(--violet);
  color: #0B0512;
  font-weight: 500;
  transition: transform 0.22s, background-color 0.22s;
}
.cta:hover {
  transform: translateY(-2px);
  background: #BE5FF7;
}
.cta-label { font-size: 0.875rem; letter-spacing: 0.02em; }
.cta-num {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  padding-left: 14px;
  border-left: 1px solid rgba(11, 5, 18, 0.28);
}
.cta-note {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--dust-dim);
  margin: 14px 0 0;
}

.scroll-cue {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  margin-top: clamp(22px, 3.4vh, 38px);
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  color: var(--dust-dim);
  transition: color 0.22s;
}
.scroll-cue:hover { color: var(--star); }
html:not(.lang-en) .scroll-cue { font-family: 'Noto Sans Georgian', sans-serif; letter-spacing: 0.03em; font-size: 0.8125rem; }

.scroll-cue-arrow {
  width: 9px;
  height: 9px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  animation: nudge 2.4s ease-in-out infinite;
}
@keyframes nudge {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.55; }
  50%      { transform: rotate(45deg) translate(3px, 3px); opacity: 1; }
}
html:not(.lang-en) .cta-note { font-family: 'Noto Sans Georgian', sans-serif; letter-spacing: 0; }

@media (max-width: 420px) {
  .cta { flex-direction: column; gap: 4px; padding: 14px 30px; }
  .cta-num { padding-left: 0; border-left: 0; }
}

.section {
  position: relative;
  isolation: isolate;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(62px, 9.5vh, 116px) var(--pad);
}

.section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    58% 46% at var(--pool-x, 50%) var(--pool-y, 32%),
    rgba(177, 75, 244, 0.085),
    transparent 72%
  );
}
@media (max-width: 760px) {
  .section::before {
    background: radial-gradient(
      380px 300px at var(--pool-x, 50%) 140px,
      rgba(177, 75, 244, 0.26),
      transparent 74%
    );
  }
}

.work    { --pool-x: 50%; --pool-y: 18%; }

.process { --pool-x: 76%; --pool-y: 42%; }
.pricing { --pool-x: 20%; --pool-y: 46%; }
.contact { --pool-x: 62%; --pool-y: 24%; }

.section + .section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hair), transparent);
}

.reel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2.4vw, 26px);
}

@media (max-width: 760px) {
  .reel {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 72%;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-left: var(--pad);
    margin-inline: calc(var(--pad) * -1);
    padding-inline: var(--pad);
    padding-bottom: 6px;
    scrollbar-width: none;
  }
  .reel::-webkit-scrollbar { display: none; }
  .clip { scroll-snap-align: start; }
  .reel .reveal { transform: scale(0.97); }
}
@media (max-width: 460px) { .reel { grid-auto-columns: 78%; } }

.clip { width: 100%; max-width: 380px; margin-inline: auto; }

.clip-btn, .clip-frame {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--hair);
  background: var(--panel);
}
.clip-btn { position: relative; padding: 0; }
.clip-frame { border: 1px solid var(--hair); }

.clip-btn img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1), opacity 0.4s;
  opacity: 0.9;
}
.clip-btn:hover img { transform: scale(1.045); opacity: 1; }

.clip-play {
  position: absolute;
  left: 50%; top: 50%;
  width: 54px; height: 54px;
  margin: -27px 0 0 -27px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(10, 6, 18, 0.42);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background-color 0.25s, border-color 0.25s, transform 0.25s;
}

.clip-play { display: grid; place-items: center; }
.clip-play::after {
  content: '';
  width: 0;
  height: 0;
  margin-left: 4px;
  border-left: 15px solid var(--star);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.clip-btn:hover .clip-play {
  transform: scale(1.08);
  border-color: var(--violet);
  background: rgba(177, 75, 244, 0.3);
}

.clip-cap {
  font-size: 0.8125rem;
  font-weight: 450;
  color: var(--dust);
  margin: 12px 2px 0;
  line-height: 1.45;
}

.textlink {
  display: inline-block;
  margin-top: clamp(26px, 4vw, 40px);
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--dust);
  border-bottom: 1px solid var(--hair);
  padding-bottom: 3px;
  transition: color 0.22s, border-color 0.22s;
}
.textlink:hover { color: var(--star); border-color: var(--violet); }
html:not(.lang-en) .textlink { font-family: 'Noto Sans Georgian', sans-serif; letter-spacing: 0; }

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}
@media (max-width: 860px) { .process-grid { grid-template-columns: 1fr; } }

.process-stage {
  position: sticky;
  top: 16vh;
  aspect-ratio: 16 / 8.2;
  border: 1px solid var(--hair-soft);
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(150, 110, 200, 0.07), transparent 62%),
    linear-gradient(180deg, #100C19, #0A0711);
}
@media (max-width: 860px) { .process-stage { display: none; } }

.steps { list-style: none; margin: 0; padding: 0; }

.step {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  column-gap: clamp(14px, 1.6vw, 24px);
  padding: clamp(30px, 5vw, 58px) 0 clamp(30px, 5vw, 58px) 14px;
  border-top: 1px solid var(--hair-soft);
  opacity: 0.42;
  transition: opacity 0.5s ease;
}
.step:first-child { border-top: 0; }
.step.is-active { opacity: 1; }

.step::before {
  content: '';
  position: absolute;
  left: 0;
  top: clamp(18px, 3vw, 28px);
  bottom: clamp(18px, 3vw, 28px);
  width: 2px;
  border-radius: 2px;
  background: var(--violet);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.45s cubic-bezier(0.16, 0.84, 0.28, 1);
}
.step.is-active::before { transform: scaleY(1); }

.step-n {
  grid-row: 1 / span 2;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--dust-dim);
  transition: color 0.4s ease;
}
.step.is-active .step-n { color: var(--violet-soft); }

.step-t { grid-column: 2; margin: 0; font-size: clamp(1.0625rem, 1.9vw, 1.3125rem); font-weight: 400; line-height: 1.3; }
.step-d { grid-column: 2; margin: 9px 0 0; color: var(--dust); font-size: 0.9375rem; font-weight: 450; max-width: 52ch; }
@media (max-width: 520px) { .step { grid-template-columns: 40px minmax(0, 1fr); } .step-n { font-size: 1.25rem; } }

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
  margin-top: clamp(24px, 4vw, 40px);
}
@media (max-width: 840px) { .pricing-grid { grid-template-columns: 1fr; gap: 34px; } }

.price-lead {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  color: var(--dust-dim);
  margin: 0 0 6px;
}
html:not(.lang-en) .price-lead { font-family: 'Noto Sans Georgian', sans-serif; letter-spacing: 0.04em; }

.price-figure {
  display: flex;
  align-items: baseline;
  gap: 0.12em;
  margin: 0;
  line-height: 0.86;
  color: var(--star);
}
.price-num {
  font-size: clamp(4.6rem, 13vw, 9rem);
  font-weight: 300;
  font-variation-settings: 'wdth' 112;
  letter-spacing: -0.03em;
}

.price-cur {
  font-size: clamp(2.3rem, 5.2vw, 3.9rem);
  font-weight: 300;
  color: var(--violet);
  transform: translateY(-0.06em);
}

.price-note {
  margin: clamp(16px, 2.4vw, 24px) 0 0;
  color: var(--dust);
  font-size: 1rem;
  font-weight: 450;
  max-width: 34ch;
}

.facts { margin: 0; }

.fact {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(14px, 2vw, 19px) 0;
  border-top: 1px solid var(--hair-soft);
}

.fact dt {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  color: var(--dust-dim);
  white-space: nowrap;
}
html:not(.lang-en) .fact dt { font-family: 'Noto Sans Georgian', sans-serif; letter-spacing: 0.02em; font-size: 0.8125rem; }

.fact dd {
  margin: 0;
  text-align: right;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.3;
}

.limit {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: clamp(32px, 5vw, 52px) 0 0;
  padding-top: clamp(20px, 3vw, 28px);
  border-top: 1px solid var(--hair-soft);
  color: var(--dust-dim);
  font-size: 0.9375rem;
}
.limit::before {
  content: '';
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid var(--dust-dim);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
  margin-top: clamp(20px, 3vw, 30px);
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-main {
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 3vw, 32px);
}

.contact-k {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  color: var(--dust-dim);
}
html:not(.lang-en) .contact-k { font-family: 'Noto Sans Georgian', sans-serif; letter-spacing: 0.02em; font-size: 0.75rem; }

.phone { display: block; }
.phone-lead {
  display: block;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  color: var(--dust-dim);
  margin-bottom: 8px;
}
html:not(.lang-en) .phone-lead { font-family: 'Noto Sans Georgian', sans-serif; letter-spacing: 0.04em; }

.phone-line { display: flex; align-items: baseline; gap: 0.4em; }
.phone-code {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: clamp(0.875rem, 1.4vw, 1.0625rem);
  color: var(--dust-dim);
}
.phone-num {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: clamp(1.65rem, 4.1vw, 2.7rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1;
  transition: color 0.22s;
}
.phone:hover .phone-num { color: var(--violet); }

.where {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-top: clamp(20px, 3vw, 28px);
  border-top: 1px solid var(--hair-soft);
}
.where-addr {
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.22s;
}
.where:hover .where-addr { color: var(--violet); }

.socials { display: flex; flex-wrap: wrap; gap: 10px; }
.social {
  display: flex;
  align-items: baseline;
  gap: 9px;
  padding: 10px 16px;
  border: 1px solid var(--hair);
  border-radius: 999px;
  transition: border-color 0.22s, background-color 0.22s;
}
.social:hover { border-color: var(--violet); background: rgba(177, 75, 244, 0.1); }
.social-k {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  color: var(--dust-dim);
}
.social-v { font-size: 0.875rem; font-weight: 450; }

.map {
  position: relative;
  min-height: 300px;
  border: 1px solid var(--hair);
  border-radius: 14px;
  overflow: hidden;
  background: var(--panel);
}

.map-frame {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;

  filter: invert(92%) hue-rotate(180deg) saturate(0.72) contrast(0.92);
}

.map-link {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--hair);
  background: rgba(10, 7, 17, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  color: var(--star);
  transition: border-color 0.22s, background-color 0.22s;
}
.map-link:hover { border-color: var(--violet); background: rgba(177, 75, 244, 0.22); }
html:not(.lang-en) .map-link { font-family: 'Noto Sans Georgian', sans-serif; letter-spacing: 0; }

.footer {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(46px, 7vh, 78px) var(--pad) 34px;
  border-top: 1px solid var(--hair-soft);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.3fr 1fr;
  gap: clamp(22px, 3.5vw, 46px);
}
@media (max-width: 820px) { .footer-top { grid-template-columns: 1fr 1fr; row-gap: 34px; } }
@media (max-width: 440px) { .footer-top { grid-template-columns: 1fr; } }

.footer-mark {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  font-variation-settings: 'wdth' 108;
}
.footer-desc {
  margin: 12px 0 0;
  color: var(--dust);
  font-size: 0.875rem;
  font-weight: 450;
  max-width: 28ch;
}

.footer-col { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }

.footer-h {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  color: var(--dust-dim);
}
html:not(.lang-en) .footer-h { font-family: 'Noto Sans Georgian', sans-serif; letter-spacing: 0.02em; font-size: 0.75rem; }

.footer-col a, .footer-addr {
  color: var(--dust);
  font-size: 0.875rem;
  font-weight: 450;
  line-height: 1.4;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--star); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(34px, 5vh, 58px);
  padding-top: 20px;
  border-top: 1px solid var(--hair-soft);
  font-size: 0.75rem;
  color: var(--dust-dim);
}

.callbar { display: none; }

@media (max-width: 720px) {
  .callbar {
    position: fixed;
    left: 12px; right: 12px; bottom: 12px;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 999px;
    background: var(--violet);
    color: #0B0512;
    font-size: 0.875rem;
    box-shadow: 0 16px 40px -14px rgba(0, 0, 0, 0.95);

    transform: translateY(150%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.3, 1), opacity 0.3s;
  }
  .callbar.is-up { transform: none; opacity: 1; pointer-events: auto; }
  .callbar strong { font-family: 'IBM Plex Mono', ui-monospace, monospace; font-weight: 500; }
  .footer { padding-bottom: 92px; }
}

.section, .hero-copy, .console {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.3, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.section.is-in, .hero-copy.is-in, .console.is-in { opacity: 1; transform: none; }

.reveal {
  opacity: 0;
  transform: translateY(52px) scale(0.965);
  transition: opacity 0.75s cubic-bezier(0.16, 0.84, 0.28, 1),
              transform 0.9s cubic-bezier(0.16, 0.84, 0.28, 1);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.14s; }
.reveal:nth-child(3) { transition-delay: 0.28s; }
.reveal:nth-child(4) { transition-delay: 0.42s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
.console { transition-delay: 0.35s; }
.hero-copy { transition-delay: 0.15s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .section, .hero-copy, .console { opacity: 1; transform: none; transition: none; }
  .console-led { animation: none; }
  * { transition-duration: 0.01ms !important; }
}
