:root {
  --dark: #08080F;
  --dark2: #0E0E18;
  --light: #F1EFEA;
  --light2: #E8E6E0;
  --text-d: #ECEAE4;
  --text-l: #0D0C14;
  --muted-d: #68687A;
  --muted2-d: #AEAEBB;
  --muted-l: #78766E;
  --muted2-l: #6A6860;
  --red: #C91E26;
  --red-dim: rgba(201, 30, 38, .15);
  --line-d: rgba(255, 255, 255, .065);
  --line-l: rgba(0, 0, 0, .1);
  --maxw: 1240px;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'IBM Plex Sans', system-ui, sans-serif;
  --mono: 'IBM Plex Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--dark);
  color: var(--text-d);
  overflow-x: hidden;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 40px;
}

/* Labels */
.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted2-d);
}

.label::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}

.label--l {
  color: var(--muted2-l);
}

/* Scroll reveal */
.r {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.r.in {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: .1s;
}

.d2 {
  transition-delay: .2s;
}

.d3 {
  transition-delay: .3s;
}

.d4 {
  transition-delay: .4s;
}

.d5 {
  transition-delay: .5s;
}

.d6 {
  transition-delay: .6s;
}

/* ═══ NAV ═══════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  transition: background .4s, border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(8, 8, 15, .92);
  backdrop-filter: blur(22px) saturate(1.3);
  border-color: var(--line-d);
}

.nav__inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-d);
  text-decoration: none;
}


.nav-brand span {
  color: var(--red);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav__menu a {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .01em;
  color: var(--muted2-d);
  text-decoration: none;
  transition: color .2s;
}

.nav__menu a:hover {
  color: var(--text-d);
}

.nav-cta {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-d);
  text-decoration: none;
  border-bottom: 1px solid var(--red);
  padding-bottom: 2px;
  transition: color .2s;
}

.nav-cta:hover {
  color: var(--red);
}

.burger {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text-d);
  margin: 6px 0;
  transition: all .25s;
}

/* ═══ HERO ═══════════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding-top: 64px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

/* ═══ HERO IMAGE ══════════════════════ */
.hero__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('assets/hero-chess.jpg') 72% 40% / cover no-repeat;
  opacity: .38;
  filter: grayscale(20%) brightness(.85);
}

.hero__img-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg,
      var(--dark) 0%,
      var(--dark) 30%,
      rgba(8, 8, 15, .88) 48%,
      rgba(8, 8, 15, .52) 66%,
      rgba(8, 8, 15, .18) 84%,
      rgba(8, 8, 15, .08) 100%),
    linear-gradient(180deg,
      rgba(8, 8, 15, .7) 0%,
      transparent 14%,
      transparent 78%,
      rgba(8, 8, 15, .95) 100%);
}

.hero__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 44px;
  padding-bottom: 0;
  margin-bottom: auto;
}

.hero__eyebrow {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-d);
  opacity: 0.9;
}


.hero__aside {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--text-d);
  text-align: right;
  line-height: 1.8;
}


.hero__headline {
  padding-top: 72px;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(42px, 6.8vw, 96px);
  line-height: 1.1;
  letter-spacing: -.018em;
  color: var(--text-d);
}

.tl {
  display: block;
  overflow: hidden;
  padding-bottom: .06em;
  margin-bottom: -.06em;
}

.ti {
  display: block;
  transform: translateY(105%);
  animation: lineUp .95s cubic-bezier(.16, 1, .3, 1) forwards;
}

.tl:nth-child(1) .ti {
  animation-delay: .08s;
}

.tl:nth-child(2) .ti {
  animation-delay: .2s;
}

.tl:nth-child(3) .ti {
  animation-delay: .32s;
}

.tl:nth-child(4) .ti {
  animation-delay: .44s;
}

@keyframes lineUp {
  to {
    transform: translateY(0);
  }
}

.hero__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-block: 28px 56px;
  border-top: 1px solid var(--line-d);
  margin-top: 40px;
  gap: 40px;
  animation: fadeUp .8s .68s cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.hero__sub {
  font-family: var(--sans);
  font-size: clamp(13px, 1.3vw, 16px);
  font-weight: 300;
  color: var(--muted2-d);
  line-height: 1.75;
  max-width: 44ch;
}

.hero__sub strong {
  color: var(--text-d);
  font-weight: 400;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-d);
  text-decoration: none;
  white-space: nowrap;
  transition: gap .2s, color .2s;
}

.hero-cta::after {
  content: '→';
  font-family: var(--sans);
}

.hero-cta:hover {
  color: var(--red);
  gap: 16px;
}

