:root {
  color-scheme: light;
  --ink: #101114;
  --muted: #626773;
  --soft: #eef0f4;
  --line: #dde1e8;
  --card: rgba(255, 255, 255, 0.88);
  --accent: #136dec;
  --accent-soft: #e7f0ff;
  --warning: #b7791f;
  --warning-soft: #fff4d8;
  --danger-soft: #ffe9e7;
  --shadow: 0 18px 60px rgba(24, 32, 48, 0.08);
  --radius: 18px;
  --speed: 180ms;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(246, 248, 250, 0.92), rgba(255, 255, 255, 1) 42%),
    radial-gradient(circle at 80% 0%, rgba(15, 118, 110, 0.08), transparent 30%);
}

body:has(.isa-site) {
  background: #101822;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.app-shell {
  min-height: 100vh;
  padding: 28px;
}

.stage {
  width: min(1120px, 100%);
  min-height: calc(100vh - 56px);
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 28px;
  animation: enter var(--speed) ease both;
}

@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.topbar,
.footerbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: white;
  background: #111827;
  font-weight: 700;
  letter-spacing: 0;
}

.save-state {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.save-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(15, 118, 110, 0.08);
}

.progress-wrap {
  width: min(220px, 35vw);
}

.progress-label {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 8px;
}

.progress-track {
  height: 5px;
  border-radius: 99px;
  overflow: hidden;
  background: var(--soft);
}

.progress-fill {
  height: 100%;
  width: var(--progress);
  border-radius: inherit;
  background: var(--ink);
  transition: width 220ms ease;
}

.hero {
  display: grid;
  align-content: center;
  gap: 24px;
  padding: min(9vh, 80px) 0;
}

.hero h1,
.screen h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.98;
  font-weight: 680;
  letter-spacing: 0;
}

.screen h1 {
  font-size: clamp(34px, 5vw, 64px);
}

.lede {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.42;
  font-weight: 350;
}

.micro {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 8px 12px;
  color: #2f343d;
  background: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.screen {
  display: grid;
  gap: 26px;
  align-content: start;
}

.guided-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.guided-main {
  min-width: 0;
}

.flow-rail {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 14px;
}

.flow-card,
.flow-help,
.continue-panel,
.checklist-panel {
  border: 1px solid rgba(221, 225, 232, 0.85);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 44px rgba(24, 32, 48, 0.07);
}

.flow-card,
.flow-help {
  padding: 18px;
}

.flow-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.flow-card strong {
  display: block;
  font-size: 20px;
  line-height: 1.15;
}

.flow-card p,
.flow-help p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.flow-next {
  margin-top: 16px;
  border-radius: 14px;
  padding: 12px;
  color: #0f3d38;
  background: var(--accent-soft);
}

.flow-next span {
  display: block;
  margin-bottom: 5px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flow-next b {
  font-size: 14px;
}

.flow-steps {
  display: grid;
  gap: 8px;
}

.flow-steps button {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 11px;
  text-align: left;
  background: rgba(255, 255, 255, 0.72);
}

.flow-steps button span {
  width: 30px;
  height: 30px;
  border-radius: 99px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: var(--soft);
  font-size: 12px;
  font-weight: 800;
}

.flow-steps strong {
  display: block;
  font-size: 13px;
}

.flow-steps small {
  color: var(--muted);
  font-size: 12px;
}

.flow-steps button.current {
  border-color: rgba(15, 118, 110, 0.42);
  background: var(--accent-soft);
}

.flow-steps button.current span,
.flow-steps button.done span {
  color: white;
  background: var(--accent);
}

.flow-steps button.locked {
  cursor: not-allowed;
  opacity: 0.48;
}

.home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.75fr);
  gap: 16px;
}

.checklist {
  display: grid;
  gap: 11px;
  margin-top: 14px;
}

.checklist div {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: center;
}

.checklist span {
  width: 24px;
  height: 24px;
  border-radius: 99px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: white;
  background: white;
  font-size: 12px;
  font-weight: 800;
}

.checklist .done span {
  border-color: var(--accent);
  background: var(--accent);
}

.checklist p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.panel {
  border: 1px solid rgba(221, 225, 232, 0.85);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  padding: clamp(20px, 4vw, 36px);
}

.grid {
  display: grid;
  gap: 14px;
}

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

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

.field {
  display: grid;
  gap: 10px;
}

.label {
  font-weight: 620;
  font-size: 15px;
}

.input,
.select,
.textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  transition: border-color var(--speed) ease, box-shadow var(--speed) ease;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: rgba(15, 118, 110, 0.5);
  box-shadow: 0 0 0 5px rgba(15, 118, 110, 0.08);
}

.textarea {
  min-height: 84px;
  resize: vertical;
}

.choice,
.setting-row,
.reference-card,
.quality-row {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.75);
  padding: 16px;
  transition: transform var(--speed) ease, border-color var(--speed) ease, background var(--speed) ease;
}

.choice {
  text-align: left;
}

.choice:hover,
.setting-row:hover,
.reference-card:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 118, 110, 0.32);
}

.choice.selected,
.chip.selected,
.quality-row.pass {
  border-color: rgba(15, 118, 110, 0.42);
  background: var(--accent-soft);
}

.choice-title,
.reference-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 650;
}

.choice small,
.reference-meta {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  border: 1px solid var(--line);
  border-radius: 99px;
  background: white;
  color: #333946;
  padding: 9px 13px;
  transition: background var(--speed) ease, border-color var(--speed) ease;
}

.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  font-weight: 620;
  transition: transform var(--speed) ease, opacity var(--speed) ease, background var(--speed) ease;
}

.btn.mini {
  min-height: 34px;
  border-radius: 10px;
  padding: 7px 10px;
  font-size: 12px;
}

.btn.wide {
  width: 100%;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  background: var(--ink);
  color: white;
}

.btn.secondary {
  background: white;
  color: var(--ink);
  border-color: var(--line);
}

