/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn--primary {
  background: var(--accent);
  color: var(--accent-fg);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--accent-soft);
}

.btn--ghost {
  background: transparent;
  color: var(--fg-0);
  border-color: var(--border-2);
}
.btn--ghost:hover {
  background: var(--bg-2);
  border-color: var(--border-3);
}

.btn--icon {
  width: 44px;
  padding: 0;
}

.btn--lg {
  height: 52px;
  padding: 0 28px;
  font-size: 15px;
}

.btn--sm {
  height: 34px;
  padding: 0 14px;
  font-size: 13px;
}

.btn .arrow {
  transition: transform 0.25s var(--ease);
}
.btn:hover .arrow { transform: translateX(2px); }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1180px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 10px 22px;
  background: rgba(14,16,20,0.72);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--border-1);
  border-radius: 999px;
  transition: transform 0.3s var(--ease);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.nav__brand-mark {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--accent);
  color: var(--accent-fg);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
}
.nav__brand-name { color: var(--fg-0); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  display: inline-block;
  padding: 8px 14px;
  font-size: 13.5px;
  color: var(--fg-1);
  border-radius: 999px;
  transition: all 0.2s var(--ease);
}
.nav__links a:hover {
  color: var(--fg-0);
  background: var(--bg-2);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 16px 0 18px;
  border-radius: 999px;
  background: var(--fg-0);
  color: var(--bg-0);
  font-size: 13.5px;
  font-weight: 500;
  transition: all 0.2s var(--ease);
}
.nav__cta:hover {
  background: var(--accent);
  color: var(--accent-fg);
}
.nav__cta-arrow {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(0,0,0,0.08);
}

@media (max-width: 820px) {
  .nav__links { display: none; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 180px 0 var(--section-pad);
  overflow: hidden;
}
.hero__inner {
  position: relative;
  z-index: 2;
}
.hero__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 10px;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  background: var(--bg-1);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-1);
  margin-bottom: 36px;
}
.hero__status-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.hero__status-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.4;
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0.4; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hero__h1 {
  font-size: clamp(48px, 7.6vw, 104px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.04em;
  max-width: 1100px;
  margin: 0 0 32px 0;
}
.hero__h1 .accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 300;
}
.hero__h1 .strike {
  position: relative;
  color: var(--fg-3);
  font-weight: 300;
}
.hero__h1 .strike::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  top: 52%;
  height: 2px;
  background: var(--fg-3);
}

.hero__sub {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--fg-1);
  max-width: 620px;
  margin: 0 0 44px 0;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 96px;
}

.hero__instrument {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border-1);
  border: 1px solid var(--border-1);
  border-radius: var(--r-lg);
  overflow: hidden;
  background-color: var(--bg-1);
}
.hero__instrument-cell {
  background: var(--bg-1);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 120px;
}
.hero__instrument-cell .label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.hero__instrument-cell .value {
  font-size: 28px;
  letter-spacing: -0.025em;
  color: var(--fg-0);
  font-weight: 400;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.hero__instrument-cell .value .unit {
  font-size: 14px;
  color: var(--fg-2);
  font-family: var(--font-mono);
}
.hero__instrument-cell .meta {
  font-size: 12.5px;
  color: var(--fg-2);
  margin-top: auto;
}
.hero__instrument-cell .bar {
  height: 4px;
  border-radius: 2px;
  background: var(--bg-3);
  overflow: hidden;
  margin-top: auto;
}
.hero__instrument-cell .bar > i {
  display: block;
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}

.hero__instrument-cell.is-primary {
  background: var(--bg-2);
}
.hero__instrument-cell.is-primary .value {
  font-size: 36px;
}

@media (max-width: 880px) {
  .hero__instrument { grid-template-columns: 1fr 1fr; }
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hero__bg::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 800px;
  background: radial-gradient(ellipse at center, var(--accent-soft) 0%, transparent 60%);
  opacity: 0.6;
  filter: blur(40px);
}

/* horizontal rule */
.hr {
  height: 1px;
  background: var(--border-1);
  width: 100%;
}

/* ============ MARQUEE / STACK ============ */
.stack {
  padding: 64px 0;
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
  overflow: hidden;
}
.stack__label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--fg-3);
  text-transform: uppercase;
  margin-bottom: 32px;
}
.stack__row {
  display: flex;
  gap: 80px;
  align-items: center;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--fg-2);
}
.stack__row span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.stack__row span::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--fg-4);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============ SECTION HEADER ============ */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}
.section__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}
.section__head h2 {
  font-size: clamp(40px, 5.4vw, 72px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
  max-width: 720px;
}
.section__head h2 .accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 300;
}
.section__head .meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  max-width: 380px;
  justify-self: end;
}
.section__head .meta p {
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.55;
}

