:root {
  --bg: #060e1c;
  --bg-2: #0b203a;
  --panel: rgba(9, 24, 43, 0.8);
  --text: #ebf6ff;
  --muted: #9bb9d4;
  --line: rgba(132, 189, 245, 0.26);
  --aqua: #43d5ff;
  --mint: #83ffd8;
  --radius: 18px;
  --shadow: 0 18px 44px rgba(2, 10, 20, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Outfit", sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(67, 213, 255, 0.2), transparent 35%),
    radial-gradient(circle at 86% 3%, rgba(131, 255, 216, 0.14), transparent 30%),
    linear-gradient(160deg, var(--bg), var(--bg-2));
  min-height: 100vh;
}

.water-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(131, 255, 216, 0.28);
  background: radial-gradient(circle at 35% 30%, rgba(67, 213, 255, 0.28), rgba(67, 213, 255, 0.04));
}

.orb-a {
  width: 170px;
  height: 170px;
  left: 7%;
  bottom: -36px;
  animation: floaty 11s ease-in-out infinite;
}

.orb-b {
  width: 250px;
  height: 250px;
  right: 9%;
  bottom: -94px;
  animation: floaty 16s ease-in-out infinite reverse;
}

.orb-c {
  width: 110px;
  height: 110px;
  right: 32%;
  top: 15%;
  animation: drift 10s ease-in-out infinite;
}

.wave-sheet {
  position: absolute;
  inset: auto -20% 0 -20%;
  height: 230px;
  opacity: 0.5;
  background:
    repeating-radial-gradient(
      circle at 50% 118%,
      rgba(67, 213, 255, 0.36) 0,
      rgba(67, 213, 255, 0.36) 2px,
      transparent 2px,
      transparent 18px
    );
  animation: waveShift 22s linear infinite;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-26px);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-14px, 14px);
  }
}

@keyframes waveShift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-8%);
  }
}

.topbar,
main,
.footer {
  width: min(1200px, calc(100% - 2rem));
  margin-inline: auto;
}

.topbar {
  margin-top: 0.7rem;
  position: sticky;
  top: 0.7rem;
  z-index: 30;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 20, 36, 0.78);
  backdrop-filter: blur(8px);
  padding: 0.84rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.topnav {
  display: flex;
  gap: 1rem;
}

.topbar-user {
  margin-left: auto;
  position: relative;
}

.user-link {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 24, 42, 0.7);
  color: var(--text);
  text-decoration: none;
  padding: 0.38rem 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font: inherit;
  cursor: pointer;
}

.user-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.35rem);
  min-width: 170px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(7, 20, 35, 0.95);
  box-shadow: var(--shadow);
  padding: 0.4rem;
  display: grid;
  gap: 0.25rem;
  z-index: 50;
}

