/*!*****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/app/globals.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************/
:root {
  color-scheme: dark;
  --glass: rgba(7, 15, 25, 0.62);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f7f8fa;
  --muted: rgba(238, 244, 250, 0.72);
  --rail-width: 84px;
  --topbar-height: 64px;
  --panel-width: clamp(318px, 25vw, 366px);
  --shell-gap: clamp(22px, 2.2vw, 34px);
  --shell-radius: 18px;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  background: #07111d;
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible {
  outline: 2px solid rgba(125, 205, 255, 0.9);
  outline-offset: 3px;
}

.gateway {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  background: #07111d;
}
.wallpaper { object-fit: cover; z-index: 0; }
.wash {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 9, 16, 0.91) 0%, rgba(3, 9, 16, 0.57) 36%, rgba(3, 9, 16, 0.14) 67%, rgba(3, 9, 16, 0.44) 100%),
    linear-gradient(180deg, rgba(3, 9, 16, 0.5), transparent 30%, rgba(3, 9, 16, 0.42));
}
.rail, .topbar, .workspace, .dock, footer { position: relative; z-index: 3; }

/* Compact cinematic density: intentionally equivalent to roughly 75–82% browser zoom. */
.rail {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--rail-width);
  border-right: 1px solid var(--line);
  background: rgba(3, 10, 18, 0.79);
  -webkit-backdrop-filter: blur(28px) saturate(130%);
          backdrop-filter: blur(28px) saturate(130%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 8px 16px;
}
.traffic { display: flex; gap: 6px; margin-bottom: 15px; }
.traffic span { width: 9px; height: 9px; border-radius: 50%; background: #ff605c; }
.traffic span:nth-child(2) { background: #ffbd44; }
.traffic span:nth-child(3) { background: #00ca4e; }
.brandMark { display: none; }
.rail nav { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.railItem {
  border: 0;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  border-radius: 13px;
  padding: 9px 3px;
  display: grid;
  place-items: center;
  grid-gap: 4px;
  gap: 4px;
  cursor: pointer;
  font-size: 10px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}
.railItem svg { width: 19px; height: 19px; }
.railItem:hover, .railItem.active {
  background: rgba(103, 173, 255, 0.14);
  color: white;
  box-shadow: inset 0 0 0 1px rgba(133, 193, 255, 0.13);
}
.railBottom { margin-top: auto; width: 100%; }
.health { font-size: 9px; text-align: center; color: #78e99a; margin-bottom: 10px; }
.health i, .operational i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #52dc7c;
  box-shadow: 0 0 9px #52dc7c;
  margin-right: 5px;
}
.mobileClose, .mobileMenu { display: none; }

.topbar {
  margin-left: var(--rail-width);
  height: var(--topbar-height);
  border-bottom: 1px solid var(--line);
  background: rgba(6, 15, 26, 0.53);
  -webkit-backdrop-filter: blur(24px);
          backdrop-filter: blur(24px);
  display: grid;
  grid-template-columns: 120px minmax(230px, 420px) 1fr;
  align-items: center;
  grid-gap: 18px;
  gap: 18px;
  padding: 0 22px;
}
.globalSearch {
  height: 36px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 11px;
  display: flex;
  align-items: center;
  padding: 0 11px;
  gap: 8px;
}
.globalSearch svg { width: 15px; height: 15px; }
.globalSearch input { flex: 1 1; background: transparent; border: 0; outline: 0; color: white; min-width: 0; font-size: 12px; }
.globalSearch kbd {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 9px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.08);
  padding: 3px 5px;
  border-radius: 6px;
}
.globalSearch kbd svg { width: 10px; height: 10px; }
.topStatus { display: flex; justify-content: flex-end; align-items: center; gap: 15px; color: var(--muted); font-size: 11px; }
.topStatus > span { display: flex; align-items: center; gap: 6px; }
.topStatus svg { width: 15px; height: 15px; }
.topStatus button { background: transparent; border: 0; color: white; cursor: pointer; }
.profile { display: flex; align-items: center; gap: 7px; }
.mobileProfile { display: none; }
.profileAvatar { width: 29px; height: 29px; flex: 0 0 29px; border-radius: 50%; display: grid; place-items: center; overflow: hidden; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); background-position: center; background-size: cover; color: white; font-size: 11px; font-weight: 700; box-shadow: inset 0 1px 0 rgba(255,255,255,0.18); }
.profileAvatar.hasProfileAvatar { color: transparent; background-color: rgba(255,255,255,0.08); }
.profile span { display: flex; flex-direction: column; text-align: left; font-size: 11px; }
.profile small { max-width: 150px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 8px; color: var(--muted); }

.workspace {
  margin-left: var(--rail-width);
  height: calc(100dvh - var(--topbar-height));
  padding: clamp(27px, 3.2vh, 38px) 20px 74px clamp(38px, 4.4vw, 70px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--panel-width);
  grid-gap: var(--shell-gap);
  gap: var(--shell-gap);
}
.heroCopy { width: min(100%, 520px); align-self: start; }
.eyebrow { font-size: 14px; margin: 5px 0 9px; color: rgba(255, 255, 255, 0.9); }
h1 {
  font-weight: 400;
  font-size: clamp(39px, 3.5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin: 0 0 13px;
}
h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #f7a625, #f7d7bd, #f29065);
  -webkit-background-clip: text;
  color: transparent;
}
.subcopy { font-size: 13px; line-height: 1.5; color: var(--muted); margin: 0 0 17px; }
.continueCard {
  width: min(100%, 480px);
  min-height: 112px;
  border: 1px solid color-mix(in srgb, var(--accent) 55%, transparent);
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(11, 15, 22, 0.82), rgba(10, 14, 20, 0.55));
  -webkit-backdrop-filter: blur(22px);
          backdrop-filter: blur(22px);
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: start;
  grid-gap: 12px;
  gap: 12px;
  text-align: left;
  color: white;
  padding: 17px;
  cursor: pointer;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.26);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.continueCard:hover { transform: translateY(-2px); background: linear-gradient(135deg, rgba(15, 21, 31, 0.87), rgba(11, 16, 24, 0.62)); }
.continueIcon {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border-radius: 11px;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 44%, transparent);
}
.continueIcon svg { width: 20px; height: 20px; }
.continueCard strong, .continueCard small, .continueCard b { display: block; }
.continueCard strong { font-size: 16px; }
.continueCard small { color: var(--muted); margin-top: 3px; font-size: 10px; }
.continueCard b { font-weight: 400; color: var(--muted); margin-top: 16px; font-size: 11px; }
.continueAction {
  align-self: center;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid color-mix(in srgb, var(--accent) 48%, transparent);
  border-radius: 999px;
  padding: 8px 11px;
  font-size: 11px;
}
.continueAction svg { width: 13px; height: 13px; }
.recentHeader { display: flex; justify-content: space-between; align-items: center; margin: 14px 2px 7px; }
.recentHeader h2 { font-size: 13px; margin: 0; }
.recentHeader span { font-size: 9px; color: var(--muted); display: flex; align-items: center; gap: 5px; }
.recentHeader svg { width: 11px; height: 11px; }
.recentList { display: grid; grid-gap: 6px; gap: 6px; }
.recentList button {
  border: 1px solid var(--line);
  background: rgba(8, 14, 22, 0.68);
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);
  border-radius: 11px;
  color: white;
  display: grid;
  grid-template-columns: 31px 1fr auto;
  align-items: center;
  text-align: left;
  padding: 8px 11px;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}