.btn.ghost {
  background: transparent;
  color: var(--muted);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.assistant-card {
  display: grid;
  gap: 12px;
  border-left: 3px solid var(--accent);
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(217, 245, 240, 0.45);
}

.blocks {
  display: grid;
  gap: 14px;
}

.block {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.block-head {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  text-align: left;
}

.block-body {
  display: grid;
  gap: 16px;
  padding: 0 18px 18px;
}

.check {
  width: 24px;
  height: 24px;
  border-radius: 99px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: var(--accent-soft);
}

.status {
  display: inline-flex;
  align-items: center;
  border-radius: 99px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 650;
  color: var(--accent);
  background: var(--accent-soft);
}

.status.draft,
.quality-row.warn {
  color: var(--warning);
  background: var(--warning-soft);
}

.structured {
  display: grid;
  gap: 18px;
}

.section-title {
  margin: 0 0 10px;
  font-size: 18px;
}

.obligation {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.settings-list {
  display: grid;
  gap: 10px;
}

.setting-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.tag {
  border-radius: 99px;
  padding: 5px 8px;
  background: var(--soft);
  color: #454b56;
  font-size: 12px;
}

.banner {
  border: 1px solid rgba(183, 121, 31, 0.2);
  border-radius: 14px;
  padding: 12px 14px;
  color: #765111;
  background: var(--warning-soft);
}

.document-preview {
  position: relative;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(18px, 4vw, 42px);
  overflow: hidden;
}

.watermark {
  position: absolute;
  inset: 40% auto auto 16%;
  transform: rotate(-18deg);
  color: rgba(17, 24, 39, 0.08);
  font-size: clamp(42px, 8vw, 88px);
  font-weight: 760;
  pointer-events: none;
  white-space: nowrap;
}

.doc-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 28px;
}

.doc-table th,
.doc-table td {
  border-bottom: 1px solid var(--line);
  padding: 12px 8px;
  text-align: left;
  vertical-align: top;
}

.doc-table th {
  color: var(--muted);
  font-size: 13px;
}

.skeleton {
  display: grid;
  gap: 12px;
}

.skeleton span {
  height: 18px;
  border-radius: 99px;
  background: linear-gradient(90deg, #eef0f4, #fafafa, #eef0f4);
  background-size: 200% 100%;
  animation: shimmer 1.1s linear infinite;
}

@keyframes shimmer {
  to {
    background-position: -200% 0;
  }
}

.hidden {
  display: none !important;
}

.isa-site {
  min-height: 100vh;
  color: white;
  background: #101822;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.isa-site a {
  color: inherit;
  text-decoration: none;
}

.isa-nav {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(16, 24, 34, 0.9);
  backdrop-filter: blur(18px);
}

.isa-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  width: fit-content;
}

.isa-logo span {
  color: #fff;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0;
}

.isa-logo i {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: #136dec;
  box-shadow: 0 0 14px rgba(19, 109, 236, 0.95);
}

.isa-nav-center {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.isa-nav nav,
.isa-footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
}

.isa-nav a,
.isa-footer a {
  color: #94a3b8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.isa-nav a:hover,
.isa-footer a:hover {
  color: #fff;
}

.isa-nav .nav-login {
  border: 1px solid rgba(19, 109, 236, 0.45);
  border-radius: 999px;
  padding: 9px 14px;
  color: white;
  background: rgba(19, 109, 236, 0.12);
}

.isa-hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 128px 24px 80px;
  background: #101822;
}

.isa-aurora {
  position: absolute;
  width: 820px;
  height: 820px;
  border-radius: 999px;
  background: rgba(19, 109, 236, 0.1);
  filter: blur(120px);
}

.isa-hero-content {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  display: grid;
  justify-items: center;
  gap: 26px;
  text-align: center;
}

.hero-logo span {
  font-size: 32px;
}

.hero-logo i {
  width: 11px;
  height: 11px;
}

.isa-hero h1 {
  margin: 0;
  color: transparent;
  background: linear-gradient(180deg, #fff, rgba(255, 255, 255, 0.68));
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(32px, 5.2vw, 58px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0;
}

.isa-hero p {
  max-width: 760px;
  margin: 0;
  color: #94a3b8;
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.65;
  font-weight: 300;
}

.isa-hero-actions,
.isa-free-card,
.isa-access,
.isa-footer {
  display: flex;
  align-items: center;
}

.isa-hero-actions {
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 6px;
}

.isa-primary,
.isa-secondary,
.isa-light-btn,
.isa-plan-grid a,
.isa-plan-grid button {
  min-height: 48px;
  border: 0;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 28px;
  font-weight: 800;
  cursor: pointer;
}

.isa-primary {
  color: #fff;
  background: #136dec;
  box-shadow: 0 0 24px rgba(19, 109, 236, 0.36);
}

.isa-primary:hover {
  background: #2563eb;
  box-shadow: 0 0 34px rgba(19, 109, 236, 0.52);
}

.isa-primary.full {
  width: 100%;
}

.isa-secondary {
  color: #fff;
  border: 1px solid #282f39;
  background: #1a2430;
}

.isa-proof-line {
  display: grid;
  gap: 9px;
  color: #64748b;
  font-size: 12px;
  font-weight: 600;
}

.isa-statement,
.isa-manifest,
.isa-process,
.isa-plans,
.isa-audience,
.isa-faq {
  padding: 96px 24px;
  background: #101822;
}

.isa-statement {
  border-block: 1px solid #282f39;
  background: #1a2430;
  text-align: center;
}

.isa-statement h2,
.isa-manifest h2,
.isa-section-head h2,
.isa-clarity h2,
.isa-audience h2,
.isa-access h2,
.isa-faq h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: 0;
}

.isa-statement p,
.isa-manifest p {
  max-width: 780px;
  margin: 22px auto 0;
  color: #cbd5e1;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.7;
  font-weight: 300;
}

.isa-manifest {
  text-align: center;
}

.isa-manifest > span,
.isa-access-copy > span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  border: 1px solid rgba(19, 109, 236, 0.24);
  border-radius: 999px;
  padding: 6px 12px;
  color: #136dec;
  background: rgba(19, 109, 236, 0.1);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.isa-manifest strong {
  display: block;
  margin-top: 18px;
  color: #fff;
  font-size: 20px;
}

.isa-free {
  padding: 40px 24px 96px;
  background: #101822;
}

.isa-free-card {
  position: relative;
  overflow: hidden;
  width: min(1080px, 100%);
  margin: 0 auto;
  gap: 48px;
  border: 1px solid #282f39;
  border-radius: 22px;
  padding: clamp(28px, 5vw, 52px);
  background: linear-gradient(135deg, #1a2430, #0f141a);
}

.isa-free-copy,
.isa-free-card ul {
  flex: 1;
}

.isa-available {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #22c55e;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.isa-available i {
  width: 12px;
  height: 12px;
  border-radius: 99px;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.65);
}

.isa-free h3 {
  margin: 18px 0 12px;
  font-size: clamp(28px, 4vw, 38px);
}

.isa-free p,
.isa-free small,
.isa-section-head p,
.isa-process p,
.isa-feature-grid p,
.isa-plan-grid p,
.isa-plan-grid li,
.isa-audience p,
.isa-login-panel p,
.isa-faq p,
.isa-footer p {
  color: #94a3b8;
}

.isa-light-btn {
  margin: 22px 0 12px;
  color: #101822;
  background: #fff;
}

.isa-free-card ul,
.isa-plan-grid ul {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.isa-free-card li,
.isa-plan-grid li {
  position: relative;
  padding-left: 30px;
}

.isa-free-card li::before,
.isa-plan-grid li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #136dec;
  font-weight: 900;
}

.isa-section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.isa-steps,
.isa-plan-grid,
.isa-audience > div {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.isa-steps article {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.isa-steps article > div {
  width: 96px;
  height: 96px;
  border: 1px solid #282f39;
  border-radius: 22px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #1a2430;
  font-size: 36px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.16);
}

.isa-steps .step-icon svg {
  width: 38px;
  height: 38px;
  color: white;
}

.isa-steps h3,
.isa-feature-grid h4,
.isa-audience h3 {
  margin: 0;
  color: #fff;
}

.isa-clarity {
  width: 100%;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 48px;
  padding: 96px max(24px, calc((100vw - 1180px) / 2));
  border-block: 1px solid #282f39;
  background: rgba(26, 36, 48, 0.42);
}

.isa-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.isa-feature-grid article,
.isa-plan-grid article,
.isa-audience article,
.isa-login-panel,
.isa-faq details {
  border: 1px solid #282f39;
  border-radius: 14px;
  background: #101822;
}

.isa-feature-grid article,
.isa-audience article {
  padding: 26px;
}

.isa-feature-grid span {
  display: block;
  margin-bottom: 14px;
  color: #136dec;
  font-weight: 900;
}

.isa-quote {
  padding: 96px 24px;
  background: #101822;
}

.isa-quote blockquote {
  max-width: 840px;
  margin: 0 auto 24px;
  border: 1px solid #282f39;
  border-radius: 18px;
  padding: clamp(32px, 6vw, 58px);
  color: #e2e8f0;
  background: rgba(26, 36, 48, 0.28);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.55;
  text-align: center;
}

.isa-quote span {
  display: block;
  color: #94a3b8;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.isa-plan-grid article {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 32px;
  opacity: 0.75;
}

.isa-plan-grid article.active {
  border-color: rgba(19, 109, 236, 0.42);
  opacity: 1;
  box-shadow: 0 0 34px rgba(19, 109, 236, 0.1);
}

.isa-plan-grid article.active::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: #136dec;
}

.isa-plan-grid h3 {
  margin: 0;
  color: #fff;
  font-size: 26px;
}

.isa-plan-grid strong {
  color: #fff;
  font-size: 40px;
}

.isa-plan-grid strong span {
  color: #64748b;
  font-size: 16px;
}

.isa-plan-grid a {
  color: white;
  background: #136dec;
}

.isa-plan-grid button {
  color: #64748b;
  background: #1a2430;
}

.isa-audience h2,
.isa-faq h2 {
  margin-bottom: 48px;
  text-align: center;
}

.audience-visual {
  height: 170px;
  margin-bottom: 22px;
  border-radius: 13px;
  border: 1px solid #282f39;
  background:
    linear-gradient(135deg, rgba(19, 109, 236, 0.22), rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 18px),
    #1a2430;
}

.audience-visual.two {
  background:
    linear-gradient(135deg, rgba(34, 197, 94, 0.16), rgba(19, 109, 236, 0.12)),
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.12), transparent 28%),
    #1a2430;
}

.audience-visual.three {
  background:
    linear-gradient(135deg, rgba(148, 163, 184, 0.12), rgba(19, 109, 236, 0.18)),
    linear-gradient(90deg, transparent 20%, rgba(255, 255, 255, 0.08) 20% 22%, transparent 22% 45%, rgba(255, 255, 255, 0.08) 45% 47%, transparent 47%),
    #1a2430;
}

.isa-access {
  gap: 56px;
  align-items: stretch;
  padding: 96px max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(180deg, #101822, #05080c),
    #101822;
}

.isa-access-copy,
.isa-login-panel {
  flex: 1;
}

.isa-access-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.isa-access-copy p {
  color: #94a3b8;
  font-size: 20px;
}

.isa-metrics-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.isa-metrics-strip article {
  border-top: 1px solid #282f39;
  padding-top: 14px;
}

.isa-metrics-strip strong {
  display: block;
  color: #fff;
  font-size: 34px;
}

.isa-metrics-strip span {
  color: #64748b;
  font-size: 13px;
}

.isa-login-panel {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 36px);
  background: rgba(26, 36, 48, 0.72);
}

.login-guide {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px 12px;
  border: 1px solid rgba(40, 47, 57, 0.8);
  border-radius: 14px;
  padding: 14px;
  background: rgba(16, 24, 34, 0.55);
}

.login-guide span {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: white;
  background: #136dec;
  font-size: 12px;
  font-weight: 900;
}

.login-guide p {
  margin: 0;
  align-self: center;
  color: #cbd5e1;
  font-size: 13px;
}

.segmented.dark {
  border-color: #282f39;
  background: #101822;
}

.segmented.dark button.active {
  color: white;
  background: #1a2430;
}

.isa-login-panel .label {
  color: white;
}

.dark-input {
  border-color: #282f39;
  color: white;
  background: #101822;
}

.dark-input::placeholder {
  color: #64748b;
}

.isa-faq {
  max-width: none;
}

.isa-faq details {
  width: min(760px, 100%);
  margin: 0 auto 12px;
  overflow: hidden;
}

.isa-faq summary {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  color: white;
  cursor: pointer;
  font-weight: 700;
}

.isa-faq p {
  margin: 0;
  border-top: 1px solid rgba(40, 47, 57, 0.65);
  padding: 18px 20px 20px;
  line-height: 1.65;
}

.isa-footer {
  justify-content: space-between;
  gap: 32px;
  padding: 56px max(24px, calc((100vw - 1180px) / 2));
  border-top: 1px solid #282f39;
  background: #05080c;
}

.account-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px;
}

.web-auth {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 28px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), #fff 58%),
    radial-gradient(circle at 50% 0%, rgba(15, 118, 110, 0.16), transparent 42%);
}

.site-nav {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.web-auth-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.65fr);
  align-items: center;
  gap: clamp(28px, 7vw, 92px);
}

.auth-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-weight: 650;
}

.auth-hero {
  display: grid;
  gap: 16px;
  padding: 48px 0;
}

.auth-hero h1,
.web-page-hero h1,
.owner-banner h1 {
  margin: 0;
  font-size: clamp(46px, 7vw, 84px);
  line-height: 0.98;
  letter-spacing: 0;
  max-width: 780px;
}

.auth-hero p,
.owner-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
  max-width: 640px;
}

