/* ═════════════════════════ TOKENS ═════════════════════════ */
:root {
  --ink:        #15123D;
  --ink-2:      #1F1B4D;
  --ink-3:      #2B2660;
  --canvas:     #FBF8F2;
  --canvas-2:   #F4EFE3;
  --canvas-3:   #ECE5D2;
  --paper:      #FFFFFF;
  --mute:       #6B6880;
  --mute-soft:  #9C99AE;
  --line:       #E7E1D2;
  --line-2:     #D6CFBE;
  --lavender:   #C5B5E0;
  --lavender-2: #E5DEF1;
  --violet:     #4A47A8;
  --accent:     #E8FF5C;
  --accent-2:   #D9F048;

  --max:    1280px;
  --gutter: clamp(20px, 4vw, 64px);
  --nav-h:  68px;

  --rad-sm: 4px;
  --rad:    12px;
  --rad-lg: 22px;
  --rad-xl: 32px;

  --f-display: 'Space Grotesk', system-ui, sans-serif;
  --f-body:    'Inter', system-ui, sans-serif;
  --f-mono:    'JetBrains Mono', 'SF Mono', Menlo, monospace;

  --ease:     cubic-bezier(0.2, 0.8, 0.2, 1);
  --d-fast:   200ms;
  --d:        380ms;
  --d-slow:   700ms;
}

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

html {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}
body { min-height: 100dvh; overflow-x: hidden; background: var(--canvas); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}

img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

::selection { background: var(--accent); color: var(--ink); }

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

.skip {
  position: absolute; top: -100px; left: 16px; z-index: 200;
  padding: 12px 18px; background: var(--ink); color: var(--canvas);
  border-radius: var(--rad-sm); font-weight: 500;
  transition: top var(--d) var(--ease);
}
.skip:focus { top: 16px; }

/* ═════════════════════════ TYPE UTILS ═════════════════════════ */
.micro {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--mute); width: fit-content;
}
.micro i {
  display: inline-block; width: 6px; height: 6px;
  background: var(--ink); border-radius: 50%;
}
.micro--dark { color: var(--canvas); }
.micro--dark i { background: var(--accent); }

.mute { color: var(--mute-soft); }
.about__title .mute,
.block__title .mute { color: var(--mute-soft); }

/* ═════════════════════════ CTA ═════════════════════════ */
.cta-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  background: var(--accent); color: var(--ink);
  border: 0; border-radius: 100px;
  font-family: var(--f-display); font-weight: 600; font-size: 15px;
  letter-spacing: -0.005em; cursor: pointer;
  transition: background var(--d) var(--ease),
              transform var(--d-fast) var(--ease),
              box-shadow var(--d) var(--ease);
  width: fit-content;
  box-shadow: 0 6px 18px rgba(232, 255, 92, 0.25);
}
.cta-pill svg { transition: transform var(--d) var(--ease); }
.cta-pill:hover { background: var(--ink); color: var(--accent); box-shadow: 0 10px 28px rgba(21, 18, 61, 0.18); }
.cta-pill:hover svg { transform: translateX(4px); }
.cta-pill:active { transform: scale(0.985); }
.cta-pill--dark { background: var(--ink); color: var(--canvas); box-shadow: 0 6px 18px rgba(21,18,61,0.18); }
.cta-pill--dark:hover { background: var(--accent); color: var(--ink); }

.ghost-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: 11.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--canvas);
  padding: 8px 14px; border: 1px solid rgba(244, 239, 227, 0.32);
  border-radius: 100px;
  transition: background var(--d) var(--ease), color var(--d) var(--ease), border-color var(--d) var(--ease);
}
.ghost-cta i { font-style: normal; transition: transform var(--d) var(--ease); }
.ghost-cta:hover { background: var(--canvas); color: var(--ink); border-color: var(--canvas); }
.ghost-cta:hover i { transform: translateX(3px); }

