:root {
  color-scheme: dark;
  --void: #06040e;
  --night: #0b0718;
  --night-2: #100a22;
  --surface: #17102b;
  --surface-2: #20143a;
  --surface-3: #2a194b;
  --line: rgb(212 190 255 / 0.16);
  --line-strong: rgb(212 190 255 / 0.3);
  --text: #f8f6ff;
  --text-soft: #aaa4bd;
  --white: #ffffff;
  --violet: #8b5cf6;
  --violet-bright: #a970ff;
  --magenta: #df4df4;
  --cyan: #49d9f6;
  --lime: #b9f36a;
  --success: #86ef63;
  --danger: #fb7185;
  --focus: #f8e75b;
  --glow-violet: 0 0 70px rgb(139 92 246 / 0.3);
  --shadow-panel: 0 24px 80px rgb(0 0 0 / 0.42);
  --font-sans: Inter, "SF Pro Display", "SF Pro Text", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --page: min(100% - 3rem, 1240px);
}

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  background: var(--void);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background:
    radial-gradient(circle at 50% -8%, rgb(127 56 210 / 0.18), transparent 24rem),
    var(--void);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body:has(dialog[open]) {
  overflow: hidden;
}

h1,
h2,
h3,
p,
dl,
dd,
dt,
ol {
  margin: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

#main-content:focus,
#main-content:focus-visible {
  outline: none;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--void);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.header-inner,
.hero-inner,
.worlds-section,
.model-section,
.teams-section,
.principles-section,
.faq-section,
.closing-section,
.office-hero-inner,
.office-section,
.office-method,
.office-cta,
.agent-page-inner,
.internal-hero-inner,
.worlds-catalog,
.planned-world-body,
.method-page,
.questions-page,
.question-prompt,
.alliance-page,
.contact-page,
.internal-cta,
.footer-inner {
  width: var(--page);
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  color: var(--text);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  min-height: 96px;
}

.product-brand {
  display: grid;
  grid-template-columns: 42px auto;
  gap: 0.7rem;
  align-items: center;
  text-decoration: none;
}

.wordmark-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgb(169 112 255 / 0.42);
  border-radius: 13px;
  background: linear-gradient(145deg, rgb(137 87 242 / 0.22), rgb(58 32 103 / 0.18));
  color: #c9a9ff;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.1), 0 0 24px rgb(139 92 246 / 0.14);
}

.wordmark-icon img {
  width: 23px;
  height: auto;
  filter: invert(76%) sepia(24%) saturate(1184%) hue-rotate(216deg) brightness(102%);
}

.wordmark-copy {
  display: grid;
  line-height: 0.95;
}

.wordmark-main {
  font-size: 1.06rem;
  font-weight: 850;
  letter-spacing: -0.05em;
}

.wordmark-sub {
  margin-top: 0.32rem;
  color: #9f96af;
  font-family: var(--font-mono);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-self: center;
  gap: 0.15rem;
  padding: 0.38rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(16 10 34 / 0.74);
  box-shadow: 0 18px 40px rgb(0 0 0 / 0.22);
  backdrop-filter: blur(18px);
}

.site-nav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding-inline: 1rem;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgb(255 255 255 / 0.08);
  color: var(--white);
}

.site-nav .mobile-nav-link,
.menu-toggle {
  display: none;
}

.header-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.8rem;
  padding-inline: 1rem;
  border-bottom: 1px solid rgb(255 255 255 / 0.74);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 750;
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease;
}

.header-cta span {
  color: var(--violet-bright);
  font-size: 1.15rem;
}

.header-cta:hover {
  border-color: var(--violet-bright);
  color: #dac8fb;
}

.alliance-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #c8c1d8;
  font-size: 0.7rem;
  font-weight: 700;
}

.alliance-tag span,
.section-label > span {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 14px rgb(185 243 106 / 0.72);
}

.hero {
  position: relative;
  min-height: 1000px;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 15% 20%, rgb(214 58 203 / 0.18), transparent 25rem),
    radial-gradient(circle at 85% 18%, rgb(71 48 184 / 0.23), transparent 30rem),
    linear-gradient(180deg, #080512 0%, #070511 62%, #0c071b 100%);
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.032) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000 8%, transparent 75%);
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: -24rem;
  left: 50%;
  width: 74rem;
  height: 54rem;
  border: 1px solid rgb(191 143 255 / 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 8rem rgb(139 92 246 / 0.025),
    0 0 0 16rem rgb(139 92 246 / 0.018);
  content: "";
  transform: translateX(-50%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  padding-block: 11rem 5rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  text-align: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #c6b7dc;
  font-family: var(--font-mono);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero .section-label {
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.05);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.06);
}

.hero h1 {
  max-width: 18ch;
  margin-top: 1.1rem;
  margin-inline: auto;
  font-size: clamp(2.05rem, 3.4vw, 3.05rem);
  font-weight: 760;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.hero-title-primary {
  color: var(--white);
}

.hero h1 > .hero-title-accent {
  background: linear-gradient(100deg, #ffffff 5%, #d9c1ff 42%, #a970ff 68%, #55d9ef 108%);
  background-clip: text;
  color: transparent;
}

.hero-intro {
  max-width: 650px;
  margin: 1.6rem auto 0;
  color: var(--text-soft);
  font-size: clamp(1.03rem, 1.5vw, 1.2rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.78rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border-color: rgb(207 176 255 / 0.6);
  background: linear-gradient(135deg, #8b5cf6, #b24deb);
  color: var(--white);
  box-shadow: 0 12px 36px rgb(139 92 246 / 0.32), inset 0 1px 0 rgb(255 255 255 / 0.3);
}

.button-primary:hover {
  box-shadow: 0 16px 44px rgb(139 92 246 / 0.48), inset 0 1px 0 rgb(255 255 255 / 0.34);
}

.button-secondary,
.button-text {
  border-color: var(--line-strong);
  background: rgb(255 255 255 / 0.045);
  color: var(--text);
}

.button-secondary:hover,
.button-text:hover {
  border-color: rgb(255 255 255 / 0.34);
  background: rgb(255 255 255 / 0.08);
}

.button-lime {
  width: 100%;
  border-color: rgb(215 255 164 / 0.54);
  background: var(--lime);
  color: #171025;
  box-shadow: 0 12px 30px rgb(185 243 106 / 0.18);
}

.office-map {
  position: relative;
  width: 100%;
  margin-top: 5rem;
  padding: 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background: linear-gradient(145deg, rgb(31 20 55 / 0.86), rgb(11 7 24 / 0.9));
  box-shadow: var(--glow-violet), var(--shadow-panel), inset 0 1px 0 rgb(255 255 255 / 0.09);
  backdrop-filter: blur(18px);
}

.map-header,
.map-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #968dab;
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.map-header {
  min-height: 38px;
  padding-inline: 0.6rem;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--lime);
}

.live-pill i,
.availability i,
.profile-status i,
.office-board i,
.office-legend i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgb(134 239 99 / 0.1), 0 0 14px rgb(134 239 99 / 0.5);
}

.availability[data-availability="demo"] i {
  background: var(--violet-bright);
  box-shadow: 0 0 0 5px rgb(169 112 255 / 0.1);
}

.office-stage {
  position: relative;
  min-height: 540px;
  margin-top: 0.6rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 55%, rgb(139 92 246 / 0.3), transparent 17rem),
    radial-gradient(circle at 12% 15%, rgb(223 77 244 / 0.12), transparent 16rem),
    linear-gradient(180deg, rgb(9 5 20 / 0.66), rgb(14 8 29 / 0.94));
}

.office-stage::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(211 188 255 / 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgb(211 188 255 / 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 50% 50%, #000, transparent 78%);
  content: "";
}

.stage-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 66%;
  height: 56%;
  border: 1px solid rgb(169 112 255 / 0.28);
  border-radius: 50%;
  box-shadow:
    0 0 0 45px rgb(139 92 246 / 0.025),
    0 0 0 90px rgb(139 92 246 / 0.018),
    inset 0 0 60px rgb(139 92 246 / 0.08);
  transform: translate(-50%, -50%);
}

.stage-core {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: grid;
  width: 230px;
  min-height: 156px;
  place-items: center;
  padding: 1rem;
  border: 1px solid rgb(186 135 255 / 0.54);
  border-radius: 28px;
  background: linear-gradient(145deg, rgb(42 25 75 / 0.92), rgb(14 8 30 / 0.96));
  box-shadow: 0 0 60px rgb(139 92 246 / 0.32), inset 0 1px 0 rgb(255 255 255 / 0.12);
  text-align: center;
  transform: translate(-50%, -50%);
}

.stage-core img {
  width: 36px;
  height: auto;
  filter: invert(79%) sepia(37%) saturate(749%) hue-rotate(203deg) brightness(104%);
}

.stage-core-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgb(169 112 255 / 0.42);
  border-radius: 18px;
  background: linear-gradient(145deg, rgb(139 92 246 / 0.24), rgb(73 217 246 / 0.08));
  box-shadow: 0 0 24px rgb(139 92 246 / 0.18), inset 0 1px 0 rgb(255 255 255 / 0.1);
}