.auth-panel {
  display: grid;
  gap: 16px;
  box-shadow: 0 14px 48px rgba(24, 32, 48, 0.07);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
  max-width: 720px;
}

.hero-proof article {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.hero-proof strong {
  display: block;
  font-size: 32px;
  line-height: 1;
}

.hero-proof span {
  color: var(--muted);
  font-size: 13px;
}

.segmented {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 4px;
  background: var(--soft);
}

.segmented button {
  border: 0;
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--muted);
  background: transparent;
  font-weight: 650;
}

.segmented button.active {
  color: var(--ink);
  background: white;
  box-shadow: 0 5px 18px rgba(24, 32, 48, 0.08);
}

.app-home {
  align-content: center;
}

.web-page-hero {
  display: grid;
  gap: 16px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.dashboard-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric-tile {
  min-height: 118px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 42px rgba(24, 32, 48, 0.06);
}

.metric-tile span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
}

.metric-tile strong {
  font-size: clamp(28px, 8vw, 44px);
  line-height: 1;
  letter-spacing: 0;
}

.owner-banner {
  display: grid;
  gap: 16px;
  border-radius: 26px;
  padding: clamp(24px, 5vw, 44px);
  color: white;
  background:
    linear-gradient(135deg, rgba(16, 24, 34, 0.98), rgba(19, 109, 236, 0.84)),
    #101114;
  box-shadow: var(--shadow);
}

.owner-banner .pill {
  color: white;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
}

.owner-banner p {
  color: rgba(255, 255, 255, 0.72);
}

/* ISA authenticated product system */
.app-shell {
  background: #101822;
  color: #f8fafc;
}

.stage,
.dashboard-stage {
  width: min(1180px, 100%);
  min-height: calc(100vh - 56px);
  margin: 0 auto;
}

.dashboard-stage {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 28px;
  animation: enter var(--speed) ease both;
}

