:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #07111f;
  color: #f7fbff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  position: relative;
  background: radial-gradient(circle at top left, rgba(79, 140, 255, .24), transparent 34rem), #07111f;
  transition: background-color .7s ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: #000;
  opacity: 0;
  transition: opacity .75s ease;
}

body.news-focus-mode::before {
  opacity: 1;
}
a { color: inherit; }
code { color: #a9c9ff; }

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

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

.floating-header {
  width: min(1440px, calc(100% - 32px));
  margin: 24px auto 0;
  min-height: 112px;
  padding: 18px clamp(22px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  position: sticky;
  top: 16px;
  z-index: 50;
  color: #111318;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(7, 17, 31, .08);
  border-radius: 32px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .18);
  backdrop-filter: blur(18px);
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  text-decoration: none;
}

.logo-mark img {
  display: block;
  width: clamp(86px, 11vw, 142px);
  height: auto;
}

.floating-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
}

.nav-item {
  position: relative;
  display: inline-flex;
}

.nav-trigger,
.login-link {
  font: inherit;
  font-weight: 800;
  font-size: .98rem;
  line-height: 1;
  color: #111318;
  text-decoration: none;
}


.nav-link {
  white-space: nowrap;
}

.nav-trigger {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 14px 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}


.dropdown-menu {
  min-width: 150px;
  padding: 10px 0;
  display: grid;
  gap: 8px;
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%) translateY(10px) scale(.98);
  color: #111318;
  background: rgba(255, 255, 255, .98);
  border: 1px solid rgba(7, 17, 31, .08);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .16);
  transform-origin: top center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, .98);
  border-left: 1px solid rgba(7, 17, 31, .08);
  border-top: 1px solid rgba(7, 17, 31, .08);
  transform: translateX(-50%) rotate(45deg);
}

.dropdown-menu a {
  padding: 2px 18px;
  color: #111318;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  color: #00cbdc;
  outline: none;
}

.dropdown.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

.login-link {
  justify-self: end;
  padding: 14px 0;
}

.login-link:hover,
.nav-trigger:hover,
.nav-link:hover,
.login-link:focus-visible,
.nav-trigger:focus-visible,
.nav-link:focus-visible {
  color: #00cbdc;
  outline: none;
}

.site-footer,
.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.shell {
  flex: 1;
  padding: 72px 0 56px;
}

.hero {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  box-shadow: 0 20px 80px rgba(0,0,0,.24);
  border-radius: 28px;
  padding: clamp(28px, 6vw, 72px);
  backdrop-filter: blur(18px);
}

.eyebrow {
  margin: 0 0 16px;
  color: #8bb6ff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
}

h1 {
  margin: 0;
  font-size: clamp(2.25rem, 7vw, 5.8rem);
  line-height: .94;
  letter-spacing: -.07em;
  max-width: 980px;
}

.lede {
  color: #cfdbec;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  max-width: 900px;
  line-height: 1.62;
  margin: 28px 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0;
}

button,
.button-link {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  font-size: 1rem;
  background: #f7fbff;
  color: #07111f;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

button.secondary {
  background: rgba(255,255,255,.12);
  color: #f7fbff;
  border: 1px solid rgba(255,255,255,.16);
}

pre {
  white-space: pre-wrap;
  overflow: auto;
  background: rgba(0,0,0,.32);
  color: #d8e7ff;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.1);
  padding: 18px;
  min-height: 74px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

article {
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.045);
  border-radius: 22px;
  padding: 24px;
  transition: background .65s ease, border-color .65s ease, box-shadow .65s ease, opacity .65s ease, transform .65s ease;
}

article h2 { margin: 0 0 8px; }
article p { margin: 0; color: #b7c7dc; line-height: 1.55; }

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 28px 0 36px;
  color: #b7c7dc;
  transition: color .65s ease, border-color .65s ease;
}

.site-footer strong { color: #f7fbff; }
.site-footer p { margin: 8px 0 0; max-width: 560px; line-height: 1.55; }

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #b7c7dc;
  text-decoration: none;
  font-weight: 700;
}

.footer-links a:hover { color: #f7fbff; }

@media (max-width: 860px) {
  .floating-header {
    grid-template-columns: 1fr auto;
    min-height: auto;
    padding: 18px 20px;
    border-radius: 26px;
  }

  .floating-nav {
    grid-column: 1 / -1;
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .logo-mark img { width: 88px; }

  .dropdown-menu {
    left: 0;
    transform: translateY(8px) scale(.98);
  }

  .dropdown-menu::before {
    left: 28px;
    transform: rotate(45deg);
  }

  .dropdown.is-open .dropdown-menu {
    transform: translateY(0) scale(1);
  }

  .shell { padding-top: 36px; }
}

@media (max-width: 560px) {
  .floating-header {
    width: min(100% - 20px, 520px);
    margin-top: 10px;
    top: 10px;
  }

  .floating-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    min-width: 0;
    width: 100%;
    max-height: 0;
    margin: 0;
    padding: 0 0 0 14px;
    overflow: hidden;
    background: transparent;
    border: 0;
    box-shadow: none;
    transition: opacity .18s ease, max-height .18s ease, padding .18s ease, visibility .18s ease;
  }

  .dropdown.is-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: 240px;
    margin: 0 0 4px;
    padding: 2px 0 8px 14px;
  }

  .dropdown-menu::before {
    display: none;
  }

  .dropdown-menu a { padding: 3px 0; }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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


/* App detail pages */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #9eb4cf;
  font-weight: 800;
  text-decoration: none;
}

.breadcrumb:hover { color: #f7fbff; }

.app-hero {
  border: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  box-shadow: 0 20px 80px rgba(0,0,0,.24);
  border-radius: 28px;
  padding: clamp(28px, 6vw, 72px);
  backdrop-filter: blur(18px);
  transition: background .65s ease, box-shadow .65s ease, backdrop-filter .65s ease, opacity .65s ease, transform .65s ease;
}

.app-hero h1 {
  max-width: none;
  margin-inline: auto;
  text-align: center;
}


.app-logo-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto 32px;
  padding: 0;
  border: 0;
  background: transparent;
}

.app-page-logo {
  display: block;
  width: clamp(260px, 36vw, 430px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: clamp(22px, 3vw, 40px);
  overflow: hidden;
  box-shadow: 0 20px 70px rgba(0, 0, 0, .22);
}

.app-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: #9beef6;
  background: rgba(0,203,220,.10);
  font-weight: 900;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 24px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.13);
  color: #d8e7ff;
  font-weight: 800;
}

.app-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  margin-top: 18px;
}

.app-panel {
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.045);
  border-radius: 22px;
  padding: 24px;
}

.app-panel h2,
.app-panel h3 {
  margin: 0 0 10px;
}

.app-panel p,
.app-panel li {
  color: #b7c7dc;
  line-height: 1.6;
}

.app-panel ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

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

.feature-list li {
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  background: rgba(0,0,0,.18);
}

.active-menu-item {
  color: #00cbdc !important;
}

@media (max-width: 820px) {
  .app-grid { grid-template-columns: 1fr; }
}

/* Authentication modal */
body.auth-modal-open {
  overflow: hidden;
}

body.auth-modal-open .page {
  filter: blur(9px);
  transform: scale(.992);
  pointer-events: none;
  user-select: none;
}

.page {
  transition: filter .2s ease, transform .2s ease;
}

.auth-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(3, 8, 16, .52);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.auth-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.auth-modal {
  position: relative;
  width: min(430px, 100%);
  padding: clamp(26px, 5vw, 38px);
  color: #f7fbff;
  background: linear-gradient(145deg, rgba(15, 30, 52, .98), rgba(7, 17, 31, .98));
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 30px;
  box-shadow: 0 34px 110px rgba(0, 0, 0, .46);
  transform: translateY(16px) scale(.97);
  transition: transform .22s ease;
}

.auth-overlay.is-open .auth-modal {
  transform: translateY(0) scale(1);
}

.auth-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #f7fbff;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .12);
  font-size: 1.55rem;
  line-height: 1;
}

.auth-close:hover,
.auth-close:focus-visible {
  background: rgba(255, 255, 255, .16);
  outline: none;
}

.auth-eyebrow {
  margin: 0 0 10px;
  color: #9beef6;
  font-weight: 900;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.auth-modal h2 {
  margin: 0 0 24px;
  max-width: 330px;
  font-size: clamp(1.85rem, 6vw, 2.55rem);
  line-height: 1;
  letter-spacing: -.05em;
}

.auth-form {
  display: grid;
  gap: 10px;
}

.auth-form label {
  color: #d8e7ff;
  font-weight: 800;
  font-size: .92rem;
}

.auth-form input {
  width: 100%;
  min-height: 50px;
  margin: 0 0 8px;
  padding: 0 16px;
  color: #f7fbff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  font: inherit;
  outline: none;
}

.auth-form input::placeholder {
  color: rgba(216, 231, 255, .62);
}

.auth-form input:focus {
  border-color: #00cbdc;
  box-shadow: 0 0 0 4px rgba(0, 203, 220, .16);
}

.auth-actions {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.auth-action-button {
  width: 100%;
  min-height: 52px;
  border-radius: 16px;
  background: #f7fbff;
  color: #07111f;
}

.google-auth-button {
  background: rgba(255, 255, 255, .12);
  color: #f7fbff;
  border: 1px solid rgba(255, 255, 255, .18);
}

.auth-action-button:hover,
.auth-action-button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.auth-status {
  min-height: 22px;
  margin: 18px 0 0;
  color: #d8e7ff;
  font-weight: 700;
  line-height: 1.45;
}

.auth-status.error {
  color: #ffb4b4;
}

.auth-status.success {
  color: #9df3c4;
}

@media (max-width: 560px) {
  .auth-overlay {
    padding: 16px;
  }

  .auth-modal {
    border-radius: 24px;
  }
}

/* Account dropdown and account pages */
.is-hidden {
  display: none !important;
}

.account-menu {
  justify-self: end;
  position: relative;
  display: inline-flex;
  align-items: center;
}

.account-menu-button {
  appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 14px 0;
  cursor: pointer;
  max-width: 210px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-menu-button:hover,
.account-menu-button:focus-visible,
.account-menu.is-open .account-menu-button {
  color: #00cbdc;
  outline: none;
}

.account-dropdown {
  min-width: 168px;
  padding: 10px;
  display: grid;
  gap: 6px;
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  color: #111318;
  background: rgba(255, 255, 255, .98);
  border: 1px solid rgba(7, 17, 31, .08);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .16);
  transform-origin: top center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px) scale(.98);
  transform-origin: top right;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 80;
}

.account-menu.is-open .account-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.account-dropdown[hidden] {
  display: none;
}

.account-dropdown::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 24px;
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, .98);
  border-left: 1px solid rgba(7, 17, 31, .08);
  border-top: 1px solid rgba(7, 17, 31, .08);
  transform: rotate(45deg);
}

.account-dropdown a {
  position: relative;
  padding: 10px 12px;
  color: #111318;
  text-decoration: none;
  font-weight: 800;
  border-radius: 12px;
}

.account-dropdown a:hover,
.account-dropdown a:focus-visible {
  color: #00aebd;
  background: rgba(0, 203, 220, .10);
  outline: none;
}

.account-content {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.account-card {
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.045);
  border-radius: 22px;
  padding: clamp(24px, 5vw, 36px);
}

.account-card h2 {
  margin: 0 0 10px;
}

.account-card p {
  color: #b7c7dc;
  line-height: 1.55;
}

.profile-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
}

.profile-avatar {
  width: 82px;
  height: 82px;
  display: inline-grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(0, 203, 220, .16);
  border: 1px solid rgba(155, 238, 246, .28);
  color: #9beef6;
  font-weight: 900;
  font-size: 1.8rem;
}

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

.profile-details div {
  padding: 16px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: rgba(0,0,0,.16);
  overflow: hidden;
}