/* ═════════════════════════ NAV ═════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 var(--gutter);
  gap: 24px;
  background: rgba(251, 248, 242, 0.82);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: background var(--d) var(--ease), border-color var(--d) var(--ease);
}
.nav.is-scrolled {
  background: rgba(251, 248, 242, 0.95);
  border-bottom-color: var(--line);
}
.nav__brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-display); font-weight: 700; font-size: 17px;
  letter-spacing: 0.04em; color: var(--ink);
}
.nav__brand img { width: 26px; height: 26px; }
.nav__links {
  display: flex; align-items: center; gap: 30px; justify-self: center;
}
.nav__links a {
  font-family: var(--f-mono); font-size: 11.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--mute);
  padding: 6px 0; position: relative;
  transition: color var(--d) var(--ease);
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1.5px; background: var(--ink);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--d) var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after,
.nav__links a.is-active::after { transform: scaleX(1); }
.nav__links a.is-active { color: var(--ink); }

.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--accent); color: var(--ink);
  border-radius: 100px;
  font-family: var(--f-mono); font-size: 11.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  transition: background var(--d) var(--ease), color var(--d) var(--ease);
  box-shadow: 0 4px 12px rgba(232,255,92,0.30);
}
.nav__cta i { font-style: normal; transition: transform var(--d) var(--ease); }
.nav__cta:hover { background: var(--ink); color: var(--accent); }
.nav__cta:hover i { transform: translateX(3px); }

.nav__burger {
  display: none;
  width: 38px; height: 38px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  justify-self: end;
}
.nav__burger span {
  width: 22px; height: 1.5px; background: var(--ink);
  transition: transform var(--d) var(--ease);
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

.menu {
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  z-index: 99; background: var(--canvas); padding: 32px var(--gutter);
}
.menu nav { display: flex; flex-direction: column; gap: 8px; }
.menu a {
  font-family: var(--f-display); font-size: clamp(1.6rem, 7vw, 2.4rem);
  font-weight: 600; color: var(--ink); letter-spacing: -0.02em;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}

/* ═════════════════════════ HERO ═════════════════════════ */
.hero {
  padding: calc(var(--nav-h) + clamp(48px, 6vw, 80px)) var(--gutter) clamp(40px, 5vw, 56px);
  max-width: var(--max);
  margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 26px;
  text-align: center;
  position: relative;
}
.hero__micro {
  opacity: 0; transform: translateY(8px);
  animation: rise 700ms var(--ease) 100ms forwards;
}
.hero__h {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  line-height: 1; letter-spacing: -0.04em;
  color: var(--ink); max-width: 22ch; text-wrap: balance;
  display: flex; flex-direction: column; gap: 0;
}
.hero__h .part {
  display: block; overflow: visible;
  opacity: 0; transform: translateY(20px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}
.hero__h .part.is-in { opacity: 1; transform: translateY(0); }
.hero__h .part--mute { color: var(--mute-soft); }

.hero__h .badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.05em; height: 1.05em;
  margin: 0 0.18em 0 0.05em;
  vertical-align: -0.15em;
  background: var(--accent);
  border-radius: 0.22em;
  padding: 0.16em;
  box-shadow: 0 4px 12px rgba(232, 255, 92, 0.42);
}
.hero__h .badge img {
  width: 100%; height: 100%; object-fit: contain;
}