@media (max-width: 880px) {
  .section__head { grid-template-columns: 1fr; gap: 32px; }
  .section__head .meta { justify-self: start; }
}

/* index counter */
.idx {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--fg-3);
}

/* ============ SOBRE ============ */
.sobre {
  padding: var(--section-pad) 0;
}
.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: end;
}
.sobre__grid h2 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
}
.sobre__grid h2 .accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 300;
}
.sobre__text {
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-1);
  margin-bottom: 18px;
}
.sobre__signature {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-1);
  display: flex;
  align-items: center;
  gap: 14px;
}
.sobre__signature-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-0);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.sobre__signature .name { font-size: 14px; color: var(--fg-0); font-weight: 500; }
.sobre__signature .role {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-1);
  border: 1px solid var(--border-1);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.value {
  background: var(--bg-1);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 200px;
  transition: background 0.3s var(--ease);
}
.value:hover { background: var(--bg-2); }
.value__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: 0.08em;
}
.value__title {
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--fg-0);
  font-weight: 500;
}
.value__desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--fg-2);
  margin-top: auto;
}

@media (max-width: 880px) {
  .sobre__grid { grid-template-columns: 1fr; gap: 60px; }
}

/* ============ SERVIÇOS ============ */
.servicos__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.servico {
  position: relative;
  border: 1px solid var(--border-1);
  border-radius: var(--r-lg);
  background: var(--bg-1);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
  transition: all 0.3s var(--ease);
  overflow: hidden;
}
.servico::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.servico:hover {
  border-color: var(--border-3);
  background: var(--bg-2);
  transform: translateY(-2px);
}
.servico:hover::before { opacity: 0.6; }

.servico--span-6 { grid-column: span 6; }
.servico--span-4 { grid-column: span 4; }
.servico--span-12 { grid-column: span 12; }

.servico__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.servico__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: 0.08em;
}
.servico__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--accent-soft);
  color: var(--accent);
}
.servico__tag--neutral {
  background: var(--bg-3);
  color: var(--fg-2);
}
.servico__title {
  font-size: 22px;
  letter-spacing: -0.025em;
  font-weight: 500;
  line-height: 1.15;
  margin-top: 0;
}
.servico__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-2);
}
.servico__foot {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px dashed var(--border-1);
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
}
.servico__price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.servico__price .amount {
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--fg-0);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.servico__price .from {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.servico__prazo {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.servico__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--fg-0);
  border-bottom: 1px solid var(--border-2);
  padding-bottom: 2px;
  align-self: start;
  transition: all 0.2s var(--ease);
}
.servico__cta:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.servico--featured {
  background:
    radial-gradient(ellipse at top right, var(--accent-faint), transparent 50%),
    var(--bg-1);
  border-color: var(--border-2);
}
.servico--featured .servico__title { font-size: 30px; }

@media (max-width: 1000px) {
  .servico--span-4, .servico--span-6 { grid-column: span 6; }
}
@media (max-width: 700px) {
  .servico--span-4, .servico--span-6, .servico--span-12 { grid-column: span 12; }
}

/* ============ PROJETOS ============ */
.projetos__list {
  border-top: 1px solid var(--border-1);
}
.projeto-row {
  display: grid;
  grid-template-columns: 80px 1fr 200px 200px 60px;
  align-items: center;
  gap: 24px;
  padding: 28px 8px;
  border-bottom: 1px solid var(--border-1);
  position: relative;
  cursor: pointer;
  transition: background 0.25s var(--ease);
}
.projeto-row:hover {
  background: var(--bg-1);
}
.projeto-row::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 0;
  height: 100%;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.projeto-row:hover::before { width: 2px; }

