/* Nexwatt — nxwt.css — Site-wide stylesheet */
/* Palette: console_bg #111827 | console_surface #1F2937 | connector_line #374151 */
/* stone_border #D1D5DB | review_bg #F9FAFB | review_card #FFFFFF */
/* text_on_dark_primary #F9FAFB | text_on_dark_muted #9CA3AF */
/* text_on_light_primary #111827 | text_on_light_muted #6B7280 */
/* accent_teal #14B8A6 | accent_amber #F59E0B */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #111827;
  background-color: #F9FAFB;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.nxwt-mono {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.875rem;
}

/* ============================================================
   CONTAINER
   ============================================================ */
.nxwt-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.nxwt-section {
  padding: 96px 0;
}

.nxwt-section--dark {
  background-color: #111827;
  color: #F9FAFB;
}

.nxwt-section--dark-alt {
  background-color: #1F2937;
  color: #F9FAFB;
}

.nxwt-section--light {
  background-color: #F9FAFB;
  color: #111827;
}

.nxwt-section--light-alt {
  background-color: #F3F4F6;
  color: #111827;
}

.nxwt-section--white {
  background-color: #FFFFFF;
  color: #111827;
}

.nxwt-section-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #14B8A6;
  margin-bottom: 12px;
  display: block;
}

.nxwt-section-headline {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.nxwt-section--dark .nxwt-section-headline,
.nxwt-section--dark-alt .nxwt-section-headline {
  color: #F9FAFB;
}

.nxwt-section--light .nxwt-section-headline,
.nxwt-section--light-alt .nxwt-section-headline,
.nxwt-section--white .nxwt-section-headline {
  color: #111827;
}

.nxwt-section-sub {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 600px;
}

.nxwt-section--dark .nxwt-section-sub,
.nxwt-section--dark-alt .nxwt-section-sub {
  color: #9CA3AF;
}

.nxwt-section--light .nxwt-section-sub,
.nxwt-section--light-alt .nxwt-section-sub,
.nxwt-section--white .nxwt-section-sub {
  color: #6B7280;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.nxwt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  transition: all 250ms ease-out;
  text-decoration: none;
  white-space: nowrap;
}

.nxwt-btn--primary {
  background-color: #14B8A6;
  color: #111827;
  border: 2px solid #14B8A6;
}

.nxwt-btn--primary:hover {
  background-color: #0D9488;
  border-color: #0D9488;
  color: #111827;
}

.nxwt-btn--outline-dark {
  background-color: transparent;
  color: #F9FAFB;
  border: 2px solid #374151;
}

.nxwt-btn--outline-dark:hover {
  border-color: #F9FAFB;
  color: #F9FAFB;
}

.nxwt-btn--outline-light {
  background-color: transparent;
  color: #111827;
  border: 2px solid #D1D5DB;
}

.nxwt-btn--outline-light:hover {
  border-color: #111827;
  color: #111827;
}

.nxwt-btn--ghost-dark {
  background-color: transparent;
  color: #F9FAFB;
  border: 2px solid transparent;
  padding: 12px 16px;
}

.nxwt-btn--ghost-dark:hover {
  color: #14B8A6;
}

.nxwt-btn--ghost-light {
  background-color: transparent;
  color: #111827;
  border: 2px solid transparent;
  padding: 12px 16px;
}

.nxwt-btn--ghost-light:hover {
  color: #14B8A6;
}

.nxwt-btn--sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nxwt-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color 250ms ease-out, box-shadow 250ms ease-out;
}

.nxwt-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nxwt-nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nxwt-nav__logo img {
  height: 28px;
  width: auto;
}

.nxwt-nav__logo--light {
  display: block;
}

.nxwt-nav__logo--dark {
  display: none;
}

.nxwt-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nxwt-nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  transition: color 150ms ease-out;
  text-decoration: none;
  white-space: nowrap;
}

.nxwt-nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nxwt-nav__actions .nxwt-btn--signin {
  background: transparent;
  border: 2px solid transparent;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 150ms ease-out;
  text-decoration: none;
  white-space: nowrap;
}

.nxwt-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nxwt-hamburger__bar {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  transition: all 250ms ease-out;
  display: block;
}

/* Dark-top pages: transparent nav, light links */
.nxwt-page--dark-top .nxwt-nav {
  background-color: transparent;
}

.nxwt-page--dark-top .nxwt-nav .nxwt-nav__link {
  color: #F9FAFB;
}

.nxwt-page--dark-top .nxwt-nav .nxwt-nav__link:hover {
  color: #14B8A6;
}

.nxwt-page--dark-top .nxwt-nav .nxwt-btn--signin {
  color: #F9FAFB;
  border-color: #374151;
}

.nxwt-page--dark-top .nxwt-nav .nxwt-btn--signin:hover {
  border-color: #F9FAFB;
}

.nxwt-page--dark-top .nxwt-nav .nxwt-nav__logo--light {
  display: block;
}

.nxwt-page--dark-top .nxwt-nav .nxwt-nav__logo--dark {
  display: none;
}

.nxwt-page--dark-top .nxwt-nav .nxwt-hamburger__bar {
  background-color: #F9FAFB;
}

/* Light-top pages: light bg nav, dark links */
.nxwt-page--light-top .nxwt-nav {
  background-color: #F9FAFB;
  box-shadow: 0 1px 0 #E5E7EB;
}

.nxwt-page--light-top .nxwt-nav .nxwt-nav__link {
  color: #111827;
}

.nxwt-page--light-top .nxwt-nav .nxwt-nav__link:hover {
  color: #14B8A6;
}

.nxwt-page--light-top .nxwt-nav .nxwt-btn--signin {
  color: #111827;
  border-color: #D1D5DB;
}

.nxwt-page--light-top .nxwt-nav .nxwt-btn--signin:hover {
  border-color: #111827;
}

.nxwt-page--light-top .nxwt-nav .nxwt-nav__logo--dark {
  display: block;
}

.nxwt-page--light-top .nxwt-nav .nxwt-nav__logo--light {
  display: none;
}

.nxwt-page--light-top .nxwt-nav .nxwt-hamburger__bar {
  background-color: #111827;
}

/* Scrolled state for dark-top pages — nav gains dark bg */
.nxwt-page--dark-top .nxwt-nav--scrolled {
  background-color: #111827;
  box-shadow: 0 1px 0 #374151;
}

.nxwt-page--dark-top .nxwt-nav--scrolled .nxwt-nav__link {
  color: #F9FAFB;
}

.nxwt-page--dark-top .nxwt-nav--scrolled .nxwt-btn--signin {
  color: #F9FAFB;
  border-color: #374151;
}

.nxwt-page--dark-top .nxwt-nav--scrolled .nxwt-nav__logo--light {
  display: block !important;
}

.nxwt-page--dark-top .nxwt-nav--scrolled .nxwt-nav__logo--dark {
  display: none !important;
}

