/* ==========================================================================
   Verum Web — 2026
   Design system: near-black canvas, bone type, violet signal, acid detail.
   Hand-written. No framework.
   ========================================================================== */

:root {
  /* Surfaces */
  --ink: #08070B;
  --ink-2: #0C0B11;
  --surface: #121019;
  --surface-2: #17141F;
  --line: rgba(244, 242, 237, .12);
  --line-strong: rgba(244, 242, 237, .28);

  /* Type */
  --bone: #F4F2ED;
  --muted: #9B98AB;
  --dim: #6A6779;

  /* Signal */
  --violet: #7461F3;
  --violet-soft: #9A8CF7;
  --violet-deep: #4B3BC4;
  --acid: #D6FF4A;
  --wa: #25D366;
  --wa-deep: #128C7E;

  /* Fonts */
  --f-display: 'Archivo', 'Arial Black', system-ui, sans-serif;
  --f-sans: 'Space Grotesk', system-ui, -apple-system, Segoe UI, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Metrics */
  --gutter: clamp(20px, 5vw, 72px);
  --maxw: 1440px;
  --nav-h: 76px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 24px); }
body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul { list-style: none; }
::selection { background: var(--violet); color: #fff; }

:focus-visible { outline: 2px solid var(--acid); outline-offset: 3px; }

/* Scrollbar */
* { scrollbar-width: thin; scrollbar-color: var(--violet) transparent; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: #2A2637; border: 3px solid var(--ink); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--violet); }

/* ---------- Layout primitives ---------- */
.wrap {
  width: 100%;
  max-width: calc(var(--maxw) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { position: relative; padding-block: clamp(72px, 11vw, 160px); }
.section + .section { border-top: 1px solid var(--line); }
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--acid); color: var(--ink); padding: 12px 18px; font: 600 13px/1 var(--f-mono);
}
.skip:focus { left: 12px; top: 12px; }

/* ---------- Texture ---------- */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .28;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%; z-index: 120;
  background: linear-gradient(90deg, var(--violet), var(--acid));
  transition: width .1s linear;
}

/* ---------- Type ---------- */
.display {
  font-family: var(--f-display);
  font-variation-settings: 'wdth' 118, 'wght' 800;
  font-weight: 800;
  text-transform: uppercase;
  line-height: .86;
  letter-spacing: -.03em;
  text-wrap: balance;
}
.h1 { font-size: clamp(2.6rem, 7.1vw, 6.6rem); }
.hero h1 .line { min-height: .86em; }
.h2 { font-size: clamp(2.2rem, 6.2vw, 5.2rem); }
.h3 { font-size: clamp(1.5rem, 2.6vw, 2.2rem); }
.stroke {
  color: transparent;
  -webkit-text-stroke: 1.4px var(--line-strong);
}
.hl { color: var(--violet-soft); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-size: 11px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase; color: var(--muted);
}
.eyebrow b { color: var(--bone); font-weight: 500; }
.eyebrow::before {
  content: ''; width: 26px; height: 1px; background: var(--violet); flex: none;
}
.eyebrow.no-rule::before { display: none; }

.lede {
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.65;
  max-width: 58ch;
}

.sec-head { display: grid; gap: 22px; margin-bottom: clamp(40px, 6vw, 76px); }
.sec-head .lede { margin-top: 4px; }
@media (min-width: 900px) {
  .sec-head { grid-template-columns: 1.15fr .85fr; align-items: end; gap: 32px 56px; }
  .sec-head .eyebrow { grid-column: 1 / -1; }
}

/* ---------- Buttons ---------- */
.btn {
  --bg: transparent; --fg: var(--bone); --bd: var(--line-strong);
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 17px 26px; min-height: 54px;
  background: var(--bg); color: var(--fg); border: 1px solid var(--bd);
  font-family: var(--f-mono); font-size: 12.5px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; white-space: nowrap;
  transition: transform .35s var(--ease), background-color .3s, color .3s, border-color .3s, box-shadow .35s;
}
.btn svg { flex: none; transition: transform .35s var(--ease); }
.btn:hover { transform: translateY(-3px); }
.btn:hover svg.arrow { transform: translate(4px, -4px); }
.btn:active { transform: translateY(0); }

.btn--wa { --bg: var(--wa); --fg: #04120A; --bd: var(--wa); font-weight: 700; }
.btn--wa:hover { --bg: #2AF078; box-shadow: 0 14px 40px -14px rgba(37, 211, 102, .75); }

.btn--violet { --bg: var(--violet); --fg: #fff; --bd: var(--violet); }
.btn--violet:hover { --bg: var(--violet-soft); box-shadow: 0 14px 40px -14px rgba(116, 97, 243, .8); }

.btn--ghost:hover { --bg: var(--bone); --fg: var(--ink); --bd: var(--bone); }

.btn--block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  border-bottom: 1px solid transparent;
  transition: background-color .4s, border-color .4s, backdrop-filter .4s;
}
.nav.is-stuck {
  background: rgba(8, 7, 11, .78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 26px; width: auto; }
.brand__tag {
  display: none; font-family: var(--f-mono); font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--dim); padding-left: 12px; border-left: 1px solid var(--line);
}
@media (min-width: 1100px) { .brand__tag { display: block; } }

.nav__links { display: none; align-items: center; gap: 30px; }
@media (min-width: 980px) { .nav__links { display: flex; } }
.nav__link {
  position: relative; font-family: var(--f-mono); font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); padding: 6px 0; transition: color .3s;
}
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: var(--acid);
  transition: width .35s var(--ease);
}
.nav__link:hover { color: var(--bone); }
.nav__link:hover::after { width: 100%; }

.nav__cta { display: none; }
@media (min-width: 640px) { .nav__cta { display: inline-flex; padding: 12px 20px; min-height: 44px; } }

.burger {
  display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid var(--line); flex: none;
}
@media (min-width: 980px) { .burger { display: none; } }
.burger span { display: block; width: 18px; height: 1.5px; background: var(--bone); transition: transform .3s var(--ease), opacity .2s; }
.burger span + span { margin-top: 5px; }
body.menu-open .burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.menu {
  position: fixed; inset: 0; z-index: 99; background: var(--ink);
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  padding: var(--nav-h) var(--gutter) 40px;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity .35s, transform .45s var(--ease), visibility .35s;
}
body.menu-open .menu { opacity: 1; visibility: visible; transform: none; }
body.menu-open { overflow: hidden; }
.menu a {
  font-family: var(--f-display); font-variation-settings: 'wdth' 115, 'wght' 800; text-transform: uppercase;
  font-size: clamp(2.2rem, 11vw, 4rem); line-height: 1.05; letter-spacing: -.02em;
  border-bottom: 1px solid var(--line); padding: 14px 0; display: flex; align-items: baseline; gap: 14px;
}
.menu a span { font: 500 11px/1 var(--f-mono); color: var(--violet); letter-spacing: .2em; }
.menu .btn { margin-top: 28px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; padding-top: calc(var(--nav-h) + clamp(48px, 9vw, 110px));
  padding-bottom: clamp(48px, 7vw, 96px); overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__grid {
  position: absolute; inset: -2px;
  background-image:
    linear-gradient(to right, rgba(244, 242, 237, .055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(244, 242, 237, .055) 1px, transparent 1px);
  background-size: clamp(64px, 8vw, 120px) clamp(64px, 8vw, 120px);
  mask-image: radial-gradient(120% 80% at 50% 0%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 80% at 50% 0%, #000 30%, transparent 78%);
}
.hero__glow {
  position: absolute; top: -18%; right: -6%; width: min(760px, 74vw); aspect-ratio: 1;
  background: radial-gradient(circle at 50% 50%, rgba(116, 97, 243, .32), transparent 62%);
  filter: blur(20px);
}
.hero__mark {
  position: absolute; right: calc(var(--gutter) * -1 + 12px); bottom: -8%; width: min(560px, 52vw);
  opacity: .07; transform: rotate(-8deg);
}
@media (max-width: 900px) { .hero__mark { opacity: .05; bottom: auto; top: 4%; right: -18%; width: 90vw; } }

.hero__inner { position: relative; z-index: 2; }
.hero__status {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: clamp(22px, 4vw, 40px);
  padding: 9px 16px; border: 1px solid var(--line); border-radius: 99px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
  background: rgba(18, 16, 25, .5); backdrop-filter: blur(8px);
}
.pulse-dot { position: relative; width: 7px; height: 7px; border-radius: 50%; background: var(--acid); flex: none; }
.pulse-dot::after {
  content: ''; position: absolute; inset: -5px; border-radius: 50%; border: 1px solid var(--acid);
  animation: ping 2.4s var(--ease) infinite;
}
@keyframes ping { 0% { transform: scale(.5); opacity: .9; } 100% { transform: scale(1.5); opacity: 0; } }

.hero h1 { margin-bottom: clamp(24px, 3.4vw, 38px); line-height: .93; }
.hero h1 .line { display: block; }
.rotator { display: inline-flex; align-items: baseline; color: var(--violet-soft); }
.rotator__caret {
  display: inline-block; width: .07em; height: .78em; background: var(--acid); margin-left: .06em;
  animation: blink 1s steps(2, start) infinite; align-self: center;
}
@keyframes blink { 50% { opacity: 0; } }

.hero__lede { max-width: 56ch; margin-bottom: clamp(30px, 4vw, 46px); font-size: clamp(1.02rem, 1.5vw, 1.28rem); color: var(--muted); }
.hero__lede b { color: var(--bone); font-weight: 600; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: clamp(46px, 7vw, 84px); }
.hero__cta .btn { flex: 1 1 auto; min-width: 236px; }
@media (min-width: 560px) { .hero__cta .btn { flex: 0 0 auto; } }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
@media (min-width: 860px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { padding: 26px 20px 26px 0; border-bottom: 1px solid var(--line); }
@media (min-width: 860px) { .stat { border-bottom: 0; padding-right: 28px; } }
.stat + .stat { padding-left: 20px; border-left: 1px solid var(--line); }
@media (min-width: 860px) { .stat + .stat { padding-left: 28px; } }
.stat__n {
  font-family: var(--f-display); font-variation-settings: 'wdth' 115, 'wght' 800;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem); line-height: 1; letter-spacing: -.03em;
}
.stat__n i { font-style: normal; color: var(--violet); }
.stat__l { margin-top: 8px; font-family: var(--f-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--dim); }

/* ---------- Marquee ---------- */
.marquee {
  position: relative; overflow: hidden; background: var(--violet); color: #0A0713;
  border-block: 1px solid var(--violet-deep);
  padding-block: 14px;
}
.marquee--ghost { background: transparent; color: var(--bone); border-block-color: var(--line); }
.marquee__track { display: flex; width: max-content; animation: slide 46s linear infinite; }
.marquee--rev .marquee__track { animation-direction: reverse; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  display: inline-flex; align-items: center; gap: 22px; padding-inline: 22px;
  font-family: var(--f-display); font-variation-settings: 'wdth' 112, 'wght' 700;
  text-transform: uppercase; font-size: clamp(1rem, 1.8vw, 1.5rem); letter-spacing: -.01em; white-space: nowrap;
}
.marquee__track span::after { content: '✦'; font-size: .62em; opacity: .55; font-family: var(--f-sans); }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Services ---------- */
.cards { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 760px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1180px) { .cards--4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  position: relative; background: var(--ink); padding: clamp(28px, 3vw, 40px);
  display: flex; flex-direction: column; gap: 16px; min-height: 100%;
  transition: background-color .45s var(--ease), transform .45s var(--ease);
  isolation: isolate;
}
.card::before {
  content: ''; position: absolute; inset: 0; z-index: -1; opacity: 0;
  background: radial-gradient(120% 90% at 0% 0%, rgba(116, 97, 243, .22), transparent 62%);
  transition: opacity .45s;
}
.card:hover { background: var(--surface); }
.card:hover::before { opacity: 1; }
.card__n {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .2em; color: var(--violet);
  display: flex; align-items: center; justify-content: space-between;
}
.card__n em { font-style: normal; color: var(--dim); }
.card h3 { font-family: var(--f-sans); font-size: 1.32rem; font-weight: 600; letter-spacing: -.01em; line-height: 1.2; }
.card p { color: var(--muted); font-size: .96rem; }
.card ul { display: grid; gap: 8px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.card li {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .06em; color: var(--muted); text-transform: uppercase;
}
.card li::before { content: ''; width: 5px; height: 5px; background: var(--acid); flex: none; }
.card__link {
  margin-top: 20px; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--bone);
}
.card__link svg { transition: transform .35s var(--ease); }
.card:hover .card__link svg { transform: translate(4px, -4px); }
.card__link::after { content: ''; position: absolute; inset: 0; }

/* ---------- Split / manifesto ---------- */
.split { display: grid; gap: clamp(36px, 5vw, 72px); align-items: start; }
@media (min-width: 940px) { .split { grid-template-columns: 1.05fr .95fr; } }
.checklist { display: grid; gap: 2px; }
.checklist li {
  display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line);
}
.checklist li:first-child { border-top: 1px solid var(--line); }
.checklist b { display: block; font-size: 1.02rem; font-weight: 600; margin-bottom: 3px; }
.checklist span { color: var(--muted); font-size: .93rem; }
.checklist i {
  flex: none; width: 26px; height: 26px; display: grid; place-items: center; margin-top: 2px;
  border: 1px solid var(--violet); color: var(--violet); font-style: normal;
  font-family: var(--f-mono); font-size: 11px;
}

/* ---------- Process ---------- */
.steps { display: grid; gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
.step {
  background: var(--ink); padding: clamp(26px, 3vw, 40px) 0;
  display: grid; gap: 14px 32px; align-items: start;
  transition: background-color .4s;
}
@media (min-width: 900px) { .step { grid-template-columns: 130px 1.1fr 1fr; padding-inline: clamp(8px, 2vw, 28px); } }
.step:hover { background: var(--surface); }
.step__n {
  font-family: var(--f-display); font-variation-settings: 'wdth' 118, 'wght' 800;
  font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: .9; letter-spacing: -.04em;
  color: transparent; -webkit-text-stroke: 1.2px var(--line-strong); transition: color .4s, -webkit-text-stroke-color .4s;
}
.step:hover .step__n { color: var(--violet); -webkit-text-stroke-color: transparent; }
.step h3 { font-family: var(--f-sans); font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; letter-spacing: -.01em; }
.step p { color: var(--muted); font-size: .97rem; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.chip {
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 11px; border: 1px solid var(--line); color: var(--muted);
}

/* ---------- Cases ---------- */
.rail-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.rail-nav { display: none; gap: 8px; }
@media (min-width: 900px) { .rail-nav { display: flex; } }
.rail-nav button {
  width: 46px; height: 46px; border: 1px solid var(--line); display: grid; place-items: center;
  transition: background-color .3s, color .3s, border-color .3s;
}
.rail-nav button:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: min(84vw, 400px); gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 22px;
  scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }
.case {
  position: relative; scroll-snap-align: start; border: 1px solid var(--line); background: var(--ink-2);
  display: flex; flex-direction: column; transition: border-color .4s, transform .5s var(--ease);
}
.case:hover { border-color: var(--violet); transform: translateY(-6px); }
.case__img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--surface); }
.case__img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: grayscale(1) contrast(1.05); transition: filter .6s, transform .8s var(--ease); }
.case:hover .case__img img { filter: none; transform: scale(1.04); }
.case__body { padding: 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.case__body h3 { font-family: var(--f-sans); font-size: 1.12rem; font-weight: 600; }
.case__body p { color: var(--muted); font-size: .9rem; flex: 1; }
.case__go {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 10px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--violet-soft);
}
.case__go::after { content: ''; position: absolute; inset: 0; }
.case:hover .case__go svg { transform: translate(3px, -3px); }
.case__go svg { transition: transform .35s var(--ease); }
.rail-hint { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--dim); }
@media (min-width: 900px) { .rail-hint { display: none; } }

