* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #020406;
  --bg-soft: #071014;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --muted-strong: rgba(255, 255, 255, 0.82);
  --border: rgba(255, 255, 255, 0.12);
  --border-soft: rgba(255, 255, 255, 0.08);
  --glass: rgba(255, 255, 255, 0.06);
  --glass-strong: rgba(255, 255, 255, 0.1);
  --blue: #1bbcff;
  --blue-soft: rgba(27, 188, 255, 0.22);
  --purple: #b58cff;
  --purple-soft: rgba(181, 140, 255, 0.24);
  --header-height: 58px;
  --max-width: 1180px;
  --z-page: 1;
  --z-header: 100;
  --z-dropdown: 500;
  --z-menu-backdrop: 900;
  --z-mobile-sheet: 1000;
  --z-dialog: 1100;
}

/* Final mobile header/account override: full-screen PLM sheets. */
body.mobile-nav-open,
body.account-menu-open,
body.account-photo-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .site-header {
    z-index: 1200;
  }

  .header-actions .nav-cta,
  .header-actions [aria-label="Client Login"],
  .header-actions [aria-label="Account menu"],
  .header-actions [aria-label="Account and login"] {
    display: inline-flex;
    min-width: 40px;
    min-height: 40px;
    align-items: center;
    justify-content: center;
  }

  .nav-menu {
    position: fixed;
    inset: 0;
    z-index: 1180;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: calc(env(safe-area-inset-top) + 82px) 18px calc(env(safe-area-inset-bottom) + 24px);
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.985);
    border: 0;
    border-radius: 0;
    background: radial-gradient(circle at 70% 0%, rgba(27, 188, 255, 0.16), transparent 38%), rgba(2, 5, 7, 0.94);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-menu.active {
    display: flex;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-menu::before {
    content: "Platinum Luxe Media";
    display: block;
    margin-bottom: 14px;
    color: white;
    font-size: 1.45rem;
    font-weight: 900;
  }

  .nav-menu a {
    min-height: 58px;
    justify-content: space-between;
    padding: 15px 16px;
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    text-align: left;
    font-size: 1.08rem;
    font-weight: 850;
    background: rgba(255, 255, 255, 0.045);
  }

  .nav-menu a::after {
    display: none;
  }

  .mobile-start-here-panel {
    display: grid;
    max-height: 0;
    overflow: hidden;
    gap: 8px;
    padding: 0;
    opacity: 0;
    transition: max-height 220ms ease, opacity 180ms ease, padding 180ms ease;
  }

  .mobile-start-here-panel.is-open {
    max-height: 720px;
    padding: 4px 0 10px;
    opacity: 1;
  }

  .mobile-start-here-panel a {
    min-height: auto;
    display: grid;
    gap: 4px;
    margin-left: 14px;
    padding: 12px 14px;
    border-radius: 16px;
    font-size: 0.95rem;
  }

  .mobile-start-here-panel span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.82rem;
    font-weight: 500;
  }

  .account-menu {
    position: fixed;
    inset: 0;
    z-index: 1190;
    display: block;
    overflow-y: auto;
    padding: calc(env(safe-area-inset-top) + 76px) 16px calc(env(safe-area-inset-bottom) + 18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
    background: radial-gradient(circle at 20% 0%, rgba(27, 188, 255, 0.18), transparent 36%), rgba(2, 5, 7, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .account-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .account-menu-inner {
    width: min(100%, 620px);
    margin: 0 auto;
    display: grid;
    gap: 16px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
  }

  .account-menu-close {
    justify-self: end;
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    padding: 0 14px;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
  }

  .account-menu-copy small {
    display: block;
    margin-top: 10px;
    color: rgba(142, 231, 255, 0.82);
    font-weight: 800;
  }

  .account-menu-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .account-menu-card {
    min-height: 66px;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    padding: 13px 14px;
    border-radius: 18px;
    text-align: left;
  }

  .account-menu-card span:last-child {
    grid-column: 2;
  }
}

/* Production mobile navigation/account sheets */
body.plm-mobile-overlay-open {
  overflow: hidden;
  touch-action: none;
}

.site-header {
  z-index: var(--z-header);
}

.mega-menu,
.account-menu {
  z-index: var(--z-dropdown);
}

.search-backdrop {
  z-index: var(--z-menu-backdrop);
}

.search-drawer {
  z-index: var(--z-dialog);
}

.plm-mobile-overlay-backdrop {
  position: fixed;
  inset: 0;
  z-index: var(--z-menu-backdrop);
  display: block;
  width: 100%;
  min-height: 100dvh;
  padding: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
  cursor: default;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: opacity 180ms ease;
}

.plm-mobile-overlay-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.plm-mobile-overlay-backdrop[hidden],
.plm-mobile-sheet[hidden] {
  display: none !important;
}

.plm-mobile-sheet {
  position: fixed;
  top: 0;
  right: 0;
  z-index: var(--z-mobile-sheet);
  width: min(100vw, 420px);
  height: 100dvh;
  max-width: 100vw;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  color: #ffffff;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 78% 0%, rgba(27, 188, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(9, 13, 16, 0.98), rgba(2, 4, 6, 0.98));
  box-shadow: -28px 0 90px rgba(0, 0, 0, 0.5);
  transform: translateX(102%);
  transition: transform 220ms ease;
}

.plm-mobile-sheet.is-open {
  transform: translateX(0);
}

.plm-mobile-sheet-header {
  position: sticky;
  top: 0;
  z-index: 2;
  min-height: calc(78px + env(safe-area-inset-top));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: calc(env(safe-area-inset-top) + 16px) 18px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 7, 9, 0.82);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.plm-mobile-account-sheet .plm-mobile-sheet-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 44px;
  align-items: center;
}

.plm-mobile-account-avatar {
  display: grid;
  place-items: center;
}

.plm-mobile-avatar {
  width: 58px;
  height: 58px;
  border-radius: 20px;
}

.plm-mobile-account-edit {
  min-height: 34px;
  margin-top: 9px;
  padding: 0 12px;
  color: white;
  border: 1px solid rgba(27, 188, 255, 0.24);
  border-radius: 999px;
  background: rgba(27, 188, 255, 0.1);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
}

.plm-mobile-sheet-header p,
.plm-mobile-settings-section h3 {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.plm-mobile-sheet-header strong {
  display: block;
  margin-top: 4px;
  color: #ffffff;
  font-size: clamp(1.2rem, 6vw, 1.7rem);
  line-height: 1.05;
}

.plm-mobile-sheet-header small {
  display: block;
  margin-top: 6px;
  max-width: 280px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  line-height: 1.35;
}

.plm-mobile-close {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}

.plm-mobile-close:hover,
.plm-mobile-close:focus-visible {
  color: #ffffff;
  border-color: rgba(27, 188, 255, 0.38);
  background: rgba(27, 188, 255, 0.12);
  outline: 2px solid rgba(27, 188, 255, 0.42);
  outline-offset: 2px;
}

.plm-mobile-sheet-scroll {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 16px 14px calc(env(safe-area-inset-bottom) + 20px);
}

.plm-mobile-nav-list,
.plm-mobile-account-content {
  display: grid;
  align-content: start;
  gap: 14px;
}

.plm-mobile-row,
.plm-mobile-signout {
  width: 100%;
  min-height: 52px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 14px 15px;
  color: rgba(255, 255, 255, 0.92);
  text-align: left;
  text-decoration: none;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.plm-mobile-row small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
}

.plm-mobile-row-chevron {
  color: rgba(255, 255, 255, 0.36);
  font-size: 1.3rem;
}

.plm-mobile-row:hover,
.plm-mobile-row:focus-visible,
.plm-mobile-signout:hover,
.plm-mobile-signout:focus-visible {
  color: #ffffff;
  background: rgba(27, 188, 255, 0.1);
  outline: 2px solid rgba(27, 188, 255, 0.34);
  outline-offset: -2px;
}

.plm-mobile-row[aria-current="page"] {
  color: #ffffff;
  background: rgba(27, 188, 255, 0.12);
}

.plm-mobile-nav-list .plm-mobile-row {
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.plm-mobile-settings-section {
  display: grid;
  gap: 8px;
}

.plm-mobile-settings-section h3 {
  padding: 0 8px;
}

.plm-mobile-settings-group {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.plm-mobile-settings-group .plm-mobile-row + .plm-mobile-row {
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.plm-mobile-account-footer {
  padding: 2px 0 0;
}

.plm-mobile-signout {
  justify-content: center;
  color: #ffd8df;
  border: 1px solid rgba(255, 109, 136, 0.2);
  border-radius: 18px;
  background: rgba(255, 109, 136, 0.08);
}

body.plm-mobile-overlay-open .dashboard-floating-card,
body.plm-mobile-overlay-open [class*="accessibility"],
body.plm-mobile-overlay-open [class*="floating"][class*="widget"],
body.search-open .dashboard-floating-card,
body.search-open [class*="accessibility"],
body.search-open [class*="floating"][class*="widget"] {
  z-index: var(--z-page) !important;
  pointer-events: none;
}

.account-photo-sheet[hidden] {
  display: none !important;
}

.account-photo-sheet {
  position: fixed;
  inset: 0;
  z-index: var(--z-dialog);
  display: grid;
  place-items: center;
  padding: 20px;
}

.account-photo-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(18px);
}

.account-photo-panel {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  max-height: calc(100dvh - 40px);
  display: grid;
  gap: 14px;
  overflow: hidden;
  padding: 18px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 80% 0%, rgba(27, 188, 255, 0.14), transparent 35%),
    rgba(5, 9, 12, 0.98);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
}

.account-photo-panel header,
.account-photo-panel footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.account-photo-close {
  width: 42px;
  min-height: 42px;
  padding: 0;
  font-size: 1.35rem;
}

.account-photo-preview {
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.account-photo-avatar {
  width: 112px;
  height: 112px;
  border-radius: 32px;
  font-size: 1.6rem;
}

.account-photo-preview > img {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border: 1px solid rgba(27, 188, 255, 0.24);
  border-radius: 32px;
}

.account-photo-file {
  min-height: 54px;
  display: grid;
  place-items: center;
  color: white;
  border: 1px dashed rgba(27, 188, 255, 0.36);
  border-radius: 18px;
  background: rgba(27, 188, 255, 0.08);
  font-weight: 900;
  cursor: pointer;
}

.account-photo-file input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.account-photo-message {
  min-height: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
}

.account-photo-message.error {
  color: #ffd0d8;
}

.account-photo-message.success {
  color: #c9ffe3;
}

.account-photo-panel footer {
  flex-wrap: wrap;
}

.account-photo-secondary,
.account-photo-primary {
  min-height: 42px;
  padding: 0 13px;
}

.account-photo-primary {
  color: #021014;
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), #47f7a5);
}

@media (max-width: 768px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    z-index: var(--z-header) !important;
  }

  .header-inner {
    width: min(100% - 24px, 1380px);
    min-width: 0;
  }

  .header-actions {
    gap: 6px;
  }

  .icon-btn,
  .menu-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  .header-actions .nav-cta {
    display: none;
  }

  .nav-menu {
    display: none !important;
  }

  .nav-menu.active {
    display: none !important;
  }

  .account-menu {
    display: none !important;
  }

  .menu-btn {
    display: grid;
    place-items: center;
  }

  .menu-btn span {
    margin: 2px auto;
  }

  .menu-btn:focus-visible,
  .icon-btn:focus-visible {
    outline: 2px solid rgba(27, 188, 255, 0.52);
    outline-offset: 3px;
  }
}

@media (max-width: 430px) {
  .plm-mobile-sheet {
    width: 100vw;
    border-left: 0;
  }

  .plm-mobile-sheet-header {
    padding-left: 16px;
    padding-right: 14px;
  }

  .plm-mobile-sheet-scroll {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (max-width: 1050px) {
  .support-topic-grid,
  .support-help-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .support-request-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .support-hero {
    padding-top: 102px;
  }

  .support-topic-grid,
  .support-help-grid,
  .support-field-grid {
    grid-template-columns: 1fr;
  }

  .support-topic-tile {
    min-height: 148px;
  }
}

body.mobile-nav-open,
body.account-menu-open {
  overflow: hidden;
}

.account-menu-close {
  display: none;
}

.account-menu-card.danger {
  color: #ffd8df;
  border-color: rgba(255, 109, 136, 0.2);
  background: rgba(255, 109, 136, 0.08);
}

@media (max-width: 900px) {
  .site-header {
    z-index: 1200;
  }

  .header-actions {
    display: inline-flex;
    align-items: center;
  }

  .header-actions .nav-cta,
  .header-actions [aria-label="Client Login"] {
    display: inline-flex;
    min-width: 40px;
    min-height: 40px;
    align-items: center;
    justify-content: center;
  }

  .nav-menu {
    position: fixed;
    inset: 0;
    z-index: 1180;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: calc(env(safe-area-inset-top) + 82px) 18px calc(env(safe-area-inset-bottom) + 24px);
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.985);
    border: 0;
    border-radius: 0;
    background:
      radial-gradient(circle at 70% 0%, rgba(27, 188, 255, 0.16), transparent 38%),
      rgba(2, 5, 7, 0.94);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-menu.active {
    display: flex;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-menu::before {
    content: "Platinum Luxe Media";
    display: block;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.96);
    font-size: 1.45rem;
    font-weight: 900;
  }

  .nav-menu a {
    min-height: 58px;
    justify-content: space-between;
    padding: 15px 16px;
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    text-align: left;
    font-size: 1.08rem;
    font-weight: 850;
    background: rgba(255, 255, 255, 0.045);
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-menu a:hover,
  .nav-menu a:focus-visible,
  .nav-menu a[aria-expanded="true"] {
    background: rgba(27, 188, 255, 0.1);
    border-color: rgba(27, 188, 255, 0.22);
  }

  .mobile-start-here-panel {
    display: grid;
    max-height: 0;
    overflow: hidden;
    gap: 8px;
    padding: 0;
    opacity: 0;
    transition: max-height 220ms ease, opacity 180ms ease, padding 180ms ease;
  }

  .mobile-start-here-panel.is-open {
    max-height: 720px;
    padding: 4px 0 10px;
    opacity: 1;
  }

  .mobile-start-here-panel a {
    min-height: auto;
    display: grid;
    gap: 4px;
    margin-left: 14px;
    padding: 12px 14px;
    border-radius: 16px;
    font-size: 0.95rem;
  }

  .mobile-start-here-panel span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.82rem;
    font-weight: 500;
  }

  .account-menu {
    position: fixed;
    inset: 0;
    z-index: 1190;
    display: block;
    overflow-y: auto;
    padding: calc(env(safe-area-inset-top) + 76px) 16px calc(env(safe-area-inset-bottom) + 18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
    background:
      radial-gradient(circle at 20% 0%, rgba(27, 188, 255, 0.18), transparent 36%),
      rgba(2, 5, 7, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .account-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .account-menu-inner {
    width: min(100%, 620px);
    margin: 0 auto;
    display: grid;
    gap: 16px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
  }

  .account-menu-close {
    justify-self: end;
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    padding: 0 14px;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
  }

  .account-menu-copy h2 {
    font-size: clamp(1.7rem, 9vw, 2.4rem);
    letter-spacing: -0.025em;
  }

  .account-menu-copy small {
    display: block;
    margin-top: 10px;
    color: rgba(142, 231, 255, 0.82);
    font-weight: 800;
  }

  .account-menu-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .account-menu-card {
    min-height: 66px;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    padding: 13px 14px;
    border-radius: 18px;
    text-align: left;
  }

  .account-menu-card span:last-child {
    grid-column: 2;
  }
}

/* Premium typography, header, and showcase polish */
/* Add Satoshi font files to assets/fonts if self-hosting is preferred. */

body {
  font-family: "Satoshi", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
}

h1,
h2,
h3,
h4,
button,
input,
textarea,
select {
  font-family: inherit;
}

h1,
h2,
.home-product-copy h1,
.home-redesign-heading h2,
.home-public-showcase h2,
.home-product-block-copy h2,
.home-final-panel h2 {
  font-weight: 800;
  letter-spacing: -0.045em;
}

.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  font-weight: 900;
}

.btn,
.nav-cta,
.icon-btn {
  font-weight: 800;
  letter-spacing: -0.01em;
}

.site-header {
  height: 60px;
  background:
    linear-gradient(to bottom, rgba(13, 16, 20, 0.84), rgba(3, 6, 8, 0.68)),
    rgba(2, 4, 6, 0.7);
  border-bottom-color: rgba(255, 255, 255, 0.075);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.2);
}

.header-inner {
  width: min(1440px, calc(100% - 44px));
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 20px;
}

.brand {
  width: 42px;
  height: 42px;
  justify-content: center;
}

.brand span {
  display: none;
}

.brand-logo {
  width: 36px;
  height: 36px;
}

.nav-menu {
  justify-self: center;
  gap: 4px;
}

.nav-menu a {
  position: relative;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  transition: color 160ms ease, background 160ms ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 5px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: rgba(27, 188, 255, 0.86);
  box-shadow: 0 0 16px rgba(27, 188, 255, 0.55);
  transition: transform 160ms ease;
}

.nav-menu a:hover,
.nav-menu a[aria-expanded="true"] {
  color: white;
  background: rgba(255, 255, 255, 0.055);
}

.nav-menu a:hover::after,
.nav-menu a[aria-expanded="true"]::after {
  transform: scaleX(1);
}

.nav-cta {
  min-height: 36px;
  padding: 0 16px;
  color: #031014;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: none;
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: #ffffff;
  box-shadow: 0 0 24px rgba(27, 188, 255, 0.2);
}

.mega-menu {
  top: var(--header-height);
}

.mega-menu-inner.start-here-mega {
  width: min(100% - 48px, 1080px);
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
  gap: 22px;
  padding: 22px;
  border-radius: 28px;
}

.start-here-links,
.start-here-card-grid {
  display: grid;
  gap: 12px;
}

.start-here-link,
.start-here-card {
  color: var(--text);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.045);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.start-here-link {
  display: grid;
  gap: 4px;
  padding: 13px 14px;
  border-radius: 16px;
}

.start-here-link span,
.start-here-card span:not(.mega-card-number):not(.start-here-card-visual) {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  line-height: 1.45;
}

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

.start-here-card {
  min-height: 190px;
  display: grid;
  align-content: space-between;
  gap: 10px;
  padding: 18px;
  border-radius: 22px;
}

.start-here-link:hover,
.start-here-card:hover {
  transform: translateY(-3px);
  border-color: rgba(27, 188, 255, 0.28);
  background: rgba(27, 188, 255, 0.07);
}

.start-here-card-visual {
  height: 58px;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 8px;
}

.start-here-card-visual i {
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(27, 188, 255, 0.38), rgba(255, 255, 255, 0.07));
}

.start-here-card-visual i:first-child {
  grid-row: span 2;
}

.mobile-start-here-panel {
  display: none;
}

.home-product-copy h1 {
  max-width: 780px;
  font-size: clamp(3.5rem, 7.4vw, 5.75rem);
}

.home-product-copy .hero-subtitle {
  max-width: 680px;
}

.mockup-sidebar i {
  width: 100%;
  height: auto;
  min-height: 30px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.075);
}

.home-product-mockup {
  position: relative;
}

.home-floating-chips {
  position: absolute;
  inset: auto 26px 26px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 360px;
}

.home-floating-chips span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 900;
  border: 1px solid rgba(27, 188, 255, 0.22);
  border-radius: 999px;
  background: rgba(3, 12, 16, 0.78);
  box-shadow: 0 0 22px rgba(27, 188, 255, 0.1);
}

.home-system-grid.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plm-showcase-preview img,
.home-public-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

.plm-showcase-preview:has(img)::before,
.home-public-thumb:has(img)::before {
  display: none;
}

.admin-check-row {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
}

.admin-check-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
}

.admin-field-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

select,
.admin-form select,
.search-page-input,
.domain-search-form input {
  color-scheme: dark;
}

@media (max-width: 900px) {
  .header-inner {
    width: min(100% - 28px, 1440px);
    grid-template-columns: auto 1fr auto;
  }

  .nav-menu {
    justify-self: stretch;
  }

  .nav-menu.active {
    gap: 4px;
  }

  .nav-menu a {
    width: 100%;
    justify-content: space-between;
    padding-inline: 14px;
  }

  .mobile-start-here-panel.is-open {
    display: grid;
    gap: 8px;
    width: 100%;
    padding: 8px 0 12px;
  }

  .mobile-start-here-panel a {
    display: grid;
    gap: 4px;
    padding: 12px 14px;
    color: white;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.055);
  }

  .mobile-start-here-panel span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .mega-menu-inner.start-here-mega {
    grid-template-columns: 1fr;
  }

  .start-here-card-grid,
  .home-system-grid.three-up {
    grid-template-columns: 1fr;
  }

  .home-floating-chips {
    position: relative;
    inset: auto;
    justify-content: center;
    margin-top: 12px;
  }

  .admin-field-action {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .home-product-copy h1 {
    font-size: clamp(2.65rem, 13vw, 3.6rem);
    line-height: 0.96;
  }

  .brand,
  .brand-logo {
    width: 34px;
    height: 34px;
  }
}

/* Homepage product redesign */

.home-main-redesign {
  --mouse-x: 50%;
  --mouse-y: 36%;
  background: #020406;
  overflow: hidden;
}

.home-main-redesign > section:not(.plm-redesign-section) {
  display: none;
}

.plm-redesign-section {
  position: relative;
  isolation: isolate;
}

.home-product-hero {
  min-height: 100svh;
  padding: calc(var(--header-height) + 70px) 0 84px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(27, 188, 255, 0.2), transparent 28%),
    linear-gradient(180deg, #020406 0%, #071014 54%, #020406 100%);
}

.home-ambient-layer {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.home-cursor-glow,
.home-aurora-beam,
.home-dot-grid {
  position: absolute;
  pointer-events: none;
}

.home-cursor-glow {
  left: var(--mouse-x);
  top: var(--mouse-y);
  width: 46vw;
  height: 46vw;
  min-width: 420px;
  min-height: 420px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(27, 188, 255, 0.22), rgba(91, 116, 255, 0.1) 38%, transparent 68%);
  filter: blur(14px);
  opacity: 0.82;
  transition: left 160ms ease-out, top 160ms ease-out;
}

.home-aurora-beam {
  left: 50%;
  top: -28%;
  width: min(56vw, 760px);
  height: 118%;
  transform: translateX(-50%) rotate(7deg);
  background:
    linear-gradient(90deg, transparent, rgba(27, 188, 255, 0.08), rgba(181, 140, 255, 0.09), transparent),
    radial-gradient(ellipse at center, rgba(27, 188, 255, 0.16), transparent 68%);
  filter: blur(22px);
  animation: homeAuroraDrift 12s ease-in-out infinite alternate;
}

.home-dot-grid {
  inset: 0;
  opacity: 0.17;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 26px 26px, 88px 88px, 88px 88px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 78%);
}

@keyframes homeAuroraDrift {
  from {
    transform: translateX(-52%) rotate(4deg) scale(0.96);
    opacity: 0.72;
  }
  to {
    transform: translateX(-48%) rotate(10deg) scale(1.05);
    opacity: 1;
  }
}

.home-product-hero-inner {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: clamp(42px, 7vw, 78px);
  text-align: center;
}

.home-product-copy {
  max-width: 860px;
  display: grid;
  justify-items: center;
  gap: 20px;
}

.home-product-copy .section-eyebrow,
.home-redesign-heading .section-eyebrow,
.home-product-block-copy .section-eyebrow,
.home-final-panel .section-eyebrow {
  color: rgba(111, 214, 255, 0.92);
  letter-spacing: 0.2em;
}

.home-product-copy h1 {
  max-width: 900px;
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.home-product-copy .hero-subtitle {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.home-product-copy .hero-actions,
.home-final-panel .hero-actions {
  justify-content: center;
  margin-top: 4px;
}

.home-tertiary-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 800;
}

.home-tertiary-link:hover {
  color: white;
}

.home-product-mockup {
  width: min(100%, 920px);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(3, 8, 11, 0.62);
  box-shadow: 0 50px 160px rgba(0, 0, 0, 0.52), 0 0 80px rgba(27, 188, 255, 0.12);
  backdrop-filter: blur(24px);
  animation: homeMockupFloat 6s ease-in-out infinite;
}

@keyframes homeMockupFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.mockup-browser-bar {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.mockup-browser-bar strong {
  margin-left: auto;
  margin-right: auto;
  font-weight: 800;
}

.mockup-shell {
  min-height: 340px;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
}

.mockup-sidebar,
.mockup-main,
.mockup-dashboard-grid > div,
.home-visual-card,
.home-system-card,
.home-public-site-card,
.home-empty-state,
.home-final-panel .section-inner {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(4, 8, 11, 0.72);
  backdrop-filter: blur(20px);
}

.mockup-sidebar {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 16px;
  border-radius: 22px;
}

.mockup-logo-dot {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(27, 188, 255, 0.95), rgba(181, 140, 255, 0.7));
  box-shadow: 0 0 28px rgba(27, 188, 255, 0.32);
}

.mockup-sidebar i {
  display: block;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.mockup-main {
  padding: clamp(18px, 3vw, 28px);
  border-radius: 26px;
}

.mockup-topline,
.mockup-card-row,
.mockup-dashboard-grid {
  display: grid;
  gap: 12px;
}

.mockup-topline {
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.mockup-topline strong {
  color: rgba(118, 255, 196, 0.95);
}

.mockup-card-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 14px;
}

.mockup-card-row span {
  min-height: 78px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.mockup-dashboard-grid {
  grid-template-columns: 0.8fr 0.8fr 1.4fr;
}

.mockup-dashboard-grid > div {
  min-height: 118px;
  padding: 16px;
  border-radius: 20px;
}

.mockup-dashboard-grid strong {
  display: block;
  margin-bottom: 18px;
}

.mockup-dashboard-grid span {
  display: block;
  height: 8px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(27, 188, 255, 0.8), rgba(255, 255, 255, 0.12));
}

.home-product-ecosystem,
.home-public-showcase,
.home-product-block,
.home-final-panel {
  padding: clamp(76px, 10vw, 132px) 0;
  background: #020406;
}

.home-redesign-heading {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.home-redesign-heading h2,
.home-public-showcase h2,
.home-product-block-copy h2,
.home-final-panel h2 {
  font-size: clamp(2.45rem, 5.8vw, 5.1rem);
  line-height: 1;
  letter-spacing: 0;
}

.home-system-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.home-system-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  color: white;
  text-decoration: none;
  border-radius: 26px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.home-system-card.featured {
  grid-column: span 2;
}

.home-system-card:hover {
  transform: translateY(-5px);
  border-color: rgba(27, 188, 255, 0.34);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38), 0 0 56px rgba(27, 188, 255, 0.09);
}

.home-system-card span {
  color: rgba(27, 188, 255, 0.88);
  font-weight: 900;
}

.home-system-card h3 {
  font-size: 1.35rem;
}

.home-system-card p,
.home-product-block-copy p,
.home-final-panel p,
.home-public-showcase p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.68;
}

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

.home-public-site-card {
  overflow: hidden;
  border-radius: 28px;
}

.home-public-thumb {
  min-height: 190px;
  background:
    radial-gradient(circle at 30% 20%, rgba(27, 188, 255, 0.22), transparent 30%),
    linear-gradient(145deg, rgba(12, 20, 26, 0.98), rgba(4, 7, 10, 0.98));
}

.home-public-thumb img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  display: block;
  object-fit: cover;
}

.home-public-card-body {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.home-public-card-body h3 {
  font-size: 1.3rem;
}

.home-public-card-body p {
  color: var(--muted);
  line-height: 1.6;
}

.home-empty-state {
  grid-column: 1 / -1;
  min-height: 170px;
  display: grid;
  place-items: center;
  padding: 28px;
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
  border-radius: 28px;
}

.home-product-block-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.home-product-block.reverse .home-product-block-copy {
  order: 2;
}

.home-product-block-copy {
  display: grid;
  gap: 18px;
}

.home-product-block-copy .btn {
  width: fit-content;
}

.home-price-callout {
  width: fit-content;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  font-weight: 900;
  border: 1px solid rgba(27, 188, 255, 0.25);
  border-radius: 999px;
  background: rgba(27, 188, 255, 0.1);
}

.home-visual-card {
  position: relative;
  min-height: 430px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 32px;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.34);
}

