/* Generated by scripts/build-site.mjs. Edit site/styles/*.css instead. */
@layer reset, tokens, base, layout, components, nen, pages, utilities, responsive;
@layer reset {
*, *::before, *::after { box-sizing: border-box; }
html { background: var(--color-bg-950); }
body { margin: 0; }
img, picture { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p, ol, ul { margin-top: 0; }
:where(a, button, input, select, textarea):focus-visible { outline: 3px solid var(--color-brand-400); outline-offset: 3px; }
[hidden] { display: none !important; }
}

@layer tokens {
:root {
  --color-bg-950: #020817;
  --color-bg-900: #071225;
  --color-surface-800: #0b1426;
  --color-surface-700: #111f38;
  --color-border-600: #203451;
  --color-brand-600: #0b5ed7;
  --color-brand-400: #33c8ff;
  --color-success-500: #32d583;
  --color-error-500: #ff5c7a;
  --gradient-action: linear-gradient(100deg, #20d8e5 0%, #43ef6b 100%);
  --gradient-action-hover: linear-gradient(100deg, #46e5ef 0%, #58f77e 100%);
  --shadow-action: 0 18px 40px rgba(50, 213, 131, 0.18);
  --color-warning-500: #f5b942;
  --color-text-primary: #f5f8ff;
  --color-text-secondary: #a8b3c7;
  --color-text-inverse: #020817;

  --font-sans: "IBM Plex Sans", Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --container: 1200px;
  --content-narrow: 760px;
  --gutter: 32px;
  --header-height: 76px;
  --section-space: 88px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --shadow-panel: 0 22px 70px rgba(0, 0, 0, 0.28);
  --transition: 180ms ease;

  --nen-cyan: #5de7ff;
  --nen-blue: #2f7dff;
  --nen-green: #42e680;
  --nen-amber: #ffd166;
  --nen-red: #ff7089;
  --nen-visor: #010611;
  --nen-expression-duration: 220ms;
  --nen-entrance-duration: 320ms;
}
}

@layer base {
body {
  min-width: 320px;
  color: var(--color-text-primary);
  background: var(--color-bg-950);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open { overflow: hidden; }
main { min-height: 65vh; }
h1, h2, h3 { margin-bottom: 18px; color: var(--color-text-primary); font-weight: 700; letter-spacing: 0; }
h1 { max-width: 920px; font-size: clamp(3rem, 3.5vw, 3.5rem); line-height: 1.04; text-wrap: balance; }
h2 { max-width: 760px; font-size: 2.5rem; line-height: 1.1; }
h3 { font-size: 1.5rem; line-height: 1.2; }
p { margin-bottom: 18px; color: var(--color-text-secondary); }
strong { color: var(--color-text-primary); }
small { font-size: 0.82rem; }

.lead { max-width: 720px; font-size: 1.125rem; line-height: 1.6; }
.kicker {
  margin-bottom: 18px;
  color: var(--color-brand-400);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.skip-link { position: fixed; z-index: 100; top: 12px; left: 12px; transform: translateY(-140%); padding: 10px 14px; border-radius: var(--radius-sm); background: var(--color-text-primary); color: var(--color-text-inverse); font-weight: 700; }
.skip-link:focus { transform: translateY(0); }
}

@layer layout {
.container { width: min(calc(100% - (var(--gutter) * 2)), var(--container)); margin-inline: auto; }
.narrow { max-width: var(--content-narrow); margin-inline: auto; text-align: center; }
.section { padding-block: var(--section-space); }
.section + .section { border-top: 1px solid rgba(255, 255, 255, 0.06); }
.section-alt { border-block: 1px solid rgba(32, 52, 81, 0.74); background: var(--color-bg-900); }
.section-head { max-width: 760px; margin-bottom: 48px; }
.narrow .section-head { margin-inline: auto; }
.section-action { display: flex; justify-content: center; margin-top: 38px; }

.site-header { position: sticky; z-index: 50; top: 0; min-height: var(--header-height); border-bottom: 1px solid rgba(32, 52, 81, 0.88); background: rgba(2, 8, 23, 0.98); }
.header-inner { min-height: var(--header-height); display: flex; align-items: center; gap: 34px; }
.brand { width: 210px; height: 42px; flex: 0 0 210px; display: inline-flex; align-items: center; }
.brand img { width: 100%; height: auto; }
.header-panel { flex: 1; display: flex; align-items: center; justify-content: flex-end; gap: 26px; }
.main-nav, .header-actions { display: flex; align-items: center; }
.main-nav { gap: 26px; }
.header-actions { gap: 10px; }
.main-nav a { position: relative; min-height: 44px; display: inline-flex; align-items: center; color: #cad5e6; font-size: 0.92rem; font-weight: 600; white-space: nowrap; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--color-text-primary); }
.main-nav a[aria-current="page"]::after { content: ""; position: absolute; right: 0; bottom: 2px; left: 0; height: 2px; border-radius: 2px; background: var(--color-brand-400); }
.menu-button { display: none; }

.hero-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr); gap: 44px; align-items: center; }
.product-hero-grid, .split, .contact-grid, .interior-hero-grid { display: grid; grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr); gap: 56px; align-items: center; }
.choice-grid, .product-grid, .case-grid, .solution-grid, .value-grid, .document-grid { display: grid; gap: 22px; }
.choice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.case-grid { grid-template-columns: 1fr; }
.solution-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.value-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.document-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.site-footer { padding: 64px 0 24px; border-top: 1px solid var(--color-border-600); background: #010611; }
.footer-grid { display: grid; grid-template-columns: 1.45fr repeat(4, minmax(0, 1fr)); gap: 34px; padding-bottom: 34px; }
.site-footer strong { display: block; margin-bottom: 12px; }
.site-footer a { display: block; width: fit-content; margin-block: 8px; color: var(--color-text-secondary); }
.site-footer a:hover { color: var(--color-brand-400); }
.footer-brand p { max-width: 330px; margin-bottom: 8px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 20px; border-top: 1px solid rgba(168, 179, 199, 0.18); color: var(--color-text-secondary); font-size: 0.88rem; }
.footer-bottom span:last-child { display: flex; gap: 18px; }
.footer-bottom a { display: inline; margin: 0; }
}

@layer components {
.actions, .form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button, .nav-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border-600);
  border-radius: 999px;
  padding-inline: 20px;
  background: transparent;
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1;
  transition: border-color var(--transition), background var(--transition), background-color var(--transition), box-shadow var(--transition), color var(--transition), transform var(--transition);
}
.button:hover, .nav-cta:hover { transform: translateY(-1px); border-color: var(--color-brand-400); }
.button.primary { border-color: transparent; background: var(--gradient-action); color: var(--color-text-inverse); box-shadow: var(--shadow-action); }
.button.primary:hover { background: var(--gradient-action-hover); box-shadow: 0 20px 48px rgba(50, 213, 131, 0.26); }
.button.secondary { background: rgba(17, 31, 56, 0.58); }
.button:disabled { cursor: not-allowed; opacity: 0.62; transform: none; }
.nav-cta { min-height: 42px; border-color: rgba(51, 200, 255, 0.52); font-size: 0.88rem; }
.text-link, .card-link { display: inline-flex; align-items: center; gap: 8px; color: var(--color-brand-400); font-weight: 700; }
.text-link::after,
.card-link::after,
.document-card::after,
.nen-action::after {
  content: "";
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m13 6 6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
}

.choice, .product-card, .case-card, .solution-card, .value-grid > .value-card, .document-card, .company-scope {
  border: 1px solid var(--color-border-600);
  border-radius: var(--radius-md);
  background: rgba(11, 20, 38, 0.76);
}
.choice { min-height: 210px; display: flex; flex-direction: column; padding: 28px; }
.choice > span, .solution-card > span, .case-card > span, .document-card > span { color: var(--color-brand-400); font-family: var(--font-mono); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.choice strong { margin: 18px 0 10px; font-size: 1.35rem; line-height: 1.25; }
.choice p { margin-bottom: 18px; }
.choice small { margin-top: auto; color: var(--color-brand-400); font-weight: 700; }
.choice:hover, .product-card:hover, .case-card:hover, .document-card:hover { border-color: rgba(51, 200, 255, 0.64); background: rgba(17, 31, 56, 0.82); }
.choice:focus-visible,
.product-card:focus-visible,
.case-card:focus-visible,
.document-card:focus-visible,
.solution-card:focus-visible,
.nen-choice:focus-visible,
.home-proof-tab:focus-visible,
[data-nen-trigger]:focus-visible,
.button:focus-visible,
.nav-cta:focus-visible,
.text-link:focus-visible,
.card-link:focus-visible {
  outline: 3px solid var(--color-brand-400);
  outline-offset: 4px;
}
.case-card[role="link"] { cursor: pointer; }

.product-card, .case-card { min-width: 0; display: flex; flex-direction: column; padding: 18px; }
.card-media { width: 100%; aspect-ratio: 16 / 10; margin: 18px 0; overflow: hidden; border-radius: var(--radius-sm); background: #e9eff7; }
.card-media img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.product-card-head { min-width: 0; display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; margin-bottom: 14px; }
.product-card-head > div { min-width: 0; }
.product-card-head small { display: block; margin-bottom: 6px; color: var(--color-brand-400); font-family: var(--font-mono); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.product-card h3 { margin-bottom: 0; }
.case-card h3 { margin-bottom: 8px; }
.nen-chip { width: fit-content; display: inline-flex; align-items: center; min-height: 26px; margin-bottom: 12px; border: 1px solid rgba(51, 200, 255, 0.32); border-radius: 999px; padding-inline: 10px; color: #a9dfff; font-family: var(--font-mono); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.product-card > strong { display: block; margin-bottom: 10px; line-height: 1.35; }
.product-card p, .case-card p { font-size: 0.94rem; }
.product-card .card-link, .availability-note { margin-top: auto; color: var(--color-brand-400); font-weight: 700; }
.availability-note { color: var(--color-text-secondary); }
.case-card-copy { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; }
.case-card-copy > span { color: var(--color-brand-400); font-family: var(--font-mono); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.case-facts { width: 100%; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin: 10px 0 12px; }
.case-facts div { min-width: 0; border: 1px solid rgba(32, 52, 81, 0.72); border-radius: var(--radius-sm); padding: 9px; background: rgba(2, 8, 23, 0.26); }
.case-facts dt { margin-bottom: 2px; color: var(--color-brand-400); font-family: var(--font-mono); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.case-facts dd { color: #dbe6f6; font-size: 0.78rem; font-weight: 700; line-height: 1.3; }
.case-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: auto; padding-top: 12px; }
.case-actions .button { min-height: 44px; }
.status-badge { display: inline-flex; align-items: center; min-height: 28px; border: 1px solid rgba(50, 213, 131, 0.48); border-radius: 999px; padding-inline: 10px; color: #79e8ad; font-family: var(--font-mono); font-size: 0.68rem; font-weight: 700; white-space: nowrap; }
.status-prototype { border-color: rgba(51, 200, 255, 0.5); color: var(--color-brand-400); }
.status-in-development { border-color: rgba(245, 185, 66, 0.5); color: #ffd176; }

.solution-card { min-height: 0; padding: 24px; }
.solution-card[data-nen-trigger] { cursor: pointer; transition: border-color var(--transition), background-color var(--transition), box-shadow var(--transition), transform var(--transition); }
.solution-card[data-nen-trigger]:hover,
.solution-card[data-nen-trigger].is-active,
[data-nen-trigger].is-active {
  border-color: rgba(50, 213, 131, 0.62);
  box-shadow: 0 18px 44px rgba(50, 213, 131, 0.08);
}
.solution-card h2 { margin-top: 18px; font-size: 1.38rem; }
.solution-card p { font-size: 0.93rem; }
.solution-card p strong { display: block; margin-bottom: 5px; color: var(--color-text-primary); font-size: 0.78rem; letter-spacing: 0.04em; text-transform: uppercase; }
.solution-problem { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--color-border-600); }
.solution-card .text-link { margin-top: 16px; }
.value-grid > .value-card { min-height: 180px; padding: 24px; }
.value-grid > .value-card > strong { display: block; margin-bottom: 12px; font-size: 1.15rem; }
.document-card { position: relative; min-height: 190px; display: grid; align-content: start; padding: 28px 56px 28px 28px; }
.document-card::after { position: absolute; right: 24px; bottom: 24px; color: var(--color-brand-400); }
.document-card h2 { margin: 20px 0 10px; font-size: 1.6rem; }

.brief-form { scroll-margin-top: calc(var(--header-height) + 16px); border: 1px solid var(--color-border-600); border-radius: var(--radius-md); padding: 30px; background: var(--color-surface-800); box-shadow: var(--shadow-panel); }
.brief-route-summary { display: grid; gap: 8px; margin-bottom: 24px; border: 1px solid rgba(51, 200, 255, 0.34); border-radius: var(--radius-sm); padding: 16px; background: linear-gradient(115deg, rgba(51, 200, 255, 0.1), rgba(5, 14, 29, 0.5)); }
.brief-route-summary[data-route="operations"] { border-color: rgba(50, 213, 131, 0.45); background: linear-gradient(115deg, rgba(50, 213, 131, 0.1), rgba(5, 14, 29, 0.5)); }
.brief-route-summary > div { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 6px 14px; color: var(--color-brand-400); font-family: var(--font-mono); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; }
.brief-route-summary > div small { color: var(--color-text-secondary); font: inherit; }
.brief-route-summary > strong { color: var(--color-text-primary); font-size: 1.08rem; }
.brief-route-summary > p { margin: 0; color: #b9c8da; font-size: 0.82rem; line-height: 1.5; }
.brief-form [data-step] { display: grid; gap: 18px; }
.brief-form label { display: grid; gap: 8px; color: var(--color-text-primary); font-weight: 600; }
.brief-form input, .brief-form select, .brief-form textarea { width: 100%; min-height: 50px; border: 1px solid #36506f; border-radius: var(--radius-sm); padding: 13px 14px; background: #0b172a; color: var(--color-text-primary); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03); }
.brief-form .form-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; min-height: 0; overflow: hidden; border: 0; padding: 0; opacity: 0; pointer-events: none; }
.brief-form textarea { min-height: 112px; }
.brief-form input::placeholder, .brief-form textarea::placeholder { color: #7f93ad; }
.brief-form select { color-scheme: dark; }
.brief-form input:hover, .brief-form select:hover, .brief-form textarea:hover { border-color: #4a6b8f; }
.brief-form input:focus, .brief-form select:focus, .brief-form textarea:focus { border-color: var(--color-brand-400); box-shadow: 0 0 0 3px rgba(51, 200, 255, 0.12); }
.brief-form input.is-complete, .brief-form select.is-complete, .brief-form textarea.is-complete { border-color: rgba(50, 213, 131, 0.62); box-shadow: inset 3px 0 0 rgba(50, 213, 131, 0.72); }
.brief-form input.is-invalid, .brief-form select.is-invalid, .brief-form textarea.is-invalid,
.brief-form [aria-invalid="true"] { border-color: var(--color-error-500); box-shadow: 0 0 0 3px rgba(255, 112, 137, 0.12), inset 3px 0 0 var(--color-error-500); }
.brief-form textarea { resize: vertical; }
.form-step { color: var(--color-brand-400); font-family: var(--font-mono); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; }
.brief-intro { margin: -4px 0 18px; color: #c5d2e3; font-size: 0.9rem; line-height: 1.55; }
.brief-security-note { margin: -4px 0 0; border-left: 2px solid rgba(51, 200, 255, 0.72); padding: 9px 11px; color: #aebed2; background: rgba(51, 200, 255, 0.055); font-size: 0.79rem; line-height: 1.48; }
.brief-noscript { margin: 0 0 18px; border: 1px solid rgba(51, 200, 255, 0.28); border-radius: var(--radius-sm); padding: 14px; color: #c5d2e3; background: rgba(51, 200, 255, 0.06); font-size: 0.86rem; line-height: 1.55; }
.brief-noscript a { color: var(--color-brand-400); font-weight: 700; }
.form-note { margin: 18px 0 0; font-size: 0.82rem; }
.consent-field { grid-template-columns: 22px 1fr; align-items: start; font-size: 0.88rem; font-weight: 400; }
.consent-field input { width: 20px; height: 20px; margin-top: 2px; }
.consent-field a { color: var(--color-brand-400); text-decoration: underline; }
.field-error { min-height: 0; margin: 0; color: var(--color-error-500); font-size: 0.78rem; font-weight: 600; line-height: 1.4; }
.field-error:empty { display: none; }
.consent-field .field-error { grid-column: 1 / -1; }
.form-status { min-height: 24px; margin: 16px 0 0; font-size: 0.9rem; }
.form-status[data-state="error"] { color: var(--color-error-500); }
.form-status[data-state="caution"] { color: var(--nen-amber); }
.form-status[data-state="sending"] { color: var(--color-brand-400); }
.form-success { border: 1px solid rgba(50, 213, 131, 0.45); border-radius: var(--radius-sm); padding: 20px; background: rgba(50, 213, 131, 0.08); }
.form-success strong { display: block; margin-bottom: 6px; }
.form-success p { margin: 0; }
}

@layer nen {
.nen-core {
  --nen-accent: var(--color-brand-400);
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(51, 200, 255, 0.32);
  border-radius: var(--radius-sm);
  padding: 12px;
  background:
    radial-gradient(circle at 18% 18%, color-mix(in srgb, var(--nen-accent) 18%, transparent), transparent 30%),
    linear-gradient(145deg, rgba(8, 22, 42, 0.94), rgba(2, 8, 23, 0.74));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
  isolation: isolate;
}

.nen-core::before {
  content: attr(data-nen-label);
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 4;
  border: 1px solid color-mix(in srgb, var(--nen-accent) 42%, transparent);
  border-radius: 999px;
  padding: 4px 8px;
  color: #dff7ff;
  background: rgba(2, 8, 23, 0.76);
  font-family: var(--font-mono);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nen-core-visual {
  position: relative;
  width: 84px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--nen-accent) 42%, transparent);
  border-radius: 26px;
  background:
    radial-gradient(circle at 52% 34%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(145deg, rgba(10, 31, 59, 0.98), rgba(2, 8, 23, 0.94));
  box-shadow:
    0 0 26px color-mix(in srgb, var(--nen-accent) 20%, transparent),
    inset 0 0 28px rgba(51, 200, 255, 0.08);
  animation: nen-core-idle 6.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.nen-core-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center 14%;
  filter: saturate(0.98) contrast(1.04) brightness(1.04);
}

.nen-core-node,
.nen-core-line,
.nen-core-scan {
  position: absolute;
  display: block;
  pointer-events: none;
}

.nen-core-node {
  z-index: 2;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--nen-accent);
  box-shadow: 0 0 16px color-mix(in srgb, var(--nen-accent) 74%, transparent);
  animation: nen-node-pulse 5.4s ease-in-out infinite;
}

.nen-core-node.node-a { top: 13%; left: 17%; }
.nen-core-node.node-b { top: 24%; right: 13%; animation-delay: 1.1s; }
.nen-core-node.node-c { right: 24%; bottom: 12%; animation-delay: 2.2s; }

.nen-core-line {
  z-index: 1;
  height: 1px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--nen-accent) 58%, transparent);
  opacity: 0.46;
  transform-origin: left center;
}

.nen-core-line.line-a {
  top: 22%;
  left: 23%;
  width: 50%;
  transform: rotate(13deg);
}

.nen-core-line.line-b {
  right: 26%;
  bottom: 22%;
  width: 44%;
  transform: rotate(-28deg);
}

.nen-core-scan {
  z-index: 3;
  inset: 18% 15%;
  border-radius: 20px;
  background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--nen-accent) 36%, transparent), transparent);
  opacity: 0;
  transform: translateY(-100%);
}

.nen-core-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
  padding-top: 18px;
}

.nen-core-copy strong {
  color: var(--color-text-primary);
}

.nen-core-copy span {
  color: var(--color-text-secondary);
  font-size: 0.88rem;
  line-height: 1.35;
}

.nen-core[data-nen-state="observe"] .nen-core-scan,
.nen-core[data-nen-state="caution"] .nen-core-scan {
  opacity: 0.62;
  animation: nen-scan 2.8s ease-in-out infinite;
}

.nen-core[data-nen-state="organize"] .nen-core-line,
.nen-core[data-nen-state="design"] .nen-core-line,
.nen-core[data-nen-state="build"] .nen-core-line {
  opacity: 0.82;
}

.nen-core[data-nen-state="design"] .nen-core-visual {
  border-radius: 20px;
}

.nen-core[data-nen-state="build"] .nen-core-node {
  border-radius: 3px;
}

.nen-core[data-nen-state="organize"] .nen-core-node.node-a { top: 18%; left: 18%; }
.nen-core[data-nen-state="organize"] .nen-core-node.node-b { top: 45%; right: 18%; }
.nen-core[data-nen-state="organize"] .nen-core-node.node-c { right: 38%; bottom: 12%; }
.nen-core[data-nen-pose="designing"] .nen-core-visual::after { content: ""; position: absolute; z-index: 2; inset: 12% 8% 12% 54%; border: 1px solid rgba(122, 156, 255, 0.6); border-radius: 7px; background: linear-gradient(transparent 31%, rgba(122, 156, 255, 0.28) 32% 34%, transparent 35% 66%, rgba(122, 156, 255, 0.2) 67% 69%, transparent 70%); }
.nen-core[data-nen-pose="building"] .nen-core-visual::after { content: ""; position: absolute; z-index: 2; top: 17%; right: 9%; width: 10px; height: 10px; border: 1px solid var(--nen-accent); border-radius: 2px; box-shadow: 0 18px 0 rgba(62, 221, 212, 0.18), 0 18px 0 1px var(--nen-accent), -18px 18px 0 rgba(62, 221, 212, 0.16), -18px 18px 0 1px var(--nen-accent); }
.nen-core[data-nen-pose="supporting"] .nen-core-visual::after { content: ""; position: absolute; z-index: 2; right: 10%; bottom: 12%; width: 20px; height: 9px; border-bottom: 2px solid var(--nen-green); border-left: 2px solid var(--nen-green); transform: rotate(-45deg); }

.nen-core[data-nen-paused] .nen-core-visual,
.nen-core[data-nen-paused] .nen-core-node,
.nen-core[data-nen-paused] .nen-core-scan {
  animation-play-state: paused;
}

.nen-form-companion {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  border: 1px solid rgba(51, 200, 255, 0.28);
  border-radius: var(--radius-md);
  padding: 14px;
  background: rgba(11, 20, 38, 0.58);
}

.nen-form-companion > p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

.nen-form-companion.compact {
  grid-template-columns: 1fr;
  align-items: center;
  margin: 0 0 18px;
  position: sticky;
  z-index: 12;
  top: calc(var(--header-height) + 14px);
  border-color: color-mix(in srgb, var(--nen-accent, var(--nen-cyan)) 36%, var(--color-border-600));
  background: rgba(5, 14, 29, 0.94);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.nen-form-companion.compact > p {
  display: none;
}

.nen-form-core {
  grid-template-columns: 76px minmax(0, 1fr);
  padding: 10px;
}

.nen-form-core .nen-core-visual {
  width: 68px;
  border-radius: 22px;
}

.nen-form-core::before {
  top: 9px;
  right: 9px;
}

.nen-guide-core {
  width: min(100%, 390px);
}

.nen-guide .nen-core-copy span {
  display: none;
}

.nen-method-section {
  background: var(--color-bg-950);
}

.nen-method {
  display: grid;
  grid-template-columns: minmax(240px, 0.86fr) minmax(220px, 0.68fr) minmax(320px, 1.12fr);
  grid-template-areas:
    "steps stage head"
    "steps stage detail";
  grid-template-rows: auto 1fr;
  gap: 22px;
  align-items: stretch;
}

.nen-method-steps {
  grid-area: steps;
  display: grid;
  gap: 10px;
}

.nen-method-active-head {
  grid-area: head;
  border: 1px solid rgba(51, 200, 255, 0.28);
  border-bottom: 0;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  padding: 28px 28px 8px;
  background: rgba(11, 20, 38, 0.78);
  scroll-margin-top: calc(var(--header-height) + 14px);
}

.nen-method-active-head h2 { margin-bottom: 0; font-size: 2rem; }

.nen-method-steps button {
  width: 100%;
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  align-content: center;
  border: 1px solid var(--color-border-600);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  background: rgba(11, 20, 38, 0.72);
  color: var(--color-text-primary);
  text-align: left;
  cursor: pointer;
  transition: border-color var(--transition), background-color var(--transition), transform var(--transition);
}

.nen-method-steps button:hover,
.nen-method-steps button[aria-selected="true"] {
  border-color: rgba(51, 200, 255, 0.68);
  background: rgba(17, 31, 56, 0.9);
}

.nen-method-steps button[aria-selected="true"] {
  border-color: rgba(50, 213, 131, 0.6);
  box-shadow: inset 3px 0 0 var(--color-success-500), 0 18px 38px rgba(50, 213, 131, 0.08);
  transform: translateX(4px);
}

.nen-method-steps button[aria-selected="true"] span {
  color: var(--color-success-500);
}

.nen-method-steps span {
  grid-row: 1 / 3;
  color: var(--color-brand-400);
  font-family: var(--font-mono);
  font-weight: 700;
}

.nen-method-steps small {
  color: var(--color-text-secondary);
  line-height: 1.35;
}

.nen-method-stage {
  grid-area: stage;
  position: relative;
  min-height: 520px;
  max-height: 560px;
}

.nen-method-avatar {
  min-height: 520px;
  max-height: 560px;
}

.nen-method-avatar img {
  min-height: 520px;
  max-height: 560px;
  object-fit: cover;
  object-position: center 12%;
}

.nen-method-diagram {
  position: absolute;
  z-index: 4;
  inset: auto 18px 96px 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  pointer-events: none;
}

.nen-method-diagram span,
.nen-method-diagram i {
  min-height: 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-brand-400) 78%, transparent);
  box-shadow: 0 0 18px rgba(51, 200, 255, 0.28);
  opacity: 0.58;
}

.nen-method-diagram i {
  grid-column: 1 / -1;
  min-height: 2px;
  opacity: 0.34;
}

.nen-method-detail {
  grid-area: detail;
  border: 1px solid rgba(51, 200, 255, 0.28);
  border-top: 0;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 8px 28px 28px;
  background: rgba(11, 20, 38, 0.78);
}

.nen-method-progress {
  width: fit-content;
  margin: 0 0 12px;
  border: 1px solid rgba(50, 213, 131, 0.42);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--color-success-500);
  background: rgba(50, 213, 131, 0.08);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nen-method-detail dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.nen-method-detail div {
  border-top: 1px solid var(--color-border-600);
  padding-top: 14px;
}

.nen-method-detail dt {
  margin-bottom: 6px;
  color: var(--color-brand-400);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nen-method-detail dd {
  margin: 0;
  color: var(--color-text-secondary);
}

.nen-method-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.nen-method-controls .button {
  min-height: 44px;
}

html.nen-static-fallback .nen-core-visual,
html.nen-static-fallback .nen-core-node,
html.nen-static-fallback .nen-core-scan {
  animation: none !important;
  transform: none !important;
}

html.nen-static-fallback .nen-character-media,
html.nen-static-fallback .nen-context-signals,
html.nen-static-fallback .nen-context-signals span,
html.nen-static-fallback .nen-context-signals i {
  animation: none !important;
}

@keyframes nen-scan {
  0%, 18% { transform: translateY(-100%); opacity: 0; }
  38%, 62% { opacity: 0.58; }
  82%, 100% { transform: translateY(100%); opacity: 0; }
}

@keyframes nen-node-pulse {
  0%, 100% { opacity: 0.38; transform: scale(0.86); }
  45% { opacity: 0.92; transform: scale(1.12); }
  70% { opacity: 0.58; transform: scale(0.98); }
}

@keyframes nen-core-idle {
  0%, 100% { transform: translate3d(0, 0, 0); }
  44% { transform: translate3d(0, -3px, 0); }
  68% { transform: translate3d(1px, -1px, 0); }
}

@media (max-width: 980px) {
  .nen-method {
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "stage"
      "detail"
      "steps";
    grid-template-rows: auto;
  }

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

  .nen-method-steps button[aria-selected="true"] {
    transform: translateY(-2px);
  }

  .nen-method--selector-docked .nen-method-steps {
    position: sticky;
    z-index: 24;
    bottom: max(8px, env(safe-area-inset-bottom));
    border: 1px solid rgba(51, 200, 255, 0.3);
    border-radius: var(--radius-md);
    padding: 8px;
    background: rgba(5, 14, 29, 0.96);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(16px);
  }
}

@media (max-width: 680px) {
  .nen-method-steps {
    display: flex;
    gap: 8px;
    margin-inline: calc(var(--gutter) * -0.25);
    padding: 4px calc(var(--gutter) * 0.25) 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .nen-method-steps button {
    flex: 0 0 min(74vw, 260px);
    min-height: 74px;
    scroll-snap-align: center;
  }

  .nen-method-steps button small {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }

  .nen-method-active-head {
    padding: 20px 20px 6px;
  }

  .nen-method-active-head h2 { font-size: 1.72rem; }

  .nen-method-detail {
    padding: 6px 20px 20px;
  }

  .nen-method-stage,
  .nen-method-avatar,
  .nen-method-avatar img {
    min-height: 330px;
    max-height: 360px;
  }

  .nen-method-avatar img { object-position: center 14%; }
}

@media (prefers-reduced-motion: reduce) {
  .nen-core-visual,
  .nen-core-node,
  .nen-core-scan {
    animation: none !important;
    transform: none !important;
  }
}

/* Nen living system ----------------------------------------------------- */
.nen-character {
  --nen-accent: var(--nen-cyan);
  --nen-gaze-x: 0px;
  --nen-gaze-y: 0px;
  --nen-pose-rotation: 0deg;
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--nen-accent) 38%, var(--color-border-600));
  border-radius: var(--radius-md);
  background: radial-gradient(circle at 55% 30%, color-mix(in srgb, var(--nen-accent) 18%, transparent), transparent 34%), linear-gradient(145deg, #07162b, #020817 76%);
  box-shadow: var(--shadow-panel), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  isolation: isolate;
}

.nen-character[data-nen-state="organize"] { --nen-accent: #4fc3ff; }
.nen-character[data-nen-state="design"] { --nen-accent: #7a9cff; }
.nen-character[data-nen-state="build"] { --nen-accent: #3eddd4; }
.nen-character[data-nen-state="support"] { --nen-accent: var(--nen-green); }
.nen-character[data-nen-expression="soft-alert"] { --nen-accent: var(--nen-amber); }
.nen-character[data-nen-feedback="error"] { --nen-accent: var(--nen-red); }

.nen-character-stage {
  position: relative;
  min-height: inherit;
  overflow: hidden;
}

.nen-character-media {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  aspect-ratio: 1;
  margin-inline: auto;
  transform: translate3d(0, 0, 0) rotate(calc(var(--nen-head-rotation, 0deg) + var(--nen-pose-rotation, 0deg)));
  transform-origin: 52% 52%;
  animation: nen-breathe 6.4s ease-in-out infinite;
}

.nen-character-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  min-height: 0;
  max-height: none;
}

.nen-character[data-nen-paused] .nen-character-media,
.nen-character[data-nen-paused] .nen-context-signals,
.nen-character[data-nen-paused] .nen-context-signals span,
.nen-character[data-nen-paused] .nen-context-signals i {
  animation-play-state: paused;
}

.nen-character--avatar .nen-character-stage { aspect-ratio: 1; min-height: 0; }
.nen-character--avatar .nen-character-media { width: 145%; margin-left: -22%; }
.nen-character--bust .nen-character-stage { min-height: 280px; max-height: 340px; }
.nen-character--half .nen-character-stage { min-height: 420px; max-height: 480px; }
.nen-character--hero .nen-character-stage { min-height: 470px; }

.nen-character--bust .nen-character-media,
.nen-character--hero .nen-character-media {
  width: min(112%, 590px);
  margin-top: -2%;
}

.nen-character--half .nen-character-media {
  width: min(126%, 560px);
  margin-top: -1%;
  margin-left: -9%;
}

.nen-character--bust[data-nen-fallback-asset="nen-avatar-base"] .nen-character-media img,
.nen-character--half[data-nen-fallback-asset="nen-avatar-base"] .nen-character-media img,
.nen-character--hero[data-nen-fallback-asset="nen-avatar-base"] .nen-character-media img {
  -webkit-mask-image: radial-gradient(circle at 0 100%, transparent 0 24%, rgba(0, 0, 0, 0.22) 31%, #000 43%);
  mask-image: radial-gradient(circle at 0 100%, transparent 0 24%, rgba(0, 0, 0, 0.22) 31%, #000 43%);
}

.nen-method-avatar .nen-character-media img { filter: brightness(1.12) contrast(1.03); }

.nen-character--bust .nen-character-stage::after,
.nen-character--half .nen-character-stage::after,
.nen-character--hero .nen-character-stage::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(2, 8, 23, 0.95) 58%);
  pointer-events: none;
}

.nen-status-chip {
  position: absolute;
  z-index: 8;
  top: 14px;
  left: 14px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid color-mix(in srgb, var(--nen-accent) 52%, transparent);
  border-radius: 999px;
  padding-inline: 10px;
  color: #e7fbff;
  background: rgba(2, 8, 23, 0.78);
  font-family: var(--font-mono);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.nen-status-chip > i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--nen-accent);
  box-shadow: 0 0 12px var(--nen-accent);
}

.nen-visor {
  position: absolute;
  z-index: 3;
  top: 25.9%;
  left: 29.4%;
  width: 58%;
  height: 32.5%;
  overflow: hidden;
  contain: paint;
  border-radius: 34% 30% 39% 42% / 27% 27% 47% 49%;
  clip-path: inset(0 round 34% 30% 39% 42% / 27% 27% 47% 49%);
  background: radial-gradient(ellipse at 52% 42%, #06162a, var(--nen-visor) 74%);
  box-shadow: inset 0 0 24px rgba(93, 231, 255, 0.06);
  transition: opacity var(--nen-expression-duration) ease;
}

.nen-eye,
.nen-mouth {
  position: absolute;
  display: block;
  color: var(--nen-cyan);
  transition: inset var(--nen-expression-duration) ease, width var(--nen-expression-duration) ease, height var(--nen-expression-duration) ease, border-radius var(--nen-expression-duration) ease, transform var(--nen-expression-duration) ease;
}

.nen-eye {
  top: 29%;
  width: 11%;
  height: 35%;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 16px currentColor, 0 0 30px color-mix(in srgb, currentColor 52%, transparent);
  transform: translate(var(--nen-gaze-x), var(--nen-gaze-y));
  transform-origin: center;
}

.nen-eye--left { left: 24%; }
.nen-eye--right { right: 18%; }

.nen-mouth {
  left: 39%;
  bottom: 18%;
  width: 22%;
  height: 12%;
  margin-left: 3%;
  border-bottom: clamp(2px, 0.35vw, 4px) solid currentColor;
  border-radius: 0 0 999px 999px;
  filter: drop-shadow(0 0 7px currentColor);
}

.nen-character.is-blinking .nen-eye { transform: translate(var(--nen-gaze-x), var(--nen-gaze-y)) scaleY(0.08); }

.nen-character[data-nen-expression="happy"] .nen-eye,
.nen-character[data-nen-expression="greeting"] .nen-eye,
.nen-character[data-nen-expression="confirming"] .nen-eye {
  top: 37%;
  height: 18%;
  border-radius: 0 0 999px 999px;
  background: transparent;
  border-bottom: 4px solid currentColor;
  box-shadow: none;
}

.nen-character[data-nen-expression="happy"] .nen-mouth { left: 34%; bottom: 14%; width: 32%; height: 16%; }

.nen-character[data-nen-expression="processing"] .nen-eye {
  top: 39%;
  width: 16%;
  height: 7%;
  border-radius: 999px;
}

.nen-character[data-nen-expression="thinking"] .nen-eye--right,
.nen-character[data-nen-expression="curious"] .nen-eye--right { width: 8%; height: 25%; top: 34%; }
.nen-character[data-nen-expression="thinking"] .nen-mouth { left: 45%; width: 16%; transform: rotate(-8deg); }
.nen-character[data-nen-expression="curious"] .nen-mouth { left: 43%; width: 14%; height: 14%; border: 3px solid currentColor; border-radius: 50%; }
.nen-character[data-nen-expression="observing"] .nen-eye { width: 9%; height: 38%; }
.nen-character[data-nen-expression="explaining"] .nen-mouth { left: 43%; width: 15%; height: 13%; border: 3px solid currentColor; border-radius: 50%; }
.nen-character[data-nen-expression="processing"] .nen-mouth { left: 35%; width: 30%; border-bottom-style: dotted; }
.nen-character[data-nen-expression="soft-alert"] .nen-eye { color: var(--nen-amber); height: 21%; top: 37%; transform: translate(var(--nen-gaze-x), var(--nen-gaze-y)) rotate(8deg); }
.nen-character[data-nen-expression="soft-alert"] .nen-eye--right { transform: translate(var(--nen-gaze-x), var(--nen-gaze-y)) rotate(-8deg); }
.nen-character[data-nen-expression="soft-alert"] .nen-mouth { color: var(--nen-amber); border-radius: 999px 999px 0 0; border-top: 3px solid currentColor; border-bottom: 0; }

/* Cada expresión cambia al menos dos señales visibles: ojos, boca, mirada o inclinación. */
.nen-character[data-nen-expression="greeting"] .nen-eye--left {
  top: 30%; width: 11%; height: 34%; border: 0; border-radius: 999px; background: currentColor; box-shadow: 0 0 16px currentColor;
}
.nen-character[data-nen-expression="greeting"] .nen-eye--right { top: 42%; width: 15%; height: 4px; }
.nen-character[data-nen-expression="greeting"] .nen-mouth { left: 35%; bottom: 15%; width: 30%; }

.nen-character[data-nen-expression="confirming"] .nen-eye { top: 34%; width: 15%; height: 18%; border-bottom-width: 4px; }
.nen-character[data-nen-expression="confirming"] .nen-mouth { left: 33%; bottom: 13%; width: 34%; height: 16%; }
.nen-character[data-nen-expression="confirming"] .nen-visor::after {
  content: "";
  position: absolute;
  top: 54%;
  right: 10%;
  width: 8%;
  height: 13%;
  border-right: 3px solid var(--nen-green);
  border-bottom: 3px solid var(--nen-green);
  filter: drop-shadow(0 0 6px var(--nen-green));
  transform: rotate(45deg);
}

.nen-character[data-nen-expression="designing"] .nen-eye {
  top: 40%; width: 16%; height: 5px; border-radius: 999px; transform: translate(var(--nen-gaze-x), var(--nen-gaze-y)) rotate(7deg);
}
.nen-character[data-nen-expression="designing"] .nen-eye--right { transform: translate(var(--nen-gaze-x), var(--nen-gaze-y)) rotate(-7deg); }
.nen-character[data-nen-expression="designing"] .nen-mouth { left: 41%; bottom: 18%; width: 18%; height: 8%; }

.nen-character[data-nen-expression="building"] .nen-eye {
  top: 34%; width: 13%; height: 24%; border-radius: 5px; clip-path: polygon(12% 0, 88% 0, 100% 100%, 0 100%);
}
.nen-character[data-nen-expression="building"] .nen-mouth { left: 35%; bottom: 14%; width: 30%; height: 14%; }

.nen-character[data-nen-expression="support-neutral"] .nen-eye { top: 34%; width: 9%; height: 29%; opacity: 0.92; }
.nen-character[data-nen-expression="support-neutral"] .nen-mouth { left: 36%; bottom: 16%; width: 28%; height: 13%; }

.nen-character[data-nen-expression="waiting"] .nen-eye { top: 41%; width: 8%; height: 12%; opacity: 0.72; }
.nen-character[data-nen-expression="waiting"] .nen-mouth { left: 43%; bottom: 20%; width: 14%; height: 0; border-radius: 0; opacity: 0.72; }

.nen-character[data-nen-expression="empty"] .nen-eye { top: 43%; width: 13%; height: 4px; border-radius: 999px; opacity: 0.58; box-shadow: 0 0 8px currentColor; }
.nen-character[data-nen-expression="empty"] .nen-mouth { left: 45%; bottom: 19%; width: 10%; height: 0; border-radius: 0; opacity: 0.55; }

.nen-character[data-nen-expression="explaining"] .nen-eye--left { width: 12%; height: 34%; }
.nen-character[data-nen-expression="explaining"] .nen-eye--right { top: 35%; width: 8%; height: 24%; }
.nen-character[data-nen-expression="explaining"] .nen-mouth { left: 43%; bottom: 14%; width: 15%; height: 15%; }

.nen-character[data-nen-expression="celebration"] { --nen-accent: var(--nen-green); }
.nen-character[data-nen-expression="celebration"] .nen-eye { top: 34%; width: 16%; height: 17%; border: 0; border-top: 4px solid currentColor; border-radius: 999px 999px 0 0; background: transparent; box-shadow: none; }
.nen-character[data-nen-expression="celebration"] .nen-mouth { left: 31%; bottom: 11%; width: 38%; height: 18%; border-bottom-width: 4px; }

.nen-character--avatar .nen-eye { box-shadow: 0 0 9px currentColor, 0 0 16px color-mix(in srgb, currentColor 42%, transparent); }
.nen-character--avatar .nen-mouth { border-bottom-width: 2px; filter: drop-shadow(0 0 4px currentColor); }
.nen-character--avatar:is([data-nen-expression="happy"], [data-nen-expression="greeting"], [data-nen-expression="confirming"]) .nen-eye { border-bottom-width: 2px; box-shadow: none; }
.nen-character--avatar[data-nen-expression="celebration"] .nen-eye { border-top-width: 2px; box-shadow: none; }
.nen-character--avatar[data-nen-expression="soft-alert"] .nen-mouth { border-top-width: 2px; }
.nen-character--avatar[data-nen-expression="celebration"] .nen-mouth { border-bottom-width: 2px; }

.nen-core[data-nen-expression="confirming"] { --nen-accent: var(--nen-green); }
.nen-core[data-nen-expression="soft-alert"] { --nen-accent: var(--nen-amber); }
.nen-core[data-nen-feedback="error"] { --nen-accent: var(--color-error-500); }
.nen-core[data-nen-expression="support-neutral"] { --nen-accent: var(--nen-green); }
.nen-core[data-nen-expression="celebration"] { --nen-accent: var(--nen-green); }

.nen-context-signals {
  position: absolute;
  z-index: 0;
  inset: 12% 8% 18%;
  border: 1px solid color-mix(in srgb, var(--nen-accent) 18%, transparent);
  border-radius: 50%;
  opacity: 0.75;
}

.nen-context-signals::before,
.nen-context-signals::after {
  content: "";
  position: absolute;
  display: block;
  pointer-events: none;
}

.nen-context-signals span {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--nen-accent);
  box-shadow: 0 0 18px var(--nen-accent);
  animation: nen-signal-pulse 4.8s ease-in-out infinite;
}
.nen-context-signals span:nth-child(1) { top: 13%; left: 18%; }
.nen-context-signals span:nth-child(2) { top: 42%; right: 5%; animation-delay: 1.4s; }
.nen-context-signals span:nth-child(3) { right: 22%; bottom: 5%; animation-delay: 2.7s; }
.nen-context-signals i { position: absolute; top: 42%; left: 13%; width: 68%; height: 1px; background: linear-gradient(90deg, transparent, var(--nen-accent), transparent); opacity: 0.36; transform: rotate(-12deg); }

.nen-character[data-nen-pose="analyzing"] .nen-context-signals,
.nen-character[data-nen-pose="pointing"] .nen-context-signals,
.nen-character[data-nen-pose="observing"] .nen-context-signals { border-style: dashed; }
.nen-character[data-nen-pose="observing"] .nen-context-signals i { animation: nen-observe-scan 3.6s ease-in-out infinite; }

.nen-character[data-nen-pose="analyzing"],
.nen-character[data-nen-pose="pointing"] { --nen-pose-rotation: 2deg; }
.nen-character[data-nen-pose="analyzing"] .nen-context-signals,
.nen-character[data-nen-pose="pointing"] .nen-context-signals {
  z-index: 2;
  inset: 20% 3% 27% 64%;
  border-style: solid;
  border-radius: 12px;
  background: rgba(2, 8, 23, 0.66);
  transform: rotate(-2deg);
}
.nen-character:is([data-nen-pose="analyzing"], [data-nen-pose="pointing"]) .nen-context-signals span:nth-child(1) { top: 20%; left: 18%; }
.nen-character:is([data-nen-pose="analyzing"], [data-nen-pose="pointing"]) .nen-context-signals span:nth-child(2) { top: 46%; right: 18%; }
.nen-character:is([data-nen-pose="analyzing"], [data-nen-pose="pointing"]) .nen-context-signals span:nth-child(3) { right: auto; bottom: 18%; left: 42%; }
.nen-character:is([data-nen-pose="analyzing"], [data-nen-pose="pointing"]) .nen-context-signals::after { top: 18%; bottom: 18%; left: 50%; width: 1px; background: linear-gradient(var(--nen-accent), transparent); opacity: 0.5; }

.nen-character[data-nen-pose="designing"] { --nen-pose-rotation: -1deg; }
.nen-character[data-nen-pose="designing"][data-nen-asset-status="fallback"] .nen-context-signals {
  z-index: 2;
  inset: 18% 3% 24% 58%;
  border-radius: 12px;
  background: rgba(2, 8, 23, 0.72);
  transform: rotate(5deg);
}
.nen-character[data-nen-pose="designing"][data-nen-asset-status="fallback"] .nen-context-signals::before { inset: 14%; border-radius: 7px; background: linear-gradient(90deg, transparent 31%, rgba(122, 156, 255, 0.35) 32% 34%, transparent 35% 66%, rgba(122, 156, 255, 0.28) 67% 69%, transparent 70%), linear-gradient(transparent 30%, rgba(122, 156, 255, 0.34) 31% 33%, transparent 34% 64%, rgba(122, 156, 255, 0.25) 65% 67%, transparent 68%); }
.nen-character[data-nen-pose="designing"][data-nen-asset-status="fallback"] .nen-context-signals::after { right: -10%; bottom: 3%; width: 58%; height: 3px; border-radius: 999px; background: #b7c7ff; box-shadow: 0 0 12px rgba(122, 156, 255, 0.7); transform: rotate(-48deg); transform-origin: right center; }

.nen-character[data-nen-pose="building"][data-nen-asset-status="fallback"] .nen-context-signals {
  z-index: 2;
  inset: 19% 3% 25% 61%;
  border-radius: 10px;
  background: rgba(2, 8, 23, 0.72);
}
.nen-character[data-nen-pose="building"][data-nen-asset-status="fallback"] .nen-context-signals i { height: 2px; box-shadow: 0 28px 0 color-mix(in srgb, var(--nen-accent) 50%, transparent), 0 -28px 0 color-mix(in srgb, var(--nen-accent) 34%, transparent); }
.nen-character[data-nen-pose="building"][data-nen-asset-status="fallback"] .nen-context-signals::before { top: 22%; left: 18%; width: 13px; height: 13px; border: 1px solid var(--nen-accent); border-radius: 3px; background: rgba(62, 221, 212, 0.16); box-shadow: 28px 0 0 rgba(62, 221, 212, 0.12), 28px 0 0 1px var(--nen-accent), 0 28px 0 rgba(62, 221, 212, 0.12), 0 28px 0 1px var(--nen-accent), 28px 28px 0 rgba(62, 221, 212, 0.22), 28px 28px 0 1px var(--nen-accent); }
.nen-character[data-nen-pose="building"][data-nen-asset-status="fallback"] .nen-context-signals::after { right: 14%; bottom: 13%; width: 22px; height: 10px; border-bottom: 3px solid var(--nen-green); border-left: 3px solid var(--nen-green); transform: rotate(-45deg); filter: drop-shadow(0 0 6px var(--nen-green)); }
.nen-character:is([data-nen-pose="designing"], [data-nen-pose="building"])[data-nen-asset-status="ready"] .nen-context-signals { display: none; }

.nen-character[data-nen-pose="supporting"] { --nen-pose-rotation: 1deg; }
.nen-character[data-nen-pose="supporting"] .nen-context-signals { z-index: 2; inset: 22% 4% 25% 64%; border-radius: 48% 48% 58% 58%; background: rgba(2, 20, 22, 0.64); }
.nen-character[data-nen-pose="supporting"] .nen-context-signals::after { top: 36%; left: 30%; width: 34%; height: 16%; border-bottom: 3px solid var(--nen-green); border-left: 3px solid var(--nen-green); transform: rotate(-45deg); }
.nen-character[data-nen-pose="launching"] .nen-context-signals { transform: scale(1.05); border-color: color-mix(in srgb, var(--nen-green) 56%, transparent); }

/* Las poses grandes se reconocen por rostro y movimiento. Los paneles de
   fallback se ocultaban tarde y quedaban como cuadros sobre el visor. */
.nen-character:is(
  [data-nen-pose="analyzing"],
  [data-nen-pose="pointing"],
  [data-nen-pose="designing"],
  [data-nen-pose="building"],
  [data-nen-pose="supporting"]
) .nen-context-signals { display: none; }

.nen-character[data-nen-pose="confirming"] .nen-character-media img,
.nen-character[data-nen-pose="launching"] .nen-character-media img { -webkit-mask-image: none; mask-image: none; }

.nen-character figcaption {
  position: absolute;
  z-index: 7;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: grid;
  gap: 4px;
  border: 1px solid color-mix(in srgb, var(--nen-accent) 34%, transparent);
  border-left: 3px solid var(--nen-accent);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  background: rgba(2, 8, 23, 0.9);
  backdrop-filter: blur(10px);
}
.nen-character figcaption strong { color: var(--color-text-primary); }
.nen-character figcaption span { color: var(--color-text-secondary); font-size: 0.82rem; }
.nen-lab-grid--modes .nen-character-media { width: min(104%, 548px); margin-top: 3%; }
.nen-lab-grid--modes .nen-status-chip { top: 16px; }
.nen-lab-grid--modes figcaption { min-height: 98px; align-content: center; }
.nen-lab-grid--modes figcaption span { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }

.nen-guide-card,
.nen-confirmation,
.nen-empty-state { display: grid; grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr); gap: 18px; align-items: center; border: 1px solid var(--color-border-600); border-radius: var(--radius-md); padding: 18px; background: rgba(11, 20, 38, 0.74); }
.nen-guide-card h3, .nen-insight-card h3 { margin-bottom: 6px; }
.nen-guide-card p:last-child, .nen-insight-card p:last-child, .nen-confirmation p { margin-bottom: 0; }
.nen-insight-card { border: 1px solid rgba(51, 200, 255, 0.28); border-left: 3px solid var(--nen-cyan); border-radius: var(--radius-sm); padding: 20px; background: linear-gradient(135deg, rgba(8, 27, 51, 0.88), rgba(2, 8, 23, 0.78)); }
.nen-insight-card > span { color: var(--nen-cyan); font: 700 0.68rem/1 var(--font-mono); letter-spacing: 0.09em; text-transform: uppercase; }
.nen-confirmation { border-color: rgba(66, 230, 128, 0.38); }
.nen-loader { min-height: 96px; display: grid; place-items: center; align-content: center; gap: 12px; border: 1px solid var(--color-border-600); border-radius: var(--radius-md); padding: 18px; background: var(--color-surface-800); }
.nen-loader > span { display: flex; gap: 7px; }
.nen-loader i { width: 8px; height: 8px; border-radius: 50%; background: var(--nen-cyan); animation: nen-loader-dot 1.2s ease-in-out infinite; }
.nen-loader i:nth-child(2) { animation-delay: 140ms; }
.nen-loader i:nth-child(3) { animation-delay: 280ms; }
.nen-loader strong { font-size: 0.78rem; }

.nen-lab-section { display: grid; gap: 26px; }
.nen-lab-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.nen-expression-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
.nen-expression-grid article { display: grid; gap: 8px; min-width: 0; text-align: center; }
.nen-expression-grid .nen-character { aspect-ratio: 1; }
.nen-expression-grid .nen-status-chip { display: none; }
.nen-expression-grid h3 { margin: 0; font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase; }
.nen-component-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.nen-component-grid > :first-child, .nen-component-grid > :last-child { grid-column: 1 / -1; }

[data-reveal] { opacity: 1; transform: none; }
.nen-reveal-enabled [data-reveal].is-visible { animation: nen-reveal-in var(--nen-entrance-duration) ease both; }
html.nen-static-fallback [data-reveal] { opacity: 1 !important; transform: none !important; animation: none !important; }

@keyframes nen-reveal-in { from { transform: translateY(12px); } to { transform: none; } }
@keyframes nen-breathe { 0%, 100% { transform: translate3d(0, 0, 0) scale(0.995) rotate(calc(var(--nen-head-rotation, 0deg) + var(--nen-pose-rotation, 0deg))); } 50% { transform: translate3d(0, -3px, 0) scale(1.005) rotate(calc(var(--nen-head-rotation, 0deg) + var(--nen-pose-rotation, 0deg))); } }
@keyframes nen-signal-pulse { 0%, 100% { opacity: 0.35; transform: scale(0.88); } 50% { opacity: 1; transform: scale(1.12); } }
@keyframes nen-loader-dot { 0%, 100% { opacity: 0.3; transform: translateY(0); } 45% { opacity: 1; transform: translateY(-4px); } }
@keyframes nen-observe-scan { 0%, 100% { opacity: 0.18; transform: translateY(-28px) rotate(-8deg); } 50% { opacity: 0.72; transform: translateY(34px) rotate(-8deg); } }

@media (max-width: 1100px) {
  .nen-lab-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .nen-expression-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .nen-character--hero .nen-character-stage,
  .nen-character--half .nen-character-stage { min-height: 340px; max-height: 390px; }
  .nen-character figcaption { right: 12px; bottom: 12px; left: 12px; }
  .nen-lab-grid, .nen-expression-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nen-component-grid { grid-template-columns: 1fr; }
  .nen-component-grid > *, .nen-guide-card, .nen-confirmation, .nen-empty-state { grid-column: auto; grid-template-columns: 1fr; }
}

@media (pointer: coarse) {
  .nen-character { --nen-gaze-x: 0px !important; --nen-gaze-y: 0px !important; --nen-head-rotation: 0deg !important; }
}

@media (prefers-reduced-motion: reduce) {
  .nen-character-media, .nen-context-signals span, .nen-context-signals i, .nen-loader i { animation: none !important; }
  .nen-character, .nen-eye, .nen-mouth { transition: none !important; }
}

@media print, (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; animation: none !important; }
}
}

@layer pages {
.hero,
.page-hero,
.product-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(32, 52, 81, 0.78);
  background: var(--color-bg-900);
}

.hero::before,
.page-hero::before,
.product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(51, 200, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51, 200, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero { padding-block: 42px; background: var(--color-bg-950); }
.page-hero { padding-block: 48px; }
.compact-hero { padding-block: 52px; }
.product-hero { padding-block: 52px; }
.hero .container,
.page-hero .container,
.product-hero .container { position: relative; z-index: 1; }
.page-hero .interior-hero-grid { min-height: 0; }
.page-hero h1,
.product-hero h1 { font-size: 3rem; }
.narrow h1 { max-width: 760px; font-size: 3rem; }
.narrow .lead { margin-inline: auto; }
.narrow .actions { justify-content: center; }
.trust-line { margin-top: 16px; color: #dbe6f6; font-size: 0.88rem; font-weight: 600; }
.hero-copy h1 { max-width: 10.5em; }

.home-hero-visual { position: relative; min-height: 470px; margin: 0; overflow: hidden; border: 1px solid rgba(51, 200, 255, 0.42); border-radius: var(--radius-md); background: radial-gradient(circle at 52% 36%, rgba(21, 94, 239, 0.22), transparent 38%), #03101f; box-shadow: var(--shadow-panel); isolation: isolate; }
.home-hero-visual::before { content: ""; position: absolute; z-index: -1; inset: 8% 7%; border: 1px solid rgba(51, 200, 255, 0.16); border-radius: 50%; box-shadow: 0 0 0 42px rgba(51, 200, 255, 0.025), 0 0 0 84px rgba(51, 200, 255, 0.018); }
.home-hero-visual img { width: 100%; height: 100%; min-height: 470px; object-fit: cover; object-position: center 10%; filter: saturate(0.96) contrast(1.04); }
.home-hero-chip { position: absolute; z-index: 9; top: 18px; right: 18px; border: 1px solid rgba(51, 200, 255, 0.46); border-radius: 999px; padding: 6px 10px; color: #dff7ff; background: rgba(2, 8, 23, 0.8); font-family: var(--font-mono); font-size: 0.64rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.home-hero-visual figcaption { position: absolute; z-index: 4; right: 20px; bottom: 20px; left: auto; width: min(74%, 370px); display: grid; gap: 5px; border: 1px solid rgba(51, 200, 255, 0.36); border-left: 3px solid var(--color-brand-400); border-radius: var(--radius-sm); padding: 16px; background: linear-gradient(135deg, rgba(2, 8, 23, 0.94), rgba(8, 20, 38, 0.86)); backdrop-filter: blur(12px); }
.home-hero-visual figcaption .nen-caption-eyebrow { color: var(--color-brand-400); font-family: var(--font-mono); font-size: 0.62rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.home-hero-visual figcaption strong { max-width: 19em; color: var(--color-text-primary); font-size: 1.05rem; }
.home-hero-visual figcaption span { color: var(--color-text-secondary); font-size: 0.84rem; }
.home-hero-visual figcaption .text-link { margin-top: 4px; }

.home-hero-visual .nen-character-stage { min-height: 470px; }
.home-hero-visual .nen-character-media { width: min(100%, 520px); margin-top: 0; }
.home-hero-visual .nen-character-media img { width: 100%; height: auto; min-height: 0; object-fit: contain; }
.home-hero-visual .nen-status-chip { z-index: 8; }
.hero-signal-layer i { position: absolute; z-index: 2; width: 8px; height: 8px; border-radius: 50%; background: var(--color-brand-400); box-shadow: 0 0 18px rgba(51, 200, 255, 0.72); }
.hero-signal-layer i:nth-child(1) { top: 22%; left: 12%; }
.hero-signal-layer i:nth-child(2) { top: 34%; right: 9%; }
.hero-signal-layer i:nth-child(3) { right: 20%; bottom: 28%; }
.hero-signal-layer i:nth-child(4) { bottom: 38%; left: 8%; }

.home-operating-visual {
  min-width: 0;
  min-height: 470px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border: 1px solid rgba(51, 200, 255, 0.38);
  border-radius: var(--radius-md);
  background: linear-gradient(rgba(51, 200, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(51, 200, 255, 0.035) 1px, transparent 1px), radial-gradient(circle at 50% 46%, rgba(21, 94, 239, 0.14), transparent 42%), #03101f;
  background-size: 28px 28px, 28px 28px, auto, auto;
  box-shadow: var(--shadow-panel);
}
.home-operating-header { min-height: 48px; display: flex; align-items: center; justify-content: space-between; gap: 16px; border-bottom: 1px solid rgba(32, 52, 81, 0.84); padding: 10px 14px; background: rgba(2, 8, 23, 0.74); }
.home-operating-header > span { color: var(--color-brand-400); font-family: var(--font-mono); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; }
.home-operating-header strong { display: inline-flex; align-items: center; gap: 7px; color: #dbe6f6; font-size: 0.72rem; }
.home-operating-header strong i { width: 7px; height: 7px; border-radius: 50%; background: var(--color-brand-400); box-shadow: 0 0 12px rgba(51, 200, 255, 0.72); }
.home-operating-map { min-width: 0; display: grid; grid-template-columns: minmax(118px, 1fr) 28px minmax(150px, 1.15fr) 28px minmax(118px, 1fr); gap: 8px; align-items: center; padding: 24px 18px; }
.home-operating-stack { min-width: 0; display: grid; gap: 7px; }
.home-operating-stack small,
.home-operating-base small { color: var(--color-brand-400); font-family: var(--font-mono); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.home-operating-stack > span { min-width: 0; border: 1px solid rgba(51, 200, 255, 0.22); border-left: 2px solid rgba(51, 200, 255, 0.62); border-radius: 6px; padding: 9px 10px; color: #b9c8db; background: rgba(2, 8, 23, 0.58); font-size: 0.73rem; line-height: 1.3; }
.home-operating-stack--outcome > span { border-color: rgba(50, 213, 131, 0.24); border-left-color: rgba(50, 213, 131, 0.72); color: #d8f5e5; }
.home-operating-arrow { color: var(--color-brand-400); font-size: 1.2rem; text-align: center; }
.home-operating-base { min-width: 0; display: grid; justify-items: center; gap: 7px; border: 1px solid rgba(51, 200, 255, 0.5); border-radius: 16px; padding: 22px 14px; background: radial-gradient(circle at 50% 20%, rgba(51, 200, 255, 0.12), transparent 40%), rgba(7, 23, 44, 0.92); box-shadow: 0 0 34px rgba(51, 200, 255, 0.08); text-align: center; }
.home-operating-base > strong { color: var(--color-text-primary); font-size: 1.1rem; }
.home-operating-base > span { color: var(--color-text-secondary); font-size: 0.72rem; line-height: 1.35; }
.home-operating-base > div { width: 76px; height: 28px; display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.home-operating-base > div i { width: 12px; height: 12px; border: 1px solid var(--color-brand-400); border-radius: 4px; background: rgba(51, 200, 255, 0.1); box-shadow: 0 0 10px rgba(51, 200, 255, 0.16); }
.home-operating-footer { min-width: 0; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 12px; align-items: center; border-top: 1px solid rgba(32, 52, 81, 0.84); padding: 12px; background: rgba(2, 8, 23, 0.72); }
.home-operating-nen { min-height: 0; grid-template-columns: 54px minmax(0, 1fr); gap: 9px; padding: 8px; }
.home-operating-nen .nen-core-visual { width: 48px; border-radius: 14px; }
.home-operating-nen .nen-core-copy { padding-top: 15px; }
.home-operating-nen::before { top: 7px; right: 8px; padding: 2px 6px; font-size: 0.52rem; }
.home-operating-nen .nen-core-copy strong { font-size: 0.72rem; }
.home-operating-nen .nen-core-copy span { font-size: 0.7rem; line-height: 1.35; }
.home-operating-footer > .text-link { white-space: nowrap; }

.operational-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.operational-card {
  --card-accent: var(--color-brand-400);
  position: relative;
  min-width: 0;
  min-height: 294px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--card-accent) 25%, var(--color-border-600));
  border-radius: 18px;
  padding: 26px;
  color: inherit;
  background: radial-gradient(circle at 88% 8%, color-mix(in srgb, var(--card-accent) 11%, transparent), transparent 31%), linear-gradient(155deg, rgba(11, 29, 55, 0.96), rgba(3, 11, 26, 0.94) 72%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), 0 18px 52px rgba(0, 0, 0, 0.13);
  isolation: isolate;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition), background-color var(--transition);
}
.operational-card::before { content: ""; position: absolute; z-index: 0; top: 0; right: 12%; left: 12%; height: 1px; background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--card-accent) 78%, white 8%), transparent); opacity: 0.72; }
.operational-card::after { content: ""; position: absolute; z-index: 0; top: -90px; right: -90px; width: 210px; height: 210px; border: 1px solid color-mix(in srgb, var(--card-accent) 15%, transparent); border-radius: 50%; box-shadow: 0 0 0 34px color-mix(in srgb, var(--card-accent) 2.5%, transparent); opacity: 0.7; pointer-events: none; }
.operational-card > * { position: relative; z-index: 1; }
.operational-card:hover { border-color: color-mix(in srgb, var(--card-accent) 56%, var(--color-border-600)); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 22px 58px rgba(0, 0, 0, 0.2), 0 0 28px color-mix(in srgb, var(--card-accent) 7%, transparent); transform: translateY(-5px); }
.operational-card h3 { margin: 18px 0 9px; font-size: clamp(1.18rem, 1.45vw, 1.42rem); line-height: 1.18; }
.operational-card p { margin: 0; color: #aebbd0; font-size: 0.92rem; line-height: 1.65; }

.operational-card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.operational-eyebrow,
.operational-tag,
.solution-preview-label { font-family: var(--font-mono); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.085em; text-transform: uppercase; }
.operational-eyebrow { color: var(--card-accent); }
.operational-tag { border: 1px solid color-mix(in srgb, var(--card-accent) 28%, transparent); border-radius: 999px; padding: 5px 8px; color: #aabbd1; background: rgba(2, 8, 23, 0.46); }
.operational-card-copy { margin-top: 0; }
.friction-card h3 { min-height: 2.36em; }
.friction-card:nth-child(2) { --card-accent: #4f9cff; }
.friction-card:nth-child(3) { --card-accent: #7897ff; }
.friction-card:nth-child(4) { --card-accent: #35d7c4; }

.operational-signal { position: relative; width: 88px; height: 68px; margin-top: 28px; border: 1px solid color-mix(in srgb, var(--card-accent) 27%, transparent); border-radius: 15px; color: var(--card-accent); background: linear-gradient(rgba(51, 200, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(51, 200, 255, 0.035) 1px, transparent 1px), rgba(2, 8, 23, 0.5); background-size: 14px 14px; box-shadow: inset 0 0 24px color-mix(in srgb, var(--card-accent) 4%, transparent); }
.operational-signal i { position: absolute; width: 12px; height: 12px; border: 2px solid currentColor; border-radius: 50%; background: #061329; box-shadow: 0 0 12px color-mix(in srgb, currentColor 30%, transparent); }
.operational-signal::before,
.operational-signal::after { content: ""; position: absolute; height: 1px; background: currentColor; opacity: 0.72; transform-origin: left center; }
.signal-nodes i:nth-child(1) { top: 14px; left: 13px; }
.signal-nodes i:nth-child(2) { top: 10px; right: 13px; }
.signal-nodes i:nth-child(3) { bottom: 11px; left: 25px; }
.signal-nodes i:nth-child(4) { right: 11px; bottom: 16px; }
.signal-nodes::before { top: 21px; left: 24px; width: 48px; transform: rotate(-4deg); }
.signal-nodes::after { bottom: 20px; left: 35px; width: 39px; transform: rotate(-13deg); }
.signal-steps i { width: 11px; height: 11px; border-radius: 3px; }
.signal-steps i:nth-child(1) { top: 12px; left: 12px; }
.signal-steps i:nth-child(2) { top: 12px; right: 12px; }
.signal-steps i:nth-child(3) { bottom: 10px; left: 30px; }
.signal-steps i:nth-child(4) { right: 10px; bottom: 10px; }
.signal-steps::before { top: 18px; left: 23px; width: 52px; transform: rotate(-3deg); }
.signal-steps::after { bottom: 21px; left: 40px; width: 38px; transform: rotate(-16deg); }
.signal-chart i { bottom: 13px; width: 9px; border: 0; border-radius: 3px 3px 1px 1px; background: currentColor; opacity: 0.82; }
.signal-chart i:nth-child(1) { left: 14px; height: 13px; }
.signal-chart i:nth-child(2) { left: 33px; height: 25px; }
.signal-chart i:nth-child(3) { left: 52px; height: 18px; }
.signal-chart i:nth-child(4) { left: 70px; height: 38px; }
.signal-chart::before { top: auto; bottom: 10px; left: 11px; width: 68px; opacity: 0.32; }
.signal-chart::after { top: 24px; left: 16px; width: 61px; transform: rotate(-16deg); }
.signal-links i:nth-child(1) { top: 13px; left: 12px; }
.signal-links i:nth-child(2) { top: 12px; right: 13px; }
.signal-links i:nth-child(3) { bottom: 11px; left: 27px; }
.signal-links i:nth-child(4) { right: 11px; bottom: 15px; }
.signal-links::before { top: 22px; left: 23px; width: 48px; transform: rotate(18deg); }
.signal-links::after { bottom: 22px; left: 37px; width: 38px; transform: rotate(-15deg); }

.nen-diagnostic-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(50, 213, 131, 0.09), transparent 30%),
    linear-gradient(180deg, rgba(11, 20, 38, 0.4), rgba(2, 8, 23, 0.12));
}
.nen-diagnostic-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 9%;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, rgba(50, 213, 131, 0.22), transparent);
  opacity: 0.7;
}
.nen-diagnostic-section > .container { position: relative; z-index: 1; }
.nen-diagnostic-section .section-head { max-width: 760px; }
.nen-diagnostic-shell {
  display: grid;
  grid-template-columns: minmax(290px, 0.76fr) minmax(0, 1.24fr);
  overflow: hidden;
  border: 1px solid rgba(50, 213, 131, 0.28);
  border-radius: 24px;
  background: rgba(5, 14, 29, 0.84);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.nen-choice-panel {
  min-width: 0;
  padding: 24px;
  border-right: 1px solid rgba(32, 52, 81, 0.92);
  background: rgba(11, 20, 38, 0.52);
}
.nen-choice-heading { margin: 0; color: var(--color-text-primary); font-size: 0.86rem; font-weight: 700; }
.nen-choice-list { display: grid; gap: 8px; margin-top: 18px; }
.nen-choice {
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(32, 52, 81, 0.88);
  border-radius: 14px;
  padding: 14px;
  color: var(--color-text-primary);
  background: rgba(2, 8, 23, 0.42);
  text-align: left;
  cursor: pointer;
  transition: border-color var(--transition), background-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.nen-choice:hover { border-color: rgba(50, 213, 131, 0.55); background: rgba(17, 31, 56, 0.82); transform: translateX(3px); }
.nen-choice[aria-selected="true"] {
  border-color: rgba(50, 213, 131, 0.72);
  background: linear-gradient(105deg, rgba(50, 213, 131, 0.14), rgba(2, 8, 23, 0.48));
  box-shadow: inset 3px 0 0 var(--color-success-500), 0 12px 28px rgba(50, 213, 131, 0.08);
}
.nen-choice-index { color: var(--color-success-500); font-family: var(--font-mono); font-size: 0.67rem; font-weight: 800; }
.nen-choice-copy { min-width: 0; display: grid; gap: 4px; }
.nen-choice-copy strong { font-size: 0.92rem; line-height: 1.2; }
.nen-choice-copy small { color: var(--color-text-secondary); font-size: 0.76rem; line-height: 1.35; }
.nen-choice-arrow { color: var(--color-success-500); font-size: 1.1rem; transition: transform var(--transition); }
.nen-choice[aria-selected="true"] .nen-choice-arrow { transform: translateX(4px); }
.nen-choice-note { margin: 18px 0 0; color: var(--color-text-secondary); font-size: 0.78rem; line-height: 1.5; }
.nen-recommendation {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(160px, 0.42fr) minmax(0, 0.98fr);
  gap: 24px;
  align-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 10% 20%, rgba(50, 213, 131, 0.13), transparent 30%),
    linear-gradient(145deg, rgba(17, 31, 56, 0.72), rgba(5, 14, 29, 0.45));
}
.nen-diagnostic-core { min-height: 270px; grid-template-columns: 1fr; align-content: center; }
.nen-diagnostic-core .nen-core-visual { width: min(100%, 176px); margin-inline: auto; }
.nen-diagnostic-core .nen-core-copy { padding-top: 0; }
.nen-result-copy { min-width: 0; }
.nen-result-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 16px; color: var(--color-success-500); font-family: var(--font-mono); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.nen-result-top span:last-child { color: var(--color-text-secondary); }
.nen-result-copy h3 { max-width: 16ch; margin: 16px 0 10px; font-size: clamp(1.45rem, 2.2vw, 2.1rem); line-height: 1.08; }
.nen-result-copy > p:not(.nen-result-note) { max-width: 52ch; color: #c3cede; line-height: 1.62; }
.nen-result-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin: 22px 0; }
.nen-result-facts div { min-width: 0; border-top: 1px solid rgba(50, 213, 131, 0.32); padding-top: 10px; }
.nen-result-facts dt { color: var(--color-success-500); font-family: var(--font-mono); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.nen-result-facts dd { margin-top: 5px; color: var(--color-text-primary); font-size: 0.84rem; font-weight: 600; line-height: 1.4; }
.nen-result-copy .button { margin-top: 2px; }
.nen-result-note { margin: 14px 0 0; color: var(--color-text-secondary); font-size: 0.76rem; line-height: 1.45; }
.nen-diagnostic-footnote { display: flex; align-items: center; gap: 8px; margin: 16px 0 0; color: var(--color-text-secondary); font-size: 0.8rem; }
.nen-diagnostic-footnote span { color: var(--color-success-500); font-size: 0.62rem; }

.solution-preview-card { min-height: 320px; }
.solution-preview-card--system { --card-accent: #33c8ff; }
.solution-preview-card--automation { --card-accent: #4f9cff; }
.solution-preview-card--data { --card-accent: #8a9dff; }
.solution-preview-card--portal { --card-accent: #35d7c4; }
.solution-preview-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.solution-symbol { position: relative; width: 86px; height: 66px; overflow: hidden; border: 1px solid color-mix(in srgb, var(--card-accent) 38%, transparent); border-radius: 14px; color: var(--card-accent); background: linear-gradient(rgba(51, 200, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(51, 200, 255, 0.04) 1px, transparent 1px), rgba(2, 8, 23, 0.56); background-size: 14px 14px; box-shadow: inset 0 0 22px color-mix(in srgb, var(--card-accent) 5%, transparent); }
.solution-symbol span { position: absolute; border: 1px solid currentColor; }
.solution-symbol::after { content: ""; position: absolute; background: currentColor; }
.solution-symbol.system span:nth-child(1) { top: 13px; bottom: 13px; left: 12px; width: 14px; border-radius: 4px; background: color-mix(in srgb, currentColor 11%, transparent); }
.solution-symbol.system span:nth-child(2) { top: 13px; right: 12px; left: 33px; height: 17px; border-radius: 4px; }
.solution-symbol.system span:nth-child(3) { right: 12px; bottom: 13px; left: 33px; height: 14px; border-radius: 4px; }
.solution-symbol.system::after { top: 37px; left: 38px; width: 31px; height: 1px; box-shadow: 0 7px 0 color-mix(in srgb, currentColor 55%, transparent); }
.solution-symbol.automation span { width: 13px; height: 13px; border-radius: 50%; background: #061329; box-shadow: 0 0 10px color-mix(in srgb, currentColor 24%, transparent); }
.solution-symbol.automation span:nth-child(1) { top: 12px; left: 12px; }
.solution-symbol.automation span:nth-child(2) { top: 26px; left: 36px; }
.solution-symbol.automation span:nth-child(3) { right: 12px; bottom: 11px; }
.solution-symbol.automation::before { content: ""; position: absolute; top: 21px; left: 23px; width: 48px; height: 1px; background: currentColor; box-shadow: 7px 18px 0 color-mix(in srgb, currentColor 52%, transparent); transform: rotate(24deg); transform-origin: left; }
.solution-symbol.automation::after { right: 12px; bottom: 18px; width: 6px; height: 6px; clip-path: polygon(0 0, 100% 50%, 0 100%); }
.solution-symbol.data span { left: 17px; width: 30px; height: 13px; border-radius: 50%; background: #061329; }
.solution-symbol.data span:nth-child(1) { top: 10px; }
.solution-symbol.data span:nth-child(2) { top: 25px; }
.solution-symbol.data span:nth-child(3) { top: 40px; }
.solution-symbol.data::before { content: ""; position: absolute; top: 16px; left: 17px; width: 30px; height: 31px; border-inline: 1px solid currentColor; }
.solution-symbol.data::after { top: 31px; right: 12px; width: 24px; height: 1px; box-shadow: 10px -9px 0 -0.25px color-mix(in srgb, currentColor 60%, transparent), 10px 9px 0 -0.25px color-mix(in srgb, currentColor 60%, transparent); }
.solution-symbol.portal span:nth-child(1) { top: 11px; right: 11px; bottom: 11px; left: 11px; border-radius: 7px; }
.solution-symbol.portal span:nth-child(2) { top: 18px; left: 18px; width: 16px; height: 16px; border-radius: 50%; background: color-mix(in srgb, currentColor 10%, transparent); }
.solution-symbol.portal span:nth-child(3) { right: 18px; bottom: 18px; left: 18px; height: 12px; border-radius: 999px 999px 4px 4px; }
.solution-symbol.portal::after { top: 20px; right: 18px; width: 17px; height: 1px; box-shadow: 0 7px 0 color-mix(in srgb, currentColor 55%, transparent); }
.card-index { color: var(--card-accent); font-family: var(--font-mono); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; }
.solution-preview-label { width: fit-content; margin-top: 24px; color: var(--card-accent); }
.solution-preview-card h3 { min-height: 2.36em; margin-top: 10px; }
.solution-preview-card small { display: inline-flex; align-items: center; gap: 8px; width: fit-content; margin-top: auto; padding-top: 22px; color: var(--card-accent); font-weight: 800; }
.solution-preview-card small::after { content: "\2192"; font-size: 1rem; transition: transform var(--transition); }
.solution-preview-card:hover small::after { transform: translateX(4px); }

.home-proof-section {
  scroll-margin-top: var(--header-height);
  border-block: 1px solid rgba(32, 52, 81, 0.78);
  background: #030b19;
}
.home-proof-section .section-head { max-width: 760px; }
.home-proof-shell {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1.58fr);
  overflow: hidden;
  border: 1px solid rgba(51, 200, 255, 0.28);
  border-radius: 24px;
  background: rgba(5, 14, 29, 0.84);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.home-proof-selector {
  min-width: 0;
  padding: 22px;
  border-right: 1px solid rgba(32, 52, 81, 0.92);
  background: rgba(11, 20, 38, 0.52);
}
.home-proof-label { margin: 0; color: var(--color-text-primary); font-size: 0.86rem; font-weight: 700; }
.home-proof-tabs { display: grid; gap: 8px; margin: 18px 0 20px; }
.home-proof-tab {
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(32, 52, 81, 0.88);
  border-radius: 14px;
  padding: 14px;
  color: var(--color-text-primary);
  background: rgba(2, 8, 23, 0.42);
  text-align: left;
  cursor: pointer;
  transition: border-color var(--transition), background-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.home-proof-tab:hover { border-color: rgba(51, 200, 255, 0.58); background: rgba(17, 31, 56, 0.82); transform: translateX(3px); }
.home-proof-tab[aria-selected="true"] {
  border-color: rgba(51, 200, 255, 0.72);
  background: linear-gradient(105deg, rgba(51, 200, 255, 0.14), rgba(2, 8, 23, 0.48));
  box-shadow: inset 3px 0 0 var(--color-brand-400), 0 12px 28px rgba(51, 200, 255, 0.08);
}
.home-proof-tab-index { color: var(--color-brand-400); font-family: var(--font-mono); font-size: 0.67rem; font-weight: 800; }
.home-proof-tab-copy { min-width: 0; display: grid; gap: 4px; }
.home-proof-tab-copy strong { font-size: 0.92rem; line-height: 1.2; }
.home-proof-tab-copy small { overflow: hidden; color: var(--color-text-secondary); font-size: 0.76rem; line-height: 1.35; text-overflow: ellipsis; white-space: nowrap; }
.home-proof-tab-arrow { color: var(--color-brand-400); font-size: 1.1rem; transition: transform var(--transition); }
.home-proof-tab[aria-selected="true"] .home-proof-tab-arrow { transform: translateX(4px); }
.home-proof-selector > .text-link { font-size: 0.86rem; }
.home-proof-panel {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: center;
  padding: 22px;
  background: radial-gradient(circle at 10% 20%, rgba(51, 200, 255, 0.13), transparent 30%), linear-gradient(145deg, rgba(17, 31, 56, 0.72), rgba(5, 14, 29, 0.45));
}
.home-proof-media { min-width: 0; aspect-ratio: 16 / 10; overflow: hidden; border: 1px solid rgba(51, 200, 255, 0.34); border-radius: 16px; background: #edf3fa; box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22); }
.home-proof-media img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.home-proof-copy { min-width: 0; }
.home-proof-meta { display: flex; flex-wrap: wrap; gap: 8px 14px; color: var(--color-brand-400); font-family: var(--font-mono); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.home-proof-meta span:last-child { color: var(--color-success-500); }
.home-proof-copy h3 { max-width: 16ch; margin: 16px 0 10px; font-size: clamp(1.55rem, 2.3vw, 2.2rem); line-height: 1.08; }
.home-proof-copy > p { max-width: 52ch; color: #c3cede; line-height: 1.62; }
.home-proof-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin: 20px 0; }
.home-proof-facts div { min-width: 0; border-top: 1px solid rgba(51, 200, 255, 0.32); padding-top: 10px; }
.home-proof-facts dt { color: var(--color-brand-400); font-family: var(--font-mono); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.home-proof-facts dd { margin-top: 5px; color: var(--color-text-primary); font-size: 0.84rem; font-weight: 600; line-height: 1.4; }
.home-proof-actions { margin-top: 20px; padding-top: 0; }
.home-proof-note { display: flex; align-items: center; gap: 8px; margin: 16px 0 0; color: var(--color-text-secondary); font-size: 0.8rem; }
.home-proof-note span { color: var(--color-success-500); font-size: 0.62rem; }

.nen-mode-flow { display: grid; grid-template-columns: auto 1fr auto 1fr auto 1fr auto 1fr auto; align-items: center; gap: 6px; }
.nen-mode-flow span { color: var(--color-text-primary); font-family: var(--font-mono); font-size: 0.65rem; font-weight: 700; }
.nen-mode-flow i { height: 1px; background: linear-gradient(90deg, rgba(51, 200, 255, 0.25), rgba(51, 200, 255, 0.78)); }

.ecosystem-preview-grid { display: grid; grid-template-columns: minmax(0, 0.84fr) minmax(480px, 1.16fr); gap: 54px; align-items: center; }
.nen-system-note { max-width: 520px; margin: 26px 0 20px; }
.ecosystem-note-core { grid-template-columns: 76px minmax(0, 1fr); }
.ecosystem-note-core .nen-core-visual { width: 68px; }
.system-map { position: relative; min-height: 480px; border: 1px solid rgba(51, 200, 255, 0.28); border-radius: var(--radius-md); background: radial-gradient(circle at center, rgba(21, 94, 239, 0.14), transparent 42%), linear-gradient(rgba(51, 200, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(51, 200, 255, 0.03) 1px, transparent 1px), rgba(5, 14, 29, 0.74); background-size: auto, 28px 28px, 28px 28px, auto; overflow: hidden; }
.system-map::before, .system-map::after { content: ""; position: absolute; inset: 17%; border: 1px solid rgba(51, 200, 255, 0.22); border-radius: 50%; }
.system-map::after { inset: 31%; }
.system-map > strong { position: absolute; z-index: 3; top: 50%; left: 50%; width: 122px; height: 122px; display: grid; place-items: center; border: 1px solid rgba(51, 200, 255, 0.58); border-radius: 50%; color: var(--color-text-primary); background: #07172c; box-shadow: 0 0 38px rgba(51, 200, 255, 0.16); text-align: center; transform: translate(-50%, -50%); }
.system-map > span { position: absolute; z-index: 2; min-width: 112px; border: 1px solid rgba(51, 200, 255, 0.34); border-radius: 999px; padding: 9px 12px; color: #dbe6f6; background: rgba(8, 20, 38, 0.94); font-size: 0.76rem; text-align: center; transform: translate(-50%, -50%); }
.system-map > span:nth-of-type(1) { top: 10%; left: 50%; }
.system-map > span:nth-of-type(2) { top: 28%; left: 85%; }
.system-map > span:nth-of-type(3) { top: 72%; left: 85%; }
.system-map > span:nth-of-type(4) { top: 90%; left: 50%; }
.system-map > span:nth-of-type(5) { top: 72%; left: 15%; }
.system-map > span:nth-of-type(6) { top: 28%; left: 15%; }
.system-map > i { position: absolute; top: 50%; left: 50%; width: 38%; height: 1px; background: linear-gradient(90deg, rgba(51, 200, 255, 0.52), transparent); transform-origin: left center; }
.system-map > i:nth-last-child(3) { transform: rotate(0deg); }
.system-map > i:nth-last-child(2) { transform: rotate(120deg); }
.system-map > i:last-child { transform: rotate(240deg); }

.method-preview-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 0; padding: 0; border: 1px solid var(--color-border-600); border-radius: var(--radius-md); background: rgba(5, 14, 29, 0.68); list-style: none; overflow: hidden; }
.method-preview-grid li { min-height: 112px; display: grid; grid-template-columns: auto 1fr; gap: 4px 12px; align-content: center; padding: 20px; border-right: 1px solid var(--color-border-600); border-bottom: 1px solid var(--color-border-600); }
.method-preview-grid li:nth-child(3n) { border-right: 0; }
.method-preview-grid li:nth-last-child(-n+3) { border-bottom: 0; }
.method-preview-grid > li > span { grid-row: 1 / 3; color: var(--color-brand-400); font-family: var(--font-mono); font-size: 0.72rem; }
.method-preview-grid div { display: grid; gap: 4px; }
.method-preview-grid small { color: var(--color-text-secondary); }
.method-preview-grid em { grid-column: 2; width: fit-content; border: 1px solid rgba(51, 200, 255, 0.28); border-radius: 999px; padding: 3px 7px; color: var(--color-brand-400); font-family: var(--font-mono); font-size: 0.58rem; font-style: normal; text-transform: uppercase; }

.method-outcome-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.method-outcome-card { min-height: 270px; }
.method-outcome-card--scope { --card-accent: #4f9cff; }
.method-outcome-card--delivery { --card-accent: #8a9dff; }
.method-outcome-card--continuity { --card-accent: #35d7c4; }
.method-outcome-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.method-outcome-index,
.method-outcome-label { color: var(--card-accent); font-family: var(--font-mono); font-size: 0.62rem; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; }
.method-outcome-label { width: fit-content; margin-top: 27px; }
.method-outcome-card h3 { margin-top: 10px; font-size: clamp(1.25rem, 1.5vw, 1.48rem); }
.method-outcome-card p { max-width: 28ch; }
.method-outcome-icon { position: relative; width: 54px; height: 54px; border: 1px solid color-mix(in srgb, var(--card-accent) 35%, transparent); border-radius: 14px; color: var(--card-accent); background: rgba(2, 8, 23, 0.54); box-shadow: inset 0 0 18px color-mix(in srgb, var(--card-accent) 5%, transparent); }
.method-outcome-icon i { position: absolute; display: block; }
.method-outcome-icon.priority i { right: 11px; left: 11px; height: 3px; border-radius: 999px; background: currentColor; transform-origin: left center; }
.method-outcome-icon.priority i:nth-child(1) { top: 14px; width: 25px; }
.method-outcome-icon.priority i:nth-child(2) { top: 25px; width: 18px; opacity: 0.72; }
.method-outcome-icon.priority i:nth-child(3) { top: 36px; width: 31px; opacity: 0.48; }
.method-outcome-icon.scope i:nth-child(1) { inset: 11px; border: 1px solid currentColor; border-radius: 5px; }
.method-outcome-icon.scope i:nth-child(2) { top: 9px; bottom: 9px; left: 50%; width: 1px; background: currentColor; opacity: 0.5; }
.method-outcome-icon.scope i:nth-child(3) { top: 50%; right: 9px; left: 9px; height: 1px; background: currentColor; opacity: 0.5; }
.method-outcome-icon.delivery i:nth-child(1) { top: 10px; right: 13px; bottom: 10px; left: 13px; border: 1px solid currentColor; border-radius: 5px; }
.method-outcome-icon.delivery i:nth-child(2) { top: 20px; left: 21px; width: 16px; height: 1px; background: currentColor; box-shadow: 0 8px 0 color-mix(in srgb, currentColor 55%, transparent); }
.method-outcome-icon.delivery i:nth-child(3) { right: 10px; bottom: 9px; width: 11px; height: 6px; border-bottom: 2px solid currentColor; border-left: 2px solid currentColor; filter: drop-shadow(0 0 5px currentColor); transform: rotate(-45deg); }
.method-outcome-icon.continuity i:nth-child(1) { inset: 11px; border: 1px solid currentColor; border-radius: 50%; border-left-color: transparent; }
.method-outcome-icon.continuity i:nth-child(2) { top: 9px; right: 8px; width: 8px; height: 8px; border-top: 2px solid currentColor; border-right: 2px solid currentColor; transform: rotate(18deg); }
.method-outcome-icon.continuity i:nth-child(3) { top: 25px; left: 25px; width: 12px; height: 1px; background: currentColor; transform-origin: left; transform: rotate(-34deg); }

.compact-system-map { min-height: 430px; }
.compact-system-map > strong { width: 132px; height: 132px; padding: 18px; }
.ecosystem-layers { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-bottom: 24px; border: 1px solid var(--color-border-600); border-radius: var(--radius-md); background: rgba(5, 14, 29, 0.68); overflow: hidden; }
.ecosystem-layers > div { min-height: 190px; display: grid; align-content: center; gap: 8px; padding: 26px; border-right: 1px solid var(--color-border-600); }
.ecosystem-layers > div:last-child { border-right: 0; }
.ecosystem-layers span { color: var(--color-brand-400); font-family: var(--font-mono); font-size: 0.68rem; }
.ecosystem-layers strong { color: var(--color-text-primary); font-size: 1.35rem; }
.ecosystem-layers p { margin: 0; }
.ecosystem-guide { margin-top: 18px; }
.entry-route-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.entry-route-grid a { min-height: 210px; display: flex; flex-direction: column; border: 1px solid var(--color-border-600); border-radius: var(--radius-md); padding: 24px; color: inherit; background: linear-gradient(145deg, rgba(12, 25, 48, 0.9), rgba(5, 14, 29, 0.82)); transition: border-color var(--transition), transform var(--transition); }
.entry-route-grid a:hover { border-color: rgba(51, 200, 255, 0.5); transform: translateY(-3px); }
.entry-route-grid span { color: var(--color-brand-400); font-family: var(--font-mono); font-size: 0.68rem; }
.entry-route-grid strong { margin: 18px 0 8px; color: var(--color-text-primary); font-size: 1.25rem; }
.entry-route-grid p { margin: 0; }
.entry-route-grid small { margin-top: auto; padding-top: 20px; color: var(--color-brand-400); font-weight: 700; }

.before-after-map { min-height: 350px; display: grid; grid-template-columns: minmax(0, 0.8fr) 80px minmax(0, 1.2fr); align-items: center; gap: 14px; border: 1px solid rgba(51, 200, 255, 0.28); border-radius: var(--radius-md); padding: 26px; background: radial-gradient(circle at 72% 50%, rgba(21, 94, 239, 0.16), transparent 34%), rgba(5, 14, 29, 0.76); }
.before-after-map > div { min-height: 240px; display: grid; align-content: center; gap: 10px; border: 1px solid var(--color-border-600); border-radius: var(--radius-sm); padding: 20px; background: rgba(2, 8, 23, 0.5); }
.before-after-map small { color: var(--color-brand-400); font-family: var(--font-mono); font-size: 0.64rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.before-after-map span { border-left: 2px solid rgba(51, 200, 255, 0.32); padding: 7px 10px; color: var(--color-text-secondary); background: rgba(51, 200, 255, 0.035); }
.before-after-map strong { margin-bottom: 4px; color: var(--color-text-primary); font-size: 1.3rem; }
.before-after-map > i { position: relative; height: 1px; background: linear-gradient(90deg, rgba(51, 200, 255, 0.22), var(--color-brand-400)); }
.before-after-map > i::after { content: ""; position: absolute; top: -4px; right: -1px; width: 8px; height: 8px; border-top: 1px solid var(--color-brand-400); border-right: 1px solid var(--color-brand-400); transform: rotate(45deg); }
.solution-detail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.solution-detail-grid .solution-card { min-height: 360px; display: flex; flex-direction: column; }
.solution-detail-grid .text-link { margin-top: auto; padding-top: 10px; }

.company-human-panel { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr); align-items: center; gap: 32px; margin-top: 28px; border: 1px solid rgba(51, 200, 255, 0.3); border-radius: var(--radius-md); padding: 28px; background: rgba(5, 14, 29, 0.7); }
.company-human-panel h2 { max-width: 720px; font-size: 2rem; }
.company-human-panel p:last-child { margin-bottom: 0; }
.company-nen-core { min-height: 150px; }

.company-anchor-bar { border-block: 1px solid var(--color-border-600); background: rgba(3, 11, 25, 0.94); }
.company-anchor-nav { min-height: 62px; display: flex; align-items: center; justify-content: center; gap: 8px; overflow-x: auto; scrollbar-width: thin; }
.company-anchor-nav a { min-height: 44px; display: inline-flex; align-items: center; flex: 0 0 auto; border: 1px solid transparent; border-radius: 999px; padding: 0 16px; color: var(--color-text-secondary); font-size: 0.86rem; font-weight: 700; white-space: nowrap; }
.company-anchor-nav a:hover,
.company-anchor-nav a:focus-visible { border-color: rgba(51, 200, 255, 0.38); color: var(--color-text-primary); background: rgba(51, 200, 255, 0.06); }
.company-section-anchor { scroll-margin-top: calc(var(--header-height) + 18px); }
.company-story-grid { align-items: start; }
.company-story-grid > div:first-child > p:last-child { margin-bottom: 0; }

.company-purpose-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.company-purpose-card { min-height: 300px; display: grid; align-content: start; border: 1px solid rgba(51, 200, 255, 0.3); border-radius: var(--radius-md); padding: 30px; background: radial-gradient(circle at 86% 12%, rgba(51, 200, 255, 0.12), transparent 34%), linear-gradient(145deg, rgba(8, 27, 51, 0.9), rgba(2, 8, 23, 0.78)); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035); }
.company-purpose-card--vision { border-color: rgba(50, 213, 131, 0.28); background: radial-gradient(circle at 86% 12%, rgba(50, 213, 131, 0.11), transparent 34%), linear-gradient(145deg, rgba(7, 28, 39, 0.9), rgba(2, 8, 23, 0.78)); }
.company-purpose-card > span,
.company-value-card > span { color: var(--color-brand-400); font-family: var(--font-mono); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; }
.company-purpose-card--vision > span { color: var(--color-success-500); }
.company-purpose-card h3 { max-width: 530px; margin: 42px 0 18px; font-size: clamp(1.5rem, 2.2vw, 2.15rem); }
.company-purpose-card p { max-width: 620px; margin: 0; }

.company-values-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.company-value-card { min-height: 205px; display: grid; align-content: start; border: 1px solid var(--color-border-600); border-radius: var(--radius-sm); padding: 22px; background: linear-gradient(145deg, rgba(11, 27, 50, 0.82), rgba(3, 10, 24, 0.76)); }
.company-value-card h3 { margin: 28px 0 10px; font-size: 1.22rem; }
.company-value-card p { margin: 0; }
.company-identity-panel { margin-top: 0; }
.company-route-head { margin-top: 52px; }
.company-route-grid a { min-height: 220px; }

.authority-band { border-bottom: 1px solid var(--color-border-600); background: #030b19; }
.authority-list { min-height: 72px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: stretch; }
.mini-proof-band .authority-list { min-height: 58px; }
.mini-proof-band .authority-list span { padding-block: 10px; }
.mini-proof-band .authority-list small { color: var(--color-success-500); font-size: 0.75rem; letter-spacing: 0; }
.authority-list span { display: grid; align-content: center; gap: 3px; padding: 10px 18px; border-right: 1px solid var(--color-border-600); text-align: left; }
.authority-list span:first-child { border-left: 1px solid var(--color-border-600); }
.authority-list small { color: var(--color-brand-400); font-family: var(--font-mono); font-size: 0.64rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.authority-list strong { color: #dbe6f6; font-size: 0.86rem; line-height: 1.3; }

.webs-showcase {
  min-width: 0;
  min-height: 390px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(180px, 0.7fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.webs-browser-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(51, 200, 255, 0.38);
  border-radius: var(--radius-md);
  background: #eaf0f8;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.24);
}
.webs-browser-card--primary { grid-row: 1 / 3; }
.webs-browser-bar { height: 32px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(51, 200, 255, 0.24); padding: 0 11px; background: #071426; }
.webs-browser-bar i,
.webs-browser-bar i::before,
.webs-browser-bar i::after { width: 5px; height: 5px; display: block; border-radius: 50%; background: var(--color-brand-400); }
.webs-browser-bar i { position: relative; margin-right: 12px; }
.webs-browser-bar i::before,
.webs-browser-bar i::after { content: ""; position: absolute; top: 0; }
.webs-browser-bar i::before { left: 9px; opacity: 0.7; }
.webs-browser-bar i::after { left: 18px; opacity: 0.4; }
.webs-browser-bar span { min-width: 0; overflow: hidden; color: #a9bfd8; font-family: var(--font-mono); font-size: 0.58rem; text-overflow: ellipsis; white-space: nowrap; }
.webs-browser-card img { width: 100%; height: calc(100% - 32px); object-fit: cover; object-position: top center; }
.webs-browser-card figcaption { position: absolute; right: 10px; bottom: 10px; border: 1px solid rgba(51, 200, 255, 0.34); border-radius: 999px; padding: 6px 9px; color: #dff7ff; background: rgba(2, 8, 23, 0.9); font-family: var(--font-mono); font-size: 0.58rem; font-weight: 700; text-transform: uppercase; }
.web-project-grid a { min-height: 230px; }
.webs-nen-guide { margin-top: 24px; }
.webs-nen-guide .nen-guide-card { border-color: rgba(122, 146, 255, 0.34); background: linear-gradient(135deg, rgba(17, 29, 62, 0.84), rgba(5, 14, 29, 0.76)); }
.web-delivery-flow { margin-top: 8px; }
.web-work-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; }
.web-work-card { grid-column: span 2; min-height: 100%; padding: 14px; }
.web-work-card:nth-child(n+4) { grid-column: span 3; }
.web-work-card .card-media { aspect-ratio: 16 / 8; margin: 0 0 14px; }
.web-work-card .case-card-copy { flex: 1; }
.web-work-card .case-card-copy p { margin-bottom: 0; }
.web-work-card .case-actions { width: 100%; }

.route-note { margin: 24px 0 0; color: var(--color-text-secondary); font-size: 0.94rem; }
.nen-section { background: var(--color-surface-800); }
.nen-panel {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  align-items: center;
  gap: 42px;
  border: 1px solid rgba(51, 200, 255, 0.36);
  border-radius: var(--radius-md);
  padding: 28px;
  background: rgba(5, 16, 31, 0.76);
}
.nen-core-panel { grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr); }
.nen-system-visual { display: grid; gap: 14px; }
.nen-home-core { min-height: 150px; grid-template-columns: 112px minmax(0, 1fr); padding: 18px; }
.nen-home-core .nen-core-visual { width: 102px; }
.nen-copy h2 { max-width: 720px; font-size: 2.25rem; }
.nen-copy > p:not(.kicker) { max-width: 760px; }

.home-buyer-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 12% 22%, rgba(50, 213, 131, 0.07), transparent 30%), linear-gradient(180deg, rgba(5, 14, 29, 0.92), rgba(2, 8, 23, 0.96));
}
.engagement-route-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.engagement-route-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto auto auto auto 1fr auto auto;
  border: 1px solid rgba(51, 200, 255, 0.26);
  border-radius: var(--radius-md);
  padding: 24px;
  background: linear-gradient(155deg, rgba(17, 31, 56, 0.78), rgba(5, 14, 29, 0.76));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}
.engagement-route-card--operations { border-color: rgba(50, 213, 131, 0.52); background: linear-gradient(155deg, rgba(50, 213, 131, 0.12), rgba(5, 14, 29, 0.82)); box-shadow: inset 0 3px 0 rgba(50, 213, 131, 0.72), 0 22px 54px rgba(0, 0, 0, 0.18); }
.engagement-route-head { min-width: 0; display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 10px; align-items: center; }
.engagement-route-head > span { color: var(--color-brand-400); font-family: var(--font-mono); font-size: 0.68rem; font-weight: 800; }
.engagement-route-head small { overflow: hidden; color: var(--color-text-secondary); font-family: var(--font-mono); font-size: 0.64rem; font-weight: 700; letter-spacing: 0.04em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.engagement-route-card h3 { margin: 24px 0 10px; font-size: 1.46rem; line-height: 1.12; }
.engagement-route-card > p { min-height: 94px; color: #bdcadd; font-size: 0.88rem; line-height: 1.55; }
.engagement-route-fit { display: grid; gap: 4px; border-block: 1px solid rgba(32, 52, 81, 0.82); padding-block: 14px; }
.engagement-route-fit span { color: var(--color-text-secondary); font-family: var(--font-mono); font-size: 0.62rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.engagement-route-fit strong { color: var(--color-text-primary); font-size: 0.86rem; }
.engagement-route-card ul { display: grid; gap: 9px; margin: 18px 0 22px; padding: 0; list-style: none; }
.engagement-route-card li { display: grid; grid-template-columns: 18px minmax(0, 1fr); gap: 8px; color: #cbd6e5; font-size: 0.82rem; line-height: 1.42; }
.engagement-route-card li span { color: var(--color-success-500); font-weight: 900; }
.engagement-route-card .button { width: 100%; align-self: end; }
.engagement-route-response { margin-top: 10px; color: var(--color-text-secondary); font-size: 0.68rem; line-height: 1.4; text-align: center; }
.home-buyer-process { margin-top: 50px; border-top: 1px solid rgba(32, 52, 81, 0.82); padding-top: 46px; }
.home-buyer-grid { display: grid; grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr); gap: 48px; align-items: start; }
.home-buyer-copy .section-head { margin-bottom: 24px; }
.home-buyer-links { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 20px; }
.home-buyer-steps { margin: 0; padding: 0; overflow: hidden; border: 1px solid rgba(51, 200, 255, 0.28); border-radius: var(--radius-md); background: rgba(11, 20, 38, 0.68); list-style: none; }
.home-buyer-steps li { min-height: 122px; display: grid; grid-template-columns: 52px minmax(0, 1fr); gap: 18px; align-items: start; padding: 22px; border-bottom: 1px solid rgba(32, 52, 81, 0.82); }
.home-buyer-steps li:last-child { border-bottom: 0; }
.home-buyer-steps > li > span { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(51, 200, 255, 0.42); border-radius: 12px; color: var(--color-brand-400); background: rgba(51, 200, 255, 0.06); font-family: var(--font-mono); font-size: 0.68rem; font-weight: 800; }
.home-buyer-steps strong { display: block; margin-bottom: 7px; color: var(--color-text-primary); font-size: 1.05rem; }
.home-buyer-steps p { max-width: 62ch; margin: 0; color: var(--color-text-secondary); font-size: 0.9rem; line-height: 1.55; }
.home-buyer-assurance { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 18px; }
.home-buyer-assurance article { min-width: 0; display: grid; grid-template-columns: 28px minmax(0, 1fr); gap: 10px; align-items: start; border: 1px solid rgba(50, 213, 131, 0.22); border-radius: var(--radius-sm); padding: 16px; background: rgba(50, 213, 131, 0.045); }
.home-buyer-assurance article > span { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; color: #02110a; background: var(--color-success-500); font-size: 0.76rem; font-weight: 900; }
.home-buyer-assurance strong { display: block; margin-bottom: 5px; color: var(--color-text-primary); font-size: 0.88rem; }
.home-buyer-assurance p { margin: 0; color: var(--color-text-secondary); font-size: 0.78rem; line-height: 1.48; }

.buyer-faq-section { border-top: 1px solid rgba(32, 52, 81, 0.72); }
.buyer-faq-grid { display: grid; grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr); gap: 56px; align-items: start; }
.buyer-faq-copy .section-head { margin-bottom: 22px; }
.buyer-faq-list { overflow: hidden; border: 1px solid rgba(51, 200, 255, 0.24); border-radius: var(--radius-md); background: rgba(5, 14, 29, 0.72); }
.buyer-faq-list details { border-bottom: 1px solid rgba(32, 52, 81, 0.82); }
.buyer-faq-list details:last-child { border-bottom: 0; }
.buyer-faq-list details[open] { background: linear-gradient(100deg, rgba(51, 200, 255, 0.08), rgba(5, 14, 29, 0.34)); }
.buyer-faq-list summary { min-height: 72px; display: grid; grid-template-columns: minmax(0, 1fr) 26px; gap: 18px; align-items: center; padding: 18px 20px; color: var(--color-text-primary); cursor: pointer; list-style: none; }
.buyer-faq-list summary::-webkit-details-marker { display: none; }
.buyer-faq-list summary > span { display: grid; grid-template-columns: 30px minmax(0, 1fr); gap: 10px; align-items: center; font-weight: 700; line-height: 1.35; }
.buyer-faq-list summary small { color: var(--color-brand-400); font-family: var(--font-mono); font-size: 0.65rem; }
.buyer-faq-list summary i { position: relative; width: 24px; height: 24px; border: 1px solid rgba(51, 200, 255, 0.35); border-radius: 50%; }
.buyer-faq-list summary i::before,
.buyer-faq-list summary i::after { content: ""; position: absolute; top: 50%; left: 50%; width: 10px; height: 1px; background: var(--color-brand-400); transform: translate(-50%, -50%); transition: transform var(--transition); }
.buyer-faq-list summary i::after { transform: translate(-50%, -50%) rotate(90deg); }
.buyer-faq-list details[open] summary i::after { transform: translate(-50%, -50%) rotate(0deg); }
.buyer-faq-list details > p { max-width: 72ch; margin: 0; padding: 0 64px 20px 60px; color: #b8c6d9; font-size: 0.9rem; line-height: 1.6; }

.cta-section { padding-block: 56px; background: var(--color-surface-800); }
.cta-panel { display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.cta-panel h2 { margin-bottom: 12px; }
.cta-panel p { max-width: 680px; margin-bottom: 0; }
.cta-panel .button { flex: 0 0 auto; }
.cta-actions { min-width: 250px; display: grid; justify-items: center; gap: 9px; }
.cta-actions small { max-width: 250px; color: var(--color-text-secondary); font-size: 0.73rem; line-height: 1.4; text-align: center; }

.company-signals {
  display: grid;
  gap: 10px;
  border: 1px solid var(--color-border-600);
  border-radius: var(--radius-md);
  padding: 22px;
  background: rgba(11, 20, 38, 0.82);
}
.featured-case-preview { position: relative; width: min(100%, 500px); aspect-ratio: 16 / 9; justify-self: end; overflow: hidden; border: 1px solid rgba(51, 200, 255, 0.4); border-radius: var(--radius-md); background: #eaf0f8; }
.featured-case-preview img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.featured-case-preview figcaption { position: absolute; right: 14px; bottom: 14px; left: 14px; display: flex; align-items: center; justify-content: space-between; gap: 16px; border: 1px solid rgba(51, 200, 255, 0.38); border-radius: var(--radius-sm); padding: 12px 14px; background: rgba(2, 8, 23, 0.92); }
.featured-case-preview figcaption span { color: var(--color-brand-400); font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase; }

.case-feature-list { grid-template-columns: 1fr; }
.case-feature-list .case-card { display: grid; grid-template-columns: minmax(280px, 1.02fr) minmax(280px, 0.98fr); gap: 22px; padding: 12px; }
.case-feature-list .case-card .card-media { height: 100%; min-height: 230px; margin: 0; }
.case-feature-list .case-card-copy { padding: 14px 12px 14px 0; }
.case-feature-list .case-card h3 { margin-top: 12px; font-size: 1.65rem; }
.case-feature-list .case-card p { padding: 0; }
.case-grid-full:not(.case-feature-list) { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.case-archive-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.case-archive-grid .case-card { min-height: 100%; }
.case-archive-grid .case-card { padding: 14px; }
.case-archive-grid .card-media { aspect-ratio: 16 / 6; margin: 8px 0 10px; }
.case-archive-grid .case-card h3 { font-size: 1.3rem; }
.case-archive-grid .case-card p { display: none; }
.case-archive-grid .case-facts { grid-template-columns: 1fr; gap: 0; margin: 12px 0 16px; border-top: 1px solid rgba(32, 52, 81, 0.72); }
.case-archive-grid .case-facts div { display: grid; grid-template-columns: 82px minmax(0, 1fr); gap: 12px; align-items: start; border: 0; border-bottom: 1px solid rgba(32, 52, 81, 0.72); border-radius: 0; padding: 10px 0; background: transparent; }
.case-archive-grid .case-facts dt { margin: 1px 0 0; }
.case-archive-grid .case-facts dd { font-size: 0.82rem; font-weight: 600; line-height: 1.4; overflow-wrap: normal; word-break: normal; hyphens: none; }

.method-hero .interior-hero-grid { grid-template-columns: 1fr; gap: 30px; }
.method-hero .interior-hero-grid > div { max-width: 820px; }
.process-preview { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 0; padding: 14px; border: 1px solid var(--color-border-600); border-radius: var(--radius-md); background: rgba(11, 20, 38, 0.82); list-style: none; }
.process-preview li { display: grid; gap: 8px; min-height: 72px; padding: 10px 16px; border-right: 1px solid rgba(32, 52, 81, 0.72); color: #dbe6f6; font-weight: 600; }
.process-preview li:nth-child(3n) { border-right: 0; }
.process-preview li:nth-child(-n+3) { border-bottom: 1px solid rgba(32, 52, 81, 0.72); }
.process-preview span { color: var(--color-brand-400); font-family: var(--font-mono); font-size: 0.72rem; }
.nen-mini-system { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 24px; }
.nen-mini-system span { min-height: 76px; display: grid; align-content: center; gap: 3px; border: 1px solid rgba(32, 52, 81, 0.82); border-radius: var(--radius-sm); padding: 12px; background: rgba(11, 20, 38, 0.58); }
.nen-mini-system strong { font-size: 0.9rem; }
.nen-mini-system small { color: var(--color-text-secondary); line-height: 1.35; }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 110px 1fr; gap: 30px; padding: 30px 0; border-bottom: 1px solid var(--color-border-600); }
.process-list li:first-child { border-top: 1px solid var(--color-border-600); }
.process-list li > span { color: var(--color-brand-400); font-family: var(--font-mono); font-size: 1rem; font-weight: 700; }
.process-list h2 { margin-bottom: 8px; font-size: 1.8rem; }
.process-list p { max-width: 700px; margin-bottom: 0; }

.company-signals span { display: grid; gap: 3px; padding-bottom: 10px; border-bottom: 1px solid rgba(32, 52, 81, 0.72); }
.company-signals span:last-child { padding-bottom: 0; border-bottom: 0; }
.company-signals small { color: var(--color-brand-400); font-family: var(--font-mono); text-transform: uppercase; }
.company-scope { display: grid; gap: 0; overflow: hidden; }
.company-scope span { display: grid; gap: 4px; padding: 18px 22px; border-bottom: 1px solid var(--color-border-600); }
.company-scope span:last-child { border-bottom: 0; }
.company-scope small { color: var(--color-brand-400); font-family: var(--font-mono); text-transform: uppercase; }

.contact-section { padding-top: 56px; }
.contact-grid { align-items: start; }
.contact-copy h2 { font-size: 2rem; }
.contact-copy { position: sticky; top: 104px; border: 1px solid var(--color-border-600); border-radius: var(--radius-md); padding: 28px; background: rgba(11, 20, 38, 0.62); }
.contact-copy ol { display: grid; gap: 20px; padding: 0; list-style: none; }
.contact-copy li { display: flex; gap: 14px; align-items: center; color: #dbe6f6; }
.contact-copy li span { color: var(--color-brand-400); font-family: var(--font-mono); font-size: 0.74rem; }
.contact-receives { margin-top: 28px; border-top: 1px solid rgba(32, 52, 81, 0.82); padding-top: 22px; }
.contact-receives > strong { display: block; margin-bottom: 12px; color: var(--color-text-primary); font-size: 0.9rem; }
.contact-receives ul { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.contact-receives li { position: relative; display: block; padding-left: 20px; color: var(--color-text-secondary); font-size: 0.82rem; line-height: 1.45; }
.contact-receives li::before { content: ""; position: absolute; top: 0.55em; left: 1px; width: 7px; height: 7px; border-radius: 50%; background: var(--color-success-500); box-shadow: 0 0 10px rgba(50, 213, 131, 0.5); }
.contact-boundary { margin: 20px 0 0; border-left: 2px solid rgba(50, 213, 131, 0.66); padding: 9px 12px; color: #c9ead9; background: rgba(50, 213, 131, 0.055); font-size: 0.8rem; line-height: 1.45; }
.contact-options { display: grid; gap: 10px; margin-top: 32px; }
.contact-options a { width: fit-content; color: var(--color-brand-400); font-weight: 700; }
.response-time { width: fit-content; margin: 20px auto 0; border: 1px solid rgba(50, 213, 131, 0.36); border-radius: 999px; padding: 8px 14px; color: #dfffee; background: rgba(50, 213, 131, 0.08); font-size: 0.9rem; font-weight: 700; }

.nen-guide {
  display: grid;
  grid-template-columns: minmax(300px, 390px) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  border: 1px solid rgba(51, 200, 255, 0.28);
  border-radius: var(--radius-md);
  padding: 14px;
  background: rgba(11, 20, 38, 0.64);
}
.nen-guide h3 { margin-bottom: 6px; font-size: 1.24rem; }
.nen-guide p:last-child { margin-bottom: 0; }
.nen-guide[data-nen-state="build"],
.nen-guide[data-nen-state="activate"],
.nen-guide[data-nen-state="success"] {
  border-color: rgba(50, 213, 131, 0.36);
  background: rgba(50, 213, 131, 0.06);
}
.nen-guide[data-nen-state="caution"] {
  border-color: rgba(255, 209, 118, 0.38);
  background: rgba(255, 209, 118, 0.06);
}

.architecture { border: 1px solid var(--color-border-600); border-radius: var(--radius-md); padding: 40px; background: rgba(11, 20, 38, 0.68); }
.architecture-core { max-width: 540px; display: grid; gap: 4px; margin: 0 auto 34px; border: 1px solid rgba(50, 213, 131, 0.46); border-radius: var(--radius-md); padding: 24px; text-align: center; }
.architecture-core span { color: var(--color-success-500); font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; }
.architecture-core strong { font-size: 1.55rem; }
.architecture-core small { color: var(--color-text-secondary); }
.architecture-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.architecture-grid > div { display: grid; gap: 8px; border: 1px solid var(--color-border-600); border-radius: var(--radius-sm); padding: 20px; }
.architecture-grid span { color: var(--color-brand-400); font-family: var(--font-mono); font-size: 0.7rem; }

.product-visual { position: relative; aspect-ratio: 16 / 10; }
.product-visual img { width: 100%; height: 100%; border: 1px solid var(--color-border-600); border-radius: var(--radius-md); background: #edf3fa; box-shadow: var(--shadow-panel); object-fit: cover; object-position: top; }
.product-visual .status-badge { position: absolute; top: 16px; left: 16px; background: rgba(2, 8, 23, 0.9); }
.product-evidence-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr); align-items: center; gap: 48px; }
.product-evidence figure { overflow: hidden; border: 1px solid var(--color-border-600); border-radius: var(--radius-md); background: #edf3fa; }
.product-evidence figure img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: top; }
.product-evidence .section-head { margin-bottom: 20px; }
.prose { max-width: 820px; }
.prose h2 { margin-top: 44px; font-size: 1.65rem; }
.prose h2:first-child { margin-top: 0; }
.prose a,
.trust-contact a { color: var(--color-brand-400); font-weight: 700; }
.trust-contact { max-width: 820px; margin-top: 52px; padding-top: 36px; border-top: 1px solid var(--color-border-600); }
.trust-contact h2 { font-size: 1.7rem; }

@media (max-width: 900px) {
  .nen-diagnostic-shell { grid-template-columns: 1fr; }
  .nen-choice-panel { border-right: 0; border-bottom: 1px solid rgba(32, 52, 81, 0.92); }
  .home-proof-shell { grid-template-columns: 1fr; }
  .home-proof-selector { border-right: 0; border-bottom: 1px solid rgba(32, 52, 81, 0.92); }
  .home-buyer-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 620px) {
  .nen-choice-panel { padding: 18px; }
  .nen-choice { padding: 12px; }
  .nen-recommendation { grid-template-columns: 1fr; gap: 18px; padding: 18px; }
  .nen-diagnostic-core { min-height: 0; }
  .nen-diagnostic-core .nen-core-visual { width: 128px; }
  .nen-result-copy h3 { max-width: none; font-size: 1.55rem; }
  .nen-result-facts { grid-template-columns: 1fr; }
  .nen-diagnostic-footnote { align-items: flex-start; }
  .home-proof-selector { padding: 18px; }
  .home-proof-tab { padding: 12px; }
  .home-proof-panel { grid-template-columns: 1fr; gap: 18px; padding: 18px; }
  .home-proof-media { aspect-ratio: 16 / 9; }
  .home-proof-copy h3 { max-width: none; font-size: 1.55rem; }
  .home-proof-facts { grid-template-columns: 1fr; }
  .home-proof-note { align-items: flex-start; }
  .home-buyer-links { display: grid; }
  .home-buyer-steps li { min-height: 0; grid-template-columns: 42px minmax(0, 1fr); gap: 12px; padding: 18px; }
  .home-buyer-steps > li > span { width: 36px; height: 36px; }
  .home-buyer-assurance { grid-template-columns: 1fr; }
  .cta-actions { min-width: 0; justify-items: stretch; }
  .cta-actions small { max-width: none; }
  .home-operating-visual { min-height: 0; }
  .home-operating-header { align-items: flex-start; flex-direction: column; gap: 5px; }
  .home-operating-map { grid-template-columns: 1fr; gap: 10px; padding: 18px; }
  .home-operating-arrow { transform: rotate(90deg); }
  .home-operating-base { width: 100%; }
  .home-operating-footer { grid-template-columns: 1fr; }
  .home-operating-footer > .text-link { justify-self: start; white-space: normal; }
}
}

@layer utilities {
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
}

@layer responsive {
@media (max-width: 1120px) {
  :root { --gutter: 24px; --section-space: 78px; }
  h1 { font-size: 3.3rem; }
  h2 { font-size: 2.3rem; }
  .narrow h1 { font-size: 2.85rem; }
  .header-inner { gap: 24px; }
  .brand { width: 190px; height: 38px; flex-basis: 190px; }
  .header-panel,
  .main-nav { gap: 18px; }
  .main-nav a { font-size: 0.86rem; }
  .hero-grid { grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr); gap: 32px; }
  .product-hero-grid,
  .split,
  .contact-grid,
  .interior-hero-grid { grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr); gap: 42px; }
  .solution-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
  .home-page .hero-grid { grid-template-columns: 1fr; }
  .home-page .hero-copy { max-width: 760px; }
  .home-page .home-operating-visual { min-height: 440px; }
  .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
  .site-footer a { max-width: 100%; overflow-wrap: anywhere; }
}

@media (max-width: 900px) {
  :root { --header-height: 70px; --section-space: 68px; }
  h1,
  .narrow h1 { font-size: 2.75rem; }
  .page-hero h1,
  .product-hero h1 { font-size: 2.65rem; }
  h2 { font-size: 2.15rem; }
  .header-inner { justify-content: space-between; }
  .brand { width: 176px; height: 36px; flex-basis: 176px; }
  .menu-button { width: 44px; height: 44px; display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; border: 1px solid var(--color-border-600); border-radius: var(--radius-sm); background: var(--color-surface-800); }
  .menu-button span { width: 20px; height: 2px; border-radius: 2px; background: var(--color-text-primary); }
  .header-panel { position: fixed; top: var(--header-height); right: 0; bottom: 0; left: 0; display: none; overflow-y: auto; padding: 18px var(--gutter) 32px; background: rgba(2, 8, 23, 0.99); }
  .header-panel.is-open { display: block; }
  .main-nav { display: grid; gap: 4px; }
  .main-nav a { min-height: 54px; border-bottom: 1px solid var(--color-border-600); font-size: 1rem; }
  .main-nav a[aria-current="page"]::after { display: none; }
  .header-actions { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 22px; }
  .nav-cta { min-height: 50px; }
  .hero-grid,
  .product-hero-grid,
  .split,
  .contact-grid,
  .interior-hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .operational-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .method-outcome-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ecosystem-preview-grid { grid-template-columns: 1fr; }
  .company-human-panel { grid-template-columns: 1fr; }
  .company-purpose-grid,
  .company-values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .engagement-route-grid,
  .buyer-faq-grid { grid-template-columns: 1fr; }
  .engagement-route-card > p { min-height: 0; }
  .nen-panel { grid-template-columns: 1fr; }
  .web-work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .web-work-card,
  .web-work-card:nth-child(n+4) { grid-column: auto; }
  .featured-case-preview,
  .company-signals { width: 100%; max-width: 720px; }
  .webs-showcase { width: 100%; max-width: 760px; }
  .authority-list { grid-template-columns: repeat(2, 1fr); padding-block: 8px; }
  .authority-list span:nth-child(odd) { border-left: 1px solid var(--color-border-600); }
  .authority-list span:nth-child(2) { border-right: 0; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  :root { --gutter: 20px; --section-space: 62px; }
  .hero { padding-block: 46px; }
  .page-hero,
  .product-hero { padding-block: 52px; }
  .page-hero .interior-hero-grid { min-height: 0; }
  .process-preview { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-preview li { min-height: 52px; grid-template-columns: 34px 1fr; align-items: center; border-right: 0; border-bottom: 1px solid rgba(32, 52, 81, 0.72); }
  .process-preview li:nth-last-child(-n+2) { border-bottom: 0; }
  .choice-grid,
  .product-grid,
  .solution-grid,
  .case-grid,
  .case-grid-full,
  .value-grid,
  .document-grid { grid-template-columns: 1fr; }
  .case-feature-list .case-card { grid-template-columns: 1fr; gap: 0; }
  .case-feature-list .case-card .card-media { height: auto; min-height: 0; }
  .case-feature-list .case-card-copy { padding: 20px 10px 8px; }
  .case-archive-grid { grid-template-columns: 1fr; }
  .entry-route-grid,
  .solution-detail-grid { grid-template-columns: 1fr; }
  .product-evidence-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-panel { align-items: stretch; flex-direction: column; gap: 28px; }
}

@media (max-width: 620px) {
  :root { --gutter: 18px; --section-space: 46px; }
  body { font-size: 0.98rem; }
  h1,
  .narrow h1 { font-size: 2.05rem; line-height: 1.06; }
  .page-hero h1,
  .product-hero h1 { font-size: 2.05rem; }
  h2 { font-size: 1.9rem; line-height: 1.12; }
  h3 { font-size: 1.35rem; }
  .lead { font-size: 0.98rem; line-height: 1.52; }
  .hero,
  .page-hero,
  .compact-hero,
  .product-hero { padding-block: 34px; }
  .home-page .hero { padding-block: 20px 24px; }
  .home-page .hero h1 { font-size: 1.78rem; line-height: 1.04; }
  .home-page .hero .kicker { margin-bottom: 10px; }
  .home-page .hero .lead { margin-bottom: 12px; }
  .home-page .hero .actions {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 14px;
  }
  .home-page .hero .button { width: 100%; min-width: 0; max-width: 100%; min-height: 44px; padding-inline: 10px; font-size: 0.82rem; }
  .home-page .hero-copy,
  .home-page .hero-copy p,
  .home-page .trust-line { max-width: 100%; min-width: 0; overflow-wrap: anywhere; }
  .section-head { margin-bottom: 30px; }
  .solutions-hero,
  .products-hero,
  .company-hero,
  .cases-hero,
  .webs-hero { padding-block: 30px; }
  .solutions-hero { padding-block: 24px; }
  .hero-grid { gap: 18px; }
  .home-hero-visual { min-height: 330px; }
  .home-hero-visual img { min-height: 330px; object-position: center 12%; }
  .home-hero-visual figcaption { right: 12px; bottom: 12px; left: 12px; width: auto; padding: 12px; }
  .home-hero-visual figcaption strong { font-size: 0.92rem; }
  .home-hero-chip { top: 12px; right: 12px; left: auto; }
  .solutions-hero .interior-hero-grid,
  .products-hero .interior-hero-grid,
  .company-hero .interior-hero-grid,
  .cases-hero .interior-hero-grid,
  .webs-hero .interior-hero-grid { gap: 18px; }
  .webs-showcase { min-height: 0; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: 200px 116px; gap: 8px; }
  .webs-browser-card--primary { grid-column: 1 / -1; grid-row: 1; }
  .webs-browser-card { border-radius: var(--radius-sm); }
  .webs-browser-bar { height: 28px; padding-inline: 8px; }
  .webs-browser-card img { height: calc(100% - 28px); }
  .webs-browser-card figcaption { right: 7px; bottom: 7px; padding: 5px 7px; font-size: 0.52rem; }
  .web-work-grid { grid-template-columns: 1fr; }
  .actions { display: grid; }
  .actions .text-link { min-height: 44px; align-items: center; }
  .button { width: 100%; }
  .trust-line { margin-top: 12px; font-size: 0.78rem; }
  .choice { min-height: auto; }
  .authority-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .authority-list span { min-height: 58px; display: grid; align-content: center; justify-content: stretch; border-bottom: 1px solid var(--color-border-600); border-left: 0; text-align: left; }
  .mini-proof-band .authority-list { min-height: 0; }
  .mini-proof-band .authority-list span { min-height: 48px; padding: 7px 12px; }
  .authority-list span:nth-child(odd) { border-right: 1px solid var(--color-border-600); }
  .authority-list span:nth-last-child(-n+2) { border-bottom: 0; }
  .nen-panel { padding: 18px; }
  .nen-core-panel { grid-template-columns: 1fr; }
  .nen-home-core { min-height: 0; grid-template-columns: 76px minmax(0, 1fr); padding: 12px; }
  .nen-home-core .nen-core-visual { width: 68px; }
  .nen-mode-flow { grid-template-columns: 1fr; gap: 6px; }
  .nen-mode-flow span { border-left: 2px solid rgba(51, 200, 255, 0.42); padding: 7px 10px; background: rgba(2, 8, 23, 0.34); }
  .nen-mode-flow i { display: none; }
  .operational-grid { grid-template-columns: 1fr; }
  .operational-card { min-height: 0; padding: 20px; }
  .home-page .friction-grid,
  .home-page .solution-preview-grid {
    max-width: 100%;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(82vw, 300px);
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 2px 2px 12px;
    scroll-snap-type: x mandatory;
    scrollbar-color: rgba(51, 200, 255, 0.52) rgba(2, 8, 23, 0.42);
    scrollbar-width: thin;
  }
  .home-page .friction-grid .operational-card,
  .home-page .solution-preview-grid .operational-card { min-height: 300px; scroll-snap-align: start; }
  .operational-eyebrow,
  .operational-tag,
  .solution-preview-label { font-size: 0.7rem; }
  .friction-card h3,
  .solution-preview-card h3 { min-height: 0; }
  .engagement-route-grid {
    max-width: 100%;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(86vw, 320px);
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 2px 2px 12px;
    scroll-snap-type: x mandatory;
    scrollbar-color: rgba(50, 213, 131, 0.52) rgba(2, 8, 23, 0.42);
    scrollbar-width: thin;
  }
  .engagement-route-card { min-height: 560px; padding: 20px; scroll-snap-align: start; }
  .engagement-route-head small { white-space: normal; }
  .home-buyer-process { margin-top: 32px; padding-top: 30px; }
  .buyer-faq-list summary { min-height: 64px; padding: 15px 14px; }
  .buyer-faq-list summary > span { grid-template-columns: 26px minmax(0, 1fr); gap: 8px; font-size: 0.9rem; }
  .buyer-faq-list details > p { padding: 0 48px 18px 48px; font-size: 0.84rem; }
  .method-outcome-grid { grid-template-columns: 1fr; }
  .method-outcome-card { min-height: 0; }
  .ecosystem-preview-grid { gap: 28px; }
  .system-map { min-height: 430px; }
  .system-map > span { min-width: 96px; padding: 8px; font-size: 0.68rem; }
  .system-map > span:nth-of-type(2), .system-map > span:nth-of-type(3) { left: 80%; }
  .system-map > span:nth-of-type(5), .system-map > span:nth-of-type(6) { left: 20%; }
  .compact-system-map { min-height: 390px; }
  .ecosystem-layers { grid-template-columns: 1fr; }
  .ecosystem-layers > div { min-height: 130px; border-right: 0; border-bottom: 1px solid var(--color-border-600); padding: 20px; }
  .ecosystem-layers > div:last-child { border-bottom: 0; }
  .before-after-map { min-height: 0; grid-template-columns: 1fr; padding: 16px; }
  .before-after-map > div { min-height: 0; }
  .before-after-map > i { width: 1px; height: 42px; justify-self: center; background: linear-gradient(rgba(51, 200, 255, 0.22), var(--color-brand-400)); }
  .before-after-map > i::after { top: auto; right: -4px; bottom: 0; transform: rotate(135deg); }
  .entry-route-grid a { min-height: 190px; padding: 20px; }
  .solution-detail-grid .solution-card { min-height: 0; }
  .company-human-panel { padding: 18px; }
  .company-human-panel h2 { font-size: 1.65rem; }
  .company-anchor-nav { min-height: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px; padding-block: 8px; overflow: visible; }
  .company-anchor-nav a { justify-content: center; min-width: 0; padding-inline: 10px; font-size: 0.78rem; text-align: center; white-space: normal; }
  .company-purpose-grid,
  .company-values-grid { grid-template-columns: 1fr; }
  .company-purpose-card { min-height: 0; padding: 22px; }
  .company-purpose-card h3 { margin-top: 28px; font-size: 1.5rem; }
  .company-value-card { min-height: 0; }
  .company-route-head { margin-top: 38px; }
  .method-preview-grid { grid-template-columns: 1fr; }
  .method-preview-grid li, .method-preview-grid li:nth-child(3n), .method-preview-grid li:nth-last-child(-n+3) { min-height: 96px; border-right: 0; border-bottom: 1px solid var(--color-border-600); }
  .method-preview-grid li:last-child { border-bottom: 0; }
  .home-page .method-preview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-page .method-preview-grid li,
  .home-page .method-preview-grid li:nth-child(3n),
  .home-page .method-preview-grid li:nth-last-child(-n+3) { min-height: 108px; padding: 14px; border-right: 1px solid var(--color-border-600); border-bottom: 1px solid var(--color-border-600); }
  .home-page .method-preview-grid li:nth-child(2n) { border-right: 0; }
  .home-page .method-preview-grid li:nth-last-child(-n+2) { border-bottom: 0; }
  .home-page .method-preview-grid em { font-size: 0.68rem; }
  .nen-copy h2 { font-size: 1.72rem; }
  .nen-mini-system { grid-template-columns: 1fr; gap: 8px; }
  .company-signals { padding: 16px; gap: 8px; }
  .company-signals span { min-height: 56px; grid-template-columns: 1fr; gap: 2px; padding: 10px; font-size: 0.82rem; }
  .case-actions { align-items: stretch; flex-direction: column; }
  .case-actions .text-link { min-height: 44px; }
  .case-feature-list .case-card,
  .case-archive-grid .case-card { padding: 10px; }
  .case-feature-list .case-card .card-media,
  .case-archive-grid .case-card .card-media { max-height: 120px; aspect-ratio: 16 / 7; margin: 8px 0; }
  .case-feature-list .case-card h3 { font-size: 1.32rem; }
  .case-facts { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }
  .case-facts div { border-color: transparent; padding: 0; background: transparent; }
  .case-facts dt { font-size: 0.56rem; }
  .case-facts dd { font-size: 0.72rem; }
  .case-archive-grid .case-facts { grid-template-columns: 1fr; gap: 0; }
  .case-archive-grid .case-facts div { grid-template-columns: 76px minmax(0, 1fr); gap: 10px; border-bottom: 1px solid rgba(32, 52, 81, 0.72); padding: 8px 0; }
  .case-archive-grid .case-facts dd { font-size: 0.74rem; }
  .case-actions { flex-direction: row; gap: 8px; padding-top: 8px; }
  .case-actions .button,
  .case-actions .text-link { flex: 1 1 0; justify-content: center; min-height: 44px; font-size: 0.82rem; }
  .method-hero .process-preview { display: none; }
  .case-card p {
    display: none;
  }
  .process-list li { grid-template-columns: 52px 1fr; gap: 16px; padding-block: 24px; }
  .architecture { padding: 18px; }
  .architecture-grid { grid-template-columns: 1fr; }
  .brief-form { padding: 20px; }
  .brief-route-summary { margin-bottom: 20px; padding: 14px; }
  .contact-copy { position: static; padding: 20px; }
  .nen-form-companion.compact {
    top: calc(var(--header-height) + 8px);
    margin-inline: -8px;
    border-radius: 14px;
    padding: 7px;
    background: rgba(5, 14, 29, 0.97);
  }
  .nen-form-core,
  .nen-guide .nen-core { grid-template-columns: 64px minmax(0, 1fr); gap: 10px; }
  .nen-form-core { grid-template-columns: 48px minmax(0, 1fr); min-height: 68px; padding: 8px 10px; }
  .nen-form-core .nen-core-copy { padding-top: 22px; }
  .nen-form-core .nen-core-copy span { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; font-size: 0.78rem; }
  .nen-form-core::before { top: 8px; right: auto; left: 68px; }
  .nen-form-core .nen-core-visual { width: 46px; border-radius: 15px; }
  .nen-guide .nen-core-visual { width: 58px; border-radius: 18px; }
  .brief-form input, .brief-form select, .brief-form textarea { scroll-margin-top: calc(var(--header-height) + 96px); }
  .nen-guide { grid-template-columns: 1fr; gap: 12px; padding: 12px; }
  .form-actions { display: grid; }
  .solution-grid { gap: 14px; }
  .solution-card { min-height: 0; padding: 18px; }
  .solution-card h2 { margin-top: 12px; font-size: 1.22rem; }
  .solution-card p { font-size: 0.91rem; }
  .solution-problem { margin-top: 14px; padding-top: 14px; }
  .home-page .case-card:nth-child(n+2) { display: none; }
  .product-card-head { flex-direction: column; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 22px; padding-bottom: 18px; }
  .footer-brand { grid-column: 1 / -1; }
  .site-footer { padding: 34px 0 18px; }
  .text-link,
  .card-link,
  .site-footer a,
  .nen-method-controls .button { min-height: 44px; display: inline-flex; align-items: center; }
  .site-footer a { max-width: 100%; margin-block: 0; overflow-wrap: anywhere; }
  .footer-bottom { flex-direction: column; gap: 12px; padding-top: 16px; }
  .footer-bottom span:last-child { flex-wrap: wrap; }

  .home-proof-tabs,
  .nen-choice-list {
    max-width: 100%;
    grid-template-columns: none;
    grid-auto-flow: column;
    gap: 8px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 2px 2px 10px;
    scroll-snap-type: x mandatory;
    scrollbar-color: rgba(51, 200, 255, 0.52) rgba(2, 8, 23, 0.42);
    scrollbar-width: thin;
  }
  .home-proof-tabs { grid-auto-columns: min(76vw, 250px); margin-bottom: 14px; }
  .nen-choice-list { grid-auto-columns: min(78vw, 270px); }
  .home-proof-tab,
  .nen-choice { min-height: 78px; scroll-snap-align: start; }
  .home-proof-meta,
  .nen-result-top,
  .home-operating-header > span,
  .home-operating-stack small { font-size: 0.72rem; }
  .nen-diagnostic-core {
    min-height: 0;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 10px;
    align-content: center;
    padding: 10px;
  }
  .nen-diagnostic-core .nen-core-visual { width: 66px; margin-inline: 0; }
  .nen-diagnostic-core .nen-core-copy { padding-top: 18px; }
  .home-operating-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
    padding: 14px;
  }
  .home-page .home-operating-visual { min-height: 0; }
  .home-operating-stack { align-self: start; gap: 5px; }
  .home-operating-stack--outcome { grid-row: 1; grid-column: 2; }
  .home-operating-stack > span { padding: 7px 8px; font-size: 0.7rem; }
  .home-operating-arrow { display: none; }
  .home-operating-base { grid-row: 2; grid-column: 1 / -1; padding: 14px 12px; border-radius: 12px; }
  .home-operating-base > div { height: 22px; margin-top: 2px; }
  .home-operating-nen::before { font-size: 0.62rem; }
  .cta-actions small { font-size: 0.76rem; }
}

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