/* ---------- Testimonials ---------- */
.quotes { display: grid; gap: 20px; }
@media (min-width: 900px) { .quotes { grid-template-columns: repeat(3, 1fr); align-items: start; } }
.quote {
  border: 1px solid var(--line); background: var(--ink-2); padding: clamp(24px, 2.6vw, 34px);
  display: flex; flex-direction: column; gap: 18px; transition: border-color .4s, background-color .4s;
}
.quote:hover { border-color: var(--line-strong); background: var(--surface); }
.quote__mark { font-family: var(--f-display); font-size: 3rem; line-height: .6; color: var(--violet); height: 26px; }
.quote p { color: var(--muted); font-size: .97rem; }
.quote footer { display: flex; align-items: center; gap: 14px; padding-top: 16px; border-top: 1px solid var(--line); margin-top: auto; }
.avatar {
  width: 44px; height: 44px; flex: none; display: grid; place-items: center; border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--violet-deep)); color: #fff;
  font-family: var(--f-display); font-size: 1rem; font-variation-settings: 'wdth' 110, 'wght' 700;
}
.quote footer b { display: block; font-size: .95rem; font-weight: 600; }
.quote footer span { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--dim); }
.stars { display: flex; gap: 3px; color: var(--acid); }

/* ---------- Bloco WhatsApp (orçamento) ---------- */
.wa-block {
  display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line);
}
@media (min-width: 1000px) { .wa-block { grid-template-columns: 1.25fr .75fr; } }