.recentList button:hover { background: rgba(18, 28, 41, 0.78); transform: translateX(2px); }
.recentIcon { display: grid; place-items: center; }
.recentIcon svg { width: 18px; height: 18px; }
.recentList strong, .recentList small { display: block; }
.recentList strong { font-size: 11px; }
.recentList small { font-size: 9px; color: var(--muted); margin-top: 2px; }
.recentList > button > svg { width: 14px; height: 14px; }

.destinationPanel {
  align-self: stretch;
  min-height: 0;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: rgba(12, 18, 27, 0.58);
  -webkit-backdrop-filter: blur(30px) saturate(125%);
          backdrop-filter: blur(30px) saturate(125%);
  padding: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
}
.panelHeading { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.panelHeading > span { display: grid; grid-template-columns: 19px 1fr; grid-column-gap: 6px; column-gap: 6px; font-size: 13px; }
.panelHeading > span svg { grid-row: 1 / 3; width: 16px; height: 16px; }
.panelHeading small { display: block; color: var(--muted); font-size: 9px; margin-top: 2px; }
.panelHeading button { border: 0; border-radius: 8px; background: rgba(255, 255, 255, 0.08); color: white; padding: 7px; }
.panelHeading button svg { width: 14px; height: 14px; }
.destinationList { display: grid; grid-gap: 6px; gap: 6px; overflow: auto; min-height: 0; padding-right: 2px; scrollbar-width: thin; }
.destinationCard {
  position: relative;
  overflow: hidden;
  min-height: 82px;
  border: 1px solid color-mix(in srgb, var(--accent) 42%, transparent);
  border-radius: 14px;
  background: #0b1119;
  color: white;
  text-align: left;
  display: grid;
  grid-template-columns: 38px 1fr 32px;
  align-items: center;
  grid-gap: 10px;
  gap: 10px;
  padding: 11px;
  cursor: pointer;
  isolation: isolate;
  transition: transform 170ms ease, border-color 170ms ease;
}
.destinationCard:hover { transform: translateY(-1px); border-color: color-mix(in srgb, var(--accent) 75%, transparent); }
.destinationCard > img { object-fit: cover; z-index: 0; transition: transform 420ms ease; }
.destinationCard:hover > img { transform: scale(1.025); }
.cardShade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5, 8, 13, 0.95), rgba(5, 8, 13, 0.73) 58%, rgba(5, 8, 13, 0.35)); z-index: 1; }
.cardIcon, .cardCopy, .roundArrow { position: relative; z-index: 2; }
.cardIcon { color: var(--accent); display: grid; place-items: center; }
.cardIcon svg { width: 23px; height: 23px; }
.cardCopy strong, .cardCopy small { display: block; }
.cardCopy strong { font-size: 15px; }
.cardCopy small { font-size: 9px; line-height: 1.35; color: rgba(255, 255, 255, 0.72); margin-top: 3px; }
.roundArrow { width: 30px; height: 30px; border: 1px solid var(--accent); color: var(--accent); border-radius: 50%; display: grid; place-items: center; }
.roundArrow svg { width: 13px; height: 13px; }
.emptySearch { min-height: 160px; border: 1px dashed var(--line); border-radius: 14px; display: grid; place-items: center; align-content: center; grid-gap: 6px; gap: 6px; color: var(--muted); text-align: center; padding: 20px; }
.emptySearch svg { width: 22px; height: 22px; }
.emptySearch strong { color: white; font-size: 13px; }
.emptySearch span { font-size: 10px; }
.allProducts {
  margin-top: 9px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px;
  cursor: pointer;
  font-size: 11px;
}
.allProducts svg { width: 16px; height: 16px; }
.allProducts svg:last-child { margin-left: auto; }