.hero__sub {
  font-size: clamp(1rem, 1.3vw, 1.15rem); line-height: 1.55;
  color: var(--mute); max-width: 52ch;
  opacity: 0; transform: translateY(8px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.hero__sub.is-in { opacity: 1; transform: translateY(0); }

.hero .cta-pill {
  margin-top: 6px;
  opacity: 0; transform: translateY(8px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease), background var(--d) var(--ease), color var(--d) var(--ease), box-shadow var(--d) var(--ease);
}
.hero .cta-pill.is-in { opacity: 1; transform: translateY(0); }

@keyframes rise { to { opacity: 1; transform: translateY(0); } }

/* ═════════════════════════ HERO WORD CYCLE ═════════════════════════ */
.hero__cycle-wrap,
.hero__h .hero__cycle-wrap {
  position: relative;
  overflow: hidden;
  transition: height 500ms var(--ease);
}
.hero__word {
  position: absolute;
  left: 0; right: 0;
  font-weight: 700;
  color: var(--violet);
  white-space: nowrap;
  font-size: 0.78em;
  opacity: 0;
  transform: translateY(120%);
  transition: opacity 500ms var(--ease),
              transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}
.hero__word.is-active {
  opacity: 1;
  transform: translateY(0);
}
.hero__word.is-exit {
  opacity: 0;
  transform: translateY(-120%);
}

/* ═════════════════════════ SOBRE (dark card + photo) ═════════════════════════ */
.about {
  padding: clamp(40px, 5vw, 64px) var(--gutter) clamp(48px, 6vw, 72px);
  max-width: var(--max); margin: 0 auto;
}
.about__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
  align-items: stretch;
}
.about__card,
.about__photo-wrap {
  opacity: 0; transform: translateY(16px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.about__card.is-in,
.about__photo-wrap.is-in { opacity: 1; transform: translateY(0); }

.about__card {
  background: var(--ink); color: var(--canvas);
  border-radius: var(--rad-xl);
  padding: 40px 36px 36px;
  display: flex; flex-direction: column; gap: 22px;
  min-height: 400px;
  position: relative; overflow: hidden;
}
.about__card::after {
  content: ''; position: absolute; bottom: -120px; right: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(232,255,92,0.10), transparent 60%);
  pointer-events: none;
}
.about__title {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  line-height: 1; letter-spacing: -0.028em;
  color: var(--canvas);
  display: flex; flex-direction: column; gap: 4px;
  position: relative; z-index: 1;
}
.about__title .mute { color: var(--lavender); opacity: 0.78; }
.about__copy {
  font-size: 15px; line-height: 1.65; color: rgba(244, 239, 227, 0.72);
  max-width: 42ch; position: relative; z-index: 1;
}
.about__actions {
  display: flex; gap: 8px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.about__inline {
  margin-top: auto;
  display: grid; grid-template-columns: 56px 1fr auto; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(197, 181, 224, 0.18);
  border-radius: var(--rad);
  position: relative; z-index: 1;
  transition: background var(--d) var(--ease), border-color var(--d) var(--ease);
}
.about__inline:hover { background: rgba(255,255,255,0.10); border-color: var(--accent); }
.about__inline-icon {
  width: 44px; height: 44px;
  background: rgba(197, 181, 224, 0.10);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.about__inline-icon img { width: 28px; height: 28px; filter: brightness(0) invert(1) opacity(0.85); }
.about__inline-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.about__inline-title {
  font-family: var(--f-display); font-weight: 600; font-size: 14.5px;
  color: var(--canvas);
}
.about__inline-desc {
  font-size: 12.5px; color: rgba(244, 239, 227, 0.6);
}
.about__inline-arrow {
  font-style: normal; color: var(--accent); font-size: 18px;
}

/* Photo wrap */
.about__photo-wrap {
  position: relative;
  border-radius: var(--rad-xl);
  overflow: hidden;
  min-height: 400px;
  background: var(--canvas-3);
}
.about__photo { width: 100%; height: 100%; position: absolute; inset: 0; }
.about__photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.stat {
  position: absolute;
  background: var(--paper); color: var(--ink);
  border-radius: var(--rad);
  padding: 16px 18px;
  width: 200px;
  box-shadow: 0 12px 28px rgba(21,18,61,0.12);
  display: flex; flex-direction: column; gap: 4px;
}
.stat--top    { top: 22px; right: 22px; }
.stat--bottom { bottom: 22px; left: 22px; }
.stat__num {
  font-family: var(--f-display); font-weight: 600;
  font-size: 32px; line-height: 1; letter-spacing: -0.025em;
  color: var(--ink); font-variant-numeric: tabular-nums;
}
.stat__num i {
  font-style: normal; color: var(--violet); font-weight: 500; font-size: 22px;
  margin-left: 2px;
}
.stat__label {
  font-family: var(--f-mono); font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--mute); margin-top: 2px;
}
.stat__sub {
  font-size: 11.5px; color: var(--mute); margin-top: 6px; line-height: 1.4;
}

/* ═════════════════════════ BLOCK HEADERS ═════════════════════════ */
.block__head {
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: 32px;
  max-width: var(--max);
  padding: 0 var(--gutter);
  margin-left: auto; margin-right: auto;
}
.block__title {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1; letter-spacing: -0.03em;
  color: var(--ink); max-width: 22ch; text-wrap: balance;
  display: flex; flex-direction: column; gap: 4px;
}

/* ═════════════════════════ COMPETÊNCIAS — orbit (cos/sin fixed) ═════════════════════════ */
.comp {
  padding: clamp(56px, 7vw, 96px) 0;
}
.comp > .block__head { text-align: center; align-items: center; }
.comp > .block__head .block__title { text-align: center; }

.orbit {
  position: relative;
  width: 100%; max-width: 580px; aspect-ratio: 1/1;
  margin: 0 auto;
}
.orbit__ring {
  position: absolute; left: 50%; top: 50%;
  border-radius: 50%; pointer-events: none;
  border: 1px dashed var(--line-2);
  transform: translate(-50%, -50%);
}
.orbit__ring--in  { width: 54%; height: 54%; }
.orbit__ring--out { width: 86%; height: 86%; border-color: var(--lavender); opacity: 0.7; }

.orbit__logo {
  position: absolute; left: 50%; top: 50%;
  width: 32%; height: 32%; object-fit: contain;
  transform: translate(-50%, -50%);
  animation: float 14s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translate(-50%, -50%); }
  50%      { transform: translate(-50%, calc(-50% - 6px)); }
}

.orbit__spin {
  position: absolute; inset: 0;
  animation: orbit-spin 50s linear infinite;
}
@keyframes orbit-spin { to { transform: rotate(360deg); } }

.chip {
  position: absolute;
  padding: 7px 13px;
  border-radius: 100px;
  font-family: var(--f-mono); font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  white-space: nowrap;
  /* cos/sin gives correct x/y placement on circle; --r is % of orbit */
  left: calc(50% + cos((var(--a) * 1deg) - 90deg) * var(--r));
  top:  calc(50% + sin((var(--a) * 1deg) - 90deg) * var(--r));
  transform: translate(-50%, -50%);
  opacity: 0;
  animation-name: chip-in, chip-counter;
  animation-duration: 700ms, 50s;
  animation-timing-function: var(--ease), linear;
  animation-fill-mode: forwards, none;
  animation-iteration-count: 1, infinite;
  transition: background var(--d) var(--ease), color var(--d) var(--ease), border-color var(--d) var(--ease);
}
.chip--in  {
  --r: 36%;
  background: var(--paper); color: var(--ink); border: 1px solid var(--line);
  box-shadow: 0 2px 6px rgba(21,18,61,0.04);
  animation-delay: calc(200ms + (var(--a) / 360) * 800ms), 0ms;
}
.chip--out {
  --r: 48%;
  background: var(--lavender-2); color: var(--violet); border: 1px solid transparent;
  animation-delay: calc(400ms + (var(--a) / 360) * 800ms), 0ms;
}
.chip:hover {
  background: var(--ink); color: var(--accent); border-color: var(--ink);
  z-index: 2;
}
@keyframes chip-in { to { opacity: 1; } }
@keyframes chip-counter {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(-360deg); }
}

.pairs { display: none; }

/* ═════════════════════════ CANAIS ═════════════════════════ */
.ch { padding: clamp(56px, 7vw, 96px) 0; background: var(--canvas-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ch__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter);
}
.ch__card {
  position: relative;
  padding: 32px 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--rad-xl);
  display: flex; flex-direction: column; gap: 16px;
  overflow: hidden;
  transition: transform var(--d) var(--ease), border-color var(--d) var(--ease), box-shadow var(--d) var(--ease);
  opacity: 0; transform: translateY(16px);
}
.ch__card.is-in { opacity: 1; transform: translateY(0); }
.ch__card:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: 0 12px 28px rgba(21,18,61,0.08);
}
.ch__icon {
  width: 44px; height: 44px;
  color: var(--violet);
}
.ch__card h3 {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  line-height: 1.1; letter-spacing: -0.02em;
  color: var(--ink);
}
.ch__card p {
  font-size: 14.5px; line-height: 1.65;
  color: var(--mute);
}