.stage-core-copy {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.stage-core span,
.stage-core-copy span {
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.stage-core strong,
.stage-core-copy strong {
  min-width: 0;
  font-size: 0.94rem;
  overflow-wrap: anywhere;
}

.office-roster {
  position: absolute;
  inset: 0;
}

.roster-agent {
  position: absolute;
  z-index: 5;
  display: flex;
  width: 160px;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgb(25 15 44 / 0.82);
  color: var(--text);
  box-shadow: 0 12px 28px rgb(0 0 0 / 0.24), inset 0 1px 0 rgb(255 255 255 / 0.06);
  text-decoration: none;
  backdrop-filter: blur(12px);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.roster-agent:hover {
  z-index: 8;
  border-color: rgb(169 112 255 / 0.72);
  background: rgb(45 25 78 / 0.94);
  transform: translateY(-3px);
}

.roster-agent img {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 2px solid var(--violet-bright);
  border-radius: 13px;
  object-fit: cover;
}

.roster-agent > span {
  display: grid;
  min-width: 0;
}

.roster-agent strong {
  font-size: 0.75rem;
}

.roster-agent small {
  overflow: hidden;
  color: var(--text-soft);
  font-size: 0.55rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.roster-agent-1 { top: 8%; left: 5%; }
.roster-agent-2 { top: 3%; left: 27%; }
.roster-agent-3 { top: 3%; right: 27%; }
.roster-agent-4 { top: 8%; right: 5%; }
.roster-agent-5 { top: 43%; left: 2%; }
.roster-agent-6 { top: 43%; right: 2%; }
.roster-agent-7 { bottom: 7%; left: 6%; }
.roster-agent-8 { bottom: 2%; left: 28%; }
.roster-agent-9 { right: 28%; bottom: 2%; }
.roster-agent-10 { right: 6%; bottom: 7%; }

.map-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding-top: 0.8rem;
}

.map-footer span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 54px;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgb(255 255 255 / 0.035);
  text-align: center;
}

.map-footer b {
  color: var(--white);
  font-size: 0.92rem;
}

.worlds-section,
.model-section,
.teams-section,
.principles-section,
.faq-section {
  padding-block: 8rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  gap: 5rem;
  align-items: end;
}

.section-heading h2,
.model-heading h2,
.faq-intro h2 {
  max-width: 790px;
  margin-top: 0.9rem;
  font-size: clamp(2.35rem, 3.8vw, 3.8rem);
  font-weight: 700;
}

.section-heading > p,
.section-support,
.model-heading > p:last-child,
.faq-intro > p:last-child {
  color: var(--text-soft);
  line-height: 1.7;
}

.worlds-section {
  position: relative;
}

.world-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  margin-top: 3.5rem;
}

.world-card {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  min-height: 250px;
  gap: 1rem;
  align-content: space-between;
  align-items: start;
  padding: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, rgb(31 19 53 / 0.86), rgb(16 10 34 / 0.88));
  color: var(--text);
  text-align: left;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.05);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

button.world-card {
  width: 100%;
  cursor: pointer;
}

.world-card::after {
  position: absolute;
  right: -3rem;
  bottom: -4rem;
  width: 9rem;
  height: 9rem;
  border: 1px solid rgb(169 112 255 / 0.24);
  border-radius: 50%;
  box-shadow: 0 0 0 1.8rem rgb(139 92 246 / 0.025);
  content: "";
}

.world-card:hover,
.world-card.was-notified {
  border-color: rgb(169 112 255 / 0.55);
  background: linear-gradient(145deg, rgb(46 26 78 / 0.9), rgb(20 12 42 / 0.94));
  transform: translateY(-4px);
}

.world-symbol {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgb(169 112 255 / 0.1);
  color: #d5c1f8;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 850;
}

.world-symbol img {
  width: 21px;
  height: 21px;
  filter: invert(78%) sepia(22%) saturate(920%) hue-rotate(212deg) brightness(103%);
}

.world-card > strong {
  align-self: center;
  font-size: 0.98rem;
}

.world-card > p {
  grid-column: 1 / -1;
  color: var(--text-soft);
  font-size: 0.8rem;
  line-height: 1.55;
  text-decoration: none;
}

.world-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.world-actions small {
  padding: 0.3rem 0.48rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.03);
  color: #bfb5cd;
  font-size: 0.58rem;
  font-weight: 720;
  text-decoration: none;
}

.world-status {
  grid-column: 1 / -1;
  align-self: end;
  color: #8f87a3;
  font-family: var(--font-mono);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
}

.model-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(560px, 1.2fr);
  gap: 6rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.model-heading > p:last-child {
  max-width: 510px;
  margin-top: 1.3rem;
}

.model-steps {
  display: grid;
  gap: 0.75rem;
  align-content: center;
  padding: 0;
  list-style: none;
}

.model-steps li {
  display: grid;
  grid-template-columns: 3rem minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  min-height: 105px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(110deg, rgb(38 22 67 / 0.72), rgb(16 10 34 / 0.64));
}

.model-steps span {
  color: var(--violet-bright);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 850;
}

.model-steps strong {
  font-size: 1rem;
}

.model-steps p {
  color: var(--text-soft);
  font-size: 0.86rem;
}

.principles-section {
  padding-bottom: 0;
}

.direction-statement {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: 6rem;
  align-items: end;
  padding-block: 5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.direction-statement .section-label {
  color: var(--lime);
}

.direction-statement h2 {
  max-width: 650px;
  margin-top: 0.8rem;
  font-size: clamp(2.45rem, 3.7vw, 3.75rem);
}

.direction-copy > p:last-child {
  max-width: 620px;
  margin-top: 1.2rem;
  color: var(--text-soft);
}

.control-stack {
  display: grid;
  gap: 0.7rem;
}

.control-stack > div {
  display: grid;
  grid-template-columns: 3rem minmax(170px, 0.7fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  min-height: 90px;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(110deg, rgb(35 20 61 / 0.7), rgb(16 10 34 / 0.65));
}

.control-stack > div:nth-child(2) {
  border-color: rgb(185 243 106 / 0.3);
  background: linear-gradient(110deg, rgb(185 243 106 / 0.1), rgb(16 10 34 / 0.65));
}

.control-stack span {
  color: var(--violet-bright);
  font-family: var(--font-mono);
  font-size: 0.64rem;
}

.control-stack > div:nth-child(2) span {
  color: var(--lime);
}

.control-stack strong {
  font-size: 0.92rem;
}

.control-stack small {
  color: var(--text-soft);
  font-size: 0.74rem;
}

.section-heading-compact {
  grid-template-columns: 1fr;
}

.section-support {
  max-width: 650px;
  margin-top: 1.2rem;
}

.team-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.85rem;
  margin-top: 3rem;
}

.team-list article {
  position: relative;
  min-height: 210px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg, rgb(30 18 53 / 0.84), rgb(14 9 30 / 0.88));
}

.team-list article:nth-child(n) {
  grid-column: span 2;
}

.team-list article > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgb(139 92 246 / 0.11);
  color: var(--violet-bright);
}

.team-list strong {
  display: block;
  margin-top: 2.6rem;
  font-size: 1rem;
}

.team-list p {
  margin-top: 0.5rem;
  color: var(--text-soft);
  font-size: 0.78rem;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(520px, 1.15fr);
  gap: 5rem;
  border-top: 1px solid var(--line);
}

.faq-intro > p:last-child {
  max-width: 520px;
  margin-top: 1.3rem;
}

.faq-intro h2 {
  max-width: 570px;
  font-size: clamp(2.3rem, 3.5vw, 3.45rem);
}

.faq-more-link {
  display: inline-flex;
  gap: 1rem;
  margin-top: 1.8rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgb(255 255 255 / 0.55);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
}

.faq-more-link span {
  color: var(--violet-bright);
}

.faq-list {
  align-self: start;
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(110deg, rgb(31 18 54 / 0.68), rgb(14 9 30 / 0.7));
}

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

.faq-item summary {
  display: grid;
  grid-template-columns: 1fr 2.2rem;
  gap: 1rem;
  align-items: center;
  min-height: 82px;
  padding-inline: 1.1rem;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgb(255 255 255 / 0.035);
  color: var(--violet-bright);
  font-size: 1.2rem;
  transition: transform 160ms ease, background 160ms ease;
}

.faq-item[open] summary span {
  background: var(--violet);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-item p {
  max-width: 680px;
  padding: 0 4rem 1.3rem 1.1rem;
  color: var(--text-soft);
  font-size: 0.91rem;
}

.closing-section {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) minmax(330px, 0.72fr);
  gap: 2rem;
  align-items: center;
  margin-bottom: 7rem;
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid rgb(169 112 255 / 0.34);
  border-radius: 30px;
  background:
    radial-gradient(circle at 80% 130%, rgb(139 92 246 / 0.36), transparent 27rem),
    linear-gradient(130deg, #1b1032, #0c0719);
  box-shadow: var(--shadow-panel), inset 0 1px 0 rgb(255 255 255 / 0.08);
}

.closing-section h2 {
  max-width: 620px;
  margin-top: 0.85rem;
  font-size: clamp(2.4rem, 3.6vw, 3.65rem);
}

.closing-copy > p:last-child {
  max-width: 620px;
  margin-top: 0.85rem;
  color: var(--text-soft);
}

.closing-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  align-self: start;
  border: 1px solid rgb(169 112 255 / 0.42);
  border-radius: 18px;
  background: rgb(139 92 246 / 0.13);
  color: var(--violet-bright);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.08);
}

