/* ============================================================
   akdmi · site MINIMAL — antigravity-style
   Pure black, single amber accent, oversized typography, breathing room
   ============================================================ */
@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:wght@200;300;400;500;600;700;800;900&display=swap");

:root {
  --bg:           #050507;
  --bg-2:         #0a0a0d;
  --bg-3:         #101015;
  --ink:          #f5f5f7;
  --ink-2:        rgba(245,245,247,0.65);
  --ink-3:        rgba(245,245,247,0.40);
  --line:         rgba(255,255,255,0.07);
  --line-2:       rgba(255,255,255,0.12);
  --accent:       #F59E0B;
  --accent-glow:  rgba(245,158,11,0.20);
  --display:      "Inter Tight", "Fira Sans", -apple-system, sans-serif;
  --body:         "Fira Sans", -apple-system, sans-serif;
  --serif:        "Newsreader", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; cursor: pointer; }
button { font-family: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

.m-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
}

.m-container--narrow {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Tiny eyebrow with leading dot */
.m-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font: 500 11px var(--body);
  text-transform: uppercase;
  letter-spacing: 2.4px;
  color: var(--ink-2);
  margin-bottom: 28px;
}
.m-eyebrow::before {
  content: ""; width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--accent);
}

/* ============================================================
   HEADER
   ============================================================ */
.m-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(5,5,7,0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line);
}
.m-header__inner {
  display: flex; justify-content: space-between; align-items: center;
  height: 64px;
  padding: 0 32px;
  max-width: 1440px;
  margin: 0 auto;
}
.m-header__logo img { height: 30px; opacity: 0.95; }
.m-nav { display: flex; gap: 30px; list-style: none; }
.m-nav a {
  font: 500 13.5px var(--body);
  color: var(--ink-2);
  white-space: nowrap;
  transition: color 0.2s ease;
}
.m-nav a:hover, .m-nav a.is-active { color: var(--ink); }

.m-cta {
  font: 500 13px var(--body);
  padding: 9px 18px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-2);
  border-radius: 99px;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.m-cta:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.m-cta--primary {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.m-cta--primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

/* ---- language switcher ---- */
.m-lang { position: relative; }
.m-lang__trigger {
  display: inline-flex; align-items: center; gap: 7px;
  font: 600 13px var(--body);
  padding: 8px 13px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-2);
  border-radius: 99px;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease;
}
.m-lang__trigger:hover { border-color: var(--ink-3); }
.m-lang__globe { opacity: .85; }
.m-lang__caret { opacity: .6; transition: transform .18s ease; }
.m-lang.is-open .m-lang__caret { transform: rotate(180deg); }
.m-lang__menu {
  position: absolute; top: calc(100% + 10px); right: 0;
  min-width: 248px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
  z-index: 1200;
}
.m-lang.is-open .m-lang__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.m-lang__opt {
  width: 100%;
  display: flex; align-items: center; gap: 12px;
  padding: 11px 12px;
  background: transparent; border: 0; border-radius: 11px;
  cursor: pointer; text-align: left;
  color: var(--ink);
  transition: background .14s ease;
}
.m-lang__opt:hover { background: var(--line); }
.m-lang__opt.is-active { background: var(--line-2); }
.m-lang__flag { font-size: 19px; line-height: 1; }
.m-lang__opt__txt { flex: 1; font: 400 14px var(--body); }
.m-lang__opt__txt strong { font-weight: 600; }
.m-lang__opt__txt span { color: var(--ink-2); }
.m-lang__check { color: var(--ink); margin-left: auto; }
.m-lang--drawer { width: 100%; }
.m-lang--drawer .m-lang__trigger { width: 100%; justify-content: center; }
.m-lang--drawer .m-lang__menu { left: 0; right: 0; }

/* ============================================================
   HERO — antigravity-style centered, glow behind
   ============================================================ */
.m-hero {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding: 72px 0 0;
}

/* Desktop: fill the viewport so the bottom of the hero cards lands
   exactly 12px above the browser bottom — matching the lateral margin
   on initial page load. */
