/* WebNova360 site — taste-skill overhaul 2026-07-16 */
:root {
  --canvas: #eef1f5;
  --surface: #f7f9fc;
  --elevated: #ffffff;
  --ink: #0e1218;
  --muted: #5a636e;
  --border: rgba(14, 18, 24, 0.12);
  --accent: #2598ff;
  --accent-soft: #e3f1ff;
  --accent-ink: #0b5cad;
  --font: "Outfit", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --max: 74rem;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --r: 6px;
  --r-sm: 4px;
  --z-nav: 40;
  --z-grain: 30;
  --z-float: 60;
  --z-lang-prompt: 70;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font);
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
::selection { background: rgba(37, 152, 255, 0.22); color: var(--ink); }

.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: #fff; padding: 0.75rem 1rem; z-index: 100;
}
.skip:focus { left: var(--gutter); top: 0.75rem; }

.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: var(--z-grain);
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap {
  width: min(100% - (var(--gutter) * 2), var(--max));
  margin-inline: auto;
}

/* —— Nav —— studio bar + mobile drawer —— */
.nav-shell {
  position: fixed;
  top: calc(env(safe-area-inset-top) + 0.85rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-nav);
  max-width: min(96vw, 52rem);
  width: max-content;
}
.nav-menu {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.45rem;
  min-width: 0;
}
.nav {
  position: relative;
  display: flex; align-items: center; flex-wrap: nowrap; gap: 0.2rem;
  height: 2.85rem;
  padding: 0.22rem 0.22rem 0.22rem 0.5rem;
  border: 1px solid rgba(14, 18, 20, 0.1);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 10px 30px rgba(14, 18, 20, 0.06);
  box-sizing: border-box;
  background: transparent;
  isolation: isolate;
}
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: rgba(247, 248, 247, 0.9);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  pointer-events: none;
}
.nav a {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.01em;
  padding: 0.42rem 0.4rem; border-radius: 999px;
  color: var(--muted); transition: color 0.2s var(--ease), background 0.2s var(--ease);
  white-space: nowrap;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.nav a:hover { color: var(--ink); background: rgba(14,18,20,0.04); }
.nav a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.nav .brand {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-weight: 700; color: var(--ink); padding-inline: 0.45rem 0.65rem;
  letter-spacing: -0.03em; font-size: 0.88rem;
  flex-shrink: 0;
}
.brand-logo {
  width: 1.4rem; height: 1.4rem; border-radius: 50%;
  display: block; flex-shrink: 0;
}
.nav .cta {
  background: var(--accent); color: #f7f8f7 !important;
  font-weight: 600; margin-left: 0;
  padding-inline: 0.85rem;
  flex-shrink: 0;
  /* Longest CTA: "Book call" (EN) — keep pill width stable across langs */
  min-width: 6.85rem;
  justify-content: center;
  box-sizing: border-box;
  text-align: center;
}
.nav .cta:hover { background: var(--accent-ink); color: #fff !important; }

/* Segmented lang switch — sliding thumb (“drop-drop”) */
.langs,
.lang {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  margin-left: 0;
  padding: 0.15rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(14, 18, 20, 0.045);
  box-sizing: border-box;
}
.langs .lang-thumb,
.lang .lang-thumb {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  border-radius: 999px;
  background: var(--accent-soft);
  box-shadow: 0 1px 3px rgba(14, 18, 24, 0.08);
  pointer-events: none;
  opacity: 0;
  will-change: transform, width;
  transition:
    transform 0.48s cubic-bezier(0.34, 1.45, 0.64, 1),
    width 0.48s cubic-bezier(0.34, 1.45, 0.64, 1),
    height 0.48s cubic-bezier(0.34, 1.45, 0.64, 1),
    opacity 0.2s var(--ease);
}
.langs.is-thumb-ready .lang-thumb,
.lang.is-thumb-ready .lang-thumb { opacity: 1; }
.langs a,
.lang button {
  position: relative;
  z-index: 1;
  font-size: 0.64rem; font-weight: 650; letter-spacing: 0.08em;
  padding: 0.38rem 0.45rem; text-transform: uppercase;
  min-width: 2.4rem; min-height: 2.4rem;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent !important;
  color: var(--muted);
  transition: color 0.2s var(--ease);
  border-radius: 999px;
}
.langs a:hover { color: var(--ink); background: transparent !important; }
.langs a.is-active,
.lang button.is-on {
  background: transparent !important;
  color: var(--accent-ink);
}
/* SVG flags — injected by core.js; desktop shows EN|PT|DE text only */
.lang-flag {
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: none;
}
.lang-flag svg {
  display: block;
  width: 100%;
  height: 100%;
}
.langs--bar { display: none; }
.nav .langs--bar { display: none; }
.nav-langs-label { display: none; }

/* Burger — icon-only inside pill (no secondary button chrome) */
.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  margin-left: auto;
  margin-right: 0.1rem;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}
.nav-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.nav-toggle:hover,
body.nav-open .nav-toggle { background: transparent; }
.nav-toggle-bars {
  width: 1.05rem;
  height: 0.72rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle-bar {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
  transform-origin: center;
}
body.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(5.25px) rotate(45deg); }
body.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-5.25px) rotate(-45deg); }