.closing-icon img {
  width: 28px;
  filter: invert(68%) sepia(62%) saturate(3784%) hue-rotate(227deg) brightness(105%);
}

.closing-action > p {
  color: var(--text-soft);
}

.closing-action .button {
  margin-top: 1.5rem;
}

.closing-action small {
  display: block;
  margin-top: 0.75rem;
  color: #847c97;
  font-family: var(--font-mono);
  font-size: 0.58rem;
}

.site-footer {
  padding-block: 5rem 2rem;
  border-top: 1px solid var(--line);
  background: #05030b;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: end;
}

.footer-kicker {
  color: var(--violet-bright);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-thesis h2 {
  max-width: 650px;
  margin-top: 0.6rem;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.footer-thesis > p:last-child {
  max-width: 620px;
  margin-top: 1rem;
  color: var(--text-soft);
}

.partner-logos {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.partner-logos > span {
  color: var(--violet-bright);
  font-size: 1.1rem;
}

.partner-logo {
  display: grid;
  width: 168px;
  height: 72px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.partner-logo img {
  display: block;
  width: auto;
  max-width: 86%;
  max-height: 42px;
  object-fit: contain;
}

.partner-logo-imk {
  padding: 0.4rem;
  background: var(--white);
}

.partner-logo-imk img {
  max-height: 48px;
}

.partner-logo-lema {
  padding: 0.85rem 1rem;
  border-color: rgb(255 255 255 / 0.22);
  background: #161221;
}

.partner-logo-lema img {
  max-height: 28px;
}

.footer-contacts {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.footer-contacts a {
  color: #9d95ad;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-decoration: none;
}

.footer-contacts a:hover {
  color: var(--violet-bright);
}

/* Páginas internas */
.internal-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 28%, rgb(139 92 246 / 0.25), transparent 28rem),
    radial-gradient(circle at 12% 72%, rgb(223 77 244 / 0.1), transparent 22rem),
    linear-gradient(155deg, #100921, #06040e 68%);
}

.internal-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 0.027) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.027) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, transparent 5%, #000 62%, transparent);
  content: "";
}

.internal-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.58fr);
  gap: 6rem;
  align-items: end;
  min-height: 650px;
  padding-block: 12rem 6rem;
}

.internal-hero h1 {
  max-width: 900px;
  margin-top: 1rem;
  font-size: clamp(3.6rem, 5.4vw, 5.5rem);
}

.internal-hero h1 span {
  background: linear-gradient(105deg, #e8d7ff, var(--violet-bright), #5fcff2);
  background-clip: text;
  color: transparent;
}

.internal-hero-copy {
  max-width: 690px;
  margin-top: 1.5rem;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-side-note {
  display: grid;
  padding: 1.5rem;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: linear-gradient(145deg, rgb(40 23 69 / 0.82), rgb(18 11 37 / 0.88));
  box-shadow: var(--glow-violet), inset 0 1px 0 rgb(255 255 255 / 0.08);
}

.hero-side-note > span,
.contact-actions > span {
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-side-note strong {
  margin-top: 2.5rem;
  font-size: 1.35rem;
}

.hero-side-note p {
  margin-top: 0.55rem;
  color: var(--text-soft);
  font-size: 0.82rem;
}

.hero-side-note.is-planned > span {
  color: var(--violet-bright);
}

.worlds-catalog,
.planned-world-body,
.method-page,
.questions-page,
.alliance-page,
.contact-page {
  padding-block: 7rem;
}

.active-world-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 390px;
  gap: 3rem;
  align-items: end;
  padding: clamp(2rem, 5vw, 4.5rem);
  overflow: hidden;
  border: 1px solid rgb(169 112 255 / 0.36);
  border-radius: 30px;
  background:
    radial-gradient(circle at 80% 20%, rgb(73 217 246 / 0.12), transparent 20rem),
    linear-gradient(130deg, #20113a, #0b0718);
  box-shadow: var(--shadow-panel), inset 0 1px 0 rgb(255 255 255 / 0.08);
  text-decoration: none;
}

.active-world-feature h2,
.catalog-heading h2,
.validation-panel h2,
.method-guardrails h2,
.shared-principle h2,
.contact-brief h2,
.contact-actions h2,
.question-prompt h2 {
  margin-top: 0.8rem;
  font-size: clamp(2.35rem, 3.8vw, 3.8rem);
}

.active-world-feature p {
  max-width: 620px;
  margin-top: 1rem;
  color: var(--text-soft);
}

.text-action {
  display: inline-flex;
  gap: 0.8rem;
  margin-top: 2rem;
  color: #d8c5f7;
  font-weight: 800;
}

.text-action b {
  color: var(--violet-bright);
}

.world-avatar-stack {
  display: grid;
  grid-template-columns: repeat(3, 64px);
  align-self: center;
}

.world-avatar-stack img {
  width: 76px;
  height: 76px;
  margin-left: -12px;
  border: 3px solid #1c1034;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 16px 30px rgb(0 0 0 / 0.38);
}

.world-avatar-stack img:nth-child(2n) {
  margin-top: 3.8rem;
}

.catalog-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: 4rem;
  align-items: end;
  margin-top: 7rem;
}

.catalog-heading > p {
  color: var(--text-soft);
}

.world-catalog-grid,
.hypothesis-grid,
.guardrail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  margin-top: 3rem;
}

.world-catalog-grid .world-card {
  min-height: 210px;
}

.world-status b {
  float: right;
  color: var(--violet-bright);
}

.hypothesis-grid article,
.guardrail-grid article {
  min-height: 235px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg, rgb(31 18 54 / 0.86), rgb(14 9 30 / 0.9));
}

.hypothesis-grid article > span {
  color: var(--violet-bright);
  font-family: var(--font-mono);
  font-size: 0.65rem;
}

.hypothesis-grid h3 {
  margin-top: 4rem;
  font-size: 1.35rem;
}

.hypothesis-grid p,
.guardrail-grid p {
  margin-top: 0.7rem;
  color: var(--text-soft);
  font-size: 0.8rem;
}

.validation-panel,
.method-guardrails {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1.22fr);
  gap: 5rem;
  margin-top: 7rem;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background: linear-gradient(130deg, #1b1032, #0b0717);
}

.validation-panel ol,
.contact-brief ol {
  display: grid;
  padding: 0;
  list-style: none;
}

.validation-panel li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: center;
  min-height: 80px;
  border-bottom: 1px solid var(--line);
}

.validation-panel li:first-child {
  border-top: 1px solid var(--line);
}

.validation-panel li span {
  color: var(--violet-bright);
  font-family: var(--font-mono);
  font-size: 0.65rem;
}

.internal-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 7rem;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgb(169 112 255 / 0.34);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 120%, rgb(139 92 246 / 0.35), transparent 24rem),
    linear-gradient(130deg, #1b1032, #0c0719);
  box-shadow: var(--shadow-panel), inset 0 1px 0 rgb(255 255 255 / 0.08);
}

.internal-cta h2 {
  max-width: 700px;
  margin-top: 0.7rem;
  font-size: clamp(2.2rem, 3.4vw, 3.35rem);
}

.internal-cta .button {
  flex: 0 0 auto;
}

.phase-list {
  display: grid;
}

.phase-list article {
  display: grid;
  grid-template-columns: 8rem minmax(0, 1fr);
  gap: 3rem;
  padding-block: 3rem;
  border-bottom: 1px solid var(--line);
}

.phase-list article:first-child {
  border-top: 1px solid var(--line);
}

.phase-list article > span {
  color: var(--violet-bright);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.phase-list h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.phase-list p {
  max-width: 680px;
  margin-top: 0.8rem;
  color: var(--text-soft);
}

.method-guardrails {
  grid-template-columns: minmax(0, 0.7fr) minmax(540px, 1.3fr);
}

.guardrail-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 0;
}

.guardrail-grid article {
  min-height: 155px;
}

.guardrail-grid strong {
  font-size: 1rem;
}

.questions-page {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1.55fr);
  gap: 6rem;
}