/* ═══ TICKER ══════════════════════════════ */
.ticker {
  border-top: 1px solid var(--line-d);
  border-bottom: 1px solid var(--line-d);
  background: var(--dark2);
  padding: 13px 0;
  overflow: hidden;
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}

.ticker__track:hover {
  animation-play-state: paused;
}

@keyframes ticker {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.ticker__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 36px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted-d);
  white-space: nowrap;
}

.ticker__item::after {
  content: '·';
  color: var(--red);
  font-size: 16px;
  line-height: 1;
}

/* ═══ MANIFESTO ═══════════════════════════ */
.manifesto {
  padding: 120px 0;
  background: var(--light);
  color: var(--text-l);
}

.manifesto__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.manifesto__aside {
  position: sticky;
  top: 96px;
}

.manifesto__num {
  font-family: var(--serif);
  font-size: clamp(80px, 10vw, 140px);
  font-weight: 700;
  line-height: .8;
  user-select: none;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 0, 0, .1);
  margin-bottom: 20px;
}

.manifesto__headline {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.22;
  letter-spacing: -.015em;
  color: var(--text-l);
  margin-bottom: 32px;
}

.manifesto__body {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.82;
  color: var(--muted2-l);
}

.manifesto__body p+p {
  margin-top: 18px;
}

.manifesto__body strong {
  color: var(--text-l);
  font-weight: 500;
}

.manifesto__rule {
  width: 36px;
  height: 1px;
  background: var(--red);
  margin: 32px 0;
}

.manifesto__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-l);
  text-decoration: none;
  transition: color .2s, gap .2s;
}

.manifesto__cta::after {
  content: '→';
}

.manifesto__cta:hover {
  color: var(--red);
  gap: 16px;
}

/* ═══ PROPOSTA (imagem placeholder) ══════ */
.proposta {
  position: relative;
  height: 88vh;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark2);
}

.proposta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* Substitua a url abaixo pela imagem desejada */
  background: url('assets/proposta-bg.png') center/cover no-repeat;
  opacity: .7;
  filter: blur(6px);
  transform: scale(1.05);
  /* Evita bordas brancas causadas pelo blur */
}

.proposta__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg,
      rgba(8, 8, 15, 1) 0%, rgba(8, 8, 15, .9) 35%,
      rgba(8, 8, 15, .6) 65%, rgba(8, 8, 15, .3) 100%);
}

.proposta__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 72px 0;
}

.proposta__statement {
  font-family: var(--serif);
  font-size: clamp(26px, 4.8vw, 68px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.025em;
  color: var(--text-d);
  max-width: 900px;
  margin: 20px 0 24px;
}

.proposta__statement em {
  font-style: italic;
  color: rgba(255, 255, 255, .5);
}

.proposta__sub {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted2-d);
}

/* ═══ CAPACIDADES ════════════════════════ */
.capabilities {
  padding: 100px 0;
  background: var(--dark);
}

.cap-head {
  margin-bottom: 56px;
}

.cap-subtitle {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--text-d);
  margin-top: 14px;
}

.cap-subtitle em {
  font-style: italic;
  color: var(--muted2-d);
}

.cap-ledger {
  border-top: 1px solid var(--line-d);
}

.cap-row {
  display: grid;
  grid-template-columns: 56px 220px 1fr 80px;
  align-items: start;
  gap: 0 40px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line-d);
  transition: background .18s;
}

.cap-row:hover {
  background: rgba(255, 255, 255, .02);
}

.cap-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--muted2-d);
  letter-spacing: .1em;
  padding-top: 2px;
}

.cap-name {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-d);
  padding-top: 1px;
}

.cap-desc {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--muted2-d);
  line-height: 1.75;
}


.cap-tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  text-align: right;
  padding-top: 2px;
  white-space: nowrap;
}

/* ═══ DIFERENCIAIS ════════════════════════ */
.diff {
  padding: 100px 0;
  background: var(--dark);
  border-top: 1px solid var(--line-d);
  position: relative;
  overflow: hidden;
}

.diff__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  z-index: 0;
  background: url('assets/diff-bg.png') left center/cover no-repeat;
  opacity: .75;
  filter: blur(8px);
  transform: scale(1.1);
}

.diff__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg,
      rgba(8, 8, 15, 0.85) 0%, rgba(8, 8, 15, 0.65) 25%,
      rgba(8, 8, 15, 1) 65%);
}