@media (min-width: 901px) {
  .m-hero {
    min-height: 100vh;
    min-height: 100dvh;
    align-items: stretch;
  }
  .m-hero__inner--split {
    grid-template-rows: 1fr;
  }
}

/* Ambient glow orbs */
.m-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}
.m-hero__glow--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(245,158,11,0.45), transparent 70%);
  top: -150px; left: 50%;
  transform: translateX(-50%);
  animation: m-orb 14s ease-in-out infinite;
}
.m-hero__glow--2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(96,165,250,0.20), transparent 70%);
  bottom: -100px; left: 20%;
  animation: m-orb 18s ease-in-out infinite reverse;
}
@keyframes m-orb {
  0%, 100% { transform: translate(-50%, 0) scale(1); }
  50% { transform: translate(-45%, 20px) scale(1.1); }
}

/* Grid background */
.m-hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.m-hero__inner {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 1080px;
  padding: 0 32px;
  width: 100%;
}

.m-hero__chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-2);
  border-radius: 99px;
  font: 500 12px var(--body);
  color: var(--ink-2);
  margin-bottom: 40px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.m-hero__chip:hover { background: rgba(255,255,255,0.07); color: var(--ink); }
.m-hero__chip__dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  color: var(--bg);
  font-size: 10px; font-weight: 700;
  padding: 4px;
}
.m-hero__chip__dot svg {
  width: 100%; height: 100%;
  display: block;
  color: var(--bg);
}
.m-hero__chip__arrow { color: var(--ink-3); margin-left: 4px; }

.m-hero__title {
  font-family: var(--display);
  font-size: clamp(56px, 8.5vw, 128px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin-bottom: 32px;
  color: var(--ink);
}
.m-hero__title .em {
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
}

.m-hero__sub {
  font: 400 19px/1.55 var(--body);
  color: var(--ink-2);
  max-width: 640px;
  margin: 0 auto 44px;
}
.m-hero__sub strong { color: var(--ink); font-weight: 500; }

.m-hero__ctas {
  display: flex; justify-content: center; gap: 12px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.m-hero__keywords {
  display: flex; justify-content: center; gap: 36px;
  font: 500 11.5px var(--body);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--ink-3);
  margin-top: 60px;
  flex-wrap: wrap;
}
.m-hero__keywords > * { display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.m-hero__keywords > *::before {
  content: ""; width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--ink-3);
}

/* ============================================================
   SECTIONS — generic shell
   ============================================================ */
.m-section {
  padding: 160px 0;
  position: relative;
  border-top: 1px solid var(--line);
}
.m-section--tight { padding: 100px 0; }

/* loop → plataforma: tighten the gap between these two sections */
#loop { padding-bottom: 80px; }
#plataforma { padding-top: 80px; }

.m-section__head {
  margin-bottom: 80px;
  max-width: 800px;
}
.m-section__head.is-centered {
  margin-left: auto; margin-right: auto;
  text-align: center;
}
.m-section__title {
  font-family: var(--display);
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 24px;
}
.m-section__title .em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.m-section__sub {
  font: 400 19px/1.6 var(--body);
  color: var(--ink-2);
  max-width: 640px;
}
.m-section__sub strong { color: var(--ink); font-weight: 500; }

/* ============================================================
   PROBLEM — minimal: large quote + spare lists
   ============================================================ */
.m-problem__statement {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto 80px;
}
.m-problem__statement .em {
  font-style: italic;
  color: var(--accent);
}
.m-problem__cols {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.m-problem__col {
  padding: 48px 48px 48px 0;
  border-right: 1px solid var(--line);
}
.m-problem__col:last-child {
  padding: 48px 0 48px 48px;
  border-right: 0;
}
.m-problem__col h4 {
  font: 500 12px var(--body);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ink-3);
  margin-bottom: 24px;
}
.m-problem__col.is-is h4 { color: var(--accent); }
.m-problem__col ul { list-style: none; }
.m-problem__col li {
  font: 400 16px/1.5 var(--body);
  color: var(--ink-2);
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.m-problem__col li:first-child { border-top: 0; padding-top: 0; }
.m-problem__col li strong { color: var(--ink); font-weight: 500; }

/* ============================================================
   LOOP — horizontal line with 5 stops
   ============================================================ */
.m-loop {
  position: relative;
  margin-top: 60px;
}
.m-loop__track {
  display: grid; grid-template-columns: repeat(5, 1fr);
  position: relative;
  padding-top: 80px;
}
.m-loop__track::before {
  content: "";
  position: absolute;
  top: 96px; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line-2), var(--line-2), transparent);
}
.m-loop__node { text-align: center; padding: 0 16px; position: relative; }
.m-loop__node__num {
  position: absolute; top: -22px; left: 50%;
  transform: translateX(-50%);
  font: 600 11px var(--body);
  color: var(--ink-3);
  letter-spacing: 1.4px;
}
.m-loop__node__dot {
  position: absolute; top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--accent);
  z-index: 2;
  transition: all 0.3s ease;
}
.m-loop__node:hover .m-loop__node__dot {
  background: var(--accent);
  box-shadow: 0 0 24px var(--accent);
}
.m-loop__node__t {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-top: 48px;
  margin-bottom: 10px;
  color: var(--ink);
}
.m-loop__node__d {
  font: 400 13.5px/1.5 var(--body);
  color: var(--ink-2);
  max-width: 200px;
  margin: 0 auto;
}

