/* ------------------------------------------------------
   Nainacore Emotional Tech - Global Site Styles
   Matches new multi-page HTML + NEES Chat widget
---------------------------------------------------------*/

:root {
  --bg: #05060b;
  --bg-alt: #0c0f1a;
  --card: #101321;
  --accent: #41f4ff;
  --accent-soft: rgba(65, 244, 255, 0.08);
  --accent-strong: #00e5ff;
  --text: #e9f5ff;
  --muted: #9fb4cc;
  --border: #20263a;
  --danger: #ff4b81;
  --success: #4dffb5;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.4);
  --shadow-card: 0 12px 32px rgba(0, 0, 0, 0.6);
  --header-height: 70px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'SF Pro Text',
    -apple-system, sans-serif;
  background: radial-gradient(
    circle at top,
    #101527 0,
    #05060b 45%,
    #020309 100%
  );
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

/* ------------------------------------------------------
   Layout Helpers
---------------------------------------------------------*/

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ------------------------------------------------------
   Header + Navigation
---------------------------------------------------------*/

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    to bottom,
    rgba(5, 6, 11, 0.96),
    rgba(5, 6, 11, 0.82),
    transparent
  );
  border-bottom: 1px solid rgba(65, 244, 255, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--header-height);
}

.logo {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.main-nav a {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.main-nav a:hover {
  border-color: rgba(65, 244, 255, 0.3);
  color: var(--text);
}

.main-nav .btn-primary {
  padding-inline: 16px;
}

/* Simple mobile nav collapse (wraps nicely) */
@media (max-width: 820px) {
  .header-inner {
    align-items: flex-start;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .main-nav {
    justify-content: flex-start;
  }
}

/* ------------------------------------------------------
   Buttons
---------------------------------------------------------*/

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: radial-gradient(
    circle at top left,
    #41f4ff,
    #1384ff 60%,
    #2c4cff 100%
  );
  color: #020309;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  filter: brightness(1.05);
  text-decoration: none;
}

.btn-secondary {
  border-color: rgba(65, 244, 255, 0.4);
  background: rgba(8, 12, 24, 0.95);
  color: var(--text);
}

.btn-secondary:hover {
  background: rgba(18, 24, 42, 0.95);
  text-decoration: none;
}

.link-arrow {
  color: var(--accent);
  font-size: 0.9rem;
  text-decoration: none;
}

.link-arrow::after {
  content: ' ->';
}

.link-arrow:hover {
  text-decoration: underline;
}

/* ------------------------------------------------------
   HERO (Homepage)
---------------------------------------------------------*/

.hero {
  padding: 48px 0 32px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 28px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.1rem, 3.3vw + 1rem, 3rem);
  line-height: 1.05;
  margin-bottom: 14px;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-meta {
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-visual {
  justify-self: end;
  display: flex;
  justify-content: flex-end;
}

.hero-image-placeholder {
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top, #141a30, #050814 70%);
  border: 1px solid rgba(65, 244, 255, 0.25);
  box-shadow: var(--shadow-soft);
  padding: 12px 14px 14px;
  max-width: 420px;
  width: 100%;
}

.hero-image-frame {
  border-radius: 12px;
  border: 1px dashed rgba(148, 163, 184, 0.7);
  padding: 8px;
  margin-bottom: 20px;
}

.hero-image-frame-secondary {
  opacity: 0.9;
}

.hero-image-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.hero-sub {
  color: var(--muted);
}

@media (max-width: 840px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-visual {
    justify-self: end;
    justify-content: flex-start;
  }
  .hero-image-placeholder {
    max-width: 100%;
    margin-top: 12px;
  }
}

/* ------------------------------------------------------
   Generic Sections
---------------------------------------------------------*/

.section,
.section-nees-chat {
  padding: 56px 0;
}

.section-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(65, 244, 255, 0.25),
    transparent
  );
  margin: 32px 0;
}

.section h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.section p {
  font-size: 0.96rem;
  color: var(--muted);
  max-width: 820px;
}

.section ul {
  padding-left: 18px;
  margin-top: 8px;
}

.section ul li {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Page hero (inner pages) */

.page-hero {
  padding: 72px 0 40px;
  background: radial-gradient(
    circle at top,
    rgba(65, 244, 255, 0.15),
    transparent
  );
}

.page-hero h1 {
  font-size: 1.9rem;
  margin-bottom: 12px;
}

.page-hero p {
  max-width: 820px;
  color: var(--muted);
  font-size: 0.98rem;
}

/* ------------------------------------------------------
   Grids & Cards
---------------------------------------------------------*/

.feature-grid,
.skill-grid,
.columns.two {
  display: grid;
  grid-gap: 16px;
}

.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.skill-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.columns.two {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.feature-card,
.skill-card,
.pricing-card {
  background: radial-gradient(
    circle at top,
    rgba(38, 52, 92, 0.55),
    rgba(3, 7, 18, 0.96)
  );
  border-radius: var(--radius-lg);
  padding: 18px 14px 18px;
  border: 1px solid rgba(31, 41, 75, 0.9);
  box-shadow: var(--shadow-card);
  min-height: 210px;
}

.feature-card h2,
.skill-card h2 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.feature-card p,
.skill-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

.badge {
  display: inline-block;
  margin-top: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.badge-pro {
  border-color: rgba(65, 244, 255, 0.7);
  color: var(--accent);
}

.badge-coming {
  border-color: rgba(250, 204, 21, 0.8);
  color: #facc15;
}

.badge-free {
  border-color: rgba(34, 197, 94, 0.8);
  color: #bbf7d0;
}

/* Pricing */

.pricing-card {
  text-align: left;
}

.pricing-card .price {
  font-size: 1.4rem;
  margin: 6px 0 10px;
}

.pricing-card ul {
  padding-left: 18px;
}

.pricing-card-highlight {
  border-color: rgba(65, 244, 255, 0.7);
  box-shadow: 0 16px 40px rgba(0, 229, 255, 0.35);
}

/* CTA meta text */

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.cta-meta {
  font-size: 0.84rem;
  color: var(--muted);
}

/* ------------------------------------------------------
   NEES Chat Widget (homepage)
---------------------------------------------------------*/

#nees-chat-section {
  max-width: 900px;
  margin: 3rem auto;
  padding: 1.5rem;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nees-chat-shell {
  background: radial-gradient(
      circle at top,
      rgba(84, 120, 255, 0.25),
      transparent
    ),
    rgba(4, 7, 20, 0.95);
  border: 1px solid rgba(120, 180, 255, 0.5);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 0 25px rgba(80, 150, 255, 0.35);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.nees-chat-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.nees-chat-header hgroup {
  margin: 0;
}

.nees-chat-label {
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(232, 244, 255, 0.7);
}

.nees-chat-title {
  margin: 2px 0 4px;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.nees-chat-subtitle {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

.nees-chat-close {
  margin-left: auto;
  border: 1px solid rgba(120, 180, 255, 0.35);
  background: rgba(6, 8, 24, 0.9);
  color: #e5edff;
  border-radius: 999px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, color 0.15s ease, transform 0.12s ease;
}

.nees-chat-close:hover {
  background: rgba(56, 224, 255, 0.1);
  color: #fff;
  transform: translateY(-1px);
}

.nees-chat-window {
  background: rgba(3, 6, 18, 0.95);
  border-radius: 12px;
  border: 1px solid rgba(120, 180, 255, 0.3);
  padding: 0.75rem;
  min-height: 220px;
  max-height: 50vh;
  overflow-y: auto;
  font-size: 0.9rem;
}

.nees-chat-message {
  display: flex;
  margin-bottom: 0.6rem;
}

.nees-chat-message-user {
  justify-content: flex-end;
}

.nees-chat-message-assistant {
  justify-content: flex-start;
}

.nees-chat-bubble {
  max-width: 80%;
  padding: 0.55rem 0.75rem;
  border-radius: 12px;
  line-height: 1.4;
}

.nees-chat-message-user .nees-chat-bubble {
  background: linear-gradient(135deg, #4b9bff, #7a5cff);
  color: #ffffff;
  border-bottom-right-radius: 2px;
}

.nees-chat-message-assistant .nees-chat-bubble {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(120, 180, 255, 0.4);
  border-bottom-left-radius: 2px;
}

.nees-chat-status {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  opacity: 0.8;
}

.nees-chat-input-row {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.6rem;
}

.nees-chat-input {
  flex: 1;
  background: rgba(3, 7, 18, 0.9);
  border: 1px solid rgba(120, 180, 255, 0.5);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  color: #e5e7eb;
  outline: none;
  font-size: 0.9rem;
}

.nees-chat-input:focus {
  box-shadow: 0 0 0 1px rgba(125, 211, 252, 0.7);
}

.nees-chat-send-btn {
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: none;
  font-size: 0.9rem;
  cursor: pointer;
  background: linear-gradient(135deg, #4b9bff, #7a5cff);
  color: #ffffff;
  white-space: nowrap;
  transition: transform 0.1s ease, box-shadow 0.1s ease, opacity 0.1s ease;
}

.nees-chat-send-btn:disabled {
  opacity: 0.5;
  cursor: default;
}

.nees-chat-send-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 0 12px rgba(80, 150, 255, 0.7);
}

.mode-note {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(12, 18, 36, 0.96);
  border: 1px solid rgba(65, 244, 255, 0.25);
}

.privacy-note {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Chat card */

.nees-chat-widget {
  display: flex;
  justify-content: flex-end;
}

.chat-card {
  width: 100%;
  max-width: 420px;
  background: #060813;
  border-radius: 18px;
  border: 1px solid #1b2038;
  box-shadow: var(--shadow-card);
  padding: 10px 10px 12px;
  font-size: 0.86rem;
}

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.chat-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.86rem;
}

.chat-status {
  font-size: 0.78rem;
  color: var(--muted);
}

.dot,
.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  display: inline-block;
}

.dot-online,
.pill-dot {
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(77, 255, 181, 0.22);
}

.chat-messages {
  max-height: 260px;
  overflow-y: auto;
  padding: 6px 2px 4px;
  margin-bottom: 6px;
}

/* Scrollbar styling (subtle) */
.chat-messages::-webkit-scrollbar {
  width: 6px;
}
.chat-messages::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.5);
  border-radius: 999px;
}

.message {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 20px;
}

.avatar {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
}

.avatar-naina {
  background: conic-gradient(from 210deg, #00e5ff, #7f5dff, #ff3caa, #00e5ff);
  color: #020309;
}

.bubble {
  background: #0b1022;
  border-radius: 14px;
  padding: 8px 10px;
  border: 1px solid rgba(65, 244, 255, 0.25);
  color: #c9d2ff;
  font-size: 0.84rem;
}

.bubble p {
  margin: 0 0 4px;
}

.bubble p:last-child {
  margin-bottom: 0;
}

/* Typing indicator */

.chat-typing-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 2px 0 8px;
  font-size: 0.78rem;
  color: var(--muted);
}

.typing-bubbles {
  display: inline-flex;
  gap: 3px;
}

.typing-bubbles span {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #c9d2ff;
  opacity: 0.6;
  animation: typing-bounce 1s infinite ease-in-out;
}

.typing-bubbles span:nth-child(2) {
  animation-delay: 0.15s;
}
.typing-bubbles span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes typing-bounce {
  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  40% {
    transform: translateY(-3px);
    opacity: 1;
  }
}

/* Chat input + suggestions */

.chat-input-row {
  display: flex;
  gap: 8px;
  margin: 6px 0 8px;
}

.chat-input-row input[type='text'] {
  flex: 1;
  border-radius: 999px;
  border: 1px solid #1b2038;
  background: #050711;
  color: #f5f7ff;
  padding: 7px 10px;
  font-size: 0.84rem;
  outline: none;
}

.chat-input-row input[type='text']:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(65, 244, 255, 0.4);
}

.chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
}

.chip {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.95);
  color: var(--muted);
  font-size: 0.76rem;
  padding: 4px 10px;
  cursor: pointer;
}

.chip:hover {
  border-color: rgba(65, 244, 255, 0.7);
  color: var(--text);
}

.chat-footer-note {
  font-size: 0.78rem;
  color: #9aa0c2;
}

#nees-chat-section.is-floating {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: auto;
  top: auto;
  max-width: 380px;
  width: calc(100% - 2.25rem);
  margin: 0;
  padding: 0;
  z-index: 80;
}

#nees-chat-section.is-floating .nees-chat-shell {
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(120, 180, 255, 0.7);
  max-height: 80vh;
  overflow: auto;
}