.question-index {
  align-self: start;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.question-index span {
  color: var(--violet-bright);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
}

.question-index p {
  margin-top: 0.8rem;
  color: var(--text-soft);
  font-size: 0.82rem;
}

.faq-list-large .faq-item summary {
  min-height: 100px;
  font-size: 1.15rem;
}

.faq-list-large .faq-item p {
  padding-bottom: 2rem;
  font-size: 0.96rem;
}

.question-prompt {
  margin-bottom: 7rem;
  padding-block: 5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.question-prompt h2 {
  max-width: 930px;
  margin-inline: auto;
}

.question-prompt .button {
  margin-top: 2rem;
}

.alliance-page {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.alliance-role {
  min-height: 520px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgb(30 18 53 / 0.84), rgb(14 9 30 / 0.88));
}

.alliance-role > span {
  color: #8f87a0;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.brand-visual {
  display: grid;
  height: 220px;
  place-items: center;
  margin-top: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.alliance-role-lema .brand-visual {
  border-color: rgb(255 255 255 / 0.2);
  background: #161221;
}

.brand-visual img {
  max-width: 180px;
  max-height: 110px;
  object-fit: contain;
}

.alliance-role-lema .brand-visual img {
  max-width: 220px;
  max-height: 36px;
}

.alliance-role-imk .brand-visual img {
  max-width: 90px;
}

.alliance-role h2 {
  margin-top: 2.5rem;
  font-size: 2.5rem;
}

.alliance-role p,
.shared-principle > p:last-child {
  max-width: 580px;
  margin-top: 0.8rem;
  color: var(--text-soft);
}

.shared-principle {
  grid-column: 1 / -1;
  margin-top: 5rem;
  padding: clamp(2rem, 5vw, 4rem);
  border-left: 3px solid var(--lime);
  background: linear-gradient(90deg, rgb(185 243 106 / 0.07), transparent);
}

.contact-page {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 5rem;
}

.contact-brief,
.contact-actions {
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgb(30 18 53 / 0.84), rgb(14 9 30 / 0.88));
}

.contact-brief li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding-block: 1.2rem;
  border-bottom: 1px solid var(--line);
}

.contact-brief li span {
  color: var(--violet-bright);
  font-family: var(--font-mono);
  font-size: 0.65rem;
}

.contact-brief li p {
  display: grid;
  color: var(--text-soft);
  font-size: 0.82rem;
}

.contact-brief li strong {
  color: var(--text);
  font-size: 0.92rem;
}

.contact-actions {
  border-color: rgb(169 112 255 / 0.35);
  background:
    radial-gradient(circle at 80% 10%, rgb(139 92 246 / 0.25), transparent 20rem),
    linear-gradient(145deg, #21133d, #0c0719);
  box-shadow: var(--glow-violet);
}

.contact-actions p {
  margin-top: 1rem;
  color: var(--text-soft);
}

.contact-actions .button {
  width: 100%;
  margin-top: 1rem;
}

.contact-actions .button-primary {
  margin-top: 2rem;
}

.contact-actions small {
  display: block;
  margin-top: 0.8rem;
  color: #7e768e;
  font-family: var(--font-mono);
  font-size: 0.58rem;
}

/* Mundo Turismo */
.office-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 75% 30%, rgb(139 92 246 / 0.26), transparent 30rem),
    linear-gradient(155deg, #0f0922, #06040e 68%);
}

.office-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.03) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, transparent, #000);
  content: "";
}

.office-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.65fr);
  gap: 5rem;
  align-items: end;
  min-height: 540px;
  padding-block: 9rem 4rem;
}

.back-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #a8a0b8;
  font-size: 0.8rem;
  font-weight: 750;
  text-decoration: none;
}

.office-hero .section-label {
  margin-top: 2rem;
  color: #cdb5f4;
}

.office-hero h1 {
  margin-top: 0.8rem;
  background: linear-gradient(105deg, #ffffff, #d9c1ff 55%, #a970ff);
  background-clip: text;
  color: transparent;
  font-size: clamp(3.7rem, 6.2vw, 6rem);
}

.office-hero-inner > div > p:last-child {
  max-width: 660px;
  margin-top: 1.2rem;
  color: var(--text-soft);
  font-size: 1.12rem;
}

.office-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.office-board {
  display: grid;
  gap: 1.4rem;
  padding: 1.5rem;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: linear-gradient(145deg, rgb(40 23 69 / 0.82), rgb(18 11 37 / 0.88));
  box-shadow: var(--glow-violet), inset 0 1px 0 rgb(255 255 255 / 0.08);
  backdrop-filter: blur(12px);
}

.office-board-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.office-board-top > span {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.office-board-top > small {
  color: #8e86a0;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  text-transform: uppercase;
}

.office-board-avatars {
  display: flex;
  align-items: center;
  padding-block: 0.4rem;
}

.office-board-avatars img,
.office-board-avatars b {
  width: 50px;
  height: 50px;
  margin-left: -10px;
  border: 3px solid #1a0f30;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 24px rgb(0 0 0 / 0.32);
}

.office-board-avatars img:first-child {
  margin-left: 0;
}

.office-board-avatars b {
  display: grid;
  place-items: center;
  background: var(--violet);
  font-size: 0.68rem;
}

.office-board-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.office-board-stats div {
  display: grid;
}

.office-board-stats strong {
  font-size: 1.25rem;
}

.office-board-stats small {
  color: #8e86a0;
  font-family: var(--font-mono);
  font-size: 0.51rem;
  text-transform: uppercase;
}

.office-section {
  padding-block: 6rem;
}

.office-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
}

.office-toolbar h2,
.office-method h2 {
  max-width: 740px;
  margin-top: 0.75rem;
  font-size: clamp(2.5rem, 3.9vw, 3.9rem);
}

.office-toolbar-intro {
  max-width: 680px;
  margin-top: 1rem;
  color: var(--text-soft);
}

.office-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.4rem;
}

.office-legend span {
  display: flex;
  min-height: 35px;
  align-items: center;
  gap: 0.45rem;
  padding-inline: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.035);
  color: #978fa9;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  text-transform: uppercase;
}

.agent-shortcuts {
  display: flex;
  gap: 0.55rem;
  margin-top: 2.2rem;
  padding-bottom: 0.5rem;
  overflow-x: auto;
  scrollbar-width: thin;
}

.agent-shortcuts a {
  display: inline-flex;
  min-width: max-content;
  min-height: 46px;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.7rem 0.4rem 0.4rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.03);
  color: #bbb3c9;
  font-size: 0.7rem;
  font-weight: 750;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.agent-shortcuts a:hover {
  border-color: rgb(169 112 255 / 0.6);
  background: rgb(139 92 246 / 0.11);
  color: var(--white);
}

.agent-shortcuts img {
  width: 34px;
  height: 34px;
  border: 2px solid rgb(169 112 255 / 0.58);
  border-radius: 50%;
  object-fit: cover;
}

.agent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.2rem;
}

.agent-card {
  position: relative;
  display: flex;
  min-height: 370px;
  flex-direction: column;
  padding: 1.1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, rgb(29 17 52 / 0.88), rgb(13 8 28 / 0.94));
  color: var(--text);
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.05);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.agent-card::after {
  position: absolute;
  top: 7rem;
  right: -6rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: rgb(139 92 246 / 0.09);
  filter: blur(25px);
  content: "";
}

.agent-card:hover {
  z-index: 2;
  border-color: rgb(169 112 255 / 0.58);
  box-shadow: 0 24px 60px rgb(0 0 0 / 0.4), 0 0 45px rgb(139 92 246 / 0.14);
  transform: translateY(-5px);
}