.home-visual-card::before {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0 22%, transparent 22% 28%, rgba(255, 255, 255, 0.07) 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), transparent);
  opacity: 0.74;
}

.home-visual-card span {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  background: rgba(27, 188, 255, 0.8);
  box-shadow: 0 0 34px rgba(27, 188, 255, 0.42);
}

.home-visual-card span:first-child {
  left: 46px;
  top: 48px;
  width: 74px;
  height: 10px;
}

.home-visual-card span:nth-child(2) {
  right: 48px;
  top: 64px;
  width: 120px;
  height: 120px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.home-visual-card strong,
.home-visual-card em {
  position: relative;
  z-index: 1;
}

.home-visual-card strong {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.home-visual-card em {
  color: rgba(255, 255, 255, 0.58);
  font-style: normal;
  font-weight: 800;
}

.home-final-panel .section-inner {
  display: grid;
  justify-items: center;
  gap: 22px;
  padding: clamp(34px, 7vw, 72px);
  text-align: center;
  border-radius: 36px;
  box-shadow: 0 40px 140px rgba(0, 0, 0, 0.4), 0 0 70px rgba(27, 188, 255, 0.09);
}

.home-final-panel h2 {
  max-width: 940px;
}

@media (prefers-reduced-motion: reduce) {
  .home-aurora-beam,
  .home-product-mockup {
    animation: none;
  }

  .home-cursor-glow {
    transition: none;
  }
}

@media (max-width: 1020px) {
  .home-system-grid,
  .home-public-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-product-block-inner,
  .home-product-block.reverse .home-product-block-inner {
    grid-template-columns: 1fr;
  }

  .home-product-block.reverse .home-product-block-copy {
    order: 0;
  }
}

@media (max-width: 760px) {
  .home-product-hero {
    min-height: auto;
    padding: calc(var(--header-height) + 54px) 0 58px;
  }

  .home-product-hero-inner,
  .home-public-showcase .section-inner,
  .home-product-block .section-inner,
  .home-product-ecosystem .section-inner,
  .home-final-panel .section-inner {
    width: min(100% - 28px, 1180px);
  }

  .home-product-copy h1 {
    font-size: clamp(2.75rem, 13vw, 3.65rem);
  }

  .home-product-copy {
    gap: 16px;
  }

  .home-product-copy .hero-actions,
  .home-final-panel .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .home-product-copy .hero-actions .btn,
  .home-final-panel .hero-actions .btn,
  .home-product-block-copy .btn {
    width: 100%;
  }

  .home-product-mockup {
    border-radius: 24px;
  }

  .mockup-shell {
    min-height: 260px;
    grid-template-columns: 1fr;
  }

  .mockup-sidebar {
    display: none;
  }

  .mockup-card-row,
  .mockup-dashboard-grid,
  .home-system-grid,
  .home-public-grid {
    grid-template-columns: 1fr;
  }

  .home-system-card.featured {
    grid-column: auto;
  }

  .home-visual-card {
    min-height: 300px;
    padding: 24px;
    border-radius: 26px;
  }

  .home-redesign-heading h2,
  .home-public-showcase h2,
  .home-product-block-copy h2,
  .home-final-panel h2 {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }
}

/* PLM public product ecosystem */

.plm-ecosystem-strip,
.home-store-preview,
.home-showcase-preview,
.plm-comparison-section,
.hosting-pricing-section,
.hosting-status-section,
.hosting-faq-section,
.hosting-addon-section {
  position: relative;
  overflow: hidden;
}

.plm-ecosystem-strip::before,
.home-store-preview::before,
.home-showcase-preview::before,
.plm-catalog-page::before,
.hosting-care-page::before {
  content: "";
  position: absolute;
  inset: auto -20% 10% -20%;
  height: 440px;
  pointer-events: none;
  background:
    radial-gradient(circle at 25% 40%, rgba(27, 188, 255, 0.16), transparent 34%),
    radial-gradient(circle at 70% 65%, rgba(67, 255, 198, 0.08), transparent 34%);
  filter: blur(20px);
  opacity: 0.78;
}

.section-header.centered {
  max-width: 840px;
  margin-inline: auto;
  text-align: center;
}

.section-header.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.section-header.split > div {
  max-width: 760px;
}

.section-header p {
  color: var(--muted);
  line-height: 1.7;
}

.plm-product-rail {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.plm-mini-product {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  color: var(--text);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(5, 10, 13, 0.72);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.plm-mini-product:hover {
  transform: translateY(-4px);
  border-color: rgba(27, 188, 255, 0.35);
  background:
    linear-gradient(145deg, rgba(27, 188, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(5, 10, 13, 0.84);
}

.plm-mini-product span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 800;
}

.plm-mini-product strong {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 700;
}

.plm-catalog-page,
.hosting-care-page {
  position: relative;
  min-height: 100vh;
  padding-top: var(--header-height);
  background:
    linear-gradient(180deg, rgba(9, 16, 20, 0.8), rgba(2, 4, 6, 0.98) 42%),
    var(--bg);
}

.plm-catalog-hero {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 1320px);
  margin: 0 auto;
  padding: clamp(84px, 10vw, 150px) 0 clamp(38px, 6vw, 76px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 30px;
}

.plm-catalog-hero h1 {
  max-width: 950px;
  margin-top: 12px;
  font-size: clamp(3.2rem, 8vw, 7.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.plm-catalog-hero p:not(.section-eyebrow) {
  max-width: 760px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.32rem);
  line-height: 1.7;
}

.plm-hero-actions,
.simple-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.plm-catalog-shell {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 1320px);
  margin: 0 auto clamp(72px, 8vw, 120px);
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.plm-filter-toggle {
  display: none;
}

.plm-filter-panel {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(4, 8, 11, 0.78);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(22px);
}

.plm-filter-search,
.plm-filter-group {
  display: grid;
  gap: 8px;
}

.plm-filter-search label,
.plm-filter-group span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.plm-filter-panel input,
.plm-filter-panel select,
.plm-catalog-toolbar select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  outline: none;
}

.plm-filter-panel select,
.plm-catalog-toolbar select {
  color-scheme: dark;
}

.plm-filter-panel input:focus,
.plm-filter-panel select:focus,
.plm-catalog-toolbar select:focus {
  border-color: rgba(27, 188, 255, 0.56);
  box-shadow: 0 0 0 4px rgba(27, 188, 255, 0.12);
}

.plm-catalog-results {
  min-width: 0;
}

.plm-catalog-toolbar {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
}

.plm-catalog-toolbar span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  font-weight: 800;
}

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

.plm-product-grid.compact-grid,
.compact-grid,
.preview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plm-product-card,
.plm-showcase-card,
.hosting-main-card {
  min-width: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.032)),
    rgba(4, 8, 11, 0.76);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(22px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.plm-product-card:hover,
.plm-showcase-card:hover {
  transform: translateY(-4px);
  border-color: rgba(27, 188, 255, 0.28);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.38), 0 0 46px rgba(27, 188, 255, 0.08);
}

.plm-product-card.is-featured,
.hosting-main-card {
  border-color: rgba(27, 188, 255, 0.26);
  background:
    linear-gradient(150deg, rgba(27, 188, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(4, 8, 11, 0.84);
}

.plm-product-preview,
.plm-showcase-preview {
  position: relative;
  min-height: 170px;
  margin: 14px 14px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background:
    radial-gradient(circle at 22% 16%, rgba(27, 188, 255, 0.28), transparent 28%),
    linear-gradient(145deg, rgba(12, 20, 26, 0.95), rgba(4, 7, 10, 0.98));
  overflow: hidden;
}

.plm-product-preview::before,
.plm-showcase-preview::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 24%, transparent 24% 28%, rgba(255, 255, 255, 0.08) 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0.72;
}

.plm-product-preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.plm-product-preview:has(img)::before {
  background: linear-gradient(180deg, transparent 44%, rgba(4, 7, 10, 0.72));
}

.plm-os-send-plan .plm-os-form-section,
.plm-os-review-card {
  border: 1px solid rgba(27, 188, 255, 0.16);
  border-radius: 16px;
  background: rgba(4, 10, 15, 0.68);
  padding: 16px;
}

.plm-os-send-plan .plm-os-form-section + .plm-os-form-section {
  margin-top: 14px;
}

.plm-os-send-plan .plm-os-form-section h3 {
  margin: 6px 0 12px;
  color: rgba(255, 255, 255, 0.94);
}

.plm-os-step-label {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  border: 1px solid rgba(27, 188, 255, 0.24);
  background: rgba(27, 188, 255, 0.08);
  color: #9fe7ff;
  font-size: 0.76rem;
  font-weight: 700;
}

.plm-os-send-plan-customer {
  margin-top: 12px;
}

.plm-os-review-card {
  display: grid;
  gap: 8px;
}

.plm-product-preview span,
.plm-product-preview strong,
.plm-showcase-preview span,
.plm-showcase-preview strong,
.plm-showcase-preview em {
  position: absolute;
  z-index: 1;
}

.plm-product-preview span:first-child,
.plm-showcase-preview span:first-child {
  left: 30px;
  top: 28px;
  width: 46px;
  height: 8px;
  border-radius: 999px;
  background: rgba(27, 188, 255, 0.85);
  box-shadow: 0 0 26px rgba(27, 188, 255, 0.4);
}

.plm-product-preview span:nth-child(2),
.plm-showcase-preview span:nth-child(2) {
  right: 30px;
  bottom: 28px;
  width: 82px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.plm-product-preview strong,
.plm-showcase-preview strong {
  left: 30px;
  right: 30px;
  bottom: 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.plm-showcase-preview em {
  left: 30px;
  top: 48px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 800;
}

.plm-product-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
}

.plm-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
  font-weight: 800;
}

.plm-product-card h3,
.plm-showcase-card h3,
.hosting-main-card h2 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.plm-product-card p,
.plm-showcase-card p,
.hosting-main-card p {
  color: var(--muted);
  line-height: 1.65;
}

.plm-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.plm-chip-row span,
.plm-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.plm-chip-row.large .plm-chip {
  min-height: 44px;
  padding-inline: 16px;
  font-size: 0.9rem;
}

.plm-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 22px 22px;
}

.plm-card-actions .btn {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.82rem;
}

.plm-showcase-card .plm-showcase-preview {
  min-height: 220px;
}

.status-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
}

.status-live {
  color: rgba(165, 255, 212, 0.95);
  border-color: rgba(80, 255, 171, 0.28);
  background: rgba(80, 255, 171, 0.1);
}

.status-redesign {
  color: rgba(255, 219, 149, 0.95);
  border-color: rgba(255, 196, 87, 0.28);
  background: rgba(255, 196, 87, 0.1);
}

.hosting-pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 22px;
  align-items: stretch;
}

.hosting-main-card {
  padding: clamp(26px, 4vw, 46px);
}

.hosting-price {
  display: block;
  margin: 8px 0 12px;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 0.95;
}

.plm-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
  list-style: none;
}

.plm-feature-list li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}

.plm-feature-list li::before,
.status-dot {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #43ffc6;
  box-shadow: 0 0 18px rgba(67, 255, 198, 0.45);
}

.plm-feature-list li::before {
  position: absolute;
  left: 0;
  top: 0.55em;
}

.hosting-system-stack {
  display: grid;
  gap: 16px;
}

.plm-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: none;
}

.plm-detail-modal.is-open {
  display: block;
}

.plm-detail-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(16px);
}

.plm-detail-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(100% - 32px, 780px);
  max-height: min(760px, calc(100vh - 72px));
  overflow-y: auto;
  transform: translate(-50%, -50%);
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(18, 28, 34, 0.96), rgba(3, 6, 8, 0.96)),
    rgba(3, 6, 8, 0.96);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.65), 0 0 80px rgba(27, 188, 255, 0.12);
}

.plm-detail-panel h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
}

.plm-detail-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.plm-detail-close {
  justify-self: end;
  min-height: 36px;
  padding: 0 14px;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.plm-detail-list {
  display: grid;
  gap: 10px;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 1180px) {
  .plm-product-rail,
  .plm-product-grid,
  .plm-showcase-grid,
  .plm-product-grid.compact-grid,
  .compact-grid,
  .preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plm-product-rail {
    grid-auto-flow: column;
    grid-auto-columns: minmax(210px, 1fr);
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .plm-catalog-hero,
  .hosting-pricing-grid {
    grid-template-columns: 1fr;
  }

  .plm-catalog-hero {
    align-items: start;
  }
}

@media (max-width: 900px) {
  .section-header.split {
    align-items: flex-start;
    flex-direction: column;
  }

  .plm-catalog-shell {
    grid-template-columns: 1fr;
  }

  .plm-filter-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    width: fit-content;
    padding: 0 18px;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
  }

  .plm-filter-panel {
    position: relative;
    top: auto;
    display: none;
  }

  .plm-filter-panel.is-open {
    display: grid;
  }

  .plm-catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

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

@media (max-width: 620px) {
  .plm-catalog-hero,
  .plm-catalog-shell,
  .plm-ecosystem-strip .section-inner,
  .home-store-preview .section-inner,
  .home-showcase-preview .section-inner {
    width: min(100% - 28px, 1320px);
  }

  .plm-catalog-hero h1 {
    font-size: clamp(2.55rem, 14vw, 4.3rem);
  }

  .plm-product-grid,
  .plm-showcase-grid,
  .plm-product-grid.compact-grid,
  .compact-grid,
  .preview-grid {
    grid-template-columns: 1fr;
  }

  .plm-product-preview,
  .plm-showcase-card .plm-showcase-preview {
    min-height: 150px;
  }

  .plm-card-actions,
  .plm-hero-actions,
  .simple-page-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .plm-card-actions .btn,
  .plm-hero-actions .btn,
  .simple-page-actions .btn {
    width: 100%;
  }

  .plm-detail-panel {
    width: min(100% - 20px, 780px);
    max-height: calc(100vh - 34px);
    border-radius: 24px;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

body::selection {
  background: rgba(27, 188, 255, 0.35);
}

.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;
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1100;

  background:
    linear-gradient(to bottom, rgba(20, 22, 26, 0.84), rgba(8, 10, 12, 0.74)),
    rgba(5, 7, 9, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.24);

  backdrop-filter: blur(28px) saturate(1.22);
  -webkit-backdrop-filter: blur(28px) saturate(1.22);
}

.header-inner {
  width: min(1400px, calc(100% - 52px));
  height: 100%;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.brand {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.94);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-logo,
.hero-logo {
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(27, 188, 255, 0.28));
}

.brand-logo {
  width: 34px;
  height: 34px;
}

.hero-logo {
  width: 28px;
  height: 28px;
}

.brand-diamond {
  display: block;
  position: relative;
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
  border: 2px solid var(--blue);
  border-radius: 3px;
  box-shadow:
    0 0 18px rgba(27, 188, 255, 0.38),
    inset 0 0 10px rgba(27, 188, 255, 0.14);
}

.brand-diamond::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 2px;
  background: rgba(27, 188, 255, 0.22);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.66);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0;
  transition: 0.2s ease;
}

.nav-menu a:hover {
  color: #ffffff;
}

.nav-menu a[aria-expanded="true"] {
  color: #ffffff;
}

.mega-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  z-index: 1070;

  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);

  background:
    radial-gradient(circle at 20% 0%, rgba(27, 188, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(13, 16, 19, 0.94), rgba(4, 7, 9, 0.9));
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(28px) saturate(1.16);
  -webkit-backdrop-filter: blur(28px) saturate(1.16);

  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mega-menu::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -90px;
  height: 90px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(2, 4, 6, 0.36), transparent);
}

.mega-menu.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-menu-inner {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  padding: 22px 0 26px;
}

.mega-menu-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}

.mega-menu-heading p {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mega-menu-heading span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.9rem;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  gap: 12px;
}

.mega-card {
  min-width: 0;
  display: grid;
  gap: 12px;
  padding: 12px;
  color: white;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
  transition: 0.2s ease;
}