.nav-backdrop {
  position: fixed; inset: 0; z-index: calc(var(--z-nav) + 4);
  background: rgba(14, 18, 24, 0.28);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
body.nav-open .nav-backdrop { opacity: 1; visibility: visible; }
.nav-backdrop[hidden] { display: none !important; }

html.nav-open,
body.nav-open {
  overflow: hidden !important;
  overscroll-behavior: none;
}

@media (max-width: 899px) {
  .nav-toggle { display: inline-flex; }
  .nav-shell {
    left: max(1rem, env(safe-area-inset-left));
    right: max(1rem, env(safe-area-inset-right));
    top: calc(env(safe-area-inset-top) + 0.75rem);
    transform: none;
    max-width: none;
    width: auto;
    z-index: calc(var(--z-nav) + 7);
  }
  body.nav-open .nav-shell {
    /* Keep pill exactly where it was — don't jump to the screen edge */
    top: calc(env(safe-area-inset-top) + 0.75rem);
  }
  /* Brand left | burger right (menu is position:fixed → out of flow) */
  .nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 0.25rem;
    width: 100%;
    height: 3rem;
    padding: 0.2rem 0.22rem 0.2rem 0.4rem;
    overflow: visible;
  }
  .nav .brand {
    grid-column: 1;
    justify-self: start;
    padding-inline: 0.15rem 0.2rem;
    font-size: 0.78rem;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }
  .nav .brand-logo { width: 1.2rem; height: 1.2rem; }
  .nav-toggle {
    justify-self: end;
    grid-column: 2;
    margin-left: 0;
    margin-right: 0.05rem;
    z-index: 2;
  }

  /* Floating sheet below pill — not full-bleed under the bar */
  .nav-menu {
    position: fixed;
    top: calc(env(safe-area-inset-top) + 0.75rem + 3rem + 0.55rem);
    left: max(1rem, env(safe-area-inset-left));
    right: max(1rem, env(safe-area-inset-right));
    bottom: auto;
    z-index: calc(var(--z-nav) + 5);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0;
    width: auto;
    height: auto;
    max-width: none;
    max-height: calc(100dvh - env(safe-area-inset-top) - 0.75rem - 3rem - 0.55rem - 1rem - env(safe-area-inset-bottom));
    margin: 0;
    padding: 0.55rem 0.95rem 1rem;
    background: var(--elevated);
    border: 1px solid rgba(14, 18, 24, 0.1);
    border-radius: 1.25rem;
    box-shadow: 0 18px 48px rgba(14, 18, 24, 0.14), 0 2px 8px rgba(14, 18, 24, 0.05);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    touch-action: manipulation;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s var(--ease);
    pointer-events: none;
  }
  .nav-menu[hidden] { display: none !important; }
  body.nav-open .nav-menu {
    display: flex !important;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .nav-menu > a {
    font-size: 1.12rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.25;
    padding: 0.85rem 0.15rem;
    min-height: 2.85rem;
    border: none;
    border-bottom: 1px solid rgba(14, 18, 24, 0.08);
    border-radius: 0;
    background: transparent;
    color: var(--ink);
    white-space: nowrap;
    flex-shrink: 0;
    justify-content: flex-start;
  }
  .nav-menu > a:hover,
  .nav-menu > a:active {
    background: transparent;
    color: var(--accent-ink);
    border-bottom-color: rgba(14, 18, 24, 0.08);
  }
  .nav-menu .cta {
    margin: 1rem 0 0;
    padding: 0.85rem 1.15rem;
    text-align: center;
    justify-content: center;
    min-height: 3rem;
    font-size: 0.98rem;
    letter-spacing: -0.01em;
    border: none !important;
    border-radius: 999px !important;
    background: var(--accent) !important;
    color: #fff !important;
    box-shadow: 0 8px 22px rgba(37, 152, 255, 0.24);
    width: 100%;
  }
  .nav-menu .cta:hover,
  .nav-menu .cta:active {
    background: var(--accent-ink) !important;
    color: #fff !important;
  }

  .nav-langs-label {
    display: block;
    flex: none;
    width: 100%;
    margin: 1.15rem 0 0.5rem;
    font-family: var(--mono);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .nav-menu .langs,
  body.nav-open .nav-menu .langs {
    display: flex !important;
    flex-wrap: nowrap;
    gap: 0;
    width: 100%;
    max-width: 100%;
    margin: 0 !important;
    padding: 0.2rem;
    flex: none;
    align-self: stretch;
    border-radius: 999px;
    background: rgba(14, 18, 24, 0.05);
    border: 1px solid rgba(14, 18, 24, 0.08);
  }
  .nav-menu .langs .lang-thumb {
    background: var(--surface);
    box-shadow: 0 1px 3px rgba(14, 18, 24, 0.08);
  }
  .nav-menu .langs a,
  body.nav-open .nav-menu .langs a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    box-sizing: border-box;
    font-size: 0.78rem;
    font-weight: 650;
    letter-spacing: 0.08em;
    min-height: 2.75rem;
    padding: 0.5rem;
    border: none !important;
    border-radius: 999px;
    background: transparent !important;
    color: var(--muted);
    text-transform: uppercase;
    gap: 0;
  }
  .nav-menu .langs .lang-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .nav-menu .langs .lang-flag {
    display: inline-flex;
    width: 1.35rem;
    height: 1.35rem;
  }
  .nav-menu .langs a:not(.is-active) .lang-flag {
    opacity: 0.42;
  }
  .nav-menu .langs a.is-active,
  body.nav-open .nav-menu .langs a.is-active {
    background: transparent !important;
    color: var(--ink);
    box-shadow: none;
  }
}

@media (min-width: 900px) {
  .nav-toggle { display: none !important; }
  /*
   * Equal item gaps (flex gap) — no per-link min-width (those made word gaps cascade left→right).
   * Shell stays stable across EN/PT/DE via menu min-width sized to the widest label set.
   * Langs + CTA cluster right: margin-left:auto on langs absorbs middle space (DOM has CTA before langs).
   */
  .nav-menu {
    flex: 1;
    gap: 0.5rem;
    min-width: 36.5rem;
  }
  .nav-menu > a:not(.cta) {
    order: 0;
    padding-inline: 0.35rem;
    justify-content: center;
  }
  .nav-menu .cta {
    order: 2;
    min-width: 6.85rem;
    justify-content: center;
  }
  /* Equal EN|PT|DE tracks — flush thumb, no trailing empty strip */
  .nav-menu .langs {
    order: 1;
    margin-left: auto;
    display: inline-grid;
    grid-template-columns: repeat(3, minmax(2.4rem, 1fr));
    width: max-content;
    min-width: 0;
    padding: 0;
    overflow: hidden;
  }
  .nav-menu .langs a {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    border-radius: 0;
  }
  .nav-menu .langs .lang-thumb {
    border-radius: 0;
  }
}

/* —— Hero —— cinematic full-bleed (prompt DNA, WN tokens) —— */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  overflow: visible;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #d5dbd8;
  overflow: hidden;
}
.hero-video,
.hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video {
  z-index: 0;
  /* Invisible until playing — hides WebKit Play overlay on paused video */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.hero.has-video .hero-video {
  opacity: 1;
  visibility: visible;
}
.hero-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-enclosure,
.hero-video::-webkit-media-controls-panel,
.hero-video::-webkit-media-controls-overlay-play-button,
.hero-video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
  max-width: 0 !important;
  max-height: 0 !important;
}
.hero-poster {
  z-index: 1;
  transition: opacity 0.9s var(--ease);
}
.hero.has-video .hero-poster { opacity: 0; pointer-events: none; }
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(236,239,237,0.72) 0%, rgba(236,239,237,0.28) 42%, rgba(236,239,237,0.78) 100%),
    linear-gradient(90deg, rgba(236,239,237,0.55) 0%, transparent 55%);
  pointer-events: none;
}

.hero-stage {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 100dvh;
  padding:
    calc(env(safe-area-inset-top) + 5.25rem)
    var(--gutter)
    clamp(1.5rem, 4vw, 2.75rem);
  text-align: right;
}