.dock {
  position: fixed;
  z-index: 5;
  left: calc(50% + var(--rail-width) / 2);
  bottom: 13px;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(9, 15, 24, 0.74);
  -webkit-backdrop-filter: blur(28px);
          backdrop-filter: blur(28px);
  padding: 7px 9px;
  border-radius: 15px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
}
.dock button {
  width: 37px;
  height: 37px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  color: var(--accent, white);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 170ms ease, background 170ms ease;
}
.dock button svg { width: 18px; height: 18px; }
.dock button:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.12); }
.dock > span { height: 28px; width: 1px; background: var(--line); }
footer {
  position: fixed;
  z-index: 4;
  left: calc(var(--rail-width) + 14px);
  right: 14px;
  bottom: 11px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
  pointer-events: none;
}
footer nav { display: flex; gap: 14px; }
footer a { color: inherit; text-decoration: none; pointer-events: auto; }

@media (min-width: 1800px) {
  :root { --rail-width: 92px; --topbar-height: 69px; --panel-width: 390px; }
  .workspace { padding-left: clamp(60px, 5vw, 96px); }
  .heroCopy { width: min(100%, 560px); }
  h1 { font-size: clamp(52px, 3.2vw, 64px); }
  .continueCard { width: min(100%, 510px); }
}

@media (max-width: 1100px) {
  :root { --panel-width: 310px; --shell-gap: 20px; }
  .workspace { padding-left: 28px; }
  .destinationPanel { padding: 12px; }
  .topStatus .operational { display: none; }
  .globalSearch { max-width: 330px; }
  .topbar { grid-template-columns: 112px minmax(200px, 1fr) auto; }
  .continueCard { min-height: 104px; }
}