/* hover banner — single full-width strip below the track, content
   swaps to match whichever node (01..05) is hovered. Index is driven
   by React (data-active on .m-loop), so the LAST hovered node stays
   visible even after the cursor leaves. */
.m-loop__banner {
  position: relative;
  /* span the full text extent of the track — from start of column 1
     ("Cultura") to end of column 5 ("Evolução"), not the marker dots */
  width: 100%;
  margin: 28px auto 0;
  aspect-ratio: 16 / 5;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--bg-2);
  background-image:
    repeating-linear-gradient(
      135deg,
      rgba(245,158,11,0.06) 0 1px,
      transparent 1px 11px
    ),
    radial-gradient(ellipse at center, rgba(245,158,11,0.10), transparent 70%);
  /* always visible — at minimum, the active slide is shown */
  opacity: 1;
  transform: translateY(0);
  pointer-events: none;
}
.m-loop__banner__slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.32s ease;
}
.m-loop__banner__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.m-loop[data-active="0"] .m-loop__banner__slide[data-idx="0"],
.m-loop[data-active="1"] .m-loop__banner__slide[data-idx="1"],
.m-loop[data-active="2"] .m-loop__banner__slide[data-idx="2"],
.m-loop[data-active="3"] .m-loop__banner__slide[data-idx="3"],
.m-loop[data-active="4"] .m-loop__banner__slide[data-idx="4"] {
  opacity: 1;
}
.m-loop__banner__num {
  font: 600 11px var(--body);
  letter-spacing: 1.6px;
  color: var(--ink-3);
}
.m-loop__banner__tag {
  font: 500 11px var(--body);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  padding: 5px 12px;
  background: rgba(245,158,11,0.10);
  border-radius: 4px;
}
.m-loop__banner__hint {
  font: 400 12px var(--body);
  color: var(--ink-3);
  text-align: center;
  line-height: 1.4;
}

/* Inline per-node banner image — hidden on desktop, shown below each node on mobile */
.m-loop__node__img {
  display: none;
  width: 100%;
  margin-top: 18px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line-2);
}

/* ============================================================
   MODULES — stacked, minimal chrome
   ============================================================ */
.m-modules { display: flex; flex-direction: column; gap: 0; margin-top: 60px; }
.m-module {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
  padding: 100px 0;
  border-top: 1px solid var(--line);
}
.m-module:first-child { border-top: 0; padding-top: 0; }
.m-module:nth-child(even) {
  grid-template-columns: 1.3fr 1fr;
}
.m-module:nth-child(even) .m-module__text { order: 2; }
.m-module:nth-child(even) .m-module__visual { order: 1; }

.m-module__code {
  font: 500 11px var(--body);
  letter-spacing: 2.4px;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 14px;
}
.m-module__code::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--accent);
}
.m-module__name {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 18px;
}
.m-module__name__icon {
  color: var(--accent);
  display: inline-flex;
}
.m-module__sub {
  font: 500 13px var(--body);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--ink-3);
  margin-bottom: 28px;
}
.m-module__body {
  font: 400 17.5px/1.65 var(--body);
  color: var(--ink-2);
  margin-bottom: 28px;
}
.m-module__body strong { color: var(--accent); font-weight: 500; }