/* ═════════════════════════ OPERAÇÃO — vertical timeline ═════════════════════════ */
.op { padding: clamp(56px, 7vw, 96px) 0; }
.op__timeline {
  position: relative;
  max-width: 760px; margin: 0 auto;
  padding: 0 var(--gutter) 0 calc(var(--gutter) + 56px);
}
.op__track {
  position: absolute;
  left: calc(var(--gutter) + 20px);
  top: 20px; bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--violet));
  border-radius: 1px;
}
.op__step {
  position: relative;
  padding-bottom: 36px;
}
.op__step:last-child { padding-bottom: 0; }
.op__marker {
  position: absolute;
  left: -56px; top: 0;
  width: 42px; height: 42px;
  background: var(--accent);
  color: var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
  box-shadow: 0 0 0 5px var(--canvas);
}
.op__marker span {
  font-family: var(--f-mono); font-weight: 700;
  font-size: 12px; letter-spacing: 0.04em;
}
.op__card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 24px 28px;
  display: flex; flex-direction: column; gap: 8px;
  transition-property: transform, border-color, box-shadow;
  transition-duration: 500ms;
  transition-timing-function: var(--ease);
}
.op__card:hover {
  transform: translateX(6px);
  border-color: var(--ink);
  box-shadow: 0 8px 24px rgba(21,18,61,0.06);
}
.op__step h3 {
  font-family: var(--f-display); font-weight: 600;
  font-size: 1.15rem; letter-spacing: -0.018em; color: var(--ink);
}
.op__step p {
  font-size: 14.5px; line-height: 1.6; color: var(--mute); max-width: 56ch;
}