.nxwt-page--dark-top .nxwt-nav--scrolled .nxwt-hamburger__bar {
  background-color: #F9FAFB;
}

/* Mobile nav overlay */
.nxwt-nav__mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 999;
}

.nxwt-page--dark-top .nxwt-nav__mobile {
  background-color: #111827;
  border-top: 1px solid #374151;
}

.nxwt-page--light-top .nxwt-nav__mobile {
  background-color: #F9FAFB;
  border-top: 1px solid #E5E7EB;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.nxwt-nav__mobile.nxwt-nav__mobile--open {
  display: block;
}

.nxwt-nav__mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.nxwt-nav__mobile-links .nxwt-nav__link {
  display: block;
  padding: 12px 8px;
  font-size: 1rem;
  border-bottom: 1px solid transparent;
}

.nxwt-page--dark-top .nxwt-nav__mobile-links .nxwt-nav__link {
  color: #F9FAFB;
  border-bottom-color: #1F2937;
}

.nxwt-page--light-top .nxwt-nav__mobile-links .nxwt-nav__link {
  color: #111827;
  border-bottom-color: #E5E7EB;
}

.nxwt-nav__mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px;
}

/* ============================================================
   HERO SECTION (index.html)
   ============================================================ */
#nxwt-hero {
  background-color: #111827;
  padding-top: 152px;
  padding-bottom: 96px;
  position: relative;
  overflow: hidden;
}

#nxwt-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(20,184,166,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(245,158,11,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.nxwt-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.nxwt-hero__content {
  max-width: 540px;
}

.nxwt-hero__eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #14B8A6;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nxwt-hero__eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: #14B8A6;
  display: inline-block;
}

.nxwt-hero__h1 {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #F9FAFB;
  margin-bottom: 24px;
}

.nxwt-hero__h1 em {
  font-style: normal;
  color: #14B8A6;
}

.nxwt-hero__sub {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.75;
  color: #9CA3AF;
  margin-bottom: 40px;
}

.nxwt-hero__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.nxwt-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   WORKFLOW MOCK SVG
   ============================================================ */
.nxwt-workflow-mock {
  background-color: #0F172A;
  border: 1px solid #374151;
  border-radius: 12px;
  padding: 28px;
  width: 100%;
  max-width: 500px;
  font-family: 'IBM Plex Mono', monospace;
}

.nxwt-wf-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #1F2937;
}

.nxwt-wf-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.nxwt-wf-dot--red { background-color: #EF4444; }
.nxwt-wf-dot--yellow { background-color: #F59E0B; }
.nxwt-wf-dot--green { background-color: #14B8A6; }

.nxwt-wf-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: #6B7280;
  margin-left: 8px;
}

.nxwt-wf-nodes {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nxwt-wf-node {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 16px;
  background-color: #1F2937;
  border-radius: 8px;
  border: 1px solid #374151;
  position: relative;
}

.nxwt-wf-node + .nxwt-wf-node {
  margin-top: 8px;
}

.nxwt-wf-node::before {
  content: '';
  position: absolute;
  left: 27px;
  top: -8px;
  width: 2px;
  height: 8px;
  background: #374151;
}

.nxwt-wf-node:first-child::before {
  display: none;
}

.nxwt-wf-node__icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: #111827;
}

.nxwt-wf-node__icon--crm { background-color: #14B8A6; }
.nxwt-wf-node__icon--agent { background-color: #374151; color: #9CA3AF; }
.nxwt-wf-node__icon--output { background-color: #F59E0B; }

.nxwt-wf-node__body {
  flex: 1;
  min-width: 0;
}

.nxwt-wf-node__label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6B7280;
  margin-bottom: 4px;
}

.nxwt-wf-node__text {
  font-size: 0.8125rem;
  color: #E5E7EB;
  line-height: 1.4;
}

.nxwt-wf-node__status {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nxwt-wf-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.nxwt-wf-status-dot--teal {
  background-color: #14B8A6;
  box-shadow: 0 0 6px rgba(20,184,166,0.6);
}

.nxwt-wf-status-dot--amber {
  background-color: #F59E0B;
  box-shadow: 0 0 6px rgba(245,158,11,0.5);
}

.nxwt-wf-status-dot--grey {
  background-color: #374151;
}

.nxwt-wf-status-text {
  font-size: 0.6875rem;
  color: #6B7280;
}

.nxwt-wf-confidence {
  margin-top: 16px;
  padding: 12px 14px;
  background-color: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nxwt-wf-confidence__label {
  font-size: 0.6875rem;
  color: #F59E0B;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nxwt-wf-confidence__bar {
  flex: 1;
  height: 4px;
  background-color: #374151;
  border-radius: 2px;
  overflow: hidden;
}

.nxwt-wf-confidence__fill {
  height: 100%;
  width: 62%;
  background: linear-gradient(90deg, #F59E0B, #FBBF24);
  border-radius: 2px;
}

.nxwt-wf-confidence__value {
  font-size: 0.6875rem;
  color: #F59E0B;
  font-weight: 500;
}

/* ============================================================
   SOCIAL PROOF BAR (dark-alt)
   ============================================================ */
#nxwt-social-proof-bar {
  background-color: #1F2937;
  padding: 40px 0;
  border-top: 1px solid #374151;
  border-bottom: 1px solid #374151;
}

.nxwt-proof-bar__label {
  text-align: center;
  font-size: 0.8125rem;
  color: #9CA3AF;
  margin-bottom: 28px;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.05em;
}

.nxwt-proof-bar__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.nxwt-tool-glyph {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9CA3AF;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: color 150ms ease-out;
  white-space: nowrap;
}

.nxwt-tool-glyph:hover {
  color: #D1D5DB;
}

.nxwt-tool-glyph svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
#nxwt-problem {
  background-color: #F9FAFB;
}

.nxwt-problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.nxwt-problem__content .nxwt-section-headline {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 24px;
  color: #111827;
}

.nxwt-problem__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nxwt-problem__text p {
  font-size: 1rem;
  line-height: 1.75;
  color: #6B7280;
  font-weight: 300;
}

.nxwt-data-flow {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nxwt-df-tool {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background-color: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
}

.nxwt-df-tool__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #6B7280;
  flex-shrink: 0;
}

.nxwt-df-tool__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
}

.nxwt-df-connector {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  gap: 12px;
}

.nxwt-df-connector__line {
  width: 2px;
  height: 28px;
  background-color: #E5E7EB;
  margin-left: 19px;
  flex-shrink: 0;
}

.nxwt-df-connector__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  color: #EF4444;
  background-color: #FEF2F2;
  border: 1px solid #FECACA;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: lowercase;
  margin-left: 24px;
}

/* ============================================================
   HOW IT WORKS SECTION (dark)
   ============================================================ */
#nxwt-how-nexwatt-works {
  background-color: #111827;
}

.nxwt-hiw__header {
  text-align: center;
  margin-bottom: 64px;
}

.nxwt-hiw__header .nxwt-section-headline {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: #F9FAFB;
}

.nxwt-hiw__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background-color: #374151;
  border-radius: 12px;
  overflow: hidden;
}

.nxwt-hiw-step {
  background-color: #111827;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nxwt-hiw-step__number {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  color: #14B8A6;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nxwt-hiw-step__title {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #F9FAFB;
  margin: 0;
}

.nxwt-hiw-step__desc {
  font-size: 0.9375rem;
  color: #9CA3AF;
  line-height: 1.65;
  font-weight: 300;
}

.nxwt-hiw-step__mock {
  margin-top: auto;
  padding: 12px 14px;
  background-color: #1F2937;
  border: 1px solid #374151;
  border-radius: 6px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  color: #9CA3AF;
  line-height: 1.6;
}

.nxwt-hiw-step__mock .nxwt-mono-accent {
  color: #14B8A6;
}

.nxwt-hiw-step__mock .nxwt-mono-amber {
  color: #F59E0B;
}

/* ============================================================
   AGENT CAPABILITIES (light)
   ============================================================ */
#nxwt-agent-capabilities {
  background-color: #F9FAFB;
}

