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

[hidden] {
  display: none !important;
}

html {
  min-height: 100vh;
  background: linear-gradient(to bottom, #0d0c1a, #13121f 70%, #0a0917);
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #e5e3f5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #6b5ce7;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.main {
  flex: 1;
  padding-bottom: 3rem;
}

.footer {
  background: #0d0c1a;
  border-top: 1px solid #2a2845;
  padding: 1.5rem 0;
  margin-top: 3rem;
  text-align: center;
}
.footer p {
  margin-bottom: 0;
  color: #9ca3af;
  font-size: 0.875rem;
}

.page-title {
  font-size: 2rem;
  font-weight: 300;
  color: #e5e3f5;
  margin-bottom: 2rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-between {
  justify-content: space-between;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

.gap-sm {
  gap: 0.5rem;
}

.gap-md {
  gap: 1rem;
}

.gap-lg {
  gap: 1.5rem;
}

.mt-sm {
  margin-top: 0.5rem;
}

.mt-md {
  margin-top: 1rem;
}

.mt-lg {
  margin-top: 1.5rem;
}

.mt-xl {
  margin-top: 2rem;
}

.mb-sm {
  margin-bottom: 0.5rem;
}

.mb-md {
  margin-bottom: 1rem;
}

.mb-lg {
  margin-bottom: 1.5rem;
}

.mb-xl {
  margin-bottom: 2rem;
}

.circle-room {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 80px);
  gap: 2rem;
}

.circle-stage {
  position: relative;
  width: 480px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.outer-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.community-ring {
  position: absolute;
  width: 473px;
  height: 473px;
  border-radius: 50%;
  background: rgba(107, 92, 231, 0.04);
}

.outer-ring-static {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(107, 92, 231, 0.1);
}

.outer-ring {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 2px solid rgba(107, 92, 231, 0.55);
  animation: ring-pulse 3s ease-in-out infinite;
}
.outer-ring:nth-child(2) {
  animation-delay: 0.6s;
}
.outer-ring:nth-child(3) {
  animation-delay: 1.2s;
}
.outer-ring:nth-child(4) {
  animation-delay: 1.8s;
}

.center-ring {
  position: relative;
  z-index: 1;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(107, 92, 231, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  animation: ring-pulse 3s ease-in-out infinite;
  cursor: pointer;
}
.center-ring[data-state=practicing] {
  animation-duration: 1.8s;
  background: #6b5ce7;
  box-shadow: 0 0 30px rgba(107, 92, 231, 0.4);
}

.center-ring-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.4;
}

@keyframes ring-pulse {
  0% {
    transform: scale(0.92);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
  100% {
    transform: scale(0.92);
    opacity: 0.7;
  }
}
.circle-quote {
  font-size: 0.875rem;
  color: #9ca3af;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-width: 220px;
  animation: fadeIn 1.5s ease;
}
.circle-quote em {
  font-style: italic;
}

.quote-attribution {
  font-size: 0.875rem;
  color: rgba(156, 163, 175, 0.6);
  font-style: normal;
}

.circle-legend {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.legend-you {
  color: rgba(107, 92, 231, 0.9);
}

.legend-circle {
  color: rgba(107, 92, 231, 0.55);
}

.legend-community {
  color: rgba(107, 92, 231, 0.25);
}

.legend-sep {
  color: rgba(156, 163, 175, 0.3);
}

.circle-presence {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.25rem;
  text-align: center;
  height: 11rem;
}

.circle-name {
  font-size: 1.5rem;
  color: rgba(229, 227, 245, 0.9);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.circle-name.visible {
  opacity: 1;
}

.circle-descriptor {
  font-size: 0.875rem;
  color: rgba(156, 163, 175, 0.5);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.circle-descriptor.visible {
  opacity: 1;
}

.presence-dots {
  position: relative;
  width: 200px;
  height: 90px;
  margin-top: 1rem;
}

.presence-dot {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(107, 92, 231, 0);
  transition: background 0.6s ease;
}
.presence-dot.revealed {
  background: rgba(107, 92, 231, 0.2);
}
.presence-dot.active {
  background: rgba(107, 92, 231, 0.7);
}

.btn {
  display: inline-block;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
.btn:active {
  transform: translateY(0);
}
.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.btn-primary {
  background-color: #6b5ce7;
  color: white;
}
.btn-primary:hover {
  background-color: #5449c4;
}

.btn-secondary {
  background-color: #1a1833;
  color: #e5e3f5;
}
.btn-secondary:hover {
  background-color: #3d3a60;
}

.btn-danger {
  background-color: #ef4444;
  color: white;
}

.btn-ghost {
  background: transparent;
  border: 1px solid #3d3a60;
  color: #e5e3f5;
}
.btn-ghost:hover {
  background: #1a1833;
  border-color: #6b5ce7;
}

.btn-quiet {
  background: transparent;
  border: none;
  color: #9ca3af;
  font-size: 0.875rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  text-decoration: none;
  display: inline-block;
}
.btn-quiet:hover {
  color: #e5e3f5;
  text-decoration: none;
}

.btn-sm {
  padding: 0.25rem 1rem;
  font-size: 0.875rem;
}

.card {
  background: #13121f;
  border: 1px solid #2a2845;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.2s ease;
}
.card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  border-color: #3d3a60;
  transform: translateY(-2px);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #e5e3f5;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: #9ca3af;
  margin-top: 1rem;
}

.input,
.textarea {
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-family: system-ui, -apple-system, sans-serif;
  background: #1a1833;
  border: 1px solid #3d3a60;
  border-radius: 6px;
  color: #e5e3f5;
  caret-color: #6b5ce7;
  transition: all 0.2s;
}
.input:focus,
.textarea:focus {
  outline: none;
  border-color: #6b5ce7;
  box-shadow: 0 0 0 3px rgba(107, 92, 231, 0.15);
}
.input::placeholder,
.textarea::placeholder {
  color: #9ca3af;
}

.textarea {
  min-height: 100px;
  resize: vertical;
}

.empty-state {
  color: #9ca3af;
  text-align: center;
  padding: 3rem 0;
}

.practice-setup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding-top: 3rem;
  text-align: center;
}

.practice-setup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.setup-field {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 320px;
}

.duration-presets {
  display: flex;
  gap: 0.5rem;
}

.duration-btn {
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid #3d3a60;
  border-radius: 20px;
  color: #9ca3af;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.15s;
}
.duration-btn:hover {
  border-color: #6b5ce7;
  color: #e5e3f5;
}
.duration-btn.active {
  background: #6b5ce7;
  border-color: #6b5ce7;
  color: white;
}

.custom-duration-input {
  width: 100%;
  padding: 0.5rem 1rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #e5e3f5;
  caret-color: #6b5ce7;
  font-size: 1rem;
  text-align: center;
  outline: none;
}
.custom-duration-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.15s;
}
.custom-duration-input:focus::placeholder {
  color: transparent;
}
.custom-duration-input:focus {
  border-bottom-color: #6b5ce7;
}
.custom-duration-input::-webkit-inner-spin-button, .custom-duration-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.practice-name-label {
  font-size: 0.875rem;
  color: #9ca3af;
}

.practice-name-input {
  width: 100%;
  max-width: 320px;
  padding: 1rem;
  font-size: 1.125rem;
  text-align: center;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #e5e3f5;
  caret-color: #6b5ce7;
  outline: none;
}
.practice-name-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.15s;
}
.practice-name-input:focus::placeholder {
  color: transparent;
}
.practice-name-input:focus {
  border-bottom-color: #6b5ce7;
}

.practice-label {
  position: absolute;
  top: 3rem;
  left: 0;
  right: 0;
  font-size: 1rem;
  color: #9ca3af;
  text-align: center;
}

.timer-complete-label {
  font-size: 0.875rem;
  color: #9ca3af;
  margin-bottom: -1rem;
  animation: fadeIn 0.4s ease;
}

.timer-icon-btn {
  background: transparent;
  border: none;
  color: white;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 1rem;
  opacity: 0.85;
  transition: opacity 0.15s;
}
.timer-icon-btn:hover {
  opacity: 1;
}

.timer-finish-controls {
  position: absolute;
  bottom: 3rem;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
  animation: fadeIn 0.2s ease;
}

.btn-finish {
  width: 100%;
  padding: 1rem 1.5rem;
  background: white;
  color: #111;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.15s;
}
.btn-finish:hover {
  opacity: 0.9;
}

.timer {
  font-size: clamp(4rem, 20vw, 8rem);
  font-weight: 200;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  color: #e5e3f5;
  line-height: 1;
}

.note-label {
  font-size: 1rem;
  color: #e5e3f5;
  align-self: flex-start;
}

.note-optional {
  color: #9ca3af;
  font-size: 0.875rem;
}

.note-input {
  width: 100%;
  max-width: 560px;
  min-height: 140px;
  padding: 1rem;
  background: #1a1833;
  border: 1px solid #3d3a60;
  border-radius: 8px;
  color: #e5e3f5;
  caret-color: #6b5ce7;
  font-size: 1rem;
  font-family: system-ui, -apple-system, sans-serif;
  resize: none;
  outline: none;
}
.note-input::placeholder {
  color: #9ca3af;
}
.note-input:focus {
  border-color: #6b5ce7;
}

.timer-modal {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.sound-toggle {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0.35;
  padding: 0.5rem;
  line-height: 1;
  transition: opacity 0.15s;
  z-index: 1;
}
.sound-toggle:hover {
  opacity: 0.75;
}

#timer-view {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.note-view {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 560px;
  padding: 0 2rem;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.proto-toggle {
  position: fixed;
  top: 18px;
  right: 1.5rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 1rem;
  border: 1px dashed rgba(156, 163, 175, 0.2);
  border-radius: 6px;
}

.proto-label {
  font-size: 0.875rem;
  color: rgba(156, 163, 175, 0.3);
  letter-spacing: 0.05em;
}

.proto-btn {
  background: transparent;
  border: none;
  font-size: 0.875rem;
  color: rgba(156, 163, 175, 0.4);
  cursor: pointer;
  padding: 0;
}
.proto-btn strong {
  color: rgba(156, 163, 175, 0.7);
}
.proto-btn:hover {
  color: #9ca3af;
}

.circle-page {
  max-width: 560px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.section-sublabel {
  font-size: 0.875rem;
  color: rgba(156, 163, 175, 0.4);
  margin-top: 0.25rem;
  margin-bottom: 1rem;
}

.circle-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.circle-tabs {
  display: flex;
  gap: 0.5rem;
}

.circle-tab {
  background: transparent;
  border: none;
  font-size: 1rem;
  color: rgba(156, 163, 175, 0.4);
  cursor: pointer;
  padding: 0 0 0.25rem;
  border-bottom: 2px solid transparent;
  transition: all 0.15s;
}
.circle-tab:hover {
  color: #9ca3af;
}
.circle-tab.active {
  color: #e5e3f5;
  border-bottom-color: #6b5ce7;
}

.section-label {
  font-size: 1rem;
  color: rgba(156, 163, 175, 0.5);
  letter-spacing: 0.03em;
}

.circle-row {
  border-bottom: 1px solid #2a2845;
}

.circle-row-main {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.circle-row-name {
  font-size: 1.125rem;
  color: #e5e3f5;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.unread-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(107, 92, 231, 0.55);
  flex-shrink: 0;
}

.unread-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(107, 92, 231, 0.55);
  flex-shrink: 0;
}

.circle-row-meta {
  font-size: 0.875rem;
  color: rgba(156, 163, 175, 0.5);
}

.compose-input {
  width: 100%;
  background: #1a1833;
  border: 1px solid #3d3a60;
  border-radius: 8px;
  color: #e5e3f5;
  caret-color: #6b5ce7;
  font-size: 1rem;
  font-family: system-ui, -apple-system, sans-serif;
  padding: 0.5rem 1rem;
  resize: none;
  outline: none;
}
.compose-input::placeholder {
  color: rgba(156, 163, 175, 0.4);
}
.compose-input:focus {
  border-color: #6b5ce7;
}

.compose-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.btn-send {
  background: #6b5ce7;
  border: none;
  border-radius: 20px;
  color: white;
  font-size: 0.875rem;
  padding: 0.25rem 1rem;
  cursor: pointer;
  transition: opacity 0.15s;
}
.btn-send:hover {
  opacity: 0.85;
}

.circle-row-main {
  cursor: pointer;
}
.circle-row-main:hover .circle-row-name {
  color: rgba(229, 227, 245, 0.8);
}

.circle-thread {
  padding-bottom: 1rem;
  animation: fadeIn 0.2s ease;
}

.thread-history {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.thread-msg {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 80%;
}
.thread-msg--me {
  align-self: flex-end;
  align-items: flex-end;
}
.thread-msg--them {
  align-self: flex-start;
}

.thread-msg-text,
.thread-locked-text {
  font-size: 1rem;
  border-radius: 12px;
  padding: 0.5rem 1rem;
  line-height: 1.5;
}

.thread-msg-text {
  color: #e5e3f5;
  background: #1a1833;
}
.thread-msg--me .thread-msg-text {
  background: rgba(107, 92, 231, 0.25);
}

.thread-locked-text {
  color: rgba(156, 163, 175, 0.35);
  background: rgba(26, 24, 51, 0.4);
  font-style: italic;
}

.thread-msg-meta {
  font-size: 0.75rem;
  color: rgba(156, 163, 175, 0.4);
  padding: 0 0.25rem;
}

.circle-invite {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2rem;
  align-items: center;
}

.circle-invite-label {
  font-size: 1rem;
  color: rgba(156, 163, 175, 0.5);
  letter-spacing: 0.03em;
}

.btn-invite {
  display: inline-block;
  background: transparent;
  border: 1px solid #3d3a60;
  border-radius: 20px;
  color: #9ca3af;
  font-size: 0.875rem;
  padding: 0.25rem 1rem;
  text-decoration: none;
  transition: all 0.15s;
}
.btn-invite:hover {
  border-color: #6b5ce7;
  color: #e5e3f5;
  text-decoration: none;
}

.sent-confirmation {
  font-size: 0.875rem;
  color: rgba(156, 163, 175, 0.6);
  padding-bottom: 1rem;
  animation: fadeIn 0.3s ease;
}

.note-waiting-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  background: rgba(107, 92, 231, 0.06);
  border: 1px solid rgba(107, 92, 231, 0.15);
  border-radius: 8px;
  margin-top: 1rem;
}

.note-waiting-meta {
  font-size: 0.875rem;
  color: rgba(156, 163, 175, 0.5);
}
.note-waiting-meta--icon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.note-waiting-meta--icon i {
  font-size: 1.1rem;
  opacity: 0.7;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 1.5rem;
  background-color: transparent;
  transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
}

.navbar.active {
  background-color: #0d0c1a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
  font-size: 1.3rem;
  font-weight: 600;
  color: #e5e3f5;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.navbar-brand:hover {
  text-decoration: none;
  opacity: 0.8;
}

.navbar-brand-icon {
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
}

.sidemenu-toggle {
  width: 24px;
  height: 18px;
  position: relative;
  padding: 10px;
  cursor: pointer;
  z-index: 2000;
  flex-shrink: 0;
  transition: 0.5s ease-in-out;
}
.sidemenu-toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 24px;
  background: #e5e3f5;
  border-radius: 1px;
  left: 0;
  transition: 0.25s ease-in-out;
}
.sidemenu-toggle span:nth-child(1) {
  top: 0;
  width: 85%;
}
.sidemenu-toggle span:nth-child(2) {
  top: 8px;
}
.sidemenu-toggle span:nth-child(3) {
  top: 16px;
  width: 65%;
}
.sidemenu-toggle.open span:nth-child(1) {
  top: 8px;
  width: 28px;
  height: 4px;
  transform: rotate(135deg);
}
.sidemenu-toggle.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.sidemenu-toggle.open span:nth-child(3) {
  top: 8px;
  width: 28px;
  height: 4px;
  transform: rotate(-135deg);
}

.sidemenu-main {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.sidemenu-open {
  overflow-y: hidden;
}
.sidemenu-open .sidemenu-main {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.sidemenu-close {
  position: absolute;
  top: 0.65rem;
  left: 0.85rem;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.85;
}
.sidemenu-close:hover {
  opacity: 1;
}
.sidemenu-close span {
  display: block;
  position: absolute;
  height: 4px;
  width: 28px;
  background: #c8c5e8;
  border-radius: 1px;
  left: 8px;
  transition: 0.25s ease-in-out;
}
.sidemenu-close span:nth-child(1) {
  top: 20px;
  transform: rotate(135deg);
}
.sidemenu-close span:nth-child(2) {
  top: 20px;
  opacity: 0;
}
.sidemenu-close span:nth-child(3) {
  top: 20px;
  transform: rotate(-135deg);
}

.sidemenu-left {
  position: relative;
  z-index: 1001;
  height: 100vh;
  width: 100%;
  max-width: 600px;
  padding: 0 2rem;
  background: #1a1735;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.sidemenu-left ul {
  list-style: none;
  padding-top: 8vh;
  margin-top: 1rem;
  padding-bottom: 3vh;
  flex-grow: 1;
}
.sidemenu-left ul li {
  padding: 0.5rem 0;
  margin: 0;
}
.sidemenu-left ul li h3 {
  padding: 0;
  margin: 0;
  font-size: 2rem;
}
.sidemenu-left ul li h3 a {
  text-decoration: none;
  color: #c8c5e8;
  transition: opacity 0.2s;
}
.sidemenu-left ul li h3 a:hover {
  opacity: 0.8;
}
.sidemenu-left footer {
  padding: 2rem 0;
}

.sidemenu-right {
  position: fixed;
  width: 100%;
  height: 100vh;
  right: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 900;
}

@media (max-width: 768px) {
  .sidemenu-left {
    max-width: 100%;
  }
  .sidemenu-right {
    display: none;
  }
}
@media (min-width: 769px) {
  .sidemenu-left {
    max-width: 40%;
  }
}