.projeto-row__idx {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-3);
  padding-left: 8px;
}
.projeto-row__title {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--fg-0);
}
.projeto-row__desc {
  font-size: 13px;
  color: var(--fg-2);
  margin-top: 6px;
  line-height: 1.5;
}
.projeto-row__stack {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.projeto-row__stack span {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 8px;
  border: 1px solid var(--border-2);
  border-radius: 4px;
  color: var(--fg-1);
}
.projeto-row__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-1);
}
.projeto-row__status .ddot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.projeto-row__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-2);
  display: grid;
  place-items: center;
  transition: all 0.25s var(--ease);
  margin-left: auto;
}
.projeto-row:hover .projeto-row__arrow {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-fg);
  transform: rotate(-45deg);
}

@media (max-width: 980px) {
  .projeto-row {
    grid-template-columns: 50px 1fr 50px;
    gap: 16px;
  }
  .projeto-row__stack, .projeto-row__status { display: none; }
}

/* ============ PROCESSO ============ */
.processo__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--border-1);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--border-1);
}
.step {
  background: var(--bg-1);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 280px;
  transition: background 0.3s var(--ease);
  position: relative;
}
.step:hover { background: var(--bg-2); }
.step__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.step__num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.step__time {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--fg-3);
}
.step__title {
  font-size: 22px;
  letter-spacing: -0.025em;
  font-weight: 500;
  line-height: 1.1;
}
.step__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-2);
  margin-top: auto;
}
.step__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-3);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--fg-1);
}

@media (max-width: 980px) { .processo__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .processo__grid { grid-template-columns: 1fr; } }

/* ============ RESULTADOS ============ */
.resultados__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.resultado {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid var(--border-2);
}
.resultado__num {
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--fg-0);
}
.resultado__num .small {
  font-size: 0.5em;
  color: var(--fg-3);
  font-family: var(--font-mono);
  font-weight: 500;
  margin-left: 4px;
}
.resultado__label {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.5;
  max-width: 220px;
}
.resultado__bar {
  height: 2px;
  background: var(--bg-3);
  position: relative;
  overflow: hidden;
}
.resultado__bar i {
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.2s var(--ease);
}

@media (max-width: 980px) { .resultados__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .resultados__grid { grid-template-columns: 1fr; } }

/* ============ FAQ ============ */
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.faq__list {
  border-top: 1px solid var(--border-1);
}
.faq-item {
  border-bottom: 1px solid var(--border-1);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 17px;
  letter-spacing: -0.015em;
  font-weight: 400;
  color: var(--fg-0);
  transition: color 0.2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }

.faq-item__plus {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border-2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--fg-1);
  flex-shrink: 0;
  transition: all 0.25s var(--ease);
}
.faq-item[open] .faq-item__plus {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-fg);
  transform: rotate(45deg);
}

.faq-item__answer {
  padding: 0 0 28px 0;
  max-width: 600px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg-2);
}

@media (max-width: 880px) {
  .faq__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============ CONTATO ============ */
.contato {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.contato__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.contato__h {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin-bottom: 28px;
}
.contato__h .accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 300;
}
.contato__sub {
  font-size: 17px;
  color: var(--fg-2);
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.55;
}
.contato__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.contato__chips {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-3);
  letter-spacing: 0.04em;
}
.contato__chips span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.contato__chips span::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
}
.contato__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.contato__bg::before {
  content: "";
  position: absolute;
  bottom: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 60%);
  filter: blur(50px);
}

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--border-1);
  padding: 80px 0 32px;
  background: var(--bg-0);
  position: relative;
}
.footer__bigmark {
  font-size: clamp(80px, 18vw, 260px);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 0.9;
  color: var(--fg-0);
  margin: 0;
  padding-top: 40px;
  display: flex;
  align-items: flex-end;
  gap: 0;
}
.footer__bigmark .dot { color: var(--accent); }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}
.footer__brand-block p {
  color: var(--fg-2);
  font-size: 14px;
  max-width: 280px;
  line-height: 1.55;
  margin-top: 16px;
}
.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col a {
  font-size: 14px;
  color: var(--fg-1);
  transition: color 0.2s var(--ease);
}
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--border-1);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--fg-3);
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ============ CURSOR ============ */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: 1;
  mix-blend-mode: screen;
}
.cursor-glow.is-on { opacity: 0.5; }
[data-show-cursor="false"] .cursor-glow { display: none; }