.mega-card:hover,
.mega-card:focus-visible {
  border-color: rgba(27, 188, 255, 0.28);
  background:
    radial-gradient(circle at top left, rgba(27, 188, 255, 0.12), transparent 46%),
    rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.mega-preview {
  min-height: 86px;
  padding: 12px;
  display: grid;
  align-content: center;
  gap: 8px;
  overflow: hidden;
  border-radius: 14px;
  background:
    radial-gradient(circle at 80% 20%, rgba(27, 188, 255, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mega-preview-top {
  width: 34px;
  height: 5px;
  border-radius: 999px;
  background: rgba(27, 188, 255, 0.78);
  box-shadow: 0 0 18px rgba(27, 188, 255, 0.32);
}

.mega-preview-line {
  width: 58%;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.mega-preview-line.wide {
  width: 84%;
}

.mega-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.mega-preview-grid span {
  min-height: 22px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.085);
}

.mega-card-body {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.mega-card-number {
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.68rem;
  font-weight: 900;
}

.mega-card strong {
  font-size: 0.98rem;
  letter-spacing: 0;
}

.mega-card-body > span:last-child {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  line-height: 1.38;
}

.account-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  z-index: 1075;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  background:
    radial-gradient(circle at 78% 0%, rgba(27, 188, 255, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(13, 16, 19, 0.94), rgba(4, 7, 9, 0.91));
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(28px) saturate(1.16);
  -webkit-backdrop-filter: blur(28px) saturate(1.16);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.account-menu.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.account-menu-inner {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0 28px;
  display: grid;
  grid-template-columns: minmax(240px, 0.74fr) minmax(0, 1.26fr);
  gap: 24px;
  align-items: stretch;
}

.account-menu-copy {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.account-menu-copy p {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.account-menu-copy h2 {
  color: white;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 12px;
}

.account-menu-copy span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
  line-height: 1.55;
}

.account-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.account-menu-card {
  min-width: 0;
  min-height: 178px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  color: white;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
  transition: 0.2s ease;
}

.account-menu-card:hover,
.account-menu-card:focus-visible {
  border-color: rgba(27, 188, 255, 0.28);
  background:
    radial-gradient(circle at top left, rgba(27, 188, 255, 0.12), transparent 46%),
    rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.account-menu-icon {
  width: 34px;
  height: 34px;
  margin-bottom: auto;
  border-radius: 12px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.36), transparent 25%),
    linear-gradient(135deg, rgba(27, 188, 255, 0.78), rgba(71, 247, 165, 0.32));
  box-shadow: 0 0 24px rgba(27, 188, 255, 0.2);
}

.account-menu-card strong {
  margin: 18px 0 8px;
  font-size: 1rem;
}

.account-menu-card span:last-child {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  line-height: 1.42;
}

.account-menu-inner.is-signed-in,
.account-menu-inner.is-signed-out,
.account-menu-inner.is-loading {
  width: min(1240px, calc(100vw - 48px));
  padding: 22px 0 28px;
  grid-template-columns: 1fr;
  gap: 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.account-panel-tabs {
  justify-self: start;
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.account-panel-tabs button {
  min-height: 34px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.68);
  border: 0;
  border-radius: 999px;
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.account-panel-tabs button[aria-selected="true"] {
  color: #031115;
  background: linear-gradient(135deg, var(--blue), #47f7a5);
}

.account-panel-tabs span {
  margin-left: 4px;
}

.account-panel-top {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  gap: 18px;
  align-items: stretch;
}

.account-panel-top.is-public {
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.72fr);
}

.account-panel-view {
  display: grid;
  gap: 18px;
  animation: accountPanelFade 160ms ease both;
}

@keyframes accountPanelFade {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.account-menu-profile,
.account-menu-public-head {
  min-width: 0;
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.account-menu-profile {
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
}

.account-panel-view .account-menu-profile {
  min-height: 0;
  padding: 0 0 16px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 0;
  background: transparent;
}

.account-panel-view .account-avatar {
  width: 54px;
  height: 54px;
  flex-basis: 54px;
  border-radius: 18px;
}

.account-profile-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.account-avatar,
.account-photo-avatar,
.plm-mobile-avatar {
  position: relative;
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: white;
  border: 1px solid rgba(27, 188, 255, 0.24);
  border-radius: 22px;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.32), transparent 28%),
    linear-gradient(135deg, rgba(27, 188, 255, 0.78), rgba(67, 255, 198, 0.24));
  font-weight: 950;
  letter-spacing: 0;
}

.account-avatar img,
.account-photo-avatar img,
.plm-mobile-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.account-avatar-fallback,
.account-photo-avatar-fallback,
.plm-mobile-avatar-fallback {
  position: relative;
  z-index: 0;
}

.account-avatar.has-image:not(.image-failed) .account-avatar-fallback,
.account-avatar.has-image:not(.image-failed) .account-avatar-initials,
.account-photo-avatar.has-image:not(.image-failed) .account-photo-avatar-fallback,
.account-photo-avatar.has-image:not(.image-failed) .account-avatar-initials,
.plm-mobile-avatar.has-image:not(.image-failed) .plm-mobile-avatar-fallback,
.plm-mobile-avatar.has-image:not(.image-failed) .account-avatar-initials {
  display: none;
}

.account-avatar.image-failed img,
.account-photo-avatar.image-failed img,
.plm-mobile-avatar.image-failed img,
.account-avatar.is-broken img,
.account-photo-avatar.is-broken img,
.plm-mobile-avatar.is-broken img {
  display: none;
}

.account-menu-profile-copy {
  min-width: 0;
}

.account-menu-profile-copy p,
.account-menu-public-head p,
.account-menu-section h3,
.account-photo-panel header p {
  margin: 0 0 5px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.account-menu-profile-copy h2,
.account-menu-public-head h2,
.account-photo-panel h2 {
  margin: 0;
  color: white;
  font-size: clamp(1.28rem, 2.4vw, 1.85rem);
  line-height: 1.05;
}

.account-panel-view .account-menu-profile-copy h2 {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.15;
}

.account-panel-view .account-menu-profile-copy p {
  margin-bottom: 3px;
}

.account-menu-profile-copy span,
.account-menu-profile-copy small,
.account-menu-public-head h2 {
  overflow-wrap: anywhere;
}

.account-menu-profile-copy span,
.account-menu-profile-copy small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.88rem;
}

.account-menu-warning {
  color: #ffe1a6 !important;
}

.account-menu-edit,
.account-menu-close,
.account-photo-close,
.account-photo-secondary,
.account-photo-primary {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.account-menu-edit {
  padding: 0 14px;
  white-space: nowrap;
  text-decoration: none;
}

.account-menu-close {
  position: absolute;
  top: 14px;
  right: 14px;
  min-height: 34px;
  padding: 0 12px;
}

.account-menu-sections {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.account-cart-card {
  min-width: 0;
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.account-cart-view .account-cart-card {
  border-radius: 0;
  background: transparent;
  border-color: transparent;
  padding: 0;
}

.account-cart-card.is-empty {
  min-height: 300px;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 34px 20px;
  background:
    radial-gradient(circle at 50% 0%, rgba(27, 188, 255, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.025);
}

.account-cart-card.is-empty::before {
  content: "";
  width: 68px;
  height: 68px;
  display: block;
  border: 1px solid rgba(27, 188, 255, 0.22);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(27, 188, 255, 0.28), rgba(71, 247, 165, 0.12)),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.account-panel-kicker {
  margin: 0 0 5px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.account-cart-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.2rem;
}

.account-cart-card span,
.account-cart-copy span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
}

.account-cart-actions,
.account-cart-footer {
  overflow: hidden;
  display: grid;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.account-cart-list {
  display: grid;
  gap: 8px;
}

.account-cart-head,
.account-cart-item,
.account-cart-totals > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.account-cart-item {
  grid-template-columns: 44px minmax(0, 1fr) auto auto;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.account-cart-view .account-cart-item {
  grid-template-columns: 96px minmax(0, 1fr) auto auto;
  padding: 14px 0;
  border-width: 0 0 1px;
  border-radius: 0;
  background: transparent;
}

.account-cart-thumb {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(27, 188, 255, 0.12);
  color: white;
  font-size: 0.72rem;
  font-weight: 950;
}

.account-cart-view .account-cart-thumb {
  width: 96px;
  height: 96px;
  border-radius: 22px;
}

.account-cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-cart-copy {
  min-width: 0;
}

.account-cart-copy strong {
  display: block;
  overflow-wrap: anywhere;
  color: white;
  font-size: 0.9rem;
}

.account-cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.account-cart-qty button,
.account-cart-remove {
  min-width: 30px;
  min-height: 30px;
  color: white;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.account-cart-remove {
  padding: 0 10px;
  color: #ffd8df;
}

.account-cart-totals {
  display: grid;
  gap: 6px;
  padding: 10px 0 0;
}

.account-cart-totals > div strong {
  color: white;
}

.cart-page {
  min-height: 100dvh;
  padding: 128px clamp(18px, 4vw, 56px) 72px;
  background:
    radial-gradient(circle at 70% 0%, rgba(27, 188, 255, 0.12), transparent 34%),
    var(--dark);
}

.cart-hero,
.cart-page-shell {
  width: min(1040px, 100%);
  margin: 0 auto;
}

.cart-hero {
  margin-bottom: 26px;
}

.cart-hero h1 {
  color: white;
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 0.95;
}

.cart-hero p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.68);
}

.cart-page-shell {
  display: grid;
  gap: 16px;
}

.cart-page-shell .account-cart-card {
  padding: 20px;
}

.cart-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.account-menu-section {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 8px;
}

.account-menu-list,
.account-menu-public-actions {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.account-menu-row,
.account-menu-primary {
  width: 100%;
  min-height: 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.92);
  text-align: left;
  text-decoration: none;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.account-menu-primary {
  display: flex;
  justify-content: center;
  color: #021014;
  background: linear-gradient(135deg, var(--blue), #47f7a5);
  font-weight: 950;
}

.account-menu-row + .account-menu-row {
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.account-menu-row strong {
  display: block;
  font-size: 0.9rem;
}

.account-menu-row small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.76rem;
  line-height: 1.32;
}

.account-menu-chevron {
  color: rgba(255, 255, 255, 0.35);
  font-size: 1.25rem;
}

.account-menu-row:hover,
.account-menu-row:focus-visible,
.account-menu-edit:hover,
.account-menu-edit:focus-visible,
.account-menu-close:hover,
.account-menu-close:focus-visible {
  color: #ffffff;
  border-color: rgba(27, 188, 255, 0.34);
  background: rgba(27, 188, 255, 0.1);
  outline: 2px solid rgba(27, 188, 255, 0.24);
  outline-offset: -2px;
}

.account-menu-row.danger {
  color: #ffd8df;
}

.account-menu-skeleton {
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.07));
}

.account-menu-loading {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.account-menu-skeleton.avatar {
  width: 64px;
  height: 64px;
  border-radius: 22px;
}

.account-menu-skeleton.line {
  width: min(100%, 320px);
  height: 18px;
}

.account-menu-skeleton.short {
  width: 180px;
  height: 14px;
}

@media (max-width: 1080px) {
  .account-panel-top,
  .account-panel-top.is-public {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .account-menu {
    inset: 0;
    padding: calc(env(safe-area-inset-top) + 76px) 14px calc(env(safe-area-inset-bottom) + 16px);
  }

  .account-menu-inner.is-signed-in,
  .account-menu-inner.is-signed-out,
  .account-menu-inner.is-loading {
    width: 100%;
    padding: 16px 0 20px;
  }

  .account-menu-profile {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .account-profile-actions,
  .account-menu-edit {
    grid-column: 1 / -1;
    width: 100%;
  }

  .account-profile-actions {
    justify-content: stretch;
  }

  .account-menu-sections {
    grid-template-columns: 1fr;
  }

  .account-cart-item {
    grid-template-columns: 42px minmax(0, 1fr) auto;
  }

  .account-cart-remove {
    grid-column: 2 / -1;
    width: 100%;
  }

  .plm-mobile-account-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
  }

  .plm-mobile-account-tabs button {
    min-height: 40px;
    color: rgba(255, 255, 255, 0.7);
    border: 0;
    border-radius: 999px;
    background: transparent;
    font: inherit;
    font-weight: 900;
  }

  .plm-mobile-account-tabs button[aria-selected="true"] {
    color: #031115;
    background: linear-gradient(135deg, var(--blue), #47f7a5);
  }

  .account-photo-sheet {
    align-items: stretch;
    padding: 0;
  }

  .account-photo-panel {
    width: 100%;
    max-height: 100dvh;
    border-radius: 0;
    padding: calc(18px + env(safe-area-inset-top)) 16px calc(18px + env(safe-area-inset-bottom));
  }
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.nav-cta {
  min-height: 28px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: 0.2s ease;
}

.nav-cta:hover {
  color: white;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(27, 188, 255, 0.34);
  transform: translateY(-1px);
}

.icon-btn {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;

  color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.025);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  text-decoration: none;

  transition: 0.2s ease;
}

.icon-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.icon-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.menu-btn {
  display: none;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: white;
  transition: 0.2s ease;
}

/* Search */

body.search-open {
  overflow: hidden;
}

.search-backdrop {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1080;

  opacity: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: opacity 0.24s ease;
}

.search-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.search-drawer {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: auto;
  max-height: calc(100svh - var(--header-height));
  z-index: 1090;
  overflow: hidden;

  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px);

  background:
    radial-gradient(circle at 18% 0%, rgba(27, 188, 255, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(17, 20, 24, 0.94), rgba(5, 7, 10, 0.9));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.56);

  backdrop-filter: blur(34px) saturate(1.22);
  -webkit-backdrop-filter: blur(34px) saturate(1.22);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.search-drawer.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.search-drawer-inner {
  width: min(1060px, calc(100% - 48px));
  max-height: calc(100svh - var(--header-height));
  margin: 0 auto;
  padding: clamp(18px, 2.6vw, 28px) 0 clamp(20px, 2.8vw, 30px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(16px, 2vw, 22px);
  overflow: hidden;
}

.search-form {
  display: grid;
  grid-template-columns: 1fr 40px;
  gap: 12px;
  align-items: center;
}

.search-field {
  position: relative;
  min-width: 0;
  min-height: 52px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.078);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  transition: 0.2s ease;
}

.search-field:focus-within {
  border-color: rgba(27, 188, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(27, 188, 255, 0.11);
}

.search-field-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  width: 19px;
  height: 19px;
  color: rgba(255, 255, 255, 0.42);
  fill: currentColor;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 2;
}

.search-input,
.search-page-input {
  width: 100%;
  min-height: 52px;
  padding: 0 18px;

  color: white;
  background: transparent;
  border: 0;
  border-radius: 999px;
  outline: 0;

  font: inherit;
  font-size: 1rem;
  line-height: 52px;
}

.search-input {
  position: relative;
  z-index: 2;
  padding-left: 50px;
}

.search-page-field {
  width: 100%;
  min-height: 58px;
}

.search-page-field .search-page-input {
  position: relative;
  z-index: 2;
  padding-left: 50px;
  line-height: 58px;
}

.search-page-field .search-ghost {
  height: 58px;
  font-size: 1.04rem;
  line-height: 58px;
}

.search-ghost {
  position: absolute;
  left: 50px;
  right: 18px;
  top: 0;
  height: 52px;
  display: flex;
  align-items: center;
  overflow: hidden;

  color: rgba(255, 255, 255, 0.34);
  font: inherit;
  font-size: 1rem;
  line-height: 52px;
  white-space: pre;
  pointer-events: none;
  z-index: 1;
}

.search-ghost-typed {
  color: transparent;
}

.search-input::placeholder,
.search-page-input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.search-input:focus,
.search-page-input:focus {
  box-shadow: none;
}

.search-close {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;

  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s ease;
}

.search-close svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.search-close:hover {
  color: white;
  background: rgba(255, 255, 255, 0.14);
}

.search-drawer-content {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: start;
  overflow: hidden;
}

.search-drawer-copy {
  padding-top: 6px;
}

.search-kicker,
.search-drawer-copy p:first-child {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.search-drawer-copy p:last-child {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.98rem;
  line-height: 1.65;
}

.drawer-results {
  min-height: 0;
  max-height: min(318px, calc(100svh - var(--header-height) - 132px));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 9px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 2px 6px 10px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(27, 188, 255, 0.38) rgba(255, 255, 255, 0.06);
  mask-image: linear-gradient(to bottom, black 0%, black calc(100% - 18px), transparent 100%);
}

.drawer-results::-webkit-scrollbar {
  width: 8px;
}

.drawer-results::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
}

.drawer-results::-webkit-scrollbar-thumb {
  background: rgba(27, 188, 255, 0.34);
  border-radius: 999px;
}

.quick-link-row,
.drawer-result-card,
.search-result-card {
  color: white;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.052);
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 16px;
  transition: 0.2s ease;
}

.quick-link-row {
  min-height: 54px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.84);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.07);
}

.quick-link-row span:first-child {
  font-size: 0.95rem;
  font-weight: 800;
}

.drawer-result-card,
.search-result-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 16px;
  gap: 12px;
  align-items: center;
  padding: 11px;
}

.search-thumb {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.result-text {
  min-width: 0;
}

.drawer-result-card h3,
.search-result-card h3 {
  color: white;
  font-size: 0.94rem;
  line-height: 1.2;
  letter-spacing: 0;
  margin-bottom: 4px;
}

.result-category {
  display: block;
  width: fit-content;
  margin-bottom: 4px;
  color: rgba(27, 188, 255, 0.82);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.drawer-result-card p,
.search-result-card p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  line-height: 1.35;
}

.result-arrow {
  color: rgba(27, 188, 255, 0.74);
  font-size: 1.1rem;
  line-height: 1;
}

.quick-link-row:hover,
.drawer-result-card:hover,
.search-result-card:hover {
  background: rgba(27, 188, 255, 0.12);
  border-color: rgba(27, 188, 255, 0.3);
  transform: translateY(-1px);
}

/* Hero */

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--header-height);

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;

  background:
    radial-gradient(circle at 70% 45%, rgba(27, 188, 255, 0.14), transparent 24%),
    radial-gradient(circle at 18% 18%, rgba(27, 188, 255, 0.18), transparent 24%),
    linear-gradient(135deg, #071314 0%, #061011 42%, #020406 100%);
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: -20%;

  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.5) 0 1.5px, transparent 2px);
  background-size: 36px 36px;

  opacity: 0.22;
  transform: perspective(900px) rotateX(62deg) rotateZ(-18deg) translateY(120px) scale(1.25);
  filter: blur(0.5px);
  mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 58%, transparent 84%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(ellipse at 50% 42%, transparent 0%, rgba(2, 4, 6, 0.18) 34%, rgba(2, 4, 6, 0.86) 100%),
    linear-gradient(to bottom, rgba(2, 4, 6, 0.12), rgba(2, 4, 6, 0.82));

  z-index: 1;
}

.hero-content {
  width: min(760px, 92%);
  text-align: center;
  margin-top: -40px;
}

.hero h1 {
  font-size: clamp(3.2rem, 7vw, 5.7rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  margin-bottom: 14px;
}

.hero-subtitle {
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  letter-spacing: -0.04em;
  margin-bottom: 26px;
}

.hero-brand-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;

  color: white;
  font-weight: 800;
  font-size: 1rem;

  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Buttons */

.btn {
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;

  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  white-space: normal;

  transition: 0.22s ease;
}

.btn-primary {
  color: white;
  background: var(--blue);
  box-shadow: 0 16px 34px rgba(27, 188, 255, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(27, 188, 255, 0.32);
}

.btn-secondary {
  color: white;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.58);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}

/* Sections */

.section {
  position: relative;
  padding: 120px 0;
  background: #020406;
}

.section-inner {
  width: min(var(--max-width), 92%);
  margin: 0 auto;
}

.section-eyebrow {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 18px;
}

.section h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.section-text,
.section p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.section-text {
  max-width: 670px;
  margin-top: 24px;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 42px;
}

/* Dashboard showcase */

.dashboard-showcase {
  position: relative;
  padding: 142px 0 156px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 18%, rgba(27, 188, 255, 0.16), transparent 30%),
    radial-gradient(circle at 16% 48%, rgba(181, 140, 255, 0.12), transparent 26%),
    radial-gradient(circle at 86% 58%, rgba(46, 255, 158, 0.08), transparent 25%),
    linear-gradient(180deg, #020406 0%, #061014 48%, #020406 100%);
}

.dashboard-showcase::before {
  content: "";
  position: absolute;
  inset: 8% -12% auto;
  height: 72%;
  z-index: -2;
  opacity: 0.34;
  background:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 72%);
}

.dashboard-showcase::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 240px;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, #020406 72%);
}

.dashboard-showcase-inner {
  width: min(1320px, 92%);
}

.dashboard-hero-copy {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.dashboard-hero-copy h2 {
  max-width: 1060px;
  margin: 0 auto;
  font-size: clamp(3rem, 6vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.dashboard-hero-copy .section-text {
  max-width: 920px;
  margin: 26px auto 0;
  color: rgba(255, 255, 255, 0.7);
}

.dashboard-actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.dashboard-stage {
  position: relative;
  min-height: 760px;
  margin-top: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-stage::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(980px, 84vw);
  height: min(520px, 48vw);
  z-index: -1;
  border-radius: 50%;
  background: rgba(27, 188, 255, 0.19);
  filter: blur(86px);
  transform: translate(-50%, -48%);
}

.dashboard-stage::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 42px;
  width: min(900px, 78vw);
  height: 120px;
  z-index: -1;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.48);
  filter: blur(34px);
  transform: translateX(-50%);
}

.dashboard-device {
  position: relative;
  z-index: 2;
  width: min(900px, 76vw);
}

.dashboard-window {
  position: relative;
  min-height: 542px;
  padding: 14px;
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 14px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(4, 9, 12, 0.84);
  box-shadow:
    0 42px 140px rgba(0, 0, 0, 0.56),
    0 0 90px rgba(27, 188, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(28px) saturate(1.18);
  -webkit-backdrop-filter: blur(28px) saturate(1.18);
  transform: perspective(1200px) rotateX(3deg);
  transform-origin: center top;
}

.dashboard-sidebar,
.dashboard-app,
.dashboard-mobile-preview,
.dashboard-floating-card {
  border: 1px solid rgba(255, 255, 255, 0.095);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.086), rgba(255, 255, 255, 0.026)),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.dashboard-sidebar {
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 24px;
}

.dashboard-brand-mark {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  border-radius: 16px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.36), transparent 26%),
    linear-gradient(135deg, rgba(27, 188, 255, 0.85), rgba(181, 140, 255, 0.6));
  box-shadow: 0 0 30px rgba(27, 188, 255, 0.24);
}

.dashboard-nav-pill {
  min-height: 36px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.dashboard-nav-pill.active {
  color: white;
  background: rgba(27, 188, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(27, 188, 255, 0.2);
}

.dashboard-app {
  min-width: 0;
  padding: 18px;
  overflow: hidden;
  border-radius: 26px;
  background:
    radial-gradient(circle at 84% 12%, rgba(27, 188, 255, 0.13), transparent 28%),
    rgba(3, 7, 10, 0.76);
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.dashboard-topbar span,
.dashboard-panel-heading span,
.dashboard-kpi-label {
  color: rgba(27, 188, 255, 0.78);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.dashboard-topbar strong {
  display: block;
  margin-top: 4px;
  color: white;
  font-size: 1.35rem;
  letter-spacing: 0;
}

.dashboard-live-pill {
  min-height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82) !important;
  border: 1px solid rgba(72, 255, 174, 0.24);
  border-radius: 999px;
  background: rgba(46, 255, 158, 0.08);
}

.dashboard-live-pill span,
.dashboard-card-dot,
.dashboard-task-list i,
.dashboard-activity-item span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  display: inline-block;
  border-radius: 50%;
  background: #47f7a5;
  box-shadow: 0 0 18px rgba(71, 247, 165, 0.58);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.dashboard-kpi-card,
.dashboard-project-panel,
.dashboard-activity-panel {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.052);
}

.dashboard-kpi-card {
  grid-column: span 2;
  min-height: 132px;
}

.dashboard-kpi-card strong {
  display: block;
  margin: 13px 0 6px;
  color: white;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.dashboard-kpi-card p,
.dashboard-project-panel p,
.dashboard-activity-panel p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
  line-height: 1.45;
}

.dashboard-project-panel {
  grid-column: span 4;
  min-height: 214px;
}

.dashboard-activity-panel {
  grid-column: span 2;
  min-height: 214px;
}

.dashboard-panel-heading strong {
  display: block;
  margin-top: 6px;
  color: white;
  font-size: 1.1rem;
}

.dashboard-progress-track {
  height: 11px;
  margin: 26px 0 22px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.dashboard-progress-track span {
  width: 72%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, #1bbcff, #47f7a5);
  box-shadow: 0 0 24px rgba(27, 188, 255, 0.28);
}

.dashboard-task-list {
  display: grid;
  gap: 10px;
}

.dashboard-task-list span,
.dashboard-activity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 700;
}

.dashboard-activity-item {
  align-items: flex-start;
  margin-top: 14px;
}

.dashboard-activity-item span {
  margin-top: 7px;
  background: var(--blue);
  box-shadow: 0 0 18px rgba(27, 188, 255, 0.46);
}

.dashboard-mobile-preview {
  position: absolute;
  right: -38px;
  bottom: -42px;
  width: 176px;
  padding: 13px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 80% 0%, rgba(27, 188, 255, 0.18), transparent 36%),
    rgba(4, 8, 11, 0.88);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.46),
    0 0 44px rgba(27, 188, 255, 0.14);
}

.dashboard-mobile-top {
  width: 42px;
  height: 5px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
}

.dashboard-mobile-preview > span {
  display: block;
  height: 42px;
  margin-bottom: 9px;
  border-radius: 15px;
  background:
    linear-gradient(135deg, rgba(27, 188, 255, 0.16), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.06);
}

.dashboard-mobile-preview > span:nth-of-type(2) {
  height: 68px;
}

.dashboard-mobile-preview strong {
  display: block;
  margin-top: 14px;
  color: white;
  font-size: 0.9rem;
}

.dashboard-mobile-preview p {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.76rem;
  line-height: 1.45;
}

.dashboard-floating-card {
  position: absolute;
  z-index: 3;
  width: clamp(198px, 17vw, 248px);
  padding: 17px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 12% 12%, rgba(27, 188, 255, 0.13), transparent 32%),
    rgba(8, 12, 15, 0.78);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.dashboard-floating-card h3 {
  margin-top: 12px;
  color: white;
  font-size: 1rem;
  letter-spacing: 0;
}

.dashboard-floating-card p {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  line-height: 1.48;
}

.card-website {
  left: 0;
  top: 34px;
}

.card-project {
  right: 2%;
  top: 46px;
}

.card-support {
  left: 4%;
  bottom: 178px;
}

.card-files {
  right: 0;
  bottom: 180px;
}

.card-hosting {
  left: 20%;
  bottom: 28px;
}

.card-tools {
  right: 20%;
  bottom: 20px;
}

/* Services */

.services-section {
  background:
    linear-gradient(to bottom, #020406, #061012 55%, #020406);
}

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

.service-card,
.pricing-card,
.support-card,
.contact-card,
.feature-panel {
  border: 1px solid var(--border-soft);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.service-card {
  min-height: 280px;
  padding: 28px;
  border-radius: 30px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  transition: 0.22s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(27, 188, 255, 0.28);
}

.card-number {
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.85rem;
  font-weight: 900;
  margin-bottom: auto;
}

.service-card h3,
.pricing-card h3 {
  font-size: 1.7rem;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.service-card p,
.pricing-card p {
  color: var(--muted);
  line-height: 1.7;
}

/* Feature section */

.feature-section {
  background:
    radial-gradient(circle at 20% 30%, rgba(181, 140, 255, 0.16), transparent 28%),
    #020406;
}

.feature-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 56px;
}

.feature-panel {
  min-height: 430px;
  border-radius: 34px;
  padding: 26px;
  overflow: hidden;
}

.panel-top {
  display: flex;
  gap: 8px;
  margin-bottom: 50px;
}

.panel-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
}

.panel-line {
  height: 16px;
  width: 72%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  margin-bottom: 15px;
}

.panel-line.large {
  width: 92%;
  height: 42px;
  background: linear-gradient(90deg, rgba(27, 188, 255, 0.8), rgba(181, 140, 255, 0.58));
}

.panel-line.short {
  width: 52%;
}

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

.panel-grid div {
  min-height: 130px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(27, 188, 255, 0.18), transparent 48%),
    rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Packages */

.packages-section {
  background:
    linear-gradient(to bottom, #020406, #071014 50%, #020406);
}

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

.pricing-card {
  min-height: 330px;
  padding: 30px;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: rgba(27, 188, 255, 0.34);
  background:
    radial-gradient(circle at top right, rgba(27, 188, 255, 0.18), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
}

.plan-label {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  margin-bottom: 70px;

  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.card-link {
  margin-top: auto;
  color: white;
  text-decoration: none;
  font-weight: 900;
}

.card-link:hover {
  color: var(--blue);
}

/* Marketing */

.marketing-section {
  background:
    radial-gradient(circle at 78% 24%, rgba(27, 188, 255, 0.12), transparent 30%),
    #020406;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 60px;
  align-items: start;
}

/* Support */

.support-section {
  background:
    linear-gradient(to bottom, #020406, #061014);
}

.support-card {
  border-radius: 38px;
  padding: clamp(34px, 6vw, 70px);
  max-width: 980px;
}

.support-card h2 {
  max-width: 820px;
  margin-bottom: 24px;
}

.support-card p {
  max-width: 680px;
  margin-bottom: 28px;
}

.support-hub-page {
  background:
    radial-gradient(circle at 50% 7%, rgba(27, 188, 255, 0.18), transparent 28%),
    radial-gradient(circle at 88% 46%, rgba(71, 247, 165, 0.06), transparent 24%),
    #020406;
}

.support-hero {
  padding-top: 126px;
  padding-bottom: 52px;
  text-align: center;
  background: transparent;
}

.support-hero-inner {
  max-width: 880px;
}

.support-hero-mark {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin-bottom: 18px;
  filter: drop-shadow(0 18px 42px rgba(27, 188, 255, 0.22));
}

.support-badge {
  width: fit-content;
  min-height: 32px;
  margin: 0 auto 18px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(27, 188, 255, 0.24);
  border-radius: 999px;
  color: rgba(141, 226, 255, 0.92);
  background: rgba(27, 188, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.support-hero h1 {
  margin: 0;
  color: white;
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.support-hero-copy {
  max-width: 760px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.support-hero-note {
  max-width: 620px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.65;
}

.support-topics-section,
.support-search-section,
.support-help-section,
.support-request-section,
.support-reassurance-section {
  background: transparent;
}

.support-topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.support-topic-tile {
  min-height: 178px;
  padding: 20px;
  display: grid;
  align-content: start;
  gap: 12px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  color: white;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.026)),
    rgba(255, 255, 255, 0.035);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.support-topic-tile span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(27, 188, 255, 0.22);
  border-radius: 16px;
  color: rgba(141, 226, 255, 0.92);
  background: rgba(27, 188, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 950;
}

.support-topic-tile strong {
  font-size: 1.04rem;
}

.support-topic-tile small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  line-height: 1.5;
}

.support-topic-tile:hover,
.support-topic-tile:focus-visible,
.support-topic-tile.is-selected {
  transform: translateY(-3px);
  border-color: rgba(27, 188, 255, 0.38);
  background:
    radial-gradient(circle at 80% 0%, rgba(27, 188, 255, 0.14), transparent 36%),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26), 0 0 42px rgba(27, 188, 255, 0.08);
}

.support-search-inner {
  max-width: 760px;
  text-align: center;
}

.support-search-inner h2 {
  margin-bottom: 18px;
}

.support-help-search {
  width: 100%;
  min-height: 62px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: white;
  background: rgba(1, 8, 13, 0.72);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
  outline: none;
  font-size: 1rem;
}

.support-help-search::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.support-help-search:focus {
  border-color: rgba(27, 188, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(27, 188, 255, 0.1), 0 20px 70px rgba(0, 0, 0, 0.22);
}

.support-search-empty {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.58);
}

.support-help-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.support-help-card,
.support-studio-card,
.support-request-form,
.support-reassurance-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.074), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.2);
}

.support-help-card {
  min-height: 188px;
  padding: 22px;
}

.support-help-card h3,
.support-studio-card h3 {
  margin: 0 0 10px;
  color: white;
  font-size: 1.05rem;
}

.support-help-card p,
.support-studio-card p,
.support-request-copy p,
.support-reassurance-card p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
}

.support-help-card.is-hidden {
  display: none;
}

.support-request-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: start;
}

.support-request-copy {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.support-request-copy h2,
.support-reassurance-card h2 {
  margin: 0 0 16px;
  color: white;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.support-studio-card {
  margin-top: 28px;
  padding: 24px;
}

.support-studio-card .simple-page-actions {
  margin-top: 18px;
}

.support-request-form {
  padding: clamp(22px, 4vw, 34px);
  display: grid;
  gap: 16px;
}

.support-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.support-request-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  font-weight: 900;
}

.support-request-form input,
.support-request-form select,
.support-request-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: white;
  background: rgba(1, 8, 13, 0.72);
  outline: none;
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.support-request-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.7) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.7) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 21px,
    calc(100% - 12px) 21px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.support-request-form textarea {
  min-height: 150px;
  padding-top: 14px;
  resize: vertical;
}

.support-request-form input::placeholder,
.support-request-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.support-request-form input:focus,
.support-request-form select:focus,
.support-request-form textarea:focus {
  border-color: rgba(27, 188, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(27, 188, 255, 0.1);
}

.support-request-form .has-error input,
.support-request-form .has-error select,
.support-request-form .has-error textarea {
  border-color: rgba(255, 120, 120, 0.58);
}

.support-form-helper,
.support-file-note,
.support-form-message {
  margin: -4px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.88rem;
  line-height: 1.55;
}

.support-submit-btn {
  width: 100%;
  margin-top: 4px;
}

.support-form-message.success {
  color: #47f7a5;
}

.support-form-message.error {
  color: #ff9b9b;
}

.support-reassurance-card {
  max-width: 980px;
  margin-inline: auto;
  padding: clamp(28px, 5vw, 54px);
  text-align: center;
}

/* Contact */

.contact-section {
  background:
    radial-gradient(circle at 50% 40%, rgba(27, 188, 255, 0.18), transparent 32%),
    linear-gradient(to bottom, #061014, #020406);
}

.contact-card {
  border-radius: 42px;
  padding: clamp(38px, 7vw, 78px);
  text-align: center;
}

.contact-card h2 {
  max-width: 830px;
  margin: 0 auto 22px;
}

.contact-card p {
  max-width: 720px;
  margin: 0 auto 30px;
}

.contact-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* Standard pages */

.page-main {
  min-height: 100vh;
  padding-top: var(--header-height);
  background:
    radial-gradient(circle at 72% 16%, rgba(27, 188, 255, 0.13), transparent 30%),
    radial-gradient(circle at 18% 34%, rgba(181, 140, 255, 0.1), transparent 28%),
    #020406;
}

.page-hero {
  padding-top: 112px;
  padding-bottom: 80px;
  background: transparent;
}

.page-hero h1 {
  max-width: 960px;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.page-hero .section-text {
  max-width: 760px;
}

.page-topic-section {
  padding-top: 40px;
  background: linear-gradient(to bottom, rgba(2, 4, 6, 0), #020406 24%);
}

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

.topic-card {
  min-height: 250px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  color: white;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

a.topic-card:hover {
  transform: translateY(-3px);
  border-color: rgba(27, 188, 255, 0.28);
}

.topic-preview {
  min-height: 94px;
  margin-bottom: auto;
  padding: 16px;
  display: grid;
  align-content: center;
  gap: 9px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 82% 22%, rgba(27, 188, 255, 0.16), transparent 35%),
    rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.topic-preview span {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.topic-preview span:first-child {
  width: 34%;
  background: rgba(27, 188, 255, 0.7);
}

.topic-preview span:nth-child(2) {
  width: 84%;
}

.topic-preview span:nth-child(3) {
  width: 58%;
}

.topic-card h2 {
  margin-top: 22px;
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.topic-card p {
  color: var(--muted);
  line-height: 1.6;
}

/* Search page */

.search-page {
  min-height: 100vh;
  padding-top: var(--header-height);
  background:
    radial-gradient(circle at 72% 20%, rgba(27, 188, 255, 0.14), transparent 30%),
    radial-gradient(circle at 15% 18%, rgba(181, 140, 255, 0.12), transparent 28%),
    #020406;
}

.search-results-section {
  min-height: calc(100vh - 220px);
  padding-top: 108px;
  background: transparent;
}

.search-results-section h1 {
  max-width: 820px;
  font-size: clamp(2.8rem, 6vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.search-summary {
  max-width: 720px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.search-page-form {
  max-width: 860px;
  margin: 36px 0 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.search-page-input {
  min-height: 58px;
  font-size: 1.04rem;
}

.search-results-list {
  max-width: 980px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.search-results-list .search-result-card {
  grid-template-columns: 54px 1fr 20px;
  padding: 16px;
}

.search-results-list .search-thumb {
  width: 54px;
  height: 54px;
}

.search-empty {
  grid-column: 1 / -1;
  max-width: 760px;
  padding: 28px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  line-height: 1.7;
}

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

/* Account foundation pages */

.account-page {
  min-height: 100vh;
  padding-top: var(--header-height);
  background:
    radial-gradient(circle at 70% 18%, rgba(27, 188, 255, 0.16), transparent 30%),
    radial-gradient(circle at 18% 36%, rgba(181, 140, 255, 0.1), transparent 28%),
    #020406;
}

.account-hero {
  padding-top: 112px;
  padding-bottom: 80px;
  background: transparent;
}

.account-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.account-copy h1 {
  max-width: 860px;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.account-copy .section-text {
  max-width: 720px;
}

.account-status-panel,
.dashboard-placeholder-panel {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 34px;
  background:
    radial-gradient(circle at 80% 0%, rgba(27, 188, 255, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.42),
    0 0 70px rgba(27, 188, 255, 0.1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.account-status-panel {
  padding: clamp(24px, 4vw, 40px);
}

.account-status-badge {
  width: fit-content;
  min-height: 32px;
  padding: 0 12px;
  margin-bottom: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(27, 188, 255, 0.22);
  border-radius: 999px;
  background: rgba(27, 188, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
}

.account-status-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #47f7a5;
  box-shadow: 0 0 18px rgba(71, 247, 165, 0.58);
}

.account-status-panel h2,
.dashboard-placeholder-panel h2 {
  color: white;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 16px;
}

.account-status-panel p,
.dashboard-placeholder-panel p {
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.7;
}

.account-system-list {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.account-system-list span {
  min-height: 42px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.88rem;
  font-weight: 800;
}

.auth-panel {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.auth-wide-btn {
  width: 100%;
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.auth-tab {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.64);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.auth-tab.is-active {
  color: white;
  background: rgba(27, 188, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(27, 188, 255, 0.24);
}

.google-auth-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: #202124;
  background: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.google-auth-btn svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.google-auth-btn:hover {
  transform: translateY(-1px);
  background: #f8fafd;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
}

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

.auth-form.is-active {
  display: grid;
}

.auth-form label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 900;
}

.auth-form label span {
  color: rgba(255, 255, 255, 0.42);
  font-weight: 700;
}

.auth-form input,
.auth-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: white;
  background: rgba(1, 8, 13, 0.68);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.auth-form textarea {
  min-height: 112px;
  padding-top: 13px;
  resize: vertical;
}

.auth-form input::placeholder,
.auth-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.auth-form input:focus,
.auth-form textarea:focus {
  border-color: rgba(27, 188, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(27, 188, 255, 0.11);
}

.auth-check-row {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.auth-check-row input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  padding: 0;
  accent-color: var(--blue);
}

.auth-state-panel {
  display: grid;
  gap: 16px;
}

.auth-account-card {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid rgba(27, 188, 255, 0.18);
  border-radius: 18px;
  background: rgba(27, 188, 255, 0.07);
}

.auth-account-card strong {
  color: white;
  overflow-wrap: anywhere;
}

.auth-account-card span {
  color: rgba(255, 255, 255, 0.62);
  overflow-wrap: anywhere;
}

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

.auth-site-header {
  background: rgba(2, 4, 6, 0.74);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.auth-site-header .nav-menu,
.auth-site-header .search-toggle,
.auth-site-header .menu-btn {
  display: none;
}

.auth-page-shell {
  min-height: 100vh;
  padding: calc(var(--header-height) + 34px) 18px 42px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.auth-page-shell::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 50% 14%, rgba(27, 188, 255, 0.18), transparent 27%),
    radial-gradient(circle at 18% 70%, rgba(71, 247, 165, 0.08), transparent 24%);
  pointer-events: none;
}

.auth-card {
  width: min(100%, 462px);
  position: relative;
  z-index: 1;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at 80% 0%, rgba(27, 188, 255, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.028)),
    rgba(2, 7, 11, 0.78);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.48),
    0 0 70px rgba(27, 188, 255, 0.08);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
}

.auth-card[hidden],
.auth-modal[hidden],
.auth-modal-backdrop[hidden] {
  display: none;
}

.auth-logo-mark {
  width: 54px;
  height: 54px;
  object-fit: contain;
  display: block;
  margin: 0 auto 18px;
  filter: drop-shadow(0 12px 34px rgba(27, 188, 255, 0.2));
}

.auth-eyebrow {
  margin: 0 0 10px;
  color: rgba(141, 226, 255, 0.88);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
}

.auth-card h1 {
  margin: 0;
  color: white;
  font-size: clamp(2rem, 5vw, 2.7rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-align: center;
}

.auth-subtitle,
.auth-helper {
  margin: 12px auto 0;
  max-width: 360px;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.55;
  text-align: center;
}

.auth-helper {
  margin-top: 2px;
  font-size: 0.82rem;
}

.auth-card .auth-panel {
  margin-top: 24px;
}

.auth-divider {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.78rem;
  font-weight: 800;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.auth-link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 2px;
}

.auth-text-btn {
  padding: 4px 0;
  border: 0;
  color: rgba(141, 226, 255, 0.88);
  background: transparent;
  font-size: 0.85rem;
  font-weight: 850;
  cursor: pointer;
}

.auth-text-btn:hover,
.auth-text-btn:focus-visible {
  color: white;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.auth-state-panel .account-status-badge {
  margin: 0 auto 2px;
}

.auth-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.auth-modal {
  width: min(100%, 470px);
  max-height: min(760px, calc(100vh - 36px));
  overflow: auto;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  background:
    radial-gradient(circle at 90% 0%, rgba(27, 188, 255, 0.13), transparent 32%),
    rgba(3, 9, 14, 0.96);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.58);
}

.auth-modal-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  margin-bottom: 18px;
}

.auth-modal .auth-eyebrow {
  text-align: left;
}

.auth-modal h2 {
  margin: 0;
  color: white;
  font-size: clamp(1.35rem, 4vw, 1.8rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.auth-modal .auth-subtitle {
  max-width: none;
  text-align: left;
}

.auth-modal-close {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.auth-modal-close:hover,
.auth-modal-close:focus-visible {
  color: white;
  border-color: rgba(27, 188, 255, 0.32);
  background: rgba(27, 188, 255, 0.1);
}

@media (max-width: 760px) {
  .auth-site-header .nav-menu,
  .auth-site-header .search-toggle,
  .auth-site-header .nav-cta {
    display: none;
  }

  .auth-page-shell {
    align-items: start;
    padding-top: calc(var(--header-height) + 18px);
    overflow: visible;
  }

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

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

.magic-link-form label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 900;
}

.magic-link-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.magic-link-row input {
  min-width: 0;
  min-height: 46px;
  padding: 0 16px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.065);
  outline: 0;
  font: inherit;
}

.magic-link-row input:focus {
  border-color: rgba(27, 188, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(27, 188, 255, 0.11);
}

.auth-message {
  min-height: 24px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
  line-height: 1.5;
}

.auth-message.success {
  color: #47f7a5;
}

.auth-message.error {
  color: #ff8a8a;
}

.dashboard-placeholder-panel {
  padding: 16px;
}

.auth-dashboard-panel {
  padding: clamp(24px, 4vw, 40px);
}

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

.dashboard-auth-topline {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.dashboard-user-line {
  margin-bottom: 22px;
}

.dashboard-user-line strong {
  color: white;
  font-weight: 900;
}

.dashboard-shell-preview {
  min-height: 460px;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 12px;
}

.dashboard-preview-sidebar,
.dashboard-preview-main {
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.dashboard-preview-sidebar {
  padding: 14px;
  display: grid;
  align-content: start;
  gap: 10px;
}

.dashboard-preview-sidebar span {
  height: 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.dashboard-preview-sidebar span:first-child {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(27, 188, 255, 0.8), rgba(181, 140, 255, 0.5));
}

.dashboard-preview-main {
  padding: 16px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
}

.dashboard-preview-top {
  min-height: 76px;
  padding: 16px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 80% 20%, rgba(27, 188, 255, 0.2), transparent 34%),
    rgba(255, 255, 255, 0.055);
}

.dashboard-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.dashboard-preview-grid span {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.account-note-section {
  padding-top: 40px;
  background: #020406;
}

.account-note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.account-note-card {
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
}

.account-note-card h2 {
  margin-bottom: 12px;
  color: white;
  font-size: 1.32rem;
  letter-spacing: 0;
}

.account-note-card p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
}

.cms-data-card {
  display: flex;
  flex-direction: column;
}

.cms-data-list {
  margin-top: 16px;
  display: grid;
  gap: 9px;
}

.cms-data-list div {
  min-height: 38px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.04);
}

.cms-data-list span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cms-data-list strong {
  min-width: 0;
  color: white;
  font-size: 0.92rem;
  text-align: right;
  overflow-wrap: anywhere;
}

.cms-empty-state {
  margin-top: auto;
  padding-top: 16px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Client Dashboard */

.dashboard-page {
  min-height: 100vh;
  padding-top: var(--header-height);
  background:
    radial-gradient(circle at 20% 8%, rgba(27, 188, 255, 0.16), transparent 30%),
    radial-gradient(circle at 80% 18%, rgba(181, 140, 255, 0.11), transparent 28%),
    linear-gradient(180deg, #020406 0%, #04090d 46%, #020406 100%);
}

.dashboard-access-section {
  min-height: calc(100vh - var(--header-height));
  padding: clamp(72px, 10vw, 120px) 0;
  display: grid;
  align-items: center;
}

.dashboard-access-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.dashboard-workspace {
  width: min(1480px, calc(100% - 32px));
  min-height: calc(100vh - var(--header-height));
  margin: 0 auto;
  padding: clamp(18px, 3vw, 34px) 0 clamp(42px, 6vw, 72px);
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
  gap: clamp(18px, 2.2vw, 28px);
}

.dashboard-workspace .dashboard-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  align-self: start;
  min-height: calc(100vh - var(--header-height) - 40px);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.026)),
    rgba(2, 8, 12, 0.78);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(28px) saturate(1.22);
  -webkit-backdrop-filter: blur(28px) saturate(1.22);
}

.dashboard-sidebar-brand {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 950;
}

.dashboard-sidebar-brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(27, 188, 255, 0.28));
}

.dashboard-sidebar-nav {
  display: grid;
  gap: 7px;
}

.dashboard-sidebar-nav a {
  min-height: 42px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.66);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 850;
  transition: 180ms ease;
}

.dashboard-sidebar-nav a:hover,
.dashboard-sidebar-nav a.is-active {
  color: white;
  border-color: rgba(27, 188, 255, 0.22);
  background: rgba(27, 188, 255, 0.09);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.dashboard-main {
  min-width: 0;
  display: grid;
  gap: 18px;
  align-content: start;
}

.dashboard-section {
  min-width: 0;
  display: none;
  gap: 18px;
}

.dashboard-section.is-active {
  display: grid;
}

.dashboard-top-panel,
.dashboard-stat-card,
.dashboard-panel,
.dashboard-identity-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.026)),
    rgba(4, 10, 14, 0.76);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(24px) saturate(1.16);
  -webkit-backdrop-filter: blur(24px) saturate(1.16);
}

.dashboard-top-panel {
  padding: clamp(24px, 4vw, 42px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 22px;
  align-items: stretch;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.dashboard-top-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 0%, rgba(27, 188, 255, 0.22), transparent 28%),
    linear-gradient(90deg, rgba(27, 188, 255, 0.14), transparent 34%);
  opacity: 0.7;
}

.dashboard-top-panel > * {
  position: relative;
  z-index: 1;
}

.dashboard-top-panel h1 {
  max-width: 780px;
  margin-top: 14px;
  color: white;
  font-size: clamp(2.2rem, 5vw, 4.9rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.dashboard-top-panel p {
  max-width: 650px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.65;
}

.dashboard-identity-card {
  padding: 20px;
  display: grid;
  align-content: center;
  gap: 12px;
  border-radius: 22px;
}

.dashboard-identity-card .dashboard-user-line {
  margin: 0;
  display: grid;
  gap: 5px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-identity-card .dashboard-user-line strong {
  color: white;
  font-size: 0.96rem;
  letter-spacing: 0;
  text-transform: none;
  overflow-wrap: anywhere;
}

.dashboard-identity-card .btn {
  width: 100%;
  min-height: 42px;
  margin-top: 4px;
}

.dashboard-stat-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.dashboard-stat-card {
  min-height: 150px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
}

.dashboard-stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(27, 188, 255, 0.26);
  opacity: 0.75;
  pointer-events: none;
}

.dashboard-stat-card.success::before {
  border-top-color: rgba(71, 247, 165, 0.36);
}

.dashboard-stat-card.attention::before {
  border-top-color: rgba(27, 188, 255, 0.4);
}

.dashboard-stat-card.danger::before {
  border-top-color: rgba(255, 138, 138, 0.5);
}

.dashboard-stat-card span,
.dashboard-workspace .cms-panel-heading span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dashboard-stat-card strong {
  color: white;
  font-size: clamp(1.35rem, 2.4vw, 2.05rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.dashboard-stat-card p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
  line-height: 1.5;
}

.dashboard-content-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.dashboard-panel {
  min-height: 260px;
  padding: clamp(20px, 2.4vw, 28px);
  grid-column: span 4;
  border-radius: 24px;
}

.dashboard-panel-large {
  grid-column: span 6;
  min-height: 330px;
}

.dashboard-panel h2 {
  margin-bottom: 18px;
  color: white;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  letter-spacing: 0;
}

.dashboard-workspace .cms-panel-heading {
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-workspace .cms-panel-heading.compact {
  margin-bottom: 14px;
}

.dashboard-workspace .cms-panel-heading div {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.dashboard-workspace .cms-panel-heading strong {
  color: white;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.cms-panel-text {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.98rem;
  line-height: 1.65;
}

.cms-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 11px;
  color: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.cms-status-badge.success {
  color: #47f7a5;
  border-color: rgba(71, 247, 165, 0.22);
  background: rgba(71, 247, 165, 0.08);
}

.cms-status-badge.attention {
  color: #9fe7ff;
  border-color: rgba(27, 188, 255, 0.25);
  background: rgba(27, 188, 255, 0.09);
}

.cms-status-badge.danger {
  color: #ffb3b3;
  border-color: rgba(255, 138, 138, 0.28);
  background: rgba(255, 138, 138, 0.09);
}

.cms-progress-wrap {
  margin-top: 20px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.cms-progress-top {
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  font-weight: 900;
}

.cms-progress-top strong {
  color: white;
}

.cms-progress-track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.cms-progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), #47f7a5);
  box-shadow: 0 0 20px rgba(27, 188, 255, 0.36);
}

.cms-file-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.cms-file-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(27, 188, 255, 0.8), rgba(181, 140, 255, 0.42));
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.cms-file-card strong {
  color: white;
  overflow-wrap: anywhere;
}

.cms-file-card p {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.88rem;
  line-height: 1.45;
}

.cms-timeline {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 14px;
}

.cms-timeline > span {
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 999px;
  background: #47f7a5;
  box-shadow: 0 0 0 6px rgba(71, 247, 165, 0.1), 0 0 22px rgba(71, 247, 165, 0.28);
}

.cms-timeline strong {
  color: white;
  font-size: 1.04rem;
}

.cms-timeline p {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
}

.cms-timeline small {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-workspace .cms-data-list {
  margin-top: 0;
  gap: 10px;
}

.dashboard-workspace .cms-data-list div {
  min-height: 46px;
  padding: 12px 14px;
  border-radius: 16px;
}

.dashboard-workspace .cms-data-list strong {
  font-size: 0.95rem;
}

.dashboard-workspace .cms-empty-state {
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.dashboard-section-head {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background:
    radial-gradient(circle at 8% 0%, rgba(27, 188, 255, 0.14), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.024)),
    rgba(4, 10, 14, 0.74);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(24px) saturate(1.16);
  -webkit-backdrop-filter: blur(24px) saturate(1.16);
}

.dashboard-section-head h2 {
  max-width: 860px;
  margin-top: 12px;
  color: white;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.dashboard-section-head p {
  max-width: 760px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.64);
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  line-height: 1.65;
}

.dashboard-section-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.dashboard-two-column {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 14px;
  align-items: start;
}

.dashboard-record-card,
.dashboard-form,
.dashboard-timeline-item {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(4, 10, 14, 0.74);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(22px) saturate(1.14);
  -webkit-backdrop-filter: blur(22px) saturate(1.14);
}

.dashboard-record-card {
  padding: clamp(18px, 2.2vw, 24px);
  border-radius: 22px;
  display: grid;
  gap: 16px;
}

.dashboard-record-head {
  min-width: 0;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.dashboard-record-head > div {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.dashboard-record-head span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.dashboard-record-head h3 {
  color: white;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.14;
  overflow-wrap: anywhere;
}

.dashboard-related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.dashboard-related-grid p,
.dashboard-disabled-action {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  line-height: 1.45;
}

.dashboard-record-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.dashboard-record-actions .btn,
.dashboard-disabled-action {
  min-height: 40px;
}

.dashboard-disabled-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  opacity: 0.72;
}

.dashboard-form {
  padding: clamp(18px, 2.2vw, 24px);
  border-radius: 22px;
  display: grid;
  gap: 14px;
}

.dashboard-form h3 {
  color: white;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.dashboard-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-form input,
.dashboard-form select,
.dashboard-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  outline: none;
  background: rgba(255, 255, 255, 0.055);
  font: inherit;
  font-size: 0.96rem;
  letter-spacing: 0;
  text-transform: none;
  transition: 180ms ease;
}

.dashboard-form select {
  color-scheme: dark;
}

.dashboard-form textarea {
  min-height: 120px;
  padding-top: 13px;
  resize: vertical;
  line-height: 1.55;
}

.dashboard-form input:focus,
.dashboard-form select:focus,
.dashboard-form textarea:focus {
  border-color: rgba(27, 188, 255, 0.42);
  box-shadow: 0 0 0 4px rgba(27, 188, 255, 0.1);
}

.dashboard-form-message {
  min-height: 22px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
  line-height: 1.45;
}

.dashboard-form-message.success {
  color: #47f7a5;
}

.dashboard-form-message.error {
  color: #ff9b9b;
}

.dashboard-timeline-list {
  display: grid;
  gap: 12px;
}

.dashboard-timeline-item {
  padding: 18px;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 14px;
  border-radius: 20px;
}

.dashboard-timeline-item > span {
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 999px;
  background: #47f7a5;
  box-shadow: 0 0 0 6px rgba(71, 247, 165, 0.1), 0 0 22px rgba(71, 247, 165, 0.28);
}

.dashboard-timeline-item strong {
  color: white;
  font-size: 1.02rem;
  overflow-wrap: anywhere;
}

.dashboard-timeline-item p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.dashboard-timeline-item small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-note-list {
  display: grid;
  gap: 10px;
}

.account-console-page .dashboard-access-section {
  min-height: calc(100vh - var(--header-height));
}

.account-workspace {
  grid-template-columns: 238px minmax(0, 1fr);
}

.account-section {
  min-width: 0;
  display: none;
  gap: 18px;
}

.account-section.is-active {
  display: grid;
}

.account-avatar-row {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.account-avatar-preview {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  color: white;
  border: 1px solid rgba(27, 188, 255, 0.2);
  border-radius: 30px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.32), transparent 26%),
    linear-gradient(145deg, rgba(27, 188, 255, 0.66), rgba(181, 140, 255, 0.28)),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 22px 64px rgba(27, 188, 255, 0.16);
  font-size: 1.45rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  overflow: hidden;
}

.account-avatar-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-toggle-form {
  max-width: 680px;
}

.account-toggle-row {
  min-height: 68px;
  padding: 0 18px;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.account-toggle-row span {
  color: white;
  font-size: 0.98rem;
  letter-spacing: 0;
  text-transform: none;
}

.account-toggle-row input {
  width: 48px;
  height: 28px;
  min-height: 28px;
  padding: 0;
  appearance: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  position: relative;
  cursor: pointer;
}

.account-toggle-row input::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 3px;
  left: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  transition: transform 0.18s ease, background 0.18s ease;
}

.account-toggle-row input:checked {
  background: rgba(27, 188, 255, 0.42);
  border-color: rgba(27, 188, 255, 0.54);
}

.account-toggle-row input:checked::before {
  transform: translateX(18px);
  background: white;
}

.dashboard-team-stack {
  min-width: 0;
  display: grid;
  gap: 14px;
  align-content: start;
}

.dashboard-subsection-title {
  margin: 0 0 12px;
  color: white;
  font-size: 1rem;
  font-weight: 950;
}

.dashboard-copy-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.dashboard-copy-row input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  font: inherit;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dashboard-role-grid {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.dashboard-role-grid p {
  margin: 0;
  padding: 13px 14px;
  display: grid;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.dashboard-role-grid strong {
  color: white;
}

.dashboard-role-grid span {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.45;
}

.account-status-badge.danger::before {
  background: #ff8a8a;
  box-shadow: 0 0 18px rgba(255, 138, 138, 0.36);
}

.checkout-page,
.payment-result-page {
  min-height: 100vh;
  padding: calc(var(--header-height) + clamp(42px, 7vw, 86px)) 0 clamp(72px, 10vw, 120px);
  background:
    radial-gradient(circle at 18% 8%, rgba(27, 188, 255, 0.18), transparent 32%),
    radial-gradient(circle at 82% 22%, rgba(71, 247, 165, 0.09), transparent 26%),
    linear-gradient(180deg, #020406 0%, #050b10 48%, #020406 100%);
}

.checkout-hero,
.checkout-shell,
.payment-result-card {
  width: min(100% - 36px, 1180px);
  margin: 0 auto;
}

.checkout-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 24px;
  align-items: end;
  margin-bottom: clamp(26px, 5vw, 48px);
}

.checkout-hero h1,
.payment-result-card h1 {
  max-width: 860px;
  margin-top: 12px;
  color: white;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.checkout-hero p:not(.section-eyebrow),
.payment-result-card p {
  max-width: 720px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.7;
}

.checkout-auth-card,
.checkout-summary-card,
.checkout-payment-card,
.payment-result-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 8% 0%, rgba(27, 188, 255, 0.12), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.026)),
    rgba(4, 10, 14, 0.76);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(26px) saturate(1.18);
  -webkit-backdrop-filter: blur(26px) saturate(1.18);
}

.checkout-auth-card {
  padding: 20px;
  border-radius: 22px;
}

.checkout-auth-card p {
  margin: 12px 0 16px;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.55;
}

.checkout-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 18px;
  align-items: start;
}

.checkout-summary-card,
.checkout-payment-card,
.payment-result-card {
  padding: clamp(22px, 3vw, 34px);
  border-radius: 28px;
}

.checkout-summary-card {
  position: sticky;
  top: calc(var(--header-height) + 22px);
  display: grid;
  gap: 18px;
}

.checkout-summary-card h2,
.checkout-payment-card h2 {
  color: white;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.08;
}

.checkout-price {
  color: white;
  font-size: clamp(2.3rem, 6vw, 4.2rem);
  line-height: 0.96;
}

.checkout-summary-card p,
.checkout-payment-card .cms-panel-text {
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.65;
}

.checkout-data-list {
  display: grid;
  gap: 10px;
}

.checkout-data-list div,
.checkout-trust-note {
  padding: 13px 14px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.checkout-data-list span,
.checkout-trust-note span {
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.45;
}

.checkout-data-list strong,
.checkout-trust-note strong {
  color: white;
  text-align: right;
}

.checkout-trust-note {
  display: grid;
}

.checkout-trust-note strong,
.checkout-trust-note span {
  text-align: left;
}

.checkout-payment-card {
  min-height: 420px;
}

.checkout-form {
  display: grid;
  gap: 20px;
}

.checkout-pay-button {
  width: 100%;
  min-height: 52px;
}

.checkout-success-state {
  display: grid;
  gap: 14px;
}

.payment-result-page {
  display: grid;
  place-items: center;
}

.payment-result-card {
  text-align: center;
}

.payment-result-card .simple-page-actions {
  justify-content: center;
  margin-top: 28px;
}

.dashboard-billing-group {
  grid-column: 1 / -1;
}

.dashboard-billing-group > .dashboard-section-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Admin Console */

.admin-page {
  background:
    radial-gradient(circle at 16% 8%, rgba(27, 188, 255, 0.16), transparent 30%),
    radial-gradient(circle at 86% 14%, rgba(71, 247, 165, 0.08), transparent 24%),
    linear-gradient(180deg, #020406 0%, #050c10 48%, #020406 100%);
}

.admin-console {
  width: min(1560px, calc(100% - 32px));
}

.admin-top-panel h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.admin-message {
  min-height: 24px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.94rem;
  font-weight: 800;
}

.admin-message.success {
  color: #47f7a5;
}

.admin-message.error {
  color: #ff9b9b;
}

.admin-section {
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: 28px;
  background:
    radial-gradient(circle at 0% 0%, rgba(27, 188, 255, 0.08), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.024)),
    rgba(4, 10, 14, 0.72);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(24px) saturate(1.16);
  -webkit-backdrop-filter: blur(24px) saturate(1.16);
}

.admin-section-head {
  margin-bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
}

.admin-section-head h2 {
  margin-top: 8px;
  color: white;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1;
  letter-spacing: 0;
}

.admin-section-grid {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  overflow: visible;
}

.admin-form,
.admin-list-card {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.038);
}

.admin-form {
  padding: 18px;
  display: grid;
  gap: 10px;
  overflow: visible;
  position: relative;
  z-index: 2;
}

.admin-form h3 {
  margin-bottom: 4px;
  color: white;
  font-size: 1.06rem;
  letter-spacing: 0;
}

.admin-form input,
.admin-form select,
.admin-form textarea,
.admin-inline-form input {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 0 13px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  outline: 0;
  font: inherit;
  font-size: 0.92rem;
}

.admin-form select {
  color-scheme: dark;
}

.admin-form textarea {
  min-height: 94px;
  padding-top: 12px;
  resize: vertical;
}

.admin-form input::placeholder,
.admin-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus,
.admin-inline-form input:focus {
  border-color: rgba(27, 188, 255, 0.48);
  box-shadow: 0 0 0 4px rgba(27, 188, 255, 0.1);
}

.admin-form .btn {
  min-height: 42px;
  margin-top: 4px;
}

.admin-list-card {
  padding: 10px;
}

.admin-list {
  display: grid;
  gap: 10px;
}

.admin-record {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.022)),
    rgba(255, 255, 255, 0.03);
}

.admin-record-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.admin-record-title strong {
  min-width: 0;
  color: white;
  font-size: 1.02rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.admin-record > p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
}

.admin-record-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.admin-record-meta span {
  min-width: 0;
  min-height: 44px;
  padding: 10px 12px;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
}

.admin-record-meta em {
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-record-meta strong {
  min-width: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

.admin-inline-form {
  margin-top: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 100px auto;
  gap: 8px;
}

.admin-inline-form .btn {
  min-height: 44px;
  padding: 0 15px;
}

.admin-section .cms-progress-wrap {
  margin: 14px 0;
}

.admin-record-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.admin-record-actions,
.admin-note-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-record-actions .btn,
.admin-note-actions .btn {
  min-height: 36px;
  padding: 0 12px;
  font-size: 0.78rem;
}

.btn-archive {
  color: #ffd79a;
  border: 1px solid rgba(255, 190, 92, 0.24);
  background: rgba(255, 190, 92, 0.08);
}

.btn-archive:hover {
  color: white;
  border-color: rgba(255, 190, 92, 0.42);
  background: rgba(255, 190, 92, 0.14);
}

.btn-danger {
  color: #ffb3b3;
  border: 1px solid rgba(255, 100, 100, 0.28);
  background: rgba(255, 100, 100, 0.09);
}

.btn-danger:hover {
  color: white;
  border-color: rgba(255, 100, 100, 0.48);
  background: rgba(255, 100, 100, 0.15);
}

.admin-drawer-backdrop,
.admin-confirm-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: none;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.admin-drawer-backdrop.is-open,
.admin-confirm-backdrop.is-open {
  display: block;
}

.admin-drawer {
  position: absolute;
  top: calc(var(--header-height) + 14px);
  right: 14px;
  bottom: 14px;
  width: min(780px, calc(100vw - 28px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 0%, rgba(27, 188, 255, 0.15), transparent 34%),
    linear-gradient(145deg, rgba(16, 24, 30, 0.98), rgba(3, 7, 10, 0.98));
  box-shadow: 0 32px 110px rgba(0, 0, 0, 0.62);
}

.admin-drawer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.admin-drawer-close svg {
  width: 18px;
  height: 18px;
  fill: rgba(255, 255, 255, 0.78);
}

.admin-drawer-content {
  height: 100%;
  padding: clamp(24px, 4vw, 38px);
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  overflow: hidden;
}

.admin-drawer-head {
  margin-bottom: 22px;
  padding-right: 52px;
}

.admin-drawer-head h2 {
  margin-top: 10px;
  color: white;
  font-size: clamp(2rem, 4.8vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.admin-drawer-tabs {
  margin-bottom: 16px;
  padding: 6px;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  scrollbar-width: thin;
}

.admin-drawer-tabs button {
  min-height: 38px;
  padding: 0 13px;
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.64);
  border: 1px solid transparent;
  border-radius: 13px;
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
  transition: 0.18s ease;
}

.admin-drawer-tabs button:hover,
.admin-drawer-tabs button:focus-visible,
.admin-drawer-tabs button.is-active {
  color: white;
  border-color: rgba(27, 188, 255, 0.28);
  background: rgba(27, 188, 255, 0.12);
  outline: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.admin-tab-body {
  min-height: 0;
  overflow-y: auto;
  padding-right: 3px;
}

.admin-tab-panel {
  display: none;
}

.admin-tab-panel.is-active {
  display: block;
}

.admin-tab-card-list,
.admin-timeline-list {
  display: grid;
  gap: 12px;
}

.admin-tab-card,
.admin-timeline-card {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.admin-tab-card p,
.admin-timeline-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.6;
}

.admin-timeline-card {
  position: relative;
  padding-left: 28px;
}

.admin-timeline-card::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 11px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #47f7a5;
  box-shadow: 0 0 0 6px rgba(71, 247, 165, 0.09), 0 0 18px rgba(71, 247, 165, 0.28);
}

.admin-timeline-card strong {
  color: white;
}

.admin-timeline-card small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
  font-weight: 850;
}

.admin-tab-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-detail-block,
.admin-danger-zone,
.admin-drawer-form,
.admin-note-form,
.admin-note-card {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.042);
}

.admin-detail-block h3,
.admin-danger-zone h3,
.admin-drawer-form label span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-detail-block p,
.admin-danger-zone p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.admin-mini-list {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.admin-mini-list span {
  min-height: 38px;
  padding: 10px 12px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
}

.admin-drawer-form {
  display: grid;
  gap: 12px;
}

.admin-drawer-form label {
  display: grid;
  gap: 7px;
}

.admin-drawer-form input,
.admin-drawer-form textarea,
.admin-note-form textarea,
.admin-confirm-form input,
.admin-confirm-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 0 13px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  outline: 0;
  font: inherit;
}

.admin-drawer-form textarea,
.admin-note-form textarea,
.admin-confirm-form textarea {
  min-height: 120px;
  padding-top: 12px;
  resize: vertical;
}

.admin-note-controls {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.admin-note-controls label {
  min-height: 36px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.86rem;
  font-weight: 800;
}

.admin-note-list {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.admin-note-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
}

.admin-note-card p {
  margin: 12px 0 8px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.admin-note-card small {
  color: rgba(255, 255, 255, 0.42);
  font-weight: 850;
}

.admin-danger-zone {
  border-color: rgba(255, 100, 100, 0.18);
  background: rgba(255, 100, 100, 0.045);
}

.admin-confirm-backdrop {
  z-index: 1700;
  display: none;
  place-items: center;
  padding: 18px;
}

.admin-confirm-backdrop.is-open {
  display: grid;
}

.admin-confirm-modal {
  width: min(520px, 100%);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 10% 0%, rgba(27, 188, 255, 0.12), transparent 34%),
    rgba(6, 10, 13, 0.98);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.62);
}

.admin-confirm-form {
  display: grid;
  gap: 14px;
}

.admin-confirm-form h2 {
  color: white;
  font-size: 1.55rem;
}

.admin-confirm-form p {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.6;
}

.admin-confirm-note {
  order: 3;
}

.admin-confirm-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.admin-native-select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  min-height: 1px !important;
  padding: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.admin-custom-select {
  position: relative;
  z-index: 1;
}

.admin-custom-select.is-open {
  z-index: 90;
}

.admin-custom-select-button {
  width: 100%;
  min-height: 44px;
  padding: 0 12px 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.074), rgba(255, 255, 255, 0.032)),
    rgba(255, 255, 255, 0.045);
  outline: 0;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.admin-custom-select-button span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-custom-select-button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: rgba(255, 255, 255, 0.72);
  transition: transform 0.18s ease, fill 0.18s ease;
}

.admin-custom-select-button:hover,
.admin-custom-select-button:focus-visible,
.admin-custom-select.is-open .admin-custom-select-button {
  border-color: rgba(27, 188, 255, 0.48);
  background:
    radial-gradient(circle at 12% 0%, rgba(27, 188, 255, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 4px rgba(27, 188, 255, 0.1);
}

.admin-custom-select.is-open .admin-custom-select-button svg {
  transform: rotate(180deg);
  fill: #9fe7ff;
}

.admin-custom-select-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 100;
  max-height: min(320px, 50vh);
  padding: 8px;
  display: none;
  overflow-y: auto;
  border: 1px solid rgba(27, 188, 255, 0.2);
  border-radius: 16px;
  background:
    radial-gradient(circle at 10% 0%, rgba(27, 188, 255, 0.16), transparent 36%),
    linear-gradient(145deg, rgba(18, 28, 34, 0.98), rgba(5, 9, 12, 0.98));
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.52),
    0 0 40px rgba(27, 188, 255, 0.09);
  backdrop-filter: blur(26px) saturate(1.18);
  -webkit-backdrop-filter: blur(26px) saturate(1.18);
}

.admin-custom-select.is-open .admin-custom-select-menu {
  display: grid;
  gap: 4px;
}

.admin-custom-select-option {
  width: 100%;
  min-height: 40px;
  padding: 9px 11px;
  color: rgba(255, 255, 255, 0.84);
  border: 1px solid transparent;
  border-radius: 11px;
  background: transparent;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  overflow-wrap: anywhere;
}

.admin-custom-select-option:hover,
.admin-custom-select-option:focus-visible {
  color: white;
  border-color: rgba(27, 188, 255, 0.2);
  background: rgba(27, 188, 255, 0.11);
  outline: 0;
}

.admin-custom-select-option.is-selected {
  color: white;
  border-color: rgba(71, 247, 165, 0.18);
  background:
    linear-gradient(90deg, rgba(27, 188, 255, 0.14), rgba(71, 247, 165, 0.08)),
    rgba(255, 255, 255, 0.045);
}

.admin-custom-select-option.is-disabled {
  color: rgba(255, 255, 255, 0.42);
  cursor: default;
}

/* 404 */

.error-page {
  min-height: 100vh;
  padding: 32px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 22%, rgba(27, 188, 255, 0.16), transparent 32%),
    radial-gradient(circle at 18% 72%, rgba(181, 140, 255, 0.1), transparent 28%),
    #020406;
}

.error-card {
  width: min(680px, 100%);
  padding: clamp(36px, 7vw, 70px);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.error-logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
  margin-bottom: 28px;
  filter: drop-shadow(0 0 18px rgba(27, 188, 255, 0.3));
}

.error-card h1 {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
  margin-bottom: 18px;
}

.error-card p:not(.section-eyebrow) {
  max-width: 480px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Footer */

.site-footer {
  position: relative;
  padding: clamp(42px, 6vw, 72px) 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(27, 188, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(2, 4, 6, 0.98)),
    #020406;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-wrap,
.footer-inner {
  width: min(var(--max-width), 92%);
  margin: 0 auto;
}

.footer-main .footer-wrap,
.footer-legal .footer-wrap {
  display: grid;
  gap: 34px;
}

.footer-brand-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-row p {
  max-width: 420px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: right;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: white;
  text-decoration: none;
  font-weight: 900;
}

.footer-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(27, 188, 255, 0.28));
}

.footer-inner p {
  color: var(--muted);
  text-align: center;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 38px);
}

.footer-column {
  min-width: 0;
}

.footer-column-title {
  width: 100%;
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-align: left;
  cursor: default;
}

.footer-column-title span {
  display: none;
  width: 14px;
  height: 14px;
  position: relative;
  flex: 0 0 auto;
}

.footer-column-title span::before,
.footer-column-title span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1px;
  background: rgba(255, 255, 255, 0.76);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-column-title span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.footer-link-list {
  display: grid;
  gap: 11px;
  margin-top: 17px;
}

.footer-link-list a,
.footer-bottom-row a,
.footer-legal-crumb a,
.footer-app nav a,
.footer-links {
  color: var(--muted);
  text-decoration: none;
}

.footer-link-list a,
.footer-bottom-row a,
.footer-legal-crumb a,
.footer-app nav a {
  width: fit-content;
  font-size: 0.9rem;
  line-height: 1.35;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-link-list a:hover,
.footer-bottom-row a:hover,
.footer-legal-crumb a:hover,
.footer-app nav a:hover {
  color: white;
  transform: translateX(2px);
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.86rem;
}

.footer-bottom-row div {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-legal {
  padding-top: 44px;
}

.footer-legal-crumb {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.86rem;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-legal-crumb img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.footer-app {
  padding: 24px 0;
  background: rgba(2, 4, 6, 0.92);
}

.footer-app-inner {
  width: min(1480px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.85rem;
}

.footer-app nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: white;
}

/* Legal pages */

.legal-page {
  padding-top: var(--header-height);
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(27, 188, 255, 0.14), transparent 34rem),
    radial-gradient(circle at 82% 18%, rgba(181, 140, 255, 0.1), transparent 24rem),
    #020406;
}

.legal-subnav {
  position: sticky;
  top: var(--header-height);
  z-index: 850;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 7, 10, 0.72);
  backdrop-filter: blur(22px) saturate(1.24);
  -webkit-backdrop-filter: blur(22px) saturate(1.24);
}

.legal-subnav-inner {
  width: min(1180px, 92%);
  min-height: 56px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "top links"
    "crumb crumb";
  align-items: center;
  gap: 0 26px;
}

.legal-subnav-top {
  grid-area: top;
  display: flex;
  align-items: center;
  gap: 18px;
}

.legal-subnav-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: white;
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.legal-subnav-brand img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(27, 188, 255, 0.26));
}

.legal-subnav-toggle {
  display: none;
}

.legal-subnav-links {
  grid-area: links;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.legal-subnav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 800;
  transition: color 0.2s ease;
}

.legal-subnav-links a:hover {
  color: white;
}

.legal-breadcrumb {
  grid-area: crumb;
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 34px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}

.legal-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.legal-breadcrumb a:hover {
  color: white;
}

.legal-hero {
  padding: clamp(72px, 10vw, 128px) 0 clamp(34px, 6vw, 58px);
  text-align: center;
}

.legal-hero-inner {
  width: min(820px, 90%);
  margin: 0 auto;
}

.legal-hero h1 {
  font-size: clamp(2.7rem, 6.8vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin-bottom: 22px;
}

.legal-hero p:not(.section-eyebrow) {
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  line-height: 1.75;
}

.legal-hero span {
  display: inline-flex;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.legal-content-section {
  width: min(1050px, 92%);
  margin: 0 auto;
  padding: 0 0 clamp(82px, 12vw, 142px);
}

.legal-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: clamp(26px, 5vw, 54px);
}

.legal-hub-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.legal-topic-card,
.legal-content-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.088), rgba(255, 255, 255, 0.026)),
    rgba(255, 255, 255, 0.034);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.legal-topic-card {
  min-height: 148px;
  padding: 22px;
  border-radius: 24px;
  color: white;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.legal-topic-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(27, 188, 255, 0.74), transparent);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.legal-topic-card:hover {
  transform: translateY(-4px);
  border-color: rgba(27, 188, 255, 0.34);
  background:
    linear-gradient(145deg, rgba(27, 188, 255, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
}

.legal-topic-card:hover::after {
  opacity: 1;
}

.legal-topic-card span {
  font-size: 1rem;
  font-weight: 900;
}

.legal-topic-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.58;
}

.legal-content-stack {
  display: grid;
  gap: 16px;
}

.legal-content-card {
  padding: clamp(24px, 4vw, 38px);
  border-radius: 28px;
  scroll-margin-top: 150px;
}

.legal-content-card h2 {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.legal-content-card p,
.legal-bottom-note {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}

.legal-bottom-note {
  max-width: 720px;
  margin: 36px auto 0;
  text-align: center;
}

.simple-page {
  padding-top: var(--header-height);
  min-height: 78vh;
  background:
    radial-gradient(circle at 50% 8%, rgba(27, 188, 255, 0.14), transparent 34rem),
    #020406;
}

.simple-hero {
  min-height: 66vh;
  display: flex;
  align-items: center;
  text-align: center;
}

.simple-page-copy {
  max-width: 820px;
}

.simple-page-copy h1 {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin-bottom: 22px;
}

.simple-page-copy p:not(.section-eyebrow) {
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.75;
}

/* Project builder */

.project-builder-page {
  padding-top: var(--header-height);
  min-height: 100vh;
  background:
    radial-gradient(circle at 24% 8%, rgba(27, 188, 255, 0.18), transparent 34rem),
    radial-gradient(circle at 85% 24%, rgba(181, 140, 255, 0.1), transparent 28rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 22rem),
    #020406;
}

.project-builder-hero {
  padding: clamp(58px, 9vw, 118px) 0 34px;
}

.project-builder-hero-inner,
.project-builder-shell {
  width: min(1460px, calc(100% - 56px));
  margin: 0 auto;
}

.project-builder-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 32px;
}

.project-builder-hero h1 {
  max-width: 760px;
  font-size: clamp(3.3rem, 8vw, 7rem);
  line-height: 1;
  letter-spacing: -0.07em;
  margin-bottom: 18px;
  overflow-wrap: anywhere;
}

.project-builder-hero p:not(.section-eyebrow),
.project-auth-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.project-builder-hero p:not(.section-eyebrow) {
  max-width: 620px;
}

.project-auth-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.project-auth-card span {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 28px;
  margin-bottom: 12px;
  padding: 0 11px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.project-auth-card span.is-signed-in {
  color: #b9ffd8;
  background: rgba(73, 255, 155, 0.1);
  border-color: rgba(73, 255, 155, 0.24);
}

.project-auth-card .btn {
  margin-top: 18px;
  min-height: 38px;
  padding: 0 16px;
  font-size: 0.86rem;
}

.project-builder-shell {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: start;
  padding: 22px 0 clamp(86px, 12vw, 142px);
}

.project-preview-panel {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.preview-card,
.project-wizard-card {
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.028)),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.preview-card {
  padding: clamp(14px, 2.5vw, 22px);
  border-radius: 34px;
  overflow: visible;
}

.preview-browser-bar {
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.78rem;
  padding: 0 5px 12px;
}

.preview-browser-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.preview-browser-bar span:first-child {
  background: rgba(255, 102, 102, 0.75);
}

.preview-browser-bar span:nth-child(2) {
  background: rgba(255, 208, 91, 0.75);
}

.preview-browser-bar span:nth-child(3) {
  background: rgba(91, 255, 156, 0.75);
}

.preview-browser-bar p {
  margin-left: auto;
  min-width: 0;
  overflow-wrap: anywhere;
}

.preview-site {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 26px;
  padding: clamp(20px, 4vw, 34px);
  background:
    radial-gradient(circle at 70% 12%, rgba(27, 188, 255, 0.34), transparent 20rem),
    linear-gradient(145deg, #071014, #020406 62%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.28s ease, border-color 0.28s ease;
}

.preview-site::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 50% 18%, black, transparent 75%);
  pointer-events: none;
}

.preview-site.accent-light {
  color: #f8fbff;
  background:
    radial-gradient(circle at 72% 10%, rgba(232, 246, 255, 0.5), transparent 19rem),
    linear-gradient(145deg, #22303a, #071014 64%);
}

.preview-site.accent-cyan {
  border-color: rgba(27, 188, 255, 0.3);
  background:
    radial-gradient(circle at 72% 10%, rgba(27, 188, 255, 0.48), transparent 19rem),
    linear-gradient(145deg, #061825, #020406 64%);
}

.preview-site.accent-gold {
  border-color: rgba(255, 207, 112, 0.26);
  background:
    radial-gradient(circle at 72% 10%, rgba(255, 191, 87, 0.32), transparent 19rem),
    linear-gradient(145deg, #14100a, #020406 64%);
}

.preview-site.accent-neutral {
  background:
    radial-gradient(circle at 72% 10%, rgba(180, 195, 205, 0.24), transparent 19rem),
    linear-gradient(145deg, #11171a, #020406 64%);
}

.preview-site.accent-custom {
  background:
    radial-gradient(circle at 72% 10%, rgba(27, 188, 255, 0.26), transparent 17rem),
    radial-gradient(circle at 20% 76%, rgba(181, 140, 255, 0.2), transparent 18rem),
    linear-gradient(145deg, #071014, #020406 64%);
}

.preview-site-top,
.preview-mini-nav,
.preview-hero-block,
.preview-dashboard-card,
.preview-feature-chips {
  position: relative;
  z-index: 1;
}

.preview-site-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.preview-site-top strong {
  max-width: 58%;
  overflow-wrap: anywhere;
  word-break: break-word;
  color: white;
  font-size: 1.05rem;
  line-height: 1.25;
}

.preview-site-top span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(27, 188, 255, 0.13);
  border: 1px solid rgba(27, 188, 255, 0.22);
  font-size: 0.73rem;
  font-weight: 850;
  line-height: 1.25;
  white-space: normal;
  text-align: right;
}

.preview-mini-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.preview-mini-nav span,
.preview-feature-chips span {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  font-weight: 750;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.preview-hero-block {
  margin-top: 74px;
  max-width: 430px;
}

.preview-hero-block p {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.preview-hero-block h2 {
  color: white;
  font-size: clamp(2.25rem, 4.7vw, 4.05rem);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 18px;
  overflow-wrap: anywhere;
}

.preview-hero-block span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.preview-dashboard-card {
  display: none;
  margin-top: 38px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-dashboard-card.is-visible {
  display: block;
}

.preview-dashboard-card div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.preview-dashboard-card div span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #49ff9b;
  box-shadow: 0 0 16px rgba(73, 255, 155, 0.55);
}

.preview-dashboard-card p {
  color: var(--muted);
  font-size: 0.86rem;
}

.preview-dashboard-card i {
  display: block;
  height: 8px;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(27, 188, 255, 0.8), rgba(73, 255, 155, 0.7));
}

.preview-feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: clamp(34px, 7vw, 92px);
}

.project-wizard-card {
  min-height: 0;
  border-radius: 34px;
  padding: clamp(22px, 3.2vw, 38px);
  min-width: 0;
}

.wizard-progress-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 22px;
  margin-bottom: 14px;
  min-width: 0;
}

.wizard-progress-wrap p,
.wizard-progress-wrap span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.wizard-progress-wrap strong {
  display: block;
  margin-top: 7px;
  color: white;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.wizard-progress-track {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.075);
}

.wizard-progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), #49ff9b);
  box-shadow: 0 0 24px rgba(27, 188, 255, 0.42);
  transition: width 0.26s ease;
}

.wizard-step-dots {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 8px;
  margin: 16px 0 34px;
}

.wizard-step-dots span {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.wizard-step-dots span.is-active,
.wizard-step-dots span.is-complete {
  background: rgba(27, 188, 255, 0.74);
  box-shadow: 0 0 16px rgba(27, 188, 255, 0.24);
}

.project-wizard {
  min-height: 0;
}

.wizard-step {
  display: none;
}

.wizard-step.is-active {
  display: block;
  animation: wizardStepIn 0.28s ease both;
}

@keyframes wizardStepIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wizard-step-copy {
  margin-bottom: 26px;
}

.wizard-step-copy h2 {
  max-width: 720px;
  color: white;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.06em;
  margin-bottom: 12px;
  overflow-wrap: anywhere;
}

.wizard-step-copy p:not(.section-eyebrow) {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.7;
}

.wizard-card-grid,
.wizard-check-grid,
.wizard-field-grid,
.wizard-pill-grid {
  display: grid;
  gap: 12px;
}

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

.wizard-card-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wizard-check-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wizard-pill-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 24px;
}

.wizard-option-card,
.wizard-check-grid button,
.wizard-pill {
  appearance: none;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.026)),
    rgba(255, 255, 255, 0.03);
  color: white;
  text-align: left;
  cursor: pointer;
  white-space: normal;
  overflow-wrap: anywhere;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.wizard-option-card {
  min-height: 0;
  padding: 20px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
}

.wizard-option-card strong {
  font-size: 1rem;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.wizard-option-card span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.wizard-check-grid button,
.wizard-pill {
  min-height: 48px;
  border-radius: 18px;
  padding: 12px 15px;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.3;
}

.wizard-option-card:hover,
.wizard-check-grid button:hover,
.wizard-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(27, 188, 255, 0.28);
}

.wizard-option-card.is-selected,
.wizard-check-grid button.is-selected,
.wizard-pill.is-selected {
  border-color: rgba(27, 188, 255, 0.56);
  background:
    linear-gradient(145deg, rgba(27, 188, 255, 0.2), rgba(255, 255, 255, 0.046)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 0 0 1px rgba(27, 188, 255, 0.14), 0 20px 48px rgba(27, 188, 255, 0.08);
}

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

.wizard-field-wide {
  grid-column: 1 / -1;
}

.wizard-field-grid label,
.wizard-textarea-label {
  display: grid;
  gap: 9px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 850;
}

.wizard-field-grid input,
.wizard-textarea-label textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  color: white;
  font: inherit;
  outline: 0;
  min-width: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.wizard-field-grid input {
  min-height: 52px;
  padding: 0 16px;
}

.wizard-textarea-label {
  margin-top: 22px;
}

.wizard-textarea-label textarea {
  min-height: 142px;
  resize: vertical;
  padding: 16px;
  line-height: 1.6;
}

.wizard-field-grid input:focus,
.wizard-textarea-label textarea:focus {
  border-color: rgba(27, 188, 255, 0.48);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 0 0 4px rgba(27, 188, 255, 0.1);
}

.wizard-mini-heading {
  color: white;
  font-size: 0.92rem;
  margin: 28px 0 12px;
}

.wizard-message {
  min-height: 22px;
  margin-top: 14px;
  color: #ffd38a;
  font-size: 0.9rem;
}

.wizard-controls,
.project-final-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.wizard-controls {
  justify-content: space-between;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.wizard-controls .btn {
  min-height: 42px;
  padding: 0 18px;
  white-space: normal;
  text-align: center;
}

.wizard-controls .btn:disabled {
  pointer-events: none;
  opacity: 0.42;
}

.wizard-skip {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 850;
  cursor: pointer;
  transition: color 0.2s ease;
}

.wizard-skip:hover {
  color: white;
}

.project-brief-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.project-brief-summary div {
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.project-brief-summary span {
  display: block;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.project-brief-summary strong {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

/* Domain search */

.domain-page {
  min-height: 100vh;
  padding-top: var(--header-height);
  background:
    radial-gradient(circle at 18% 10%, rgba(27, 188, 255, 0.18), transparent 32rem),
    radial-gradient(circle at 82% 24%, rgba(181, 140, 255, 0.1), transparent 28rem),
    #020406;
}

.domain-hero,
.domain-search-section,
.domain-section,
.domain-checkout-teaser {
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
}

.domain-hero {
  min-height: 560px;
  display: flex;
  align-items: center;
  text-align: center;
}

.domain-hero-inner {
  width: min(900px, 100%);
  margin: 0 auto;
}

.domain-hero h1 {
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 1;
  letter-spacing: -0.07em;
  margin-bottom: 22px;
  overflow-wrap: anywhere;
}

.domain-hero p:not(.section-eyebrow),
.domain-search-copy p,
.domain-section-copy p,
.domain-checkout-teaser p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.domain-hero p:not(.section-eyebrow) {
  max-width: 680px;
  margin: 0 auto;
}

.domain-hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.domain-search-section,
.domain-section {
  padding-bottom: clamp(74px, 10vw, 128px);
}

.domain-search-panel,
.domain-checkout-teaser {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 34px;
  background:
    radial-gradient(circle at 80% 0%, rgba(27, 188, 255, 0.18), transparent 30rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.domain-search-panel {
  padding: clamp(24px, 5vw, 48px);
}

.domain-search-copy {
  display: grid;
  gap: 10px;
  max-width: 780px;
  margin-bottom: 28px;
}

.domain-search-copy h2,
.domain-section-copy h2,
.domain-checkout-teaser h2 {
  color: white;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  overflow-wrap: anywhere;
}

.domain-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.domain-search-form input {
  width: 100%;
  min-width: 0;
  min-height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  font: inherit;
  font-size: 1.04rem;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.domain-search-form input:focus {
  border-color: rgba(27, 188, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(27, 188, 255, 0.1);
}

.domain-search-form .btn {
  min-height: 64px;
  white-space: normal;
  text-align: center;
}

.domain-search-message,
.domain-toast {
  min-height: 24px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  line-height: 1.5;
}

.domain-search-message.success,
.domain-toast {
  color: #b9ffd8;
}

.domain-search-message.error {
  color: #ffd38a;
}

.domain-results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.domain-empty-state,
.domain-result-card,
.domain-tld-grid article,
.domain-bundle-grid article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.026)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.22);
}

.domain-empty-state {
  grid-column: 1 / -1;
  border-radius: 24px;
  padding: 26px;
}

.domain-empty-state span {
  display: block;
  color: white;
  font-weight: 900;
  margin-bottom: 8px;
}

.domain-empty-state p {
  color: var(--muted);
  line-height: 1.7;
}

.domain-result-card {
  min-width: 0;
  border-radius: 24px;
  padding: 22px;
  display: grid;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.domain-result-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(27, 188, 255, 0.7), transparent);
  opacity: 0.68;
}

.domain-extension-badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: rgba(27, 188, 255, 0.95);
  background: rgba(27, 188, 255, 0.11);
  border: 1px solid rgba(27, 188, 255, 0.18);
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.domain-result-card h3 {
  color: white;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.domain-result-card p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.domain-status-row span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 850;
}

.domain-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.domain-card-actions .btn {
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.82rem;
  white-space: normal;
  text-align: center;
}

.domain-card-actions .btn:disabled {
  cursor: not-allowed;
  opacity: 0.52;
  transform: none;
}

.domain-section-copy {
  max-width: 820px;
  margin-bottom: 28px;
}

.domain-tld-grid,
.domain-bundle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.domain-tld-grid article,
.domain-bundle-grid article {
  min-width: 0;
  border-radius: 24px;
  padding: 22px;
}

.domain-tld-grid strong {
  color: white;
  display: block;
  font-size: 1.8rem;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.domain-tld-grid p,
.domain-bundle-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.domain-bundle-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.domain-bundle-grid span {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  margin-bottom: 18px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.72), transparent 28%),
    linear-gradient(145deg, rgba(27, 188, 255, 0.9), rgba(27, 188, 255, 0.2));
  box-shadow: 0 0 28px rgba(27, 188, 255, 0.26);
}

.domain-bundle-grid h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.domain-checkout-teaser {
  padding: clamp(26px, 5vw, 48px);
  margin-bottom: clamp(76px, 10vw, 132px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.domain-checkout-teaser p:not(.section-eyebrow) {
  max-width: 740px;
}

.project-toast {
  min-height: 24px;
  margin-top: 14px;
  color: #b9ffd8;
  font-size: 0.88rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.project-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

@media (max-width: 980px) {
  .cards-grid,
  .pricing-grid,
  .feature-layout,
  .split-layout,
  .topic-grid {
    grid-template-columns: 1fr;
  }

  .feature-panel {
    min-height: 360px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand-row,
  .footer-bottom-row,
  .footer-app-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-brand-row p {
    text-align: left;
  }

  .footer-brand,
  .footer-links {
    justify-content: center;
  }

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

@media (max-width: 760px) {
  .site-footer {
    padding: 34px 0;
  }

  .footer-main .footer-wrap,
  .footer-legal .footer-wrap {
    gap: 22px;
  }

  .footer-brand-row {
    padding-bottom: 22px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-column {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-column-title {
    min-height: 48px;
    cursor: pointer;
  }

  .footer-column-title span {
    display: block;
  }

  .footer-column.is-open .footer-column-title span::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .footer-link-list {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    padding-bottom: 0;
    transition: max-height 0.28s ease, opacity 0.22s ease, padding-bottom 0.28s ease;
  }

  .footer-column.is-open .footer-link-list {
    max-height: 260px;
    opacity: 1;
    padding-bottom: 18px;
  }

  .footer-bottom-row {
    align-items: flex-start;
    padding-top: 18px;
  }

  .footer-bottom-row div {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .footer-app-inner {
    width: min(100% - 32px, 1480px);
    align-items: center;
    text-align: center;
  }

  .footer-app nav {
    gap: 14px;
  }

  .legal-subnav-inner {
    width: min(100% - 32px, 1180px);
    min-height: 58px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "top"
      "links"
      "crumb";
    gap: 0;
  }

  .legal-subnav-top {
    min-height: 58px;
    justify-content: space-between;
  }

  .legal-subnav-toggle {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.055);
    color: white;
    border-radius: 999px;
    min-height: 34px;
    padding: 0 12px 0 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 850;
  }

  .legal-subnav-toggle i {
    width: 8px;
    height: 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.78);
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.2s ease;
  }

  .legal-subnav.is-open .legal-subnav-toggle i {
    transform: rotate(225deg) translateY(-1px);
  }

  .legal-subnav-links {
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.28s ease, opacity 0.2s ease, padding-bottom 0.28s ease;
  }

  .legal-subnav.is-open .legal-subnav-links {
    max-height: 320px;
    opacity: 1;
    padding-bottom: 10px;
  }

  .legal-subnav-links a {
    min-height: 42px;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

  .legal-breadcrumb {
    min-height: 36px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .legal-hero {
    padding-top: 58px;
  }

  .legal-topic-grid,
  .legal-hub-grid {
    grid-template-columns: 1fr;
  }

  .legal-topic-card {
    min-height: 124px;
    border-radius: 20px;
  }
}

@media (max-width: 1180px) {
  .domain-hero,
  .domain-search-section,
  .domain-section,
  .domain-checkout-teaser {
    width: min(100% - 36px, 1240px);
  }

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

  .domain-checkout-teaser {
    grid-template-columns: 1fr;
  }

  .project-builder-hero-inner,
  .project-builder-shell {
    width: min(100% - 36px, 1460px);
  }

  .project-builder-hero-inner,
  .project-builder-shell {
    grid-template-columns: 1fr;
  }

  .project-auth-card {
    max-width: 620px;
  }

  .project-preview-panel {
    position: relative;
    top: auto;
  }

  .preview-site {
    min-height: 0;
  }

  .dashboard-showcase {
    padding-bottom: 118px;
  }

  .dashboard-stage {
    min-height: auto;
    margin-top: 58px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
  }

  .dashboard-device {
    width: min(900px, 100%);
    grid-column: 1 / -1;
    justify-self: center;
    margin-bottom: 14px;
  }

  .dashboard-floating-card {
    position: static;
    width: auto;
    min-height: 132px;
  }

  .dashboard-stage::after {
    bottom: auto;
    top: 300px;
  }
}

@media (max-height: 760px) and (min-width: 901px) {
  .search-drawer-inner {
    padding-top: 16px;
    padding-bottom: 18px;
    gap: 14px;
  }

  .search-field {
    min-height: 48px;
  }

  .search-input {
    min-height: 48px;
    line-height: 48px;
  }

  .search-ghost {
    height: 48px;
    line-height: 48px;
  }

  .drawer-results {
    max-height: min(270px, calc(100svh - var(--header-height) - 104px));
    gap: 8px;
  }

  .drawer-result-card,
  .search-result-card {
    padding: 9px;
  }

  .drawer-result-card p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}

@media (max-width: 900px) {
  .mega-menu {
    display: none;
  }

  .account-menu {
    display: none;
  }

  .header-inner {
    width: min(100% - 28px, 1380px);
    grid-template-columns: auto 1fr auto;
  }

  .nav-menu {
    position: fixed;
    top: calc(var(--header-height) + 8px);
    left: 14px;
    right: 14px;

    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;

    padding: 12px;
    border-radius: 24px;

    background: rgba(12, 12, 13, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.1);

    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);

    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    padding: 15px 16px;
    border-radius: 14px;
    font-size: 1rem;
    text-align: center;
  }

  .nav-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .search-drawer {
    height: calc(100svh - var(--header-height));
    max-height: calc(100svh - var(--header-height));
  }

  .search-drawer-inner {
    width: min(100% - 28px, 1120px);
    height: 100%;
    max-height: 100%;
    padding: 18px 0 20px;
    gap: 16px;
  }

  .search-drawer-content {
    min-height: 0;
    grid-template-rows: auto minmax(0, 1fr);
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .search-drawer-copy {
    padding-top: 0;
  }

  .drawer-results,
  .search-results-list {
    grid-template-columns: 1fr;
  }

  .drawer-results {
    max-height: none;
    height: 100%;
    padding-right: 2px;
  }

  .header-actions {
    gap: 8px;
  }

  .menu-btn {
    display: block;
  }

  .menu-btn.active span:first-child {
    transform: rotate(45deg) translate(4px, 4px);
  }

  .menu-btn.active span:last-child {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  .hero-content {
    margin-top: -10px;
  }

  .section {
    padding: 90px 0;
  }

  .account-layout,
  .account-note-grid {
    grid-template-columns: 1fr;
  }

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

  .dashboard-preview-sidebar {
    display: flex;
    overflow-x: auto;
  }

  .dashboard-preview-sidebar span {
    min-width: 120px;
  }

  .dashboard-preview-sidebar span:first-child {
    min-width: 46px;
    margin: 0 8px 0 0;
  }

  .dashboard-showcase {
    padding: 104px 0 106px;
  }

  .dashboard-hero-copy h2 {
    font-size: clamp(2.7rem, 9vw, 4.9rem);
  }

  .dashboard-window {
    min-height: 0;
    grid-template-columns: 1fr;
    transform: none;
  }

  .dashboard-sidebar {
    min-width: 0;
    padding: 10px;
    flex-direction: row;
    align-items: center;
    overflow-x: auto;
  }

  .dashboard-brand-mark {
    width: 42px;
    height: 42px;
    margin: 0 8px 0 0;
    flex: 0 0 auto;
  }

  .dashboard-nav-pill {
    min-height: 34px;
    flex: 0 0 auto;
  }

  .dashboard-mobile-preview {
    position: static;
    width: auto;
    margin-top: 12px;
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .hero-subtitle {
    font-size: 1.65rem;
  }

  .brand {
    gap: 8px;
    font-size: 0.82rem;
  }

  .brand-logo {
    width: 30px;
    height: 30px;
  }

  .brand span {
    display: none;
  }

  .nav-cta {
    min-height: 28px;
    padding: 0 11px;
    font-size: 0.74rem;
  }

  .search-form {
    grid-template-columns: 1fr 38px;
    gap: 8px;
  }

  .search-input,
  .search-page-input {
    min-height: 48px;
    line-height: 48px;
  }

  .search-field,
  .search-page-field {
    min-height: 48px;
  }

  .search-ghost {
    height: 48px;
    line-height: 48px;
  }

  .search-page-form {
    grid-template-columns: 1fr;
  }

  .account-hero {
    padding-top: 84px;
  }

  .account-copy h1 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  .account-status-panel,
  .dashboard-placeholder-panel {
    border-radius: 26px;
  }

  .account-system-list,
  .dashboard-preview-grid {
    grid-template-columns: 1fr;
  }

  .magic-link-row,
  .dashboard-auth-topline {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .drawer-result-card,
  .search-result-card,
  .search-results-list .search-result-card {
    grid-template-columns: 40px minmax(0, 1fr) 16px;
    gap: 10px;
    padding: 10px;
  }

  .search-thumb,
  .search-results-list .search-thumb {
    width: 40px;
    height: 40px;
  }

  .drawer-result-card p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .search-results-section {
    padding-top: 84px;
  }

  .section h2 {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }

  .dashboard-showcase {
    padding: 86px 0 92px;
  }

  .dashboard-showcase-inner {
    width: min(100% - 28px, 1320px);
  }

  .dashboard-hero-copy h2 {
    font-size: clamp(2.6rem, 13vw, 4.1rem);
    line-height: 0.98;
  }

  .dashboard-hero-copy .section-text {
    margin-top: 20px;
    font-size: 1rem;
  }

  .dashboard-actions {
    margin-top: 26px;
  }

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

  .dashboard-stage {
    margin-top: 44px;
    grid-template-columns: 1fr;
  }

  .dashboard-device {
    margin-bottom: 10px;
  }

  .dashboard-window {
    padding: 10px;
    border-radius: 26px;
  }

  .dashboard-app {
    padding: 12px;
    border-radius: 20px;
  }

  .dashboard-topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

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

  .dashboard-kpi-card,
  .dashboard-project-panel,
  .dashboard-activity-panel {
    grid-column: auto;
    min-height: 0;
    padding: 14px;
  }

  .dashboard-floating-card {
    min-height: 0;
    padding: 15px;
    border-radius: 18px;
  }

  .service-card,
  .pricing-card {
    min-height: 260px;
    padding: 24px;
  }

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

  .panel-grid div {
    min-height: 80px;
  }
}

/* Homepage redesign */

.home-main {
  background: #020406;
  overflow: hidden;
}

.home-main h1,
.home-main h2,
.home-main h3 {
  letter-spacing: 0;
}

.home-main .section {
  padding: clamp(90px, 12vw, 170px) 0;
}

.home-main .section-inner {
  width: min(1240px, 92%);
}

.home-section-copy {
  max-width: 910px;
  margin: 0 auto clamp(38px, 6vw, 72px);
  text-align: center;
}

.home-section-copy h2,
.website-copy h2,
.why-copy h2,
.dashboard-hero-copy h2,
.final-cta-panel h2 {
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  line-height: 0.96;
}

.home-section-copy .section-text,
.website-copy .section-text,
.why-copy .section-text,
.dashboard-hero-copy .section-text {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.7);
}

.home-hero {
  min-height: 100svh;
  padding-top: var(--header-height);
  background: #020406;
}

.home-hero .hero-bg {
  background:
    radial-gradient(circle at 50% 44%, rgba(27, 188, 255, 0.22), transparent 24%),
    radial-gradient(circle at 20% 18%, rgba(181, 140, 255, 0.12), transparent 24%),
    linear-gradient(140deg, #061114 0%, #020406 56%, #010203 100%);
}

.home-hero .hero-bg::before {
  opacity: 0.26;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.44) 0 1px, transparent 1.8px);
  background-size: 34px 34px;
  transform: perspective(1000px) rotateX(63deg) rotateZ(-14deg) translateY(130px) scale(1.3);
}

.home-hero .hero-bg::after {
  background:
    radial-gradient(ellipse at 50% 44%, transparent 0%, rgba(2, 4, 6, 0.28) 38%, rgba(2, 4, 6, 0.9) 100%),
    linear-gradient(to bottom, rgba(2, 4, 6, 0.05), rgba(2, 4, 6, 0.84));
}

.home-hero-content {
  width: min(920px, 92%);
  margin-top: 0;
}

.home-hero-content h1 {
  font-size: clamp(4.2rem, 10vw, 9.2rem);
  line-height: 0.9;
  margin-bottom: 18px;
}

.home-hero-content .section-eyebrow {
  margin-bottom: 18px;
}

.home-hero-copy {
  max-width: 780px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1.04rem, 1.5vw, 1.28rem);
  line-height: 1.75;
}

.home-main .btn {
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
}

.dashboard-showcase {
  background:
    radial-gradient(circle at 50% 18%, rgba(27, 188, 255, 0.18), transparent 28%),
    radial-gradient(circle at 16% 48%, rgba(181, 140, 255, 0.1), transparent 28%),
    linear-gradient(180deg, #020406 0%, #061014 46%, #020406 100%);
}

.dashboard-showcase-inner {
  width: min(1360px, 92%);
}

.dashboard-stage {
  min-height: 760px;
}

.ecosystem-section {
  background:
    radial-gradient(circle at 82% 10%, rgba(27, 188, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #020406, #050b0e 48%, #020406);
}

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

.ecosystem-card,
.website-card-grid article,
.hosting-card-grid article,
.workflow-node,
.package-card,
.why-grid article {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.024)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.ecosystem-card:hover,
.website-card-grid article:hover,
.hosting-card-grid article:hover,
.workflow-node:hover,
.package-card:hover,
.why-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(27, 188, 255, 0.3);
  background:
    radial-gradient(circle at top left, rgba(27, 188, 255, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.055);
}

.ecosystem-card {
  min-height: 310px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  border-radius: 26px;
}

.mini-ui-preview {
  min-height: 116px;
  margin-bottom: auto;
  padding: 15px;
  display: grid;
  align-content: center;
  gap: 9px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 78% 18%, rgba(27, 188, 255, 0.22), transparent 34%),
    rgba(255, 255, 255, 0.052);
}

.mini-ui-preview span {
  height: 8px;
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.mini-ui-preview span:first-child {
  width: 34%;
  background: rgba(27, 188, 255, 0.78);
  box-shadow: 0 0 18px rgba(27, 188, 255, 0.26);
}

.mini-ui-preview span:nth-child(2) {
  width: 88%;
}

.mini-ui-preview span:nth-child(3) {
  width: 62%;
}

.mini-ui-preview.is-hosting {
  background:
    linear-gradient(90deg, rgba(71, 247, 165, 0.18), transparent),
    rgba(255, 255, 255, 0.052);
}

.mini-ui-preview.is-automation {
  background:
    radial-gradient(circle at 20% 80%, rgba(27, 188, 255, 0.2), transparent 34%),
    rgba(255, 255, 255, 0.052);
}

.ecosystem-card h3,
.website-card-grid h3,
.hosting-card-grid h3,
.workflow-node h3,
.package-card h3,
.why-grid h3 {
  margin: 20px 0 10px;
  color: white;
  font-size: 1.18rem;
}

.ecosystem-card p,
.website-card-grid p,
.hosting-card-grid p,
.workflow-node p,
.package-card p,
.why-grid p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.62;
}

.website-showcase {
  background:
    radial-gradient(circle at 24% 24%, rgba(27, 188, 255, 0.12), transparent 30%),
    #020406;
}

.website-layout,
.automation-layout,
.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.website-card-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.website-card-grid article,
.hosting-card-grid article,
.why-grid article {
  padding: 18px;
  border-radius: 22px;
}

.website-mockup {
  min-height: 560px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  background:
    radial-gradient(circle at 76% 20%, rgba(27, 188, 255, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.025)),
    rgba(2, 6, 9, 0.82);
  box-shadow:
    0 38px 120px rgba(0, 0, 0, 0.52),
    0 0 70px rgba(27, 188, 255, 0.12);
}

.browser-bar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 20px 20px 12px 12px;
  background: rgba(255, 255, 255, 0.06);
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.website-mockup-hero {
  min-height: 250px;
  margin-top: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 30%, rgba(27, 188, 255, 0.28), transparent 35%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
}

.website-mockup-hero span {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.website-mockup-hero strong {
  max-width: 420px;
  margin-top: 10px;
  color: white;
  font-size: clamp(2.1rem, 4vw, 3.9rem);
  line-height: 1;
}

.website-mockup-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.website-mockup-grid span {
  min-height: 160px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hosting-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(71, 247, 165, 0.08), transparent 26%),
    linear-gradient(180deg, #020406, #061013 52%, #020406);
}

.hosting-console {
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(0, 1fr);
  gap: 16px;
}

.hosting-status-panel {
  min-height: 360px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(71, 247, 165, 0.16);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 18%, rgba(71, 247, 165, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.system-status-dot {
  width: 14px;
  height: 14px;
  margin-bottom: auto;
  display: block;
  border-radius: 50%;
  background: #47f7a5;
  box-shadow: 0 0 24px rgba(71, 247, 165, 0.68);
}

.hosting-status-panel p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  font-weight: 800;
}

.hosting-status-panel strong {
  margin: 8px 0 22px;
  color: white;
  font-size: clamp(3.2rem, 8vw, 6.3rem);
  line-height: 0.9;
}

.hosting-meter {
  height: 11px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.hosting-meter i {
  width: 96%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, #47f7a5, #1bbcff);
}

.hosting-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.automation-section {
  background:
    radial-gradient(circle at 20% 30%, rgba(27, 188, 255, 0.12), transparent 28%),
    radial-gradient(circle at 82% 56%, rgba(181, 140, 255, 0.1), transparent 26%),
    #020406;
}

.workflow-map {
  position: relative;
  min-height: 540px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.workflow-map::before {
  content: "";
  position: absolute;
  inset: 18% 14%;
  z-index: 0;
  border: 1px solid rgba(27, 188, 255, 0.18);
  border-radius: 34px;
  box-shadow: 0 0 46px rgba(27, 188, 255, 0.08);
}

.workflow-node {
  position: relative;
  z-index: 1;
  min-height: 210px;
  padding: 22px;
  border-radius: 26px;
}

.workflow-node .plan-label {
  margin-bottom: 34px;
  color: rgba(27, 188, 255, 0.9);
  background: rgba(27, 188, 255, 0.1);
}

.automation-section .card-link {
  display: none;
}

.package-section {
  background:
    linear-gradient(180deg, #020406, #071014 48%, #020406);
}

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

.package-card {
  min-height: 390px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 30px;
}

.package-card.featured {
  border-color: rgba(27, 188, 255, 0.34);
  background:
    radial-gradient(circle at top right, rgba(27, 188, 255, 0.18), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.42),
    0 0 70px rgba(27, 188, 255, 0.12);
}

.package-card .plan-label {
  margin-bottom: auto;
}

.why-section {
  background:
    radial-gradient(circle at 72% 28%, rgba(27, 188, 255, 0.1), transparent 28%),
    #020406;
}

.why-copy .btn {
  display: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.why-grid article {
  min-height: 190px;
}

.final-cta-section {
  background:
    radial-gradient(circle at 50% 40%, rgba(27, 188, 255, 0.2), transparent 32%),
    linear-gradient(180deg, #020406, #061014);
}

.final-cta-panel {
  max-width: 1080px;
  padding: clamp(42px, 8vw, 86px);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 40px;
  background:
    radial-gradient(circle at 50% 0%, rgba(27, 188, 255, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.026)),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    0 38px 120px rgba(0, 0, 0, 0.48),
    0 0 80px rgba(27, 188, 255, 0.13);
}

.final-cta-panel p:not(.section-eyebrow):not(.final-cta-copy) {
  display: none;
}

.final-cta-copy,
.final-cta-panel > p:not(.section-eyebrow) {
  max-width: 720px;
  margin: 22px auto 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  line-height: 1.75;
}

@keyframes homeReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-main .section-inner,
.home-hero-content {
  animation: homeReveal 0.7s ease both;
}

@media (prefers-reduced-motion: reduce) {
  .home-main .section-inner,
  .home-hero-content {
    animation: none;
  }
}

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

  .ecosystem-card:first-child {
    grid-column: 1 / -1;
  }

  .website-layout,
  .automation-layout,
  .why-layout,
  .hosting-console {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .home-main .section {
    padding: 88px 0;
  }

  .home-hero-content h1 {
    font-size: clamp(3.3rem, 15vw, 6rem);
  }

  .home-section-copy,
  .dashboard-hero-copy {
    text-align: left;
  }

  .home-section-copy .section-text,
  .dashboard-hero-copy .section-text {
    margin-left: 0;
    margin-right: 0;
  }

  .ecosystem-grid,
  .website-card-grid,
  .hosting-card-grid,
  .package-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-card:first-child {
    grid-column: auto;
  }

  .website-mockup,
  .hosting-status-panel {
    min-height: 420px;
  }

  .workflow-map {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .workflow-map::before {
    display: none;
  }

  .package-card {
    min-height: 300px;
  }
}

@media (max-width: 620px) {
  .home-main .section-inner {
    width: min(100% - 28px, 1240px);
  }

  .home-main .btn {
    width: 100%;
  }

  .home-hero-copy {
    font-size: 1rem;
  }

  .home-section-copy h2,
  .website-copy h2,
  .why-copy h2,
  .dashboard-hero-copy h2,
  .final-cta-panel h2 {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
  }

  .ecosystem-card,
  .package-card {
    min-height: 0;
  }

  .website-mockup {
    min-height: 340px;
    padding: 12px;
  }

  .website-mockup-grid {
    grid-template-columns: 1fr;
  }

  .website-mockup-grid span {
    min-height: 74px;
  }

  .hosting-status-panel {
    min-height: 300px;
  }

  .workflow-node {
    min-height: 0;
  }

  .final-cta-panel {
    border-radius: 28px;
  }
}

@media (max-width: 1180px) {
  .dashboard-access-layout,
  .dashboard-workspace {
    grid-template-columns: 1fr;
  }

  .dashboard-workspace .dashboard-sidebar {
    position: static;
    min-height: 0;
  }

  .dashboard-sidebar-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .dashboard-section-grid,
  .dashboard-two-column,
  .checkout-hero,
  .checkout-shell,
  .account-workspace {
    grid-template-columns: 1fr;
  }

  .checkout-summary-card {
    position: static;
  }

  .dashboard-panel,
  .dashboard-panel-large {
    grid-column: span 6;
  }

  .admin-section-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .domain-hero {
    min-height: 0;
    padding: 78px 0 64px;
    text-align: left;
  }

  .domain-hero-inner {
    margin: 0;
  }

  .domain-hero p:not(.section-eyebrow) {
    margin: 0;
  }

  .domain-hero-actions {
    justify-content: flex-start;
  }

  .domain-search-form {
    grid-template-columns: 1fr;
  }

  .domain-search-form .btn {
    width: 100%;
  }

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

  .project-builder-hero {
    padding-top: 52px;
  }

  .project-wizard-card,
  .preview-card {
    border-radius: 26px;
  }

  .wizard-card-grid,
  .wizard-card-grid.compact,
  .wizard-check-grid,
  .wizard-pill-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-wizard-card {
    min-height: 0;
  }

  .project-wizard {
    min-height: 0;
  }

  .dashboard-access-section {
    padding: 72px 0;
  }

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

  .dashboard-sidebar-nav {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .dashboard-sidebar-nav a {
    flex: 0 0 auto;
  }

  .dashboard-panel,
  .dashboard-panel-large {
    grid-column: 1 / -1;
    min-height: 0;
  }

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

  .admin-record-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .domain-hero,
  .domain-search-section,
  .domain-section,
  .domain-checkout-teaser {
    width: min(100% - 28px, 1240px);
  }

  .domain-hero h1,
  .domain-search-copy h2,
  .domain-section-copy h2,
  .domain-checkout-teaser h2 {
    font-size: clamp(2.35rem, 12vw, 4rem);
  }

  .domain-search-panel,
  .domain-checkout-teaser {
    border-radius: 24px;
    padding: 20px;
  }

  .domain-search-form input,
  .domain-search-form .btn {
    min-height: 56px;
  }

  .domain-tld-grid,
  .domain-bundle-grid {
    grid-template-columns: 1fr;
  }

  .domain-card-actions {
    flex-direction: column;
  }

  .domain-card-actions .btn {
    width: 100%;
  }

  .project-builder-hero-inner,
  .project-builder-shell {
    width: min(100% - 28px, 1460px);
  }

  .project-builder-hero h1 {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  .project-auth-card,
  .project-wizard-card {
    padding: 18px;
    border-radius: 22px;
  }

  .preview-card {
    padding: 10px;
    border-radius: 22px;
  }

  .preview-site {
    min-height: 0;
    border-radius: 18px;
  }

  .preview-hero-block {
    margin-top: 44px;
  }

  .preview-hero-block h2 {
    font-size: clamp(2.1rem, 12vw, 3rem);
  }

  .preview-feature-chips {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 28px;
  }

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

  .preview-site-top strong {
    max-width: 100%;
  }

  .wizard-card-grid,
  .wizard-card-grid.compact,
  .wizard-check-grid,
  .wizard-pill-grid,
  .wizard-field-grid,
  .project-brief-summary {
    grid-template-columns: 1fr;
  }

  .wizard-step-copy h2 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .wizard-option-card {
    min-height: 118px;
  }

  .wizard-controls,
  .project-final-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .wizard-controls .btn,
  .project-final-actions .btn,
  .project-final-actions .wizard-skip {
    width: 100%;
  }

  .wizard-skip {
    min-height: 40px;
  }

  .dashboard-workspace {
    width: min(100% - 24px, 1480px);
    padding-top: 14px;
  }

  .dashboard-workspace .dashboard-sidebar,
  .dashboard-top-panel,
  .dashboard-stat-card,
  .dashboard-panel,
  .dashboard-identity-card {
    border-radius: 20px;
  }

  .dashboard-top-panel {
    padding: 22px;
  }

  .dashboard-top-panel h1 {
    font-size: clamp(2.05rem, 12vw, 3.35rem);
  }

  .dashboard-stat-grid,
  .dashboard-content-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-section-head,
  .dashboard-record-card,
  .dashboard-form {
    border-radius: 20px;
  }

  .dashboard-record-head,
  .dashboard-related-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-record-head {
    display: grid;
  }

  .dashboard-record-actions,
  .dashboard-form .btn,
  .dashboard-disabled-action {
    width: 100%;
  }

  .account-avatar-row,
  .dashboard-copy-row,
  .checkout-data-list div {
    grid-template-columns: 1fr;
  }

  .checkout-data-list div {
    display: grid;
  }

  .checkout-data-list strong {
    text-align: left;
  }

  .dashboard-billing-group > .dashboard-section-grid {
    grid-template-columns: 1fr;
  }

  .account-avatar-preview {
    width: 92px;
    height: 92px;
    border-radius: 24px;
  }

  .account-toggle-row {
    min-height: 62px;
    padding: 12px 14px;
  }

  .dashboard-stat-card {
    min-height: 132px;
  }

  .dashboard-workspace .cms-panel-heading,
  .dashboard-workspace .cms-data-list div {
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard-workspace .cms-data-list strong {
    text-align: left;
  }

  .cms-status-badge {
    white-space: normal;
  }

  .admin-console {
    width: min(100% - 24px, 1560px);
  }

  .admin-section {
    padding: 18px;
    border-radius: 22px;
  }

  .admin-record-title {
    flex-direction: column;
  }

  .admin-inline-form {
    grid-template-columns: 1fr;
  }

  .admin-drawer {
    top: var(--header-height);
    right: 0;
    bottom: 0;
    width: 100%;
    border-radius: 22px 22px 0 0;
  }

  .admin-drawer-content {
    padding: 22px 16px 28px;
  }

  .admin-note-card {
    grid-template-columns: 1fr;
  }

  .admin-confirm-actions,
  .admin-record-actions,
  .admin-note-actions {
    flex-direction: column;
  }

  .admin-confirm-actions .btn,
  .admin-record-actions .btn,
  .admin-note-actions .btn {
    width: 100%;
  }
}

/* Final mobile header/account override: full-screen PLM sheets. */
body.mobile-nav-open,
body.account-menu-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .site-header {
    z-index: 1200;
  }

  .header-actions .nav-cta,
  .header-actions [aria-label="Client Login"],
  .header-actions [aria-label="Account menu"],
  .header-actions [aria-label="Account and login"] {
    display: inline-flex;
    min-width: 40px;
    min-height: 40px;
    align-items: center;
    justify-content: center;
  }

  .nav-menu {
    position: fixed;
    inset: 0;
    z-index: 1180;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: calc(env(safe-area-inset-top) + 82px) 18px calc(env(safe-area-inset-bottom) + 24px);
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.985);
    border: 0;
    border-radius: 0;
    background: radial-gradient(circle at 70% 0%, rgba(27, 188, 255, 0.16), transparent 38%), rgba(2, 5, 7, 0.94);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-menu.active {
    display: flex;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-menu::before {
    content: "Platinum Luxe Media";
    display: block;
    margin-bottom: 14px;
    color: white;
    font-size: 1.45rem;
    font-weight: 900;
  }

  .nav-menu a {
    min-height: 58px;
    justify-content: space-between;
    padding: 15px 16px;
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    text-align: left;
    font-size: 1.08rem;
    font-weight: 850;
    background: rgba(255, 255, 255, 0.045);
  }

  .nav-menu a::after {
    display: none;
  }

  .mobile-start-here-panel {
    display: grid;
    max-height: 0;
    overflow: hidden;
    gap: 8px;
    padding: 0;
    opacity: 0;
    transition: max-height 220ms ease, opacity 180ms ease, padding 180ms ease;
  }

  .mobile-start-here-panel.is-open {
    max-height: 720px;
    padding: 4px 0 10px;
    opacity: 1;
  }

  .mobile-start-here-panel a {
    min-height: auto;
    display: grid;
    gap: 4px;
    margin-left: 14px;
    padding: 12px 14px;
    border-radius: 16px;
    font-size: 0.95rem;
  }

  .mobile-start-here-panel span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.82rem;
    font-weight: 500;
  }

  .account-menu {
    position: fixed;
    inset: 0;
    z-index: 1190;
    display: block;
    overflow-y: auto;
    padding: calc(env(safe-area-inset-top) + 76px) 16px calc(env(safe-area-inset-bottom) + 18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
    background: radial-gradient(circle at 20% 0%, rgba(27, 188, 255, 0.18), transparent 36%), rgba(2, 5, 7, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .account-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .account-menu-inner {
    width: min(100%, 620px);
    margin: 0 auto;
    display: grid;
    gap: 16px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
  }

  .account-menu-close {
    justify-self: end;
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    padding: 0 14px;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
  }

  .account-menu-copy small {
    display: block;
    margin-top: 10px;
    color: rgba(142, 231, 255, 0.82);
    font-weight: 800;
  }

  .account-menu-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .account-menu-card {
    min-height: 66px;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    padding: 13px 14px;
    border-radius: 18px;
    text-align: left;
  }

  .account-menu-card span:last-child {
    grid-column: 2;
  }
}

@media (min-width: 769px) {
  .account-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: auto;
    bottom: auto;
    width: 100%;
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    padding: 0;
  }

  .account-menu-inner,
  .account-menu-inner.is-signed-in,
  .account-menu-inner.is-signed-out,
  .account-menu-inner.is-loading {
    width: min(1240px, calc(100vw - 48px));
    margin: 0 auto;
    padding: 22px 0 28px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
}

/* Focused public mobile polish */
@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .site-header {
    height: var(--header-height);
    background:
      linear-gradient(180deg, rgba(6, 10, 13, 0.92), rgba(6, 10, 13, 0.76)),
      rgba(3, 6, 8, 0.72);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  }

  .header-inner {
    width: min(100% - 26px, 1380px);
    height: var(--header-height);
    grid-template-columns: auto 1fr;
    gap: 12px;
  }

  .brand {
    min-width: 0;
    gap: 9px;
  }

  .brand span {
    display: none;
  }

  .brand-logo {
    width: 32px;
    height: 32px;
  }

  .header-actions {
    gap: 2px;
    justify-self: end;
  }

  .header-actions .nav-cta {
    display: none !important;
  }

  .header-actions [aria-label="Client Login"],
  .header-actions [aria-label="Account menu"],
  .header-actions [aria-label="Account and login"] {
    display: inline-grid !important;
    place-items: center;
  }

  .search-toggle,
  .menu-btn,
  .icon-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    color: rgba(255, 255, 255, 0.72);
    border: 0;
    border-radius: 999px;
    background: transparent;
    box-shadow: none;
  }

  .search-toggle:hover,
  .search-toggle:focus-visible,
  .search-toggle.active,
  .icon-btn:hover,
  .icon-btn:focus-visible,
  .icon-btn.active,
  .menu-btn:hover,
  .menu-btn:focus-visible,
  .menu-btn.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    outline: 2px solid rgba(27, 188, 255, 0.34);
    outline-offset: 2px;
  }

  .search-toggle svg,
  .icon-btn svg {
    width: 20px;
    height: 20px;
  }

  .menu-btn {
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: transparent;
  }

  .menu-btn span {
    width: 18px;
    background: currentColor;
  }

  .plm-mobile-sheet {
    width: min(100vw, 430px);
  }

  .plm-mobile-nav-list {
    gap: 18px;
  }

  .plm-mobile-nav-section:first-child .plm-mobile-row {
    color: #031115;
    border-color: rgba(27, 188, 255, 0.36);
    background: linear-gradient(135deg, var(--blue), #47f7a5);
  }

  .plm-mobile-nav-section:first-child .plm-mobile-row small,
  .plm-mobile-nav-section:first-child .plm-mobile-row-chevron {
    color: rgba(3, 17, 21, 0.7);
  }

  .plm-mobile-account-tabs {
    position: sticky;
    top: 0;
    z-index: 2;
    margin: -2px 0 4px;
    background:
      linear-gradient(180deg, rgba(8, 13, 16, 0.96), rgba(8, 13, 16, 0.86)),
      rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .plm-mobile-account-content {
    gap: 16px;
  }

  .plm-mobile-cart-view .account-cart-card {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .plm-mobile-cart-view .account-cart-card.is-empty {
    min-height: 48dvh;
    place-content: center;
    text-align: center;
  }

  .plm-mobile-cart-view .account-cart-list {
    gap: 14px;
  }

  .plm-mobile-cart-view .account-cart-item {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
    border-radius: 22px;
  }

  .plm-mobile-cart-view .account-cart-thumb {
    width: 76px;
    height: 76px;
    border-radius: 18px;
  }

  .plm-mobile-cart-view .account-cart-qty,
  .plm-mobile-cart-view .account-cart-remove {
    grid-column: 2;
    justify-self: start;
  }

  .plm-mobile-cart-view .account-cart-footer {
    position: sticky;
    bottom: 0;
    z-index: 2;
    margin: 8px -2px 0;
    padding: 10px 0 calc(env(safe-area-inset-bottom) + 2px);
    border-radius: 20px;
    background: rgba(5, 9, 12, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .home-product-hero {
    min-height: auto;
    padding: calc(var(--header-height) + 42px) 0 62px;
    align-items: start;
    background:
      radial-gradient(circle at 72% 8%, rgba(27, 188, 255, 0.14), transparent 34%),
      linear-gradient(180deg, #020406 0%, #071014 58%, #020406 100%);
  }

  .home-cursor-glow {
    width: 320px;
    height: 320px;
    min-width: 320px;
    min-height: 320px;
    opacity: 0.45;
  }

  .home-aurora-beam {
    opacity: 0.55;
    filter: blur(28px);
  }

  .home-product-hero-inner {
    width: min(100% - 32px, 1180px);
    justify-items: start;
    gap: 34px;
    text-align: left;
  }

  .home-product-copy {
    max-width: 640px;
    justify-items: start;
    gap: 18px;
  }

  .home-product-copy .section-eyebrow,
  .home-redesign-heading .section-eyebrow,
  .home-product-block-copy .section-eyebrow,
  .home-final-panel .section-eyebrow {
    letter-spacing: 0.14em;
  }

  .home-product-copy h1 {
    max-width: 11ch;
    font-size: clamp(3rem, 14vw, 4.5rem);
    line-height: 1.02;
  }

  .home-product-copy .hero-subtitle {
    max-width: 34rem;
    font-size: 1.08rem;
    line-height: 1.62;
  }

  .home-product-copy .hero-actions,
  .home-final-panel .hero-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 6px;
  }

  .home-product-copy .hero-actions .btn,
  .home-final-panel .hero-actions .btn,
  .plm-hero-actions .btn,
  .plm-card-actions .btn {
    min-height: 52px;
  }

  .home-tertiary-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .home-product-mockup {
    width: 100%;
    padding: 10px;
    border-radius: 26px;
    box-shadow: 0 32px 100px rgba(0, 0, 0, 0.42), 0 0 46px rgba(27, 188, 255, 0.08);
    animation: none;
  }

  .home-floating-chips {
    position: static;
    width: 100%;
    margin-top: 14px;
    justify-content: flex-start;
    overflow-x: auto;
    transform: none;
  }

  .home-floating-chips span {
    flex: 0 0 auto;
  }

  .home-product-ecosystem,
  .home-public-showcase,
  .home-product-block,
  .home-final-panel {
    padding: 64px 0;
  }

  .home-redesign-heading {
    margin-bottom: 24px;
    text-align: left;
  }

  .home-redesign-heading h2,
  .home-public-showcase h2,
  .home-product-block-copy h2,
  .home-final-panel h2 {
    font-size: clamp(2.35rem, 10.5vw, 3.55rem);
    line-height: 1.04;
  }

  .home-system-grid,
  .home-public-grid {
    gap: 14px;
  }

  .home-system-card {
    min-height: 0;
    padding: 24px;
    border-radius: 24px;
  }

  .home-product-block-inner {
    gap: 24px;
  }

  .home-product-block-copy {
    gap: 16px;
  }

  .home-visual-card {
    min-height: 280px;
    border-radius: 26px;
  }

  .home-final-panel .section-inner {
    justify-items: start;
    text-align: left;
    border-radius: 28px;
  }

  .plm-catalog-page {
    padding-top: var(--header-height);
  }

  .plm-catalog-hero {
    width: min(100% - 32px, 1320px);
    padding-top: 42px;
    padding-bottom: 28px;
    gap: 18px;
  }

  .plm-catalog-hero h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
    line-height: 1.02;
  }

  .plm-catalog-hero p:not(.section-eyebrow) {
    font-size: 1rem;
    line-height: 1.6;
  }

  .plm-hero-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .plm-catalog-shell {
    width: min(100% - 32px, 1320px);
    gap: 18px;
  }

  .plm-filter-toggle {
    position: sticky;
    top: calc(var(--header-height) + 10px);
    z-index: 60;
    width: 100%;
    min-height: 50px;
  }

  .plm-filter-panel {
    position: fixed;
    left: 14px;
    right: 14px;
    top: calc(var(--header-height) + 14px);
    z-index: 980;
    max-height: calc(100dvh - var(--header-height) - 34px);
    overflow-y: auto;
    padding: 18px;
    border-radius: 24px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.52);
  }

  .plm-catalog-toolbar {
    gap: 10px;
  }

  .plm-product-card {
    border-radius: 26px;
  }

  .plm-product-preview {
    min-height: 210px;
  }

  .plm-product-card-body {
    gap: 12px;
    padding: 20px;
  }

  .plm-product-card h3 {
    font-size: 1.38rem;
  }

  .plm-product-card p {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .plm-card-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 0 20px 20px;
  }

  .dashboard-floating-card {
    bottom: 92px;
    top: auto;
    right: 14px;
  }
}

@media (max-width: 430px) {
  .plm-mobile-sheet {
    width: 100vw;
    border-left: 0;
  }

  .home-product-hero-inner,
  .home-public-showcase .section-inner,
  .home-product-block .section-inner,
  .home-product-ecosystem .section-inner,
  .home-final-panel .section-inner,
  .plm-catalog-hero,
  .plm-catalog-shell {
    width: min(100% - 28px, 1180px);
  }

  .home-product-copy h1 {
    font-size: clamp(2.82rem, 14.5vw, 4rem);
  }
}

/* PLM Studio Tour */
.studio-tour-page {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 72% 8%, rgba(27, 188, 255, 0.12), transparent 32rem),
    radial-gradient(circle at 12% 26%, rgba(181, 140, 255, 0.1), transparent 28rem),
    linear-gradient(180deg, #020406 0%, #071014 42%, #020406 100%);
}

.studio-tour-page .btn:focus-visible,
.studio-tour-progress button:focus-visible {
  outline: 2px solid rgba(27, 188, 255, 0.78);
  outline-offset: 3px;
}

.studio-tour-hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 70px) 0 86px;
  isolation: isolate;
}

.studio-tour-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.studio-tour-ambient span {
  position: absolute;
  border-radius: 999px;
  filter: blur(34px);
  opacity: 0.54;
}

.studio-tour-ambient span:first-child {
  width: 410px;
  height: 410px;
  top: 12%;
  right: 8%;
  background: rgba(27, 188, 255, 0.22);
}

.studio-tour-ambient span:last-child {
  width: 310px;
  height: 310px;
  bottom: 10%;
  left: 8%;
  background: rgba(73, 255, 155, 0.1);
}

.studio-tour-hero-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1.04fr);
  align-items: center;
  gap: 56px;
}

.studio-tour-hero-copy {
  display: grid;
  gap: 22px;
  max-width: 610px;
}

.studio-tour-hero-copy h1 {
  max-width: 10ch;
  color: white;
  font-size: 6.2rem;
  line-height: 0.95;
  letter-spacing: 0;
}

.studio-tour-hero-copy p:not(.section-eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.18rem;
  line-height: 1.72;
}

.studio-tour-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.studio-tour-actions .btn {
  min-height: 50px;
}

.studio-hero-mockup,
.studio-tour-device {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 80% 0%, rgba(27, 188, 255, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(5, 10, 13, 0.74);
  box-shadow:
    0 42px 130px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
}

.studio-hero-mockup {
  border-radius: 34px;
  padding: 14px;
  transform: perspective(1100px) rotateX(5deg) rotateY(-8deg) translateY(calc(var(--studio-scroll, 0) * -18px));
  transition: transform 0.2s ease;
}

.studio-mockup-top,
.studio-device-bar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.studio-mockup-top span,
.studio-device-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.studio-mockup-top strong,
.studio-device-bar strong {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
}

.studio-overview-layout {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 16px;
  min-height: 430px;
  padding: 16px;
}

.studio-overview-layout aside {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 16px 12px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.studio-overview-layout aside b {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.45), transparent 28%),
    linear-gradient(135deg, rgba(27, 188, 255, 0.88), rgba(73, 255, 155, 0.38));
}

.studio-overview-layout aside span,
.studio-mini-grid span {
  min-height: 32px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.8rem;
  font-weight: 800;
}

.studio-overview-layout > div:last-child {
  display: grid;
  gap: 16px;
}

.studio-overview-header,
.studio-dash-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.studio-overview-header {
  padding: 20px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 82% 20%, rgba(27, 188, 255, 0.24), transparent 38%),
    rgba(255, 255, 255, 0.06);
}

.studio-overview-header p,
.studio-dash-header p {
  color: rgba(142, 231, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.studio-overview-header strong {
  color: white;
  font-size: 3rem;
  line-height: 1;
}

.studio-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.studio-overview-grid article {
  min-height: 136px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.studio-overview-grid span,
.studio-progress-card span,
.studio-ticket-card span,
.studio-referral-card span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  font-weight: 800;
}

.studio-overview-grid strong,
.studio-progress-card strong,
.studio-ticket-card strong,
.studio-referral-card strong {
  color: white;
  font-size: 1.02rem;
  line-height: 1.25;
}

.studio-tour-story {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, 0.94fr) minmax(0, 1fr);
  gap: 70px;
  align-items: start;
  padding: 50px 0 90px;
}

.studio-tour-visual-wrap {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  min-width: 0;
  display: grid;
  gap: 18px;
}

.studio-tour-device {
  min-height: calc(100dvh - var(--header-height) - 120px);
  overflow: hidden;
  border-radius: 34px;
}

.studio-device-screen {
  position: relative;
  min-height: 560px;
  padding: 22px;
}

.studio-state {
  position: absolute;
  inset: 22px;
  display: grid;
  align-content: start;
  gap: 18px;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

[data-studio-active="overview"] .studio-state-overview,
[data-studio-active="timeline"] .studio-state-timeline,
[data-studio-active="files"] .studio-state-files,
[data-studio-active="support"] .studio-state-support,
[data-studio-active="billing"] .studio-state-billing,
[data-studio-active="referral"] .studio-state-referral {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.studio-dash-header strong {
  max-width: 15rem;
  color: white;
  font-size: 1.45rem;
  line-height: 1.15;
  text-align: right;
}

.studio-progress-card,
.studio-ticket-card,
.studio-referral-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(27, 188, 255, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 86% 8%, rgba(27, 188, 255, 0.18), transparent 38%),
    rgba(255, 255, 255, 0.055);
}

.studio-progress-card strong {
  font-size: 3.4rem;
  line-height: 1;
}

.studio-progress-card i {
  display: block;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.studio-progress-card em {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), #47f7a5);
}

.studio-mini-grid,
.studio-folder-grid,
.studio-billing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.studio-mini-grid span,
.studio-folder-grid span,
.studio-billing-grid span {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.studio-folder-grid span::before {
  content: "";
  width: 28px;
  height: 22px;
  border-radius: 7px 7px 6px 6px;
  background:
    linear-gradient(180deg, rgba(142, 231, 255, 0.85), rgba(27, 188, 255, 0.32)),
    rgba(255, 255, 255, 0.08);
}

.studio-timeline-list {
  display: grid;
  gap: 12px;
  list-style: none;
}

.studio-timeline-list li,
.studio-ticket-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.studio-timeline-list li span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.studio-timeline-list li.is-done span {
  background: #47f7a5;
}

.studio-timeline-list li.is-active {
  border-color: rgba(27, 188, 255, 0.28);
  background: rgba(27, 188, 255, 0.08);
}

.studio-timeline-list li.is-active span {
  background: var(--blue);
  box-shadow: 0 0 18px rgba(27, 188, 255, 0.38);
}

.studio-timeline-list b,
.studio-ticket-row b,
.studio-billing-grid b {
  color: white;
  font-size: 0.95rem;
}

.studio-timeline-list small,
.studio-ticket-row span,
.studio-billing-grid small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
}

.studio-ticket-card p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
}

.studio-billing-grid span {
  min-height: 112px;
}

.studio-referral-steps {
  display: grid;
  gap: 10px;
}

.studio-referral-steps span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.055);
}

.studio-tour-progress {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.studio-tour-progress button {
  min-height: 34px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.66);
  border: 0;
  border-radius: 999px;
  background: transparent;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 900;
  cursor: pointer;
}

.studio-tour-progress button.is-active,
.studio-tour-progress button[aria-selected="true"] {
  color: #031115;
  background: linear-gradient(135deg, var(--blue), #47f7a5);
}

.studio-tour-copy {
  display: grid;
}

.studio-tour-step {
  min-height: 78dvh;
  display: grid;
  align-content: center;
  gap: 18px;
  opacity: 0.58;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.studio-tour-step.is-active {
  opacity: 1;
  transform: translateY(0);
}

.studio-tour-step h2,
.studio-tour-final h2 {
  max-width: 10.5ch;
  color: white;
  font-size: 4.4rem;
  line-height: 1;
  letter-spacing: 0;
}

.studio-tour-step p:not(.section-eyebrow),
.studio-tour-final p:not(.section-eyebrow) {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
  line-height: 1.72;
}

.studio-tour-step ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 36rem;
  list-style: none;
}

.studio-tour-step li {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.86rem;
  font-weight: 800;
}

.studio-tour-final {
  padding: 86px 0 110px;
}

.studio-tour-final-inner {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 20px;
  padding: 64px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 0%, rgba(27, 188, 255, 0.18), transparent 42%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.36);
}

.studio-tour-final h2 {
  max-width: 11ch;
}

@media (max-width: 980px) {
  .studio-tour-hero-inner,
  .studio-tour-story {
    grid-template-columns: 1fr;
  }

  .studio-tour-hero-copy h1,
  .studio-tour-step h2,
  .studio-tour-final h2 {
    font-size: 4.2rem;
  }

  .studio-tour-visual-wrap {
    position: relative;
    top: auto;
    order: -1;
  }

  .studio-tour-device {
    min-height: 620px;
  }
}

@media (max-width: 768px) {
  .studio-tour-hero {
    min-height: auto;
    padding: calc(var(--header-height) + 48px) 0 58px;
  }

  .studio-tour-hero-inner,
  .studio-tour-story,
  .studio-tour-final-inner {
    width: min(100% - 32px, 1180px);
  }

  .studio-tour-hero-inner,
  .studio-tour-story {
    gap: 32px;
  }

  .studio-tour-hero-copy {
    gap: 18px;
  }

  .studio-tour-hero-copy h1,
  .studio-tour-step h2,
  .studio-tour-final h2 {
    max-width: 11ch;
    font-size: 3.35rem;
    line-height: 1.02;
  }

  .studio-tour-hero-copy p:not(.section-eyebrow),
  .studio-tour-step p:not(.section-eyebrow),
  .studio-tour-final p:not(.section-eyebrow) {
    font-size: 1rem;
    line-height: 1.64;
  }

  .studio-tour-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .studio-tour-actions .btn {
    width: 100%;
    min-height: 52px;
  }

  .studio-hero-mockup {
    width: 100%;
    border-radius: 28px;
    transform: none;
  }

  .studio-overview-layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .studio-overview-layout aside {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow-x: auto;
  }

  .studio-overview-layout aside b {
    display: none;
  }

  .studio-overview-grid {
    grid-template-columns: 1fr;
  }

  .studio-overview-grid article {
    min-height: 96px;
  }

  .studio-tour-story {
    padding: 26px 0 58px;
  }

  .studio-tour-device {
    min-height: 540px;
    border-radius: 28px;
  }

  .studio-device-screen {
    min-height: 490px;
    padding: 16px;
  }

  .studio-state {
    inset: 16px;
  }

  .studio-dash-header {
    display: grid;
    gap: 8px;
  }

  .studio-dash-header strong {
    text-align: left;
    font-size: 1.2rem;
  }

  .studio-progress-card strong {
    font-size: 2.8rem;
  }

  .studio-mini-grid,
  .studio-folder-grid,
  .studio-billing-grid {
    grid-template-columns: 1fr;
  }

  .studio-mini-grid span,
  .studio-folder-grid span,
  .studio-billing-grid span {
    min-height: 64px;
  }

  .studio-tour-progress {
    flex-wrap: nowrap;
    overflow-x: auto;
    border-radius: 20px;
    scrollbar-width: none;
  }

  .studio-tour-progress::-webkit-scrollbar {
    display: none;
  }

  .studio-tour-progress button {
    flex: 0 0 auto;
    min-height: 42px;
  }

  .studio-tour-step {
    min-height: auto;
    padding: 52px 0;
  }

  .studio-tour-step ul {
    gap: 8px;
  }

  .studio-tour-final {
    padding: 58px 0 78px;
  }

  .studio-tour-final-inner {
    justify-items: start;
    padding: 34px 22px;
    border-radius: 28px;
    text-align: left;
  }
}

@media (max-width: 430px) {
  .studio-tour-hero-inner,
  .studio-tour-story,
  .studio-tour-final-inner {
    width: min(100% - 28px, 1180px);
  }

  .studio-tour-hero-copy h1,
  .studio-tour-step h2,
  .studio-tour-final h2 {
    font-size: 3rem;
  }

  .studio-overview-layout aside {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .studio-tour-hero-mockup,
  .studio-hero-mockup,
  .studio-state,
  .studio-tour-step,
  .studio-tour-progress button {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}

/* Cinematic PLM Studio Tour upgrade */
.studio-tour-page {
  --studio-accent: #1bbcff;
  --studio-accent-soft: rgba(27, 188, 255, 0.2);
  --studio-secondary: rgba(73, 255, 155, 0.24);
  --studio-glow-x: 72%;
  --studio-glow-y: 10%;
  background:
    radial-gradient(circle at var(--studio-glow-x) var(--studio-glow-y), var(--studio-accent-soft), transparent 30rem),
    radial-gradient(circle at 12% 28%, rgba(181, 140, 255, 0.1), transparent 28rem),
    linear-gradient(180deg, #020406 0%, #071014 38%, #020406 100%);
}

.studio-tour-page[data-studio-active="timeline"] {
  --studio-accent: #47f7a5;
  --studio-accent-soft: rgba(73, 247, 165, 0.18);
  --studio-secondary: rgba(27, 188, 255, 0.18);
  --studio-glow-x: 58%;
  --studio-glow-y: 18%;
}

.studio-tour-page[data-studio-active="files"] {
  --studio-accent: #8ee7ff;
  --studio-accent-soft: rgba(142, 231, 255, 0.2);
  --studio-secondary: rgba(181, 140, 255, 0.18);
  --studio-glow-x: 36%;
  --studio-glow-y: 24%;
}

.studio-tour-page[data-studio-active="support"] {
  --studio-accent: #b58cff;
  --studio-accent-soft: rgba(181, 140, 255, 0.18);
  --studio-secondary: rgba(27, 188, 255, 0.16);
  --studio-glow-x: 64%;
  --studio-glow-y: 36%;
}

.studio-tour-page[data-studio-active="billing"] {
  --studio-accent: #47f7a5;
  --studio-accent-soft: rgba(73, 247, 165, 0.16);
  --studio-secondary: rgba(255, 207, 112, 0.14);
  --studio-glow-x: 70%;
  --studio-glow-y: 46%;
}

.studio-tour-page[data-studio-active="referral"] {
  --studio-accent: #ffd36c;
  --studio-accent-soft: rgba(255, 211, 108, 0.15);
  --studio-secondary: rgba(27, 188, 255, 0.16);
  --studio-glow-x: 48%;
  --studio-glow-y: 58%;
}

.studio-tour-page.is-paused *,
.studio-tour-page.is-reduced-motion * {
  animation-play-state: paused !important;
}

.studio-digital-stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.studio-digital-stage::before,
.studio-digital-stage::after,
.studio-stage-grid,
.studio-stage-light,
.studio-stage-panel,
.studio-stage-node {
  position: absolute;
  pointer-events: none;
}

.studio-digital-stage::before {
  content: "";
  inset: 0;
  background:
    linear-gradient(90deg, rgba(27, 188, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(27, 188, 255, 0.045) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 74%, transparent);
  opacity: 0.34;
  transform: perspective(900px) rotateX(62deg) translateY(calc(var(--studio-scroll, 0) * -120px));
  transform-origin: center top;
  animation: studioGridDrift 18s linear infinite;
}

.studio-digital-stage::after {
  content: "";
  inset: 0;
  background:
    radial-gradient(circle at calc(var(--studio-pointer-x, 50) * 1%) calc(var(--studio-pointer-y, 28) * 1%), rgba(27, 188, 255, 0.12), transparent 22rem),
    linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.035) 46%, transparent 68%);
  opacity: 0.68;
  transform: translateY(calc(var(--studio-scroll, 0) * -30px));
}

.studio-stage-light {
  width: 44vw;
  height: 44vw;
  min-width: 300px;
  min-height: 300px;
  border-radius: 50%;
  filter: blur(38px);
  opacity: 0.5;
}

.studio-stage-light-one {
  top: 8%;
  right: -10%;
  background: var(--studio-accent-soft);
  transform: translate3d(0, calc(var(--studio-scroll, 0) * 72px), 0);
}

.studio-stage-light-two {
  bottom: 12%;
  left: -12%;
  background: var(--studio-secondary);
  transform: translate3d(0, calc(var(--studio-scroll, 0) * -86px), 0);
}

.studio-stage-panel {
  width: 230px;
  height: 142px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0.34;
}

.studio-stage-panel-one {
  top: 18%;
  left: 6%;
  transform: translate3d(calc(var(--studio-scroll, 0) * 30px), calc(var(--studio-scroll, 0) * -54px), 0) rotate(-8deg);
}

.studio-stage-panel-two {
  right: 8%;
  bottom: 18%;
  transform: translate3d(calc(var(--studio-scroll, 0) * -42px), calc(var(--studio-scroll, 0) * 64px), 0) rotate(7deg);
}

.studio-stage-node {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--studio-accent);
  box-shadow: 0 0 22px var(--studio-accent);
  opacity: 0.76;
  animation: studioPulse 2.8s ease-in-out infinite;
}

.studio-stage-node-one {
  top: 26%;
  left: 22%;
}

.studio-stage-node-two {
  top: 64%;
  right: 18%;
  animation-delay: 0.8s;
}

.studio-stage-node-three {
  top: 46%;
  left: 74%;
  animation-delay: 1.4s;
}

.studio-scroll-meter {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  z-index: calc(var(--z-header) - 1);
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.studio-scroll-meter span {
  display: block;
  width: calc(var(--studio-scroll, 0) * 100%);
  height: 100%;
  background: linear-gradient(90deg, var(--studio-accent), #47f7a5);
  box-shadow: 0 0 18px var(--studio-accent-soft);
}

.studio-tour-hero,
.studio-tour-story,
.studio-product-moment,
.studio-tour-final {
  position: relative;
  z-index: 1;
}

.studio-intro-brand,
.studio-tour-hero-copy h1,
.studio-tour-hero-copy p:not(.section-eyebrow),
.studio-tour-actions,
.studio-hero-mockup {
  opacity: 0;
  animation: studioIntroIn 0.72s cubic-bezier(0.18, 0.82, 0.18, 1) both;
}

.studio-intro-brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  min-height: 40px;
  padding: 6px 14px 6px 8px;
  color: rgba(142, 231, 255, 0.94);
  border: 1px solid rgba(27, 188, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.studio-intro-brand img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(27, 188, 255, 0.45));
}

.studio-tour-hero-copy h1 {
  animation-delay: 0.28s;
}

.studio-tour-hero-copy p:not(.section-eyebrow) {
  animation-delay: 0.5s;
}

.studio-hero-mockup {
  animation-delay: 0.72s;
}

.studio-tour-actions {
  animation-delay: 0.92s;
}

.studio-hero-mockup,
.studio-tour-device {
  box-shadow:
    0 42px 140px rgba(0, 0, 0, 0.55),
    0 0 80px var(--studio-accent-soft),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.studio-hero-mockup {
  animation-name: studioIntroIn, studioFloat;
  animation-duration: 0.72s, 7.5s;
  animation-delay: 0.72s, 1.4s;
  animation-timing-function: cubic-bezier(0.18, 0.82, 0.18, 1), ease-in-out;
  animation-iteration-count: 1, infinite;
}

.studio-mockup-top strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.studio-mockup-top strong i {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #47f7a5;
  box-shadow: 0 0 16px rgba(73, 247, 165, 0.78);
  animation: studioPulse 2s ease-in-out infinite;
}

.studio-overview-header {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) auto;
  display: grid;
}

.studio-overview-header::after,
.studio-focus-panel::after {
  content: "";
  position: absolute;
  inset: -45%;
  background: linear-gradient(115deg, transparent 32%, rgba(255, 255, 255, 0.12), transparent 64%);
  transform: translateX(-40%);
  animation: studioLightSweep 5.2s ease-in-out infinite;
}

.studio-overview-header small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
  font-weight: 800;
}

.studio-focus-panel {
  position: relative;
  overflow: hidden;
  border-color: color-mix(in srgb, var(--studio-accent) 38%, rgba(255, 255, 255, 0.1));
}

.studio-overview-grid article {
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.studio-overview-grid article:hover {
  border-color: rgba(27, 188, 255, 0.26);
  background: rgba(255, 255, 255, 0.065);
  transform: translateY(-3px);
}

.studio-hero-notice {
  min-height: 42px;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(27, 188, 255, 0.2);
  border-radius: 999px;
  background: rgba(27, 188, 255, 0.08);
  font-size: 0.84rem;
  font-weight: 850;
  animation: studioNotificationIn 4.8s ease-in-out infinite;
}

.studio-hero-notice span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--studio-accent);
  box-shadow: 0 0 16px var(--studio-accent-soft);
}

.studio-product-moment {
  min-height: 74dvh;
  display: grid;
  place-items: center;
  padding: 92px 0;
  text-align: center;
}

.studio-product-moment > div {
  width: min(940px, calc(100% - 48px));
  display: grid;
  justify-items: center;
  gap: 18px;
}

.studio-product-moment h2 {
  max-width: 12ch;
  color: white;
  font-size: 5.4rem;
  line-height: 0.96;
}

.studio-product-moment p:not(.section-eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.16rem;
  line-height: 1.74;
}

.studio-product-moment.is-active > div,
.studio-tour-step.is-active {
  animation: studioSectionReveal 0.6s cubic-bezier(0.18, 0.82, 0.18, 1) both;
}

.studio-tour-device {
  transform: perspective(1000px) rotateX(var(--studio-tilt-y, 0deg)) rotateY(var(--studio-tilt-x, 0deg));
  transition: transform 0.18s ease, box-shadow 0.28s ease;
}

.studio-device-screen {
  background:
    radial-gradient(circle at 82% 12%, var(--studio-accent-soft), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 42%);
}

.studio-device-sweep {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.08) 48%, transparent 72%);
  opacity: 0.42;
  transform: translateX(-72%);
  animation: studioDeviceSweep 7.5s ease-in-out infinite;
}

.studio-state {
  filter: saturate(0.92);
}

[data-studio-active="overview"] .studio-state-overview,
[data-studio-active="timeline"] .studio-state-timeline,
[data-studio-active="files"] .studio-state-files,
[data-studio-active="support"] .studio-state-support,
[data-studio-active="billing"] .studio-state-billing,
[data-studio-active="referral"] .studio-state-referral {
  filter: saturate(1.08);
}

[data-studio-active="timeline"] .studio-state-timeline .studio-timeline-list li {
  animation: studioListIn 0.42s ease both;
}

[data-studio-active="timeline"] .studio-state-timeline .studio-timeline-list li:nth-child(2) {
  animation-delay: 0.08s;
}

[data-studio-active="timeline"] .studio-state-timeline .studio-timeline-list li:nth-child(3) {
  animation-delay: 0.16s;
}

[data-studio-active="timeline"] .studio-state-timeline .studio-timeline-list li:nth-child(4) {
  animation-delay: 0.24s;
}

.studio-state-timeline .studio-progress-card em {
  width: 68%;
}

.studio-upload-line {
  min-height: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(27, 188, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.studio-upload-line span {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.studio-upload-line span::before {
  content: "";
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--studio-accent), #47f7a5);
  transform-origin: left center;
  animation: studioUploadLine 2.8s ease-in-out infinite;
}

.studio-upload-line b {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

[data-studio-active="files"] .studio-folder-grid span {
  animation: studioFolderIn 0.42s ease both;
}

[data-studio-active="files"] .studio-folder-grid span:nth-child(2) {
  animation-delay: 0.07s;
}

[data-studio-active="files"] .studio-folder-grid span:nth-child(3) {
  animation-delay: 0.14s;
}

[data-studio-active="files"] .studio-folder-grid span:nth-child(4) {
  animation-delay: 0.21s;
}

[data-studio-active="files"] .studio-folder-grid span:nth-child(5) {
  animation-delay: 0.28s;
}

[data-studio-active="files"] .studio-folder-grid span:nth-child(6) {
  animation-delay: 0.35s;
}

.studio-ticket-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.studio-ticket-flow span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.78rem;
  font-weight: 900;
}

[data-studio-active="support"] .studio-ticket-flow span {
  animation: studioTicketStatus 3.9s ease-in-out infinite;
}

[data-studio-active="support"] .studio-ticket-flow span:nth-child(2) {
  animation-delay: 0.55s;
}

[data-studio-active="support"] .studio-ticket-flow span:nth-child(3) {
  animation-delay: 1.1s;
}

[data-studio-active="billing"] .studio-billing-grid span,
[data-studio-active="referral"] .studio-referral-steps span {
  animation: studioCardPop 0.45s ease both;
}

[data-studio-active="billing"] .studio-billing-grid span:nth-child(2),
[data-studio-active="referral"] .studio-referral-steps span:nth-child(2) {
  animation-delay: 0.1s;
}

[data-studio-active="billing"] .studio-billing-grid span:nth-child(3),
[data-studio-active="referral"] .studio-referral-steps span:nth-child(3) {
  animation-delay: 0.2s;
}

[data-studio-active="billing"] .studio-billing-grid span:nth-child(4) {
  animation-delay: 0.3s;
}

.studio-floating-chip {
  position: absolute;
  z-index: 4;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: white;
  background: rgba(6, 13, 17, 0.74);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32), 0 0 28px var(--studio-accent-soft);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  font-size: 0.78rem;
  font-weight: 900;
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.studio-floating-chip-one {
  top: 18%;
  right: 24px;
}

.studio-floating-chip-two {
  top: 52%;
  left: 18px;
}

.studio-floating-chip-three {
  right: 24px;
  bottom: 18%;
}

[data-studio-active="timeline"] .studio-floating-chip-one,
[data-studio-active="support"] .studio-floating-chip-two,
[data-studio-active="referral"] .studio-floating-chip-three {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.studio-tour-progress {
  position: relative;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.26);
}

.studio-tour-progress::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--studio-accent-soft), transparent);
  opacity: 0.55;
  pointer-events: none;
}

.studio-tour-progress button {
  position: relative;
  z-index: 1;
}

.studio-tour-progress button.is-active,
.studio-tour-progress button[aria-selected="true"] {
  box-shadow: 0 0 24px var(--studio-accent-soft);
}

.studio-tour-step {
  position: relative;
}

.studio-tour-step::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 50%;
  width: 6px;
  height: 82px;
  border-radius: 999px;
  background: var(--studio-accent);
  box-shadow: 0 0 24px var(--studio-accent-soft);
  opacity: 0;
  transform: translateY(-50%) scaleY(0.5);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.studio-tour-step.is-active::before {
  opacity: 1;
  transform: translateY(-50%) scaleY(1);
}

.studio-magnetic {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.studio-magnetic:hover {
  transform: translateY(-2px);
}

@keyframes studioIntroIn {
  from {
    opacity: 0;
    filter: blur(14px);
    transform: translateY(24px) scale(0.985);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes studioFloat {
  0%,
  100% {
    transform: perspective(1100px) rotateX(5deg) rotateY(-8deg) translateY(0);
  }
  50% {
    transform: perspective(1100px) rotateX(5deg) rotateY(-8deg) translateY(-10px);
  }
}

@keyframes studioPulse {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.22);
  }
}

@keyframes studioLightSweep {
  0%,
  46% {
    transform: translateX(-45%);
  }
  72%,
  100% {
    transform: translateX(45%);
  }
}

@keyframes studioNotificationIn {
  0%,
  18% {
    opacity: 0;
    transform: translateY(8px);
  }
  28%,
  82% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0.72;
    transform: translateY(0);
  }
}

@keyframes studioGridDrift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 86px 86px;
  }
}

@keyframes studioDeviceSweep {
  0%,
  42% {
    transform: translateX(-72%);
  }
  70%,
  100% {
    transform: translateX(72%);
  }
}

@keyframes studioSectionReveal {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes studioListIn {
  from {
    opacity: 0;
    transform: translateX(16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes studioUploadLine {
  0% {
    transform: scaleX(0.18);
  }
  60%,
  100% {
    transform: scaleX(1);
  }
}

@keyframes studioFolderIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes studioTicketStatus {
  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.045);
  }
  42%,
  58% {
    border-color: color-mix(in srgb, var(--studio-accent) 42%, rgba(255, 255, 255, 0.12));
    background: var(--studio-accent-soft);
  }
}

@keyframes studioCardPop {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 980px) {
  .studio-product-moment h2 {
    font-size: 4.2rem;
  }

  .studio-tour-step::before {
    left: 0;
    top: 22px;
    width: 70px;
    height: 4px;
    transform: scaleX(0.5);
  }

  .studio-tour-step.is-active::before {
    transform: scaleX(1);
  }
}

@media (max-width: 768px) {
  .studio-digital-stage::before {
    opacity: 0.18;
    transform: none;
  }

  .studio-stage-panel {
    display: none;
  }

  .studio-product-moment {
    min-height: auto;
    padding: 64px 0;
    text-align: left;
  }

  .studio-product-moment > div {
    width: min(100% - 32px, 1180px);
    justify-items: start;
  }

  .studio-product-moment h2 {
    max-width: 11ch;
    font-size: 3.2rem;
    line-height: 1.02;
  }

  .studio-product-moment p:not(.section-eyebrow) {
    font-size: 1rem;
    line-height: 1.62;
  }

  .studio-floating-chip {
    display: none;
  }

  .studio-ticket-flow {
    grid-template-columns: 1fr;
  }

  .studio-tour-step::before {
    display: none;
  }
}

@media (max-width: 430px) {
  .studio-product-moment > div {
    width: min(100% - 28px, 1180px);
  }

  .studio-product-moment h2 {
    font-size: 2.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .studio-tour-page,
  .studio-tour-page *,
  .studio-tour-page *::before,
  .studio-tour-page *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .studio-intro-brand,
  .studio-tour-hero-copy h1,
  .studio-tour-hero-copy p:not(.section-eyebrow),
  .studio-tour-actions,
  .studio-hero-mockup,
  .studio-floating-chip {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}

/* Final guard: public mobile sheets must beat legacy header/dropdown rules. */
@media (max-width: 768px) {
  body.plm-mobile-overlay-open .site-header {
    z-index: var(--z-header) !important;
  }

  .plm-mobile-overlay-backdrop {
    z-index: var(--z-menu-backdrop) !important;
  }

  .plm-mobile-sheet {
    z-index: var(--z-mobile-sheet) !important;
  }

  .nav-menu,
  .nav-menu.active,
  .account-menu,
  .account-menu.active {
    display: none !important;
  }
}

/* Scene-based PLM Studio Tour */
body.studio-tour-body {
  background: #020406;
}

body.studio-tour-body .site-header {
  border-bottom-color: rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(2, 4, 6, 0.72), rgba(2, 4, 6, 0.18));
  box-shadow: none;
  backdrop-filter: blur(20px) saturate(1.1);
  -webkit-backdrop-filter: blur(20px) saturate(1.1);
}

body.studio-tour-body .nav-menu a,
body.studio-tour-body .brand span {
  color: rgba(255, 255, 255, 0.82);
}

body.studio-tour-body .nav-cta {
  box-shadow: 0 0 28px rgba(27, 188, 255, 0.18);
}

.studio-cinematic-hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 64px) 0 84px;
  overflow: hidden;
}

.studio-hero-light-sweep {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 18%, rgba(142, 231, 255, 0.12) 48%, transparent 70%);
  transform: translateX(-72%);
  animation: studioDeviceSweep 4.8s ease 0.25s both;
}

.studio-cinematic-hero-inner {
  width: min(1280px, calc(100% - 56px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(520px, 1.25fr);
  align-items: center;
  gap: clamp(36px, 5vw, 78px);
}

.studio-hero-copy {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.studio-hero-copy h1 {
  max-width: 9.5ch;
  color: white;
  font-size: clamp(4.8rem, 8.8vw, 8.4rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.studio-hero-copy p:not(.section-eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.72;
}

.studio-hero-device,
.studio-world-dashboard,
.studio-scene-card,
.studio-final-card {
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    radial-gradient(circle at 84% 4%, var(--studio-accent-soft), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.032)),
    rgba(4, 9, 12, 0.78);
  box-shadow:
    0 42px 150px rgba(0, 0, 0, 0.52),
    0 0 80px var(--studio-accent-soft),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(28px) saturate(1.12);
  -webkit-backdrop-filter: blur(28px) saturate(1.12);
}

.studio-hero-device {
  border-radius: 36px;
  overflow: hidden;
  animation-name: studioIntroIn, studioFloat;
  animation-duration: 0.72s, 7.5s;
  animation-delay: 0.62s, 1.35s;
  animation-timing-function: cubic-bezier(0.18, 0.82, 0.18, 1), ease-in-out;
  animation-iteration-count: 1, infinite;
}

.studio-device-topline {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.66);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.studio-device-topline > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.studio-device-topline strong {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.studio-device-topline strong i {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #47f7a5;
  box-shadow: 0 0 16px rgba(73, 247, 165, 0.8);
  animation: studioPulse 2s ease-in-out infinite;
}

.studio-hero-device-grid {
  min-height: clamp(440px, 52vw, 620px);
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
}

.studio-hero-device-grid aside,
.studio-world-sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
}

.studio-hero-device-grid aside b,
.studio-world-sidebar b {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 15px;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.45), transparent 30%),
    linear-gradient(135deg, var(--studio-accent), rgba(73, 255, 155, 0.36));
}

.studio-hero-device-grid aside span,
.studio-world-sidebar button {
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.68);
  border: 1px solid transparent;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  text-align: left;
}

.studio-world-sidebar button {
  cursor: pointer;
}

[data-studio-active="overview"] [data-studio-tab="overview"],
[data-studio-active="timeline"] [data-studio-tab="timeline"],
[data-studio-active="files"] [data-studio-tab="files"],
[data-studio-active="support"] [data-studio-tab="support"],
[data-studio-active="billing"] [data-studio-tab="billing"],
[data-studio-active="referrals"] [data-studio-tab="referrals"] {
  color: #031115;
  border-color: rgba(27, 188, 255, 0.28);
  background: linear-gradient(135deg, var(--studio-accent), #47f7a5);
  box-shadow: 0 0 22px var(--studio-accent-soft);
}

.studio-hero-device-main {
  display: grid;
  gap: 18px;
}

.studio-hero-progress,
.studio-world-progress {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 8px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
}

.studio-hero-progress p,
.studio-world-progress span,
.studio-world-ticket span,
.studio-world-referral span {
  color: rgba(142, 231, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.studio-hero-progress strong,
.studio-world-progress strong {
  color: white;
  font-size: clamp(3.2rem, 7vw, 5.4rem);
  line-height: 0.95;
}

.studio-hero-progress small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  font-weight: 850;
}

.studio-hero-stat-grid,
.studio-world-mini-grid,
.studio-world-billing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.studio-hero-stat-grid span,
.studio-world-mini-grid span,
.studio-world-billing-grid span,
.studio-world-folder-grid span {
  min-height: 112px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  color: white;
  background: rgba(255, 255, 255, 0.045);
}

.studio-hero-stat-grid small,
.studio-world-billing-grid small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.76rem;
  font-weight: 850;
}

.studio-hero-stat-grid b,
.studio-world-billing-grid b {
  color: white;
  font-size: 1rem;
}

.studio-cinematic-scroll {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100% - 56px));
  min-height: 620svh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(380px, 0.76fr);
  gap: clamp(28px, 4vw, 62px);
  align-items: start;
  padding: 8svh 0 18svh;
}

.studio-sticky-world {
  position: sticky;
  top: calc(var(--header-height) + 22px);
  min-height: calc(100svh - var(--header-height) - 44px);
  display: grid;
  place-items: center;
}

.studio-world-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.studio-world-orbit span {
  position: absolute;
  border: 1px solid rgba(27, 188, 255, 0.1);
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.025);
  filter: blur(0.2px);
}

.studio-world-orbit span:nth-child(1) {
  width: 190px;
  height: 120px;
  top: 4%;
  right: 6%;
  transform: translateY(calc(var(--studio-scroll, 0) * -70px)) rotate(8deg);
}

.studio-world-orbit span:nth-child(2) {
  width: 160px;
  height: 100px;
  bottom: 8%;
  left: 2%;
  transform: translateY(calc(var(--studio-scroll, 0) * 64px)) rotate(-9deg);
}

.studio-world-orbit span:nth-child(3) {
  width: 90px;
  height: 90px;
  top: 46%;
  left: 8%;
  border-radius: 28px;
  transform: translateX(calc(var(--studio-scroll, 0) * 38px)) rotate(16deg);
}

.studio-world-dashboard {
  position: relative;
  width: min(900px, 100%);
  height: min(720px, calc(100svh - var(--header-height) - 70px));
  min-height: 560px;
  overflow: visible;
  border-radius: 38px;
  transform: perspective(1100px) rotateX(var(--studio-tilt-y, 0deg)) rotateY(var(--studio-tilt-x, 0deg));
  transition: transform 0.18s ease, box-shadow 0.28s ease;
}

.studio-world-shell {
  height: calc(100% - 46px);
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
  overflow: hidden;
}

.studio-world-screen {
  min-width: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% 6%, var(--studio-accent-soft), transparent 34%),
    rgba(255, 255, 255, 0.04);
}

.studio-world-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.studio-world-header p {
  margin-bottom: 6px;
  color: rgba(142, 231, 255, 0.9);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.studio-world-header h2 {
  max-width: 16ch;
  color: white;
  font-size: clamp(1.45rem, 2.5vw, 2.25rem);
  line-height: 1.05;
}

.studio-world-chip,
.studio-world-floating {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(6, 13, 17, 0.72);
  box-shadow: 0 0 28px var(--studio-accent-soft);
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.studio-world-states {
  position: relative;
  min-height: 0;
}

.studio-world-state {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  gap: 16px;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  pointer-events: none;
  transition: opacity 0.36s ease, transform 0.36s ease;
}

[data-studio-active="overview"] .studio-world-state-overview,
[data-studio-active="timeline"] .studio-world-state-timeline,
[data-studio-active="files"] .studio-world-state-files,
[data-studio-active="support"] .studio-world-state-support,
[data-studio-active="billing"] .studio-world-state-billing,
[data-studio-active="referrals"] .studio-world-state-referrals {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.studio-world-progress i {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.studio-world-progress em {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--studio-accent), #47f7a5);
  transform-origin: left center;
}

[data-studio-active="timeline"] .studio-world-state-timeline .studio-world-progress em,
[data-studio-active="overview"] .studio-world-state-overview .studio-world-progress em {
  animation: studioUploadLine 1.3s ease both;
}

.studio-world-mini-grid,
.studio-world-billing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.studio-world-checklist {
  display: grid;
  gap: 10px;
  list-style: none;
}

.studio-world-checklist li {
  min-height: 62px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.studio-world-checklist li span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.studio-world-checklist li.is-done span,
.studio-world-checklist li.is-active span {
  background: var(--studio-accent);
  box-shadow: 0 0 16px var(--studio-accent-soft);
}

.studio-world-checklist b,
.studio-world-ticket strong,
.studio-world-referral strong {
  color: white;
}

.studio-world-checklist small,
.studio-world-ticket p {
  color: rgba(255, 255, 255, 0.58);
}

.studio-world-upload {
  min-height: 52px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(27, 188, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.studio-world-upload span {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.studio-world-upload span::before {
  content: "";
  display: block;
  width: 74%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--studio-accent), #47f7a5);
  animation: studioUploadLine 2.6s ease-in-out infinite;
  transform-origin: left center;
}

.studio-world-upload b {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
}

.studio-world-folder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.studio-world-folder-grid span {
  min-height: 98px;
}

.studio-world-folder-grid span::before {
  content: "";
  width: 28px;
  height: 21px;
  border-radius: 7px;
  background: linear-gradient(180deg, rgba(142, 231, 255, 0.88), rgba(27, 188, 255, 0.32));
}

.studio-world-ticket,
.studio-world-referral {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(27, 188, 255, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
}

.studio-world-status-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.studio-world-status-flow span {
  min-height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.78rem;
  font-weight: 900;
}

[data-studio-active="support"] .studio-world-status-flow span {
  animation: studioTicketStatus 3.9s ease-in-out infinite;
}

[data-studio-active="support"] .studio-world-status-flow span:nth-child(2) {
  animation-delay: 0.55s;
}

[data-studio-active="support"] .studio-world-status-flow span:nth-child(3) {
  animation-delay: 1.1s;
}

.studio-world-credit {
  min-height: 150px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 211, 108, 0.22);
  border-radius: 28px;
  color: #031115;
  background: linear-gradient(135deg, #ffd36c, #47f7a5);
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 950;
  box-shadow: 0 0 44px rgba(255, 211, 108, 0.2);
}

.studio-world-floating {
  position: absolute;
  z-index: 3;
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: none;
}

.studio-world-floating-one { top: 14%; right: -24px; }
.studio-world-floating-two { top: 27%; right: -34px; }
.studio-world-floating-three { top: 48%; left: -30px; }
.studio-world-floating-four { bottom: 27%; left: -28px; }
.studio-world-floating-five { bottom: 15%; right: -24px; }
.studio-world-floating-six { bottom: 38%; right: -34px; }

[data-studio-active="overview"] [data-studio-floating="overview"],
[data-studio-active="timeline"] [data-studio-floating="timeline"],
[data-studio-active="files"] [data-studio-floating="files"],
[data-studio-active="support"] [data-studio-floating="support"],
[data-studio-active="billing"] [data-studio-floating="billing"],
[data-studio-active="referrals"] [data-studio-floating="referrals"] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.studio-scene-track {
  display: grid;
  gap: 22svh;
  padding: 22svh 0 32svh;
}

.studio-scene-card {
  min-height: min(76svh, 760px);
  display: grid;
  align-content: space-between;
  gap: 34px;
  padding: clamp(28px, 4vw, 54px);
  border-radius: 36px;
  opacity: 0.58;
  transform: translateY(36px) scale(0.965);
  transition: opacity 0.42s ease, transform 0.42s ease, border-color 0.32s ease;
}

.studio-scene-card.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  border-color: rgba(27, 188, 255, 0.22);
}

.studio-scene-copy {
  display: grid;
  gap: 16px;
}

.studio-scene-copy h2 {
  max-width: 11.5ch;
  color: white;
  font-size: clamp(2.8rem, 5.6vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.studio-scene-copy p:not(.section-eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.03rem;
  line-height: 1.68;
}

.studio-scene-visual {
  min-height: 190px;
  display: grid;
  gap: 12px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% 0%, var(--studio-accent-soft), transparent 42%),
    rgba(255, 255, 255, 0.04);
}

.studio-scene-overview-visual,
.studio-scene-files-visual {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.studio-scene-overview-visual span,
.studio-scene-files-visual span,
.studio-scene-billing-visual span,
.studio-scene-support-visual span {
  min-height: 68px;
  display: grid;
  align-content: center;
  padding: 14px;
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.055);
  font-weight: 900;
}

.studio-scene-overview-visual span::before {
  content: "";
  width: 62%;
  height: 8px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--studio-accent), #47f7a5);
}

.studio-scene-timeline-visual i {
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--studio-accent-soft), rgba(255, 255, 255, 0.055));
}

.studio-scene-support-visual,
.studio-scene-billing-visual {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: center;
}

.studio-scene-referral-visual {
  place-items: center;
  text-align: center;
}

.studio-scene-referral-visual strong {
  color: white;
  font-size: clamp(3.4rem, 8vw, 7rem);
  line-height: 0.9;
}

.studio-scene-referral-visual span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  text-transform: uppercase;
}

.studio-final-scene {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 110px 0;
  overflow: hidden;
}

.studio-final-world {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.studio-final-world span {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 0 54px var(--studio-accent-soft);
}

.studio-final-world span:nth-child(1) { width: 420px; height: 260px; top: 14%; left: 8%; transform: rotate(-8deg); }
.studio-final-world span:nth-child(2) { width: 520px; height: 320px; right: 6%; bottom: 12%; transform: rotate(7deg); }
.studio-final-world span:nth-child(3) { width: 260px; height: 180px; left: 45%; top: 52%; transform: rotate(12deg); }

.studio-final-card {
  position: relative;
  z-index: 1;
  width: min(940px, calc(100% - 56px));
  display: grid;
  justify-items: center;
  gap: 20px;
  padding: clamp(38px, 6vw, 78px);
  border-radius: 40px;
  text-align: center;
}

.studio-final-card h2 {
  max-width: 11ch;
  color: white;
  font-size: clamp(3.4rem, 7.2vw, 7rem);
  line-height: 0.95;
}

.studio-final-card p:not(.section-eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.12rem;
  line-height: 1.7;
}

@media (max-width: 1050px) {
  .studio-cinematic-hero-inner,
  .studio-cinematic-scroll {
    width: min(100% - 36px, 900px);
    grid-template-columns: 1fr;
  }

  .studio-cinematic-scroll {
    min-height: auto;
    gap: 28px;
    padding: 48px 0 82px;
  }

  .studio-sticky-world {
    position: sticky;
    top: calc(var(--header-height) + 12px);
    min-height: 0;
    z-index: 2;
  }

  .studio-world-dashboard {
    width: 100%;
    height: auto;
    min-height: 540px;
    max-height: none;
  }

  .studio-scene-track {
    gap: 24px;
    padding: 20px 0 0;
  }

  .studio-scene-card {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  body.studio-tour-body .site-header {
    background: linear-gradient(180deg, rgba(2, 4, 6, 0.78), rgba(2, 4, 6, 0.38));
  }

  .studio-cinematic-hero {
    min-height: auto;
    padding: calc(var(--header-height) + 46px) 0 58px;
  }

  .studio-cinematic-hero-inner,
  .studio-cinematic-scroll,
  .studio-final-card {
    width: min(100% - 30px, 900px);
  }

  .studio-hero-copy h1 {
    font-size: clamp(3.2rem, 15vw, 4.8rem);
  }

  .studio-tour-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .studio-tour-actions .btn {
    min-height: 52px;
    width: 100%;
  }

  .studio-hero-device-grid,
  .studio-world-shell {
    grid-template-columns: 1fr;
  }

  .studio-hero-device-grid {
    min-height: 0;
  }

  .studio-hero-device-grid aside,
  .studio-world-sidebar {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    overflow-x: auto;
    padding: 12px;
  }

  .studio-hero-device-grid aside b,
  .studio-world-sidebar b {
    display: none;
  }

  .studio-world-sidebar button {
    justify-content: center;
    min-width: 118px;
  }

  .studio-world-screen {
    min-height: 470px;
    padding: 14px;
  }

  .studio-world-header {
    display: grid;
  }

  .studio-world-chip {
    width: fit-content;
  }

  .studio-hero-stat-grid,
  .studio-world-mini-grid,
  .studio-world-billing-grid,
  .studio-world-folder-grid,
  .studio-scene-overview-visual,
  .studio-scene-files-visual,
  .studio-scene-support-visual,
  .studio-scene-billing-visual {
    grid-template-columns: 1fr;
  }

  .studio-world-floating,
  .studio-world-orbit,
  .studio-final-world {
    display: none;
  }

  .studio-scene-card {
    padding: 24px;
    border-radius: 28px;
    opacity: 1;
    transform: none;
  }

  .studio-scene-copy h2,
  .studio-final-card h2 {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }

  .studio-scene-visual {
    min-height: 150px;
  }

  .studio-final-scene {
    min-height: auto;
    padding: 72px 0;
  }

  .studio-final-card {
    justify-items: start;
    text-align: left;
    border-radius: 30px;
  }
}

@media (max-width: 430px) {
  .studio-cinematic-hero-inner,
  .studio-cinematic-scroll,
  .studio-final-card {
    width: min(100% - 26px, 900px);
  }

  .studio-world-dashboard,
  .studio-hero-device {
    border-radius: 28px;
  }

  .studio-device-topline strong {
    max-width: 62%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .studio-cinematic-hero *,
  .studio-cinematic-scroll *,
  .studio-final-scene *,
  .studio-cinematic-hero *::before,
  .studio-cinematic-scroll *::before,
  .studio-final-scene *::before,
  .studio-cinematic-hero *::after,
  .studio-cinematic-scroll *::after,
  .studio-final-scene *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transform: none !important;
  }
}

/* Launch accessibility: catalog filters and feed states */
.plm-filter-close {
  display: none;
}

.catalog-load-notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 196, 87, 0.25);
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 196, 87, 0.07);
}

.catalog-load-notice .btn {
  flex: 0 0 auto;
  min-height: 42px;
}

@media (max-width: 620px) {
  body.catalog-filter-open {
    overflow: hidden;
  }

  .plm-filter-panel[aria-hidden="true"] {
    display: none;
  }

  .plm-filter-close {
    position: sticky;
    top: 0;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    min-width: 44px;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: var(--text);
    background: rgba(4, 8, 11, 0.94);
  }

  .catalog-load-notice {
    align-items: stretch;
    flex-direction: column;
  }
}

/* Public Showcase image failure states */
.public-showcase-image-fallback {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: inherit;
  place-content: center;
  gap: 8px;
  padding: 24px;
  text-align: center;
  color: rgba(232, 244, 248, 0.72);
  background: linear-gradient(145deg, rgba(16, 32, 38, 0.96), rgba(5, 12, 16, 0.98));
}
.has-public-image > .public-showcase-image-fallback {
  display: none;
}
.plm-showcase-preview > img,
.home-public-thumb > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Contain decorative catalog backgrounds without changing content width. */
html {
  overflow-x: clip;
}
.plm-catalog-page {
  overflow-x: clip;
}