/* ═════════════════════════ PADRÕES — numbered big list ═════════════════════════ */
.pad { padding: clamp(56px, 7vw, 96px) 0; background: var(--ink); color: var(--canvas); }
.pad .block__head .block__title { color: var(--canvas); }
.pad .block__head .block__title .mute { color: var(--lavender); opacity: 0.7; }
.pad .block__head .micro { color: var(--lavender); }
.pad .block__head .micro i { background: var(--accent); }
.pad__grid2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px 40px;
  max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter);
}
.pad__item {
  display: flex; gap: 16px; align-items: flex-start;
  opacity: 0; transform: translateY(10px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.pad__item.is-in { opacity: 1; transform: translateY(0); }
.pad__check {
  width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px;
  color: var(--accent);
}
.pad__item strong {
  display: block;
  font-family: var(--f-display); font-weight: 600;
  font-size: 15.5px; color: var(--canvas);
  margin-bottom: 6px;
}
.pad__item span {
  font-size: 14px; line-height: 1.55;
  color: rgba(244, 239, 227, 0.6);
}

/* ═════════════════════════ CONTATO ═════════════════════════ */
.ct {
  padding: clamp(56px, 7vw, 96px) 0;
  background: var(--canvas-2);
  border-top: 1px solid var(--line);
}
.ct__grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 80px);
  max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter);
  align-items: start;
}
.ct__intro {
  display: flex; flex-direction: column; gap: 20px;
  position: sticky; top: calc(var(--nav-h) + 24px);
}
.ct__title {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(2rem, 5.5vw, 4.4rem);
  line-height: 0.96; letter-spacing: -0.035em;
  color: var(--ink); max-width: 12ch;
  display: flex; flex-direction: column; gap: 0;
}
.ct__title .mute { color: var(--mute-soft); }
.ct__sub {
  font-size: 15.5px; line-height: 1.6; color: var(--mute); max-width: 42ch;
}

/* Contact dot green — pulse "online" */
.ct .micro i {
  background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
  animation: dot-pulse 2s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.25); }
  50%      { box-shadow: 0 0 0 7px rgba(34,197,94,0); }
}

/* Email copy */
.email-copy {
  display: inline-flex; align-items: stretch;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 100px;
  padding: 4px;
  margin-top: 8px;
  width: fit-content;
}
.email-copy__addr {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  font-family: var(--f-mono); font-size: 14.5px; font-weight: 500;
  color: var(--ink);
  transition: color var(--d) var(--ease);
}
.email-copy__addr svg { color: var(--violet); flex-shrink: 0; }
.email-copy__addr:hover { color: var(--violet); }
.email-copy__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  background: var(--ink); color: var(--canvas);
  border-radius: 100px;
  font-family: var(--f-mono); font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
  transition: background var(--d) var(--ease), color var(--d) var(--ease);
  cursor: pointer;
}
.email-copy__btn:hover { background: var(--accent); color: var(--ink); }
.email-copy__btn.is-copied { background: var(--accent); color: var(--ink); }

