/* =========================================================
   Neurorder Nous — Public Introduction Page
   File: css/nous.css
   Purpose: Public Nous landing page only
   Do not use for nous-news.html dashboard
========================================================= */

:root {
  --nous-bg: #02050a;
  --nous-surface: rgba(255, 255, 255, 0.055);
  --nous-border: rgba(143, 223, 255, 0.16);
  --nous-text: #f5f8fb;
  --nous-muted: #9aa8b5;
  --nous-blue: #8fdfff;
  --nous-blue-soft: rgba(143, 223, 255, 0.16);
  --nous-gold: rgba(249, 169, 76, 0.68);
  --nous-max: 1180px;
  --nous-radius-lg: 34px;
  --nous-radius-md: 22px;
}

body {
  background: var(--nous-bg);
  color: var(--nous-text);
}

main {
  overflow: hidden;
}

/* HERO */

.nous-hero {
  width: min(100% - 48px, var(--nous-max));
  min-height: 86vh;
  margin: 0 auto;
  padding: 150px 0 90px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 72px;
  align-items: center;
}

.nous-eyebrow {
  color: var(--nous-blue);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
}

.nous-hero-copy h1 {
  max-width: 820px;
  margin: 0 0 24px;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.nous-hero-copy p {
  max-width: 700px;
  color: var(--nous-muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.75;
}

.nous-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.nous-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease;
}

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

.nous-btn-primary {
  background: var(--nous-blue);
  color: #02050a;
}

.nous-btn-outline {
  color: var(--nous-text);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

/* SYMBOL CARD */

.nous-symbol-card {
  min-height: 390px;
  border-radius: 42px;
  padding: 34px;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, rgba(143, 223, 255, 0.22), transparent 38%),
    radial-gradient(circle at 80% 80%, rgba(249, 169, 76, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025));
  border: 1px solid var(--nous-border);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.nous-symbol-card img {
  width: min(180px, 70%);
  opacity: 0.94;
  filter: drop-shadow(0 0 34px rgba(143, 223, 255, 0.28));
}

.nous-symbol-card span {
  position: absolute;
  bottom: 30px;
  color: var(--nous-muted);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  font-weight: 700;
}

/* SECTIONS */

.nous-section {
  width: min(100% - 48px, var(--nous-max));
  margin: 0 auto;
  padding: 90px 0;
}

.nous-section-title {
  max-width: 780px;
  margin: 0 0 36px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

/* MEANING GRID */

.nous-meaning-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.nous-meaning-card {
  min-height: 210px;
  padding: 24px;
  border-radius: var(--nous-radius-md);
  background: var(--nous-surface);
  border: 1px solid var(--nous-border);
}

.nous-meaning-card h3 {
  margin: 0 0 12px;
  font-size: 1.1rem;
}

.nous-meaning-card p {
  margin: 0;
  color: var(--nous-muted);
  line-height: 1.6;
  font-size: 0.94rem;
}

/* ECOSYSTEM */

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

.nous-feature-card {
  min-height: 250px;
  padding: 28px;
  border-radius: var(--nous-radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025));
  border: 1px solid var(--nous-border);
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.nous-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(143, 223, 255, 0.36);
}

.nous-feature-card i {
  color: var(--nous-blue);
  font-size: 1.45rem;
  margin-bottom: 32px;
}

.nous-feature-card h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
}

.nous-feature-card p {
  margin: 0;
  color: var(--nous-muted);
  line-height: 1.65;
}

/* CTA */

.nous-final-cta {
  width: min(100% - 48px, var(--nous-max));
  margin: 0 auto 100px;
  padding: clamp(48px, 8vw, 90px) 32px;
  text-align: center;
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 0%, rgba(143, 223, 255, 0.18), transparent 42%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid var(--nous-border);
}

.nous-final-cta h2 {
  max-width: 760px;
  margin: 10px auto 20px;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.065em;
}

.nous-final-cta p {
  max-width: 660px;
  margin: 0 auto 34px;
  color: var(--nous-muted);
  line-height: 1.75;
}

/* MOBILE */

@media (max-width: 980px) {
  .nous-hero {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .nous-symbol-card {
    min-height: 300px;
  }

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

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

@media (max-width: 680px) {
  .nous-hero,
  .nous-section,
  .nous-final-cta {
    width: min(100% - 28px, var(--nous-max));
  }

  .nous-hero {
    padding: 130px 0 56px;
  }

  .nous-actions {
    flex-direction: column;
  }

  .nous-meaning-grid,
  .nous-ecosystem-grid {
    grid-template-columns: 1fr;
  }

  .nous-meaning-card,
  .nous-feature-card {
    min-height: 210px;
  }

  .nous-final-cta {
    border-radius: 28px;
    margin-bottom: 64px;
  }
}.nouse-widget {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 99999;
}

.nouse-button {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(143,223,255,.5);
  background: rgba(2,5,10,.86);
  backdrop-filter: blur(18px);
  cursor: pointer;
  box-shadow: 0 0 28px rgba(143,223,255,.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nouse-button img {
  width: 46px !important;
  height: 46px !important;
  max-width: 46px !important;
  max-height: 46px !important;
  object-fit: contain !important;
  display: block !important;
}

.nouse-panel {
  position: absolute;
  right: 0;
  bottom: 90px;
  width: 360px;
  max-width: calc(100vw - 36px);
  display: none;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(5,12,22,.94);
  border: 1px solid rgba(143,223,255,.24);
  backdrop-filter: blur(22px);
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
}

.nouse-panel.open {
  display: block;
}

.nouse-header {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(143,223,255,.08);
  border-bottom: 1px solid rgba(143,223,255,.14);
}

.nouse-header strong {
  color: #8fdfff;
  letter-spacing: 2px;
}

.nouse-header button {
  background: transparent;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

.nouse-body {
  padding: 22px;
  color: #d7dce8;
  line-height: 1.6;
}

.nouse-greeting {
  color: white;
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.nouse-options {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.nouse-options button {
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid rgba(143,223,255,.2);
  background: rgba(255,255,255,.045);
  color: #8fdfff;
  cursor: pointer;
  text-align: left;
}

.nouse-input {
  display: flex;
  gap: 10px;
  padding: 16px;
  border-top: 1px solid rgba(143,223,255,.14);
}

.nouse-input input {
  flex: 1;
  min-width: 0;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid rgba(143,223,255,.18);
  background: rgba(0,0,0,.3);
  color: white;
}

.nouse-input button {
  padding: 13px 16px;
  border-radius: 14px;
  border: none;
  background: #8fdfff;
  color: #02050a;
  font-weight: 800;
}

.nouse-toast {
  position: fixed;
  right: 26px;
  bottom: 112px;
  width: 340px;
  max-width: calc(100vw - 36px);
  padding: 18px;
  border-radius: 22px;
  display: flex;
  gap: 14px;
  background: rgba(5,12,22,.94);
  border: 1px solid rgba(143,223,255,.24);
  backdrop-filter: blur(22px);
  box-shadow: 0 25px 80px rgba(0,0,0,.55);
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
  transition: .45s ease;
  z-index: 99998;
}

.nouse-toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.toast-dot {
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 50%;
  background: #63ff91;
  box-shadow: 0 0 18px #63ff91;
  flex-shrink: 0;
  animation: nousePulse 2s infinite;
}

.nouse-toast strong {
  color: #8fdfff;
  display: block;
  margin-bottom: 6px;
}

.nouse-toast p {
  color: #d7dce8;
  line-height: 1.5;
  margin-bottom: 12px;
}

.nouse-toast button {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(143,223,255,.3);
  background: rgba(143,223,255,.1);
  color: #8fdfff;
  font-weight: 800;
  cursor: pointer;
}

@keyframes nousePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.45);
    opacity: .45;
  }
}

@media (max-width: 600px) {
  .nouse-widget {
    right: 18px;
    bottom: 18px;
  }

  .nouse-button {
    width: 62px;
    height: 62px;
  }

  .nouse-button img {
    width: 40px !important;
    height: 40px !important;
  }
}

.nous-hero-copy h2 {
  margin: 0 0 28px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.nous-hero-copy h2 span {
  color: var(--nous-blue);
}

.nous-hero-art {
  min-height: 520px;
  position: relative;
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 35%, rgba(143, 223, 255, 0.2), transparent 32%),
    radial-gradient(circle at 70% 20%, rgba(249, 169, 76, 0.09), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--nous-border);
  overflow: hidden;
}

.nous-hero{
    position:relative;
    overflow:hidden;
}

.nous-quote {
  position: absolute;
  right: 28px;
  bottom: 34px;
  max-width: 260px;
  color: var(--nous-gold);
}

.nous-quote p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  margin: 0 0 12px;
}

.nous-quote small {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--nous-muted);
}

.nous-ecosystem-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: center;
  padding: 42px;
  border-radius: 34px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--nous-border);
}

.nous-ecosystem-panel h2 {
  margin: 10px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  font-weight: 500;
}

.nous-tools {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.nous-tools article {
  min-height: 130px;
  display: grid;
  place-items: center;
  text-align: center;
  border-left: 1px solid rgba(255,255,255,0.12);
}

.nous-tools i {
  color: var(--nous-blue);
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.nous-tools span {
  color: var(--nous-text);
  font-size: 0.9rem;
}

.nous-final-banner {
  width: min(100% - 48px, var(--nous-max));
  margin: 0 auto 100px;
  padding: clamp(42px, 7vw, 78px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 85% 80%, rgba(143,223,255,0.18), transparent 35%),
    linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  border: 1px solid var(--nous-border);
}

.nous-final-banner h2 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  font-weight: 500;
}

.nous-final-banner p {
  max-width: 520px;
  color: var(--nous-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

@media (max-width: 980px) {
  .nous-hero-art {
    min-height: 380px;
  }

  .nous-ecosystem-panel {
    grid-template-columns: 1fr;
  }

  .nous-tools {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 680px) {
  .nous-hero-art {
    min-height: 300px;
  }

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

  .nous-tools article {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nous-final-banner {
    width: min(100% - 28px, var(--nous-max));
    border-radius: 28px;
  }
}

.nous-statue-img {
  width: min(100%, 620px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 34px rgba(143, 223, 255, 0.12));
}

.nous-hero-background{

    position:absolute;
    top:0;
    right:0;
    width:58%;
    height:100%;
    pointer-events:none;
    z-index:0;

}

.nous-statue{

    position:absolute;

    right:-5%;

    bottom:-4%;

    height:95%;

    width:auto;

    opacity:.95;

    object-fit:contain;

    filter:

        drop-shadow(0 0 60px rgba(0,0,0,.45));

}

.nous-hero-copy{

    position:relative;

    z-index:5;

    max-width:700px;

}

.nous-cape-visual {
  width: min(100% - 48px, var(--nous-max));
  margin: 30px auto 90px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid var(--nous-border);
  background: rgba(255,255,255,0.035);
}

.nous-cape-visual img {
  width: 100%;
  height: clamp(260px, 42vw, 520px);
  object-fit: cover;
  display: block;
}

@media (max-width: 980px) {
  .nous-hero-art {
    min-height: 460px;
    justify-content: center;
  }
}

@media (max-width: 680px) {
  .nous-hero-art {
    min-height: 360px;
  }

  .nous-cape-visual {
    width: min(100% - 28px, var(--nous-max));
    border-radius: 24px;
    margin-bottom: 64px;
  }
}

.nous-orule{

    margin:20px 0 34px;

    font-family:Georgia,"Times New Roman",serif;

    font-weight:500;

    font-size:clamp(2.5rem,5vw,4.8rem);

    line-height:1.05;

    letter-spacing:-0.04em;

}

.nous-orule strong{

    color:#ffffff;

    font-weight:700;

    transition:inherit;

}

.nous-orule span:hover{

    transform:translateX(12px);

    letter-spacing:.02em;

}

.nous-orule span:hover strong{

    text-shadow:
        0 0 12px rgba(143,223,255,.55),
        0 0 24px rgba(143,223,255,.25);

}

.nous-description{

    max-width:620px;

    color:var(--nous-muted);

    font-size:1.08rem;

    line-height:1.9;

}

.nous-description strong{

    color:white;

    font-weight:600;

}

@media (max-width: 680px) {
  .nous-hero {
    padding-top: 120px;
    display: block;
  }

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

  .nous-hero-background {
    top: 210px;
    right: -18px;
    width: 62%;
    height: 520px;
    opacity: 0.9;
  }

  .nous-statue {
    right: -34px;
    bottom: 70px;
    height: 82%;
  }

  .nous-description {
    margin-top: 42px;
    position: relative;
    z-index: 8;
  }

  .nous-actions {
    position: relative;
    z-index: 9;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 34px;
  }

  .nous-actions .nous-btn {
    width: 100%;
  }

  .nous-quote {
    right: 24px;
    bottom: 20px;
    max-width: 280px;
    text-align: right;
    z-index: 10;
  }

  .nous-quote p {
    color: var(--nous-gold);
    font-size: 1.05rem;
    line-height: 1.3;
  }

  .nous-quote small {
    display: block;
    margin-top: 8px;
    font-size: 0.72rem;
    line-height: 1.4;
    letter-spacing: 0.14em;
  }
}