.user-menu a,
.user-menu button {
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: #cbe7fa;
  text-decoration: none;
  padding: 0.42rem 0.55rem;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.user-menu a:hover,
.user-menu button:hover {
  border-color: rgba(131, 255, 216, 0.4);
  color: var(--mint);
  background: rgba(8, 26, 46, 0.6);
}

.tiny-avatar {
  width: 24px;
  height: 24px;
  font-size: 0.78rem;
}

.topnav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  opacity: 0.9;
   border: 1px solid transparent;
   border-radius: 999px;
   padding: 0.28rem 0.55rem;
   transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.topnav a.active,
.topnav a:hover {
  color: var(--mint);
  border-color: rgba(131, 255, 216, 0.42);
  background: rgba(8, 24, 42, 0.5);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font: inherit;
  padding: 0.42rem 0.8rem;
  cursor: pointer;
}

.menu-toggle:hover {
  border-color: rgba(131, 255, 216, 0.48);
  color: var(--mint);
}

h1,
h2,
h3 {
  margin: 0.45rem 0 0;
  line-height: 1.1;
  font-family: "Sora", sans-serif;
}

h1 {
  font-size: clamp(2rem, 6vw, 3.4rem);
}

h2 {
  font-size: clamp(1.2rem, 3.4vw, 1.8rem);
}

p {
  color: var(--muted);
}

.tag {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  color: var(--mint);
  font-weight: 700;
}

.hero,
.forum-hero,
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.home-main,
.forum-main,
.account-main {
  padding-bottom: 3rem;
}

.hero {
  margin-top: 2.1rem;
  padding: 1.4rem;
  background: linear-gradient(140deg, rgba(8, 24, 44, 0.88), rgba(11, 35, 62, 0.8));
  background-size: 150% 150%;
  animation: heroFlow 14s ease-in-out infinite;
}

@keyframes heroFlow {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.hero-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.steps {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.social-strip {
  margin-top: 1rem;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  align-items: center;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
}

.social-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.42rem 0.8rem;
  text-decoration: none;
  color: #cce8ff;
  background: rgba(8, 24, 42, 0.65);
}

.social-links a:hover {
  color: var(--mint);
  border-color: rgba(131, 255, 216, 0.5);
}

.step-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem;
  background: rgba(8, 23, 41, 0.64);
}

.forum-hero {
  margin-top: 2rem;
  padding: 1.2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1rem;
}

.forum-stats {
  display: grid;
  gap: 0.7rem;
}

.forum-stats article {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem;
  background: rgba(8, 22, 39, 0.7);
}

.forum-stats h3 {
  color: var(--aqua);
}

.forum-layout {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 250px 1fr 280px;
  gap: 1rem;
  align-items: start;
}

.side-panel,
.forum-center,
.account-wrap {
  padding: 1rem;
}

.channel-list,
.flow-list {
  margin: 0.8rem 0 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.channel-list li,
.flow-list li {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
  background: rgba(7, 20, 35, 0.7);
  color: #bfd8ec;
}

.channel-list span {
  color: var(--mint);
  margin-right: 0.2rem;
}

.feed-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.feed-tools {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.55rem;
}

.topic-chips {
  margin-top: 0.65rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 26, 46, 0.7);
  color: #c6e1f5;
  padding: 0.28rem 0.7rem;
  font: inherit;
  font-size: 0.84rem;
  cursor: pointer;
}

.chip.active,
.chip:hover {
  border-color: rgba(131, 255, 216, 0.5);
  color: var(--mint);
}

.sort-tabs {
  display: flex;
  gap: 0.45rem;
}

.tab,
.auth-tab {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 26, 46, 0.7);
  color: var(--text);
  padding: 0.42rem 0.86rem;
  font: inherit;
  cursor: pointer;
}

.tab.active,
.auth-tab.active {
  background: rgba(131, 255, 216, 0.15);
  border-color: rgba(131, 255, 216, 0.5);
}

.thread-form,
.auth-form {
  margin-top: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(7, 21, 37, 0.68);
  padding: 0.9rem;
  display: grid;
  gap: 0.7rem;
}

.thread-form input:disabled,
.thread-form textarea:disabled,
.thread-form button:disabled {
  opacity: 0.58;
  cursor: not-allowed;
}

#composerHint a {
  color: var(--mint);
}

.auth-form {
  display: none;
}

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

label {
  display: grid;
  gap: 0.3rem;
  font-weight: 500;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.65rem 0.72rem;
  font: inherit;
  color: var(--text);
  background: rgba(4, 16, 30, 0.92);
}

select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.65rem 0.72rem;
  font: inherit;
  color: var(--text);
  background: rgba(4, 16, 30, 0.92);
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.62rem 1rem;
  text-decoration: none;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #09263b;
  background: linear-gradient(90deg, var(--aqua), var(--mint));
  box-shadow: 0 10px 20px rgba(67, 213, 255, 0.24);
}

.btn-ghost {
  color: var(--mint);
  background: rgba(8, 24, 42, 0.6);
  border-color: rgba(131, 255, 216, 0.45);
}

.btn-google {
  width: 100%;
  background: #eaf8ff;
  color: #12314a;
}

.google-button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 0.4rem;
}

.side-btn {
  margin-top: 0.8rem;
  display: inline-flex;
}

.thread-feed {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.75rem;
}

.thread {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem;
  background: rgba(7, 20, 35, 0.75);
  animation: threadIn 0.4s ease;
}

.thread > p {
  margin: 0.55rem 0 0;
  color: #cce3f4;
}

.thread-highlight {
  outline: 2px solid rgba(131, 255, 216, 0.7);
  outline-offset: 2px;
}

@keyframes threadIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.thread-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.8rem;
}