.m-module__bullets {
  list-style: none;
  border-top: 1px solid var(--line);
}
.m-module__bullets li {
  font: 400 14px var(--body);
  color: var(--ink-2);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 14px;
}
.m-module__bullets li::before {
  content: "";
  width: 14px; height: 1px;
  background: var(--accent);
}

/* Screenshot placeholder, minimal */
.m-screenshot {
  aspect-ratio: 16/10;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(245,158,11,0.06), transparent 50%),
    var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.m-screenshot::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
}
.m-screenshot__ph {
  text-align: center; padding: 32px; max-width: 320px;
  position: relative; z-index: 2;
}
.m-screenshot__ph__tag {
  display: inline-block;
  font: 500 10px var(--body);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--accent);
  padding: 4px 10px;
  background: rgba(245,158,11,0.10);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 99px;
  margin-bottom: 18px;
}
.m-screenshot__ph__txt {
  font: 500 15px/1.45 var(--body);
  color: var(--ink);
  margin-bottom: 8px;
}
.m-screenshot__ph__hint {
  font: 400 12.5px var(--body);
  color: var(--ink-3);
}

/* ============================================================
   VETORES — clean 3-column grid
   ============================================================ */
.m-vetores {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.m-vetor {
  padding: 36px 32px 32px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s ease;
}
.m-vetor:hover { background: rgba(255,255,255,0.015); }
.m-vetor__num {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 300;
  color: var(--ink-3);
  letter-spacing: -0.02em;
  line-height: 1;
}
.m-vetor__body { display: flex; flex-direction: column; gap: 8px; }
.m-vetor__t {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.m-vetor__d {
  font: 400 14.5px/1.55 var(--body);
  color: var(--ink-2);
}

/* ============================================================
   PERSONAS — minimal cards
   ============================================================ */
.m-personas {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.m-persona {
  padding: 36px 0;
  border-top: 1px solid var(--line-2);
  display: flex; flex-direction: column;
}
.m-persona__role {
  font: 500 12px var(--body);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--accent);
  margin-bottom: 18px;
}
.m-persona__pain {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 32px;
  position: relative;
}
.m-persona__pain::before {
  content: "\201C";
  font-size: 40px;
  color: var(--accent);
  position: absolute;
  left: -10px; top: -16px;
  opacity: 0.5;
}
.m-persona__anchor {
  font: 500 12px var(--body);
  color: var(--ink-3);
  letter-spacing: 0.5px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  margin-top: auto;
  margin-bottom: 16px;
}
.m-persona__anchor b { color: var(--accent); font-weight: 600; }
.m-persona__bullets {
  list-style: none;
}
.m-persona__bullets li {
  font: 400 13.5px/1.5 var(--body);
  color: var(--ink-2);
  padding: 6px 0;
}

/* ============================================================
   PRINCIPLES — minimal stripped list
   ============================================================ */
.m-principles {
  margin-top: 60px;
  border-top: 1px solid var(--line);
}
.m-principle {
  display: grid;
  grid-template-columns: 80px 1fr 2fr;
  gap: 48px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.m-principle__n {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 300;
  color: var(--ink-3);
}
.m-principle__t {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.m-principle__d {
  font: 400 15px/1.55 var(--body);
  color: var(--ink-2);
}

/* ============================================================
   CASES — minimal placeholder
   ============================================================ */
.m-cases {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.m-case {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.m-case__logo {
  display: inline-block;
  font: 700 13px var(--body);
  letter-spacing: 2px;
  color: var(--ink-3);
  padding: 6px 14px;
  border: 1px dashed var(--line-2);
  border-radius: 6px;
  margin-bottom: 28px;
}
.m-case__quote {
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.4;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 16px;
}
.m-case__role {
  font: 400 12.5px var(--body);
  color: var(--ink-3);
}

.m-clients {
  margin-top: 64px;
  padding: 28px 0;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.m-clients__label {
  font: 500 11px var(--body);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--ink-3);
}
.m-clients__row { display: flex; gap: 40px; }
.m-clients__row > span {
  font: 700 13px var(--body);
  letter-spacing: 1.6px;
  color: var(--ink-3);
}

/* ============================================================
   CONTACT — minimal
   ============================================================ */
.m-contact {
  position: relative;
  padding: 140px 0 160px;
}
.m-contact__glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(245,158,11,0.18), transparent 60%);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}
.m-contact__inner {
  position: relative; z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
}
.m-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.m-contact__intro .m-eyebrow { margin-bottom: 22px; }
.m-contact__title {
  font-family: var(--display);
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 22px;
  text-wrap: balance;
}
.m-contact__title .em { color: var(--accent); font-style: italic; font-weight: 400; }
.m-contact__sub {
  font: 400 17px/1.55 var(--body);
  color: var(--ink-2);
  margin-bottom: 44px;
  max-width: 460px;
}

.m-contact__details {
  display: flex; flex-direction: column; gap: 14px;
  font: 400 13.5px var(--body);
  color: var(--ink-2);
}
.m-contact__details > div { display: flex; align-items: center; gap: 10px; }
.m-contact__details svg { color: var(--accent); }

/* Contact form */
.m-contact__form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px 36px 32px;
  backdrop-filter: blur(6px);
}
.m-contact__form { display: flex; flex-direction: column; gap: 18px; }
.m-contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.m-contact__form label {
  display: flex; flex-direction: column; gap: 6px;
  font: 500 12px var(--body);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.m-contact__form .m-contact__full { display: flex; flex-direction: column; gap: 6px; }
.m-contact__form input,
.m-contact__form select,
.m-contact__form textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  font: 400 14.5px var(--body);
  color: #fff;
  text-transform: none;
  letter-spacing: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
  outline: none;
  font-family: inherit;
}
.m-contact__form select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.5) 50%),
                    linear-gradient(135deg, rgba(255,255,255,0.5) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}
.m-contact__form input::placeholder,
.m-contact__form textarea::placeholder { color: rgba(255,255,255,0.32); }
.m-contact__form input:focus,
.m-contact__form select:focus,
.m-contact__form textarea:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.06);
}
.m-contact__form textarea { resize: vertical; min-height: 96px; font-family: inherit; }
.m-contact__check {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 10px !important;
  font: 400 12.5px/1.45 var(--body) !important;
  color: rgba(255,255,255,0.65) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
.m-contact__check input { width: auto !important; padding: 0 !important; margin-top: 2px; accent-color: var(--accent); }
.m-contact__check a { color: var(--accent); text-decoration: underline; }
.m-contact__cta { margin-top: 6px; }
.m-contact__cta .m-cta {
  background: #fff; color: #0a0f1e; border-color: #fff;
  padding: 16px 24px;
}
.m-contact__cta .m-cta:hover {
  background: var(--accent); border-color: var(--accent); color: #fff;
}

/* Sent state */
.m-contact__sent {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 16px;
  padding: 12px 4px;
}
.m-contact__sent__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(245,158,11,0.12);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.m-contact__sent h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.015em;
  margin: 0;
}
.m-contact__sent p {
  font: 400 15px/1.55 var(--body);
  color: rgba(255,255,255,0.72);
  margin: 0;
}
.m-contact__sent .m-cta {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  margin-top: 8px;
}