.agent-card-top,
.profile-status {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.station-code {
  padding: 0.35rem 0.52rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgb(139 92 246 / 0.12);
  color: #ceb8ef;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 850;
}

.availability {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #91899f;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 750;
  text-transform: uppercase;
}

.agent-identity {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.agent-identity img {
  width: 88px;
  height: 88px;
  flex: 0 0 auto;
  border: 2px solid var(--violet-bright);
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgb(0 0 0 / 0.34);
}

.agent-identity > div {
  display: grid;
}

.agent-identity strong {
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.agent-identity span {
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.agent-card > p {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin-top: 1.3rem;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.capability-row,
.profile-capabilities {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.2rem;
}

.capability-row span,
.profile-capabilities span {
  padding: 0.38rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.035);
  color: #b6aec7;
  font-size: 0.63rem;
  font-weight: 740;
}

.agent-card-action {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1.5rem;
  color: #cdb7f1;
  font-size: 0.78rem;
  font-weight: 850;
}

.agent-card-action b {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgb(139 92 246 / 0.14);
}

.office-method {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 5rem;
  padding-block: 6rem;
  border-top: 1px solid var(--line);
}

.office-method-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.office-method-flow article {
  min-height: 210px;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg, rgb(31 18 54 / 0.86), rgb(14 9 30 / 0.9));
}

.office-method-flow span {
  color: var(--violet-bright);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 850;
}

.office-method-flow strong {
  display: block;
  margin-top: 2.8rem;
}

.office-method-flow p {
  margin-top: 0.6rem;
  color: var(--text-soft);
  font-size: 0.8rem;
}

.office-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 7rem;
  padding: 2.3rem;
  border: 1px solid rgb(169 112 255 / 0.34);
  border-radius: 24px;
  background: linear-gradient(120deg, #21133d, #0d081d);
  box-shadow: var(--glow-violet);
}

.office-cta h2 {
  max-width: 680px;
  margin-top: 0.65rem;
  font-size: clamp(2rem, 3.8vw, 3.5rem);
}

/* Ficha de agente */
.agent-page {
  min-height: 100vh;
  padding-block: 9rem 7rem;
  background:
    radial-gradient(circle at 10% 25%, rgb(139 92 246 / 0.2), transparent 28rem),
    radial-gradient(circle at 90% 80%, rgb(73 217 246 / 0.1), transparent 24rem),
    var(--void);
}

.agent-page-inner > .back-link {
  margin-bottom: 1.4rem;
}

.agent-workspace {
  display: grid;
  grid-template-columns: minmax(340px, 0.74fr) minmax(0, 1.26fr);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background: rgb(13 8 28 / 0.88);
  box-shadow: var(--shadow-panel), var(--glow-violet), inset 0 1px 0 rgb(255 255 255 / 0.06);
}

.agent-profile {
  padding: 1.4rem;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 30%, rgb(139 92 246 / 0.22), transparent 18rem),
    linear-gradient(160deg, #1b1033, #0d081d);
}

.profile-status {
  color: #a79eb8;
  font-family: var(--font-mono);
  font-size: 0.61rem;
  text-transform: uppercase;
}

.profile-status > span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.profile-avatar {
  display: block;
  width: min(100%, 330px);
  height: auto;
  aspect-ratio: 1;
  margin: 1.6rem auto;
  border: 3px solid var(--violet-bright);
  border-radius: 30px;
  object-fit: cover;
  box-shadow: 0 25px 60px rgb(0 0 0 / 0.44), 0 0 40px rgb(139 92 246 / 0.2);
}

.agent-profile[data-accent="lime"] .profile-avatar { border-color: var(--lime); }
.agent-profile[data-accent="violet"] .profile-avatar { border-color: var(--violet-bright); }
.agent-profile[data-accent="rose"] .profile-avatar { border-color: #f472b6; }
.agent-profile[data-accent="orange"] .profile-avatar { border-color: #fb923c; }

.agent-profile h1 {
  margin-top: 0.5rem;
  background: linear-gradient(105deg, #fff, #cdb4f8);
  background-clip: text;
  color: transparent;
  font-size: clamp(2.8rem, 4.4vw, 4.2rem);
}

.profile-role {
  margin-top: 0.4rem;
  font-weight: 780;
}

.profile-summary {
  margin-top: 1rem;
  color: var(--text-soft);
  font-size: 0.89rem;
}

.profile-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  margin-block: 1.4rem;
  padding-block: 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.profile-proof dt {
  color: #766d89;
  font-family: var(--font-mono);
  font-size: 0.53rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.profile-proof dd {
  margin-top: 0.25rem;
  font-size: 0.66rem;
  font-weight: 760;
}

.agent-console {
  min-width: 0;
  padding: clamp(1.3rem, 3vw, 2.5rem);
}

.console-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.console-heading h2 {
  max-width: 690px;
  margin-top: 0.65rem;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.console-security {
  flex: 0 0 auto;
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #958da6;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  text-transform: uppercase;
}

.interaction-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  margin-top: 2rem;
  padding: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.035);
}

.interaction-tabs-compact {
  grid-template-columns: repeat(2, 1fr);
}

.interaction-tabs button {
  min-width: 0;
  min-height: 45px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-soft);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 820;
}

.interaction-tabs button[aria-selected="true"],
.interaction-tabs button[aria-expanded="true"] {
  background: linear-gradient(135deg, var(--violet), #b24deb);
  color: var(--white);
  box-shadow: 0 8px 24px rgb(139 92 246 / 0.3), inset 0 1px 0 rgb(255 255 255 / 0.2);
}

.interaction-panel {
  margin-top: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgb(22 13 40 / 0.72);
}

.interaction-panel[hidden] {
  display: none;
}

.chat-statusbar {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-inline: 1rem;
  border-bottom: 1px solid var(--line);
  background: rgb(255 255 255 / 0.025);
}

.chat-statusbar small {
  color: #81798f;
  font-family: var(--font-mono);
  font-size: 0.56rem;
}

.chat-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #948ba5;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
}

.chat-live-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7f758e;
}

.chat-live-pill[data-ready="true"] {
  color: var(--lime);
}

.chat-live-pill[data-ready="true"] i {
  background: var(--success);
  box-shadow: 0 0 0 5px rgb(134 239 99 / 0.1), 0 0 14px rgb(134 239 99 / 0.45);
}

.chat-window {
  height: 350px;
  overflow-y: auto;
  padding: 1rem;
  background:
    radial-gradient(circle at 80% 10%, rgb(139 92 246 / 0.12), transparent 15rem),
    rgb(9 6 19 / 0.62);
}

.message {
  display: flex;
  max-width: 87%;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}

.message img {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border: 2px solid var(--violet-bright);
  border-radius: 11px;
  object-fit: cover;
}

.message > div {
  padding: 0.78rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 5px 14px 14px;
  background: rgb(34 20 60 / 0.9);
}

.message strong {
  display: block;
  margin-bottom: 0.2rem;
  color: #cdb4f8;
  font-size: 0.7rem;
}

.message p {
  font-size: 0.84rem;
}

.message-user {
  margin-left: auto;
}

.message-user > div {
  border-radius: 14px 5px 14px 14px;
  background: linear-gradient(135deg, #7246d2, #9b40cf);
}

.message-user strong {
  color: var(--white);
}

.message-system {
  max-width: 100%;
}

.message-system > div {
  border-color: rgb(251 113 133 / 0.25);
  background: rgb(251 113 133 / 0.08);
}

.message-system strong {
  color: #ff9bad;
}

.typing-dots {
  display: flex;
  height: 20px;
  align-items: center;
  gap: 4px;
}

.typing-dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--violet-bright);
  animation: typing-pulse 900ms ease-in-out infinite alternate;
}

.typing-dots i:nth-child(2) { animation-delay: 140ms; }
.typing-dots i:nth-child(3) { animation-delay: 280ms; }

.quick-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.8rem 0.8rem 0;
}

.quick-prompts button {
  min-height: 38px;
  padding: 0.4rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.035);
  color: #b5adc5;
  cursor: pointer;
  font-size: 0.67rem;
  font-weight: 720;
}

.quick-prompts button:hover {
  border-color: rgb(169 112 255 / 0.58);
  background: rgb(139 92 246 / 0.12);
}

.quick-prompts button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
  padding: 0.8rem;
}

.chat-form input,
.lead-form input:not([type="checkbox"]),
.lead-form textarea {
  min-width: 0;
  min-height: 49px;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgb(255 255 255 / 0.045);
  color: var(--text);
}

.chat-form button {
  min-height: 49px;
  padding-inline: 1rem;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--violet), #b24deb);
  color: var(--white);
  cursor: pointer;
  font-weight: 850;
}

.chat-form button:disabled,
.chat-form input:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.prototype-note {
  padding: 0 0.8rem 0.8rem;
  color: #766e88;
  font-family: var(--font-mono);
  font-size: 0.57rem;
}

.form-error {
  margin: 0;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgb(251 113 133 / 0.32);
  border-radius: 12px;
  background: rgb(251 113 133 / 0.08);
  color: #ff9bad;
  font-size: 0.72rem;
}

.voice-console {
  display: grid;
  min-height: 525px;
  padding: clamp(1rem, 3vw, 1.6rem);
}