.hero-stats {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1.25rem, 4vw, 2.75rem);
  padding-block: 1.5rem;
}
.hero-stat {
  text-align: right;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
  transition-delay: calc(0.2s + var(--i) * 0.12s);
}
.hero.is-settled .hero-stat {
  opacity: 1;
  transform: none;
}
.hero-stat-num {
  font-size: clamp(1.55rem, 5vw, 3.35rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hero-stat-num .plus {
  color: var(--accent);
  font-size: 0.5em;
  vertical-align: super;
  margin-right: 0.05em;
}
.hero-stat-label {
  margin-top: 0.35rem;
  font-size: clamp(0.62rem, 1.4vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.25;
  color: var(--ink);
}

.hero-bottom {
  display: flex;
  flex-direction: column;
  gap: clamp(1.35rem, 3.5vw, 2.75rem);
}
.hero-row-a,
.hero-row-b {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}
.hero-row-a { align-items: center; }

.hero-tag {
  max-width: 11rem;
  font-size: clamp(0.62rem, 1.35vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.45;
  color: var(--ink);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  transition-delay: 0.45s;
}
.hero.is-settled .hero-tag { opacity: 1; transform: none; }

.hero-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-size: clamp(1rem, 2.4vw, 1.55rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), color 0.2s var(--ease);
  transition-delay: 0.55s;
}
.hero.is-settled .hero-cta-link { opacity: 1; transform: none; }
.hero-cta-link:hover { color: var(--accent-ink); }
.hero-cta-link:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

.hero-desc {
  width: min(100%, 17rem);
  flex-shrink: 0;
  font-size: clamp(0.58rem, 1.25vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.45;
  text-align: right;
  color: var(--ink);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  transition-delay: 0.62s;
}
.hero.is-settled .hero-desc { opacity: 1; transform: none; }

.hero-display {
  margin: 0;
  text-align: right;
  font-size: clamp(2.35rem, 9.5vw, 7.5rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.04em;
  /* no forced uppercase — PT diacritics (ã) render correctly in native case */
  padding-top: 0.12em;
}
.hero-line {
  display: block;
  /* clip-path (not overflow:hidden) so PT diacritics like Ã stay intact */
  clip-path: inset(110% 0 -0.25em 0);
  transition: clip-path 0.75s var(--ease);
  transition-delay: calc(0.38s + var(--i) * 0.14s);
}
.hero.is-settled .hero-line {
  clip-path: inset(-0.9em 0 -0.25em 0);
}
.hero-line > span {
  display: block;
  line-height: 1.12;
}
.hero-display .accent { color: var(--accent); }

@media (max-width: 720px) {
  /* Keep desktop’s right-edge editorial DNA — don’t dump everything left */
  .hero-stage {
    padding-top: calc(env(safe-area-inset-top) + 4.5rem);
    padding-bottom: max(1.35rem, env(safe-area-inset-bottom));
  }
  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(236,239,237,0.78) 0%, rgba(236,239,237,0.3) 42%, rgba(236,239,237,0.84) 100%),
      linear-gradient(90deg, rgba(236,239,237,0.28) 0%, transparent 58%);
  }
  .hero-stats {
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 0.5rem;
    align-items: flex-start;
    padding-block: 0.75rem 0.25rem;
  }
  .hero-stat {
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
  }
  .hero-stat-label {
    letter-spacing: 0.1em;
    font-size: 0.58rem;
  }
  .hero-bottom { gap: 1.15rem; }
  .hero-row-a {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    gap: 0.75rem;
  }
  .hero-row-b {
    flex-direction: column;
    align-items: flex-end;
    gap: 0.7rem;
  }
  .hero-tag {
    max-width: 11rem;
    text-align: left;
  }
  .hero-cta-link {
    min-height: 2.75rem;
    white-space: normal;
    line-height: 1.25;
    text-align: right;
    flex-shrink: 0;
  }
  .hero-desc {
    text-align: right;
    width: min(100%, 18.5rem);
    margin-left: auto;
  }
  .hero-display {
    text-align: right;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none !important; }
  .hero-poster { opacity: 1 !important; }
  .hero-stat,
  .hero-tag,
  .hero-cta-link,
  .hero-desc {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-line {
    clip-path: inset(-0.9em 0 -0.25em 0) !important;
    transition: none !important;
  }
  .work-lane.is-pulse,
  .svc-node,
  .chat-bubble { animation: none !important; opacity: 1 !important; transform: none !important; }
  .pedro-bubble { opacity: 1 !important; transform: none !important; animation: none !important; }
  .pedro-typing { display: none !important; }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.4rem; min-height: 2.75rem; padding: 0.65rem 1.2rem;
  border-radius: 999px; font-weight: 600; font-size: 0.9rem;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.btn:active { transform: scale(0.98); }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.btn-primary { background: var(--accent); color: #f7f8f7; }
.btn-primary:hover { background: var(--accent-ink); }
.btn-ghost {
  color: var(--ink);
  border: 1px solid var(--border);
  background: transparent;
}
.btn-ghost:hover { background: rgba(14,18,20,0.04); border-color: rgba(14,18,20,0.2); }

/* —— Trust —— */
.trust {
  border-block: 1px solid var(--border);
  background: var(--surface);
  padding: 1.15rem 0;
}
.trust-row {
  display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem;
  align-items: baseline; justify-content: space-between;
}
.trust-item {
  display: flex; flex-direction: column; gap: 0.15rem;
}
.trust-item strong {
  font-family: var(--mono);
  font-size: 1.15rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.trust-item span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.35;
}

/* —— Ecosystem — parent studio rail (not 3 cards) —— */
.ecosystem {
  padding: clamp(3.25rem, 7vw, 5.5rem) 0;
  border-bottom: 1px solid var(--border);
}
.eco-head { max-width: 40rem; margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem); }
.eco-kicker {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}
.eco-head h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.45rem);
  font-weight: 650;
  letter-spacing: -0.028em;
  line-height: 1.15;
  text-wrap: balance;
  margin-bottom: 0.75rem;
}
.eco-head p { color: var(--muted); max-width: 48ch; line-height: 1.55; }
.eco-rail {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--border);
}
.eco-rail li {
  display: flex;
  min-height: 6.5rem;
  position: relative;
}
.eco-rail li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
  pointer-events: none;
}
.eco-rail a {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.45rem;
  width: 100%;
  padding: 1.35rem 1.1rem 1.45rem;
  min-height: 6.5rem;
  box-shadow: none;
  transition: background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.eco-rail a:hover,
.eco-rail a:focus-visible {
  background: rgba(14, 18, 20, 0.03);
  box-shadow: 0 6px 20px rgba(14, 18, 24, 0.08);
  outline: none;
}
.eco-rail a:focus-visible {
  box-shadow:
    0 6px 20px rgba(14, 18, 24, 0.08),
    0 0 0 2px var(--accent);
}
.eco-domain {
  font-family: var(--mono);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.eco-role {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.4;
  max-width: 18ch;
}
.eco-rail a::after {
  content: "↗";
  margin-top: auto;
  font-size: 0.85rem;
  color: var(--accent);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.eco-rail a:hover::after { opacity: 1; transform: none; }
@media (max-width: 800px) {
  .eco-rail { grid-template-columns: 1fr; }
  .eco-rail li { min-height: 0; border-bottom: 1px solid var(--border); }
  .eco-rail li:not(:last-child)::after { display: none; }
  .eco-rail li:last-child { border-bottom: none; }
  .eco-rail a {
    padding: 1.15rem 0;
    min-height: 0;
  }
}

/* —— Sections —— */
section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section-head {
  max-width: 38rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.section-head h2 {
  font-size: clamp(1.85rem, 3.6vw, 2.85rem);
  font-weight: 650;
  letter-spacing: -0.028em;
  line-height: 1.12;
  text-wrap: balance;
  margin-bottom: 0.75rem;
}
.section-head p {
  color: var(--muted);
  max-width: 48ch;
  line-height: 1.55;
}

/* Work — Pedro phone mockup (same asset as pedro.chat) */
.work-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.work-visual {
  border-radius: var(--r);
  background: transparent;
  min-height: 0;
  position: sticky;
  top: 5.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  overflow: visible;
}
.pedro-phone {
  position: relative;
  width: min(100%, 22rem);
  margin-inline: auto;
}
.pedro-phone-img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  filter:
    drop-shadow(0 18px 40px rgba(14, 18, 24, 0.14))
    drop-shadow(0 0 0.4px rgba(14, 18, 24, 0.35));
}
/* Screen map from Pedro WhatsAppDemo — phone_hand 933×1652 */
.pedro-phone-header {
  position: absolute;
  z-index: 2;
  left: 28%;
  width: 38%;
  top: 5.58%;
  height: 3.67%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 0.15rem;
  /* Covers baked-in header text only — no extra panel */
  background: #f6f6f6;
  pointer-events: none;
}
.pedro-phone-name {
  font-size: clamp(0.55rem, 1.4vw, 0.72rem);
  font-weight: 650;
  line-height: 1;
  color: #111b21;
}
.pedro-phone-online {
  margin-top: 0.12rem;
  font-size: clamp(0.45rem, 1.1vw, 0.58rem);
  line-height: 1;
  color: #25d366;
}
.pedro-phone-chat {
  position: absolute;
  z-index: 1;
  left: 15.433%;
  width: 60.772%;
  top: 9.08%;
  bottom: 34.5%;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.35rem;
  padding: 0.35rem 0.45rem 0.3rem;
  /* Transparent — wallpaper lives in the phone PNG */
  background: transparent;
  scrollbar-width: none;
}
.pedro-phone-chat::-webkit-scrollbar { display: none; }
.pedro-bubble {
  max-width: 88%;
  padding: 0.4rem 0.55rem 0.3rem;
  border-radius: 0.7rem;
  font-size: clamp(0.58rem, 1.35vw, 0.72rem);
  line-height: 1.35;
  color: #111b21;
  box-shadow: 0 1px 1px rgba(0,0,0,0.06);
  opacity: 0;
  transform: translateY(6px);
  animation: bubbleIn 0.28s var(--ease) forwards;
}
.pedro-bubble.agent {
  align-self: flex-start;
  background: #fff;
  border-top-left-radius: 0.2rem;
}
.pedro-bubble.user {
  align-self: flex-end;
  background: #d9fdd3;
  border-top-right-radius: 0.2rem;
}
.pedro-bubble .t {
  display: block;
  margin-top: 0.15rem;
  text-align: right;
  font-size: 0.55em;
  color: #667781;
}
.pedro-typing {
  align-self: flex-start;
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.55rem 0.7rem;
  border-radius: 0.7rem;
  border-top-left-radius: 0.2rem;
  background: #fff;
  box-shadow: 0 1px 1px rgba(0,0,0,0.06);
}
.pedro-typing i {
  width: 0.28rem; height: 0.28rem; border-radius: 50%;
  background: #667781; opacity: 0.55;
  animation: typeDot 1s ease infinite;
}
.pedro-typing i:nth-child(2) { animation-delay: 0.15s; }
.pedro-typing i:nth-child(3) { animation-delay: 0.3s; }
@keyframes bubbleIn {
  to { opacity: 1; transform: none; }
}
@keyframes typeDot {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
  40% { transform: translateY(-2px); opacity: 0.85; }
}
.work-story h3 {
  font-size: 1.45rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.work-story p { color: var(--muted); max-width: 42ch; margin-bottom: 1rem; }
.work-tags {
  display: flex; flex-wrap: wrap; gap: 0.45rem;
  margin-top: 1.25rem;
}
.work-tags span {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--accent-ink);
  background: var(--accent-soft); padding: 0.35rem 0.65rem; border-radius: var(--r-sm);
}

@media (max-width: 900px) {
  .work-grid { grid-template-columns: 1fr; }
  .work-visual { position: static; }
  .pedro-phone { width: min(100%, 18.5rem); }
}

/* Flow proof */
.flow {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: var(--r);
  position: relative;
}
.flow-caption {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.1rem;
  /* Reserve 2 lines so Confirm caption never grows the section (CLS) */
  min-height: 2.7em;
  line-height: 1.35;
}
.flow-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  align-items: stretch;
}
.flow-node {
  padding: 0.95rem 0.85rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: var(--canvas);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
  min-height: 5.1rem;
}
.flow-node.is-active {
  border-color: rgba(37, 152, 255, 0.5);
  background: var(--accent-soft);
}
.flow-node strong {
  display: block; font-size: 0.82rem; font-weight: 650; margin-bottom: 0.25rem;
}
.flow-node span { font-size: 0.75rem; color: var(--muted); line-height: 1.35; }
@media (max-width: 800px) {
  .flow-track { grid-template-columns: 1fr 1fr; }
  .flow-node { min-height: 5.4rem; }
}

/* Process filmstrip */
.process-shell {
  position: relative;
}
.process-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(11rem, 1fr));
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
}
.process-step {
  scroll-snap-align: start;
  min-width: 11rem;
  padding: 1.1rem 1rem 1.25rem;
  border-top: 2px solid var(--border);
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease), opacity 0.35s var(--ease);
  opacity: 0.55;
}
.process-step:hover { opacity: 0.85; }
.process-step.is-on {
  border-color: var(--accent);
  opacity: 1;
  transform: translateY(-3px);
}
.process-step strong {
  display: block; font-size: 1rem; font-weight: 650;
  letter-spacing: -0.01em; margin-bottom: 0.45rem;
}
.process-step p { font-size: 0.86rem; color: var(--muted); line-height: 1.45; }
.process-edge,
.process-dots { display: none; }