.topbar,
.dashboard-topbar {
  min-height: 72px;
  border: 1px solid #282f39;
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(16, 24, 34, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-topbar nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.dashboard-logo {
  border: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  color: #fff;
  background: transparent;
  font-weight: 900;
  letter-spacing: 0;
}

.dashboard-logo span {
  font-size: 22px;
}

.dashboard-logo i {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: #136dec;
  box-shadow: 0 0 14px rgba(19, 109, 236, 0.95);
}

.brand {
  color: #cbd5e1;
}

.brand-mark {
  background: #136dec;
  border-radius: 8px;
}

.save-state,
.progress-label,
.micro,
.lede {
  color: #94a3b8;
}

.progress-track {
  background: #1a2430;
}

.progress-fill,
.btn.primary {
  background: #136dec;
}

.panel,
.flow-card,
.flow-help,
.continue-panel,
.checklist-panel,
.choice,
.setting-row,
.reference-card,
.quality-row,
.block,
.metric-tile {
  border-color: #282f39;
  background: rgba(26, 36, 48, 0.88);
  color: #f8fafc;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
}

.choice small,
.reference-meta,
.flow-card p,
.flow-help p,
.metric-tile span,
.checklist p {
  color: #94a3b8;
}

.flow-next,
.choice.selected,
.chip.selected,
.quality-row.pass,
.status {
  color: #dbeafe;
  border-color: rgba(19, 109, 236, 0.42);
  background: rgba(19, 109, 236, 0.16);
}

.flow-steps button {
  border-color: #282f39;
  background: rgba(26, 36, 48, 0.82);
  color: #f8fafc;
}

.flow-steps button span,
.checklist span {
  color: #94a3b8;
  border-color: #334155;
  background: #101822;
}

.flow-steps button.current {
  border-color: rgba(19, 109, 236, 0.6);
  background: rgba(19, 109, 236, 0.16);
}

.flow-steps button.current span,
.flow-steps button.done span,
.checklist .done span {
  color: white;
  border-color: #136dec;
  background: #136dec;
}

.input,
.select,
.textarea,
.chip {
  border-color: #334155;
  color: #f8fafc;
  background: #101822;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: rgba(19, 109, 236, 0.72);
  box-shadow: 0 0 0 5px rgba(19, 109, 236, 0.12);
}

.btn {
  min-height: 46px;
  border-radius: 10px;
  font-weight: 760;
}

.btn.secondary {
  color: #f8fafc;
  border-color: #334155;
  background: #1a2430;
}

.btn.ghost {
  color: #94a3b8;
}

.pill {
  color: #dbeafe;
  border-color: rgba(19, 109, 236, 0.38);
  background: rgba(19, 109, 236, 0.12);
}

.document-preview,
.document-preview .doc-table,
.document-preview p,
.document-preview td {
  color: #101114;
}

.auth-notice {
  border: 1px solid rgba(19, 109, 236, 0.38);
  border-radius: 12px;
  padding: 12px 14px;
  color: #dbeafe;
  background: rgba(19, 109, 236, 0.12);
  font-size: 14px;
  line-height: 1.45;
}

/* Modo Estrategia public platform */
body:has(.me-site),
body:has(.dashboard-stage),
body:has(.stage) {
  background: #ffffff;
}

.me-site {
  min-height: 100vh;
  color: #111827;
  background: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.me-site a {
  color: inherit;
  text-decoration: none;
}

.me-nav {
  position: sticky;
  z-index: 50;
  top: 0;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid #e5e7eb;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.me-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 860;
  letter-spacing: 0;
}

.me-logo i {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: #0b5ed7;
  box-shadow: 0 0 0 5px #eaf2ff;
}

.me-nav nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.me-nav a,
.me-footer a {
  color: #6b7280;
  font-size: 13px;
  font-weight: 720;
}

.me-nav a:hover,
.me-footer a:hover {
  color: #0b1f3a;
}

.me-nav-cta,
.me-primary,
.me-secondary {
  min-height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-weight: 780;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.me-nav-cta,
.me-primary {
  border: 1px solid #0b5ed7;
  color: #fff;
  background: #0b5ed7;
  box-shadow: 0 12px 28px rgba(11, 94, 215, 0.16);
}

.me-secondary {
  border: 1px solid #e5e7eb;
  color: #0b1f3a;
  background: #fff;
}

.me-primary:hover,
.me-secondary:hover,
.me-nav-cta:hover {
  transform: translateY(-1px);
}

.me-primary.full {
  width: 100%;
}

.me-hero,
.me-section,
.me-problem,
.me-promise,
.me-product,
.me-access {
  padding-inline: max(24px, calc((100vw - 1180px) / 2));
}

.me-hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: clamp(36px, 8vw, 96px);
  align-items: center;
  padding-block: 96px;
  background:
    radial-gradient(circle at 76% 20%, rgba(11, 94, 215, 0.1), transparent 32%),
    linear-gradient(180deg, #ffffff, #f9fafb);
}

.me-label {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  padding: 6px 11px;
  color: #0b5ed7;
  background: #eaf2ff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.me-hero h1 {
  margin: 22px 0 16px;
  color: #111827;
  font-size: clamp(54px, 8vw, 104px);
  line-height: 0.93;
  font-weight: 860;
  letter-spacing: 0;
}

.me-hero-lede {
  max-width: 760px;
  margin: 0 0 16px;
  color: #0b1f3a;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.14;
  font-weight: 680;
}

.me-hero p,
.me-section p,
.me-problem p,
.me-product p,
.me-access p,
.me-footer p {
  color: #6b7280;
  line-height: 1.68;
}

.me-hero-copy > p:not(.me-hero-lede) {
  max-width: 720px;
  font-size: 18px;
}

.me-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.me-hero-panel,
.me-login-panel,
.me-card-grid article,
.me-product-stack article,
.me-sequence,
.me-method,
.me-resource-list,
.me-contact-options {
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(11, 31, 58, 0.07);
}

.me-hero-panel {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.me-hero-panel > span {
  color: #6b7280;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.me-hero-panel div {
  border-radius: 16px;
  padding: 16px;
  background: #f9fafb;
}

.me-hero-panel strong,
.me-card-grid h3,
.me-product-stack strong,
.me-section h2,
.me-problem h2,
.me-product h2,
.me-access h2,
.me-footer strong {
  color: #111827;
}

.me-hero-panel small {
  display: block;
  margin-top: 6px;
  color: #6b7280;
  line-height: 1.45;
}

.me-problem,
.me-product,
.me-access,
.me-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.me-problem,
.me-section,
.me-product,
.me-access {
  padding-block: 96px;
}

.me-problem {
  border-block: 1px solid #e5e7eb;
  background: #fff;
}

.me-problem h2,
.me-section h2,
.me-product h2,
.me-access h2 {
  margin: 16px 0 0;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.me-problem > p,
.me-product p,
.me-access p {
  margin: 0;
  font-size: 18px;
}

.me-promise {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-block: 0;
  background: #e5e7eb;
}

.me-promise article {
  min-height: 230px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 34px;
  background: #ffffff;
}

.me-promise strong {
  color: #0b1f3a;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
}

.me-promise p {
  margin: 0;
  color: #6b7280;
}

.me-section.soft,
.me-access {
  background: #f9fafb;
}

.me-section-head {
  max-width: 820px;
  margin-bottom: 40px;
}

.me-section-head.center {
  margin-inline: auto;
  text-align: center;
}

.me-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.me-card-grid.six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.me-card-grid article {
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
}

.me-card-grid span {
  color: #0b5ed7;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.me-card-grid h3,
.me-product-stack strong {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
}

.me-card-grid p,
.me-product-stack span {
  margin: 0;
  color: #6b7280;
  line-height: 1.58;
}

.me-product {
  background:
    linear-gradient(135deg, #0b1f3a, #0f2f58);
  color: white;
}

.me-product .me-label {
  color: #dbeafe;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
}

.me-product h2,
.me-product p {
  color: white;
}

.me-product p {
  color: rgba(255, 255, 255, 0.76);
}

.me-product-stack {
  display: grid;
  gap: 14px;
}

.me-product-stack article {
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.me-product-stack strong {
  color: white;
}

.me-product-stack span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.me-sequence,
.me-method {
  padding: 24px;
}

.me-sequence p {
  margin: 0 0 14px;
  font-size: 18px;
}

.me-method {
  display: grid;
  gap: 10px;
}

.me-method span,
.me-resource-list span,
.me-contact-options span {
  border-radius: 14px;
  padding: 14px 16px;
  color: #0b1f3a;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  font-weight: 650;
}

.me-resource-list,
.me-contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px;
}

.me-access {
  align-items: center;
}

.me-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.me-metrics article {
  border-top: 1px solid #e5e7eb;
  padding-top: 14px;
}

.me-metrics strong {
  display: block;
  color: #0b1f3a;
  font-size: 36px;
  line-height: 1;
}

.me-metrics span {
  color: #6b7280;
  font-size: 13px;
}

.me-login-panel {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.me-login-panel .login-guide {
  border-color: #e5e7eb;
  background: #f9fafb;
}

.me-login-panel .login-guide p {
  color: #374151;
}

.me-form-note {
  margin: 0;
  color: #6b7280;
  font-size: 13px;
}

.me-footer {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 32px;
  padding: 56px max(24px, calc((100vw - 1180px) / 2));
  border-top: 1px solid #e5e7eb;
  background: #ffffff;
}

.me-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  justify-content: flex-end;
}

/* Authenticated surfaces use the same white Modo Estrategia system */
.app-shell {
  background: #ffffff;
  color: #111827;
}

.stage,
.dashboard-stage {
  width: min(1180px, 100%);
  min-height: calc(100vh - 56px);
  margin: 0 auto;
}

.topbar,
.dashboard-topbar {
  border-color: #e5e7eb;
  background: rgba(255, 255, 255, 0.92);
  color: #111827;
  box-shadow: 0 18px 58px rgba(11, 31, 58, 0.06);
}

.brand,
.save-state,
.progress-label,
.micro,
.lede,
.metric-tile span,
.checklist p,
.flow-card p,
.flow-help p {
  color: #6b7280;
}

.brand-mark,
.dashboard-logo i,
.progress-fill,
.btn.primary,
.flow-steps button.current span,
.flow-steps button.done span,
.checklist .done span {
  background: #0b5ed7;
}

.panel,
.flow-card,
.flow-help,
.continue-panel,
.checklist-panel,
.choice,
.setting-row,
.reference-card,
.quality-row,
.block,
.metric-tile {
  border-color: #e5e7eb;
  background: #ffffff;
  color: #111827;
  box-shadow: 0 18px 58px rgba(11, 31, 58, 0.06);
}

.input,
.select,
.textarea,
.chip {
  border-color: #e5e7eb;
  color: #111827;
  background: #ffffff;
}

.flow-next,
.choice.selected,
.chip.selected,
.quality-row.pass,
.status {
  color: #0b1f3a;
  border-color: #bfdbfe;
  background: #eaf2ff;
}

.flow-steps button {
  border-color: #e5e7eb;
  background: #ffffff;
  color: #111827;
}

@media (max-width: 780px) {
  .app-shell {
    padding: 18px;
  }

  .stage {
    min-height: calc(100vh - 36px);
  }

  .topbar,
  .footerbar,
  .grid.two,
  .grid.three,
  .dashboard-grid.four,
  .guided-layout,
  .home-grid,
  .obligation,
  .setting-row {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .topbar,
  .footerbar {
    display: grid;
  }

  .progress-wrap {
    width: 100%;
  }

  .web-auth {
    padding: 18px;
  }

  .site-nav {
    align-items: flex-start;
  }

  .web-auth-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .auth-hero {
    padding: 18px 0;
  }

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

  .account-tools {
    justify-content: flex-start;
  }

  .flow-rail {
    position: static;
    order: 2;
  }

  .guided-main {
    order: 1;
  }

  .isa-nav {
    position: sticky;
    height: auto;
    grid-template-columns: 1fr;
    align-items: start;
    padding: 18px;
  }

  .isa-nav-center {
    display: none;
  }

  .isa-nav nav,
  .isa-footer nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 14px;
  }

  .isa-hero {
    min-height: auto;
    padding: 72px 18px;
  }

  .isa-free-card,
  .isa-access,
  .isa-footer {
    display: grid;
  }

  .isa-steps,
  .isa-plan-grid,
  .isa-audience > div,
  .isa-clarity,
  .isa-feature-grid,
  .isa-metrics-strip {
    grid-template-columns: 1fr;
  }

  .isa-statement,
  .isa-manifest,
  .isa-process,
  .isa-plans,
  .isa-audience,
  .isa-faq,
  .isa-clarity,
  .isa-access {
    padding: 64px 18px;
  }
}

@media print {
  body {
    background: white;
  }

  .topbar,
  .footerbar,
  .no-print {
    display: none !important;
  }

  .stage,
  .app-shell {
    display: block;
    min-height: auto;
    padding: 0;
  }

  .panel,
  .document-preview {
    box-shadow: none;
    border: 0;
  }
}

/* Cinematic strategic line inspired by aerospace editorial systems */
body:has(.me-site) {
  background: #05070a;
}

.app-shell:has(.me-site) {
  padding: 0;
  background: #05070a;
}

.me-site {
  color: #f5f7fa;
  background: #05070a;
}

.me-nav {
  position: fixed;
  inset: 0 0 auto;
  width: 100%;
  min-height: 78px;
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(5, 7, 10, 0.96), rgba(5, 7, 10, 0.86));
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.me-site section {
  scroll-margin-top: 76px;
}

.me-logo span {
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.me-logo i {
  display: none;
}

.me-nav nav {
  justify-content: flex-start;
  gap: 32px;
}

.me-nav a,
.me-footer a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.095em;
  text-transform: uppercase;
}

.me-nav a:hover,
.me-footer a:hover {
  color: #ffffff;
}

.me-nav-cta {
  min-height: 42px;
  border-color: rgba(255, 255, 255, 0.36);
  border-radius: 5px;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.me-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: end;
  gap: 32px;
  padding: 128px 70px 88px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.48) 38%, rgba(0, 0, 0, 0.1) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.08) 34%, rgba(0, 0, 0, 0.78) 100%),
    url("assets/strategy-room-hero.png") center center / cover no-repeat;
}

.me-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  background: linear-gradient(180deg, transparent, #05070a);
  pointer-events: none;
}

.me-hero-copy,
.me-hero-panel {
  position: relative;
  z-index: 1;
}

.me-label {
  border: 0;
  border-radius: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  font-size: 14px;
  letter-spacing: 0.18em;
}

.me-hero h1 {
  max-width: 880px;
  margin: 28px 0 18px;
  color: #ffffff;
  font-size: clamp(50px, 7vw, 96px);
  line-height: 0.94;
  font-weight: 950;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.me-hero-lede {
  max-width: 720px;
  color: #ffffff;
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.22;
  font-weight: 520;
}

.me-hero-copy > p:not(.me-hero-lede) {
  max-width: 710px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.55;
}

.me-actions {
  margin-top: 34px;
}

.me-primary,
.me-secondary {
  min-height: 58px;
  border-radius: 4px;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.me-primary {
  border-color: rgba(255, 255, 255, 0.48);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.me-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
}

.me-primary:hover,
.me-secondary:hover,
.me-nav-cta:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #05070a !important;
}

.me-hero-panel {
  align-self: start;
  margin-top: 12px;
  border-color: rgba(255, 255, 255, 0.24);
  border-radius: 5px;
  padding: 16px;
  color: #ffffff;
  background: rgba(12, 16, 22, 0.42);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.me-hero-panel > span,
.me-hero-panel small {
  color: rgba(255, 255, 255, 0.62);
}

.me-hero-panel div {
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
}

.me-hero-panel strong {
  color: #ffffff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.me-problem,
.me-section,
.me-product,
.me-access {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #05070a;
}

.me-section.soft,
.me-access,
.me-footer {
  background: #0b0f15;
}

.me-problem h2,
.me-section h2,
.me-product h2,
.me-access h2,
.me-hero-panel strong,
.me-footer strong,
.me-card-grid h3,
.me-product-stack strong {
  color: #ffffff;
}

.me-problem p,
.me-section p,
.me-product p,
.me-access p,
.me-footer p,
.me-card-grid p,
.me-product-stack span {
  color: rgba(255, 255, 255, 0.64);
}

.me-promise {
  background: rgba(255, 255, 255, 0.08);
}

.me-promise article,
.me-card-grid article,
.me-product-stack article,
.me-sequence,
.me-method,
.me-resource-list,
.me-contact-options,
.me-login-panel {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
}

.me-promise strong {
  color: #ffffff;
}

.me-promise p,
.me-metrics span,
.me-form-note {
  color: rgba(255, 255, 255, 0.58);
}

.me-card-grid span,
.me-access .me-label,
.me-section .me-label,
.me-product .me-label {
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  border: 0;
}

.me-product {
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.95), rgba(11, 31, 58, 0.76)),
    #05070a;
}

.me-method span,
.me-resource-list span,
.me-contact-options span {
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.04);
}

.me-metrics article {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.me-metrics strong {
  color: #ffffff;
}

.me-login-panel .login-guide {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
}

.me-login-panel .login-guide p,
.me-login-panel .label {
  color: rgba(255, 255, 255, 0.84);
}

.me-login-panel .input,
.me-login-panel .select {
  border-color: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  background: rgba(0, 0, 0, 0.24);
}

.me-login-panel .segmented {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.24);
}

.me-login-panel .segmented button {
  color: rgba(255, 255, 255, 0.54);
}

.me-login-panel .segmented button.active {
  color: #05070a;
  background: #ffffff;
}

.me-footer {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.me-footer nav {
  align-items: start;
}

@media (max-width: 860px) {
  .me-nav {
    position: sticky;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
    background: #05070a;
  }

  .me-nav nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .me-hero,
  .me-problem,
  .me-product,
  .me-access,
  .me-split,
  .me-footer {
    grid-template-columns: 1fr;
  }

  .me-hero {
    min-height: 820px;
    padding: 96px 22px 70px;
  }

  .me-hero-panel {
    align-self: end;
    margin-top: 0;
  }

  .me-promise,
  .me-card-grid,
  .me-card-grid.six,
  .me-metrics {
    grid-template-columns: 1fr;
  }
}

/* Active cinematic spacing layer */
html {
  scroll-behavior: smooth;
}

.me-hero {
  padding-bottom: clamp(96px, 12vw, 150px);
}

.me-problem,
.me-section,
.me-product,
.me-access {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(118px, 13vw, 188px);
}

.me-problem > *,
.me-section > *,
.me-product > *,
.me-access > * {
  position: relative;
  z-index: 1;
}

.me-problem::before,
.me-section::before,
.me-product::before,
.me-access::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0 0 auto;
  height: 150px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent);
  pointer-events: none;
}

.me-problem::after,
.me-section::after,
.me-product::after,
.me-access::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.me-section-head {
  margin-bottom: clamp(58px, 7vw, 88px);
}

.me-section-head h2,
.me-problem h2,
.me-product h2,
.me-access h2 {
  margin-top: 22px;
}

.me-section-head p,
.me-problem > p,
.me-product p,
.me-access p {
  max-width: 640px;
  margin-top: 24px;
}

.me-card-grid,
.me-card-grid.six,
.me-card-grid.four {
  gap: clamp(20px, 2.5vw, 32px);
}

.me-card-grid article {
  min-height: 190px;
  padding: clamp(26px, 3vw, 36px);
}

.me-promise,
.me-promise article {
  min-height: 260px;
}

.me-promise article {
  padding: clamp(38px, 5vw, 60px);
}

.me-product-stack {
  gap: 24px;
}

.me-product-stack article,
.me-sequence,
.me-login-panel {
  padding: clamp(28px, 3.4vw, 40px);
}

.me-split,
.me-product,
.me-access,
.me-problem {
  gap: clamp(48px, 8vw, 120px);
}

.me-actions {
  margin-top: clamp(36px, 4vw, 54px);
}

.me-access .me-contact-options.compact {
  margin-top: clamp(36px, 5vw, 60px);
}

.me-footer {
  padding-block: clamp(72px, 9vw, 120px);
}

@media (max-width: 860px) {
  .me-hero {
    padding-bottom: 72px;
  }

  .me-problem,
  .me-section,
  .me-product,
  .me-access {
    padding-block: 88px;
  }

  .me-section-head {
    margin-bottom: 40px;
  }

  .me-promise,
  .me-promise article {
    min-height: 184px;
  }
}

/* Stronger blue breathing atmosphere */
@keyframes isaDeepBlueBreath {
  0%, 100% {
    opacity: 0.62;
    transform: scale(0.94) translate3d(0, 0, 0);
  }
  50% {
    opacity: 1;
    transform: scale(1.08) translate3d(0, -1.2%, 0);
  }
}

@keyframes isaBluePulseLine {
  0%, 100% {
    opacity: 0.28;
    filter: blur(18px);
  }
  50% {
    opacity: 0.82;
    filter: blur(24px);
  }
}

.me-site::before {
  inset: -34vmax;
  background:
    radial-gradient(circle at 50% 12%, rgba(19, 109, 236, 0.3), transparent 25vmax),
    radial-gradient(circle at 88% 45%, rgba(19, 109, 236, 0.22), transparent 30vmax),
    radial-gradient(circle at 12% 70%, rgba(44, 132, 255, 0.18), transparent 28vmax),
    radial-gradient(circle at 48% 100%, rgba(19, 109, 236, 0.16), transparent 34vmax);
  animation: isaDeepBlueBreath 6.8s ease-in-out infinite;
}

.me-site::after {
  width: 54vmax;
  height: 54vmax;
  background:
    radial-gradient(circle, rgba(59, 130, 246, 0.32), rgba(19, 109, 236, 0.14) 34%, transparent 66%);
  filter: blur(26px);
  opacity: 0.9;
}

.me-site > main::before {
  content: "";
  position: fixed;
  z-index: 0;
  left: 50%;
  top: 0;
  width: min(900px, 80vw);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.88), transparent);
  box-shadow:
    0 0 28px rgba(19, 109, 236, 0.85),
    0 0 90px rgba(19, 109, 236, 0.55);
  transform: translateX(-50%);
  animation: isaBluePulseLine 5.5s ease-in-out infinite;
  pointer-events: none;
}

.me-hero::before {
  inset: 0 -16% -18%;
  background:
    radial-gradient(circle at 64% 18%, rgba(19, 109, 236, 0.44), transparent 34%),
    radial-gradient(circle at 18% 76%, rgba(59, 130, 246, 0.24), transparent 34%),
    radial-gradient(circle at 52% 104%, rgba(19, 109, 236, 0.2), transparent 44%);
  animation: isaDeepBlueBreath 7.2s ease-in-out infinite;
}

.me-problem::before,
.me-section::before,
.me-product::before,
.me-access::before {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(19, 109, 236, 0.28), transparent 48%),
    linear-gradient(180deg, rgba(96, 165, 250, 0.08), transparent);
  animation: isaBluePulseLine 6.4s ease-in-out infinite;
}

.me-card-grid article,
.me-product-stack article,
.me-sequence,
.me-login-panel,
.me-mission-strip,
.intent-card,
.route-card {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.02),
    0 22px 76px rgba(19, 109, 236, 0.1);
}