.voice-identity {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 1.2rem;
  align-items: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.voice-overline,
.demo-case-header span,
.demo-outcome span {
  color: var(--violet-bright);
  font-family: var(--font-mono);
  font-size: 0.61rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.voice-identity h3 {
  margin-top: 0.4rem;
  font-size: clamp(1.6rem, 3vw, 2.45rem);
}

.voice-identity > div > p:last-child {
  max-width: 530px;
  margin-top: 0.55rem;
  color: var(--text-soft);
  font-size: 0.82rem;
}

.voice-avatar {
  position: relative;
  width: 108px;
  height: 108px;
}

.voice-avatar img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border: 3px solid var(--violet-bright);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 15px 35px rgb(0 0 0 / 0.4);
}

.voice-orbit {
  position: absolute;
  z-index: 1;
  inset: -10px;
  border: 2px solid var(--violet-bright);
  border-radius: 50%;
  opacity: 0.35;
}

.voice-console[data-voice-state="listening"] .voice-orbit,
.voice-console[data-voice-state="speaking"] .voice-orbit,
.voice-console[data-voice-state="thinking"] .voice-orbit {
  animation: voice-orbit 2.4s ease-in-out infinite;
  opacity: 1;
}

.voice-live {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  column-gap: 1rem;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgb(255 255 255 / 0.035);
}

.voice-live .wave-line {
  grid-row: span 2;
}

.voice-live strong {
  font-size: 0.84rem;
}

.voice-live > span {
  color: var(--text-soft);
  font-size: 0.68rem;
}

.wave-line {
  display: flex;
  height: 36px;
  align-items: center;
  gap: 4px;
}

.wave-line i {
  width: 4px;
  height: 10px;
  border-radius: 999px;
  background: var(--violet-bright);
}

.voice-console:not([data-voice-state="speaking"]):not([data-voice-state="listening"]):not([data-voice-state="thinking"]) .wave-line i {
  height: 4px;
}

.voice-console[data-voice-state="speaking"] .wave-line i,
.voice-console[data-voice-state="listening"] .wave-line i,
.voice-console[data-voice-state="thinking"] .wave-line i {
  transform-origin: center bottom;
  transition: height 80ms linear;
}

.wave-line i:nth-child(2), .wave-line i:nth-child(6) { height: 20px; }
.wave-line i:nth-child(3), .wave-line i:nth-child(5) { height: 29px; }
.wave-line i:nth-child(4) { height: 36px; }

.voice-transcript {
  min-height: 150px;
  max-height: 190px;
  margin-top: 0.8rem;
  padding: 0.9rem;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgb(7 4 15 / 0.54);
}

.voice-transcript > p,
.voice-transcript-line p {
  color: var(--text-soft);
  font-size: 0.76rem;
}

.voice-transcript-line {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 0.7rem;
  padding-block: 0.6rem;
  border-bottom: 1px solid var(--line);
}

.voice-transcript-line strong {
  color: #ccb7ee;
  font-size: 0.66rem;
}

.voice-control {
  width: 100%;
  margin-top: 0.8rem;
}

.voice-control.is-ending {
  border-color: rgb(251 113 133 / 0.5);
  background: rgb(251 113 133 / 0.12);
  color: #ff9bad;
  box-shadow: none;
}

.voice-control:disabled {
  border-color: var(--line);
  background: rgb(255 255 255 / 0.04);
  color: #756d84;
  cursor: not-allowed;
  box-shadow: none;
}

.voice-privacy {
  margin-top: 0.7rem;
  color: #81798f;
  font-family: var(--font-mono);
  font-size: 0.56rem;
}

.voice-privacy span {
  color: var(--success);
}

.demo-story {
  padding: 1rem;
  background:
    radial-gradient(circle at 70% 10%, rgb(139 92 246 / 0.12), transparent 18rem),
    rgb(9 6 19 / 0.62);
}

.demo-story-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.demo-story-topbar > div {
  display: grid;
}

.demo-story-topbar > div span,
.agent-value-grid span {
  color: var(--violet-bright);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-story-topbar > div strong {
  margin-top: 0.25rem;
}

.demo-story-topbar button {
  min-height: 40px;
  padding-inline: 0.8rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgb(139 92 246 / 0.1);
  color: var(--text);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 800;
}

.demo-story-stage {
  position: relative;
  min-height: 390px;
  margin-top: 1rem;
}

.demo-scene {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(210px, 0.8fr);
  gap: 1.2rem;
  align-items: stretch;
  visibility: hidden;
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 280ms ease, transform 280ms ease, visibility 280ms;
}

.demo-scene.is-active {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.demo-mockup {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: linear-gradient(145deg, #21143d, #0c071a);
  box-shadow: 0 22px 45px rgb(0 0 0 / 0.34), inset 0 1px 0 rgb(255 255 255 / 0.07);
}

.mockup-bar {
  display: flex;
  height: 42px;
  align-items: center;
  gap: 5px;
  padding-inline: 0.8rem;
  border-bottom: 1px solid var(--line);
  background: rgb(255 255 255 / 0.035);
}

.mockup-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #70667e;
}

.mockup-bar i:nth-child(1) { background: #fb7185; }
.mockup-bar i:nth-child(2) { background: #fbbf24; }
.mockup-bar i:nth-child(3) { background: var(--success); }

.mockup-bar span {
  margin-left: auto;
  color: #8f86a1;
  font-family: var(--font-mono);
  font-size: 0.53rem;
  text-transform: uppercase;
}

.mockup-body {
  display: grid;
  min-height: 346px;
  align-content: center;
  padding: 1.2rem;
  background-image:
    linear-gradient(rgb(255 255 255 / 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.025) 1px, transparent 1px);
  background-size: 30px 30px;
}

.demo-scene-copy {
  align-self: center;
  padding: 1rem;
}

.demo-scene-copy > span {
  color: var(--violet-bright);
  font-family: var(--font-mono);
  font-size: 0.6rem;
}

.demo-scene-copy h3 {
  margin-top: 1rem;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.demo-scene-copy p {
  margin-top: 0.8rem;
  color: var(--text-soft);
  font-size: 0.85rem;
}

.mock-chat {
  display: grid;
  gap: 0.8rem;
}

.mock-chat p {
  max-width: 82%;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 5px 14px 14px;
  background: rgb(255 255 255 / 0.05);
  font-size: 0.75rem;
}

.mock-chat p.is-agent {
  margin-left: auto;
  border-radius: 14px 5px 14px 14px;
  background: rgb(139 92 246 / 0.25);
}

.mock-chat b,
.mock-report b {
  display: block;
  margin-bottom: 0.25rem;
  color: #d8c5f7;
  font-size: 0.62rem;
}

.mock-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.mock-board div {
  min-height: 125px;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgb(255 255 255 / 0.04);
}

.mock-board span,
.mock-document > span,
.mock-calendar > span,
.mock-handoff > span {
  color: #887e98;
  font-family: var(--font-mono);
  font-size: 0.52rem;
  text-transform: uppercase;
}

.mock-board b {
  display: block;
  margin-top: 2.7rem;
  font-size: 0.75rem;
}

.mock-report {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 1rem;
  align-items: center;
}

.mock-bars {
  display: flex;
  height: 170px;
  align-items: end;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.mock-bars i {
  width: 18%;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(to top, var(--violet), #d083ff);
}

.mock-bars i:nth-child(1) { height: 38%; }
.mock-bars i:nth-child(2) { height: 62%; }
.mock-bars i:nth-child(3) { height: 48%; }
.mock-bars i:nth-child(4) { height: 82%; background: linear-gradient(to top, #2f9dbc, var(--cyan)); }
.mock-bars i:nth-child(5) { height: 70%; }

.mock-report p,
.mock-handoff,
.mock-document,
.mock-calendar {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgb(255 255 255 / 0.04);
}

.mock-document {
  display: grid;
  max-width: 360px;
  margin-inline: auto;
}

.mock-document h4 {
  margin: 0.8rem 0 1rem;
  font-size: 1.25rem;
}

.mock-document i {
  height: 7px;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.08);
}

.mock-document i:nth-of-type(2) { width: 82%; }
.mock-document i:nth-of-type(3) { width: 62%; }

.mock-document b {
  margin-top: 1.4rem;
  color: var(--lime);
  font-size: 0.7rem;
}

.mock-calendar {
  display: grid;
  max-width: 420px;
  margin-inline: auto;
}

.mock-calendar > b {
  margin-top: 0.7rem;
  font-size: 1.2rem;
}

.mock-calendar > div {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.4rem;
  margin-top: 1.4rem;
}

.mock-calendar i {
  display: grid;
  height: 45px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #8c829c;
  font-style: normal;
}

.mock-calendar i.is-selected {
  border-color: var(--violet-bright);
  background: var(--violet);
  color: var(--white);
}

.mock-handoff {
  position: relative;
  display: grid;
  max-width: 400px;
  margin-inline: auto;
  padding-right: 5rem;
}

.mock-handoff > b {
  margin-top: 0.6rem;
  font-size: 1.25rem;
}

.mock-handoff > p {
  margin-top: 0.6rem;
  color: var(--text-soft);
  font-size: 0.75rem;
}

.mock-handoff > i {
  position: absolute;
  top: 50%;
  right: 1rem;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--night);
  font-style: normal;
  font-weight: 900;
  transform: translateY(-50%);
}

.demo-story-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
}

.demo-story-nav button {
  display: flex;
  min-width: 0;
  min-height: 50px;
  align-items: center;
  gap: 0.55rem;
  padding-inline: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgb(255 255 255 / 0.03);
  color: #958ca5;
  cursor: pointer;
  font-size: 0.67rem;
  font-weight: 750;
}

.demo-story-nav button.is-active {
  border-color: rgb(169 112 255 / 0.62);
  background: rgb(139 92 246 / 0.14);
  color: var(--white);
}

.demo-story-nav button span {
  color: var(--violet-bright);
  font-family: var(--font-mono);
  font-size: 0.55rem;
}

.demo-story-progress {
  height: 3px;
  margin-top: 0.7rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.06);
}

.demo-story-progress i {
  display: block;
  width: 33.333%;
  height: 100%;
  background: linear-gradient(90deg, var(--violet-bright), var(--cyan));
  transition: width 280ms ease;
}

.agent-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-top: 1rem;
}

.agent-value-grid article {
  min-height: 110px;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgb(255 255 255 / 0.025);
}

.agent-value-grid strong {
  display: block;
  margin-top: 1.2rem;
  font-size: 0.75rem;
  line-height: 1.45;
}

.demo-disclosure {
  margin-top: 0.7rem;
  color: #766e88;
  font-family: var(--font-mono);
  font-size: 0.54rem;
}

.demo-video-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  background:
    radial-gradient(circle at 70% 10%, rgb(139 92 246 / 0.12), transparent 18rem),
    rgb(9 6 19 / 0.62);
}

.demo-video-topbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.demo-video-topbar > div {
  display: grid;
  gap: 0.2rem;
}

.demo-video-topbar span {
  color: var(--violet-bright);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-video-topbar small {
  color: #81798f;
  font-family: var(--font-mono);
  font-size: 0.58rem;
}

.demo-video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #07050f;
}

.demo-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.demo-play-button {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: rgb(7 5 15 / 0.32);
  color: var(--white);
  cursor: pointer;
}

.demo-play-button span {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 0 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #8b5cf6, #b24deb);
  box-shadow: 0 12px 28px rgb(139 92 246 / 0.35);
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
}

.demo-play-button:hover span {
  transform: translateY(-1px);
}

.demo-video-frame.is-playing .demo-play-button {
  display: none;
}

.demo-dialog {
  width: min(96vw, 920px);
  max-height: 92vh;
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: #0c0818;
  color: var(--text);
  box-shadow: var(--shadow-panel), var(--glow-violet);
}

.demo-dialog::backdrop {
  background: rgb(3 2 8 / 0.88);
  backdrop-filter: blur(10px);
}

.demo-dialog-shell {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: clamp(1.15rem, 3vw, 1.7rem);
}

.demo-dialog-copy {
  display: grid;
  gap: 0.28rem;
  padding-right: 3rem;
}

.demo-dialog-copy h2 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.15;
}

.demo-dialog-copy p:last-child {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.demo-dialog .demo-video-frame {
  aspect-ratio: 16 / 9;
}

.demo-dialog .dialog-close {
  z-index: 2;
}

.demo-stack {
  display: grid;
  gap: 0.7rem;
  padding: 0.9rem 1rem 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgb(255 255 255 / 0.03);
}

.demo-stack p {
  margin: 0;
  color: var(--violet-bright);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-stack ul {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.demo-stack li {
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  min-height: 76px;
  padding: 0.55rem 0.3rem 0.45rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: #161221;
  text-align: center;
}

.demo-stack img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.demo-stack span {
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1.2;
}

@keyframes typing-pulse {
  from { opacity: 0.3; transform: translateY(2px); }
  to { opacity: 1; transform: translateY(-2px); }
}

/* Captura de interés */
.lead-dialog {
  width: min(92vw, 720px);
  max-height: 90vh;
  padding: 0;
  overflow: auto;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: #100a20;
  color: var(--text);
  box-shadow: var(--shadow-panel), var(--glow-violet);
}

.lead-dialog::backdrop {
  background: rgb(3 2 8 / 0.82);
  backdrop-filter: blur(8px);
}

.dialog-shell {
  position: relative;
  padding: clamp(1.4rem, 4vw, 2.5rem);
}

.dialog-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgb(255 255 255 / 0.04);
  color: var(--text);
  cursor: pointer;
  font-size: 1.4rem;
}

.dialog-shell h2 {
  max-width: 580px;
  margin-top: 0.75rem;
  padding-right: 3rem;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
}

.dialog-intro {
  max-width: 590px;
  margin-top: 0.9rem;
  color: var(--text-soft);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.lead-form label:not(.consent) {
  display: grid;
  gap: 0.35rem;
}

.lead-form label > span:first-child {
  font-size: 0.73rem;
  font-weight: 780;
}

.lead-form input:not([type="checkbox"]),
.lead-form textarea {
  width: 100%;
}

.lead-form textarea {
  resize: vertical;
}

.form-wide {
  grid-column: 1 / -1;
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgb(255 255 255 / 0.035);
  color: var(--text-soft);
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 0.12rem;
}

.consent span {
  font-size: 0.72rem;
}

.lead-success {
  padding-block: 2rem 1rem;
  text-align: center;
}

.lead-success > span {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-inline: auto;
  border-radius: 50%;
  background: var(--lime);
  color: var(--night);
  font-size: 1.7rem;
  font-weight: 900;
}

.lead-success h3 {
  margin-top: 1rem;
  font-size: 1.5rem;
}

.lead-success p {
  max-width: 480px;
  margin: 0.75rem auto 1.4rem;
  color: var(--text-soft);
}

@keyframes voice-orbit {
  0%, 100% { transform: scale(0.98); opacity: 0.55; }
  50% { transform: scale(1.05); opacity: 1; }
}

@keyframes voice-bars {
  from { transform: scaleY(0.35); }
  to { transform: scaleY(1); }
}

.reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

.reveal-item.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav a {
    padding-inline: 0.75rem;
  }

  .header-cta {
    font-size: 0.76rem;
  }

  .roster-agent {
    width: 140px;
  }

  .roster-agent-2 { left: 23%; }
  .roster-agent-3 { right: 23%; }
  .roster-agent-8 { left: 24%; }
  .roster-agent-9 { right: 24%; }

  .agent-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .agent-workspace {
    grid-template-columns: 320px minmax(0, 1fr);
  }

  .internal-hero-inner {
    gap: 3rem;
  }

  .world-catalog-grid,
  .hypothesis-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --page: min(100% - 2rem, 1240px);
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 9.5rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 5.4vw, 2.7rem);
  }

  .site-nav {
    display: none;
  }

  .header-cta {
    justify-self: end;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgb(16 10 34 / 0.76);
    color: var(--text);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 160ms ease;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .menu-open .site-nav {
    position: absolute;
    top: 84px;
    right: 1rem;
    left: 1rem;
    display: grid;
    justify-self: stretch;
    padding: 0.6rem;
    border-radius: 20px;
    background: rgb(13 8 28 / 0.96);
    box-shadow: var(--shadow-panel);
  }

  .menu-open .site-nav a {
    justify-content: flex-start;
    min-height: 48px;
    padding-inline: 1rem;
    border-radius: 13px;
  }

  .menu-open .site-nav .mobile-nav-link {
    display: inline-flex;
  }

  .office-stage {
    min-height: 570px;
    padding: 1rem;
  }

  .stage-orbit {
    width: 60%;
    height: 42%;
  }

  .roster-agent {
    width: 118px;
  }

  .roster-agent small {
    display: none;
  }

  .roster-agent-1 { left: 2%; }
  .roster-agent-4 { right: 2%; }
  .roster-agent-5 { left: 1%; }
  .roster-agent-6 { right: 1%; }
  .roster-agent-7 { left: 2%; }
  .roster-agent-10 { right: 2%; }

  .section-heading,
  .model-section,
  .faq-section,
  .closing-section,
  .office-hero-inner,
  .office-method,
  .agent-workspace,
  .footer-inner,
  .internal-hero-inner,
  .catalog-heading,
  .validation-panel,
  .method-guardrails,
  .questions-page,
  .contact-page {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .model-section,
  .faq-section,
  .closing-section,
  .office-hero-inner,
  .office-method {
    gap: 3rem;
  }

  .world-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-list article:nth-child(n) {
    grid-column: auto;
  }

  .office-hero-inner {
    min-height: auto;
  }

  .office-board {
    max-width: 520px;
  }

  .agent-workspace {
    overflow: visible;
  }

  .agent-profile {
    display: grid;
    grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
    column-gap: 1.5rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .agent-profile > *:not(.profile-avatar) {
    grid-column: 2;
  }

  .agent-profile .profile-status {
    grid-column: 1 / -1;
  }

  .agent-profile .profile-avatar {
    grid-row: 2 / span 7;
    grid-column: 1;
    align-self: start;
    margin-block: 1.5rem 0;
  }

  .footer-contacts {
    grid-column: auto;
  }

  .internal-hero-inner {
    min-height: 600px;
    gap: 2.5rem;
    padding-block: 10rem 5rem;
  }

  .internal-hero h1 {
    font-size: clamp(3.6rem, 10vw, 5.8rem);
  }

  .active-world-feature {
    grid-template-columns: 1fr;
  }

  .world-avatar-stack {
    justify-self: start;
  }

  .catalog-heading {
    gap: 2rem;
  }

  .validation-panel,
  .method-guardrails,
  .questions-page,
  .contact-page {
    gap: 3rem;
  }
}

@media (max-width: 620px) {
  :root {
    --page: min(100% - 1.5rem, 1240px);
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 78px;
  }

  .product-brand {
    grid-template-columns: 36px auto;
    gap: 0.55rem;
  }

  .wordmark-icon {
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }

  .wordmark-icon img {
    width: 20px;
  }

  .wordmark-main {
    font-size: 0.94rem;
  }

  .wordmark-sub {
    font-size: 0.47rem;
  }

  .header-cta {
    display: none;
  }

  .hero-inner {
    padding-block: 8.5rem 3.5rem;
  }

  .hero h1 {
    max-width: 14ch;
    font-size: clamp(1.85rem, 8.6vw, 2.35rem);
  }

  .hero-intro {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .office-map {
    margin-top: 3rem;
    padding: 0.65rem;
    border-radius: 22px;
  }

  .map-header {
    font-size: 0.54rem;
  }

  .office-stage {
    min-height: 0;
    padding: 0.7rem;
    border-radius: 17px;
  }

  .office-stage::before,
  .stage-orbit {
    display: none;
  }

  .stage-core {
    position: relative;
    top: auto;
    left: auto;
    display: grid;
    width: 100%;
    min-height: 0;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: center;
    column-gap: 0.75rem;
    margin-bottom: 0.7rem;
    padding: 0.75rem 0.85rem;
    border-radius: 18px;
    text-align: left;
    transform: none;
  }

  .stage-core-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .stage-core img,
  .stage-core-icon img {
    width: 28px;
    grid-row: auto;
  }

  .office-roster {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .roster-agent,
  .roster-agent:nth-child(n) {
    position: static;
    width: auto;
    min-width: 0;
    padding: 0.42rem;
  }

  .roster-agent img {
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }

  .roster-agent strong {
    font-size: 0.72rem;
  }

  .roster-agent small {
    display: none;
  }

  .map-footer {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.35rem;
  }

  .map-footer span {
    min-height: 0;
    flex-direction: column;
    gap: 0.12rem;
    padding: 0.5rem 0.25rem;
    font-size: 0.48rem;
  }

  .worlds-section,
  .model-section,
  .teams-section,
  .principles-section,
  .faq-section {
    padding-block: 5rem;
  }

  .worlds-catalog,
  .planned-world-body,
  .method-page,
  .questions-page,
  .alliance-page,
  .contact-page {
    padding-block: 4.5rem;
  }

  .internal-hero-inner {
    min-height: auto;
    padding-block: 8.5rem 4rem;
  }

  .internal-hero h1 {
    font-size: clamp(3.15rem, 15vw, 4.5rem);
  }

  .internal-hero-copy {
    font-size: 1rem;
  }

  .hero-side-note strong {
    margin-top: 1.6rem;
  }

  .active-world-feature {
    min-height: 430px;
    padding: 1.4rem;
    border-radius: 22px;
  }

  .active-world-feature h2,
  .catalog-heading h2,
  .validation-panel h2,
  .method-guardrails h2,
  .shared-principle h2,
  .contact-brief h2,
  .contact-actions h2,
  .question-prompt h2 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .world-avatar-stack {
    grid-template-columns: repeat(3, 54px);
  }

  .world-avatar-stack img {
    width: 62px;
    height: 62px;
  }

  .catalog-heading {
    margin-top: 5rem;
  }

  .world-catalog-grid,
  .hypothesis-grid,
  .guardrail-grid,
  .alliance-page {
    grid-template-columns: 1fr;
  }

  .hypothesis-grid article {
    min-height: 190px;
  }

  .hypothesis-grid h3 {
    margin-top: 2.5rem;
  }

  .validation-panel,
  .method-guardrails {
    margin-top: 5rem;
    padding: 1.4rem;
    border-radius: 22px;
  }

  .internal-cta {
    align-items: stretch;
    flex-direction: column;
    margin-bottom: 5rem;
    padding: 1.4rem;
    border-radius: 22px;
  }

  .internal-cta .button {
    width: 100%;
  }

  .phase-list article {
    grid-template-columns: 2.5rem 1fr;
    gap: 0.8rem;
    padding-block: 2rem;
  }

  .phase-list h2 {
    font-size: 2.25rem;
  }

  .questions-page {
    gap: 2.5rem;
  }

  .faq-list-large .faq-item summary {
    font-size: 1rem;
  }

  .question-prompt {
    margin-bottom: 5rem;
    padding-block: 4rem;
  }

  .alliance-role {
    min-height: 450px;
  }

  .brand-visual {
    height: 190px;
  }

  .shared-principle {
    grid-column: auto;
    margin-top: 2rem;
    padding: 1.4rem;
  }

  .contact-brief,
  .contact-actions {
    padding: 1.4rem;
  }

  .section-heading h2,
  .model-heading h2,
  .faq-intro h2,
  .office-toolbar h2,
  .office-method h2 {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

  .world-grid,
  .team-list,
  .agent-grid,
  .office-method-flow {
    grid-template-columns: 1fr;
  }

  .world-card {
    min-height: 145px;
  }

  .model-steps li {
    grid-template-columns: 2.2rem 1fr;
    align-items: start;
  }

  .model-steps p {
    grid-column: 2;
  }

  .direction-statement {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-block: 4rem;
  }

  .direction-statement h2 {
    font-size: clamp(2.3rem, 11vw, 3.4rem);
  }

  .control-stack > div {
    grid-template-columns: 2.2rem 1fr;
    gap: 0.7rem;
  }

  .control-stack small {
    grid-column: 2;
  }

  .team-list article {
    min-height: 160px;
  }

  .team-list strong {
    margin-top: 1.7rem;
  }

  .closing-section {
    grid-template-columns: 46px 1fr;
    gap: 1rem;
    margin-bottom: 5rem;
    padding: 1.4rem;
    border-radius: 22px;
  }

  .closing-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .closing-icon img {
    width: 22px;
  }

  .closing-copy,
  .closing-action {
    grid-column: 2;
  }

  .closing-section h2 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .closing-action .button {
    width: 100%;
  }

  .partner-logos {
    justify-content: center;
    flex-wrap: wrap;
  }

  .partner-logo {
    width: min(100%, 240px);
    height: 84px;
  }

  .office-hero-inner {
    padding-block: 8rem 3.5rem;
  }

  .office-hero .section-label {
    margin-top: 1.6rem;
  }

  .office-hero h1 {
    font-size: clamp(3.25rem, 16vw, 4.35rem);
  }

  .office-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .office-hero-actions .button {
    width: 100%;
  }

  .office-board {
    gap: 1rem;
  }

  .office-board-stats small {
    font-size: 0.47rem;
  }

  .office-section {
    padding-block: 5rem;
  }

  .office-toolbar,
  .office-cta,
  .console-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .office-legend {
    justify-content: flex-start;
  }

  .agent-card {
    grid-column: auto;
    min-height: 360px;
  }

  .office-method-flow article {
    min-height: 180px;
  }

  .office-method-flow strong {
    margin-top: 2.2rem;
  }

  .office-cta {
    margin-bottom: 5rem;
    padding: 1.4rem;
  }

  .agent-page {
    padding-block: 7rem 4rem;
  }

  .agent-workspace {
    border-radius: 22px;
  }

  .agent-profile {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 0 1rem;
    align-items: start;
  }

  .agent-profile .profile-status {
    grid-column: 1 / -1;
  }

  .profile-avatar {
    grid-row: 2 / span 3;
    grid-column: 1;
    width: 132px;
    margin: 1.6rem 0 0;
    border-radius: 22px;
  }

  .agent-profile .section-label,
  .agent-profile h1,
  .agent-profile .profile-role {
    grid-column: 2;
  }

  .agent-profile .section-label {
    align-self: end;
    margin-top: 1.6rem;
  }

  .agent-profile h1 {
    align-self: end;
    font-size: clamp(2.4rem, 12vw, 3.25rem);
  }

  .agent-profile .profile-summary,
  .agent-profile .profile-capabilities,
  .agent-profile .profile-proof,
  .agent-profile .button {
    grid-column: 1 / -1;
  }

  .profile-proof {
    grid-template-columns: 1fr;
  }

  .profile-proof div {
    display: grid;
    grid-template-columns: 4.3rem 1fr;
    gap: 0.5rem;
    align-items: baseline;
  }

  .interaction-tabs button {
    padding-inline: 0.3rem;
    font-size: 0.72rem;
  }

  .demo-dialog {
    width: 100vw;
    max-height: 100dvh;
    border-radius: 0;
  }

  .demo-dialog-shell {
    padding: 1rem 0.9rem 1.2rem;
  }

  .demo-stack ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .chat-window {
    height: 360px;
  }

  .message {
    max-width: 96%;
  }

  .chat-form,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .form-wide {
    grid-column: auto;
  }

  .voice-identity {
    grid-template-columns: 76px 1fr;
    gap: 0.8rem;
  }

  .voice-avatar {
    width: 72px;
    height: 72px;
  }

  .voice-live {
    grid-template-columns: 58px 1fr;
    padding-inline: 0.7rem;
  }

  .voice-transcript-line {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .chat-statusbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
    padding-block: 0.75rem;
  }

  .demo-story-topbar {
    align-items: flex-start;
  }

  .demo-story-topbar button {
    flex: 0 0 auto;
  }

  .demo-story-stage {
    min-height: 555px;
  }

  .demo-scene {
    grid-template-columns: 1fr;
    grid-template-rows: 300px auto;
    gap: 0.55rem;
    align-items: start;
  }

  .mockup-body {
    min-height: 258px;
    padding: 0.75rem;
  }

  .demo-scene-copy {
    padding: 0.45rem 0.15rem;
  }

  .demo-scene-copy h3 {
    margin-top: 0.65rem;
    font-size: 1.85rem;
  }

  .demo-scene-copy p {
    margin-top: 0.55rem;
    font-size: 0.78rem;
  }

  .mock-board {
    gap: 0.35rem;
  }

  .mock-board div {
    min-height: 105px;
    padding: 0.5rem;
  }

  .mock-board b {
    margin-top: 2rem;
    font-size: 0.64rem;
  }

  .mock-report {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .mock-bars {
    height: 140px;
  }

  .demo-story-nav button {
    justify-content: center;
    padding: 0.45rem;
    font-size: 0.6rem;
  }

  .agent-value-grid {
    grid-template-columns: 1fr;
  }

  .agent-value-grid article {
    min-height: 0;
  }

  .agent-value-grid strong {
    margin-top: 0.7rem;
  }
}

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