/* Services zig-zag */
.svc {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  padding-block: 2.25rem;
  border-top: 1px solid var(--border);
}
.svc:nth-child(even) { grid-template-columns: 1.15fr 1fr; }
.svc:nth-child(even) .svc-copy { order: 2; }
.svc h3 {
  font-size: 1.55rem; font-weight: 650; letter-spacing: -0.02em; margin-bottom: 0.55rem;
}
.svc p { color: var(--muted); max-width: 42ch; }
.svc-panel {
  min-height: 12rem;
  border-radius: var(--r);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
.svc-panel.is-flow {
  background: linear-gradient(145deg, #f4f8fd, #e8f1fb);
}
.svc-panel.is-chat {
  background: #0b141a;
  padding: 0.85rem;
  height: 16rem;
  min-height: 16rem;
  max-height: 16rem;
}
.svc-anim {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  padding: 1.25rem;
}
.svc-nodes {
  display: flex; align-items: center; gap: 0.55rem; flex-wrap: wrap; justify-content: center;
}
.svc-node {
  padding: 0.55rem 0.75rem;
  border-radius: var(--r-sm);
  background: #fff;
  border: 1px solid rgba(37,152,255,0.25);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-ink);
  animation: nodeBlink 3.2s var(--ease) infinite;
}
.svc-node:nth-child(2) { animation-delay: 0.4s; }
.svc-node:nth-child(3) { animation-delay: 0.8s; }
.svc-arrow {
  color: var(--accent); font-weight: 700; opacity: 0.7;
}
@keyframes nodeBlink {
  0%, 100% { transform: translateY(0); box-shadow: none; }
  40% { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(37,152,255,0.18); }
}

/* Mini WhatsApp panel (services) */
.mini-wa {
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  border-radius: var(--r);
  overflow: hidden;
  background: #efeae2;
  border: 1px solid rgba(255,255,255,0.08);
}
.mini-wa-bar {
  display: flex; align-items: center; gap: 0.55rem;
  padding: 0.55rem 0.7rem;
  background: #1f2c34;
  color: #e9edef;
}
.mini-wa-avatar {
  width: 1.55rem; height: 1.55rem; border-radius: 50%;
  background: linear-gradient(145deg, #2598ff, #0b5cad);
  flex-shrink: 0;
}
.mini-wa-bar strong {
  display: block; font-size: 0.78rem; font-weight: 650; line-height: 1.1;
}
.mini-wa-bar em {
  display: block; font-style: normal; font-size: 0.62rem;
  color: #25d366; margin-top: 0.1rem;
}
.mini-wa-msgs {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.4rem;
  padding: 0.65rem 0.6rem 0.75rem;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.mini-wa-msgs::-webkit-scrollbar { display: none; }
.mini-bubble {
  max-width: 88%;
  padding: 0.45rem 0.6rem 0.35rem;
  border-radius: 0.65rem;
  font-size: 0.72rem;
  line-height: 1.35;
  color: #111b21;
  box-shadow: 0 1px 1px rgba(0,0,0,0.06);
  opacity: 0;
  transform: translateY(8px);
  animation: bubbleIn 0.3s var(--ease) forwards;
}
.mini-bubble.agent {
  align-self: flex-start;
  background: #fff;
  border-top-left-radius: 0.15rem;
}
.mini-bubble.user {
  align-self: flex-end;
  background: #d9fdd3;
  border-top-right-radius: 0.15rem;
}
.mini-bubble .t {
  display: block; margin-top: 0.15rem; text-align: right;
  font-size: 0.58em; color: #667781;
}
.mini-typing {
  align-self: flex-start;
  display: inline-flex; gap: 0.22rem;
  padding: 0.55rem 0.7rem;
  border-radius: 0.65rem;
  border-top-left-radius: 0.15rem;
  background: #fff;
  box-shadow: 0 1px 1px rgba(0,0,0,0.06);
}
.mini-typing i {
  width: 0.28rem; height: 0.28rem; border-radius: 50%;
  background: #667781; opacity: 0.5;
  animation: typeDot 1s ease infinite;
}
.mini-typing i:nth-child(2) { animation-delay: 0.15s; }
.mini-typing i:nth-child(3) { animation-delay: 0.3s; }
/* Websites panel — light browser mock */
.svc-panel.is-web {
  background: linear-gradient(155deg, #f4f8fd 0%, #e9f0f8 55%, #f7f9fc 100%);
  padding: 1rem;
  min-height: 15rem;
}
.svc-web {
  height: 100%;
  display: grid;
  place-items: stretch;
}
.svc-web-browser {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 13rem;
  border-radius: var(--r);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(14, 18, 24, 0.1);
  box-shadow: 0 14px 32px rgba(14, 18, 24, 0.08);
}
.svc-web-bar {
  display: flex;
  align-items: center;
  gap: 0.22rem;
  padding: 0.5rem 0.65rem;
  background: #eef1f5;
  border-bottom: 1px solid var(--border);
}
.svc-web-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #c8d0da;
}
.svc-web-dot:first-child { background: #ff5f57; }
.svc-web-dot:nth-child(2) { background: #febc2e; }
.svc-web-dot:nth-child(3) { background: #28c840; }
.svc-web-url {
  margin-left: 0.45rem;
  flex: 1;
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.22rem 0.55rem;
}
.svc-web-page {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0.65rem 0.75rem 0.75rem;
  background: linear-gradient(180deg, #fafbfc, #f3f6fa);
}
.svc-web-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.7rem;
}
.svc-web-logo {
  display: block;
  width: 3.2rem;
  height: 0.45rem;
  border-radius: 2px;
  background: var(--ink);
  opacity: 0.85;
}
.svc-web-links {
  display: block;
  width: 4.5rem;
  height: 0.32rem;
  border-radius: 2px;
  background: rgba(14, 18, 24, 0.12);
}
.svc-web-hero {
  display: grid;
  gap: 0.38rem;
  padding: 0.55rem 0.5rem 0.65rem;
  margin-bottom: 0.55rem;
  border-radius: var(--r-sm);
  background:
    linear-gradient(135deg, rgba(37, 152, 255, 0.1), transparent 60%),
    #fff;
  border: 1px solid rgba(37, 152, 255, 0.14);
}
.svc-web-kicker {
  display: block;
  width: 2.8rem;
  height: 0.28rem;
  border-radius: 2px;
  background: rgba(37, 152, 255, 0.35);
  animation: webPulse 3.6s var(--ease) infinite;
}
.svc-web-headline {
  display: block;
  width: 72%;
  height: 0.5rem;
  border-radius: 2px;
  background: rgba(14, 18, 24, 0.78);
}
.svc-web-line {
  display: block;
  width: 58%;
  height: 0.32rem;
  border-radius: 2px;
  background: rgba(14, 18, 24, 0.14);
}
.svc-web-cta {
  display: block;
  width: 2.6rem;
  height: 0.55rem;
  margin-top: 0.15rem;
  border-radius: var(--r-sm);
  background: var(--accent);
  animation: webCtaGlow 3.6s var(--ease) infinite;
}
.svc-web-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  margin-top: auto;
}
.svc-web-grid span {
  display: block;
  height: 2.1rem;
  border-radius: var(--r-sm);
  background: #fff;
  border: 1px solid var(--border);
  animation: webBlockIn 3.6s var(--ease) infinite;
}
.svc-web-grid span:nth-child(2) { animation-delay: 0.35s; }
.svc-web-grid span:nth-child(3) { animation-delay: 0.7s; }
@keyframes webPulse {
  0%, 100% { opacity: 0.55; }
  45% { opacity: 1; }
}
@keyframes webCtaGlow {
  0%, 100% { box-shadow: none; transform: scale(1); }
  45% { box-shadow: 0 4px 14px rgba(37, 152, 255, 0.35); transform: scale(1.03); }
}
@keyframes webBlockIn {
  0%, 100% { border-color: var(--border); }
  45% { border-color: rgba(37, 152, 255, 0.35); }
}

/* Business consulting — centered band */
.svc-consult {
  margin-top: 0.25rem;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 0.5rem;
  border-top: 1px solid var(--border);
}
.svc-consult-inner {
  max-width: 38rem;
  margin-inline: auto;
  text-align: center;
}
.svc-consult-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
}
.svc-consult-rule::before,
.svc-consult-rule::after {
  content: "";
  flex: 1;
  max-width: 5.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 152, 255, 0.45));
}
.svc-consult-rule::after {
  background: linear-gradient(90deg, rgba(37, 152, 255, 0.45), transparent);
}
.svc-consult-rule span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(37, 152, 255, 0.14);
}
.svc-consult h3 {
  font-size: clamp(1.45rem, 2.8vw, 1.75rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  margin-bottom: 0.65rem;
}
.svc-consult p {
  color: var(--muted);
  margin-inline: auto;
  max-width: 44ch;
  line-height: 1.6;
}
.svc-consult-motif {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.65rem;
  padding: 0.85rem 1rem;
  border-radius: var(--r);
  background: var(--surface);
  border: 1px solid var(--border);
}
.svc-consult-phase {
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  min-width: 4.5rem;
}
.svc-consult-node {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgba(14, 18, 24, 0.14);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.svc-consult-phase.is-active .svc-consult-node {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(37, 152, 255, 0.16);
  animation: consultPulse 2.8s var(--ease) infinite;
}
.svc-consult-phase em {
  font-style: normal;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.svc-consult-phase.is-active em { color: var(--accent-ink); }
.svc-consult-connector {
  flex: 0 0 1.75rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(14, 18, 24, 0.08), rgba(37, 152, 255, 0.35), rgba(14, 18, 24, 0.08));
}
@keyframes consultPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

@media (max-width: 800px) {
  .svc, .svc:nth-child(even) { grid-template-columns: 1fr; }
  .svc:nth-child(even) .svc-copy { order: 0; }
  .svc-panel { min-height: 9rem; }
  .svc-panel.is-web { min-height: 12rem; }
  .svc-consult-motif { flex-wrap: wrap; gap: 0.75rem 0.4rem; }
  .svc-consult-connector { flex-basis: 1.25rem; }
  .work-visual { position: static; }
}

/* Nakura band — only dark shift */
.nakura {
  background: #121618;
  color: #e8edef;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  margin-inline: calc(50% - 50vw);
  width: 100vw;
}
.nakura .wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}
.nakura h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.12;
  margin-bottom: 0.75rem;
  text-transform: none;
}
.nakura-kicker {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7ec4ff;
  margin-bottom: 0.75rem !important;
}
.nakura p { color: rgba(232,237,239,0.72); max-width: 46ch; margin-bottom: 1.1rem; line-height: 1.55; }
.nakura-steps {
  list-style: none;
  display: grid;
  gap: 0.45rem;
  margin: 0 0 1.35rem;
  padding: 0;
}
.nakura-steps li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.88rem;
  color: rgba(232,237,239,0.88);
  counter-increment: nk;
}
.nakura-steps { counter-reset: nk; }
.nakura-steps li::before {
  content: counter(nk);
  position: absolute; left: 0; top: 0.05rem;
  width: 1.15rem; height: 1.15rem;
  border-radius: 50%;
  background: rgba(37,152,255,0.25);
  color: #9fd0ff;
  font-size: 0.65rem;
  font-weight: 700;
  display: grid; place-items: center;
  font-family: var(--mono);
}
.nakura .btn-primary { background: #e8edef; color: #121618; }
.nakura .btn-primary:hover { background: #fff; }
.nakura-frame {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid rgba(232,237,239,0.12);
  min-height: 16rem;
  background: linear-gradient(145deg, #1a222c, #10151c);
  display: grid;
  place-items: stretch;
  padding: 1rem;
}
.nakura-browser {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #0c1016;
  border: 1px solid rgba(232,237,239,0.1);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}
.nakura-browser-bar {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.55rem 0.7rem;
  background: #161c24;
  border-bottom: 1px solid rgba(232,237,239,0.06);
}
.nakura-preview-dot {
  display: inline-block;
  width: 0.42rem; height: 0.42rem; border-radius: 50%;
  background: #3d4650; margin-right: 0.2rem;
}
.nakura-preview-dot:first-child { background: #ff5f57; }
.nakura-preview-dot:nth-child(2) { background: #febc2e; }
.nakura-preview-dot:nth-child(3) { background: #28c840; }
.nakura-browser-url {
  margin-left: 0.55rem;
  flex: 1;
  font-family: var(--mono);
  font-size: 0.62rem;
  color: rgba(232,237,239,0.45);
  background: rgba(255,255,255,0.04);
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
}
.nakura-site {
  background: #f3f0eb;
  color: #1a1814;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.nakura-site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid rgba(26,24,20,0.08);
  font-size: 0.68rem;
}
.nakura-site-nav strong {
  font-size: 0.82rem;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.nakura-site-nav span { color: #6a645c; }
.nakura-site-hero {
  padding: 1.1rem 0.85rem 1rem;
  background:
    linear-gradient(160deg, rgba(37,152,255,0.12), transparent 55%),
    linear-gradient(180deg, #ebe6df, #f3f0eb);
}
.nakura-site-kicker {
  margin: 0 0 0.35rem !important;
  max-width: none !important;
  font-family: var(--mono) !important;
  font-size: 0.58rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2598ff !important;
}
.nakura-site-hero h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #1a1814;
}
.nakura-site-hero p {
  margin: 0 0 0.85rem !important;
  max-width: none !important;
  font-size: 0.72rem !important;
  color: #6a645c !important;
  line-height: 1.4 !important;
}
.nakura-site-cta {
  display: inline-block;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: #2598ff;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 650;
}
.nakura-site-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(26,24,20,0.08);
  border-top: 1px solid rgba(26,24,20,0.08);
}
.nakura-site-row > div {
  background: #f3f0eb;
  padding: 0.7rem 0.55rem;
  display: grid;
  gap: 0.2rem;
}
.nakura-site-row em {
  font-style: normal;
  font-size: 0.62rem;
  color: #6a645c;
}
.nakura-site-row b {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.nakura-prompt {
  margin: 0 !important;
  max-width: none !important;
  padding: 0.55rem 0.75rem !important;
  font-size: 0.68rem !important;
  color: rgba(232,237,239,0.5) !important;
  font-style: italic;
  line-height: 1.35 !important;
  background: #0c1016;
  border-top: 1px solid rgba(232,237,239,0.06);
}
@media (max-width: 800px) {
  .nakura .wrap { grid-template-columns: 1fr; }
}

/* Reviews */
.reviews-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}
.quote-big {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.35;
  text-wrap: pretty;
  margin-bottom: 1.25rem;
}
.quote-meta { font-size: 0.88rem; color: var(--muted); }
.quote-meta strong { color: var(--ink); }
.rail {
  display: flex; flex-direction: column; gap: 0.85rem;
}
.rail article {
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--elevated);
}
.rail article p {
  font-size: 0.92rem; line-height: 1.45; margin-bottom: 0.65rem;
}
.rail article span { font-size: 0.78rem; color: var(--muted); }
@media (max-width: 800px) {
  .reviews-layout { grid-template-columns: 1fr; }
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2rem;
}
.faq-item h3 {
  font-size: 1.02rem; font-weight: 650; letter-spacing: -0.01em; margin-bottom: 0.4rem;
}
.faq-item p { font-size: 0.92rem; color: var(--muted); line-height: 1.5; }
@media (max-width: 800px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* Contact */
.contact-island {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: calc(var(--r) + 2px);
}
.contact-island h2 {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.1;
  margin-bottom: 0.65rem;
}
.contact-island .lead { color: var(--muted); max-width: 36ch; margin-bottom: 1.25rem; }
.contact-form {
  display: grid; gap: 0.75rem;
}
.contact-form label {
  display: grid; gap: 0.35rem;
  font-size: 0.78rem; font-weight: 600; color: var(--muted);
}
.contact-form input,
.contact-form textarea {
  width: 100%; padding: 0.75rem 0.85rem;
  border: 1px solid var(--border); border-radius: var(--r-sm);
  background: var(--canvas); color: var(--ink); font: inherit; font-size: 1rem;
  min-height: 2.75rem;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--accent); outline-offset: 1px;
}
.contact-form textarea { min-height: 7rem; resize: vertical; }
.contact-turnstile {
  min-height: 65px;
  display: flex;
  align-items: flex-start;
}
.contact-status {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--muted);
}
.contact-status[data-kind="ok"] { color: var(--accent-ink); }
.contact-status[data-kind="error"] { color: #9b2c2c; }
.contact-status[data-kind="info"] { color: var(--muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
@media (max-width: 800px) {
  .contact-island, .form-row { grid-template-columns: 1fr; }
}

/* Footer */
.footer {
  padding: 2.5rem 0 6rem;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 0;
  overflow: visible;
}
.footer-row {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; align-items: center;
}
.footer strong { font-weight: 700; letter-spacing: -0.02em; }
.footer-links { display: flex; flex-wrap: wrap; gap: 0.85rem 1.15rem; }
.footer-links a {
  font-size: 0.84rem; color: var(--muted);
  transition: color 0.2s var(--ease);
}
.footer-links a:hover { color: var(--ink); }
.footer-links a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* Cities drop — opens upward; calm stone + #2598FF (mirrors chrome.css) */
.cities-drop {
  --drop-ease: cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  z-index: 6;
  margin-top: 1.35rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border);
  width: 100%;
}
.cities-drop__bar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 0.75rem 1rem;
}
.cities-drop__label {
  margin: 0; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
}
.cities-drop__trigger {
  display: inline-flex; align-items: center; gap: 0.55rem;
  min-height: 2.35rem; padding: 0.4rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 6px; background: #fff;
  color: var(--ink); font: inherit; font-size: 0.88rem; font-weight: 600;
  cursor: pointer; touch-action: manipulation;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.cities-drop__trigger:hover {
  border-color: color-mix(in srgb, var(--accent) 42%, var(--border));
  color: var(--accent-ink, #0b5cad);
}
.cities-drop__trigger:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.cities-drop.is-open .cities-drop__trigger {
  border-color: color-mix(in srgb, var(--accent) 48%, var(--border));
  background: color-mix(in srgb, var(--accent) 7%, #fff);
}
.cities-drop__chev {
  width: 0.5rem; height: 0.5rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(-135deg);
  opacity: 0.65;
  transition: transform 0.28s var(--drop-ease), opacity 0.2s ease;
  flex-shrink: 0;
}
.cities-drop.is-open .cities-drop__chev {
  transform: rotate(45deg);
  opacity: 0.9;
}
.cities-drop__panel {
  position: absolute;
  left: 0; right: 0;
  bottom: calc(100% + 0.55rem);
  z-index: 7;
  padding: 1.05rem 1.1rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #f4f6f8;
  box-shadow: 0 -10px 36px rgba(14, 18, 24, 0.08);
  opacity: 0;
  transform: translateY(0.45rem);
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 0.26s var(--drop-ease),
    transform 0.3s var(--drop-ease),
    visibility 0s linear 0.3s;
}
.cities-drop.is-open .cities-drop__panel {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  visibility: visible;
  transition:
    opacity 0.26s var(--drop-ease),
    transform 0.3s var(--drop-ease),
    visibility 0s;
}
.cities-drop__sr {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.cities-drop__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.5rem;
}
.cities-drop__region {
  margin: 0 0 0.4rem; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted);
}
.cities-drop__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 0.1rem;
}
.cities-drop__list a {
  display: block; padding: 0.4rem 0.5rem; margin: 0 -0.5rem;
  border-radius: 5px; color: var(--ink); font-weight: 500; font-size: 0.94rem;
  opacity: 0; transform: translateY(0.25rem);
  transition:
    background 0.18s ease, color 0.18s ease,
    opacity 0.28s var(--drop-ease), transform 0.28s var(--drop-ease);
  transition-delay: 0s;
}
.cities-drop.is-open .cities-drop__list a {
  opacity: 1; transform: none;
  transition-delay: calc(0.06s + var(--i, 0) * 0.03s);
}
.cities-drop__list a:hover {
  background: color-mix(in srgb, var(--accent) 9%, transparent);
  color: var(--accent-ink, #0b5cad);
}
.cities-drop__list a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.cities-drop__hub {
  display: inline-flex; margin-top: 0.95rem; font-size: 0.86rem; font-weight: 600;
  color: var(--accent-ink, #0b5cad);
  opacity: 0; transform: translateY(0.2rem);
  transition: opacity 0.28s var(--drop-ease), transform 0.28s var(--drop-ease), color 0.18s ease;
}
.cities-drop.is-open .cities-drop__hub {
  opacity: 1; transform: none; transition-delay: 0.16s;
}
.cities-drop__hub:hover { color: var(--ink); }
.cities-drop__noscript {
  display: flex; flex-wrap: wrap; gap: 0.5rem 0.85rem; margin-top: 0.75rem; font-size: 0.86rem;
}
@media (max-width: 560px) {
  .cities-drop__grid { grid-template-columns: 1fr; gap: 0.95rem; }
  .cities-drop__bar { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  .cities-drop__panel,
  .cities-drop__chev,
  .cities-drop__list a,
  .cities-drop__hub,
  .cities-drop__trigger {
    transition: none !important;
  }
  .cities-drop__panel { transform: none; opacity: 0; }
  .cities-drop.is-open .cities-drop__panel { opacity: 1; }
  .cities-drop__list a,
  .cities-drop__hub { opacity: 1; transform: none; transition-delay: 0s !important; }
}

.float-cta {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: var(--z-float);
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.7rem 1.05rem; border-radius: 999px;
  min-height: 2.75rem;
  background: var(--accent); color: #f4f6f5; font-weight: 600; font-size: 0.88rem;
  box-shadow: 0 12px 32px rgba(37, 152, 255, 0.28);
  transition: transform 0.25s var(--ease), background 0.2s var(--ease), opacity 0.3s var(--ease), visibility 0.3s;
}
.float-cta.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
}
body.lang-prompt-open .float-cta {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.float-cta:hover { background: var(--accent-ink); transform: translateY(-1px); }
.float-cta:active { transform: scale(0.98); }
.float-cta:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

/* Reveal — FadeContent-style */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(2px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease),
    filter 0.75s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.visible {
  opacity: 1;
  transform: none;
  filter: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .hero-visual img { transform: none !important; }
  .work-visual { position: static; }
  .process-step { opacity: 1; transform: none; }
  .process-edge { display: none !important; }
}

/* —— Mobile polish (≤899 / ≤480) —— */
@media (max-width: 899px) {
  .trust-row { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .process-shell {
    margin-inline: calc(-1 * var(--gutter));
    padding-inline: var(--gutter);
  }
  .process-rail {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-padding-inline: var(--gutter);
    padding-bottom: 0.85rem;
    padding-right: 1.25rem;
  }
  .process-rail::-webkit-scrollbar { display: none; }
  .process-step {
    flex: 0 0 min(78vw, 17.5rem);
    min-width: min(78vw, 17.5rem);
    max-width: min(78vw, 17.5rem);
  }
  .process-edge {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 2.1rem;
    width: clamp(2.25rem, 10vw, 3.25rem);
    pointer-events: none;
    background: linear-gradient(
      90deg,
      rgba(238, 241, 245, 0) 0%,
      rgba(238, 241, 245, 0.72) 45%,
      var(--canvas) 100%
    );
    transition: opacity 0.35s var(--ease);
  }
  .process-shell.is-end .process-edge { opacity: 0; }
  .process-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 0.15rem;
  }
  .process-dot {
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 999px;
    background: rgba(14, 18, 24, 0.18);
    padding: 0;
    transition:
      width 0.3s var(--ease),
      background 0.3s var(--ease),
      transform 0.3s var(--ease);
  }
  .process-dot.is-on {
    width: 1.05rem;
    background: var(--accent);
  }
  .process-dot:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
  }
  .nakura .wrap { gap: 1.5rem; }
  .nakura-frame { min-height: 12rem; padding: 0.75rem; }
  .nakura-browser-url { font-size: 0.55rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .nakura-site-nav { flex-wrap: wrap; gap: 0.35rem; font-size: 0.62rem; }
  .nakura-site-row { grid-template-columns: 1fr; }
  .footer { padding-bottom: calc(4rem + env(safe-area-inset-bottom)); }
  body.nav-open .float-cta { opacity: 0; visibility: hidden; pointer-events: none; }
  .float-cta {
    bottom: max(0.5rem, env(safe-area-inset-bottom));
    padding: 0.55rem 0.95rem;
    min-height: 2.5rem;
    font-size: 0.8125rem;
    gap: 0.3rem;
    box-shadow: 0 6px 16px rgba(37, 152, 255, 0.16);
  }
}

@media (max-width: 480px) {
  .hero-display {
    font-size: clamp(2.35rem, 12.5vw, 3.15rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
  }
  .float-cta {
    left: 0;
    right: 0;
    margin-inline: auto;
    width: fit-content;
    max-width: calc(100% - 2 * max(var(--gutter), env(safe-area-inset-left)));
  }
  .pedro-phone { width: min(100%, 17rem); }
  .svc-panel.is-chat {
    height: 14rem;
    min-height: 14rem;
    max-height: 14rem;
  }
  .faq-item { padding-block: 0.15rem; }
}

/* Browser-language soft prompt — no hard redirect */
.lang-prompt {
  position: fixed;
  inset: 0;
  z-index: var(--z-lang-prompt);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.32s var(--ease);
}
.lang-prompt.is-visible {
  pointer-events: auto;
  opacity: 1;
}
.lang-prompt__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 18, 24, 0.22);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lang-prompt__card {
  position: relative;
  width: min(100%, 22rem);
  padding: 1.15rem 1.2rem 1.1rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: 0 16px 40px rgba(14, 18, 24, 0.12), 0 0 0 1px rgba(14, 18, 24, 0.04);
  transform: translateY(10px) scale(0.98);
  transition: transform 0.34s var(--ease);
}
.lang-prompt.is-visible .lang-prompt__card {
  transform: translateY(0) scale(1);
}
.lang-prompt__title {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.lang-prompt__actions {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}
.lang-prompt__btn {
  flex: 1 1 0;
  min-height: 2.75rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.15s var(--ease);
}
.lang-prompt__btn--primary {
  border: none;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 18px rgba(37, 152, 255, 0.22);
}
.lang-prompt__btn--primary:hover { background: var(--accent-ink); }
.lang-prompt__btn--ghost {
  border: 1px solid rgba(14, 18, 24, 0.12);
  background: rgba(255, 255, 255, 0.65);
  color: var(--ink);
}
.lang-prompt__btn--ghost:hover { background: rgba(14, 18, 24, 0.05); }
.lang-prompt__btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .lang-prompt,
  .lang-prompt__card { transition: none; }
  .lang-prompt__card { transform: none; }
}