.nxwt-caps__header {
  margin-bottom: 48px;
}

.nxwt-caps__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.nxwt-cap-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 32px;
  transition: border-color 250ms ease-out;
}

.nxwt-cap-card:hover {
  border-color: #14B8A6;
}

.nxwt-cap-card--large {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
}

.nxwt-cap-card__connector-motif {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #14B8A6, transparent);
  border-radius: 2px;
  margin-bottom: 24px;
}

.nxwt-cap-card__title {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 12px;
  line-height: 1.3;
}

.nxwt-cap-card__desc {
  font-size: 0.9375rem;
  color: #6B7280;
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 20px;
}

.nxwt-cap-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nxwt-cap-card__list li {
  font-size: 0.875rem;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nxwt-cap-card__list li::before {
  content: '';
  width: 16px;
  height: 2px;
  background-color: #14B8A6;
  flex-shrink: 0;
}

.nxwt-cap-card__confidence {
  margin-top: auto;
  padding: 16px;
  background-color: #F9FAFB;
  border-radius: 6px;
  border: 1px solid #E5E7EB;
}

.nxwt-confidence-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.nxwt-confidence-bar-wrap {
  height: 6px;
  background-color: #E5E7EB;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 6px;
}

.nxwt-confidence-fill {
  height: 100%;
  background: linear-gradient(90deg, #14B8A6, #FBBF24);
  border-radius: 3px;
}

.nxwt-confidence-fill--low {
  width: 58%;
}

.nxwt-confidence-note {
  font-size: 0.6875rem;
  color: #F59E0B;
  font-family: 'IBM Plex Mono', monospace;
}

.nxwt-approval-mock {
  margin-top: auto;
  padding: 12px 14px;
  background-color: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 6px;
  font-size: 0.8125rem;
}

.nxwt-approval-mock__header {
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: 'IBM Plex Mono', monospace;
}

.nxwt-approval-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #F3F4F6;
  font-size: 0.75rem;
  color: #374151;
}

.nxwt-approval-item:last-child {
  border-bottom: none;
}

.nxwt-approval-badge {
  font-size: 0.625rem;
  padding: 2px 7px;
  border-radius: 4px;
  font-weight: 600;
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nxwt-approval-badge--pending {
  background-color: #FEF3C7;
  color: #92400E;
}

.nxwt-approval-badge--approved {
  background-color: #CCFBF1;
  color: #065F46;
}

/* ============================================================
   USE CASES (light-alt)
   ============================================================ */
#nxwt-use-cases {
  background-color: #F3F4F6;
}

.nxwt-uc__header {
  margin-bottom: 48px;
}

.nxwt-uc__tiles {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.nxwt-uc-tile {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  transition: border-color 250ms ease-out, box-shadow 250ms ease-out;
}

.nxwt-uc-tile:hover {
  border-color: #14B8A6;
  box-shadow: 0 4px 16px rgba(20,184,166,0.1);
  color: inherit;
}

.nxwt-uc-tile--featured {
  background: linear-gradient(135deg, #111827 0%, #1F2937 100%);
  border-color: #374151;
}

.nxwt-uc-tile--featured:hover {
  border-color: #14B8A6;
}

.nxwt-uc-tile__number {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #14B8A6;
}

.nxwt-uc-tile--featured .nxwt-uc-tile__number {
  color: #14B8A6;
}

.nxwt-uc-tile__title {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
  margin: 0;
}

.nxwt-uc-tile--featured .nxwt-uc-tile__title {
  color: #F9FAFB;
}

.nxwt-uc-tile__stats {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nxwt-uc-tile__stat {
  font-size: 0.8125rem;
  color: #6B7280;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nxwt-uc-tile--featured .nxwt-uc-tile__stat {
  color: #9CA3AF;
}

.nxwt-uc-tile__stat strong {
  color: #14B8A6;
  font-weight: 600;
}

.nxwt-uc-tile--featured .nxwt-uc-tile__stat strong {
  color: #14B8A6;
}

.nxwt-uc-tile__link {
  font-size: 0.875rem;
  color: #14B8A6;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.nxwt-uc-tile__link::after {
  content: '→';
}

/* ============================================================
   TESTIMONIALS (dark)
   ============================================================ */
#nxwt-testimonials {
  background-color: #111827;
}

.nxwt-testimonials__header {
  margin-bottom: 48px;
}

.nxwt-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.nxwt-testimonial-card {
  background-color: #1F2937;
  border: 1px solid #374151;
  border-radius: 8px;
  padding: 36px;
}

.nxwt-testimonial-card__quote {
  font-size: 1rem;
  line-height: 1.75;
  color: #D1D5DB;
  font-weight: 300;
  margin-bottom: 24px;
  font-style: italic;
}

.nxwt-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid #374151;
}

.nxwt-avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #374151;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #14B8A6;
  flex-shrink: 0;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
}

.nxwt-testimonial-card__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #F9FAFB;
  display: block;
  margin-bottom: 2px;
}

.nxwt-testimonial-card__role {
  font-size: 0.8125rem;
  color: #9CA3AF;
  display: block;
  margin-bottom: 8px;
}

.nxwt-testimonial-card__metrics {
  margin-top: 20px;
  padding: 12px 14px;
  background-color: rgba(20,184,166,0.06);
  border: 1px solid rgba(20,184,166,0.15);
  border-radius: 6px;
  display: flex;
  gap: 24px;
}

.nxwt-testimonial-card__metric {
  font-size: 0.75rem;
  font-family: 'IBM Plex Mono', monospace;
  color: #9CA3AF;
}