@media (max-height: 760px) and (min-width: 821px) {
  :root { --topbar-height: 58px; }
  .workspace { padding-top: 18px; padding-bottom: 62px; }
  .eyebrow { margin-top: 2px; }
  h1 { font-size: clamp(36px, 3.1vw, 49px); margin-bottom: 9px; }
  .subcopy { margin-bottom: 11px; }
  .continueCard { min-height: 94px; padding: 13px; }
  .continueCard b { margin-top: 10px; }
  .recentHeader { margin-top: 10px; }
  .destinationCard { min-height: 70px; }
  .dock { bottom: 9px; }
}

@media (max-width: 820px) {
  :root { --topbar-height: 60px; }
  .gateway { overflow: auto; }
  .rail { transform: translateX(-100%); transition: transform 220ms ease; z-index: 10; width: 88px; }
  .railOpen { transform: translateX(0); }
  .mobileClose { display: block; position: absolute; right: 7px; top: 7px; border: 0; background: transparent; color: white; }
  .traffic { display: none; }
  .brandMark { display: block; margin: 8px 0 16px; }
  .topbar { margin-left: 0; height: var(--topbar-height); grid-template-columns: auto 100px minmax(0, 1fr) auto; padding: 0 13px; gap: 10px; }
  .mobileMenu { display: grid; place-items: center; border: 0; background: transparent; color: white; }
  .globalSearch { grid-column: 3; }
  .topStatus { display: none; }
  .mobileProfile { display: flex; align-items: center; gap: 7px; min-width: 0; border: 0; background: transparent; color: white; padding: 0; }
  .mobileProfile > span:last-child { display: flex; flex-direction: column; min-width: 0; max-width: 112px; text-align: left; font-size: 10px; }
  .mobileProfile small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--muted); font-size: 8px; }
  .workspace { margin-left: 0; height: auto; min-height: calc(100dvh - var(--topbar-height)); grid-template-columns: 1fr; padding: 25px 16px 96px; gap: 18px; }
  .heroCopy { width: 100%; max-width: none; }
  h1 { font-size: clamp(38px, 9vw, 54px); }
  .destinationPanel { order: -1; max-height: none; }
  .destinationList { grid-template-columns: 1fr 1fr; }
  .destinationCard { min-height: 94px; }
  .dock { left: 50%; max-width: calc(100vw - 24px); overflow: auto; }
  .dock button { min-width: 36px; }
  footer { display: none; }
}