@media (max-width: 900px) {
  .m-contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .m-contact__form-wrap { padding: 28px 22px 24px; }
  .m-contact__row { grid-template-columns: 1fr; }
  .m-contact { padding: 100px 0 120px; }
  .m-contact__inner { padding: 0 24px; }
}

/* ============================================================
   FOOTER — minimal
   ============================================================ */
.m-footer {
  border-top: 1px solid var(--line);
  padding: 64px 48px 32px;
}
.m-footer__main {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 3.7fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.m-footer__brand img { height: 22px; margin-bottom: 16px; }
.m-footer__brand p {
  font: 400 14px/1.55 var(--body);
  color: var(--ink-2);
  max-width: 320px;
}
.m-footer__social { display: flex; gap: 10px; margin-top: 20px; }
.m-footer__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 9px;
  color: var(--ink-2); border: 1px solid var(--line);
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}
.m-footer__social a:hover { color: var(--ink); border-color: var(--ink-3); }
.m-footer__cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(132px, 1fr)); gap: 28px 20px; align-content: start; }
.m-footer__cols h5 {
  font: 500 11px var(--body);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.m-footer__cols ul { list-style: none; }
.m-footer__cols li { margin-bottom: 8px; }
.m-footer__cols a, .m-footer__cols p {
  font: 400 13.5px var(--body);
  color: var(--ink-2);
}
.m-footer__cols a:hover { color: var(--ink); }
.m-footer__bottom {
  max-width: 1240px;
  margin: 24px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font: 400 12px var(--body);
  color: var(--ink-3);
}

/* Notice strip showing this is the minimal variant */
.m-variant-pill {
  position: fixed;
  bottom: 28px; left: 28px;
  z-index: 90;
  background: rgba(5,5,7,0.85);
  border: 1px solid var(--line-2);
  border-radius: 99px;
  padding: 8px 14px;
  font: 500 11px var(--body);
  color: var(--ink-2);
  display: flex; align-items: center; gap: 10px;
  backdrop-filter: blur(20px);
  white-space: nowrap;
}
.m-variant-pill__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}
.m-variant-pill a {
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 1px;
}