.profile-details dt {
  margin: 0 0 6px;
  color: #9beef6;
  font-weight: 900;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.profile-details dd {
  margin: 0;
  color: #d8e7ff;
  overflow-wrap: anywhere;
}

.profile-card .button-link {
  grid-column: 1 / -1;
}

.settings-summary {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.settings-form {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.settings-form label {
  color: #d8e7ff;
  font-weight: 800;
}

.settings-form input[type="text"] {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  color: #f7fbff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  font: inherit;
  outline: none;
}

.settings-form input[type="text"]:focus {
  border-color: #00cbdc;
  box-shadow: 0 0 0 4px rgba(0, 203, 220, .16);
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0 6px;
  cursor: pointer;
}

.checkbox-row input {
  width: 20px;
  height: 20px;
  accent-color: #00cbdc;
}

@media (max-width: 860px) {
  .account-menu {
    justify-self: end;
  }
}

@media (max-width: 560px) {
  .account-menu {
    align-self: start;
  }

  .account-dropdown {
    right: 0;
  }

  .profile-card,
  .profile-details {
    grid-template-columns: 1fr;
  }

  .settings-summary {
    flex-direction: column;
  }
}

/* App marketing copy and store buttons */
.app-description {
  max-width: 900px;
  margin: 26px auto 0;
  color: #cfdbec;
  font-size: clamp(1.02rem, 1.65vw, 1.2rem);
  line-height: 1.72;
}

.app-description p {
  margin: 0 0 18px;
}

.app-description p:last-child {
  margin-bottom: 0;
}

.app-description ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 22px;
}

.app-description li {
  color: #cfdbec;
  line-height: 1.65;
}

.app-description h2 {
  margin: 24px 0 12px;
  color: #f7fbff;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  letter-spacing: -.03em;
}

.store-buttons {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.store-button {
  width: 100%;
  text-align: center;
}

.store-button-disabled {
  color: rgba(247, 251, 255, .62);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  cursor: not-allowed;
}

.store-button-disabled:hover,
.store-button-disabled:focus-visible {
  transform: none;
  outline: none;
}

/* App release notes scroll panel */
.release-panel {
  overflow: hidden;
}

.release-scroll {
  height: 170px;
  margin-top: 14px;
  padding-right: 10px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(155, 238, 246, .52) rgba(255, 255, 255, .08);
}

.release-scroll::-webkit-scrollbar {
  width: 8px;
}

.release-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .08);
  border-radius: 999px;
}

.release-scroll::-webkit-scrollbar-thumb {
  background: rgba(155, 238, 246, .52);
  border-radius: 999px;
}

.release-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.release-list li {
  color: #d8e7ff;
  line-height: 1.55;
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.release-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.release-list strong {
  color: #f7fbff;
}


/* App news sections */
.app-news {
  width: min(900px, 100%);
  min-height: 82vh;
  margin: 48px auto 0;
  padding: clamp(58px, 12vh, 128px) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
  transition: color .65s ease, opacity .65s ease, transform .65s ease;
}

.app-news h2 {
  margin: 0 0 24px;
  color: #f7fbff;
  font-size: clamp(3.2rem, 11vw, 9rem);
  font-style: italic;
  font-weight: 900;
  line-height: .88;
  letter-spacing: -.08em;
  text-align: center;
}

.news-copy {
  display: grid;
  gap: 14px;
  max-width: 780px;
  margin: 0 auto;
  color: #cfdbec;
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.7;
  text-align: center;
}

.news-copy p {
  margin: 0;
}

body.news-focus-mode {
  background-color: #000;
}

body.news-focus-mode .app-hero,
body.news-focus-mode .app-panel {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

body.news-focus-mode .floating-header {
  color: #f7fbff;
  background: rgba(0, 0, 0, .76);
  border-color: rgba(255, 255, 255, .08);
  box-shadow: 0 18px 54px rgba(0, 0, 0, .34);
}

body.news-focus-mode .nav-trigger,
body.news-focus-mode .login-link {
  color: #f7fbff;
}

body.news-focus-mode .app-news {
  transform: translateY(-10px);
}

body.news-focus-mode .site-footer {
  border-top-color: rgba(255, 255, 255, .08);
  color: rgba(247, 251, 255, .68);
}

@media (max-width: 560px) {
  .app-news {
    min-height: 74vh;
    padding: 56px 0 82px;
  }
}

/* Clean sticky top bar with detached logo */
.floating-header {
  overflow: visible;
  isolation: isolate;
  z-index: 120;
}

/* Desktop: keep the white rounded bar itself sticky, centered, and opaque. */
@media (min-width: 861px) {
  .floating-header {
    --detached-logo-width: clamp(150px, 10vw, 190px);
    --detached-logo-gap: clamp(24px, 2.4vw, 42px);
    width: min(1256px, calc(100% - clamp(330px, 24vw, 470px)));
    min-height: 112px;
    margin: 24px auto 0;
    padding: 18px clamp(54px, 6vw, 96px);
    display: flex;
    grid-template-columns: none;
    justify-content: center;
    align-items: center;
    gap: clamp(34px, 3.6vw, 68px);
    position: sticky;
    top: 24px;
    color: #111318;
    background: #f7fbff;
    border: 1px solid rgba(7, 17, 31, .08);
    border-radius: 32px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .18);
    backdrop-filter: none;
  }

  .logo-mark {
    position: absolute;
    right: calc(100% + var(--detached-logo-gap));
    left: auto;
    top: 50%;
    width: var(--detached-logo-width);
    transform: translateY(-50%);
    z-index: 2;
  }

  .logo-mark img {
    width: 100%;
    max-width: none;
  }

  .floating-nav {
    flex: 0 0 auto;
    justify-content: center;
    gap: clamp(24px, 3vw, 54px);
  }

  .account-menu {
    flex: 0 0 auto;
    justify-self: auto;
  }

  .nav-trigger,
  .login-link {
    color: #111318;
  }
}

body.news-focus-mode .floating-header {
  background: #000;
  border-color: rgba(255, 255, 255, .08);
  box-shadow: 0 18px 54px rgba(0, 0, 0, .34);
  backdrop-filter: none;
}

body.news-focus-mode .nav-trigger,
body.news-focus-mode .login-link {
  color: #f7fbff;
}

@media (max-width: 860px) {
  .floating-header {
    overflow: visible;
    top: 16px;
  }

  .logo-mark {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
  }
}

/* Prevent rubber-band scroll gaps without adding any visible header wrapper */
html,
body {
  overscroll-behavior-y: none;
  background-color: #07111f;
  overflow-x: hidden;
}

html {
  min-height: 100%;
}

body {
  min-height: 100svh;
  background-repeat: no-repeat;
  background-size: 100vw 100vh;
  background-attachment: fixed;
}

@supports (height: 100dvh) {
  body {
    min-height: 100dvh;
  }
}

.floating-header {
  background-clip: padding-box;
}

/* Hide only the page scrollbars while keeping vertical scrolling active */
html {
  overflow-x: hidden !important;
  overflow-y: auto !important;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body {
  overflow-x: clip !important;
  overflow-y: visible !important;
  touch-action: pan-y;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

body.auth-modal-open {
  overflow: hidden !important;
  touch-action: none;
}

/* Company pages */
.company-shell {
  width: min(1040px, calc(100% - 32px));
  min-height: calc(100vh - 180px);
  padding: clamp(72px, 12vh, 150px) 0 clamp(64px, 10vh, 120px);
}

.company-page-content {
  width: min(900px, 100%);
  margin: 0 auto;
  color: #f7fbff;
}

.company-page-content h1 {
  margin: 0 0 22px;
  max-width: none;
  font-size: clamp(2.25rem, 6vw, 5.2rem);
  line-height: .95;
  letter-spacing: -.07em;
}

.company-page-content h2 {
  margin: 0 0 14px;
  color: #f7fbff;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.1;
  letter-spacing: -.04em;
}

.company-page-content p,
.company-page-content li {
  color: #cfdbec;
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  line-height: 1.7;
}

.company-page-content a {
  color: #9beef6;
  font-weight: 800;
}

.company-mission {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 170px);
  padding-top: clamp(54px, 9vh, 110px);
}

.company-center-text {
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.company-center-text p {
  margin: 0 auto 24px;
  color: #f7fbff;
  font-size: clamp(1.35rem, 3vw, 2.55rem);
  line-height: 1.28;
  letter-spacing: -.035em;
}

.company-center-text p:last-child {
  margin-bottom: 0;
}

.company-lede {
  margin: 0 0 10px;
  color: #f7fbff !important;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.support-email {
  margin: 0 0 32px;
}

.contact-form {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-form label {
  color: #d8e7ff;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  color: #f7fbff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  font: inherit;
  outline: none;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00cbdc;
  box-shadow: 0 0 0 4px rgba(0, 203, 220, .16);
}

.contact-submit {
  width: fit-content;
  margin-top: 10px;
}

.faq-page {
  display: grid;
  gap: clamp(48px, 8vw, 92px);
}

.faq-item,
.faq-contact {
  display: grid;
  gap: 12px;
}

.faq-item p {
  margin: 0;
}

.faq-contact {
  text-align: center;
}

.faq-contact-button {
  width: min(430px, 100%);
  margin: 0 auto;
  border-radius: 0;
  padding: 26px 22px;
  color: #f7fbff;
  background: #000;
}

.legal-page {
  width: min(1180px, 100%);
}

.legal-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.legal-header-row h1 {
  margin-bottom: 0;
}

.legal-source-link {
  white-space: nowrap;
}

.legal-frame {
  width: 100%;
  height: min(72vh, 880px);
  min-height: 560px;
  border: 0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0,0,0,.22);
}

@media (max-width: 720px) {
  .company-shell {
    padding-top: 54px;
  }

  .company-center-text p {
    font-size: clamp(1.18rem, 7vw, 2rem);
  }

  .legal-header-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-frame {
    min-height: 640px;
    border-radius: 18px;
  }
}


/* Technology dropdown sections */
.technology-dropdown-menu {
  min-width: 250px;
  padding: 16px 14px;
  justify-items: center;
  text-align: center;
  gap: 16px;
}

.technology-dropdown-menu .dropdown-section {
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 8px;
}

.dropdown-section-title {
  margin: 0;
  color: rgba(17, 19, 24, .58);
  font-size: .72rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .14em;
  text-align: center;
  text-transform: uppercase;
}

.technology-dropdown-menu a {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  text-align: center;
}

.technology-dropdown-menu a:hover,
.technology-dropdown-menu a:focus-visible {
  color: #00aebd !important;
  background: transparent !important;
}

.dropdown-section-empty {
  min-height: 18px;
}

body.news-focus-mode .dropdown-section-title {
  color: rgba(17, 19, 24, .58);
}

@media (max-width: 560px) {
  .technology-dropdown-menu {
    min-width: 0;
    padding-left: 14px;
    justify-items: start;
    text-align: left;
  }

  .technology-dropdown-menu .dropdown-section {
    justify-items: start;
    gap: 6px;
  }

  .technology-dropdown-menu a,
  .dropdown-section-title {
    text-align: left;
  }
}

/* Keep scrolled content from showing through the sticky top-bar gap */
@media (min-width: 861px) {
  .floating-header::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: calc(24px + 112px + 18px);
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(circle at top left, rgba(79, 140, 255, .24), transparent 34rem), #07111f;
  }

  body.news-focus-mode .floating-header::before {
    background: #000;
  }
}

/* Top-bar visibility fix: mask scrolled content behind the sticky area without covering the bar */
.floating-header::before {
  content: none !important;
  display: none !important;
}

.page::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: calc(24px + 112px + 18px);
  z-index: 110;
  pointer-events: none;
  background: radial-gradient(circle at top left, rgba(79, 140, 255, .24), transparent 34rem), #07111f;
}

.floating-header {
  z-index: 140 !important;
  background: #f7fbff !important;
  color: #111318 !important;
  border-color: rgba(7, 17, 31, .08) !important;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .18) !important;
}

.floating-header .nav-trigger,
.floating-header .nav-link,
.floating-header .login-link {
  color: #111318 !important;
}

body.news-focus-mode .page::before {
  background: #000;
}

@media (max-width: 860px) {
  .page::before {
    height: 172px;
  }
}

/* Top-bar hover, open, and current-page highlight states */
.floating-header .nav-trigger,
.floating-header .nav-link,
.floating-header .login-link {
  position: relative;
  transition: color .18s ease, text-shadow .18s ease;
}

.floating-header .nav-trigger::after,
.floating-header .nav-link::after,
.floating-header .login-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 3px;
  border-radius: 999px;
  background: #00cbdc;
  opacity: 0;
  transform: scaleX(.42);
  transform-origin: center;
  transition: opacity .18s ease, transform .18s ease;
}

.floating-header .nav-trigger:hover,
.floating-header .nav-link:hover,
.floating-header .login-link:hover,
.floating-header .nav-trigger:focus-visible,
.floating-header .nav-link:focus-visible,
.floating-header .login-link:focus-visible,
.floating-header .nav-trigger:active,
.floating-header .nav-link:active,
.floating-header .login-link:active,
.floating-header .nav-trigger.is-active,
.floating-header .nav-link.is-active,
.floating-header .login-link.is-active,
.floating-header .dropdown.is-open > .nav-trigger,
.floating-header .account-menu.is-open .login-link {
  color: #00aebd !important;
  text-shadow: 0 0 20px rgba(0, 203, 220, .22);
}

.floating-header .nav-trigger:hover::after,
.floating-header .nav-link:hover::after,
.floating-header .login-link:hover::after,
.floating-header .nav-trigger:focus-visible::after,
.floating-header .nav-link:focus-visible::after,
.floating-header .login-link:focus-visible::after,
.floating-header .nav-trigger:active::after,
.floating-header .nav-link:active::after,
.floating-header .login-link:active::after,
.floating-header .nav-trigger.is-active::after,
.floating-header .nav-link.is-active::after,
.floating-header .login-link.is-active::after,
.floating-header .dropdown.is-open > .nav-trigger::after,
.floating-header .account-menu.is-open .login-link::after {
  opacity: 1;
  transform: scaleX(1);
}

