/* Diptool frontend styles, consolidated for /diptool/. */

/* index.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #f8fbff;
  background-color: #070914;
}

input:-webkit-autofill {
  appearance: none;
  background-color: #111827 !important;
  color: #f8fbff !important;
  box-shadow: 0 0 0 1000px #111827 inset !important;
  -webkit-text-fill-color: #f8fbff !important;
}

.css-16wblaj-MuiInputBase-input-MuiOutlinedInput-input.Mui-disabled {
  color: white !important;
}

input:-webkit-autofill:focus {
  background-color: #111827 !important;
  color: #f8fbff !important;
  -webkit-text-fill-color: #f8fbff !important;
  box-shadow: 0 0 0 1000px #111827 inset !important;
}


code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}


/* App.css */
.App {
  text-align: center;
}

.App-logo {
  height: 40vmin;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .App-logo {
    animation: App-logo-spin infinite 20s linear;
  }
}

.App-header {
  background-color: #282c34;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: calc(10px + 2vmin);
  color: white;
}

.App-link {
  color: #61dafb;
}

@keyframes App-logo-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}


/* account/Table.css */
.table-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: min(1440px, calc(100% - 40px));
  margin: 28px auto 56px;
  padding: 1rem;
  border: 1px solid rgba(74, 213, 255, 0.14);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(0, 216, 255, 0.08), rgba(255, 42, 109, 0.035)),
    rgba(3, 12, 26, 0.78);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.table-container .MuiSvgIcon-root {
  color: #f8fbff !important;
}

.table-container .MuiFormLabel-root.MuiInputLabel-root,
.table-container .MuiButtonBase-root,
.table-container .MuiTablePagination-selectLabel,
.table-container .MuiTablePagination-displayedRows,
.table-container .MuiSelect-select,
.table-container .MuiInputBase-root {
  color: #f8fbff !important;
  font-family: 'Poppins', sans-serif !important;
}

.table-container .MuiInputBase-input.MuiOutlinedInput-input {
  color: #f8fbff;
}

.table-container .MuiButton-root:hover {
  background-color: rgba(0, 216, 255, 0.1) !important;
}

.table-container .MuiTableRow-root {
  transition: background-color 160ms ease, transform 160ms ease;
}

.table-container .MuiTableHead-root .MuiTableCell-root {
  color: #aebbd2 !important;
}

.table-container .MuiToolbar-root {
  min-height: 54px;
}

.MuiPaper-root.MuiAlert-root {
  font-family: 'Poppins', sans-serif !important;
  color: #f8fbff !important;
  background: rgba(15, 19, 33, 0.92) !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
}


/* components/Header.css */
.header {
  box-sizing: border-box;
  height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
  background: rgba(8, 10, 20, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.36);
  position: sticky;
  top: 16px;
  z-index: 20;
  width: min(1240px, calc(100% - 48px));
  margin: 16px auto 0;
  border-radius: 18px;
  backdrop-filter: blur(18px);
}

.logo svg {
  height: 42px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.mobile-menu-button {
  display: none;
}

.learn-more-button,
.creators-button,
.faq-button {
  padding: 0.78rem 1rem;
  color: #d9e4f2;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.simulation-nav-button {
  padding: 0.78rem 1rem;
  color: #ffffff;
  border: 1px solid rgba(9, 213, 255, 0.42);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(240, 20, 85, 0.34), rgba(11, 188, 255, 0.22));
  box-shadow: 0 0 24px rgba(11, 188, 255, 0.22);
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.account-button,
.logout-button {
  align-items: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #f8fbff;
  cursor: pointer;
  display: inline-flex;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  gap: 0.65rem;
  padding: 0.65rem 0.75rem;
}

.account-button:hover,
.account-button:focus-visible,
.logout-button:hover,
.logout-button:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(9, 213, 255, 0.26);
}

.simulation-nav-button:hover,
.simulation-nav-button:focus-visible {
  background: linear-gradient(135deg, rgba(255, 40, 104, 0.46), rgba(39, 200, 255, 0.32));
  border-color: rgba(9, 213, 255, 0.62);
  box-shadow: 0 0 30px rgba(11, 188, 255, 0.3);
  transform: translateY(-1px);
}

.learn-more-button:hover,
.learn-more-button:focus-visible,
.faq-button:hover,
.faq-button:focus-visible,
.creators-button:hover,
.creators-button:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(9, 213, 255, 0.28);
  box-shadow: 0 0 22px rgba(9, 213, 255, 0.1);
  color: #ffffff;
  transform: translateY(-1px);
}