.thread-author-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(131, 255, 216, 0.5);
  background: linear-gradient(150deg, rgba(67, 213, 255, 0.35), rgba(131, 255, 216, 0.22));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #dbf7ff;
  flex: 0 0 auto;
  object-fit: cover;
}

.author-link {
  color: #bfe6ff;
  text-decoration: none;
}

.author-link:hover {
  color: var(--mint);
}

.thread-meta {
  font-size: 0.82rem;
  color: #88bcdf;
}

.category-pill {
  display: inline-block;
  margin-right: 0.35rem;
  border: 1px solid rgba(131, 255, 216, 0.45);
  border-radius: 999px;
  padding: 0.1rem 0.45rem;
  color: var(--mint);
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
}

.thread-controls {
  margin-top: 0.7rem;
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.control-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 24, 42, 0.64);
  color: var(--text);
  padding: 0.34rem 0.72rem;
  font: inherit;
  font-size: 0.86rem;
  cursor: pointer;
}

.control-btn:hover {
  border-color: rgba(131, 255, 216, 0.5);
}

.control-btn:active,
.btn:active,
.tab:active,
.auth-tab:active,
.account-tab:active,
.user-link:active {
  transform: translateY(1px);
}

.empty-state {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.95rem;
  background: rgba(8, 23, 41, 0.72);
  display: grid;
  gap: 0.65rem;
}

.empty-state h3 {
  margin: 0;
}

.empty-state p {
  margin: 0;
}

.empty-state-list {
  margin: 0;
  padding-left: 1.1rem;
  color: #c8def0;
  display: grid;
  gap: 0.35rem;
}

.replies {
  margin-top: 0.8rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--line);
  position: relative;
  padding-left: 0.9rem;
  display: grid;
  gap: 0.55rem;
}

.replies::before {
  content: "";
  position: absolute;
  left: 0.24rem;
  top: 0.72rem;
  bottom: 0.3rem;
  width: 2px;
  background: linear-gradient(var(--aqua), rgba(67, 213, 255, 0.1));
}

.reply {
  position: relative;
  border: 1px solid rgba(132, 189, 245, 0.16);
  border-radius: 10px;
  padding: 0.55rem;
  background: rgba(4, 15, 28, 0.78);
}

.reply::before {
  content: "";
  position: absolute;
  left: -0.84rem;
  top: 0.76rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(131, 255, 216, 0.15);
}

.reply-top {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #90c3e4;
}

.reply-form {
  margin-top: 0.6rem;
  display: flex;
  gap: 0.45rem;
}

.reply-form input {
  flex: 1;
}

.reply-form.collapsed {
  display: none;
}

.replies.collapsed {
  display: none;
}

.note {
  margin: 0;
  min-height: 1.25rem;
}

.divider {
  margin: 0.9rem 0;
  display: flex;
  align-items: center;
  color: var(--muted);
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.divider span {
  padding: 0 0.5rem;
}

.session {
  margin-top: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem;
  background: rgba(7, 20, 35, 0.76);
}

body:not(.is-authenticated) .session-only {
  display: none !important;
}

body.is-authenticated .auth-only {
  display: none !important;
}

.session-actions {
  margin-top: 0.6rem;
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.account-tabs {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.account-tab {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 26, 46, 0.7);
  color: var(--text);
  padding: 0.38rem 0.8rem;
  font: inherit;
  cursor: pointer;
}

.account-tab.active,
.account-tab:hover {
  background: rgba(131, 255, 216, 0.15);
  border-color: rgba(131, 255, 216, 0.5);
}

.profile-box {
  margin-top: 0.9rem;
  border-top: 1px solid var(--line);
  padding-top: 0.75rem;
}

.account-panel {
  display: none;
}

.account-panel.active {
  display: block;
}

.settings-form {
  margin-top: 0.55rem;
  display: grid;
  gap: 0.6rem;
}

.inline-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.inline-check input {
  width: auto;
}

.settings-form input:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.list-grid {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.billing-grid {
  margin-top: 0.65rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.billing-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem;
  background: rgba(8, 22, 39, 0.67);
}

.billing-card h4 {
  margin-top: 0.3rem;
}

.list-grid h4 {
  margin: 0;
}

.mini-list {
  margin-top: 0.45rem;
  display: grid;
  gap: 0.45rem;
}

.mini-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.45rem 0.55rem;
  background: rgba(8, 22, 39, 0.67);
  color: #cfe8f9;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.mini-item:hover {
  border-color: rgba(131, 255, 216, 0.46);
  color: var(--mint);
}

.mini-item.unread {
  border-color: rgba(131, 255, 216, 0.55);
  box-shadow: 0 0 0 1px rgba(131, 255, 216, 0.2) inset;
}

.profile-avatar-row {
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0.8rem;
  align-items: start;
}

.profile-avatar {
  width: 110px;
  height: 110px;
  border-radius: 18px;
  border: 1px solid var(--line);
  object-fit: cover;
  background: rgba(8, 23, 41, 0.65);
}

.account-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: start;
}

.account-sub {
  margin-top: 0.55rem;
}

.account-side {
  padding: 1rem;
}

.benefit-list {
  margin: 0.85rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.5rem;
  color: #b9d8ef;
}

.social-stack {
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 0.8rem;
  display: grid;
  gap: 0.45rem;
}

.social-stack a {
  text-decoration: none;
  color: #c8e7ff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.45rem 0.6rem;
  background: rgba(8, 23, 41, 0.62);
}

.social-stack a:hover {
  color: var(--mint);
}

.admin-actions {
  margin-top: 0.8rem;
}

.admin-list {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.7rem;
}

.admin-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(7, 20, 35, 0.75);
  padding: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
}