.nxwt-testimonial-card__metric strong {
  color: #14B8A6;
  display: block;
  font-size: 0.9375rem;
  margin-bottom: 2px;
}

/* ============================================================
   METRICS (light)
   ============================================================ */
#nxwt-metrics {
  background-color: #F9FAFB;
}

.nxwt-metrics__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background-color: #E5E7EB;
  border-radius: 8px;
  overflow: hidden;
}

.nxwt-metric-block {
  background-color: #FFFFFF;
  padding: 48px 40px;
  text-align: center;
}

.nxwt-metric-block__number {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #14B8A6;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.nxwt-metric-block__label {
  font-size: 0.9375rem;
  color: #374151;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 8px;
}

.nxwt-metric-block__source {
  font-size: 0.75rem;
  color: #9CA3AF;
  font-family: 'IBM Plex Mono', monospace;
}

/* ============================================================
   BOTTOM CTA (dark)
   ============================================================ */
#nxwt-cta-bottom {
  background-color: #111827;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#nxwt-cta-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(20,184,166,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.nxwt-cta-bottom__inner {
  position: relative;
  z-index: 1;
}

.nxwt-cta-bottom__h2 {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #F9FAFB;
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.2;
}

.nxwt-cta-bottom__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   PAGE HERO (sub-pages)
   ============================================================ */
.nxwt-page-hero {
  padding-top: 136px;
  padding-bottom: 80px;
}

.nxwt-page-hero--dark {
  background-color: #111827;
  color: #F9FAFB;
}

.nxwt-page-hero--light {
  background-color: #F9FAFB;
  color: #111827;
  border-bottom: 1px solid #E5E7EB;
}

.nxwt-page-hero--light .nxwt-page-hero__h1 {
  color: #111827;
}

.nxwt-page-hero--light .nxwt-page-hero__sub {
  color: #6B7280;
}

.nxwt-page-hero--dark .nxwt-page-hero__h1 {
  color: #F9FAFB;
}

.nxwt-page-hero--dark .nxwt-page-hero__sub {
  color: #9CA3AF;
}

.nxwt-page-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.nxwt-page-hero__eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #14B8A6;
  margin-bottom: 16px;
  display: block;
}

.nxwt-page-hero__h1 {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.nxwt-page-hero__sub {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.nxwt-page-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nxwt-page-hero--single {
  text-align: center;
}

.nxwt-page-hero--single .nxwt-page-hero__inner {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
}

.nxwt-page-hero--single .nxwt-page-hero__sub {
  margin: 0 auto 32px;
}

/* SVG decoration for dark page heroes */
.nxwt-hero-geo {
  width: 100%;
  max-width: 480px;
  opacity: 0.7;
}

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.nxwt-prod-arch {
  background-color: #0F172A;
  border: 1px solid #374151;
  border-radius: 12px;
  padding: 32px;
  font-family: 'IBM Plex Mono', monospace;
}

.nxwt-arch-layer {
  padding: 14px 18px;
  border-radius: 6px;
  border: 1px solid #374151;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nxwt-arch-layer__label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nxwt-arch-layer__items {
  font-size: 0.6875rem;
  color: #6B7280;
}

.nxwt-arch-layer--input {
  background-color: #1F2937;
  color: #9CA3AF;
}

.nxwt-arch-layer--engine {
  background-color: rgba(20,184,166,0.08);
  border-color: rgba(20,184,166,0.3);
  color: #14B8A6;
}

.nxwt-arch-layer--output {
  background-color: rgba(245,158,11,0.06);
  border-color: rgba(245,158,11,0.2);
  color: #F59E0B;
}

.nxwt-arch-connector {
  width: 2px;
  height: 20px;
  background-color: #374151;
  margin: 0 0 8px 18px;
}

/* ============================================================
   FEATURES GRID
   ============================================================ */
.nxwt-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.nxwt-feature-card {
  background-color: #1F2937;
  border: 1px solid #374151;
  border-radius: 8px;
  padding: 28px;
}

.nxwt-feature-card--light {
  background-color: #FFFFFF;
  border-color: #E5E7EB;
}

.nxwt-feature-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: #14B8A6;
}

.nxwt-feature-card__title {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #F9FAFB;
}

.nxwt-feature-card--light .nxwt-feature-card__title {
  color: #111827;
}

.nxwt-feature-card__desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #9CA3AF;
  font-weight: 300;
}

.nxwt-feature-card--light .nxwt-feature-card__desc {
  color: #6B7280;
}

/* ============================================================
   PRICING
   ============================================================ */
.nxwt-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.nxwt-pricing-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nxwt-pricing-card--highlighted {
  background-color: #111827;
  border-color: #14B8A6;
  position: relative;
}

.nxwt-pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #14B8A6;
  color: #111827;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'IBM Plex Mono', monospace;
  white-space: nowrap;
}

.nxwt-pricing-card__name {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 8px;
}

.nxwt-pricing-card--highlighted .nxwt-pricing-card__name {
  color: #F9FAFB;
}

.nxwt-pricing-card__tagline {
  font-size: 0.875rem;
  color: #6B7280;
  margin-bottom: 24px;
  font-weight: 300;
}

.nxwt-pricing-card--highlighted .nxwt-pricing-card__tagline {
  color: #9CA3AF;
}

.nxwt-pricing-price {
  margin-bottom: 8px;
}

.nxwt-pricing-price__amount {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #111827;
  line-height: 1;
  letter-spacing: -0.03em;
}

.nxwt-pricing-card--highlighted .nxwt-pricing-price__amount {
  color: #F9FAFB;
}

.nxwt-pricing-price__unit {
  font-size: 1rem;
  color: #6B7280;
  font-weight: 400;
}

.nxwt-pricing-card--highlighted .nxwt-pricing-price__unit {
  color: #9CA3AF;
}

.nxwt-pricing-price__custom {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #111827;
}

.nxwt-pricing-card__limits {
  font-size: 0.8125rem;
  color: #9CA3AF;
  font-family: 'IBM Plex Mono', monospace;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E5E7EB;
}

.nxwt-pricing-card--highlighted .nxwt-pricing-card__limits {
  color: #6B7280;
  border-bottom-color: #374151;
}

.nxwt-pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex: 1;
}

.nxwt-pricing-card__features li {
  font-size: 0.875rem;
  color: #374151;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.nxwt-pricing-card--highlighted .nxwt-pricing-card__features li {
  color: #D1D5DB;
}

.nxwt-pricing-card__features li::before {
  content: '';
  width: 14px;
  height: 2px;
  background-color: #14B8A6;
  margin-top: 9px;
  flex-shrink: 0;
}