@media (max-width: 580px) {
  .topbar { grid-template-columns: auto 84px minmax(0, 1fr) auto; gap: 7px; }
  .globalSearch { height: 35px; }
  .globalSearch kbd { display: none; }
  .mobileProfile > span:last-child { display: none; }
  .workspace { padding-top: 17px; }
  .eyebrow { font-size: 13px; }
  h1 { font-size: 39px; }
  .subcopy { font-size: 13px; }
  .destinationList { grid-template-columns: 1fr; }
  .destinationCard { min-height: 80px; }
  .continueCard { grid-template-columns: 39px 1fr; padding: 14px; }
  .continueAction { grid-column: 2; justify-self: start; }
  .recentList button { padding: 9px; }
  .dock { bottom: 8px; }
  .dock button { min-width: 35px; width: 35px; height: 35px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .dock button:hover, .continueCard:hover, .recentList button:hover, .destinationCard:hover { transform: none; }
}


/* 1.3 Titan glass refinement — one shared material authority. */
:root {
  --glass-surface: rgba(9, 16, 26, 0.42);
  --glass-surface-strong: rgba(8, 14, 23, 0.56);
  --glass-surface-soft: rgba(255, 255, 255, 0.055);
  --glass-line: rgba(255, 255, 255, 0.115);
  --glass-highlight: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  --glass-blur: 24px;
}
.wash { background: linear-gradient(90deg, rgba(3,9,16,.79) 0%, rgba(3,9,16,.36) 38%, rgba(3,9,16,.06) 68%, rgba(3,9,16,.22) 100%), linear-gradient(180deg, rgba(3,9,16,.30), transparent 34%, rgba(3,9,16,.25)); }
.rail { background: rgba(3,10,18,.61); border-color: var(--glass-line); -webkit-backdrop-filter: blur(22px) saturate(135%); backdrop-filter: blur(22px) saturate(135%); }
.topbar { background: rgba(6,15,26,.37); border-color: var(--glass-line); -webkit-backdrop-filter: blur(20px) saturate(135%); backdrop-filter: blur(20px) saturate(135%); }
.globalSearch { background: rgba(255,255,255,.055); border-color: var(--glass-line); box-shadow: inset 0 1px 0 rgba(255,255,255,.035); }
.continueCard { background: linear-gradient(135deg, rgba(10,16,25,.59), rgba(8,13,20,.35)); border-color: color-mix(in srgb, var(--accent) 42%, transparent); -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(132%); backdrop-filter: blur(var(--glass-blur)) saturate(132%); box-shadow: var(--glass-shadow), inset 0 1px 0 var(--glass-highlight); }
.continueCard:hover { background: linear-gradient(135deg, rgba(14,22,33,.65), rgba(9,15,23,.42)); }
.recentList button { background: rgba(8,14,22,.47); border-color: var(--glass-line); -webkit-backdrop-filter: blur(16px) saturate(125%); backdrop-filter: blur(16px) saturate(125%); box-shadow: inset 0 1px 0 rgba(255,255,255,.025); }
.recentList button:hover { background: rgba(18,28,41,.58); }
.destinationPanel { background: rgba(10,17,27,.40); border-color: var(--glass-line); -webkit-backdrop-filter: blur(26px) saturate(140%); backdrop-filter: blur(26px) saturate(140%); box-shadow: var(--glass-shadow), inset 0 1px 0 var(--glass-highlight); }
.destinationCard { border-color: color-mix(in srgb, var(--accent) 34%, transparent); box-shadow: inset 0 1px 0 rgba(255,255,255,.04); }
.cardShade { background: linear-gradient(90deg, rgba(5,8,13,.83), rgba(5,8,13,.50) 58%, rgba(5,8,13,.16)); }
.allProducts { background: rgba(255,255,255,.055); border-color: var(--glass-line); }
.dock { background: rgba(9,15,24,.52); border-color: var(--glass-line); -webkit-backdrop-filter: blur(24px) saturate(145%); backdrop-filter: blur(24px) saturate(145%); box-shadow: 0 16px 45px rgba(0,0,0,.30), inset 0 1px 0 var(--glass-highlight); border-radius: 18px; }
.dock button { background: rgba(255,255,255,.055); border-color: rgba(255,255,255,.10); }
.dock button:hover { background: rgba(255,255,255,.105); }

/* 1.4 protected bootstrap — never expose the gateway before authentication resolves. */
.authGate {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #07111d;
  color: #fff;
}
.authGateCard {
  position: relative;
  z-index: 3;
  width: min(390px, calc(100vw - 36px));
  padding: 32px 30px;
  display: grid;
  justify-items: center;
  grid-gap: 15px;
  gap: 15px;
  text-align: center;
  border: 1px solid var(--glass-line);
  border-radius: 24px;
  background: rgba(8, 15, 25, 0.48);
  box-shadow: var(--glass-shadow), inset 0 1px 0 var(--glass-highlight);
  -webkit-backdrop-filter: blur(28px) saturate(145%);
          backdrop-filter: blur(28px) saturate(145%);
}
.authGateCard strong { font-size: 17px; font-weight: 600; }
.authGateCard p { margin: -5px 0 0; color: rgba(255,255,255,.62); font-size: 13px; }
.authGateSpinner {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.16);
  border-top-color: rgba(255,255,255,.92);
  animation: authGateSpin .85s linear infinite;
}
@keyframes authGateSpin { to { transform: rotate(360deg); } }