.me-card-grid article:hover,
.me-product-stack article:hover,
.me-sequence:hover,
.me-login-panel:hover,
.intent-card:hover,
.route-card:hover {
  box-shadow:
    0 0 0 1px rgba(96, 165, 250, 0.18),
    0 26px 96px rgba(19, 109, 236, 0.28),
    inset 0 0 34px rgba(19, 109, 236, 0.08);
}

.me-primary,
.me-nav-cta,
.btn.primary {
  box-shadow:
    0 0 0 1px rgba(96, 165, 250, 0.18),
    0 0 26px rgba(19, 109, 236, 0.22);
}

.me-primary:hover,
.me-nav-cta:hover,
.btn.primary:hover {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.7),
    0 0 34px rgba(96, 165, 250, 0.5),
    0 18px 56px rgba(19, 109, 236, 0.38);
}

@media (max-width: 860px) {
  .me-site::before {
    inset: -42vmax;
    opacity: 0.82;
  }

  .me-site > main::before {
    width: 86vw;
    opacity: 0.72;
  }

  .me-hero::before {
    inset: 0 -52% -24%;
  }
}

/* Organic authority image integration */
.me-vision-split {
  align-items: center;
}

.me-vision-media {
  position: relative;
  margin: clamp(34px, 5vw, 64px) 0 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.035),
    0 34px 120px rgba(19, 109, 236, 0.24);
  isolation: isolate;
}

.me-vision-media::before,
.me-vision-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.me-vision-media::before {
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.72), rgba(5, 7, 10, 0.14) 46%, rgba(5, 7, 10, 0.08)),
    linear-gradient(180deg, rgba(5, 7, 10, 0.1), rgba(5, 7, 10, 0.52));
}

.me-vision-media::after {
  background:
    radial-gradient(circle at 72% 34%, rgba(19, 109, 236, 0.18), transparent 34%),
    linear-gradient(180deg, transparent 62%, rgba(19, 109, 236, 0.18));
  mix-blend-mode: screen;
  animation: isaSectionBreathe 7s ease-in-out infinite;
}

.me-vision-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.88) contrast(1.06) brightness(0.86);
  transform: scale(1.02);
}

.me-vision-media figcaption {
  position: absolute;
  z-index: 2;
  left: clamp(18px, 3vw, 30px);
  bottom: clamp(18px, 3vw, 30px);
  max-width: 260px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.me-vision-media:hover {
  border-color: rgba(96, 165, 250, 0.48);
  box-shadow:
    0 0 0 1px rgba(96, 165, 250, 0.16),
    0 38px 140px rgba(19, 109, 236, 0.34);
}

.me-vision-media:hover img {
  transform: scale(1.045);
  filter: saturate(0.98) contrast(1.08) brightness(0.9);
}

.me-vision-media,
.me-vision-media img {
  transition:
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 700ms ease,
    border-color 320ms ease,
    box-shadow 320ms ease;
}

@media (max-width: 860px) {
  .me-vision-media {
    margin-top: 28px;
    aspect-ratio: 4 / 5;
  }

  .me-vision-media img {
    object-position: 64% center;
  }

  .me-vision-media::before {
    background:
      linear-gradient(180deg, rgba(5, 7, 10, 0.18), rgba(5, 7, 10, 0.64)),
      linear-gradient(90deg, rgba(5, 7, 10, 0.34), rgba(5, 7, 10, 0.04));
  }
}

/* Breathing blue glow and pro interaction layer */
:root {
  --isa-blue: #136dec;
  --isa-blue-soft: rgba(19, 109, 236, 0.18);
  --isa-pointer-x: 50vw;
  --isa-pointer-y: 28vh;
}

@keyframes isaGlowBreathe {
  0%, 100% {
    opacity: 0.44;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.88;
    transform: scale(1.05);
  }
}

@keyframes isaSectionBreathe {
  0%, 100% {
    opacity: 0.48;
  }
  50% {
    opacity: 0.9;
  }
}

@keyframes isaSubtleDrift {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

.me-site {
  --glow-strength: 1;
  position: relative;
  overflow-x: hidden;
}

.me-site::before,
.me-site::after {
  content: "";
  position: fixed;
  z-index: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

.me-site::before {
  inset: -28vmax;
  background:
    radial-gradient(circle at 50% 14%, rgba(19, 109, 236, 0.16), transparent 28vmax),
    radial-gradient(circle at 82% 56%, rgba(19, 109, 236, 0.12), transparent 30vmax),
    radial-gradient(circle at 12% 76%, rgba(19, 109, 236, 0.1), transparent 26vmax);
  mix-blend-mode: screen;
  animation: isaGlowBreathe 7.5s ease-in-out infinite;
}

.me-site::after {
  width: 42vmax;
  height: 42vmax;
  left: var(--isa-pointer-x);
  top: var(--isa-pointer-y);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19, 109, 236, 0.2), transparent 62%);
  filter: blur(34px);
  opacity: 0.72;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  transition: left 260ms ease, top 260ms ease;
}

.me-site > .me-nav,
.me-site > main,
.me-site > .me-footer {
  position: relative;
  z-index: 1;
}

.me-hero {
  isolation: isolate;
}

.me-hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 8% -10% -12%;
  background:
    radial-gradient(circle at 64% 20%, rgba(19, 109, 236, 0.28), transparent 34%),
    radial-gradient(circle at 18% 76%, rgba(19, 109, 236, 0.16), transparent 36%);
  filter: blur(18px);
  mix-blend-mode: screen;
  animation: isaGlowBreathe 8.5s ease-in-out infinite;
  pointer-events: none;
}