.nxwt-pricing-billing-note {
  text-align: center;
  font-size: 0.8125rem;
  color: #6B7280;
  font-family: 'IBM Plex Mono', monospace;
  margin-top: 24px;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.nxwt-faq {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  overflow: hidden;
}

.nxwt-faq--dark {
  border-color: #374151;
}

.nxwt-faq-item {
  border-bottom: 1px solid #E5E7EB;
}

.nxwt-faq--dark .nxwt-faq-item {
  border-bottom-color: #374151;
}

.nxwt-faq-item:last-child {
  border-bottom: none;
}

.nxwt-faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
  transition: background-color 150ms ease-out;
}

.nxwt-faq--dark .nxwt-faq-item__trigger {
  color: #F9FAFB;
}

.nxwt-faq-item__trigger:hover {
  background-color: rgba(20,184,166,0.04);
}

.nxwt-faq-item__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #14B8A6;
  transition: transform 250ms ease-out;
}

.nxwt-faq-item--open .nxwt-faq-item__icon {
  transform: rotate(45deg);
}

.nxwt-faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease-out;
}

.nxwt-faq-item--open .nxwt-faq-item__body {
  max-height: 400px;
}

.nxwt-faq-item__content {
  padding: 0 24px 20px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #6B7280;
  font-weight: 300;
}

.nxwt-faq--dark .nxwt-faq-item__content {
  color: #9CA3AF;
}

/* ============================================================
   INTEGRATION CARDS
   ============================================================ */
.nxwt-int-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.nxwt-int-filter {
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.8125rem;
  font-weight: 500;
  border: 1px solid #D1D5DB;
  color: #374151;
  background: #FFFFFF;
  cursor: pointer;
  transition: all 150ms ease-out;
}

.nxwt-int-filter:hover,
.nxwt-int-filter--active {
  background-color: #14B8A6;
  border-color: #14B8A6;
  color: #111827;
}

.nxwt-int-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.nxwt-int-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 150ms ease-out;
}

.nxwt-int-card:hover {
  border-color: #14B8A6;
}

.nxwt-int-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: #6B7280;
}

.nxwt-int-card__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
}

.nxwt-int-card__type {
  font-size: 0.75rem;
  color: #6B7280;
  font-family: 'IBM Plex Mono', monospace;
}

.nxwt-int-card__badge {
  font-size: 0.625rem;
  padding: 2px 7px;
  border-radius: 4px;
  background-color: #CCFBF1;
  color: #065F46;
  font-weight: 600;
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  align-self: flex-start;
}

/* ============================================================
   CODE BLOCK MOCK
   ============================================================ */
.nxwt-code-block {
  background-color: #0F172A;
  border: 1px solid #374151;
  border-radius: 6px;
  padding: 24px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8125rem;
  line-height: 1.7;
  overflow-x: auto;
}

.nxwt-code-block__header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #1F2937;
}

.nxwt-code-block__lang {
  font-size: 0.6875rem;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-left: auto;
}

.nxwt-code-block .nxwt-c-key { color: #14B8A6; }
.nxwt-code-block .nxwt-c-str { color: #FBBF24; }
.nxwt-code-block .nxwt-c-val { color: #93C5FD; }
.nxwt-code-block .nxwt-c-comment { color: #6B7280; }
.nxwt-code-block .nxwt-c-punc { color: #9CA3AF; }
.nxwt-code-block .nxwt-c-white { color: #E5E7EB; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.nxwt-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.nxwt-team-card {
  text-align: center;
}

.nxwt-team-card__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  background-color: #E5E7EB;
}

.nxwt-team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.nxwt-team-card__name {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 4px;
}

.nxwt-team-card__title {
  font-size: 0.875rem;
  color: #14B8A6;
  font-weight: 500;
  font-family: 'IBM Plex Mono', monospace;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nxwt-team-card__bio {
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.65;
  font-weight: 300;
}

.nxwt-mission-pullquote {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.nxwt-mission-pullquote__text {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 800;
  color: #F9FAFB;
  line-height: 1.3;
  margin-bottom: 16px;
}

.nxwt-mission-pullquote__attr {
  font-size: 0.875rem;
  color: #9CA3AF;
  font-style: normal;
  font-family: 'IBM Plex Mono', monospace;
}

.nxwt-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.nxwt-value-card {
  padding: 28px;
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
}

.nxwt-value-card__num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: #14B8A6;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  display: block;
}

.nxwt-value-card__title {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 8px;
}

.nxwt-value-card__desc {
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.65;
  font-weight: 300;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.nxwt-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.nxwt-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nxwt-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nxwt-form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}

.nxwt-form-input,
.nxwt-form-textarea,
.nxwt-form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #D1D5DB;
  border-radius: 6px;
  font-size: 0.9375rem;
  color: #111827;
  background-color: #FFFFFF;
  transition: border-color 150ms ease-out;
  outline: none;
}

.nxwt-form-input:focus,
.nxwt-form-textarea:focus,
.nxwt-form-select:focus {
  border-color: #14B8A6;
  box-shadow: 0 0 0 3px rgba(20,184,166,0.1);
}

.nxwt-form-textarea {
  min-height: 140px;
  resize: vertical;
}

.nxwt-contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nxwt-contact-info__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9CA3AF;
  margin-bottom: 4px;
  display: block;
}

.nxwt-contact-info__value {
  font-size: 0.9375rem;
  color: #111827;
  font-weight: 500;
}

.nxwt-contact-info a {
  color: #14B8A6;
  text-decoration: none;
}

.nxwt-contact-info a:hover {
  text-decoration: underline;
}

/* ============================================================
   CUSTOMER STORIES
   ============================================================ */
.nxwt-story-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nxwt-story-card__company {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #14B8A6;
}

.nxwt-story-card__problem-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9CA3AF;
  font-family: 'IBM Plex Mono', monospace;
  margin-bottom: 4px;
  display: block;
}

.nxwt-story-card__text {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.65;
  font-weight: 300;
}

.nxwt-story-card__metrics {
  display: flex;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid #F3F4F6;
  flex-wrap: wrap;
}

.nxwt-story-metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nxwt-story-metric__value {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #14B8A6;
  letter-spacing: -0.02em;
}

.nxwt-story-metric__label {
  font-size: 0.75rem;
  color: #9CA3AF;
}

/* ============================================================
   SECURITY PAGE
   ============================================================ */
.nxwt-security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.nxwt-security-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 28px;
}

.nxwt-security-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: #14B8A6;
}

.nxwt-security-card__title {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 8px;
}

.nxwt-security-card__desc {
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.65;
  font-weight: 300;
}

/* ============================================================
   DOCS LAYOUT
   ============================================================ */
.nxwt-docs-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}

.nxwt-docs-sidebar {
  position: sticky;
  top: 96px;
}

.nxwt-docs-sidebar__section {
  margin-bottom: 24px;
}

.nxwt-docs-sidebar__heading {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9CA3AF;
  padding: 8px 12px;
  display: block;
}