#nees-chat-section.is-floating.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

@media (max-width: 1023px) {
  #nees-chat-section.is-floating {
    position: static;
    max-width: 900px;
    width: 100%;
    margin: 3rem auto;
    padding: 1.5rem;
    max-height: none;
    overflow: visible;
  }

  #nees-chat-section.is-floating.is-hidden {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nees-chat-close {
    display: none;
  }
}

/* ------------------------------------------------------
   Who it's for / bullet sections
---------------------------------------------------------*/

#who-for ul li,
#privacy ul li {
  margin-bottom: 4px;
}

/* Quote style */

.quote {
  margin-top: 12px;
  padding: 10px 12px;
  border-left: 3px solid var(--accent);
  font-size: 0.9rem;
  color: var(--muted);
}

/* ------------------------------------------------------
   Contact form
---------------------------------------------------------*/

.contact-form {
  max-width: 520px;
  padding: 16px 16px 18px;
  border-radius: var(--radius-lg);
  background: rgba(6, 9, 18, 0.96);
  border: 1px solid rgba(31, 41, 75, 0.9);
  box-shadow: var(--shadow-card);
}

.form-row {
  margin-bottom: 10px;
}

.form-row label {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 4px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(51, 65, 85, 0.9);
  background: #020617;
  color: var(--text);
  padding: 7px 10px;
  font-size: 0.86rem;
  outline: none;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(65, 244, 255, 0.4);
}