.diff .wrap {
  position: relative;
  z-index: 2;
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.diff-left {
  position: sticky;
  top: 96px;
}

.diff-statement {
  font-family: var(--serif);
  font-size: clamp(26px, 3.6vw, 50px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--text-d);
  margin-top: 16px;
}

.diff-statement em {
  font-style: italic;
  color: var(--red);
}

.diff-body {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 300;
  color: var(--muted2-d);
  line-height: 1.8;
  margin-top: 20px;
  margin-bottom: 32px;
}


.diff-link {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-d);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--red);
  padding-bottom: 2px;
  transition: color .2s, gap .2s;
}

.diff-link::after {
  content: '→';
}

.diff-link:hover {
  color: var(--red);
  gap: 14px;
}

.diff-items {
  display: flex;
  flex-direction: column;
}

.diff-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--line-d);
}

.diff-item:first-child {
  border-top: 1px solid var(--line-d);
}

.diff-item__title {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-d);
  margin-bottom: 6px;
}

.diff-item__desc {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--muted2-d);
  line-height: 1.75;
}


/* ═══ SOLUÇÕES ════════════════════════════ */
.solutions {
  padding: 100px 0;
  background: var(--light);
  color: var(--text-l);
}

.sol-subtitle {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 600;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--text-l);
  margin-top: 14px;
}

.sol-domains {
  margin-top: 56px;
}

.sol-domain {
  border-bottom: 1px solid var(--line-l);
}

.sol-domain:first-child {
  border-top: 1px solid var(--line-l);
}

.sol-trigger {
  display: grid;
  grid-template-columns: 56px 1fr 28px;
  gap: 32px;
  align-items: center;
  padding: 26px 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: inherit;
}

.sol-trigger:hover .sol-name {
  color: var(--red);
}

.sol-idx {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--muted2-l);
  letter-spacing: .1em;
}

.sol-name {
  font-family: var(--serif);
  font-size: clamp(16px, 2.2vw, 26px);
  font-weight: 600;
  color: var(--text-l);
  letter-spacing: -.015em;
  transition: color .2s;
}

.sol-arrow {
  font-family: var(--sans);
  font-size: 20px;
  color: var(--muted2-l);
  transition: transform .3s, color .2s;
  justify-self: end;
}

.sol-domain.open .sol-arrow {
  transform: rotate(45deg);
  color: var(--red);
}

.sol-body {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 32px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(.16, 1, .3, 1);
}

.sol-domain.open .sol-body {
  max-height: 360px;
}

.sol-body-inner {
  padding-bottom: 28px;
}

.sol-desc {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--muted2-l);
  line-height: 1.75;
  margin-bottom: 18px;
  max-width: 60ch;
}

.sol-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sol-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--line-l);
  border-radius: 2px;
  color: var(--muted2-l);
}

/* ═══ PROCESSO ════════════════════════════ */
.process {
  padding: 100px 0;
  background: var(--dark);
}

.proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  border-left: 1px solid var(--line-d);
}

.proc-step {
  padding: 36px 32px;
  border-right: 1px solid var(--line-d);
  border-top: 1px solid var(--line-d);
  border-bottom: 1px solid var(--line-d);
}

.proc-num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--red);
  letter-spacing: .12em;
  margin-bottom: 18px;
}

.proc-title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--text-d);
  letter-spacing: -.01em;
  margin-bottom: 8px;
}

.proc-desc {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--muted2-d);
  line-height: 1.75;
}


/* ═══ CTA STRIP ═══════════════════════════ */
.cta-strip {
  padding: 140px 0;
  background: var(--dark);
  border-top: 1px solid var(--line-d);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('assets/cta-bg.png') center/cover no-repeat;
  opacity: .8;
  filter: blur(6px);
  transform: scale(1.05);
}

.cta-strip__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at center,
      rgba(8, 8, 15, .55) 0%,
      rgba(8, 8, 15, .92) 100%);
}

.cta-strip .wrap {
  position: relative;
  z-index: 2;
}

.cta-strip::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201, 30, 38, .07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-family: var(--serif);
  font-size: clamp(30px, 5.5vw, 72px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.06;
  letter-spacing: -.025em;
  color: var(--text-d);
  max-width: 700px;
  margin: 16px auto 18px;
  text-wrap: balance;
}

.cta-sub {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--muted2-d);
  max-width: 46ch;
  margin: 0 auto 44px;
  line-height: 1.75;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-p {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: var(--red);
  color: #fff;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px var(--red-dim);
}

.btn-p:hover {
  background: #a8181f;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 30, 38, 0.25);
}

.btn-p:active {
  transform: translateY(0);
}