.dropdown-menu a {
  border-radius: 12px;
  transition: color .18s ease, background .18s ease, box-shadow .18s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible,
.dropdown-menu a:active,
.dropdown-menu a.active-menu-item,
.dropdown-menu a.is-selected-menu-item,
.dropdown-menu a[aria-current="page"] {
  color: #00aebd !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.news-focus-mode .floating-header .nav-trigger:hover,
body.news-focus-mode .floating-header .nav-link:hover,
body.news-focus-mode .floating-header .login-link:hover,
body.news-focus-mode .floating-header .nav-trigger:focus-visible,
body.news-focus-mode .floating-header .nav-link:focus-visible,
body.news-focus-mode .floating-header .login-link:focus-visible,
body.news-focus-mode .floating-header .nav-trigger.is-active,
body.news-focus-mode .floating-header .nav-link.is-active,
body.news-focus-mode .floating-header .login-link.is-active,
body.news-focus-mode .floating-header .dropdown.is-open > .nav-trigger,
body.news-focus-mode .floating-header .account-menu.is-open .login-link {
  color: #9beef6 !important;
}


/* Dropdown text-only highlight: keep rows transparent while active/hovered */
.dropdown-menu a:hover,
.dropdown-menu a:focus-visible,
.dropdown-menu a:active,
.dropdown-menu a.active-menu-item,
.dropdown-menu a.is-selected-menu-item,
.dropdown-menu a[aria-current="page"] {
  background: transparent !important;
  box-shadow: none !important;
}

/* Whole-page black background while keeping the top-bar white */
:root,
html,
body {
  background: #000 !important;
  background-color: #000 !important;
}

body {
  background-image: none !important;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

body::before,
body.news-focus-mode::before {
  background: #000 !important;
}

.page,
.page::before,
body.news-focus-mode .page::before {
  background: #000 !important;
}

.floating-header,
body.news-focus-mode .floating-header {
  background: #f7fbff !important;
  color: #111318 !important;
  border-color: rgba(7, 17, 31, .08) !important;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .18) !important;
}

.floating-header .nav-trigger,
.floating-header .nav-link,
.floating-header .login-link,
body.news-focus-mode .floating-header .nav-trigger,
body.news-focus-mode .floating-header .nav-link,
body.news-focus-mode .floating-header .login-link {
  color: #111318 !important;
}

.floating-header .nav-trigger:hover,
.floating-header .nav-link:hover,
.floating-header .login-link:hover,
.floating-header .nav-trigger:focus-visible,
.floating-header .nav-link:focus-visible,
.floating-header .login-link:focus-visible,
.floating-header .nav-trigger.is-active,
.floating-header .nav-link.is-active,
.floating-header .login-link.is-active,
.floating-header .dropdown.is-open > .nav-trigger,
.floating-header .account-menu.is-open .login-link,
body.news-focus-mode .floating-header .nav-trigger:hover,
body.news-focus-mode .floating-header .nav-link:hover,
body.news-focus-mode .floating-header .login-link:hover,
body.news-focus-mode .floating-header .nav-trigger:focus-visible,
body.news-focus-mode .floating-header .nav-link:focus-visible,
body.news-focus-mode .floating-header .login-link:focus-visible,
body.news-focus-mode .floating-header .nav-trigger.is-active,
body.news-focus-mode .floating-header .nav-link.is-active,
body.news-focus-mode .floating-header .login-link.is-active,
body.news-focus-mode .floating-header .dropdown.is-open > .nav-trigger,
body.news-focus-mode .floating-header .account-menu.is-open .login-link {
  color: #00aebd !important;
}

/* Premium material surfaces on black background, without corner light or glow */
.hero,
.app-hero,
.app-panel,
.account-card,
.cards article,
.feature-list li,
.release-panel,
pre {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .045) 62%, rgba(255, 255, 255, .035)) !important;
  border: 1px solid rgba(255, 255, 255, .14) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .14),
    inset 0 -1px 0 rgba(255, 255, 255, .04),
    0 28px 90px rgba(0, 0, 0, .48) !important;
  backdrop-filter: blur(22px) saturate(1.08);
  -webkit-backdrop-filter: blur(22px) saturate(1.08);
}

.hero,
.app-hero,
.app-panel,
.account-card,
.cards article,
.release-panel {
  position: relative;
  overflow: hidden;
}

.hero::before,
.app-hero::before,
.app-panel::before,
.account-card::before,
.cards article::before,
.release-panel::before {
  display: none !important;
}

.hero > *,
.app-hero > *,
.app-panel > *,
.account-card > *,
.cards article > *,
.release-panel > * {
  position: relative;
  z-index: 1;
}

.feature-list li,
pre {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .04)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .14),
    0 14px 36px rgba(0, 0, 0, .30) !important;
}

.hero button:not(.secondary),
.actions button:not(.secondary),
.button-link:not(.store-button-disabled),
.auth-action-button:not(.google-auth-button),
.contact-submit,
.store-button:not(.store-button-disabled) {
  background: linear-gradient(135deg, #ffffff, #edf2f5) !important;
  color: #041015 !important;
  border: 1px solid rgba(255, 255, 255, .35) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .74),
    0 10px 34px rgba(0, 0, 0, .34) !important;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

button.secondary,
.google-auth-button,
.store-button-disabled {
  background: linear-gradient(135deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .055)) !important;
  color: #f7fbff !important;
  border: 1px solid rgba(255, 255, 255, .18) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .16),
    0 12px 28px rgba(0, 0, 0, .28) !important;
}

.hero button:not(.secondary):hover,
.actions button:not(.secondary):hover,
.button-link:not(.store-button-disabled):hover,
.auth-action-button:not(.google-auth-button):hover,
.contact-submit:hover,
.store-button:not(.store-button-disabled):hover,
button.secondary:hover,
.google-auth-button:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .8),
    0 14px 42px rgba(0, 0, 0, .42) !important;
}

.contact-form input,
.contact-form textarea,
.auth-form input,
.settings-form input[type="text"] {
  background: linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .045)) !important;
  border-color: rgba(255, 255, 255, .18) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .10);
}


/* Remove remaining decorative glow/light effects */
html,
body,
.page {
  background-image: none !important;
}

.hero::before,
.app-hero::before,
.app-panel::before,
.account-card::before,
.cards article::before,
.release-panel::before {
  display: none !important;
  background: none !important;
}


/* Smaller brand logo and professional footer navigation */
.logo-mark img {
  width: clamp(56px, 7.15vw, 92px) !important;
}

@media (min-width: 861px) {
  .floating-header {
    --detached-logo-width: clamp(98px, 6.5vw, 124px) !important;
    --detached-logo-gap: clamp(18px, 1.8vw, 30px) !important;
  }

  .logo-mark img {
    width: 100% !important;
  }
}

@media (max-width: 860px) {
  .logo-mark img {
    width: 57px !important;
  }
}

.site-footer.professional-footer {
  width: min(1240px, calc(100% - 32px));
  margin: clamp(56px, 8vw, 96px) auto 32px;
  padding: clamp(28px, 4vw, 52px);
  display: grid !important;
  grid-template-columns: 1fr;
  gap: clamp(24px, 3vw, 36px);
  align-items: stretch;
  color: #f7fbff;
  background: linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .028));
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 34px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .12),
    0 24px 72px rgba(0, 0, 0, .44);
  backdrop-filter: blur(20px) saturate(1.04);
  -webkit-backdrop-filter: blur(20px) saturate(1.04);
}

.footer-brand-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: clamp(20px, 3vw, 30px);
  border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #f7fbff;
  text-decoration: none;
  font-weight: 900;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  letter-spacing: -.025em;
}

.footer-logo-link img {
  width: 46px;
  height: auto;
  display: block;
}

.footer-tagline {
  max-width: 540px;
  margin: 0;
  color: rgba(247, 251, 255, .68);
  line-height: 1.55;
  text-align: right;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  align-items: start;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 0;
}

.footer-column h2 {
  margin: 0 0 3px;
  color: rgba(247, 251, 255, .52);
  font-size: .74rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  width: 100%;
  padding: 10px 12px;
  color: #f7fbff;
  text-align: center;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 800;
  line-height: 1.14;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  background: rgba(255, 255, 255, .065);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .09);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.footer-button:hover,
.footer-button:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .25);
  transform: translateY(-1px);
  outline: none;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: clamp(18px, 2.4vw, 26px);
  border-top: 1px solid rgba(255, 255, 255, .11);
  color: rgba(247, 251, 255, .58);
  font-size: .94rem;
}

.footer-bottom-row p {
  margin: 0;
  color: inherit;
  line-height: 1.45;
}

.footer-bottom-row a {
  color: rgba(247, 251, 255, .78);
  text-decoration: none;
  font-weight: 800;
}

.footer-bottom-row a:hover,
.footer-bottom-row a:focus-visible {
  color: #ffffff;
  outline: none;
}

@media (max-width: 1180px) {
  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-footer.professional-footer {
    width: min(100% - 24px, 680px);
    margin-bottom: 20px;
    border-radius: 26px;
  }

  .footer-brand-row {
    flex-direction: column;
  }

  .footer-tagline {
    text-align: left;
  }

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

@media (max-width: 460px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-button {
    justify-content: flex-start;
    text-align: left;
  }
}

/* Full-width simple text footer: no capsules, no outer card, no animation */
.site-footer.professional-footer {
  width: 100vw !important;
  max-width: none !important;
  margin: clamp(64px, 8vw, 108px) calc(50% - 50vw) 0 !important;
  padding: clamp(38px, 5vw, 72px) clamp(24px, 7vw, 96px) clamp(34px, 4vw, 56px) !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: clamp(28px, 4vw, 44px) !important;
  color: #f7fbff !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  animation: none !important;
  transition: none !important;
}

.site-footer.professional-footer *,
.site-footer.professional-footer *::before,
.site-footer.professional-footer *::after {
  animation: none !important;
  transition: none !important;
}

.footer-brand-row {
  width: 100% !important;
  padding-bottom: clamp(20px, 3vw, 30px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, .16) !important;
}

.footer-grid {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  gap: clamp(24px, 4vw, 54px) !important;
  align-items: start !important;
}

.footer-column {
  display: grid !important;
  align-content: start !important;
  gap: 10px !important;
  min-width: 0 !important;
}

.footer-column h2 {
  margin: 0 0 6px !important;
  color: rgba(247, 251, 255, .54) !important;
  font-size: .74rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: .16em !important;
  text-transform: uppercase !important;
}

.footer-button {
  display: inline !important;
  width: fit-content !important;
  min-height: 0 !important;
  padding: 0 !important;
  color: rgba(247, 251, 255, .82) !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-align: left !important;
  text-decoration: none !important;
  font-size: .96rem !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  transform: none !important;
}

.footer-button:hover,
.footer-button:focus-visible,
.footer-button:active {
  color: #ffffff !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  text-decoration: underline !important;
  text-underline-offset: 4px !important;
  transform: none !important;
  outline: none !important;
}

.footer-bottom-row {
  width: 100% !important;
  padding-top: clamp(18px, 2.4vw, 26px) !important;
  border-top: 1px solid rgba(255, 255, 255, .16) !important;
}

@media (max-width: 1180px) {
  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .site-footer.professional-footer {
    width: 100vw !important;
    margin-right: calc(50% - 50vw) !important;
    margin-left: calc(50% - 50vw) !important;
    padding-right: 24px !important;
    padding-left: 24px !important;
    border-radius: 0 !important;
  }

  .footer-brand-row {
    flex-direction: column !important;
  }

  .footer-tagline {
    text-align: left !important;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 460px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Carbon fiber rounded rectangles only — buttons keep the previous material styling */
.hero,
.app-hero,
.app-panel,
.account-card,
.cards article,
.feature-list li,
.release-panel,
pre {
  background-color: #070708 !important;
  background-image:
    linear-gradient(145deg, rgba(255, 255, 255, .105), rgba(255, 255, 255, .025) 42%, rgba(0, 0, 0, .18)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, .052) 0 2px, rgba(0, 0, 0, .18) 2px 4px, transparent 4px 8px),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, .038) 0 2px, rgba(0, 0, 0, .22) 2px 4px, transparent 4px 8px),
    linear-gradient(135deg, #151517, #050506) !important;
  background-size: auto, 14px 14px, 14px 14px, auto !important;
  background-position: 0 0, 0 0, 7px 7px, 0 0 !important;
  border: 1px solid rgba(255, 255, 255, .13) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .13),
    inset 0 -1px 0 rgba(0, 0, 0, .60),
    0 24px 72px rgba(0, 0, 0, .54) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.hero,
.app-hero,
.app-panel,
.account-card,
.cards article,
.release-panel {
  position: relative;
  overflow: hidden;
}

.hero::after,
.app-hero::after,
.app-panel::after,
.account-card::after,
.cards article::after,
.release-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .07), transparent 38%, rgba(255, 255, 255, .025) 68%, transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 6px);
  mix-blend-mode: screen;
  opacity: .58;
}

.hero > *,
.app-hero > *,
.app-panel > *,
.account-card > *,
.cards article > *,
.release-panel > * {
  position: relative;
  z-index: 1;
}

.feature-list li,
pre {
  background-color: #080809 !important;
  background-image:
    linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .025)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, .045) 0 2px, rgba(0, 0, 0, .20) 2px 4px, transparent 4px 8px),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, .032) 0 2px, rgba(0, 0, 0, .22) 2px 4px, transparent 4px 8px) !important;
  background-size: auto, 12px 12px, 12px 12px !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .11),
    inset 0 -1px 0 rgba(0, 0, 0, .55),
    0 12px 34px rgba(0, 0, 0, .38) !important;
}