.wa-block__main {
  position: relative; overflow: hidden; background: var(--ink-2);
  padding: clamp(30px, 5vw, 68px); display: flex; flex-direction: column; align-items: flex-start; gap: 22px;
}
.wa-block__main::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(85% 120% at 0% 0%, rgba(37, 211, 102, .13), transparent 58%),
              radial-gradient(70% 110% at 100% 100%, rgba(116, 97, 243, .18), transparent 60%);
}
.wa-block__main > * { position: relative; }

.wa-number {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: var(--f-display); font-variation-settings: 'wdth' 118, 'wght' 800;
  font-size: clamp(1.7rem, 4.6vw, 3.4rem); line-height: 1; letter-spacing: -.03em;
  white-space: nowrap; transition: color .3s;
}
.wa-number svg { width: clamp(28px, 3.6vw, 44px); height: auto; color: var(--wa); flex: none; }
.wa-number:hover { color: var(--wa); }

.btn--xl { padding: 21px 34px; min-height: 62px; font-size: 13.5px; }

.picks { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 6px; }
.picks__label {
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--dim);
  margin-right: 4px;
}
.pick {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  padding: 10px 15px; border: 1px solid var(--line); color: var(--muted);
  transition: background-color .3s, color .3s, border-color .3s, transform .3s var(--ease);
}
.pick:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); transform: translateY(-2px); }