.me-hero-copy,
.me-mission-strip {
  position: relative;
  z-index: 1;
}

.me-problem::before,
.me-section::before,
.me-product::before,
.me-access::before {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(19, 109, 236, 0.16), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
  animation: isaSectionBreathe 8s ease-in-out infinite;
}

.me-card-grid article,
.me-product-stack article,
.me-sequence,
.me-login-panel,
.me-mission-strip,
.intent-card,
.route-card,
.panel,
.flow-card,
.reference-card,
.choice {
  transform: translateZ(0);
  transition:
    transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease,
    opacity 260ms ease;
}

.me-card-grid article:hover,
.me-product-stack article:hover,
.me-sequence:hover,
.me-login-panel:hover,
.intent-card:hover,
.route-card:hover,
.panel:hover,
.reference-card:hover,
.choice:hover {
  border-color: rgba(19, 109, 236, 0.5);
  background: rgba(19, 109, 236, 0.075);
  box-shadow:
    0 24px 90px rgba(19, 109, 236, 0.15),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  transform: translateY(-5px);
}

.me-mission-strip,
.me-product-stack article:nth-child(2),
.me-card-grid article:nth-child(2n) {
  animation: isaSubtleDrift 9s ease-in-out infinite;
}

.me-primary,
.me-secondary,
.me-nav-cta,
.btn {
  position: relative;
  overflow: hidden;
}

.me-primary::after,
.me-secondary::after,
.me-nav-cta::after,
.btn::after {
  content: "";
  position: absolute;
  inset: -60% auto -60% -40%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: skewX(-18deg) translateX(-160%);
  transition: transform 560ms cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

.me-primary:hover::after,
.me-secondary:hover::after,
.me-nav-cta:hover::after,
.btn:hover::after {
  transform: skewX(-18deg) translateX(520%);
}

.me-primary:focus-visible,
.me-secondary:focus-visible,
.me-nav-cta:focus-visible,
.btn:focus-visible,
.input:focus-visible,
.select:focus-visible,
.textarea:focus-visible,
.chip:focus-visible,
.intent-card:focus-visible,
.route-card:focus-visible {
  outline: 2px solid rgba(96, 165, 250, 0.95);
  outline-offset: 4px;
}

.ux-motion-ready .ux-reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(26px);
  transition:
    opacity 760ms ease,
    filter 760ms ease,
    transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ux-motion-ready .ux-reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.ux-reduce-motion .me-site::before,
.ux-reduce-motion .me-site::after,
.ux-reduce-motion .me-hero::before,
.ux-reduce-motion .me-mission-strip,
.ux-reduce-motion .me-product-stack article,
.ux-reduce-motion .me-card-grid article {
  animation: none;
}

@media (hover: none) {
  .me-card-grid article:hover,
  .me-product-stack article:hover,
  .me-sequence:hover,
  .me-login-panel:hover,
  .intent-card:hover,
  .route-card:hover,
  .panel:hover,
  .reference-card:hover,
  .choice:hover {
    transform: none;
  }
}

@media (max-width: 860px) {
  .me-site::before {
    inset: -34vmax;
    opacity: 0.58;
  }

  .me-site::after {
    display: none;
  }

  .me-hero::before {
    inset: 0 -34% -18%;
    opacity: 0.68;
  }

  .me-nav {
    overflow: hidden;
  }

  .me-nav nav {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .me-nav nav::-webkit-scrollbar {
    display: none;
  }

  .me-nav a {
    white-space: nowrap;
  }

  .me-card-grid article,
  .me-product-stack article,
  .me-sequence,
  .me-login-panel {
    box-shadow: 0 18px 54px rgba(19, 109, 236, 0.08);
  }
}

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

/* Final cinematic spacing layer */
html {
  scroll-behavior: smooth;
}

.me-hero {
  padding-bottom: clamp(96px, 12vw, 150px);
}

.me-problem,
.me-section,
.me-product,
.me-access {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(118px, 13vw, 188px);
}

.me-problem > *,
.me-section > *,
.me-product > *,
.me-access > * {
  position: relative;
  z-index: 1;
}

.me-problem::before,
.me-section::before,
.me-product::before,
.me-access::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0 0 auto;
  height: 150px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent);
  pointer-events: none;
}

.me-problem::after,
.me-section::after,
.me-product::after,
.me-access::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.me-section-head {
  margin-bottom: clamp(58px, 7vw, 88px);
}

.me-section-head h2,
.me-problem h2,
.me-product h2,
.me-access h2 {
  margin-top: 22px;
}

.me-section-head p,
.me-problem > p,
.me-product p,
.me-access p {
  max-width: 640px;
  margin-top: 24px;
}

.me-card-grid,
.me-card-grid.six,
.me-card-grid.four {
  gap: clamp(20px, 2.5vw, 32px);
}

.me-card-grid article {
  min-height: 190px;
  padding: clamp(26px, 3vw, 36px);
}

.me-promise,
.me-promise article {
  min-height: 260px;
}

.me-promise article {
  padding: clamp(38px, 5vw, 60px);
}

.me-product-stack {
  gap: 24px;
}

.me-product-stack article,
.me-sequence,
.me-login-panel {
  padding: clamp(28px, 3.4vw, 40px);
}

.me-split,
.me-product,
.me-access,
.me-problem {
  gap: clamp(48px, 8vw, 120px);
}

.me-actions {
  margin-top: clamp(36px, 4vw, 54px);
}

.me-access .me-contact-options.compact {
  margin-top: clamp(36px, 5vw, 60px);
}

.me-footer {
  padding-block: clamp(72px, 9vw, 120px);
}

@media (max-width: 860px) {
  .me-hero {
    padding-bottom: 72px;
  }

  .me-problem,
  .me-section,
  .me-product,
  .me-access {
    padding-block: 88px;
  }

  .me-section-head {
    margin-bottom: 40px;
  }

  .me-promise,
  .me-promise article {
    min-height: 184px;
  }
}

/* Cinematic spacing pass */
html {
  scroll-behavior: smooth;
}

.me-hero {
  padding-bottom: clamp(96px, 12vw, 150px);
}

.me-problem,
.me-section,
.me-product,
.me-access {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(118px, 13vw, 188px);
}

.me-problem > *,
.me-section > *,
.me-product > *,
.me-access > * {
  position: relative;
  z-index: 1;
}

.me-problem::before,
.me-section::before,
.me-product::before,
.me-access::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0 0 auto;
  height: 140px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent);
  pointer-events: none;
}

.me-problem::after,
.me-section::after,
.me-product::after,
.me-access::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.me-section.soft::before,
.me-access::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
}

.me-section-head {
  margin-bottom: clamp(56px, 7vw, 84px);
}

.me-section-head h2,
.me-problem h2,
.me-product h2,
.me-access h2 {
  margin-top: 22px;
}

.me-section-head p,
.me-problem > p,
.me-product p,
.me-access p {
  max-width: 620px;
  margin-top: 24px;
}

.me-card-grid,
.me-card-grid.six,
.me-card-grid.four {
  gap: clamp(18px, 2.4vw, 30px);
}

.me-card-grid article {
  min-height: 186px;
  padding: clamp(24px, 3vw, 34px);
}

.me-promise {
  min-height: 260px;
}

.me-promise article {
  min-height: 260px;
  padding: clamp(36px, 5vw, 58px);
}

.me-product-stack {
  gap: 22px;
}

.me-product-stack article,
.me-sequence,
.me-login-panel {
  padding: clamp(26px, 3.2vw, 38px);
}

.me-split,
.me-product,
.me-access,
.me-problem {
  gap: clamp(44px, 8vw, 118px);
}

.me-actions {
  margin-top: clamp(34px, 4vw, 52px);
}

.me-access .me-contact-options.compact {
  margin-top: clamp(34px, 5vw, 58px);
}

.me-footer {
  padding-block: clamp(72px, 9vw, 120px);
}

@media (max-width: 860px) {
  .me-hero {
    padding-bottom: 72px;
  }

  .me-problem,
  .me-section,
  .me-product,
  .me-access {
    padding-block: 86px;
  }

  .me-section-head {
    margin-bottom: 38px;
  }

  .me-promise,
  .me-promise article {
    min-height: 180px;
  }
}

/* Minimal strategic platform alignment */
body:has(.me-site) {
  background: #ffffff;
}

.app-shell:has(.me-site) {
  padding: 0;
  background: #ffffff;
}

.me-site {
  color: #111827;
  background: #ffffff;
}