.btn-g {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: transparent;
  color: var(--text-d);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .02em;
  text-decoration: none;
  border: 1px solid var(--line-d);
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-g:hover {
  border-color: var(--red);
  background: var(--red-dim);
  transform: translateY(-2px);
}

/* ═══ CONTATO ═════════════════════════════ */
.contact {
  padding: 100px 0;
  background: var(--dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  align-items: start;
}

.contact-intro {
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 600;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--text-d);
  margin-top: 16px;
  margin-bottom: 20px;
}

.contact-desc {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--muted2-d);
  line-height: 1.75;
}


.contact-channels {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.channel-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.channel-item span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted2-d);
}

.channel-item a {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-d);
  text-decoration: none;
  transition: color .2s;
}

.channel-item a:hover {
  color: var(--red);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.fg label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted2-d);
}

.fg input,
.fg textarea,
.fg select {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line-d);
  border-radius: 2px;
  padding: 12px 15px;
  color: var(--text-d);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  outline: none;
  width: 100%;
  transition: border-color .2s;
  appearance: none;
}

.fg input:focus,
.fg textarea:focus,
.fg select:focus {
  border-color: rgba(201, 30, 38, .5);
}

.fg input::placeholder,
.fg textarea::placeholder {
  color: var(--muted-d);
}

.fg select option {
  background: #0E0E18;
}

.fg textarea {
  resize: vertical;
  min-height: 110px;
}

/* ═══ FOOTER ══════════════════════════════ */
.footer {
  padding: 36px 0;
  background: var(--dark);
  border-top: 1px solid var(--line-d);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted2-d);
  text-decoration: none;
}


.footer-brand span {
  color: var(--red);
}

.footer-copy {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--muted2-d);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted-d);
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--text-d);
}

/* ═══ TWEAKS ══════════════════════════════ */
.tweaks-panel {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 256px;
  background: rgba(10, 10, 18, .97);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  padding: 20px;
  backdrop-filter: blur(24px);
  display: none;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .8);
}

.tweaks-panel.open {
  display: flex;
}

.tweaks-panel h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted-d);
}

.tw {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tw label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted-d);
  letter-spacing: .1em;
}

.tw input[type=color] {
  width: 100%;
  height: 34px;
  border: 1px solid var(--line-d);
  border-radius: 3px;
  background: none;
  padding: 3px;
  cursor: pointer;
}

.tw select {
  width: 100%;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line-d);
  border-radius: 3px;
  padding: 7px 10px;
  color: var(--text-d);
  font-family: var(--mono);
  font-size: 11px;
  appearance: none;
}

.tw select option {
  background: #0E0E18;
}

/* ═══ RESPONSIVE ══════════════════════════ */
@media(max-width:1024px) {
  .manifesto__grid {
    grid-template-columns: 1fr;
  }

  .manifesto__aside {
    position: static;
  }

  .diff-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .diff-left {
    position: static;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cap-row {
    grid-template-columns: 40px 1fr 60px;
  }

  .cap-desc {
    grid-column: 2;
  }

  .cap-tag {
    grid-column: 3;
    grid-row: 1;
  }
}

@media(max-width:768px) {
  .nav {
    background: var(--dark);
    backdrop-filter: none;
    border-color: var(--line-d);
    z-index: 20000;
  }

  .nav.scrolled {
    background: var(--dark);
    backdrop-filter: none;
  }

  .nav--open {
    background: var(--dark);
  }

  .nav--open::before {
    content: '';
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    z-index: 20000;
  }

  .nav__inner {
    position: relative;
    z-index: 20002;
  }

  .nav__menu {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .burger {
    display: block;
  }

  .wrap {
    padding-inline: 20px;
  }

  .hero__top {
    flex-direction: column;
    gap: 10px;
  }

  .hero__aside {
    text-align: left;
  }

  .hero__foot {
    flex-direction: column;
    align-items: flex-start;
  }

  .proc-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:560px) {
  .proc-grid {
    grid-template-columns: 1fr;
    border-left: none;
  }

  .proc-step {
    border-left: 1px solid var(--line-d);
  }

  .form-2 {
    grid-template-columns: 1fr;
  }

  .cap-row {
    grid-template-columns: 36px 1fr;
  }

  .cap-tag {
    display: none;
  }
}

@media(max-width:768px) {
  .nav--open .nav__menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 64px 0 0;
    background: transparent;
    backdrop-filter: none;
    padding: 40px 24px;
    gap: 28px;
    z-index: 20001;
    list-style: none;
  }

  .nav--open .nav__menu a {
    font-size: 20px;
  }
}

@media(max-width:768px) {
  body.menu-open {
    overflow: hidden;
  }
}