.wa-block__side {
  background: var(--ink); padding: clamp(28px, 3vw, 44px);
  display: flex; flex-direction: column; gap: 22px;
}
.wa-block__side h3 {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--dim);
}
.wa-block__side .checklist li { padding: 14px 0; }
.wa-block__side .checklist li:first-child { border-top: 0; }
.wa-block__side .contact-list { margin-top: auto; }

.contact-list a, .contact-list div {
  display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line);
  font-family: var(--f-mono); font-size: 12px; letter-spacing: .06em; color: var(--muted); transition: color .3s;
}
.contact-list a:hover { color: var(--bone); }
.contact-list svg { flex: none; color: var(--violet); }

/* ---------- CTA band ---------- */
.band {
  position: relative; overflow: hidden; border: 1px solid var(--line); background: var(--ink-2);
  padding: clamp(36px, 5vw, 72px); display: grid; gap: 28px; align-items: center;
}
@media (min-width: 900px) { .band { grid-template-columns: 1.2fr auto; gap: 48px; } }
.band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(90% 140% at 0% 0%, rgba(116, 97, 243, .22), transparent 60%);
}
.band > * { position: relative; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--ink-2); padding-block: clamp(48px, 6vw, 80px) 28px; }
.footer__top { display: grid; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--line); }
@media (min-width: 860px) { .footer__top { grid-template-columns: 1.4fr .8fr .8fr; } }
.footer h4 { font-family: var(--f-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--dim); margin-bottom: 18px; }
.footer ul { display: grid; gap: 12px; }
.footer a:hover { color: var(--violet-soft); }
.footer__links a, .footer__contact a, .footer__contact li { color: var(--muted); font-size: .94rem; transition: color .3s; }
.footer__bot {
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center; padding-top: 22px;
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--dim);
}
.footer__brand p { color: var(--muted); max-width: 42ch; margin-top: 18px; font-size: .95rem; }