/* Refined carbon-fiber panels: subtle, non-directional, and less repetitive */
.hero,
.app-hero,
.app-panel,
.account-card,
.cards article,
.feature-list li,
.release-panel,
pre {
  background-color: #070808 !important;
  background-image:
    repeating-linear-gradient(45deg,
      rgba(255, 255, 255, .038) 0 1px,
      rgba(255, 255, 255, .010) 1px 3px,
      rgba(0, 0, 0, .28) 3px 5px,
      transparent 5px 10px),
    repeating-linear-gradient(-45deg,
      rgba(255, 255, 255, .030) 0 1px,
      rgba(255, 255, 255, .008) 1px 3px,
      rgba(0, 0, 0, .30) 3px 5px,
      transparent 5px 10px),
    repeating-linear-gradient(90deg,
      rgba(255, 255, 255, .010) 0 1px,
      transparent 1px 11px),
    linear-gradient(#090a0b, #090a0b) !important;
  background-size: 22px 22px, 22px 22px, 17px 17px, auto !important;
  background-position: 0 0, 11px 11px, 0 0, 0 0 !important;
  border-color: rgba(255, 255, 255, .105) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .035),
    0 18px 52px rgba(0, 0, 0, .44) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.hero::after,
.app-hero::after,
.app-panel::after,
.account-card::after,
.cards article::after,
.release-panel::after {
  content: none !important;
  display: none !important;
  background: none !important;
  opacity: 0 !important;
}

/* Offset nearby cards so grouped rectangles do not look copy-pasted */
.cards article:nth-child(3n+1),
.app-panel:nth-of-type(3n+1),
.feature-list li:nth-child(3n+1) {
  background-size: 22px 22px, 22px 22px, 17px 17px, auto !important;
  background-position: 0 0, 11px 11px, 3px 2px, 0 0 !important;
}

.cards article:nth-child(3n+2),
.app-panel:nth-of-type(3n+2),
.feature-list li:nth-child(3n+2) {
  background-size: 24px 24px, 24px 24px, 19px 19px, auto !important;
  background-position: 7px 4px, 19px 16px, 5px 7px, 0 0 !important;
}

.cards article:nth-child(3n),
.app-panel:nth-of-type(3n),
.feature-list li:nth-child(3n) {
  background-size: 20px 20px, 20px 20px, 16px 16px, auto !important;
  background-position: 5px 9px, 15px 19px, 9px 4px, 0 0 !important;
}

pre,
.feature-list li {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .03),
    0 10px 28px rgba(0, 0, 0, .34) !important;
}

/* Carbon panel brightness + disabled button cleanup */
.hero,
.app-hero,
.app-panel,
.account-card,
.cards article,
.feature-list li,
.release-panel,
pre {
  background-color: #151719 !important;
  background-image:
    repeating-linear-gradient(45deg,
      rgba(255, 255, 255, .060) 0 1px,
      rgba(255, 255, 255, .020) 1px 3px,
      rgba(0, 0, 0, .135) 3px 5px,
      transparent 5px 10px),
    repeating-linear-gradient(-45deg,
      rgba(255, 255, 255, .052) 0 1px,
      rgba(255, 255, 255, .016) 1px 3px,
      rgba(0, 0, 0, .145) 3px 5px,
      transparent 5px 10px),
    repeating-linear-gradient(90deg,
      rgba(255, 255, 255, .018) 0 1px,
      transparent 1px 12px),
    linear-gradient(#151719, #151719) !important;
  background-size: 24px 24px, 24px 24px, 18px 18px, auto !important;
  border-color: rgba(255, 255, 255, .16) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .045),
    0 16px 44px rgba(0, 0, 0, .34) !important;
}

.hero::after,
.app-hero::after,
.app-panel::after,
.account-card::after,
.cards article::after,
.release-panel::after {
  content: none !important;
  display: none !important;
}

.cards article:nth-child(3n+1),
.app-panel:nth-of-type(3n+1),
.feature-list li:nth-child(3n+1) {
  background-size: 24px 24px, 24px 24px, 18px 18px, auto !important;
  background-position: 0 0, 12px 12px, 3px 2px, 0 0 !important;
}

.cards article:nth-child(3n+2),
.app-panel:nth-of-type(3n+2),
.feature-list li:nth-child(3n+2) {
  background-size: 26px 26px, 26px 26px, 20px 20px, auto !important;
  background-position: 7px 4px, 20px 17px, 5px 7px, 0 0 !important;
}

.cards article:nth-child(3n),
.app-panel:nth-of-type(3n),
.feature-list li:nth-child(3n) {
  background-size: 22px 22px, 22px 22px, 17px 17px, auto !important;
  background-position: 5px 9px, 16px 20px, 9px 4px, 0 0 !important;
}

.store-button-disabled,
.button-link.store-button-disabled,
.store-button.store-button-disabled,
.store-button-disabled:hover,
.store-button-disabled:focus-visible,
.store-button-disabled:active {
  background: rgba(255, 255, 255, .08) !important;
  background-image: none !important;
  color: rgba(247, 251, 255, .62) !important;
  border: 1px solid rgba(255, 255, 255, .12) !important;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
  cursor: not-allowed !important;
}

/* Carbon-styled account popup with Create / Sign in modes */
.auth-modal.carbon-auth-modal {
  width: min(470px, 100%) !important;
  color: #f7fbff !important;
  background-color: #151719 !important;
  background-image:
    repeating-linear-gradient(45deg,
      rgba(255, 255, 255, .060) 0 1px,
      rgba(255, 255, 255, .020) 1px 3px,
      rgba(0, 0, 0, .135) 3px 5px,
      transparent 5px 10px),
    repeating-linear-gradient(-45deg,
      rgba(255, 255, 255, .052) 0 1px,
      rgba(255, 255, 255, .016) 1px 3px,
      rgba(0, 0, 0, .145) 3px 5px,
      transparent 5px 10px),
    repeating-linear-gradient(90deg,
      rgba(255, 255, 255, .018) 0 1px,
      transparent 1px 12px),
    linear-gradient(#151719, #151719) !important;
  background-size: 24px 24px, 24px 24px, 18px 18px, auto !important;
  border: 1px solid rgba(255, 255, 255, .16) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .045),
    0 32px 90px rgba(0, 0, 0, .58) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.auth-modal.carbon-auth-modal::before,
.auth-modal.carbon-auth-modal::after {
  content: none !important;
  display: none !important;
}

.auth-modal.carbon-auth-modal .auth-eyebrow {
  color: rgba(155, 238, 246, .88) !important;
}

.auth-modal.carbon-auth-modal h2 {
  max-width: 380px;
}

.auth-mode-panel {
  display: grid;
  gap: 10px;
}

.auth-mode-panel.is-hidden {
  display: none !important;
}

.auth-form .auth-mode-panel + .auth-mode-panel {
  margin-top: 0;
}

.auth-modal.carbon-auth-modal .auth-form input {
  background: rgba(0, 0, 0, .32) !important;
  background-image: none !important;
  border: 1px solid rgba(255, 255, 255, .17) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 10px 28px rgba(0, 0, 0, .20) !important;
}

.auth-modal.carbon-auth-modal .auth-form input:focus {
  border-color: rgba(0, 203, 220, .75) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 0 0 4px rgba(0, 203, 220, .15) !important;
}

.auth-modal.carbon-auth-modal .auth-actions {
  margin-top: 14px;
}

.auth-modal.carbon-auth-modal .auth-action-button {
  min-height: 54px;
}

.auth-mode-switch {
  appearance: none;
  width: fit-content;
  margin: 14px auto 0;
  padding: 0;
  display: inline-flex;
  justify-self: center;
  color: rgba(155, 238, 246, .94) !important;
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font: inherit;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transform: none !important;
}

.auth-mode-switch:hover,
.auth-mode-switch:focus-visible {
  color: #ffffff !important;
  text-decoration: underline;
  text-underline-offset: 4px;
  outline: none;
  transform: none !important;
  box-shadow: none !important;
}

.auth-mode-switch.is-hidden {
  display: none !important;
}

.auth-mode-switch + .auth-action-button.google-auth-button,
.auth-mode-switch.is-hidden + .auth-action-button.google-auth-button {
  width: 100%;
  margin-top: 14px;
}

/* Separate capsule top-bar buttons: remove the large shared top-bar rectangle */
.floating-header,
body.news-focus-mode .floating-header {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  color: #111318 !important;
}

.floating-header .nav-trigger,
.floating-header .nav-link,
.floating-header .login-link,
body.news-focus-mode .floating-header .nav-trigger,
body.news-focus-mode .floating-header .nav-link,
body.news-focus-mode .floating-header .login-link {
  min-height: 46px !important;
  padding: 0 clamp(15px, 1.35vw, 22px) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #111318 !important;
  background: #f7fbff !important;
  border: 1px solid rgba(7, 17, 31, .09) !important;
  border-radius: 999px !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .18) !important;
  text-shadow: none !important;
  transition: color .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease !important;
}

.floating-header .nav-trigger::after,
.floating-header .nav-link::after,
.floating-header .login-link::after {
  content: none !important;
  display: none !important;
}

.floating-header .nav-trigger:hover,
.floating-header .nav-link:hover,
.floating-header .login-link:hover,
.floating-header .nav-trigger:focus-visible,
.floating-header .nav-link:focus-visible,
.floating-header .login-link:focus-visible,
.floating-header .nav-trigger:active,
.floating-header .nav-link:active,
.floating-header .login-link:active,
.floating-header .nav-trigger.is-active,
.floating-header .nav-link.is-active,
.floating-header .login-link.is-active,
.floating-header .dropdown.is-open > .nav-trigger,
.floating-header .account-menu.is-open .login-link,
body.news-focus-mode .floating-header .nav-trigger:hover,
body.news-focus-mode .floating-header .nav-link:hover,
body.news-focus-mode .floating-header .login-link:hover,
body.news-focus-mode .floating-header .nav-trigger:focus-visible,
body.news-focus-mode .floating-header .nav-link:focus-visible,
body.news-focus-mode .floating-header .login-link:focus-visible,
body.news-focus-mode .floating-header .nav-trigger.is-active,
body.news-focus-mode .floating-header .nav-link.is-active,
body.news-focus-mode .floating-header .login-link.is-active,
body.news-focus-mode .floating-header .dropdown.is-open > .nav-trigger,
body.news-focus-mode .floating-header .account-menu.is-open .login-link {
  color: #00aebd !important;
  background: #ffffff !important;
  border-color: rgba(0, 174, 189, .34) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .78),
    0 14px 34px rgba(0, 0, 0, .24) !important;
  transform: translateY(-1px);
  text-shadow: none !important;
}

.floating-header .nav-trigger:focus-visible,
.floating-header .nav-link:focus-visible,
.floating-header .login-link:focus-visible {
  outline: none !important;
}

.nav-item,
.account-menu {
  align-items: center !important;
}

.floating-nav {
  gap: clamp(10px, 1.2vw, 18px) !important;
}

.dropdown-menu {
  top: calc(100% + 12px) !important;
}

.account-menu-button {
  max-width: 220px !important;
}

@media (min-width: 861px) {
  .floating-header,
  body.news-focus-mode .floating-header {
    min-height: 56px !important;
    padding: 0 !important;
    gap: clamp(10px, 1.2vw, 18px) !important;
  }
}

@media (max-width: 860px) {
  .floating-header,
  body.news-focus-mode .floating-header {
    width: min(100% - 24px, 720px) !important;
    min-height: auto !important;
    margin-top: 14px !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: auto 1fr !important;
    gap: 14px !important;
  }

  .floating-nav {
    justify-content: flex-start !important;
    gap: 10px !important;
  }

  .floating-header .nav-trigger,
  .floating-header .nav-link,
  .floating-header .login-link {
    min-height: 42px !important;
    padding: 0 15px !important;
  }
}

@media (max-width: 560px) {
  .floating-header,
  body.news-focus-mode .floating-header {
    width: min(100% - 20px, 520px) !important;
  }

  .floating-nav {
    align-items: flex-start !important;
    flex-direction: column !important;
  }

  .nav-item,
  .floating-header .nav-trigger,
  .floating-header .nav-link,
  .floating-header .login-link {
    width: fit-content !important;
  }
}

/* Center capsule top-bar items vertically within the sticky top-bar area */
.floating-header,
body.news-focus-mode .floating-header {
  align-items: center !important;
}

@media (min-width: 861px) {
  .floating-header,
  body.news-focus-mode .floating-header {
    min-height: 112px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    align-items: center !important;
  }

  .floating-nav,
  .account-menu,
  .nav-item {
    align-self: center !important;
  }

  .logo-mark {
    top: 50% !important;
    transform: translateY(-50%) !important;
  }
}

@media (max-width: 860px) {
  .floating-header,
  body.news-focus-mode .floating-header {
    align-items: center !important;
  }
}


/* Non-clickable upcoming games labels */
.dropdown-menu-note {
  display: inline-block;
  padding: 2px 18px;
  color: rgba(17, 19, 24, .58);
  font-weight: 800;
  line-height: 1.4;
  white-space: nowrap;
  cursor: default;
  user-select: none;
}

.footer-text-muted {
  display: inline;
  width: fit-content;
  color: rgba(247, 251, 255, .54);
  font-size: .96rem;
  font-weight: 700;
  line-height: 1.35;
}

@media (max-width: 560px) {
  .dropdown-menu-note {
    padding: 3px 0;
  }
}