.nxwt-docs-sidebar__link {
  display: block;
  padding: 6px 12px;
  font-size: 0.875rem;
  color: #374151;
  border-radius: 4px;
  transition: all 150ms ease-out;
  text-decoration: none;
  border-left: 2px solid transparent;
}

.nxwt-docs-sidebar__link:hover,
.nxwt-docs-sidebar__link--active {
  color: #14B8A6;
  background-color: rgba(20,184,166,0.06);
  border-left-color: #14B8A6;
}

.nxwt-docs-content {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
}

.nxwt-docs-content h1 {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #111827;
  margin-bottom: 16px;
}

.nxwt-docs-content h2 {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #111827;
  margin-top: 40px;
  margin-bottom: 12px;
}

.nxwt-docs-content h3 {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-top: 24px;
  margin-bottom: 8px;
}

.nxwt-docs-content p {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 16px;
  font-weight: 400;
}

.nxwt-docs-content ul,
.nxwt-docs-content ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.nxwt-docs-content ul {
  list-style: disc;
}

.nxwt-docs-content ol {
  list-style: decimal;
}

.nxwt-docs-content li {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 6px;
}

.nxwt-docs-content code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8125rem;
  background-color: #F3F4F6;
  color: #111827;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid #E5E7EB;
}

.nxwt-docs-content pre {
  background-color: #0F172A;
  border: 1px solid #374151;
  border-radius: 6px;
  padding: 20px 24px;
  overflow-x: auto;
  margin-bottom: 20px;
}

.nxwt-docs-content pre code {
  background: none;
  border: none;
  padding: 0;
  color: #E5E7EB;
  font-size: 0.8125rem;
}

/* ============================================================
   DOCS CARDS GRID
   ============================================================ */
.nxwt-docs-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.nxwt-docs-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 28px;
  text-decoration: none;
  color: inherit;
  transition: border-color 250ms ease-out;
  display: block;
}

.nxwt-docs-card:hover {
  border-color: #14B8A6;
  color: inherit;
}

.nxwt-docs-card__icon {
  width: 36px;
  height: 36px;
  color: #14B8A6;
  margin-bottom: 14px;
}

.nxwt-docs-card__title {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 8px;
}

.nxwt-docs-card__desc {
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 12px;
}

.nxwt-docs-card__read-time {
  font-size: 0.75rem;
  color: #9CA3AF;
  font-family: 'IBM Plex Mono', monospace;
}

/* ============================================================
   BLOG
   ============================================================ */
.nxwt-blog-grid {
  display: grid;
  gap: 32px;
}

.nxwt-blog-card {
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 250ms ease-out;
}

.nxwt-blog-card:hover {
  border-color: #14B8A6;
  color: inherit;
}

.nxwt-blog-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.nxwt-blog-card__cover {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.nxwt-blog-card--featured .nxwt-blog-card__cover {
  aspect-ratio: 16/9;
  height: 100%;
  object-fit: cover;
}

.nxwt-blog-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.nxwt-blog-card--featured .nxwt-blog-card__body {
  padding: 36px;
  justify-content: center;
}

.nxwt-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nxwt-blog-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'IBM Plex Mono', monospace;
  padding: 3px 8px;
  border-radius: 4px;
  background-color: #CCFBF1;
  color: #065F46;
}

.nxwt-blog-tag--amber {
  background-color: #FEF3C7;
  color: #92400E;
}

.nxwt-blog-tag--blue {
  background-color: #DBEAFE;
  color: #1E40AF;
}

.nxwt-blog-date {
  font-size: 0.75rem;
  color: #9CA3AF;
  font-family: 'IBM Plex Mono', monospace;
}

.nxwt-blog-card__title {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.3;
  margin: 0;
}

.nxwt-blog-card--featured .nxwt-blog-card__title {
  font-size: 1.5rem;
}

.nxwt-blog-card__excerpt {
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.65;
  font-weight: 300;
}

.nxwt-blog-read-time {
  font-size: 0.75rem;
  color: #9CA3AF;
  font-family: 'IBM Plex Mono', monospace;
  margin-top: auto;
}

.nxwt-blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ============================================================
   ARTICLE PAGE
   ============================================================ */
.nxwt-article-layout {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 64px;
  align-items: start;
}

.nxwt-article-main {}

.nxwt-article-cover {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 40px;
  max-width: 800px;
}

.nxwt-blog-article-body {
  max-width: 720px;
}

.nxwt-blog-article-body h2 {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: 1.375rem;
  font-weight: 800;
  color: #111827;
  margin-top: 40px;
  margin-bottom: 14px;
}

.nxwt-blog-article-body h3 {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  color: #111827;
  margin-top: 28px;
  margin-bottom: 10px;
}

.nxwt-blog-article-body p {
  font-size: 1rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 18px;
  font-weight: 400;
}

.nxwt-blog-article-body ul,
.nxwt-blog-article-body ol {
  padding-left: 24px;
  margin-bottom: 18px;
}

.nxwt-blog-article-body ul {
  list-style: disc;
}

.nxwt-blog-article-body ol {
  list-style: decimal;
}

.nxwt-blog-article-body li {
  font-size: 1rem;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 8px;
}

.nxwt-blog-article-body blockquote {
  border-left: 3px solid #14B8A6;
  padding-left: 20px;
  margin: 28px 0;
  color: #6B7280;
  font-style: italic;
}

.nxwt-blog-article-body code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875rem;
  background-color: #F3F4F6;
  color: #111827;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid #E5E7EB;
}

.nxwt-blog-article-body pre {
  background-color: #0F172A;
  border: 1px solid #374151;
  border-radius: 6px;
  padding: 20px 24px;
  overflow-x: auto;
  margin-bottom: 20px;
}

.nxwt-blog-article-body pre code {
  background: none;
  border: none;
  padding: 0;
  color: #E5E7EB;
}

.nxwt-article-toc {
  position: sticky;
  top: 96px;
  background-color: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 24px;
}

.nxwt-article-toc__heading {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9CA3AF;
  margin-bottom: 12px;
  display: block;
}

.nxwt-article-toc__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nxwt-article-toc__link {
  font-size: 0.8125rem;
  color: #6B7280;
  text-decoration: none;
  display: block;
  padding: 4px 0;
  border-left: 2px solid transparent;
  padding-left: 10px;
  transition: all 150ms ease-out;
}

.nxwt-article-toc__link:hover {
  color: #14B8A6;
  border-left-color: #14B8A6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.nxwt-footer {
  background-color: #111827;
  color: #F9FAFB;
}

.nxwt-footer__main {
  padding: 72px 0 48px;
  border-bottom: 1px solid #374151;
}

.nxwt-footer__grid {
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1fr;
  gap: 48px;
}

.nxwt-footer__brand {}

.nxwt-footer__brand-logo {
  height: 28px;
  width: auto;
  margin-bottom: 16px;
}