/* Form */
.form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--rad-xl);
  padding: 36px 32px;
}
.form__row { display: flex; flex-direction: column; gap: 8px; }
.form__row--full { grid-column: 1 / -1; }
.form__row label {
  font-family: var(--f-mono); font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--mute);
}
.form__row input,
.form__row textarea {
  font: inherit; font-size: 15.5px; color: var(--ink);
  background: transparent; border: 0;
  border-bottom: 1px solid var(--line-2);
  padding: 10px 0; width: 100%;
  transition: border-color var(--d) var(--ease);
}
.form__row input:focus-visible,
.form__row textarea:focus-visible {
  outline: none; border-bottom-color: var(--ink); border-radius: 0;
}
.form__row textarea {
  resize: vertical; min-height: 90px; font-family: inherit; line-height: 1.55;
}
.form__row input::placeholder,
.form__row textarea::placeholder {
  color: var(--mute-soft); opacity: 0.6;
}
.form__foot {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  margin-top: 4px;
}
.form__hint {
  font-family: var(--f-mono); font-size: 11.5px;
  color: var(--mute); min-height: 1em;
}
.form__hint.is-error { color: #B23A3A; }
.form__hint.is-ok    { color: var(--violet); }

/* ═════════════════════════ FOOTER ═════════════════════════ */
.footer {
  background: var(--canvas);
  padding: 28px var(--gutter);
  border-top: 1px solid var(--line);
}
.footer__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  max-width: var(--max); margin: 0 auto;
}
.footer__brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-display); font-weight: 700; font-size: 15px;
  letter-spacing: 0.04em; color: var(--ink);
}
.footer__links { display: flex; gap: 20px; }
.footer__links a {
  font-family: var(--f-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--mute);
  transition: color var(--d) var(--ease);
}
.footer__links a:hover { color: var(--ink); }
.footer__copy {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--mute); letter-spacing: 0.06em;
}

/* ═════════════════════════ REVEAL ═════════════════════════ */
[data-reveal] {
  opacity: 0; transform: translateY(14px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: translateY(0); }

/* ═════════════════════════ RESPONSIVE ═════════════════════════ */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__card, .about__photo-wrap { min-height: 380px; }
  .stat { width: 180px; }
  .ch__grid { grid-template-columns: 1fr; }
  .pad__grid2 { grid-template-columns: 1fr 1fr; gap: 28px 32px; }
  .ct__grid { grid-template-columns: 1fr; }
  .ct__intro { position: static; }
  .form { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .menu[hidden] { display: none; }
  .menu { display: block; }

  .hero { padding-top: calc(var(--nav-h) + 48px); }
  .hero__h { font-size: clamp(2.1rem, 9.5vw, 3.4rem); }
  .hero__h .badge { width: 0.95em; height: 0.95em; }

  .about__card { padding: 32px 28px; }
  .stat { width: 160px; padding: 14px 16px; }
  .stat__num { font-size: 26px; }
  .stat--top { top: 16px; right: 16px; }
  .stat--bottom { bottom: 16px; left: 16px; }

  .orbit { display: none; }
  .pairs {
    display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
    max-width: 480px; margin: 0 auto; padding: 0 var(--gutter);
  }
  .pairs li { display: contents; }
  .pairs li span {
    padding: 11px 14px;
    background: var(--paper); border: 1px solid var(--line);
    border-radius: 8px;
    font-family: var(--f-mono); font-size: 11.5px; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--ink);
  }
  .pairs li span:nth-child(2) {
    background: var(--lavender-2); color: var(--violet); border-color: transparent;
  }

  .ch__card { padding: 24px 20px; }
  .op__timeline { padding-left: calc(var(--gutter) + 48px); }
  .op__marker { left: -48px; width: 36px; height: 36px; }
  .op__track { left: calc(var(--gutter) + 16px); }
  .op__card { padding: 20px 22px; }
  .pad__grid2 { grid-template-columns: 1fr; gap: 24px; }

  .form { padding: 28px 22px; gap: 22px 18px; }
}