/* Top-bar capsule height ramp: 10% larger per item, font unchanged */
@media (min-width: 861px) {
  .floating-header .floating-nav > .nav-link,
  .floating-header .floating-nav > .dropdown > .nav-trigger {
    font-size: .98rem !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 18px !important;
    border-radius: 999px !important;
  }

  .floating-header .floating-nav > :nth-child(1) {
    height: 44px !important;
  }

  .floating-header .floating-nav > :nth-child(2) > .nav-trigger {
    height: 52.8px !important;
  }

  .floating-header .floating-nav > :nth-child(3) > .nav-trigger {
    height: 61.6px !important;
  }

  .floating-header .floating-nav > :nth-child(4) {
    height: 70.4px !important;
  }

  .floating-header .floating-nav > :nth-child(5) > .nav-trigger {
    height: 79.2px !important;
  }
}

/* Top-bar account icon fixed to far-right corner */
@media (min-width: 861px) {
  .floating-header .topbar-corner-account {
    position: fixed !important;
    top: calc(24px + 56px) !important;
    right: max(56px, calc(((100vw - min(1120px, calc(100vw - 32px))) / 2) + 24px)) !important;
    transform: translateY(-50%) !important;
    z-index: 190 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    width: 52px !important;
    height: 52px !important;
    pointer-events: auto !important;
  }

  .floating-header .topbar-corner-account .account-icon-button {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    min-height: 52px !important;
    max-width: none !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 999px !important;
    display: inline-grid !important;
    place-items: center !important;
    color: #111318 !important;
    background: #f7fbff !important;
    border: 1px solid rgba(255, 255, 255, .92) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.74), 0 12px 34px rgba(0,0,0,.34) !important;
    text-shadow: none !important;
    cursor: pointer !important;
    overflow: visible !important;
  }

  .floating-header .topbar-corner-account .account-icon-button::after {
    content: none !important;
    display: none !important;
  }

  .floating-header .topbar-corner-account .account-icon-button svg {
    width: 28px !important;
    height: 28px !important;
    display: block !important;
    stroke: currentColor !important;
  }

  .floating-header .topbar-corner-account .account-icon-button:hover,
  .floating-header .topbar-corner-account .account-icon-button:focus-visible,
  .floating-header .topbar-corner-account .account-icon-button.is-signed-in,
  .floating-header .topbar-corner-account.is-open .account-icon-button {
    color: #00aebd !important;
    background: #f7fbff !important;
    outline: none !important;
    transform: translateY(-1px);
  }

  .floating-header .topbar-corner-account .account-dropdown {
    top: calc(100% + 10px) !important;
    right: 0 !important;
    left: auto !important;
  }
}

@media (max-width: 860px) {
  .floating-header .topbar-corner-account {
    justify-self: end !important;
    margin-left: 12px !important;
  }

  .floating-header .topbar-corner-account .account-icon-button {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
    padding: 0 !important;
    display: inline-grid !important;
    place-items: center !important;
    color: #111318 !important;
    background: #f7fbff !important;
    border: 1px solid rgba(255,255,255,.92) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.74), 0 10px 28px rgba(0,0,0,.28) !important;
  }

  .floating-header .topbar-corner-account .account-icon-button svg {
    width: 24px !important;
    height: 24px !important;
  }
}

/* Combined profile + settings page */
.account-settings-bottom {
  margin-top: clamp(24px, 4vw, 48px);
}

.settings-section-title {
  margin: 0 0 22px;
}

.settings-section-title h2 {
  margin: 0 0 10px;
}

.settings-section-title p:last-child {
  margin: 0;
  color: #b7c7dc;
  line-height: 1.6;
}

/* Signed-in profile icon goes directly to profile; dropdown stays unused unless another page needs it */
.topbar-corner-account .account-dropdown {
  display: none !important;
}

/* Profile page cleanup + visible account circle */
.profile-page-no-back .breadcrumb,
body .breadcrumb[href="/"] {
  display: none !important;
}

.floating-header .topbar-corner-account .account-icon-button {
  color: #111318 !important;
  background: #f7fbff !important;
  border: 1px solid rgba(255, 255, 255, .92) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.74), 0 12px 34px rgba(0,0,0,.34) !important;
}

.floating-header .topbar-corner-account .account-icon-button:hover,
.floating-header .topbar-corner-account .account-icon-button:focus-visible,
.floating-header .topbar-corner-account .account-icon-button.is-signed-in {
  color: #00aebd !important;
  background: #f7fbff !important;
}

/* Shared top-bar capsule heights: 10% ramp, text size unchanged */
.floating-nav {
  align-items: center;
}

.floating-nav > .nav-link,
.floating-nav > .dropdown > .nav-trigger {
  font-size: .98rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 18px;
  padding-right: 18px;
  border-radius: 999px;
}

.floating-nav > :nth-child(1) {
  min-height: 44px;
}

.floating-nav > :nth-child(2) > .nav-trigger {
  min-height: 48.4px;
}

.floating-nav > :nth-child(3) > .nav-trigger {
  min-height: 52.8px;
}

.floating-nav > :nth-child(4) {
  min-height: 57.2px;
}

.floating-nav > :nth-child(5) > .nav-trigger {
  min-height: 61.6px;
}

@media (max-width: 820px) {
  .floating-nav > .nav-link,
  .floating-nav > .dropdown > .nav-trigger {
    min-height: 44px !important;
  }
}

/* Shared scrollable footer columns: headings stay static, links scroll vertically */
.professional-footer .footer-column {
  min-width: 0;
  min-height: 0;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px;
}

.professional-footer .footer-column > h2 {
  flex: 0 0 auto;
  margin-bottom: 2px;
}

.professional-footer .footer-column-scroll {
  flex: 1 1 auto;
  min-height: 0;
  max-height: 132px;
  display: grid;
  gap: 8px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 8px;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(155, 238, 246, .54) rgba(255, 255, 255, .08);
}

.professional-footer .footer-column-scroll::-webkit-scrollbar {
  width: 6px;
}

.professional-footer .footer-column-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .08);
  border-radius: 999px;
}

.professional-footer .footer-column-scroll::-webkit-scrollbar-thumb {
  background: rgba(155, 238, 246, .54);
  border-radius: 999px;
}

@media (max-width: 720px) {
  .professional-footer .footer-column-scroll {
    max-height: 150px;
  }
}

/* App store panel privacy lock */
.app-store-panel {
  position: relative;
}

.app-privacy-lock {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #07111f;
  background: #f7fbff;
  border: 1px solid rgba(255, 255, 255, .86);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72), 0 12px 30px rgba(0,0,0,.26);
  text-decoration: none;
  z-index: 2;
}

.app-privacy-lock svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.app-privacy-lock:hover,
.app-privacy-lock:focus-visible {
  color: #00aebd;
  outline: none;
  transform: translateY(-1px);
}

.app-store-panel > h3,
.app-store-panel > h2 {
  padding-right: 54px;
}



/* Homepage latest community post preview */
.home-community-preview {
  display: grid;
  gap: clamp(16px, 2.4vw, 24px);
  margin-top: 0;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 28px;
  background-color: #151719;
  background-image:
    repeating-linear-gradient(45deg,
      rgba(255, 255, 255, .060) 0 1px,
      rgba(255, 255, 255, .020) 1px 3px,
      rgba(0, 0, 0, .135) 3px 5px,
      transparent 5px 10px),
    repeating-linear-gradient(-45deg,
      rgba(255, 255, 255, .052) 0 1px,
      rgba(255, 255, 255, .016) 1px 3px,
      rgba(0, 0, 0, .145) 3px 5px,
      transparent 5px 10px),
    repeating-linear-gradient(90deg,
      rgba(255, 255, 255, .018) 0 1px,
      transparent 1px 12px),
    linear-gradient(#151719, #151719);
  background-size: 24px 24px, 24px 24px, 18px 18px, auto;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .045),
    0 16px 44px rgba(0, 0, 0, .34);
}

.home-community-preview + .hero {
  margin-top: 18px;
}

.home-community-preview-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 18px;
}

.home-community-preview h2 {
  margin: 0;
  color: #f7fbff;
  font-size: clamp(1.8rem, 4.2vw, 3.8rem);
  line-height: .98;
  letter-spacing: -.06em;
}

.home-community-button {
  justify-self: end;
  align-self: center;
  white-space: nowrap;
}

.home-community-post {
  display: grid;
  gap: clamp(14px, 2.4vw, 24px);
  margin: 0;
  padding: clamp(18px, 3.2vw, 28px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  background: rgba(0, 0, 0, .18);
}

.home-community-post.has-photo {
  grid-template-columns: minmax(180px, .42fr) minmax(0, 1fr);
  align-items: stretch;
}

.home-community-post-photo {
  min-height: 210px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: rgba(0, 0, 0, .24);
}

.home-community-post-photo img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
}

.home-community-post-copy {
  display: grid;
  align-content: center;
  gap: 10px;
  min-width: 0;
}