.contact-alt {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ------------------------------------------------------
   Legal pages (privacy / terms / safety)
---------------------------------------------------------*/

.legal-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

.legal-text p {
  margin-bottom: 10px;
}

/* Safety standalone page shell */

.legal-shell {
  max-width: 760px;
  margin: 40px auto;
  padding: 20px 18px 24px;
  border-radius: var(--radius-lg);
  background: #05060b;
  color: var(--text);
  border: 1px solid rgba(65, 244, 255, 0.25);
  box-shadow: var(--shadow-soft);
}

.legal-shell h1 {
  margin-top: 0;
  margin-bottom: 10px;
}

.legal-shell ul {
  padding-left: 18px;
}

/* ------------------------------------------------------
   Footer
---------------------------------------------------------*/

.site-footer {
  margin-top: 40px;
  padding: 20px 0 26px;
  border-top: 1px solid rgba(65, 244, 255, 0.2);
  color: #8bb5c8;
  font-size: 0.86rem;
  background: radial-gradient(circle at bottom, #050814, #020309 60%);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
  justify-content: space-between;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-nav a {
  color: #41f4ff;
  text-decoration: none;
  font-size: 0.84rem;
}

.footer-nav a:hover {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ------------------------------------------------------
   Responsive tweaks
---------------------------------------------------------*/

@media (max-width: 920px) {
  .nees-chat-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .nees-chat-widget {
    justify-content: flex-start;
    margin-top: 12px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 20px;
  }
  .page-hero {
    padding-top: 28px;
  }
  .contact-form {
    padding-inline: 12px;
  }
}

@keyframes typingPulse {
  from {
    transform: translateY(0);
    opacity: 0.6;
  }
  to {
    transform: translateY(-2px);
    opacity: 1;
  }
}

/* ------------------------------------------------------
   NainaSOS Launch Banner
---------------------------------------------------------*/

.launch-banner {
  background: radial-gradient(circle at top, rgba(65, 244, 255, 0.25), #020617);
  border-bottom: 1px solid rgba(56, 189, 248, 0.6);
  font-size: 0.82rem;
  color: #e2f3ff;
}

.launch-banner-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  flex-wrap: wrap;
}

.launch-pill {
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.9);
  background: rgba(8, 47, 73, 0.95);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.launch-text {
  flex: 1;
  min-width: 180px;
}

.launch-link {
  font-size: 0.8rem;
  text-decoration: none;
  color: #38bdf8;
  font-weight: 500;
  white-space: nowrap;
}

.launch-link:hover {
  text-decoration: underline;
}

/* Neon theme additions */
:root {
  --bg: #03040b;
  --bg-elevated: #070a16;
  --card: #0a0f20;
  --border: #202643;
  --fg: #f5f7ff;
  --muted: #9aa2c6;
  --accent: #38e0ff;
  --accent-soft: rgba(56, 224, 255, 0.18);
  --accent-strong: rgba(56, 224, 255, 0.9);
  --danger: #ff4b81;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.7);
  --radius-lg: 18px;
  --radius-xl: 26px;
}

body {
  background: radial-gradient(circle at top, #06091a 0, #020308 55%, #000 100%);
  color: var(--fg);
}

.hero {
  padding: 4rem 1.5rem 3rem;
}

.hero.centered {
  text-align: center;
}

section {
  padding: 3rem 1.5rem;
}

.centered {
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(
    to bottom,
    rgba(3, 4, 11, 0.96),
    rgba(3, 4, 11, 0.86)
  );
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(56, 224, 255, 0.08);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--fg);
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  background: radial-gradient(
    circle at top,
    var(--accent-soft),
    transparent 55%
  );
  box-shadow: 0 0 16px rgba(56, 224, 255, 0.55);
}

.brand-text {
  line-height: 1.2;
  font-size: 0.9rem;
}

.brand-text small {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
}

.nav-links {
  margin-left: auto;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
  padding: 0.35rem 0.45rem;
  border-radius: 999px;
  transition: color 0.18s ease, background 0.18s ease, transform 0.1s ease;
}

.nav-links a:hover {
  color: var(--fg);
  background: rgba(56, 224, 255, 0.12);
  transform: translateY(-1px);
}

.nav-links .nav-cta {
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  background: radial-gradient(
    circle at top,
    var(--accent-soft),
    transparent 60%
  );
  box-shadow: 0 0 16px rgba(56, 224, 255, 0.6);
  color: var(--fg);
}

.nav-toggle {
  display: none;
  margin-left: 0.75rem;
  background: transparent;
  border: 1px solid rgba(56, 224, 255, 0.5);
  color: var(--fg);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 1rem;
}

.btn-neon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: radial-gradient(
    circle at top,
    var(--accent-soft),
    rgba(5, 8, 24, 0.95)
  );
  color: var(--fg);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 0 16px rgba(56, 224, 255, 0.5), 0 10px 32px rgba(0, 0, 0, 0.9);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.15s ease;
}

.btn-neon:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 0 24px rgba(56, 224, 255, 0.8), 0 16px 42px rgba(0, 0, 0, 0.95);
  background: radial-gradient(
    circle at top,
    var(--accent-strong),
    rgba(5, 8, 24, 1)
  );
}

.pricing {
  background: radial-gradient(
    circle at top,
    rgba(13, 23, 72, 0.75),
    transparent 60%
  );
}

.plan-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.plan {
  background: var(--card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.plan h3 {
  margin-top: 0;
  margin-bottom: 0.3rem;
}

.plan p {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.plan ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.plan ul li {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.plan.highlight {
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(56, 224, 255, 0.6), 0 22px 60px rgba(0, 0, 0, 0.95);
  transform: translateY(-4px);
}

.cta {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  background: radial-gradient(
    circle at top,
    rgba(56, 224, 255, 0.12),
    rgba(6, 8, 24, 0.95)
  );
  border-radius: var(--radius-xl);
  border: 1px solid rgba(56, 224, 255, 0.4);
  padding: 2.6rem 1.8rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.9);
}

.cta p {
  color: var(--muted);
  max-width: 520px;
  margin: 0.75rem auto 1.5rem;
}

.site-footer {
  margin-top: 3rem;
  border-top: 1px solid rgba(56, 224, 255, 0.12);
  background: radial-gradient(circle at top, rgba(5, 9, 28, 0.9), #02030a);
  padding: 3rem 1.5rem 2rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 1.5rem;
}

.footer-column h3,
.footer-column h4 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.footer-column p {
  margin: 0.3rem 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-column ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.25rem;
}

.footer-column ul a {
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: none;
}

.footer-column ul a:hover {
  color: var(--accent);
}

.footer-tagline {
  margin-top: 0.9rem;
  font-style: italic;
  color: var(--accent);
  font-size: 0.9rem;
}

.footer-mini {
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(56, 224, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 224, 255, 0.7);
  background: rgba(4, 9, 32, 0.95);
  color: var(--accent);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .nav-links {
    gap: 0.6rem;
    font-size: 0.85rem;
  }

  .plan-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .nav-inner {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  section,
  .hero,
  .site-footer {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta {
    padding: 2.1rem 1.3rem;
  }
}

/* ===== Nainacore spacing polish (global) ===== */

/* Paragraphs – remove huge gaps */
p {
  margin: 0 0 0.75rem 0 !important; /* only small bottom margin */
  line-height: 1.55;
}

/* Headings – tighten vertical rhythm */
h1,
h2,
h3,
h4,
h5 {
  margin-top: 0 !important;
  margin-bottom: 0.6rem !important;
}

/* Section padding – halve the vertical space */
section,
.section,
.page-section {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

@media (max-width: 768px) {
  section,
  .section,
  .page-section {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
}

/* Last paragraph in a block – no extra white hole at bottom */
.section p:last-child,
section p:last-child {
  margin-bottom: 0 !important;
}

/* Lists – compact bullets */
ul,
ol {
  margin: 0.25rem 0 0.75rem 1.2rem !important;
}

/* Optional: cards/feature blocks – little more pull-up */
.section + .section,
section + section {
  margin-top: -10px; /* gently pulls sections closer together */
}

/* Hero me dikhne wala NEES chat section ko thoda niche lao */
@media (min-width: 1024px) {
  #nees-chat-section:not(.is-floating) {
    margin-top: 24px;
  }
}