.admin-item p {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
}

.footer {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  padding: 0.95rem 0 2.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer a {
  text-decoration: none;
  color: var(--mint);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.panel-page {
  margin-top: 2rem;
  padding: 1rem;
}

body.layout-compact .hero,
body.layout-compact .forum-hero,
body.layout-compact .card,
body.layout-compact .thread,
body.layout-compact .thread-form,
body.layout-compact .auth-form,
body.layout-compact .profile-box {
  border-radius: 12px;
}

body.layout-compact .hero,
body.layout-compact .forum-hero,
body.layout-compact .side-panel,
body.layout-compact .forum-center,
body.layout-compact .account-wrap,
body.layout-compact .account-side {
  padding: 0.8rem;
}

body.layout-compact .thread,
body.layout-compact .mini-item,
body.layout-compact .billing-card {
  padding: 0.6rem;
}

body.motion-reduced *,
body.motion-reduced *::before,
body.motion-reduced *::after {
  animation: none !important;
  transition: none !important;
}

body.hide-social .social-strip,
body.hide-social .social-stack,
body.hide-social .social-links {
  display: none !important;
}

body.forum-focus .forum-layout {
  grid-template-columns: 1fr;
}

body.forum-focus .forum-layout .side-panel {
  display: none;
}

.reveal {
  opacity: 1;
  transform: none;
}

body.js-reveal-enabled .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

body.js-reveal-enabled .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

@media (max-width: 1080px) {
  .steps,
  .forum-hero,
  .social-strip,
  .account-grid {
    grid-template-columns: 1fr;
  }

  .social-links {
    justify-content: flex-start;
  }
}

@media (max-width: 1280px) {
  .forum-layout {
    grid-template-columns: 220px 1fr;
  }

  .forum-layout > .side-panel:last-child {
    display: none;
  }
}

@media (max-width: 1024px) {
  .forum-layout {
    grid-template-columns: 1fr;
  }

  .forum-layout > .side-panel:first-child {
    display: none;
  }
}

@media (max-width: 860px) {
  .topnav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    width: min(230px, calc(100vw - 2rem));
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(8, 20, 36, 0.96);
    flex-direction: column;
    padding: 0.7rem;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: 0.2s ease;
  }

  .topbar-user {
    margin-left: 0;
  }

  .topnav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .thread-top {
    flex-direction: column;
    gap: 0.45rem;
  }

  .reply-form {
    flex-direction: column;
  }

  .feed-tools {
    grid-template-columns: 1fr;
  }

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

  .profile-avatar-row {
    grid-template-columns: 1fr;
  }

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

  .admin-item {
    flex-direction: column;
    align-items: flex-start;
  }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 2px;
}

.topnav a:focus-visible,
.user-menu a:focus-visible,
.user-menu button:focus-visible,
.control-btn:focus-visible,
.mini-item:focus-visible {
  box-shadow: 0 0 0 3px rgba(131, 255, 216, 0.2);
}