.home-community-post-title {
  margin: 0;
  color: #f7fbff;
  font-size: clamp(1.22rem, 2.4vw, 1.9rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.home-community-post-body,
.home-community-status {
  margin: 0;
  color: rgba(247, 251, 255, .74);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.65;
  overflow-wrap: anywhere;
  white-space: pre-line;
}

.home-community-source-frame {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  left: -10000px !important;
  top: -10000px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  border: 0 !important;
}

@media (max-width: 720px) {
  .home-community-post.has-photo {
    grid-template-columns: 1fr;
  }

  .home-community-post-photo {
    min-height: 190px;
  }
}

@media (max-width: 560px) {
  .home-community-preview {
    border-radius: 24px;
  }

  .home-community-preview-header {
    align-items: center;
  }

  .home-community-button {
    padding-right: 17px;
    padding-left: 17px;
  }
}


@media (min-width: 861px) {
  .floating-nav > :is(.nav-link, .nav-item > .nav-trigger) {
    height: auto !important;
    min-height: 44px !important;
  }

  .floating-nav > :nth-child(1):is(.nav-link),
  .floating-nav > :nth-child(1) > .nav-trigger {
    min-height: 44px !important;
  }

  .floating-nav > :nth-child(2):is(.nav-link),
  .floating-nav > :nth-child(2) > .nav-trigger {
    min-height: 48.4px !important;
  }

  .floating-nav > :nth-child(3):is(.nav-link),
  .floating-nav > :nth-child(3) > .nav-trigger {
    min-height: 52.8px !important;
  }

  .floating-nav > :nth-child(4):is(.nav-link),
  .floating-nav > :nth-child(4) > .nav-trigger {
    min-height: 57.2px !important;
  }

  .floating-nav > :nth-child(5):is(.nav-link),
  .floating-nav > :nth-child(5) > .nav-trigger {
    min-height: 61.6px !important;
  }
}


/* Final top-bar linear capsule heights */
@media (min-width: 861px) {
  .floating-header .floating-nav > :is(.nav-link, .nav-item > .nav-trigger),
  .floating-header .floating-nav > .nav-item > .nav-trigger {
    font-size: .98rem !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 18px !important;
    border-radius: 999px !important;
  }

  .floating-header .floating-nav > :nth-child(1):is(.nav-link),
  .floating-header .floating-nav > :nth-child(1) > .nav-trigger {
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
  }

  .floating-header .floating-nav > :nth-child(2):is(.nav-link),
  .floating-header .floating-nav > :nth-child(2) > .nav-trigger {
    height: 50.4px !important;
    min-height: 50.4px !important;
    max-height: 50.4px !important;
  }

  .floating-header .floating-nav > :nth-child(3):is(.nav-link),
  .floating-header .floating-nav > :nth-child(3) > .nav-trigger {
    height: 60px !important;
    min-height: 60px !important;
    max-height: 60px !important;
  }

  .floating-header .floating-nav > :nth-child(4):is(.nav-link),
  .floating-header .floating-nav > :nth-child(4) > .nav-trigger {
    height: 70px !important;
    min-height: 70px !important;
    max-height: 70px !important;
  }

  .floating-header .floating-nav > :nth-child(5):is(.nav-link),
  .floating-header .floating-nav > :nth-child(5) > .nav-trigger {
    height: 80px !important;
    min-height: 80px !important;
    max-height: 80px !important;
  }
}

/* Shared Founder-style top bar, without Founder fade/hide behavior */

.floating-header,
body.news-focus-mode .floating-header {
  position: sticky !important;
  top: 24px !important;
  z-index: 140 !important;

  margin: 24px auto 0 !important;
  min-height: 112px !important;
  padding: 18px clamp(54px, 6vw, 96px) !important;

  display: flex !important;
  grid-template-columns: none !important;
  justify-content: center !important;
  align-items: center !important;
  gap: clamp(34px, 3.6vw, 68px) !important;
}

@media (min-width: 861px) {
  .floating-header .topbar-corner-account {
    position: absolute !important;
    top: 50% !important;
    right: clamp(18px, 2.2vw, 34px) !important;
    transform: translateY(-50%) !important;
    z-index: 3 !important;

    margin: 0 !important;
    width: 52px !important;
    height: 52px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 auto !important;
  }

  .floating-header .topbar-corner-account .account-icon-button {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    min-height: 52px !important;
    padding: 0 !important;
  }

  .floating-header .floating-nav {
    padding-right: 72px !important;
  }
}

@media (max-width: 860px) {
  .floating-header,
  body.news-focus-mode .floating-header {
    top: 16px !important;
  }

  .floating-header .floating-nav {
    padding-right: 0 !important;
  }
}

@media (max-width: 560px) {
  .floating-header,
  body.news-focus-mode .floating-header {
    margin-top: 10px !important;
    padding: 18px 20px !important;
  }
}
/* Phone-friendly top bar: logo/account stay compact, nav pills wrap into two tidy rows */
@media (max-width: 700px) {
  .page::before,
  body.news-focus-mode .page::before {
    height: 152px !important;
  }

  .floating-header,
  body.news-focus-mode .floating-header {
    width: calc(100% - 18px) !important;
    max-width: 520px !important;
    min-height: 0 !important;
    margin: 8px auto 0 !important;
    padding: 0 !important;
    top: 8px !important;
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    grid-template-areas:
      "logo spacer account"
      "nav nav nav" !important;
    align-items: center !important;
    gap: 8px 10px !important;
    overflow: visible !important;
  }

  .floating-header .logo-mark {
    grid-area: logo !important;
    position: relative !important;
    inset: auto !important;
    width: auto !important;
    transform: none !important;
    z-index: 2 !important;
  }

  .floating-header .logo-mark img {
    width: 44px !important;
    max-width: 44px !important;
  }

  .floating-header .topbar-corner-account {
    grid-area: account !important;
    justify-self: end !important;
    align-self: center !important;
    margin: 0 !important;
    width: 42px !important;
    height: 42px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .floating-header .topbar-corner-account .account-icon-button,
  body.news-focus-mode .floating-header .topbar-corner-account .account-icon-button {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    padding: 0 !important;
    display: inline-grid !important;
    place-items: center !important;
    border-radius: 999px !important;
  }

  .floating-header .topbar-corner-account .account-icon-button svg {
    width: 22px !important;
    height: 22px !important;
  }

  .floating-header .floating-nav {
    grid-area: nav !important;
    grid-column: 1 / -1 !important;
    order: initial !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    overflow: visible !important;
  }

  .floating-header .floating-nav > *,
  .floating-header .nav-item,
  .floating-header .floating-nav > .nav-link,
  .floating-header .floating-nav > .dropdown > .nav-trigger {
    width: auto !important;
    min-width: 0 !important;
    flex: 0 0 auto !important;
  }

  .floating-header .floating-nav > .nav-link,
  .floating-header .floating-nav > .dropdown > .nav-trigger,
  body.news-focus-mode .floating-header .floating-nav > .nav-link,
  body.news-focus-mode .floating-header .floating-nav > .dropdown > .nav-trigger {
    width: auto !important;
    min-height: 38px !important;
    height: 38px !important;
    padding: 0 12px !important;
    font-size: .82rem !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    border-radius: 999px !important;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .18) !important;
    transform: none !important;
  }

  .floating-header .dropdown-menu {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 0 !important;
    right: auto !important;
    transform: translateY(8px) scale(.98) !important;
    min-width: 176px !important;
    width: max-content !important;
    max-width: calc(100vw - 28px) !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 10px 0 !important;
    overflow: visible !important;
    color: #111318 !important;
    background: rgba(255, 255, 255, .98) !important;
    border: 1px solid rgba(7, 17, 31, .08) !important;
    border-radius: 18px !important;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .16) !important;
  }

  .floating-header .dropdown.is-open .dropdown-menu {
    transform: translateY(0) scale(1) !important;
  }

  .floating-header .dropdown-menu::before {
    display: block !important;
    left: 28px !important;
    transform: rotate(45deg) !important;
  }

  .floating-header .dropdown-menu a,
  .floating-header .dropdown-menu-note {
    padding: 5px 18px !important;
  }

  .floating-header .technology-dropdown-menu {
    min-width: min(250px, calc(100vw - 40px)) !important;
  }

  .floating-header .technology-dropdown-menu,
  .floating-header .technology-dropdown-menu .dropdown-section {
    justify-items: center !important;
    text-align: center !important;
  }
}

@media (max-width: 390px) {
  .page::before,
  body.news-focus-mode .page::before {
    height: 146px !important;
  }

  .floating-header,
  body.news-focus-mode .floating-header {
    width: calc(100% - 14px) !important;
    gap: 7px 8px !important;
  }

  .floating-header .logo-mark img {
    width: 40px !important;
    max-width: 40px !important;
  }

  .floating-header .floating-nav {
    gap: 6px !important;
  }

  .floating-header .floating-nav > .nav-link,
  .floating-header .floating-nav > .dropdown > .nav-trigger,
  body.news-focus-mode .floating-header .floating-nav > .nav-link,
  body.news-focus-mode .floating-header .floating-nav > .dropdown > .nav-trigger {
    min-height: 36px !important;
    height: 36px !important;
    padding: 0 10px !important;
    font-size: .78rem !important;
  }

  .floating-header .topbar-corner-account,
  .floating-header .topbar-corner-account .account-icon-button,
  body.news-focus-mode .floating-header .topbar-corner-account .account-icon-button {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
  }
}

/* FINAL mobile topbar fix:
   centered large logo, stable on scroll, clean dropdowns */
@media (max-width: 760px) {
  .page::before,
  body.news-focus-mode .page::before {
    height: 178px !important;
  }

  .floating-header,
  body.news-focus-mode .floating-header {
    --mobile-side-space: 48px;

    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    padding: 16px 8px 12px !important;
    top: 0 !important;

    display: grid !important;
    grid-template-columns:
      minmax(var(--mobile-side-space), 1fr)
      auto
      minmax(var(--mobile-side-space), 1fr) !important;
    grid-template-areas:
      ". logo account"
      "nav nav nav" !important;

    align-items: center !important;
    justify-items: center !important;
    gap: 16px 0 !important;

    background: #000 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
    isolation: isolate !important;
  }

  .floating-header .logo-mark {
    grid-area: logo !important;
    justify-self: center !important;
    align-self: center !important;
    position: relative !important;
    inset: auto !important;
    width: auto !important;
    transform: none !important;
    z-index: 3 !important;
  }

  .floating-header .logo-mark img {
    width: clamp(92px, 27vw, 128px) !important;
    max-width: none !important;
    height: auto !important;
    display: block !important;
  }

  .floating-header .topbar-corner-account {
    grid-area: account !important;
    justify-self: end !important;
    align-self: center !important;
    width: var(--mobile-side-space) !important;
    height: 44px !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    z-index: 4 !important;
  }

  .floating-header .account-icon-button,
  body.news-focus-mode .floating-header .account-icon-button {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    padding: 0 !important;
    display: grid !important;
    place-items: center !important;
    border-radius: 999px !important;
    color: #111318 !important;
    background: #f7fbff !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .floating-header .account-person-icon,
  .floating-header .account-person-icon path,
  .floating-header .account-person-icon circle {
    width: 23px !important;
    height: 23px !important;
    stroke: currentColor !important;
    fill: none !important;
  }

  .floating-header .floating-nav {
    grid-area: nav !important;
    position: relative !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 0 6px !important;

    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;

    overflow: visible !important;
    z-index: 2 !important;
  }

  .floating-header .floating-nav > *,
  .floating-header .nav-item {
    width: auto !important;
    min-width: 0 !important;
    flex: 0 0 auto !important;
  }

  .floating-header .nav-trigger,
  .floating-header .nav-link,
  body.news-focus-mode .floating-header .nav-trigger,
  body.news-focus-mode .floating-header .nav-link {
    width: auto !important;
    height: 38px !important;
    min-height: 38px !important;
    padding: 0 14px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    color: #111318 !important;
    background: #f7fbff !important;
    border-radius: 999px !important;
    font-size: .84rem !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    box-shadow: none !important;
    transform: none !important;
  }

  /* Important: dropdowns are positioned under the whole nav,
     not inside a wrapped nav pill. */
  .floating-header .dropdown {
    position: static !important;
  }

  .floating-header .dropdown-menu {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    left: 50% !important;
    right: auto !important;
    z-index: 500 !important;

    width: min(280px, calc(100vw - 28px)) !important;
    min-width: 176px !important;
    max-width: calc(100vw - 28px) !important;
    max-height: min(55vh, 360px) !important;
    overflow-y: auto !important;

    padding: 12px !important;
    display: grid !important;
    gap: 8px !important;

    color: #111318 !important;
    background: #f7fbff !important;
    border: 1px solid rgba(7, 17, 31, .08) !important;
    border-radius: 18px !important;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .22) !important;

    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateX(-50%) translateY(8px) scale(.98) !important;
    transform-origin: top center !important;
  }

  .floating-header .dropdown.is-open .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) scale(1) !important;
  }

  .floating-header .dropdown-menu::before {
    display: none !important;
  }

  .floating-header .dropdown-menu a,
  .floating-header .dropdown-menu-note {
    width: 100% !important;
    padding: 9px 12px !important;
    color: #111318 !important;
    text-align: center !important;
    border-radius: 12px !important;
    white-space: nowrap !important;
  }

  .floating-header .technology-dropdown-menu,
  .floating-header .technology-dropdown-menu .dropdown-section {
    justify-items: center !important;
    text-align: center !important;
  }

  .floating-header .dropdown-section-title {
    text-align: center !important;
  }
}

@media (max-width: 390px) {
  .floating-header .logo-mark img {
    width: clamp(86px, 26vw, 108px) !important;
  }

  .floating-header .nav-trigger,
  .floating-header .nav-link {
    height: 36px !important;
    min-height: 36px !important;
    padding: 0 11px !important;
    font-size: .79rem !important;
  }
}