.me-nav {
  position: fixed;
  inset: 0 0 auto;
  width: 100%;
  min-height: 76px;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  padding: 0 max(32px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 7, 10, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: none;
}

.me-logo span {
  color: #ffffff;
  font-size: 19px;
  letter-spacing: 0.14em;
}

.me-nav nav {
  justify-content: flex-start;
  gap: 28px;
}

.me-nav a,
.me-footer a {
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.me-nav a {
  color: rgba(255, 255, 255, 0.72);
}

.me-nav a:hover {
  color: #ffffff;
}

.me-nav-cta {
  min-height: 40px;
  min-width: 148px;
  border-color: rgba(255, 255, 255, 0.34);
  border-radius: 4px;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
}

.me-hero {
  min-height: 94vh;
  grid-template-columns: minmax(0, 0.94fr) minmax(310px, 0.46fr);
  align-items: end;
  gap: clamp(28px, 6vw, 76px);
  padding: 132px max(32px, calc((100vw - 1180px) / 2)) 86px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.62) 34%, rgba(0, 0, 0, 0.1) 76%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0.62) 100%),
    url("assets/strategy-room-hero.png") center center / cover no-repeat;
}

.me-hero h1 {
  max-width: 850px;
  margin: 28px 0 18px;
  color: #ffffff;
  font-size: clamp(44px, 6.2vw, 82px);
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: none;
}

.me-hero-lede {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(20px, 2.3vw, 30px);
  line-height: 1.24;
  font-weight: 560;
}

.me-hero-copy > p:not(.me-hero-lede) {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.62;
}

.me-label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.me-actions {
  margin-top: 32px;
}

.me-primary,
.me-secondary {
  min-height: 50px;
  border-radius: 4px;
  padding: 0 22px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.me-primary {
  border-color: #0b1f3a;
  color: #ffffff;
  background: #0b1f3a;
}

.me-secondary {
  border-color: #d1d5db;
  color: #0b1f3a;
  background: #ffffff;
}

.me-hero .me-primary,
.me-hero .me-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

.me-primary:hover,
.me-secondary:hover,
.me-nav-cta:hover {
  transform: translateY(-1px);
}

.me-hero .me-primary:hover,
.me-hero .me-secondary:hover,
.me-nav-cta:hover {
  border-color: #ffffff;
  color: #05070a !important;
  background: #ffffff;
}

.me-hero-panel {
  align-self: center;
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 18px;
  background: rgba(9, 12, 17, 0.42);
  backdrop-filter: blur(12px);
}

.me-hero-panel > span,
.me-hero-panel small {
  color: rgba(255, 255, 255, 0.64);
}

.me-hero-panel div {
  border-radius: 5px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.me-hero-panel strong {
  color: #ffffff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.me-problem,
.me-section,
.me-product,
.me-access {
  border-top: 1px solid #e5e7eb;
  background: #ffffff;
}

.me-section.soft,
.me-access {
  background: #f9fafb;
}

.me-problem,
.me-section,
.me-product,
.me-access {
  padding-block: clamp(72px, 8vw, 104px);
}

.me-problem h2,
.me-section h2,
.me-product h2,
.me-access h2 {
  color: #111827;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.04;
  font-weight: 820;
}

.me-problem p,
.me-section p,
.me-product p,
.me-access p,
.me-card-grid p,
.me-product-stack span,
.me-footer p {
  color: #6b7280;
}

.me-section .me-label,
.me-product .me-label,
.me-access .me-label,
.me-card-grid span {
  color: #0b5ed7;
  letter-spacing: 0.1em;
}

.me-promise {
  border-block: 1px solid #e5e7eb;
  background: #e5e7eb;
}

.me-promise article {
  min-height: 190px;
  background: #ffffff;
}

.me-promise strong,
.me-card-grid h3,
.me-product-stack strong,
.me-footer strong {
  color: #111827;
}

.me-promise p {
  color: #6b7280;
}

.me-card-grid article,
.me-product-stack article,
.me-sequence,
.me-method,
.me-resource-list,
.me-contact-options,
.me-login-panel {
  border-color: #e5e7eb;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(11, 31, 58, 0.055);
}

.me-card-grid article {
  min-height: 210px;
}

.me-product {
  background: #0b1f3a;
}

.me-product h2,
.me-product .me-label,
.me-product p {
  color: #ffffff;
}

.me-product p {
  color: rgba(255, 255, 255, 0.74);
}

.me-product .me-primary {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.04);
}

.me-product-stack article {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.me-product-stack strong {
  color: #ffffff;
}

.me-product-stack span {
  color: rgba(255, 255, 255, 0.72);
}

.me-method span,
.me-resource-list span,
.me-contact-options span {
  border-color: #e5e7eb;
  color: #0b1f3a;
  background: #ffffff;
}

.me-metrics article {
  border-top-color: #e5e7eb;
}

.me-metrics strong {
  color: #0b1f3a;
}

.me-login-panel .login-guide {
  border-color: #e5e7eb;
  background: #f9fafb;
}

.me-login-panel .login-guide p,
.me-login-panel .label {
  color: #374151;
}

.me-login-panel .input,
.me-login-panel .select {
  border-color: #d1d5db;
  color: #111827;
  background: #ffffff;
}

.me-login-panel .segmented {
  border-color: #d1d5db;
  background: #f3f4f6;
}

.me-login-panel .segmented button {
  color: #6b7280;
}

.me-login-panel .segmented button.active {
  color: #ffffff;
  background: #0b1f3a;
}

.me-form-note,
.me-metrics span {
  color: #6b7280;
}

.me-footer {
  border-top-color: #e5e7eb;
  background: #ffffff;
}

.me-footer a {
  color: #6b7280;
}

.me-footer a:hover {
  color: #0b1f3a;
}

@media (max-width: 860px) {
  .me-nav {
    position: sticky;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 22px;
    background: #05070a;
  }

  .me-nav nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .me-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 82px 22px 64px;
  }

  .me-hero h1 {
    font-size: clamp(42px, 12vw, 64px);
  }
}

/* Modo Estrategia flow extensions */
.intent-screen,
.app-home {
  gap: 22px;
}

.intent-grid,
.route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.intent-card,
.route-card {
  min-height: 168px;
  display: grid;
  align-content: start;
  gap: 10px;
  border: 1px solid #282f39;
  border-radius: 14px;
  padding: 20px;
  color: #f8fafc;
  text-align: left;
  background: rgba(26, 36, 48, 0.88);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
}

.intent-card {
  cursor: pointer;
}

.intent-card span,
.route-card span {
  width: fit-content;
  color: #dbeafe;
  font-size: 11px;
  font-weight: 860;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.intent-card strong,
.route-card h3 {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.18;
}

.intent-card p,
.route-card p {
  margin: 0;
  color: #94a3b8;
  line-height: 1.55;
}

.intent-card.selected,
.route-card.primary-route {
  border-color: rgba(19, 109, 236, 0.62);
  background:
    linear-gradient(135deg, rgba(19, 109, 236, 0.18), rgba(26, 36, 48, 0.9)),
    rgba(26, 36, 48, 0.88);
}

.intent-footer-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.intent-footer-panel p {
  margin: 0;
  max-width: 740px;
}

.route-card .btn {
  width: fit-content;
  margin-top: auto;
}

.section-actions {
  margin-top: 28px;
}

.dashboard-grid.mini {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.dashboard-grid.mini .metric-tile {
  min-height: 96px;
}

.dashboard-grid.mini .metric-tile strong {
  font-size: clamp(22px, 4vw, 32px);
}

.me-card-grid article {
  min-height: 148px;
}

.me-section-head {
  max-width: 680px;
}

.me-hero h1 {
  max-width: 760px;
  font-size: clamp(48px, 5.8vw, 78px);
}

.me-hero-lede {
  max-width: 620px;
}

.me-card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.me-problem,
.me-section,
.me-product,
.me-access {
  padding-block: clamp(56px, 7vw, 82px);
}

.me-promise article {
  min-height: 148px;
  padding: 28px;
}

.me-access .me-contact-options.compact {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding: 14px;
  box-shadow: none;
}

.me-contact-options.compact span {
  padding: 10px 12px;
  font-size: 13px;
}

#consultoria,
#ideas,
#recursos,
#contacto {
  scroll-margin-top: 92px;
}

.full-width {
  width: 100%;
  margin-top: 16px;
}

.dashboard-logo span {
  letter-spacing: 0.12em;
}

@media (max-width: 900px) {
  .intent-grid,
  .route-grid,
  .me-card-grid.four {
    grid-template-columns: 1fr;
  }

  .intent-footer-panel {
    align-items: stretch;
    flex-direction: column;
  }
}

/* Starlink-style product pass: cinematic, dark, direct */
body:has(.me-site),
.app-shell:has(.me-site) {
  background: #05070a;
}

.me-site {
  color: #f8fafc;
  background: #05070a;
}

.me-nav {
  position: fixed;
  min-height: 74px;
  grid-template-columns: auto 1fr auto;
  padding: 0 max(28px, calc((100vw - 1220px) / 2));
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(5, 7, 10, 0.94), rgba(5, 7, 10, 0.48), transparent);
  backdrop-filter: none;
}

.me-logo span {
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.me-nav nav {
  justify-content: flex-start;
  gap: clamp(18px, 3vw, 38px);
}

.me-nav a,
.me-footer a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.me-nav a:hover,
.me-footer a:hover {
  color: #ffffff;
}

.me-nav-cta,
.me-primary,
.me-secondary {
  min-height: 46px;
  border-radius: 4px;
  padding: 0 22px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: none;
}

.me-nav-cta,
.me-primary,
.me-secondary,
.me-hero .me-primary,
.me-hero .me-secondary {
  border-color: rgba(255, 255, 255, 0.48);
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.035);
}

.me-primary:hover,
.me-secondary:hover,
.me-nav-cta:hover {
  border-color: #ffffff;
  color: #05070a !important;
  background: #ffffff;
}

.me-hero {
  min-height: 100vh;
  grid-template-columns: 1fr;
  align-items: end;
  gap: 28px;
  padding: 124px max(28px, calc((100vw - 1220px) / 2)) 72px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.58) 42%, rgba(0, 0, 0, 0.1) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.08) 40%, rgba(0, 0, 0, 0.84) 100%),
    url("assets/strategy-room-hero.png") center center / cover no-repeat;
}