@media (max-width: 1000px) {
  .m-container { padding: 0 24px; }
  .m-loop__track { grid-template-columns: 1fr; gap: 36px; }
  .m-loop__track::before { display: none; }
  .m-loop__banner { display: none !important; }
  .m-loop__node { padding: 0 4px; text-align: left; }
  .m-loop__node__num { position: static; transform: none; display: inline-block; margin-right: 10px; vertical-align: middle; }
  .m-loop__node__dot { display: none; }
  .m-loop__node__t { margin-top: 0; display: inline-block; vertical-align: middle; }
  .m-loop__node__d { max-width: none; margin: 8px 0 0; }
  .m-loop__node__img { display: block; }
  .m-module { grid-template-columns: 1fr !important; gap: 40px; }
  .m-module__visual { order: 2 !important; }
  .m-module__text { order: 1 !important; }
  .m-vetores { grid-template-columns: 1fr; border-left: 0; }
  .m-vetor { border-right: 0; }
  .m-personas, .m-cases { grid-template-columns: 1fr; }
  .m-principle { grid-template-columns: 1fr; gap: 8px; }
  .m-problem__cols { grid-template-columns: 1fr; }
  .m-problem__col { padding: 32px 0 !important; border-right: 0 !important; border-top: 1px solid var(--line); }
}

/* ---- cookie / privacy consent banner ---- */
.akdmi-cc {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 4000;
  max-width: 420px;
  background: #ffffff;
  color: #0a0f1e;
  border: 1px solid rgba(10,15,30,0.10);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(10,15,30,0.20);
  padding: 18px 20px 16px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease;
}
.akdmi-cc.is-in { opacity: 1; transform: translateY(0); }
.akdmi-cc__text {
  font: 400 13px/1.55 var(--body, system-ui, sans-serif);
  color: rgba(10,15,30,0.72);
  margin: 0 0 14px;
}
.akdmi-cc__text a { color: #d97706; text-decoration: underline; }
.akdmi-cc__btns { display: flex; gap: 10px; justify-content: flex-end; }
.akdmi-cc__btns button {
  font: 600 13px var(--body, system-ui, sans-serif);
  padding: 9px 16px;
  border-radius: 99px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.akdmi-cc__reject {
  background: transparent;
  color: rgba(10,15,30,0.65);
  border-color: rgba(10,15,30,0.16);
}
.akdmi-cc__reject:hover { color: #0a0f1e; border-color: rgba(10,15,30,0.4); }
.akdmi-cc__accept {
  background: #0a0f1e;
  color: #fff;
}
.akdmi-cc__accept:hover { background: #d97706; }
@media (max-width: 560px) {
  .akdmi-cc { left: 12px; right: 12px; bottom: 12px; max-width: none; }
}