.login-button,
.signup-button {
  padding: 0.78rem 1rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.login-button {
  color: #f8fbff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.login-button:hover,
.login-button:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(9, 213, 255, 0.28);
  box-shadow: 0 0 22px rgba(9, 213, 255, 0.1);
  color: #ffffff;
  transform: translateY(-1px);
}

.signup-button {
  background: linear-gradient(135deg, #087fa8, #09d5ff);
  color: #ffffff;
  box-shadow: 0 0 28px rgba(11, 188, 255, 0.28);
}

.signup-button:hover,
.signup-button:focus-visible {
  background: linear-gradient(135deg, #0a91bd, #35ddff);
  color: #ffffff;
  box-shadow: 0 0 32px rgba(11, 188, 255, 0.34);
  transform: translateY(-1px);
}

.learn-more-button:focus-visible,
.creators-button:focus-visible,
.faq-button:focus-visible,
.simulation-nav-button:focus-visible,
.login-button:focus-visible,
.signup-button:focus-visible,
.account-button:focus-visible,
.logout-button:focus-visible {
  outline: 2px solid rgba(9, 213, 255, 0.72);
  outline-offset: 3px;
}

@media (max-width: 880px) {
  .header {
    align-items: center;
    flex-direction: row;
    height: 56px;
    margin-top: 8px;
    padding: 8px 10px;
    top: 8px;
    width: calc(100% - 16px);
  }

  .logo {
    height: 34px;
  }

  .logo svg {
    height: 34px;
  }

  .mobile-menu-button {
    align-items: center;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(9, 213, 255, 0.25);
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    height: 38px;
    justify-content: center;
    padding: 0;
    width: 38px;
  }

  .nav {
    align-items: stretch;
    background: rgba(7, 13, 27, 0.97);
    border: 1px solid rgba(9, 213, 255, 0.24);
    border-radius: 12px;
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.42);
    display: none;
    flex-direction: column;
    gap: 3px;
    left: 0;
    padding: 8px;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    width: 100%;
  }

  .nav.nav-open {
    display: flex;
  }

  .nav > * {
    justify-content: flex-start;
    width: 100%;
  }

  .learn-more-button,
  .creators-button,
  .faq-button,
  .simulation-nav-button,
  .login-button,
  .signup-button,
  .account-button,
  .logout-button {
    font-size: 0.7rem;
    min-height: 36px;
    padding: 0.55rem 0.72rem;
    text-align: left;
  }
}


/* components/HeroSection.css */
.hero-section {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 500px;
  align-items: center;
  min-height: calc(100svh - 96px);
  position: relative;
  overflow: hidden;
  gap: 74px;
  padding: 82px 56px 64px;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}

.hero-copy {
  max-width: 720px;
  min-width: 0;
}

.hero-eyebrow {
  color: #09d5ff;
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.36em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.hero-title {
  color: #ffffff;
  font-size: 8rem;
  font-weight: 800;
  margin: 0;
  line-height: 0.92;
}

.hero-tagline {
  color: #f7fbff;
  font-size: 1.16rem;
  font-weight: 800;
  line-height: 1.55;
  margin: 28px 0 0;
  max-width: 680px;
}

.hero-subtitle {
  color: #c9d4e4;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.7;
  margin: 14px 0 0;
  max-width: 680px;
}

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

.hero-primary,
.hero-secondary {
  border-radius: 12px;
  font-weight: 700;
  padding: 14px 20px;
  text-decoration: none;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.hero-primary {
  background: linear-gradient(135deg, #087fa8, #09d5ff);
  color: #ffffff;
  box-shadow: 0 0 32px rgba(11, 188, 255, 0.22);
}

.hero-primary:hover,
.hero-primary:focus-visible {
  background: linear-gradient(135deg, #0a91bd, #35ddff);
  box-shadow:
    0 0 34px rgba(11, 188, 255, 0.34),
    0 16px 34px rgba(0, 0, 0, 0.22);
  color: #ffffff;
  transform: translateY(-2px);
}

.hero-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #f8fbff;
}

.hero-secondary:hover,
.hero-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(9, 213, 255, 0.5);
  box-shadow: 0 0 26px rgba(9, 213, 255, 0.14);
  color: #ffffff;
  transform: translateY(-2px);
}

.hero-primary:focus-visible,
.hero-secondary:focus-visible,
.inline-cta button:focus-visible,
.contact-form button:focus-visible,
.result-validation-card a:focus-visible {
  outline: 2px solid rgba(9, 213, 255, 0.72);
  outline-offset: 3px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-tags span {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #cfd8e7;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 10px 14px;
}

.hero-visual {
  min-height: 440px;
  min-width: 0;
  position: relative;
}

.hero-image-visual {
  align-items: center;
  display: flex;
  justify-content: center;
}

.hero-image-visual img {
  display: block;
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.45));
  height: auto;
  max-height: 620px;
  max-width: 108%;
  object-fit: contain;
  position: relative;
  transform: translateX(12px);
  width: 108%;
  z-index: 1;
}

.visual-card {
  background: rgba(15, 19, 33, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
  color: #ffffff;
  position: absolute;
  backdrop-filter: blur(18px);
}

.profile-card {
  padding: 24px;
  right: 18px;
  top: 28px;
  width: 180px;
}

.profile-card strong {
  background: linear-gradient(135deg, #ff426d, #0bd7ff);
  -webkit-background-clip: text;
  color: transparent;
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
}

.profile-card > span,
.stats-card > span,
.molecule-card > span:not(.visual-label) {
  color: #aeb9cb;
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 8px;
}

.molecule-card {
  left: 8px;
  padding: 22px;
  top: 24px;
  width: 210px;
}

.visual-label {
  color: #09d5ff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.molecule-path {
  align-items: center;
  display: flex;
  gap: 12px;
  height: 86px;
  margin-top: 8px;
}

.molecule-path i {
  background: linear-gradient(135deg, #f01455, #0bbcff);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(11, 188, 255, 0.26);
  display: block;
  height: 28px;
  width: 28px;
}

.molecule-path i:nth-child(2) {
  height: 42px;
  width: 42px;
}

.molecule-path i:nth-child(3) {
  height: 22px;
  width: 22px;
}

.membrane-visual {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  box-shadow: inset 0 0 42px rgba(9, 213, 255, 0.08);
  height: 260px;
  left: 82px;
  overflow: hidden;
  position: absolute;
  top: 154px;
  width: 360px;
}

.headgroup-row {
  background-image: radial-gradient(circle, rgba(9, 213, 255, 0.92) 0 6px, transparent 7px);
  background-size: 28px 24px;
  height: 52px;
  opacity: 0.9;
}

.headgroup-row.bottom {
  bottom: 0;
  position: absolute;
  width: 100%;
}

.tail-zone {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 18px),
    linear-gradient(135deg, rgba(240, 20, 85, 0.18), rgba(11, 188, 255, 0.1));
  height: 156px;
}

.stats-card {
  bottom: 26px;
  right: 16px;
  padding: 24px;
  width: 250px;
}

.stats-card strong {
  color: #ffffff;
  display: block;
  font-size: 1rem;
}

.mini-profile {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  height: 82px;
  margin-top: 16px;
  position: relative;
}

.mini-profile span {
  border: solid #09d5ff;
  border-width: 0 0 4px 4px;
  border-radius: 0 0 0 38px;
  display: block;
  height: 56px;
  left: 14px;
  position: absolute;
  top: 4px;
  transform: skewX(-18deg);
  width: 162px;
}

.orb {
  border-radius: 50%;
  filter: blur(1px);
  position: absolute;
}

.orb-one {
  background: linear-gradient(135deg, #f01455, #0bbcff);
  height: 94px;
  left: 6px;
  top: 104px;
  width: 94px;
}

.orb-two {
  background: linear-gradient(135deg, #7c3aed, #0bbcff);
  height: 54px;
  right: 260px;
  top: 52px;
  width: 54px;
}

@media (max-width: 1200px) {
  .hero-section {
    gap: 42px;
    grid-template-columns: minmax(0, 1fr) 420px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero-title {
    font-size: 6.5rem;
  }
}

@media (max-width: 900px) {
  .hero-section {
    gap: 28px;
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 52px 20px 44px;
  }

  .hero-title {
    font-size: 4rem;
    line-height: 0.96;
  }

  .hero-tagline {
    font-size: 1.02rem;
    line-height: 1.55;
    margin-top: 22px;
  }

  .hero-subtitle {
    font-size: 0.98rem;
    line-height: 1.65;
    margin-top: 12px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 28px;
  }

  .hero-actions a {
    box-sizing: border-box;
    min-width: 0;
    padding: 13px 12px;
    text-align: center;
  }

  .hero-primary {
    grid-column: 1 / -1;
  }

  .hero-tags {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 26px;
  }

  .hero-tags span {
    font-size: 0.7rem;
    padding: 9px 10px;
  }

  .hero-visual {
    min-height: 280px;
  }

  .hero-image-visual img {
    max-height: 420px;
    max-width: 100%;
    transform: none;
    width: 100%;
  }

  .department-ribbon-inner {
    gap: 10px;
    min-height: 58px;
    padding: 10px 24px;
  }

  .department-ribbon img {
    height: 34px;
    width: 34px;
  }

  .department-ribbon-text span {
    font-size: 0.54rem;
    letter-spacing: 0.1em;
  }

}

@media (max-width: 420px) {
  .hero-title {
    font-size: 3.35rem;
  }

  .hero-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-actions,
  .hero-tags {
    grid-template-columns: 1fr;
  }

  .hero-primary {
    grid-column: auto;
  }
}

.landing-page {
  color: #f8fbff;
  min-height: 100vh;
  overflow-x: clip;
}

.landing-page *,
.landing-page *::before,
.landing-page *::after {
  box-sizing: border-box;
}

.department-ribbon {
  background:
    linear-gradient(90deg, rgba(9, 213, 255, 0.08), rgba(9, 213, 255, 0.13), rgba(9, 213, 255, 0.08)),
    rgba(7, 13, 27, 0.72);
  border-bottom: 1px solid rgba(9, 213, 255, 0.24);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 24px 60px rgba(0, 0, 0, 0.18);
  color: #ffffff;
  display: block;
  margin: 0;
  position: relative;
  text-decoration: none;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.department-ribbon:hover,
.department-ribbon:focus-visible {
  background:
    linear-gradient(90deg, rgba(9, 213, 255, 0.14), rgba(9, 213, 255, 0.2), rgba(9, 213, 255, 0.14)),
    rgba(9, 18, 36, 0.82);
  border-bottom-color: rgba(9, 213, 255, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 26px 62px rgba(9, 213, 255, 0.11);
}

.department-ribbon:focus-visible {
  outline: 2px solid rgba(9, 213, 255, 0.72);
  outline-offset: -4px;
}

.department-ribbon-inner {
  align-items: center;
  display: flex;
  gap: 12px;
  margin: 0 auto;
  max-width: 1240px;
  min-height: 62px;
  padding: 12px 56px;
}

.department-ribbon img {
  display: block;
  flex: 0 0 auto;
  height: 38px;
  object-fit: contain;
  width: 38px;
}

.department-ribbon-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.department-ribbon-text strong {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
}

.department-ribbon-text span {
  color: #09d5ff;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.landing-section {
  margin: 0 auto;
  max-width: 1180px;
  padding: 88px 56px;
  scroll-margin-top: 104px;
  width: 100%;
}

.section-heading {
  max-width: 820px;
}

.section-heading span,
.section-kicker {
  color: #09d5ff;
  display: block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-heading h2,
.contact-section h2 {
  color: #ffffff;
  font-size: 3.5rem;
  line-height: 1.05;
  margin: 0;
}

.section-lead {
  color: #b8c4d6;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.85;
  margin: 28px 0 0;
  max-width: 900px;
}

.section-lead-followup {
  margin-top: 16px;
}

.research-grid,
.faq-grid,
.workflow-strip,
.io-grid,
.case-grid,
.publication-list {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

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

.about-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

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

.case-grid,
.publication-list {
  grid-template-columns: repeat(2, 1fr);
}

.research-grid article,
.faq-grid article,
.workflow-strip div,
.io-grid article,
.case-grid article,
.publication-list article,
.contact-section {
  background:
    radial-gradient(circle at 100% 8%, rgba(11, 188, 255, 0.13), transparent 38%),
    linear-gradient(145deg, rgba(9, 19, 37, 0.88), rgba(7, 13, 28, 0.76));
  border: 1px solid rgba(9, 213, 255, 0.26);
  border-radius: 18px;
  box-shadow:
    inset 0 0 36px rgba(9, 213, 255, 0.05),
    0 18px 46px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
  position: relative;
}

.research-grid article::before,
.faq-grid article::before,
.io-grid article::before,
.contact-section::before {
  background: linear-gradient(90deg, rgba(9, 213, 255, 0.25), #09d5ff, rgba(9, 213, 255, 0.25));
  content: '';
  height: 2px;
  left: 22px;
  opacity: 0.66;
  position: absolute;
  right: 22px;
  top: 0;
}

.research-grid article,
.faq-grid article,
.io-grid article,
.case-grid article,
.publication-list article {
  padding: 28px;
}

.research-grid strong,
.faq-grid h3,
.io-grid h3,
.case-grid b,
.publication-list b {
  color: #ffffff;
  display: block;
  font-size: 1.05rem;
  margin: 0 0 14px;
}

.research-grid p,
.faq-grid p,
.contact-section p,
.case-grid p,
.publication-list p,
.io-grid li {
  color: #aeb9cb;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.io-grid ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.io-grid li {
  padding-left: 18px;
  position: relative;
}

.io-grid li::before {
  background: #09d5ff;
  border-radius: 50%;
  content: '';
  height: 6px;
  left: 0;
  position: absolute;
  top: 12px;
  width: 6px;
}

.workflow-strip {
  grid-template-columns: repeat(5, 1fr);
}

.workflow-strip div {
  min-height: 138px;
  padding: 24px;
}

.workflow-strip b {
  background: linear-gradient(135deg, #ff426d, #0bd7ff);
  -webkit-background-clip: text;
  color: transparent;
  display: block;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.workflow-strip p {
  color: #d4deec;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.55;
  margin: 0;
}

.inline-cta {
  align-items: center;
  background:
    radial-gradient(circle at 100% 8%, rgba(11, 188, 255, 0.13), transparent 38%),
    linear-gradient(145deg, rgba(9, 19, 37, 0.88), rgba(7, 13, 28, 0.76));
  border: 1px solid rgba(9, 213, 255, 0.26);
  border-radius: 18px;
  box-shadow:
    inset 0 0 36px rgba(9, 213, 255, 0.05),
    0 18px 46px rgba(0, 0, 0, 0.26);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin-top: 24px;
  padding: 26px;
  position: relative;
}

.inline-cta::before {
  background: linear-gradient(90deg, rgba(9, 213, 255, 0.25), #09d5ff, rgba(9, 213, 255, 0.25));
  content: '';
  height: 2px;
  left: 22px;
  opacity: 0.66;
  position: absolute;
  right: 22px;
  top: 0;
}

.inline-cta p {
  color: #d4deec;
  line-height: 1.7;
  margin: 0;
}

.inline-cta button {
  background: linear-gradient(135deg, #087fa8, #09d5ff);
  border: 0;
  border-radius: 12px;
  color: #ffffff;
  cursor: pointer;
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  padding: 14px 20px;
  transition:
    background 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.inline-cta button:hover,
.inline-cta button:focus-visible {
  background: linear-gradient(135deg, #0a91bd, #35ddff);
  box-shadow:
    0 0 28px rgba(11, 188, 255, 0.28),
    0 14px 30px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}

.compact-grid,
.guideline-list,
.doc-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.compact-grid span,
.guideline-list span,
.doc-strip span {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #d4deec;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 12px 14px;
}

.guideline-list span {
  border-color: rgba(9, 213, 255, 0.24);
}

.about-callout {
  background:
    radial-gradient(circle at 100% 8%, rgba(11, 188, 255, 0.13), transparent 38%),
    linear-gradient(145deg, rgba(9, 19, 37, 0.88), rgba(7, 13, 28, 0.76));
  border: 1px solid rgba(9, 213, 255, 0.26);
  border-radius: 18px;
  box-shadow:
    inset 0 0 36px rgba(9, 213, 255, 0.05),
    0 18px 46px rgba(0, 0, 0, 0.26);
  margin-top: 24px;
  padding: 28px;
  position: relative;
}

.about-callout::before {
  background: linear-gradient(90deg, rgba(9, 213, 255, 0.25), #09d5ff, rgba(9, 213, 255, 0.25));
  content: '';
  height: 2px;
  left: 22px;
  opacity: 0.66;
  position: absolute;
  right: 22px;
  top: 0;
}

.about-callout span {
  color: #09d5ff;
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.about-callout p {
  color: #d4deec;
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
  max-width: 980px;
}

.theory-callout {
  margin-top: 30px;
  max-width: 980px;
}

.theory-layout {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  margin-top: 8px;
}

.theory-copy .section-lead {
  max-width: none;
}

.theory-figure,
.workflow-showcase,
.application-showcase {
  margin: 0;
}

.theory-figure {
  align-self: start;
  margin-top: 32px;
}

.theory-figure img {
  display: block;
  filter: drop-shadow(0 28px 58px rgba(0, 0, 0, 0.32));
  height: auto;
  width: 100%;
}

.theory-figure figcaption,
.workflow-showcase figcaption,
.application-showcase figcaption {
  color: #b8c4d6;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.7;
}

.theory-figure figcaption {
  margin-top: 14px;
  padding: 0 8px;
}

.workflow-showcase,
.application-showcase {
  margin-top: 34px;
}

.workflow-intro {
  color: #d4deec;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.75;
  margin: 26px 0 0;
  max-width: 820px;
}

.workflow-showcase img,
.application-showcase img {
  display: block;
  filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.34));
  height: auto;
  width: 100%;
}

.workflow-showcase figcaption,
.application-showcase figcaption {
  background: linear-gradient(135deg, rgba(240, 20, 85, 0.12), rgba(11, 188, 255, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.22);
  color: #d4deec;
  margin-top: 24px;
  padding: 22px 24px;
}

.results-dashboard {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 1fr);
  margin-top: 34px;
}

.result-panel,
.result-feature-grid article,
.result-metrics-note,
.result-validation-card {
  background: rgba(9, 19, 37, 0.76);
  border: 1px solid rgba(9, 213, 255, 0.22);
  border-radius: 18px;
  box-shadow:
    inset 0 0 36px rgba(9, 213, 255, 0.04),
    0 24px 62px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.result-panel {
  min-height: 338px;
  padding: 18px;
}

.result-panel-heading {
  align-items: center;
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}

.result-panel-heading h3 {
  color: #ffffff;
  font-size: 1.05rem;
  margin: 0;
}

.result-icon {
  align-items: center;
  border: 1px solid rgba(9, 213, 255, 0.62);
  border-radius: 50%;
  color: #09d5ff;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.result-icon svg {
  font-size: 1.35rem;
}

.result-panel img {
  border-radius: 14px;
  display: block;
  height: 300px;
  object-fit: cover;
  width: 100%;
}

.result-profile-panel img {
  background: rgba(3, 10, 24, 0.66);
  object-fit: contain;
  object-position: center;
}

.result-trajectory-panel img {
  object-position: center;
}

.result-feature-grid {
  display: grid;
  gap: 14px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.result-feature-grid article {
  align-items: center;
  display: grid;
  gap: 6px 16px;
  grid-template-columns: auto minmax(0, 1fr);
  padding: 18px 20px;
}

.result-feature-icon {
  align-items: center;
  border: 1px solid rgba(9, 213, 255, 0.62);
  border-radius: 50%;
  color: #09d5ff;
  display: inline-flex;
  grid-row: 1 / span 2;
  height: 52px;
  justify-content: center;
  width: 52px;
}

.result-feature-icon svg {
  font-size: 1.7rem;
}

.result-feature-grid strong {
  color: #ffffff;
  display: block;
  font-size: 0.98rem;
  line-height: 1.35;
  margin-bottom: 6px;
}

.result-feature-grid p {
  color: #aeb9cb;
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
}

.result-metrics-note {
  grid-column: 1 / -1;
  padding: 22px 24px;
}

.result-metrics-note span {
  color: #09d5ff;
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.result-metrics-note p {
  color: #b8c4d6;
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
  max-width: 980px;
}

.result-validation-card {
  grid-column: 1 / -1;
  padding: 24px;
}

.result-validation-card span {
  color: #09d5ff;
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.result-validation-card h3 {
  color: #ffffff;
  font-size: 1.15rem;
  margin: 0 0 10px;
}

.result-validation-card p {
  color: #b8c4d6;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
  max-width: 820px;
}

.result-validation-card p + p {
  margin-top: 14px;
}

.result-validation-card a {
  color: #09d5ff;
  font-weight: 800;
  margin-left: 8px;
  text-decoration: none;
  transition: color 0.18s ease, text-shadow 0.18s ease;
}

.result-validation-card a:hover,
.result-validation-card a:focus-visible {
  color: #48e4ff;
  text-shadow: 0 0 18px rgba(9, 213, 255, 0.42);
}

.publication-showcase {
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.publication-card {
  background:
    radial-gradient(circle at 100% 8%, rgba(11, 188, 255, 0.15), transparent 38%),
    linear-gradient(145deg, rgba(9, 19, 37, 0.88), rgba(7, 13, 28, 0.76));
  border: 1px solid rgba(9, 213, 255, 0.32);
  border-radius: 18px;
  box-shadow:
    inset 0 0 36px rgba(9, 213, 255, 0.06),
    0 20px 52px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  min-height: 270px;
  overflow: hidden;
  padding: 28px;
  position: relative;
  text-decoration: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.publication-card::before {
  background: linear-gradient(90deg, rgba(9, 213, 255, 0.25), #09d5ff, rgba(9, 213, 255, 0.25));
  content: '';
  height: 2px;
  left: 24px;
  opacity: 0.78;
  position: absolute;
  right: 24px;
  top: 0;
}

.publication-card:nth-child(3)::before {
  background: linear-gradient(90deg, rgba(240, 20, 85, 0.18), #f01455, rgba(240, 20, 85, 0.18));
}

.publication-card:hover {
  border-color: rgba(9, 213, 255, 0.62);
  box-shadow:
    inset 0 0 42px rgba(9, 213, 255, 0.08),
    0 34px 82px rgba(0, 0, 0, 0.42),
    0 0 34px rgba(9, 213, 255, 0.12);
  transform: translateY(-4px);
}

.publication-year {
  align-self: flex-start;
  background: rgba(9, 213, 255, 0.07);
  border: 1px solid rgba(9, 213, 255, 0.34);
  border-radius: 10px;
  color: #09d5ff;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 9px 13px;
}

.publication-type {
  color: #09d5ff;
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  margin-top: 18px;
  text-transform: uppercase;
}

.publication-card h3 {
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.32;
  margin: 14px 0 0;
}

.publication-card p {
  color: #b8c4d6;
  font-size: 0.94rem;
  line-height: 1.75;
  margin: 22px 0 0;
}

.publication-note {
  color: #aeb9cb;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 28px;
  text-align: center;
}

.contact-section {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  margin-bottom: 88px;
  padding: 56px;
}

.contact-copy p {
  margin-top: 18px;
  max-width: 660px;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(9, 213, 255, 0.2);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 26px;
  padding: 22px;
}

.contact-info-card strong {
  color: #ffffff;
  font-size: 1.02rem;
}

.contact-info-card span,
.contact-info-card a {
  color: #aeb9cb;
  font-size: 0.92rem;
  line-height: 1.6;
  text-decoration: none;
}

.contact-info-card a {
  color: #09d5ff;
  font-weight: 700;
}

.contact-form {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(9, 213, 255, 0.2);
  border-radius: 16px;
  display: grid;
  gap: 14px;
  padding: 22px;
}

.contact-form label {
  color: #d4deec;
  display: grid;
  font-size: 0.82rem;
  font-weight: 800;
  gap: 8px;
}

.contact-form input,
.contact-form textarea {
  background: rgba(7, 12, 25, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  box-sizing: border-box;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  outline: none;
  padding: 13px 14px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  width: 100%;
}

.contact-form textarea {
  min-height: 138px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(9, 213, 255, 0.72);
  box-shadow: 0 0 0 3px rgba(9, 213, 255, 0.12);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #738096;
}

.contact-form button {
  background: linear-gradient(135deg, #087fa8, #09d5ff);
  border: 0;
  border-radius: 12px;
  color: #ffffff;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  justify-self: start;
  padding: 14px 22px;
  transition:
    background 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  background: linear-gradient(135deg, #0a91bd, #35ddff);
  box-shadow:
    0 0 28px rgba(11, 188, 255, 0.28),
    0 14px 30px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.contact-map {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  grid-column: 1 / -1;
  min-height: 360px;
  overflow: hidden;
}

.contact-map iframe {
  border: 0;
  display: block;
  filter: saturate(0.92) contrast(1.05);
  height: 360px;
  width: 100%;
}

@media (max-width: 900px) {
  .landing-section {
    padding: 60px 20px;
    scroll-margin-top: 96px;
  }

  .section-heading h2,
  .contact-section h2 {
    font-size: 2.25rem;
    line-height: 1.12;
  }

  .section-heading span,
  .section-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
  }

  .section-lead {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .research-grid,
  .faq-grid,
  .workflow-strip,
  .io-grid,
  .case-grid,
  .publication-list {
    grid-template-columns: 1fr;
  }

  .publication-showcase {
    grid-template-columns: 1fr;
  }

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

  .theory-figure {
    margin-top: 8px;
    max-width: 520px;
  }

  .results-dashboard {
    grid-template-columns: 1fr;
  }

  .result-feature-grid {
    grid-template-columns: 1fr;
  }

  .result-panel img {
    height: auto;
    max-height: 360px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }

  .inline-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .landing-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-heading h2,
  .contact-section h2 {
    font-size: 2rem;
  }

  .research-grid article,
  .faq-grid article,
  .io-grid article,
  .publication-card,
  .about-callout {
    padding: 22px;
  }

  .contact-section {
    padding: 24px 16px;
  }
}


/* components/LearnMore.css */
.learn-more {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.plots-box {
  display: flex;
  flex-direction: column;
  max-height: 80%;
  align-items: center;
  justify-content: center;
  gap: 3vh;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 19, 33, 0.78);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
  width: min(1180px, calc(100% - 48px));
  margin: 32px auto 56px;
  padding: 5vh 0;
  border-radius: 18px;
}

.plots-box p {
  max-width: 90%;
  text-align: center;
  color: #ffffff;
  font-size: 2vh;
  font-weight: 500;
  margin: 0 0 3vh;
}

.plot-images {
  display: flex;
  gap: 5vh;
  justify-content: center;
  margin-top: 0;
}

.plot-image {
  height: auto;
  width: 30%;
}


/* components/LoggedInHeroSection.css */
.logged-in-hero {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-height: 100vh;
  padding: 32px 0 56px;
  color: #f8fbff;
}

.logged-in-hero.embedded-dashboard {
  width: 100%;
  min-height: auto;
  padding: 0;
}

.full-width-box,
.bar-chart-box,
.pie-chart-box {
  border: 1px solid rgba(74, 213, 255, 0.16);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(4, 18, 33, 0.86), rgba(8, 13, 28, 0.9));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.full-width-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 2rem;
}

.dashboard-heading {
  width: min(760px, 100%);
  margin-bottom: 1.3rem;
}

.dashboard-heading span,
.chart-title span {
  color: #09d5ff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-heading h2 {
  margin: 0.45rem 0 0;
  color: #f8fbff;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 900;
  line-height: 1.1;
}

.dashboard-heading p {
  margin: 0.6rem 0 0;
  color: #b8c4d6;
  font-size: 1rem;
  line-height: 1.6;
}

.input-section {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
  width: min(760px, 100%);
}

.button {
  color: #ffffff;
  border: 1px solid rgba(9, 213, 255, 0.42);
  border-radius: 12px;
  background: linear-gradient(135deg, #087fa8, #09d5ff);
  box-shadow: 0 0 28px rgba(11, 188, 255, 0.22);
  padding: 0.9rem 1.2rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  cursor: pointer;
  min-height: 56px;
}

.button:hover {
  background: linear-gradient(135deg, #0a91bd, #35ddff);
}

.charts-box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.bar-chart-box,
.pie-chart-box {
  height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.4rem;
}

.chart-title {
  width: 100%;
  margin-bottom: 0.8rem;
}

.chart-title h3 {
  margin: 0.35rem 0 0;
  color: #f8fbff;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.chart-gap {
  display: none;
}

@media (max-width: 860px) {
  .charts-box,
  .input-section {
    grid-template-columns: 1fr;
  }
}


/* creators/Creators.css */
.box {
  display: flex;
  flex-direction: column;
  max-height: 80%;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(15, 19, 33, 0.78);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.box p {
  max-width: 90%;
  text-align: center;
  color: #ffffff;
  font-size: 2vh;
  font-weight: 500;
}


/* faq/Faq.css */
.q,
.a {
  font-family: 'Poppins', sans-serif;
  font-size: 2vh;
}

.q {
  font-weight: bold;
}


/* guest/GuestSimulation.css */
.guest-page {
  min-height: 100vh;
  color: #f8fbff;
}

.guest-main {
  width: min(1600px, calc(100% - 48px));
  margin: 34px auto 64px;
}

.guest-intro {
  max-width: 820px;
  margin-bottom: 1.5rem;
}

.guest-intro > span,
.guest-panel-heading span,
.guest-message-panel > span {
  color: #09d5ff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.guest-intro h1,
.guest-message-panel h1,
.guest-message-panel h2 {
  margin: 0.45rem 0 0.7rem;
  color: #ffffff;
  line-height: 1.25;
}

.guest-intro h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.guest-intro p,
.guest-message-panel p {
  color: #b8c4d6;
  line-height: 1.75;
}

.guest-form-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.62fr) minmax(620px, 1.38fr);
  align-items: start;
  gap: 1.2rem;
}

.guest-input-panel,
.guest-membrane-panel,
.guest-message-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(15, 19, 33, 0.82);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.guest-input-panel,
.guest-membrane-panel {
  padding: 1.25rem;
}

.guest-panel-heading h2 {
  margin: 0.35rem 0 1rem;
  font-size: 1.25rem;
}

.guest-input-panel label {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
  color: #dbe4f1;
  font-size: 0.84rem;
  font-weight: 700;
}

.guest-input-panel label em {
  color: #8795aa;
  font-style: normal;
  font-weight: 500;
}

.guest-input-panel input,
.guest-input-panel textarea {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(8, 12, 25, 0.88);
  color: #ffffff;
  font: inherit;
  font-weight: 500;
  padding: 0.78rem 0.85rem;
  outline: none;
}

.guest-input-panel textarea {
  min-height: 112px;
  resize: vertical;
}

.guest-input-panel input:focus,
.guest-input-panel textarea:focus {
  border-color: rgba(9, 213, 255, 0.72);
  box-shadow: 0 0 0 3px rgba(9, 213, 255, 0.1);
}

.guest-input-panel small,
.guest-message-panel small {
  color: #93a2b8;
  line-height: 1.55;
}

.diptool-captcha {
  min-height: 65px;
  margin-top: 1rem;
}

.guest-submit-bar {
  position: sticky;
  bottom: 1rem;
  display: flex;
  justify-content: flex-end;
  margin-top: 1.25rem;
  padding-top: 1rem;
  background: linear-gradient(180deg, rgba(15, 19, 33, 0), rgba(15, 19, 33, 0.94) 44%);
}

.guest-submit-bar button,
.guest-downloads button {
  border: 1px solid rgba(9, 213, 255, 0.42);
  border-radius: 10px;
  background: linear-gradient(135deg, #087fa8, #09d5ff);
  box-shadow: 0 0 28px rgba(11, 188, 255, 0.2);
  color: #ffffff;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  padding: 0.85rem 1.1rem;
}

.guest-submit-bar button:hover,
.guest-downloads button:hover {
  background: linear-gradient(135deg, #0a91bd, #35ddff);
}

.guest-submit-bar button:disabled,
.guest-downloads button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.guest-state-main {
  display: grid;
  min-height: calc(100vh - 110px);
  place-items: center;
  padding: 2rem 1rem;
}

.guest-message-panel {
  width: min(720px, calc(100% - 32px));
  padding: 2rem;
}

.guest-results-panel {
  display: grid;
  gap: 0.8rem;
}

.guest-status {
  width: fit-content;
  border: 1px solid rgba(9, 213, 255, 0.34);
  border-radius: 8px;
  background: rgba(9, 213, 255, 0.08);
  color: #7deaff;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.55rem 0.8rem;
}

.guest-status-completed {
  border-color: rgba(89, 224, 169, 0.4);
  background: rgba(89, 224, 169, 0.1);
  color: #8cf0c6;
}

.guest-status-failed,
.guest-error {
  color: #ff819b !important;
}

.guest-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.account-action-panel {
  display: grid;
  gap: 0.8rem;
}

.account-action-form {
  display: grid;
  gap: 1rem;
}

.account-action-form label {
  display: grid;
  gap: 0.45rem;
  color: #dbe4f1;
  font-size: 0.84rem;
  font-weight: 700;
}

.account-action-form input {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(8, 12, 25, 0.88);
  color: #ffffff;
  font: inherit;
  padding: 0.8rem;
}

.account-action-form button,
.account-action-link {
  width: fit-content;
  border: 1px solid rgba(9, 213, 255, 0.42);
  border-radius: 10px;
  background: linear-gradient(135deg, #087fa8, #09d5ff);
  color: #ffffff;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  padding: 0.8rem 1rem;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .guest-form-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .guest-main {
    width: min(100% - 24px, 1600px);
  }

  .guest-input-panel,
  .guest-membrane-panel,
  .guest-message-panel {
    padding: 1rem;
  }
}


/* login/Login.css */
.button {
  padding: 1rem;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
}

.button {
  margin-top: 1rem;
  color: #ffffff;
  background: linear-gradient(135deg, #087fa8, #09d5ff);
}

.button:hover {
  background: linear-gradient(135deg, #0a91bd, #35ddff);
  color: #ffffff;
}

.button:disabled {
  cursor: default;
  opacity: 0.75;
}

.auth-card {
  background: rgba(15, 19, 33, 0.84) !important;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.auth-card .logo svg {
  height: 64px;
}

.auth-card .MuiInputBase-input {
  color: #f8fbff !important;
  font-family: 'Poppins', sans-serif !important;
}

.auth-card .MuiInputLabel-root {
  color: #aeb9cb !important;
  font-family: 'Poppins', sans-serif !important;
}

.auth-card .MuiInput-underline:before {
  border-bottom-color: rgba(255, 255, 255, 0.24) !important;
}

.auth-card .MuiInput-underline:after {
  border-bottom-color: #0bd7ff !important;
}

.log {
  color: #aeb9cb;
  margin-top: 1rem;
}

.link {
  color: #09d5ff;
  text-decoration: none;
  font-weight: 500;
}

.link:hover {
  text-decoration: underline;
  cursor: pointer;
}


/* simulation/elements/MembraneBuilder.css */
.membrane-builder {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  color: #f8fbff;
}

.membrane-builder-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.membrane-eyebrow {
  color: #09d5ff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.membrane-title,
.membrane-section-title {
  color: #f8fbff;
  font-weight: 700;
}

.membrane-mode-toggle {
  display: inline-flex;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.membrane-mode-toggle button {
  border: 0;
  border-radius: 10px;
  padding: 0.65rem 0.9rem;
  color: #b8c4d6;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.membrane-mode-toggle button.active {
  color: #ffffff;
  background: linear-gradient(135deg, #f01455, #0bbcff);
  box-shadow: 0 0 26px rgba(11, 188, 255, 0.22);
}

.membrane-parameters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.9rem;
}

.membrane-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.9fr);
  gap: 1rem;
}

.membrane-grid-random {
  grid-template-columns: minmax(0, 1fr);
}

.membrane-grid-raft {
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}

.membrane-section,
.membrane-pie-card,
.membrane-schematic {
  min-width: 0;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(15, 19, 33, 0.78);
}

.membrane-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(118px, 140px) 40px;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.membrane-row > * {
  min-width: 0;
}

.membrane-remove-button {
  color: #f8fbff !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  height: 40px !important;
  width: 40px !important;
}

.membrane-add-button {
  margin-top: 0.9rem !important;
  color: #09d5ff !important;
  border: 1px solid rgba(9, 213, 255, 0.35) !important;
  border-radius: 12px !important;
  font-family: 'Poppins', sans-serif !important;
  text-transform: none !important;
}

.membrane-pie-card {
  min-height: 290px;
}

.membrane-pie-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.85rem;
  color: #b8c4d6;
  font-size: 0.78rem;
}

.membrane-pie-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.membrane-pie-legend i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
}

.membrane-schematic {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #b8c4d6;
}

.membrane-schematic-figure {
  align-items: center;
  background: transparent;
  display: flex;
  flex: 0 0 260px;
  justify-content: center;
  min-height: 158px;
}

.membrane-schematic img {
  display: block;
  height: auto;
  max-height: 172px;
  max-width: 260px;
  object-fit: contain;
}

.membrane-schematic span {
  color: #d4deec;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.55;
}

.membrane-raft-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.85rem;
  padding: 1rem;
  border: 1px solid rgba(9, 213, 255, 0.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at 0 0, rgba(240, 20, 85, 0.12), transparent 34%),
    radial-gradient(circle at 100% 0, rgba(11, 188, 255, 0.13), transparent 38%),
    rgba(15, 19, 33, 0.78);
}

.membrane-raft-preview > span {
  grid-column: 1 / -1;
  color: #09d5ff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.membrane-raft-preview div {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.membrane-raft-preview strong {
  color: #ffffff;
  font-size: 1rem;
}

.membrane-raft-preview small {
  color: #aeb9cb;
  font-size: 0.74rem;
  line-height: 1.4;
}

.membrane-raft-preview.warning {
  border-color: rgba(255, 209, 102, 0.42);
}

.membrane-raft-preview.warning > span {
  color: #ffd166;
}

@media (max-width: 1000px) {
  .membrane-grid,
  .membrane-grid-raft {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .membrane-row {
    grid-template-columns: 1fr;
  }

  .membrane-schematic {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* simulation/ketcher/Ketcher.css */
.ketcher-container {
  display: grid;
  grid-template-columns: minmax(720px, 1.5fr) minmax(420px, 0.9fr);
  align-items: stretch;
  gap: 1.2rem;
  width: min(1680px, calc(100% - 48px));
  margin: 32px auto 56px;
  color: #f8fbff;
}

.a {
  font-weight: 700;
}

.left,
.right {
  min-width: 0;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(15, 19, 33, 0.78);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.left {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  overflow: visible;
}

.right {
  position: relative;
}

.ketcher-panel-heading {
  display: block;
}

.ketcher-panel-heading span {
  color: #09d5ff;
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.ketcher-panel-heading h1 {
  color: #f8fbff;
  font-size: 1.3rem;
  line-height: 1.35;
  margin: 0;
}

.ketcher-format-note {
  align-items: center;
  background: rgba(9, 213, 255, 0.06);
  border: 1px solid rgba(9, 213, 255, 0.16);
  border-radius: 10px;
  color: #b8c4d6;
  display: flex;
  font-size: 0.78rem;
  gap: 0.6rem;
  line-height: 1.55;
  padding: 0.65rem 0.8rem;
}

.ketcher-format-note svg {
  color: #09d5ff;
  flex: 0 0 auto;
  font-size: 1.05rem;
}

.smiles-output {
  color: white;
}

.editor {
  width: 100%;
  height: clamp(620px, calc(100vh - 180px), 760px);
  min-height: 620px;
  overflow: visible;
  border-radius: 14px;
  position: relative;
  z-index: 10;
}

.editor > div {
  height: 100%;
  border-radius: 14px;
}

.calc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.25rem;
  border: 1px solid rgba(9, 213, 255, 0.42);
  border-radius: 12px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #087fa8, #09d5ff);
  box-shadow: 0 0 28px rgba(11, 188, 255, 0.28);
}

.calc-button:hover {
  background: linear-gradient(135deg, #0a91bd, #35ddff);
}

.calc-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.simulation-action-bar {
  position: sticky;
  bottom: 1rem;
  z-index: 5;
  display: flex;
  justify-content: flex-end;
  margin-top: 1.25rem;
  padding: 1rem 0 0.1rem;
  background: linear-gradient(180deg, rgba(15, 19, 33, 0), rgba(15, 19, 33, 0.92) 42%);
  backdrop-filter: blur(10px);
}

@media (max-width: 1280px) {
  .ketcher-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .ketcher-container {
    margin-top: 18px;
    width: min(100% - 24px, 1680px);
  }

  .left,
  .right {
    padding: 0.85rem;
  }

  .editor {
    height: 620px;
  }
}

@media (max-width: 520px) {
  .left {
    overflow: hidden;
  }

  .editor {
    overflow: auto;
    overscroll-behavior: contain;
  }

  .editor > div {
    min-width: 450px;
  }
}


/* simulation/manual/ManualInput.css */


/* simulation/Simulation.css */
.container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 75vh;
  padding: 1rem;
  box-sizing: border-box;
  width: min(1180px, calc(100% - 48px));
}

.title {
  color: #f8fbff;
  font-size: 3.4rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.12;
  margin-bottom: 2.5rem;
  max-width: 920px;
}

.button-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.15rem;
  width: 100%;
}

.simulation-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 220px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  color: #ffffff;
  background: rgba(15, 19, 33, 0.78);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.simulation-button span {
  font-size: 1.35rem;
  font-weight: 800;
}

.simulation-button small {
  color: #b8c4d6;
  font-size: 0.95rem;
  line-height: 1.55;
}

.simulation-button:hover {
  transform: translateY(-3px);
  border-color: rgba(9, 213, 255, 0.42);
  background: rgba(18, 24, 42, 0.92);
  color: #ffffff;
}

@media (max-width: 700px) {
  .container {
    justify-content: flex-start;
    padding: 3rem 0 2rem;
    width: min(100% - 32px, 1180px);
  }

  .title {
    font-size: 2.25rem;
  }

  .simulation-button {
    min-height: 170px;
  }
}


/* waves/Waves.css */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 12%, rgba(4, 192, 255, 0.2), transparent 30%),
        radial-gradient(circle at 14% 92%, rgba(240, 20, 85, 0.07), transparent 19%),
        linear-gradient(135deg, #070914 0%, #07111e 45%, #061827 72%, #080a14 100%);
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.08;
    filter: saturate(0.9) contrast(0.9);
}

.video-container::after {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    content: "";
    inset: 0;
    position: absolute;
}