.nxwt-footer__brand-desc {
  font-size: 0.875rem;
  color: #9CA3AF;
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 16px;
}

.nxwt-footer__col-heading {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6B7280;
  margin-bottom: 16px;
  display: block;
}

.nxwt-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nxwt-footer__links a {
  font-size: 0.875rem;
  color: #9CA3AF;
  text-decoration: none;
  transition: color 150ms ease-out;
  display: inline-block;
}

.nxwt-footer__links a:hover {
  color: #F9FAFB;
}

.nxwt-footer__bottom {
  padding: 24px 0;
}

.nxwt-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.nxwt-footer__copyright {
  font-size: 0.8125rem;
  color: #6B7280;
}

.nxwt-footer__address {
  font-size: 0.75rem;
  color: #6B7280;
  font-style: normal;
  font-family: 'IBM Plex Mono', monospace;
}

.nxwt-footer__legal-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nxwt-footer__legal-links a {
  font-size: 0.8125rem;
  color: #6B7280;
  text-decoration: none;
  transition: color 150ms ease-out;
}

.nxwt-footer__legal-links a:hover {
  color: #9CA3AF;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.nxwt-legal-main {
  background-color: #FFFFFF;
  padding: 40px 0 80px;
  margin-top: 72px;
}

.legal-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E5E7EB;
}

.legal-header h1 {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 8px;
}

.legal-meta {
  font-size: 0.875rem;
  color: #9CA3AF;
  font-family: 'IBM Plex Mono', monospace;
}

.legal-article section {
  margin-bottom: 32px;
}

.legal-article h2 {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 12px;
  margin-top: 32px;
}

.legal-article h3 {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-top: 20px;
  margin-bottom: 8px;
}

.legal-article p {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 12px;
  font-weight: 400;
}

.legal-article ul {
  padding-left: 20px;
  list-style: disc;
  margin-bottom: 12px;
}

.legal-article li {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 6px;
}

.legal-article address {
  font-style: normal;
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.75;
  padding: 16px 20px;
  background-color: #F9FAFB;
  border-radius: 6px;
  border: 1px solid #E5E7EB;
}

.legal-article a {
  color: #14B8A6;
  text-decoration: underline;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.legal-table th,
.legal-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid #E5E7EB;
  color: #374151;
}

.legal-table th {
  font-weight: 600;
  background-color: #F9FAFB;
  color: #111827;
}

/* ============================================================
   AUTH PAGES
   ============================================================ */
.nxwt-auth-page {
  min-height: 100vh;
  background-color: #F9FAFB;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.nxwt-auth-card {
  width: 100%;
  max-width: 440px;
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 48px 40px;
  box-shadow: 0 4px 24px rgba(17,24,39,0.08);
}

.nxwt-auth-card__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.nxwt-auth-card__logo img {
  height: 32px;
  width: auto;
}

.nxwt-auth-card__heading {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #111827;
  text-align: center;
  margin-bottom: 8px;
}

.nxwt-auth-card__sub {
  font-size: 0.9375rem;
  color: #6B7280;
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.6;
  font-weight: 300;
}

.nxwt-auth-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.nxwt-auth-form .nxwt-form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}

.nxwt-auth-form .nxwt-form-input {
  padding: 12px 16px;
  border: 1px solid #D1D5DB;
  border-radius: 6px;
  font-size: 0.9375rem;
  color: #111827;
  background-color: #FFFFFF;
  outline: none;
  transition: border-color 150ms ease-out;
  width: 100%;
}

.nxwt-auth-form .nxwt-form-input:focus {
  border-color: #14B8A6;
  box-shadow: 0 0 0 3px rgba(20,184,166,0.1);
}

.nxwt-auth-submit {
  width: 100%;
  padding: 14px;
  background-color: #14B8A6;
  color: #111827;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  transition: background-color 250ms ease-out;
  margin-top: 8px;
}

.nxwt-auth-submit:hover {
  background-color: #0D9488;
  color: #111827;
}

.nxwt-auth-links {
  margin-top: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nxwt-auth-links p {
  font-size: 0.875rem;
  color: #6B7280;
}

.nxwt-auth-links a {
  color: #14B8A6;
  font-weight: 500;
  text-decoration: none;
}

.nxwt-auth-links a:hover {
  text-decoration: underline;
}

.nxwt-auth-card__legal {
  margin-top: 24px;
  text-align: center;
  font-size: 0.75rem;
  color: #9CA3AF;
  line-height: 1.6;
}

.nxwt-auth-card__legal a {
  color: #9CA3AF;
  text-decoration: underline;
}

/* Auth register split */
.nxwt-auth-register {
  min-height: 100vh;
  background-color: #111827;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.nxwt-auth-register__panel-left {
  background: linear-gradient(135deg, #111827 0%, #1F2937 100%);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid #374151;
}

.nxwt-auth-register__panel-left .nxwt-auth-card__logo {
  justify-content: flex-start;
  margin-bottom: 48px;
}

.nxwt-auth-register__headline {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #F9FAFB;
  line-height: 1.2;
  margin-bottom: 16px;
}

.nxwt-auth-register__sub {
  font-size: 0.9375rem;
  color: #9CA3AF;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 32px;
}

.nxwt-auth-register__points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nxwt-auth-register__points li {
  font-size: 0.9375rem;
  color: #D1D5DB;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.nxwt-auth-register__points li::before {
  content: '';
  width: 16px;
  height: 2px;
  background-color: #14B8A6;
  margin-top: 11px;
  flex-shrink: 0;
}

.nxwt-auth-register__panel-right {
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.nxwt-auth-register__form-wrap {
  width: 100%;
  max-width: 400px;
}

/* ============================================================
   USE CASE PAGES
   ============================================================ */
.nxwt-uc-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nxwt-uc-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #E5E7EB;
}

.nxwt-uc-step:last-child {
  border-bottom: none;
}

.nxwt-uc-step__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #CCFBF1;
  color: #065F46;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
  font-family: 'IBM Plex Mono', monospace;
}

.nxwt-uc-step__body {}

.nxwt-uc-step__title {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 4px;
}

.nxwt-uc-step__desc {
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.65;
  font-weight: 300;
}

.nxwt-uc-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.nxwt-uc-outcome {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 28px;
  text-align: center;
}

.nxwt-uc-outcome__value {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: #14B8A6;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.nxwt-uc-outcome__label {
  font-size: 0.875rem;
  color: #374151;
  font-weight: 500;
  margin-bottom: 6px;
}

.nxwt-uc-outcome__desc {
  font-size: 0.8125rem;
  color: #9CA3AF;
  font-weight: 300;
}

/* ============================================================
   FADE-IN ANIMATION
   ============================================================ */
.nxwt-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.nxwt-fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: #1F2937;
  border-top: 1px solid #374151;
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 0.875rem;
  color: #D1D5DB;
  line-height: 1.6;
  flex: 1;
  min-width: 200px;
}