/* ---------- Floating actions ---------- */
.dock { position: fixed; right: clamp(14px, 2.5vw, 28px); bottom: clamp(14px, 2.5vw, 28px); z-index: 90; display: grid; gap: 12px; justify-items: end; }
.wa-fab {
  position: relative; display: flex; align-items: center; gap: 0; height: 58px; padding: 0 16px;
  background: var(--wa); color: #04120A; border-radius: 99px; box-shadow: 0 16px 44px -14px rgba(37, 211, 102, .7);
  transition: gap .4s var(--ease), padding .4s var(--ease), transform .35s var(--ease), background-color .3s;
}
.wa-fab:hover { transform: translateY(-3px) scale(1.02); background: #2AF078; }
.wa-fab svg { width: 30px; height: 30px; flex: none; }
.wa-fab b {
  max-width: 0; overflow: hidden; white-space: nowrap; opacity: 0;
  font-family: var(--f-mono); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  transition: max-width .45s var(--ease), opacity .3s, margin-left .45s var(--ease);
}
@media (min-width: 900px) {
  .wa-fab:hover b, .wa-fab:focus-visible b { max-width: 220px; opacity: 1; margin-left: 12px; }
}
.wa-fab::after {
  content: ''; position: absolute; inset: 0; border-radius: 99px; border: 2px solid var(--wa);
  animation: ring 2.8s var(--ease) infinite; pointer-events: none;
}
@keyframes ring { 0% { transform: scale(1); opacity: .8; } 70%, 100% { transform: scale(1.35); opacity: 0; } }

.to-top {
  width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line);
  background: rgba(12, 11, 17, .8); backdrop-filter: blur(10px); color: var(--muted);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .35s, transform .35s var(--ease), visibility .35s, color .3s, border-color .3s;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { color: var(--bone); border-color: var(--line-strong); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .07s; }
.reveal[data-d="2"] { transition-delay: .14s; }
.reveal[data-d="3"] { transition-delay: .21s; }
.reveal[data-d="4"] { transition-delay: .28s; }

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