/* Homepage material correction: replace only the leather/carbon panel texture. */
body.home-aluminum-panels .home-community-preview,
body.home-aluminum-panels .hero,
body.home-aluminum-panels .home-planned-cards article {
  background-color: #d8dde1 !important;
  background-image:
    linear-gradient(112deg,
      rgba(255, 255, 255, .96) 0%,
      rgba(255, 255, 255, .44) 16%,
      rgba(125, 134, 142, .18) 36%,
      rgba(255, 255, 255, .82) 56%,
      rgba(132, 141, 149, .20) 78%,
      rgba(248, 250, 251, .92) 100%),
    repeating-linear-gradient(0deg,
      rgba(255, 255, 255, .20) 0 1px,
      rgba(72, 80, 87, .055) 1px 2px,
      transparent 2px 4px),
    linear-gradient(180deg, #f7f9fa 0%, #c5cbd0 48%, #eef1f3 100%) !important;
  background-size: 100% 100%, 100% 4px, 100% 100% !important;
  background-position: 0 0, 0 0, 0 0 !important;
  border-color: rgba(255, 255, 255, .82) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .98),
    inset 0 -1px 0 rgba(74, 82, 89, .28),
    inset 1px 0 0 rgba(255, 255, 255, .48),
    0 18px 48px rgba(0, 0, 0, .30) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Remove only the old carbon/leather overlays from those same panels. */
body.home-aluminum-panels .home-community-preview::before,
body.home-aluminum-panels .home-community-preview::after,
body.home-aluminum-panels .hero::before,
body.home-aluminum-panels .hero::after,
body.home-aluminum-panels .home-planned-cards article::before,
body.home-aluminum-panels .home-planned-cards article::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

/* Foreground contrast inside the newly light metal panels. */
body.home-aluminum-panels .hero h1,
body.home-aluminum-panels .hero h2,
body.home-aluminum-panels .hero .lede,
body.home-aluminum-panels .hero code,
body.home-aluminum-panels .home-planned-cards article h2,
body.home-aluminum-panels .home-planned-cards article p,
body.home-aluminum-panels .home-planned-cards article span {
  color: #171b1f !important;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .46);
}

body.home-aluminum-panels .hero .eyebrow,
body.home-aluminum-panels .hero .home-community-eyebrow-link,
body.home-aluminum-panels .home-community-preview-header .eyebrow,
body.home-aluminum-panels .home-community-preview-header .home-community-eyebrow-link {
  color: #315d68 !important;
}

/* Final homepage panel refinement: smoother polished aluminum, no panel shadows, logo-cyan labels */
body.home-aluminum-panels .home-community-preview,
body.home-aluminum-panels .hero,
body.home-aluminum-panels .home-planned-cards article {
  background-color: #d9dde1 !important;
  background-image:
    radial-gradient(circle at 20% 14%, rgba(255, 255, 255, .76) 0%, rgba(255, 255, 255, .34) 15%, transparent 28%),
    linear-gradient(135deg,
      rgba(252, 253, 253, .98) 0%,
      rgba(236, 239, 242, .98) 22%,
      rgba(212, 216, 221, .98) 49%,
      rgba(245, 247, 248, .98) 76%,
      rgba(207, 212, 217, .98) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(0, 0, 0, .035)) !important;
  background-size: 100% 100%, 100% 100%, 100% 100% !important;
  background-position: 0 0, 0 0, 0 0 !important;
  border: 1px solid rgba(255, 255, 255, .72) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.home-aluminum-panels .home-community-post,
body.home-aluminum-panels .home-community-post-photo {
  background-color: #cfd4d9 !important;
  background-image:
    radial-gradient(circle at 16% 12%, rgba(255, 255, 255, .42), transparent 24%),
    linear-gradient(135deg,
      rgba(240, 242, 244, .96) 0%,
      rgba(212, 217, 222, .96) 36%,
      rgba(187, 193, 199, .96) 58%,
      rgba(223, 227, 231, .96) 100%) !important;
  border: 1px solid rgba(255, 255, 255, .42) !important;
  box-shadow: none !important;
}

body.home-aluminum-panels .home-community-preview::before,
body.home-aluminum-panels .home-community-preview::after,
body.home-aluminum-panels .home-community-post::before,
body.home-aluminum-panels .home-community-post::after,
body.home-aluminum-panels .hero::before,
body.home-aluminum-panels .hero::after,
body.home-aluminum-panels .home-planned-cards article::before,
body.home-aluminum-panels .home-planned-cards article::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

body.home-aluminum-panels .hero h1,
body.home-aluminum-panels .hero h2,
body.home-aluminum-panels .hero .lede,
body.home-aluminum-panels .hero code,
body.home-aluminum-panels .home-planned-cards article h2,
body.home-aluminum-panels .home-planned-cards article p,
body.home-aluminum-panels .home-planned-cards article span,
body.home-aluminum-panels .home-community-preview h2,
body.home-aluminum-panels .home-community-post,
body.home-aluminum-panels .home-community-post p,
body.home-aluminum-panels .home-community-post span,
body.home-aluminum-panels .home-community-status {
  color: #151a1f !important;
  text-shadow: none !important;
}

body.home-aluminum-panels .hero .eyebrow,
body.home-aluminum-panels .hero .home-community-eyebrow-link,
body.home-aluminum-panels .home-community-preview-header .eyebrow,
body.home-aluminum-panels .home-community-preview-header .home-community-eyebrow-link {
  color: #00cbdc !important;
}


/* Final requested typography and Updates & Notes cleanup. */
body.home-aluminum-panels .hero h2 {
  margin: 0 0 28px !important;
  color: #151a1f !important;
  font-size: clamp(1.55rem, 2.7vw, 2.35rem) !important;
  font-weight: 700 !important;
  line-height: 1.12 !important;
  letter-spacing: -.035em !important;
  text-shadow: none !important;
}

body.home-aluminum-panels .hero .lede,
body.home-aluminum-panels .home-community-post-body,
body.home-aluminum-panels .home-community-status {
  color: #151a1f !important;
  font-size: clamp(1.05rem, 2vw, 1.32rem) !important;
  font-weight: 400 !important;
  line-height: 1.62 !important;
  letter-spacing: normal !important;
  text-shadow: none !important;
}

body.home-aluminum-panels .home-community-post {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

body.home-aluminum-panels .home-community-post-title {
  margin: 0 0 12px !important;
  color: #151a1f !important;
  font-size: clamp(1.05rem, 2vw, 1.32rem) !important;
  font-weight: 400 !important;
  line-height: 1.62 !important;
  letter-spacing: normal !important;
  text-shadow: none !important;
}

/* Requested label sizing: Updates & Notes and Documentation +30%; material stays shadow-free. */
body.home-aluminum-panels .hero .eyebrow,
body.home-aluminum-panels .hero .home-community-eyebrow-link,
body.home-aluminum-panels .home-community-preview-header .eyebrow,
body.home-aluminum-panels .home-community-preview-header .home-community-eyebrow-link {
  font-size: 1.014rem !important;
  line-height: 1.2 !important;
}

body.home-aluminum-panels .home-community-preview,
body.home-aluminum-panels .hero,
body.home-aluminum-panels .home-planned-cards article,
body.home-aluminum-panels .home-community-post,
body.home-aluminum-panels .home-community-post-photo {
  box-shadow: none !important;
  filter: none !important;
}

/* Requested homepage heading match and clean, shadow-free material panels. */
body.home-aluminum-panels .hero h1 {
  margin: 0 0 28px !important;
  color: #151a1f !important;
  font-size: clamp(1.55rem, 2.7vw, 2.35rem) !important;
  font-weight: 700 !important;
  line-height: 1.12 !important;
  letter-spacing: -.035em !important;
  text-shadow: none !important;
}

body.home-aluminum-panels .home-community-preview,
body.home-aluminum-panels .hero,
body.home-aluminum-panels .home-planned-cards article {
  background-color: #dde1e4 !important;
  background-image: linear-gradient(135deg,
    #f7f8f9 0%,
    #e9ecef 34%,
    #d9dde1 68%,
    #eef0f2 100%) !important;
  box-shadow: none !important;
  filter: none !important;
}

/* Revision: restore Featurets display scale and make homepage panels read as brushed aluminium. */
body.home-aluminum-panels .hero h1 {
  margin: 0 !important;
  font-size: clamp(2.25rem, 7vw, 5.8rem) !important;
  font-weight: 700 !important;
  line-height: .94 !important;
  letter-spacing: -.07em !important;
}

body.home-aluminum-panels .home-community-preview,
body.home-aluminum-panels .hero,
body.home-aluminum-panels .home-planned-cards article {
  background-color: #bfc4c8 !important;
  background-image:
    linear-gradient(105deg,
      rgba(255,255,255,.82) 0%,
      rgba(255,255,255,.18) 18%,
      rgba(75,82,88,.14) 35%,
      rgba(255,255,255,.62) 52%,
      rgba(80,87,93,.16) 70%,
      rgba(255,255,255,.72) 100%),
    repeating-linear-gradient(0deg,
      rgba(255,255,255,.34) 0,
      rgba(255,255,255,.34) 1px,
      rgba(77,84,90,.13) 1px,
      rgba(77,84,90,.13) 2px,
      transparent 2px,
      transparent 4px),
    linear-gradient(180deg,
      #f2f4f5 0%,
      #c8cdd1 12%,
      #aeb4b9 48%,
      #d8dcdf 82%,
      #aeb4b8 100%) !important;
  background-size: 100% 100%, 100% 4px, 100% 100% !important;
  border: 1px solid #dfe3e6 !important;
  outline: 1px solid rgba(74,81,87,.5) !important;
  outline-offset: -2px !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.95),
    inset 0 -1px 0 rgba(55,61,66,.45),
    inset 1px 0 0 rgba(255,255,255,.55),
    inset -1px 0 0 rgba(55,61,66,.28) !important;
  filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Final revision: remove all shadows from brushed-aluminium material panels. */
body.home-aluminum-panels .home-community-preview,
body.home-aluminum-panels .hero,
body.home-aluminum-panels .home-planned-cards article,
body.home-aluminum-panels .home-community-post,
body.home-aluminum-panels .home-community-post-photo {
  box-shadow: none !important;
  text-shadow: none !important;
  filter: none !important;
}

/* Shadow-removal correction: eliminate all dark-cast gradients from homepage aluminium panels. */
body.home-aluminum-panels .home-community-preview,
body.home-aluminum-panels .hero,
body.home-aluminum-panels .home-planned-cards article,
body.home-aluminum-panels .home-community-post,
body.home-aluminum-panels .home-community-post-photo {
  background-color: #dfe3e6 !important;
  background-image:
    repeating-linear-gradient(0deg,
      rgba(255,255,255,.20) 0px,
      rgba(255,255,255,.20) 1px,
      rgba(170,176,181,.18) 1px,
      rgba(170,176,181,.18) 2px,
      rgba(230,233,236,.16) 2px,
      rgba(230,233,236,.16) 4px),
    linear-gradient(180deg,
      #f2f4f6 0%,
      #dfe3e6 50%,
      #eef1f3 100%) !important;
  background-size: 100% 4px, 100% 100% !important;
  background-position: 0 0, 0 0 !important;
  background-repeat: repeat, no-repeat !important;
  border: 1px solid rgba(255,255,255,.72) !important;
  outline: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
  filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.home-aluminum-panels .home-community-preview::before,
body.home-aluminum-panels .home-community-preview::after,
body.home-aluminum-panels .hero::before,
body.home-aluminum-panels .hero::after,
body.home-aluminum-panels .home-planned-cards article::before,
body.home-aluminum-panels .home-planned-cards article::after,
body.home-aluminum-panels .home-community-post::before,
body.home-aluminum-panels .home-community-post::after,
body.home-aluminum-panels .home-community-post-photo::before,
body.home-aluminum-panels .home-community-post-photo::after {
  content: none !important;
  display: none !important;
  background: none !important;
  box-shadow: none !important;
  filter: none !important;
}

/* Match Updates & Notes post title to the Documentation title style when a title exists. */
body.home-aluminum-panels .home-community-post-title {
  margin: 0 0 28px !important;
  color: #151a1f !important;
  font-size: clamp(1.55rem, 2.7vw, 2.35rem) !important;
  font-weight: 700 !important;
  line-height: 1.12 !important;
  letter-spacing: -.035em !important;
  text-shadow: none !important;
}

/* Remove the inner rectangle surrounding the Updates & Notes text. */
body.home-aluminum-panels .home-community-preview .home-community-post {
  border: 0 !important;
  outline: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

/* Final material update: Futurama-style brushed robot aluminium finish. */
body.home-aluminum-panels .home-community-preview,
body.home-aluminum-panels .hero,
body.home-aluminum-panels .home-planned-cards article,
body.home-aluminum-panels .home-community-post-photo {
  background-color: #c8ced3 !important;
  background-image:
    radial-gradient(circle at 18% 14%, rgba(255,255,255,.96) 0%, rgba(255,255,255,.50) 10%, rgba(255,255,255,.16) 18%, transparent 30%),
    linear-gradient(102deg,
      #f7f9fb 0%,
      #e3e8ec 16%,
      #b6bdc4 31%,
      #eef2f5 47%,
      #9ea7af 62%,
      #e9edf0 79%,
      #b4bcc3 100%),
    repeating-linear-gradient(0deg,
      rgba(255,255,255,.24) 0px,
      rgba(255,255,255,.24) 1px,
      rgba(130,139,147,.13) 1px,
      rgba(130,139,147,.13) 2px,
      rgba(239,242,244,.16) 2px,
      rgba(239,242,244,.16) 4px),
    linear-gradient(180deg,
      rgba(255,255,255,.30) 0%,
      rgba(0,0,0,.06) 100%) !important;
  background-size: 100% 100%, 100% 100%, 100% 4px, 100% 100% !important;
  background-position: 0 0, 0 0, 0 0, 0 0 !important;
  background-repeat: no-repeat, no-repeat, repeat, no-repeat !important;
  border: 3px solid rgba(255,255,255,.82) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.96),
    inset 0 -1px 0 rgba(108,116,124,.44),
    inset 1px 0 0 rgba(255,255,255,.50),
    inset -1px 0 0 rgba(96,104,112,.22) !important;
  filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.home-aluminum-panels .home-community-preview,
body.home-aluminum-panels .hero,
body.home-aluminum-panels .home-planned-cards article {
  position: relative;
  overflow: hidden;
}

body.home-aluminum-panels .home-community-preview::before,
body.home-aluminum-panels .hero::before,
body.home-aluminum-panels .home-planned-cards article::before,
body.home-aluminum-panels .home-community-post-photo::before {
  content: "" !important;
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(255,255,255,.38) 0%,
      rgba(255,255,255,.14) 12%,
      transparent 28%,
      transparent 72%,
      rgba(0,0,0,.04) 100%),
    linear-gradient(90deg,
      transparent 0%,
      rgba(255,255,255,.18) 32%,
      rgba(255,255,255,.05) 50%,
      rgba(0,0,0,.04) 74%,
      transparent 100%) !important;
  mix-blend-mode: screen;
}

body.home-aluminum-panels .home-community-preview::after,
body.home-aluminum-panels .hero::after,
body.home-aluminum-panels .home-planned-cards article::after,
body.home-aluminum-panels .home-community-post-photo::after {
  content: "" !important;
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.82),
    inset 0 -1px 0 rgba(90,98,106,.22) !important;
}

body.home-aluminum-panels .home-community-preview .home-community-post {
  border: 0 !important;
  outline: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

/* Aluminum border refinement: brighter neutral-silver edges with machined depth. */
body.home-aluminum-panels .home-community-preview,
body.home-aluminum-panels .hero,
body.home-aluminum-panels .home-planned-cards article,
body.home-aluminum-panels .home-community-post-photo {
  border: 3px solid #d9dde0 !important;
  outline: 1px solid rgba(112, 119, 125, .72) !important;
  outline-offset: -4px !important;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, .98),
    inset 2px 0 0 rgba(247, 249, 250, .82),
    inset 0 -2px 0 rgba(116, 123, 129, .58),
    inset -2px 0 0 rgba(151, 157, 162, .42) !important;
}

/* Keep the Updates & Notes content area borderless. */
body.home-aluminum-panels .home-community-preview .home-community-post {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

/* Fix: remove the two diagonal shadow bands from the aluminium material. */
body.home-aluminum-panels .home-community-preview,
body.home-aluminum-panels .hero,
body.home-aluminum-panels .home-planned-cards article,
body.home-aluminum-panels .home-community-post-photo {
  background-color: #c8ced3 !important;
  background-image:
    radial-gradient(circle at 18% 14%, rgba(255,255,255,.72) 0%, rgba(255,255,255,.30) 12%, rgba(255,255,255,.10) 22%, transparent 34%),
    repeating-linear-gradient(0deg,
      rgba(255,255,255,.18) 0px,
      rgba(255,255,255,.18) 1px,
      rgba(130,139,147,.10) 1px,
      rgba(130,139,147,.10) 2px,
      rgba(239,242,244,.12) 2px,
      rgba(239,242,244,.12) 4px),
    linear-gradient(180deg,
      rgba(255,255,255,.24) 0%,
      rgba(255,255,255,.06) 48%,
      rgba(0,0,0,.035) 100%) !important;
  background-size: 100% 100%, 100% 4px, 100% 100% !important;
  background-position: 0 0, 0 0, 0 0 !important;
  background-repeat: no-repeat, repeat, no-repeat !important;
}

/* Correction: smooth aluminium surface with no repeated horizontal brush lines. */
body.home-aluminum-panels .home-community-preview,
body.home-aluminum-panels .hero,
body.home-aluminum-panels .home-planned-cards article,
body.home-aluminum-panels .home-community-post-photo {
  background-color: #c8ced3 !important;
  background-image:
    radial-gradient(circle at 18% 14%,
      rgba(255,255,255,.72) 0%,
      rgba(255,255,255,.30) 12%,
      rgba(255,255,255,.10) 22%,
      transparent 34%),
    linear-gradient(90deg,
      #eef1f3 0%,
      #d8dde1 24%,
      #bcc3c9 48%,
      #dce1e4 72%,
      #c5ccd1 100%),
    linear-gradient(180deg,
      rgba(255,255,255,.20) 0%,
      rgba(255,255,255,.05) 52%,
      rgba(0,0,0,.025) 100%) !important;
  background-size: 100% 100%, 100% 100%, 100% 100% !important;
  background-position: 0 0, 0 0, 0 0 !important;
  background-repeat: no-repeat !important;
}


/* Final correction: use even edge shadow across the full aluminium material, not a centered band. */
body.home-aluminum-panels .home-community-preview,
body.home-aluminum-panels .hero,
body.home-aluminum-panels .home-planned-cards article,
body.home-aluminum-panels .home-community-post-photo {
  background-color: #d3d8dc !important;
  background-image:
    linear-gradient(180deg,
      rgba(255,255,255,.26) 0%,
      rgba(255,255,255,.12) 22%,
      rgba(255,255,255,.06) 55%,
      rgba(0,0,0,.03) 100%),
    linear-gradient(135deg,
      #eef1f3 0%,
      #d9dee2 38%,
      #cfd5d9 68%,
      #dbe0e3 100%) !important;
  background-size: 100% 100%, 100% 100% !important;
  background-position: 0 0, 0 0 !important;
  background-repeat: no-repeat !important;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.42),
    inset 0 0 22px rgba(0,0,0,.055),
    inset 0 1px 0 rgba(255,255,255,.28),
    0 18px 40px rgba(0,0,0,.18) !important;
}


/* Reusable Sign in / Create account auth surface using the same aluminium material. */
:root {
  --bm-aluminum-surface:
    linear-gradient(180deg,
      rgba(255,255,255,.26) 0%,
      rgba(255,255,255,.12) 22%,
      rgba(255,255,255,.06) 55%,
      rgba(0,0,0,.03) 100%),
    linear-gradient(135deg,
      #eef1f3 0%,
      #d9dee2 38%,
      #cfd5d9 68%,
      #dbe0e3 100%);
  --bm-aluminum-border: rgba(255,255,255,.42);
  --bm-aluminum-shadow:
    inset 0 0 0 1px rgba(255,255,255,.42),
    inset 0 0 22px rgba(0,0,0,.055),
    inset 0 1px 0 rgba(255,255,255,.28),
    0 28px 70px rgba(0,0,0,.28);
  --bm-aluminum-field:
    linear-gradient(180deg, rgba(255,255,255,.52), rgba(255,255,255,.30));
}

/* Optional reusable utility classes for any sign in / account card. */
.auth-surface-aluminum,
.auth-panel-aluminum,
.signin-surface-aluminum {
  background-color: #d3d8dc !important;
  background-image: var(--bm-aluminum-surface) !important;
  background-size: 100% 100% !important;
  background-repeat: no-repeat !important;
  border: 1px solid var(--bm-aluminum-border) !important;
  box-shadow: var(--bm-aluminum-shadow) !important;
  color: #111318 !important;
}

/* Apply the same aluminium material to the reusable auth modal (Create + Sign in modes). */
.auth-modal.carbon-auth-modal {
  color: #111318 !important;
  background-color: #d3d8dc !important;
  background-image: var(--bm-aluminum-surface) !important;
  background-size: 100% 100% !important;
  background-repeat: no-repeat !important;
  border: 1px solid var(--bm-aluminum-border) !important;
  box-shadow: var(--bm-aluminum-shadow) !important;
}

.auth-modal.carbon-auth-modal .auth-eyebrow {
  color: #45636d !important;
}

.auth-modal.carbon-auth-modal h2,
.auth-modal.carbon-auth-modal label,
.auth-modal.carbon-auth-modal .auth-status,
.auth-modal.carbon-auth-modal .auth-status.success,
.auth-modal.carbon-auth-modal .auth-status.error {
  color: #111318 !important;
}

.auth-modal.carbon-auth-modal .auth-form input {
  color: #111318 !important;
  background: var(--bm-aluminum-field) !important;
  background-image: none !important;
  border: 1px solid rgba(17,19,24,.12) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.65),
    inset 0 0 16px rgba(0,0,0,.035) !important;
}

.auth-modal.carbon-auth-modal .auth-form input::placeholder {
  color: rgba(17,19,24,.54) !important;
}

.auth-modal.carbon-auth-modal .auth-form input:focus {
  border-color: rgba(0, 174, 189, .75) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.7),
    0 0 0 4px rgba(0, 174, 189, .14) !important;
}

.auth-modal.carbon-auth-modal .auth-action-button:not(.google-auth-button) {
  background: linear-gradient(180deg, #ffffff, #edf1f4) !important;
  color: #111318 !important;
  border: 1px solid rgba(255,255,255,.60) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.82),
    0 10px 24px rgba(0,0,0,.14) !important;
}

.auth-modal.carbon-auth-modal .auth-action-button.google-auth-button {
  background: linear-gradient(180deg, rgba(255,255,255,.34), rgba(255,255,255,.18)) !important;
  color: #111318 !important;
  border: 1px solid rgba(17,19,24,.10) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.55),
    0 8px 18px rgba(0,0,0,.10) !important;
}

.auth-modal.carbon-auth-modal .auth-close {
  color: #111318 !important;
  background: linear-gradient(180deg, rgba(255,255,255,.44), rgba(255,255,255,.26)) !important;
  border: 1px solid rgba(17,19,24,.10) !important;
}

.auth-modal.carbon-auth-modal .auth-mode-switch {
  color: #235967 !important;
}

.auth-modal.carbon-auth-modal .auth-mode-switch:hover,
.auth-modal.carbon-auth-modal .auth-mode-switch:focus-visible {
  color: #111318 !important;
}


/* Keep auth labels and mode actions in the Biological Machinery brand color. */
.auth-modal.carbon-auth-modal .auth-eyebrow,
.auth-modal.carbon-auth-modal .auth-mode-switch,
.auth-modal.carbon-auth-modal .auth-mode-switch:hover,
.auth-modal.carbon-auth-modal .auth-mode-switch:focus-visible {
  color: #00aebd !important;
}


/* App cards: matching smooth aluminium material with an even 3px border. */
:root {
  --app-aluminum-surface:
    linear-gradient(180deg,
      rgba(255,255,255,.26) 0%,
      rgba(255,255,255,.12) 22%,
      rgba(255,255,255,.06) 55%,
      rgba(0,0,0,.03) 100%),
    linear-gradient(135deg,
      #eef1f3 0%,
      #d9dee2 38%,
      #cfd5d9 68%,
      #dbe0e3 100%);
  --app-aluminum-border: rgba(255,255,255,.46);
  --app-aluminum-shadow:
    inset 0 0 0 1px rgba(255,255,255,.42),
    inset 0 0 22px rgba(0,0,0,.055),
    inset 0 1px 0 rgba(255,255,255,.28),
    0 24px 60px rgba(0,0,0,.24);
}

.app-hero,
.app-panel {
  color: #111318 !important;
  background-color: #d3d8dc !important;
  background-image: var(--app-aluminum-surface) !important;
  background-size: 100% 100% !important;
  background-position: 0 0 !important;
  background-repeat: no-repeat !important;
  border: 3px solid var(--app-aluminum-border) !important;
  box-shadow: var(--app-aluminum-shadow) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.app-hero h1,
.app-description h2,
.app-panel h2,
.app-panel h3,
.release-list strong {
  color: #111318 !important;
}

.app-description,
.app-description p,
.app-description li,
.app-panel p,
.app-panel li,
.release-list li {
  color: rgba(17,19,24,.70) !important;
}

.release-list li {
  border-bottom-color: rgba(17,19,24,.10) !important;
}

.release-scroll {
  scrollbar-color: rgba(17,19,24,.28) rgba(255,255,255,.24) !important;
}

.release-scroll::-webkit-scrollbar-track {
  background: rgba(255,255,255,.24) !important;
}

.release-scroll::-webkit-scrollbar-thumb {
  background: rgba(17,19,24,.28) !important;
}

.app-privacy-lock {
  color: #111318 !important;
}


/* Profile aluminium cards — matches shop and app card material with a 3px edge. */
.account-card {
  color: #111318 !important;
  background-color: #d3d8dc !important;
  background-image:
    linear-gradient(180deg,
      rgba(255,255,255,.26) 0%,
      rgba(255,255,255,.12) 22%,
      rgba(255,255,255,.06) 55%,
      rgba(0,0,0,.03) 100%),
    linear-gradient(135deg,
      #eef1f3 0%,
      #d9dee2 38%,
      #cfd5d9 68%,
      #dbe0e3 100%) !important;
  background-size: 100% 100% !important;
  background-repeat: no-repeat !important;
  border: 3px solid rgba(255,255,255,.46) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.42),
    inset 0 0 22px rgba(0,0,0,.055),
    inset 0 1px 0 rgba(255,255,255,.28),
    0 24px 60px rgba(0,0,0,.24) !important;
}

.account-card h2,
.account-card p,
.account-card label,
.account-card .auth-status,
.account-card .profile-purchase-main strong,
.account-card .profile-purchase-main span,
.account-card .profile-purchase-session,
.account-card .profile-purchase-empty,
.account-card .profile-details dd {
  color: #111318 !important;
}

.account-card .auth-eyebrow,
.account-card .profile-details dt {
  color: #00aebd !important;
}

.profile-avatar {
  color: #0a5660 !important;
  background: rgba(255,255,255,.30) !important;
  border: 3px solid rgba(255,255,255,.46) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.65),
    inset 0 0 14px rgba(0,0,0,.04) !important;
}

.profile-purchase-item,
.profile-purchase-empty,
.profile-details div {
  color: #111318 !important;
  background: rgba(255,255,255,.28) !important;
  border: 3px solid rgba(255,255,255,.40) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.54),
    inset 0 0 14px rgba(0,0,0,.035) !important;
}

.settings-summary {
  border-bottom-color: rgba(17,19,24,.12) !important;
}

.settings-form input[type="text"] {
  color: #111318 !important;
  background: linear-gradient(180deg, rgba(255,255,255,.52), rgba(255,255,255,.30)) !important;
  border: 3px solid rgba(255,255,255,.42) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.65),
    inset 0 0 16px rgba(0,0,0,.035) !important;
}

.settings-form input[type="text"]::placeholder {
  color: rgba(17,19,24,.54) !important;
}

.settings-form input[type="text"]:focus {
  border-color: rgba(0,174,189,.62) !important;
  box-shadow: 0 0 0 4px rgba(0,174,189,.14) !important;
}


/* Profile border cleanup: keep one clean 3px aluminium edge without an inner duplicate line. */
.account-card {
  box-shadow:
    inset 0 0 22px rgba(0,0,0,.055),
    inset 0 1px 0 rgba(255,255,255,.28),
    0 24px 60px rgba(0,0,0,.24) !important;
}


/* Final profile edge cleanup: remove all inset edge shading that looked like a second border. */
.account-card {
  box-shadow: 0 24px 60px rgba(0,0,0,.24) !important;
}


/* Combine all profile sections into one aluminium card. */
.profile-page-no-back .profile-combined-card {
  display: grid;
  gap: 0 !important;
  margin-top: 18px;
  padding: 0 !important;
  overflow: hidden;
  color: #111318 !important;
  background-color: #d3d8dc !important;
  background-image: var(--bm-aluminum-surface) !important;
  background-size: 100% 100% !important;
  background-repeat: no-repeat !important;
  border: 3px solid rgba(255,255,255,.46) !important;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(0,0,0,.28) !important;
}

.profile-page-no-back .profile-combined-card > .account-card {
  margin: 0 !important;
  padding: clamp(24px, 5vw, 36px) !important;
  color: #111318 !important;
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.profile-page-no-back .profile-combined-card > .account-card:not(:first-child) {
  border-top: 1px solid rgba(17,19,24,.12) !important;
}

.profile-page-no-back .profile-combined-card > .account-card::before,
.profile-page-no-back .profile-combined-card > .account-card::after {
  content: none !important;
  display: none !important;
}

.profile-page-no-back .profile-combined-card .profile-purchase-item,
.profile-page-no-back .profile-combined-card .profile-purchase-empty {
  color: #111318 !important;
  background: rgba(255,255,255,.26) !important;
  border-color: rgba(17,19,24,.10) !important;
}

@media (max-width: 560px) {
  .profile-page-no-back .profile-combined-card {
    border-radius: 22px;
  }
}