.cookie-banner__text a {
  color: #14B8A6;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  transition: all 150ms ease-out;
}

.cookie-banner__btn--primary {
  background-color: #14B8A6;
  color: #111827;
  border: 2px solid #14B8A6;
}

.cookie-banner__btn--primary:hover {
  background-color: #0D9488;
  border-color: #0D9488;
  color: #111827;
}

/* ============================================================
   404 PAGE
   ============================================================ */
.nxwt-404-page {
  min-height: 100vh;
  background-color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
}

.nxwt-404-inner {
  max-width: 480px;
}

.nxwt-404-code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 6rem;
  font-weight: 500;
  color: #374151;
  line-height: 1;
  margin-bottom: 16px;
}

.nxwt-404-code span {
  color: #14B8A6;
}

.nxwt-404-heading {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #F9FAFB;
  margin-bottom: 12px;
}

.nxwt-404-text {
  font-size: 0.9375rem;
  color: #9CA3AF;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 32px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nxwt-hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .nxwt-hero__content {
    max-width: 100%;
  }

  .nxwt-hero__visual {
    order: -1;
  }

  .nxwt-problem__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .nxwt-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .nxwt-docs-layout {
    grid-template-columns: 1fr;
  }

  .nxwt-docs-sidebar {
    position: static;
  }

  .nxwt-article-layout {
    grid-template-columns: 1fr;
  }

  .nxwt-article-toc {
    position: static;
    display: none;
  }

  .nxwt-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nxwt-section {
    padding: 64px 0;
  }

  .nxwt-nav__links,
  .nxwt-nav__actions {
    display: none;
  }

  .nxwt-hamburger {
    display: flex;
  }

  .nxwt-hiw__steps {
    grid-template-columns: 1fr;
  }

  .nxwt-caps__grid {
    grid-template-columns: 1fr;
  }

  .nxwt-cap-card--large {
    grid-row: auto;
  }

  .nxwt-uc__tiles {
    grid-template-columns: 1fr;
  }

  .nxwt-testimonials__grid {
    grid-template-columns: 1fr;
  }

  .nxwt-metrics__grid {
    grid-template-columns: 1fr;
  }

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

  .nxwt-values-grid {
    grid-template-columns: 1fr;
  }

  .nxwt-contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .nxwt-features-grid {
    grid-template-columns: 1fr;
  }

  .nxwt-security-grid {
    grid-template-columns: 1fr;
  }

  .nxwt-page-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .nxwt-blog-card--featured {
    grid-template-columns: 1fr;
  }

  .nxwt-blog-cards-grid {
    grid-template-columns: 1fr;
  }

  .nxwt-footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .nxwt-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .nxwt-auth-register {
    grid-template-columns: 1fr;
  }

  .nxwt-auth-register__panel-left {
    display: none;
  }

  .nxwt-auth-register__panel-right {
    min-height: 100vh;
  }

  .nxwt-uc-outcomes-grid {
    grid-template-columns: 1fr;
  }

  .nxwt-docs-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .nxwt-hero__h1 {
    font-size: 2.25rem;
  }

  .nxwt-hero__ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .nxwt-team-grid {
    grid-template-columns: 1fr;
  }

  .nxwt-int-grid {
    grid-template-columns: 1fr;
  }

  .nxwt-proof-bar__logos {
    gap: 20px;
  }

  .nxwt-auth-card {
    padding: 32px 24px;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.nxwt-prod-format-badge {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 4px;
  background-color: rgba(20,184,166,0.12);
  color: #14B8A6;
  border: 1px solid rgba(20,184,166,0.25);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nxwt-audit-table-mock {
  width: 100%;
  border-collapse: collapse;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 6px;
  overflow: hidden;
}

.nxwt-audit-row {
  display: grid;
  grid-template-columns: 160px 80px 1fr 100px;
  gap: 0;
  border-bottom: 1px solid #E5E7EB;
}

.nxwt-audit-row:last-child {
  border-bottom: none;
}

.nxwt-audit-row--header {
  background-color: #F3F4F6;
  font-weight: 500;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.6875rem;
}

.nxwt-audit-row > span {
  padding: 8px 12px;
  border-right: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
  color: #374151;
}

.nxwt-audit-row > span:last-child {
  border-right: none;
}

.nxwt-audit-mono {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
}

.nxwt-nav__link--active {
  color: #14B8A6;
  font-weight: 500;
}

.nxwt-docs-sidebar__back {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E5E7EB;
}

.nxwt-docs-sidebar__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nxwt-docs-content__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: #9CA3AF;
  margin-bottom: 24px;
  font-family: 'IBM Plex Mono', monospace;
}

.nxwt-docs-content__breadcrumb a {
  color: #6B7280;
  text-decoration: none;
}

.nxwt-docs-content__breadcrumb a:hover {
  color: #14B8A6;
}

.nxwt-docs-content__lead {
  font-size: 1.0625rem;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 32px;
  font-weight: 300;
  border-bottom: 1px solid #E5E7EB;
  padding-bottom: 24px;
}

.nxwt-docs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 0.875rem;
}

.nxwt-docs-table th {
  text-align: left;
  padding: 10px 12px;
  background-color: #F9FAFB;
  color: #6B7280;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid #E5E7EB;
  border-top: 1px solid #E5E7EB;
}

.nxwt-docs-table td {
  padding: 10px 12px;
  color: #374151;
  border-bottom: 1px solid #F3F4F6;
  vertical-align: top;
  line-height: 1.6;
}

.nxwt-docs-table td code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8125rem;
  background-color: #F3F4F6;
  color: #111827;
  padding: 2px 5px;
  border-radius: 3px;
}

.nxwt-docs-nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid #E5E7EB;
}

.nxwt-docs-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #14B8A6;
  text-decoration: none;
  padding: 10px 16px;
  border: 1px solid rgba(20,184,166,0.3);
  border-radius: 6px;
  transition: all 150ms ease-out;
}

.nxwt-docs-nav-link:hover {
  background-color: rgba(20,184,166,0.06);
  border-color: #14B8A6;
}

.nxwt-api-method-badge {
  display: inline-flex;
  align-items: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 4px;
  background-color: #1F2937;
  color: #F9FAFB;
  margin-bottom: 16px;
}

.nxwt-api-method-badge::before {
  content: 'POST';
  display: inline-block;
  background-color: #14B8A6;
  color: #111827;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  margin-right: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nxwt-api-method-badge--get::before {
  content: 'GET';
  background-color: #60A5FA;
  color: #1E3A5F;
}

.nxwt-docs-nav-link--next {
  margin-left: auto;
}

.nxwt-docs-nav-link--prev {
  margin-right: auto;
}

.nxwt-form--contact {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nxwt-orch-points {
  padding: 0;
}

.nxwt-prod-accepted {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