.me-hero-copy {
  max-width: 790px;
}

.me-label {
  border: 0;
  border-radius: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.me-hero h1 {
  max-width: 860px;
  margin: 24px 0 16px;
  color: #ffffff;
  font-size: clamp(56px, 9vw, 116px);
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.me-hero-lede {
  max-width: 720px;
  color: #ffffff;
  font-size: clamp(21px, 2.5vw, 32px);
  line-height: 1.18;
  font-weight: 680;
}

.me-hero-copy > p:not(.me-hero-lede) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.55;
}

.me-mission-strip {
  width: min(720px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  background: rgba(5, 7, 10, 0.42);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.me-mission-strip div {
  min-height: 74px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.035);
}

.me-mission-strip strong {
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0.14em;
}

.me-mission-strip small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.me-problem,
.me-section,
.me-product,
.me-access,
.me-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: #05070a;
}

.me-section.soft,
.me-access {
  background: #0a0d12;
}

.me-problem,
.me-section,
.me-product,
.me-access {
  padding-block: clamp(70px, 9vw, 116px);
}

.me-problem h2,
.me-section h2,
.me-product h2,
.me-access h2,
.me-card-grid h3,
.me-product-stack strong,
.me-footer strong,
.me-sequence strong {
  color: #ffffff;
}

.me-problem h2,
.me-section h2,
.me-product h2,
.me-access h2 {
  max-width: 760px;
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 0.98;
}

.me-problem p,
.me-section p,
.me-product p,
.me-access p,
.me-footer p,
.me-card-grid p,
.me-product-stack span,
.me-sequence p {
  color: rgba(255, 255, 255, 0.64);
}

.me-promise {
  border-block: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.08);
}

.me-promise article {
  min-height: 150px;
  background: #05070a;
}

.me-promise strong {
  color: #ffffff;
  font-size: clamp(24px, 3vw, 40px);
}

.me-promise p {
  color: rgba(255, 255, 255, 0.58);
}

.me-card-grid article,
.me-product-stack article,
.me-sequence,
.me-contact-options,
.me-login-panel {
  border-color: rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
}

.me-card-grid article {
  min-height: 154px;
  padding: 22px;
}

.me-card-grid span,
.me-section .me-label,
.me-product .me-label,
.me-access .me-label {
  color: rgba(255, 255, 255, 0.72);
}

.me-product {
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.98), rgba(11, 31, 58, 0.76)),
    #05070a;
}

.me-product-stack article {
  background: rgba(255, 255, 255, 0.06);
}

.me-contact-options.compact span {
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.04);
}

.me-metrics article {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.me-metrics strong {
  color: #ffffff;
}

.me-metrics span,
.me-form-note {
  color: rgba(255, 255, 255, 0.58);
}

.me-login-panel .login-guide,
.me-login-panel .segmented {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.04);
}

.me-login-panel .login-guide p,
.me-login-panel .label {
  color: rgba(255, 255, 255, 0.8);
}

.me-login-panel .input,
.me-login-panel .select {
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  background: rgba(0, 0, 0, 0.28);
}

.me-login-panel .segmented button {
  color: rgba(255, 255, 255, 0.58);
}

.me-login-panel .segmented button.active {
  color: #05070a;
  background: #ffffff;
}

.me-footer {
  background: #05070a;
}

body:has(.dashboard-stage),
body:has(.stage),
.app-shell:has(.dashboard-stage),
.app-shell:has(.stage) {
  background: #05070a;
}

.dashboard-stage,
.stage {
  color: #f8fafc;
}

.dashboard-topbar,
.topbar,
.footerbar,
.dashboard-stage .panel,
.dashboard-stage .metric-tile,
.stage .panel,
.stage .flow-card,
.stage .flow-help,
.stage .continue-panel,
.stage .checklist-panel,
.stage .choice,
.stage .setting-row,
.stage .reference-card,
.stage .quality-row,
.stage .block,
.stage .metric-tile {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
  color: #f8fafc;
  box-shadow: none;
}

.dashboard-logo span,
.dashboard-stage h1,
.dashboard-stage .reference-title,
.dashboard-stage .metric-tile strong,
.stage h1,
.stage .reference-title,
.stage .choice-title,
.stage .metric-tile strong,
.stage .flow-card strong {
  color: #ffffff;
}

.dashboard-stage .lede,
.dashboard-stage .micro,
.dashboard-stage .metric-tile span,
.stage .brand,
.stage .save-state,
.stage .progress-label,
.stage .lede,
.stage .micro,
.stage .metric-tile span,
.stage .flow-card p,
.stage .flow-help p,
.stage .reference-meta,
.stage .choice small,
.stage .checklist p {
  color: rgba(255, 255, 255, 0.62);
}

.stage .input,
.stage .select,
.stage .textarea,
.stage .chip {
  border-color: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  background: rgba(0, 0, 0, 0.28);
}

.stage .chip.selected,
.stage .choice.selected,
.stage .quality-row.pass,
.stage .status,
.stage .flow-next {
  border-color: rgba(19, 109, 236, 0.38);
  color: #dbeafe;
  background: rgba(19, 109, 236, 0.14);
}

.stage .progress-track,
.stage .flow-steps button span,
.stage .tag {
  background: rgba(255, 255, 255, 0.08);
}

.stage .flow-steps button {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
  color: #ffffff;
}

.stage .document-preview,
.stage .document-preview p,
.stage .document-preview td,
.stage .document-preview th,
.stage .document-preview h1,
.stage .document-preview h2,
.stage .document-preview h3 {
  color: #101114;
}

.stage .document-preview {
  background: #ffffff;
}

@media (max-width: 860px) {
  .me-nav {
    position: sticky;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px 22px;
    background: #05070a;
  }

  .me-nav nav {
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .me-hero,
  .me-problem,
  .me-product,
  .me-access,
  .me-split,
  .me-footer {
    grid-template-columns: 1fr;
  }

  .me-hero {
    min-height: 760px;
    padding: 74px 22px 58px;
  }

  .me-hero h1 {
    font-size: clamp(48px, 15vw, 76px);
  }

  .me-mission-strip,
  .me-promise,
  .me-card-grid,
  .me-card-grid.six,
  .me-card-grid.four,
  .me-metrics {
    grid-template-columns: 1fr;
  }
}

/* Active final cinematic spacing layer */
html {
  scroll-behavior: smooth;
}

.me-hero {
  padding-bottom: clamp(96px, 12vw, 150px);
}

.me-problem,
.me-section,
.me-product,
.me-access {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(118px, 13vw, 188px);
}

.me-problem > *,
.me-section > *,
.me-product > *,
.me-access > * {
  position: relative;
  z-index: 1;
}

.me-problem::before,
.me-section::before,
.me-product::before,
.me-access::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0 0 auto;
  height: 150px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent);
  pointer-events: none;
}

.me-problem::after,
.me-section::after,
.me-product::after,
.me-access::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.me-section-head {
  margin-bottom: clamp(58px, 7vw, 88px);
}

.me-section-head h2,
.me-problem h2,
.me-product h2,
.me-access h2 {
  margin-top: 22px;
}

.me-section-head p,
.me-problem > p,
.me-product p,
.me-access p {
  max-width: 640px;
  margin-top: 24px;
}

.me-card-grid,
.me-card-grid.six,
.me-card-grid.four {
  gap: clamp(20px, 2.5vw, 32px);
}

.me-card-grid article {
  min-height: 190px;
  padding: clamp(26px, 3vw, 36px);
}

.me-promise,
.me-promise article {
  min-height: 260px;
}

.me-promise article {
  padding: clamp(38px, 5vw, 60px);
}

.me-product-stack {
  gap: 24px;
}

.me-product-stack article,
.me-sequence,
.me-login-panel {
  padding: clamp(28px, 3.4vw, 40px);
}

.me-split,
.me-product,
.me-access,
.me-problem {
  gap: clamp(48px, 8vw, 120px);
}

.me-actions {
  margin-top: clamp(36px, 4vw, 54px);
}

.me-access .me-contact-options.compact {
  margin-top: clamp(36px, 5vw, 60px);
}

.me-footer {
  padding-block: clamp(72px, 9vw, 120px);
}

@media (max-width: 860px) {
  .me-hero {
    padding-bottom: 72px;
  }

  .me-problem,
  .me-section,
  .me-product,
  .me-access {
    padding-block: 88px;
  }

  .me-section-head {
    margin-bottom: 40px;
  }

  .me-promise,
  .me-promise article {
    min-height: 184px;
  }
}

/* Final hero portrait override */
.me-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.93) 0%, rgba(0, 0, 0, 0.76) 36%, rgba(0, 0, 0, 0.24) 72%, rgba(0, 0, 0, 0.52) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.12) 42%, rgba(0, 0, 0, 0.9) 100%),
    url("assets/hugo-guzman-hero-ai.png") 58% center / cover no-repeat;
}

.me-hero::after {
  background:
    radial-gradient(circle at 74% 42%, rgba(19, 109, 236, 0.24), transparent 28%),
    radial-gradient(circle at 9% 78%, rgba(19, 109, 236, 0.17), transparent 24%);
}

.me-hero-copy {
  max-width: 760px;
}

.me-mission-strip {
  width: min(680px, 100%);
}

@media (max-width: 860px) {
  .me-hero {
    min-height: 820px;
    align-items: end;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.3) 44%, rgba(0, 0, 0, 0.94) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.28)),
      url("assets/hugo-guzman-hero-ai.png") 62% center / cover no-repeat;
  }

  .me-hero-copy {
    max-width: 100%;
  }
}