/* Phase 20: shared account menu and non-blocking security recommendation */
.accountMenuBackdrop,.securityPromptBackdrop{position:fixed;inset:0;z-index:80;background:rgba(1,6,12,.18);-webkit-backdrop-filter:blur(5px);backdrop-filter:blur(5px)}
.accountMenu{position:absolute;top:76px;right:22px;width:min(360px,calc(100vw - 24px));padding:12px;border:1px solid rgba(255,255,255,.16);border-radius:22px;background:linear-gradient(145deg,rgba(255,255,255,.11),rgba(255,255,255,.03)),rgba(8,13,19,.88);box-shadow:0 28px 80px rgba(0,0,0,.48);-webkit-backdrop-filter:blur(28px) saturate(1.25);backdrop-filter:blur(28px) saturate(1.25)}
.accountMenu header{display:grid;grid-template-columns:auto 1fr auto;grid-gap:11px;gap:11px;align-items:center;padding:10px 9px 14px;border-bottom:1px solid rgba(255,255,255,.09)}
.accountMenu header div{display:grid;min-width:0}.accountMenu header small{overflow:hidden;text-overflow:ellipsis;color:var(--muted)}.accountMenu header button,.securityPromptClose{display:grid;place-items:center;width:32px;height:32px;border:0;border-radius:50%;background:rgba(255,255,255,.07);color:white}.accountMenu header button svg,.securityPromptClose svg{width:16px}
.accountMenu>a{display:grid;grid-template-columns:34px minmax(0,1fr) auto;grid-gap:11px;gap:11px;align-items:center;margin-top:8px;padding:12px;border:1px solid transparent;border-radius:15px;color:white;text-decoration:none;background:rgba(255,255,255,.035)}.accountMenu>a:hover{border-color:rgba(255,255,255,.13);background:rgba(255,255,255,.075)}.accountMenu>a>svg{width:19px}.accountMenu>a span{display:grid}.accountMenu>a small{margin-top:2px;color:var(--muted)}.accountMenu>a svg:last-child{width:15px;color:var(--muted)}
.accountMenuSignout{width:100%;display:flex;gap:10px;align-items:center;margin-top:9px;padding:12px;border:0;border-radius:14px;background:transparent;color:rgba(255,255,255,.75)}.accountMenuSignout:hover{background:rgba(255,255,255,.06);color:white}.accountMenuSignout svg{width:18px}
.securityPromptBackdrop{display:grid;place-items:center;background:rgba(1,6,12,.38);-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px)}.securityPrompt{position:relative;width:min(430px,calc(100vw - 28px));padding:30px;border:1px solid rgba(255,255,255,.18);border-radius:26px;background:linear-gradient(145deg,rgba(255,255,255,.13),rgba(255,255,255,.035)),rgba(8,13,20,.88);box-shadow:0 34px 100px rgba(0,0,0,.54);-webkit-backdrop-filter:blur(30px) saturate(1.25);backdrop-filter:blur(30px) saturate(1.25)}.securityPromptIcon{display:grid;place-items:center;width:48px;height:48px;margin-bottom:20px;border:1px solid rgba(119,198,255,.35);border-radius:15px;background:rgba(82,153,216,.17)}.securityPromptIcon svg{width:23px}.securityPromptClose{position:absolute;top:18px;right:18px}.securityPromptEyebrow{font-size:10px;font-weight:700;letter-spacing:.17em;text-transform:uppercase;color:#b9ddff}.securityPrompt h2{margin:8px 0 10px;font-size:28px;letter-spacing:-.03em}.securityPrompt p{margin:0 0 22px;color:rgba(255,255,255,.68);line-height:1.55}.securityPromptPrimary,.securityPromptSecondary{width:100%;min-height:48px;border-radius:14px;font-weight:700}.securityPromptPrimary{display:flex;align-items:center;justify-content:center;gap:10px;border:1px solid rgba(255,255,255,.2);color:white;text-decoration:none;background:linear-gradient(145deg,rgba(255,255,255,.18),rgba(111,166,220,.14));box-shadow:inset 0 1px 0 rgba(255,255,255,.18)}.securityPromptPrimary:hover{background:linear-gradient(145deg,rgba(255,255,255,.24),rgba(111,166,220,.2))}.securityPromptPrimary svg{width:18px}.securityPromptSecondary{margin-top:9px;border:0;background:transparent;color:rgba(255,255,255,.68)}.securityPromptSecondary:hover{background:rgba(255,255,255,.055);color:white}
@media(max-width:700px){.accountMenu{top:68px;right:12px}.securityPrompt{padding:25px 20px}}
@media(prefers-reduced-motion:reduce){.accountMenu,.securityPrompt{animation:none!important}}

