@import "https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:wght@400;500;600;700&family=DM+Mono:wght@400;500&display=swap";
/* [project]/src/styles/globals.scss.css [app-client] (css) */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .7;
  }
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 20px #8b5cf640;
  }

  50% {
    box-shadow: 0 0 35px #8b5cf640, 0 0 50px #8b5cf61a;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }

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

:root {
  --bg-deep: #0a0f1a;
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-card: #1a1f2e;
  --bg-card-hover: #232938;
  --bg-elevated: #2a3142;
  --text-primary: #f8fafc;
  --text-secondary: #f8fafccc;
  --text-muted: #f8fafc99;
  --text-dim: #f8fafc66;
  --accent-primary: #8b5cf6;
  --accent-primary-light: #a78bfa;
  --accent-glow: #8b5cf640;
  --accent-bg: #8b5cf61f;
  --accent-border: #8b5cf633;
  --skill-writing: #10b981;
  --skill-speaking: #a855f7;
  --skill-reading: #06b6d4;
  --skill-listening: #f59e0b;
  --success: #22c55e;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: #06b6d4;
  --border-subtle: #ffffff0d;
  --border-default: #ffffff14;
  --border-hover: #ffffff1f;
  --font-display: Space Grotesk, system-ui, sans-serif;
  --font-body: DM Sans, system-ui, sans-serif;
  --font-mono: DM Mono, ui-monospace, monospace;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 2px #0000004d;
  --shadow-md: 0 4px 12px #00000040;
  --shadow-lg: 0 12px 32px #00000059;
  --shadow-glow: 0 8px 24px #8b5cf640;
}

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

html {
  height: 100%;
}

body {
  background-color: var(--bg-deep, #0a0f1a);
  color: var(--text-primary, #f8fafc);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  flex-direction: column;
  min-height: 100%;
  font-family: DM Sans, system-ui, sans-serif;
  line-height: 1.5;
  display: flex;
}

:root {
  --bg-deep: #0a0f1a;
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-card: #1a1f2e;
  --bg-card-hover: #232938;
  --bg-elevated: #2a3142;
  --text-primary: #f8fafc;
  --text-secondary: #f8fafccc;
  --text-muted: #f8fafc99;
  --text-dim: #f8fafc66;
  --border-subtle: #ffffff0d;
  --border-default: #ffffff14;
  --border-hover: #ffffff1f;
  --glass-bg: #ffffff08;
  --glass-bg-hover: #ffffff0f;
  --glass-strong: #ffffff14;
  --shadow-card: 0 4px 16px #0000004d;
  --shadow-elevated: 0 8px 32px #0006;
  --accent-primary: #8b5cf6;
  --accent-primary-light: #a78bfa;
  --accent-bg: #8b5cf61f;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: -.02em;
  color: #f8fafc;
  font-family: Space Grotesk, system-ui, sans-serif;
  font-weight: 700;
}

h1 {
  font-size: 2rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: 1.5rem;
  line-height: 1.25;
}

@media (min-width: 768px) {
  h2 {
    font-size: 1.75rem;
  }
}

h3 {
  font-size: 1.25rem;
  line-height: 1.3;
}

h4 {
  font-size: 1.1rem;
}

p {
  color: #f8fafccc;
  line-height: 1.6;
}

a {
  color: #a78bfa;
  text-decoration: none;
  transition: color .2s cubic-bezier(.4, 0, .2, 1);
}

a:hover {
  color: #c4b5fd;
}

.min-h-screen {
  min-height: 100vh;
}

.h-screen {
  height: 100vh;
}

.h-full {
  height: 100%;
}

.w-full {
  width: 100%;
}

.flex {
  display: flex;
}

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

.flex-row {
  flex-direction: row;
}

.flex-1 {
  flex: 1;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

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

.grid {
  display: grid;
}

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

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

.gap-1 {
  gap: .25rem;
}

.gap-2 {
  gap: .5rem;
}

.gap-3 {
  gap: .75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.space-y-1 > * + * {
  margin-top: .25rem;
}

.space-y-2 > * + * {
  margin-top: .5rem;
}

.space-y-3 > * + * {
  margin-top: .75rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-y-5 > * + * {
  margin-top: 1.25rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.space-y-7 > * + * {
  margin-top: 1.75rem;
}

.space-y-8 > * + * {
  margin-top: 2rem;
}

.p-1 {
  padding: .25rem;
}

.p-2 {
  padding: .5rem;
}

.p-3 {
  padding: .75rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.px-2 {
  padding-left: .5rem;
  padding-right: .5rem;
}

.px-3 {
  padding-left: .75rem;
  padding-right: .75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-1 {
  padding-top: .25rem;
  padding-bottom: .25rem;
}

.py-2 {
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.py-3 {
  padding-top: .75rem;
  padding-bottom: .75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.m-0 {
  margin: 0;
}

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

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

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

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

.mb-0 {
  margin-bottom: 0;
}

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

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

.mb-3 {
  margin-bottom: .75rem;
}

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

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.rounded {
  border-radius: 8px;
}

.rounded-lg {
  border-radius: 12px;
}

.rounded-xl {
  border-radius: 16px;
}

.rounded-2xl {
  border-radius: 20px;
}

.rounded-full {
  border-radius: 9999px;
}

.text-xs {
  font-size: .75rem;
  line-height: 1rem;
}

.text-sm {
  font-size: .875rem;
  line-height: 1.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

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

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

.text-right {
  text-align: right;
}

.uppercase {
  text-transform: uppercase;
}

.tracking-tight {
  letter-spacing: -.025em;
}

.tracking-wide {
  letter-spacing: .1em;
}

.leading-relaxed {
  line-height: 1.625;
}

.text-primary {
  color: #f8fafc;
}

.text-secondary {
  color: #f8fafccc;
}

.text-muted {
  color: #f8fafc99;
}

.text-dim {
  color: #f8fafc66;
}

.text-accent {
  color: #a78bfa;
}

.text-success {
  color: #22c55e;
}

.text-warning {
  color: #f59e0b;
}

.text-error {
  color: #ef4444;
}

.bg-primary {
  background-color: #0f172a;
}

.bg-secondary {
  background-color: #1e293b;
}

.bg-card {
  background-color: #1a1f2e;
}

.bg-elevated {
  background-color: #2a3142;
}

.transition-all {
  transition: all .2s cubic-bezier(.4, 0, .2, 1);
}

.transition-colors {
  transition: color .2s cubic-bezier(.4, 0, .2, 1), background-color .2s cubic-bezier(.4, 0, .2, 1), border-color .2s cubic-bezier(.4, 0, .2, 1);
}

.transition-transform {
  transition: transform .2s cubic-bezier(.4, 0, .2, 1);
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.inset-0 {
  inset: 0;
}

.z-0 {
  z-index: 0;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-50 {
  z-index: 50;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-y-auto {
  overflow-y: auto;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.opacity-0 {
  opacity: 0;
}

.opacity-50 {
  opacity: .5;
}

.opacity-75 {
  opacity: .75;
}

.opacity-100 {
  opacity: 1;
}

.shrink-0 {
  flex-shrink: 0;
}

.outline-none {
  outline: none;
}

.resize-none {
  resize: none;
}

.select-none {
  -webkit-user-select: none;
  user-select: none;
}

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

@media (min-width: 768px) {
  .md\:flex-row {
    flex-direction: row;
  }

  .md\:hidden {
    display: none;
  }

  .md\:block {
    display: block;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .md\:p-8 {
    padding: 2rem;
  }

  .md\:text-left {
    text-align: left;
  }
}

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

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.btn-primary {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  border: none;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.5rem;
  font-family: Space Grotesk, system-ui, sans-serif;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .4s cubic-bezier(.34, 1.56, .64, 1);
  display: inline-flex;
  box-shadow: 0 8px 24px #8b5cf640;
}

.btn-primary:hover {
  transform: translateY(-3px)scale(1.02);
  box-shadow: 0 12px 36px #8b5cf659;
}

.btn-primary:active {
  transform: translateY(0)scale(.98);
}

.btn-ghost {
  color: #f8fafc99;
  cursor: pointer;
  background: #ffffff0d;
  border: 1px solid #ffffff14;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.25rem;
  font-family: DM Sans, system-ui, sans-serif;
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
  display: inline-flex;
}

.btn-ghost:hover {
  color: #f8fafc;
  background: #ffffff1a;
  border-color: #ffffff1f;
}

.card {
  background: #1a1f2e;
  border: 1px solid #ffffff14;
  border-radius: 16px;
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
}

.card:hover {
  background: #232938;
  border-color: #ffffff1f;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px #00000059;
}

.card {
  padding: 1.25rem;
}

.badge {
  color: #8b5cf6;
  letter-spacing: .02em;
  background: #8b5cf61f;
  border: 1px solid #8b5cf640;
  border-radius: 9999px;
  align-items: center;
  gap: .4rem;
  padding: .4rem .8rem;
  font-family: DM Sans, system-ui, sans-serif;
  font-size: .7rem;
  font-weight: 600;
  display: inline-flex;
}

.badge-success {
  color: #22c55e;
  letter-spacing: .02em;
  background: #22c55e1f;
  border: 1px solid #22c55e40;
  border-radius: 9999px;
  align-items: center;
  gap: .4rem;
  padding: .4rem .8rem;
  font-family: DM Sans, system-ui, sans-serif;
  font-size: .7rem;
  font-weight: 600;
  display: inline-flex;
}

.badge-warning {
  color: #f59e0b;
  letter-spacing: .02em;
  background: #f59e0b1f;
  border: 1px solid #f59e0b40;
  border-radius: 9999px;
  align-items: center;
  gap: .4rem;
  padding: .4rem .8rem;
  font-family: DM Sans, system-ui, sans-serif;
  font-size: .7rem;
  font-weight: 600;
  display: inline-flex;
}

.input {
  color: #f8fafc;
  background: #1e293b;
  border: 1px solid #ffffff14;
  border-radius: 12px;
  width: 100%;
  padding: .85rem 1rem;
  font-family: DM Sans, system-ui, sans-serif;
  font-size: .95rem;
  transition: all .2s cubic-bezier(.4, 0, .2, 1);
}

.input::placeholder {
  color: #f8fafc66;
}

.input:focus {
  border-color: #8b5cf6;
  outline: none;
  box-shadow: 0 0 0 3px #8b5cf61f;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #1e293b;
}

::-webkit-scrollbar-thumb {
  background: #2a3142;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #fff3;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #2a3142 #1e293b;
}

:focus-visible {
  outline-offset: 2px;
  outline: 2px solid #8b5cf6;
}

button:focus, a:focus, input:focus, select:focus, textarea:focus {
  outline: none;
}

button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline-offset: 2px;
  outline: 2px solid #8b5cf6;
}

::selection {
  color: #fff;
  background: #8b5cf6;
}

/* [project]/src/styles/Logo.module.scss.module.css [app-client] (css) */
@keyframes Logo-module-scss-module__NO2gnq__fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes Logo-module-scss-module__NO2gnq__fadeInScale {
  from {
    opacity: 0;
    transform: scale(.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes Logo-module-scss-module__NO2gnq__pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .7;
  }
}

@keyframes Logo-module-scss-module__NO2gnq__glowPulse {
  0%, 100% {
    box-shadow: 0 0 20px #8b5cf640;
  }

  50% {
    box-shadow: 0 0 35px #8b5cf640, 0 0 50px #8b5cf61a;
  }
}

@keyframes Logo-module-scss-module__NO2gnq__slideIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }

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

:root {
  --bg-deep: #0a0f1a;
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-card: #1a1f2e;
  --bg-card-hover: #232938;
  --bg-elevated: #2a3142;
  --text-primary: #f8fafc;
  --text-secondary: #f8fafccc;
  --text-muted: #f8fafc99;
  --text-dim: #f8fafc66;
  --accent-primary: #8b5cf6;
  --accent-primary-light: #a78bfa;
  --accent-glow: #8b5cf640;
  --accent-bg: #8b5cf61f;
  --accent-border: #8b5cf633;
  --skill-writing: #10b981;
  --skill-speaking: #a855f7;
  --skill-reading: #06b6d4;
  --skill-listening: #f59e0b;
  --success: #22c55e;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: #06b6d4;
  --border-subtle: #ffffff0d;
  --border-default: #ffffff14;
  --border-hover: #ffffff1f;
  --font-display: Space Grotesk, system-ui, sans-serif;
  --font-body: DM Sans, system-ui, sans-serif;
  --font-mono: DM Mono, ui-monospace, monospace;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 2px #0000004d;
  --shadow-md: 0 4px 12px #00000040;
  --shadow-lg: 0 12px 32px #00000059;
  --shadow-glow: 0 8px 24px #8b5cf640;
}

.Logo-module-scss-module__NO2gnq__logoContainer {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.Logo-module-scss-module__NO2gnq__logoSvg {
  width: 100%;
  height: 100%;
  transition: all .3s;
}

.Logo-module-scss-module__NO2gnq__logoSvg:hover {
  transform: scale(1.1);
}

.Logo-module-scss-module__NO2gnq__logoSvg:hover .Logo-module-scss-module__NO2gnq__book {
  filter: url("#glow") brightness(1.3);
}

.Logo-module-scss-module__NO2gnq__book {
  transform-origin: center;
  transition: filter .3s;
}

.Logo-module-scss-module__NO2gnq__leftPage {
  transform-origin: 100%;
  animation: 4s ease-in-out infinite Logo-module-scss-module__NO2gnq__page-float-left;
}

.Logo-module-scss-module__NO2gnq__rightPage {
  transform-origin: 0;
  animation: 4s ease-in-out .5s infinite Logo-module-scss-module__NO2gnq__page-float-right;
}

@keyframes Logo-module-scss-module__NO2gnq__page-float-left {
  0%, 100% {
    transform: rotateY(0);
  }

  50% {
    transform: rotateY(-3deg);
  }
}

@keyframes Logo-module-scss-module__NO2gnq__page-float-right {
  0%, 100% {
    transform: rotateY(0);
  }

  50% {
    transform: rotateY(3deg);
  }
}

.Logo-module-scss-module__NO2gnq__spine {
  animation: 3s ease-in-out infinite Logo-module-scss-module__NO2gnq__spine-glow;
}

@keyframes Logo-module-scss-module__NO2gnq__spine-glow {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .7;
  }
}

.Logo-module-scss-module__NO2gnq__line1 {
  animation: 3s ease-in-out infinite Logo-module-scss-module__NO2gnq__line-appear;
}

.Logo-module-scss-module__NO2gnq__line2 {
  animation: 3s ease-in-out .3s infinite Logo-module-scss-module__NO2gnq__line-appear;
}

.Logo-module-scss-module__NO2gnq__line3 {
  animation: 3s ease-in-out .6s infinite Logo-module-scss-module__NO2gnq__line-appear;
}

@keyframes Logo-module-scss-module__NO2gnq__line-appear {
  0%, 100% {
    opacity: .5;
  }

  50% {
    opacity: .8;
  }
}

.Logo-module-scss-module__NO2gnq__spark1 {
  transform-origin: center;
  animation: 1.5s ease-in-out infinite Logo-module-scss-module__NO2gnq__twinkle;
}

.Logo-module-scss-module__NO2gnq__spark2 {
  transform-origin: center;
  animation: 1.5s ease-in-out .5s infinite Logo-module-scss-module__NO2gnq__twinkle;
}

.Logo-module-scss-module__NO2gnq__spark3 {
  transform-origin: center;
  animation: 1.5s ease-in-out 1s infinite Logo-module-scss-module__NO2gnq__twinkle;
}

@keyframes Logo-module-scss-module__NO2gnq__twinkle {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .4;
    transform: scale(.7);
  }
}

.Logo-module-scss-module__NO2gnq__particle1 {
  animation: 3s ease-in-out infinite Logo-module-scss-module__NO2gnq__float-particle;
}

.Logo-module-scss-module__NO2gnq__particle2 {
  animation: 3s ease-in-out 1s infinite Logo-module-scss-module__NO2gnq__float-particle;
}

.Logo-module-scss-module__NO2gnq__particle3 {
  animation: 3s ease-in-out 2s infinite Logo-module-scss-module__NO2gnq__float-particle;
}

@keyframes Logo-module-scss-module__NO2gnq__float-particle {
  0%, 100% {
    opacity: .6;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-4px);
  }
}

/* [project]/src/styles/Layout.module.scss.module.css [app-client] (css) */
.Layout-module-scss-module__YPfFYW__header {
  color: #f8fafc;
  z-index: 30;
  background: #0f1419;
  border-bottom: 1px solid #ffffff14;
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.Layout-module-scss-module__YPfFYW__headerContent {
  justify-content: space-between;
  align-items: center;
  max-width: 1600px;
  height: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
}

@media (min-width: 768px) {
  .Layout-module-scss-module__YPfFYW__headerContent {
    padding: 0 2rem;
  }
}

.Layout-module-scss-module__YPfFYW__headerLogo {
  align-items: center;
  display: flex;
}

.Layout-module-scss-module__YPfFYW__logoLink {
  color: #f8fafc;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  transition: opacity .2s;
  display: flex;
}

.Layout-module-scss-module__YPfFYW__logoLink:hover {
  opacity: .85;
}

.Layout-module-scss-module__YPfFYW__logoIcon {
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  font-size: 1.25rem;
  display: flex;
}

.Layout-module-scss-module__YPfFYW__logoTextWrapper {
  flex-direction: column;
  display: flex;
}

.Layout-module-scss-module__YPfFYW__logoText {
  letter-spacing: -.02em;
  color: #f8fafc;
  font-family: DM Sans, system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
}

.Layout-module-scss-module__YPfFYW__logoAI {
  background: linear-gradient(135deg, #a78bfa 0%, #c4b5fd 50%, #a78bfa 100%) 0 0 / 200%;
  -webkit-text-fill-color: #0000;
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 900;
  animation: 3s linear infinite Layout-module-scss-module__YPfFYW__shimmer-ai;
}

@keyframes Layout-module-scss-module__YPfFYW__shimmer-ai {
  0% {
    background-position: 200%;
  }

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

.Layout-module-scss-module__YPfFYW__logoSubtext {
  color: #f8fafc66;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-family: DM Sans, system-ui, sans-serif;
  font-size: .6rem;
  font-weight: 600;
  display: none;
}

@media (min-width: 768px) {
  .Layout-module-scss-module__YPfFYW__logoSubtext {
    display: block;
  }
}

.Layout-module-scss-module__YPfFYW__headerNav {
  align-items: center;
  gap: .25rem;
  display: none;
}

@media (min-width: 768px) {
  .Layout-module-scss-module__YPfFYW__headerNav {
    display: flex;
  }
}

.Layout-module-scss-module__YPfFYW__headerNavLink {
  color: #f8fafc99;
  border-radius: 10px;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1rem;
  font-family: DM Sans, system-ui, sans-serif;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s cubic-bezier(.4, 0, .2, 1);
  display: flex;
}

.Layout-module-scss-module__YPfFYW__headerNavLink:hover {
  color: #f8fafc;
  background: #ffffff0d;
}

.Layout-module-scss-module__YPfFYW__headerNavLink svg {
  transition: transform .2s cubic-bezier(.34, 1.56, .64, 1);
}

.Layout-module-scss-module__YPfFYW__headerNavLink:hover svg {
  transform: scale(1.15);
}

.Layout-module-scss-module__YPfFYW__headerNavLinkActive {
  color: #a78bfa;
  background: #8b5cf626;
}

.Layout-module-scss-module__YPfFYW__headerNavLinkActive:hover {
  background: #8b5cf633;
}

.Layout-module-scss-module__YPfFYW__profileBtn {
  color: #f8fafc99;
  background: #ffffff14;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  margin-left: .5rem;
  transition: all .2s cubic-bezier(.34, 1.56, .64, 1);
  display: flex;
}

.Layout-module-scss-module__YPfFYW__profileBtn:hover {
  color: #fff;
  background: #8b5cf6;
  transform: scale(1.1);
}

.Layout-module-scss-module__YPfFYW__userMenu {
  margin-left: .5rem;
  position: relative;
}

.Layout-module-scss-module__YPfFYW__userMenuBtn {
  color: #f8fafc99;
  cursor: pointer;
  background: #ffffff0f;
  border: 1px solid #ffffff14;
  border-radius: 50px;
  align-items: center;
  gap: .5rem;
  padding: .35rem .75rem .35rem .35rem;
  transition: all .2s cubic-bezier(.4, 0, .2, 1);
  display: flex;
}

.Layout-module-scss-module__YPfFYW__userMenuBtn:hover {
  background: #ffffff1a;
  border-color: #ffffff26;
}

.Layout-module-scss-module__YPfFYW__userMenuBtn svg {
  transition: transform .2s cubic-bezier(.4, 0, .2, 1);
}

.Layout-module-scss-module__YPfFYW__userMenuBtn svg.Layout-module-scss-module__YPfFYW__rotated {
  transform: rotate(180deg);
}

.Layout-module-scss-module__YPfFYW__userAvatar {
  object-fit: cover;
  border-radius: 50%;
  width: 32px;
  height: 32px;
}

.Layout-module-scss-module__YPfFYW__userInitials {
  color: #fff;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-size: .8rem;
  font-weight: 600;
  display: flex;
}

.Layout-module-scss-module__YPfFYW__userDropdown {
  z-index: 100;
  background: #1a1f2e;
  border: 1px solid #ffffff1a;
  border-radius: 12px;
  min-width: 220px;
  animation: .15s cubic-bezier(.4, 0, .2, 1) Layout-module-scss-module__YPfFYW__dropdownFadeIn;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  overflow: hidden;
  box-shadow: 0 8px 32px #0006;
}

@keyframes Layout-module-scss-module__YPfFYW__dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

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

.Layout-module-scss-module__YPfFYW__userInfo {
  flex-direction: column;
  gap: .25rem;
  padding: 1rem;
  display: flex;
}

.Layout-module-scss-module__YPfFYW__userName {
  color: #f8fafc;
  font-family: Playfair Display, Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
}

.Layout-module-scss-module__YPfFYW__userEmail {
  color: #f8fafc66;
  font-size: .8rem;
}

.Layout-module-scss-module__YPfFYW__dropdownDivider {
  background: #ffffff14;
  height: 1px;
}

.Layout-module-scss-module__YPfFYW__dropdownItem {
  color: #f8fafc99;
  cursor: pointer;
  background: none;
  border: none;
  align-items: center;
  gap: .75rem;
  width: 100%;
  padding: .85rem 1rem;
  font-family: DM Sans, system-ui, sans-serif;
  font-size: .9rem;
  text-decoration: none;
  transition: all .15s cubic-bezier(.4, 0, .2, 1);
  display: flex;
}

.Layout-module-scss-module__YPfFYW__dropdownItem:hover {
  color: #a78bfa;
  background: #8b5cf61a;
}

.Layout-module-scss-module__YPfFYW__dropdownItem svg {
  flex-shrink: 0;
}

.Layout-module-scss-module__YPfFYW__loginBtn {
  color: #fff;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  border-radius: 8px;
  margin-left: .5rem;
  padding: .5rem 1rem;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s cubic-bezier(.34, 1.56, .64, 1);
}

.Layout-module-scss-module__YPfFYW__loginBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px #8b5cf666;
}

.Layout-module-scss-module__YPfFYW__container {
  background: #0a0f1a;
  flex-direction: column;
  flex: 1;
  min-height: 100vh;
  padding-top: 70px;
  display: flex;
}

@media (max-width: 767px) {
  .Layout-module-scss-module__YPfFYW__container {
    padding-bottom: 88px;
  }
}

@media (min-width: 768px) {
  .Layout-module-scss-module__YPfFYW__container {
    flex-direction: row;
  }
}

.Layout-module-scss-module__YPfFYW__mobileMenuToggle {
  z-index: 40;
  color: #f8fafc;
  cursor: pointer;
  background: #1a1f2e;
  border: 1px solid #ffffff14;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  padding: .625rem;
  transition: all .2s cubic-bezier(.34, 1.56, .64, 1);
  display: flex;
  position: fixed;
  top: 1rem;
  right: 1rem;
}

.Layout-module-scss-module__YPfFYW__mobileMenuToggle:hover {
  background: #8b5cf626;
  border-color: #8b5cf64d;
}

.Layout-module-scss-module__YPfFYW__mobileMenuToggle:active {
  transform: scale(.95);
}

@media (min-width: 768px) {
  .Layout-module-scss-module__YPfFYW__mobileMenuToggle {
    display: none;
  }
}

.Layout-module-scss-module__YPfFYW__sidebar {
  z-index: 20;
  color: #f8fafc;
  background: #1a1f2e;
  border-right: 1px solid #ffffff14;
  width: 280px;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  position: fixed;
  top: 70px;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
}

@media (min-width: 768px) {
  .Layout-module-scss-module__YPfFYW__sidebar {
    display: none;
  }
}

.Layout-module-scss-module__YPfFYW__sidebarOpen {
  transform: translateX(0);
}

@media (min-width: 768px) {
  .Layout-module-scss-module__YPfFYW__sidebarOpen {
    display: block;
  }
}

.Layout-module-scss-module__YPfFYW__sidebarHeader {
  border-bottom: 1px solid #ffffff14;
  padding: 1.5rem;
}

.Layout-module-scss-module__YPfFYW__sidebarTitle {
  color: #f8fafc;
  font-family: DM Sans, system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
}

.Layout-module-scss-module__YPfFYW__sidebarSubtitle {
  color: #f8fafc66;
  margin-top: .25rem;
  font-family: DM Sans, system-ui, sans-serif;
  font-size: .7rem;
}

.Layout-module-scss-module__YPfFYW__nav {
  padding: 1rem;
}

.Layout-module-scss-module__YPfFYW__nav > * + * {
  margin-top: .375rem;
}

.Layout-module-scss-module__YPfFYW__navLink {
  color: #f8fafc99;
  border-radius: 12px;
  align-items: center;
  gap: .875rem;
  padding: .9rem 1.1rem;
  font-family: DM Sans, system-ui, sans-serif;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s cubic-bezier(.4, 0, .2, 1);
  display: flex;
}

.Layout-module-scss-module__YPfFYW__navLink:hover {
  color: #f8fafc;
  background: #ffffff0d;
  transform: translateX(4px);
}

.Layout-module-scss-module__YPfFYW__navLink svg {
  transition: all .25s cubic-bezier(.34, 1.56, .64, 1);
}

.Layout-module-scss-module__YPfFYW__navLink:hover svg {
  transform: scale(1.15);
}

.Layout-module-scss-module__YPfFYW__navLinkActive {
  color: #a78bfa;
  background: #8b5cf626;
}

.Layout-module-scss-module__YPfFYW__navLinkActive svg {
  color: #a78bfa;
}

.Layout-module-scss-module__YPfFYW__main {
  flex-direction: column;
  flex: 1;
  min-height: calc(100vh - 70px);
  display: flex;
  overflow-y: auto;
}

.Layout-module-scss-module__YPfFYW__mainContent {
  flex-direction: column;
  flex: 1;
  display: flex;
}

.Layout-module-scss-module__YPfFYW__overlay {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 15;
  background: #0009;
  animation: .3s Layout-module-scss-module__YPfFYW__fadeIn;
  position: fixed;
  inset: 70px 0 0;
}

@media (min-width: 768px) {
  .Layout-module-scss-module__YPfFYW__overlay {
    display: none;
  }
}

@keyframes Layout-module-scss-module__YPfFYW__fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.Layout-module-scss-module__YPfFYW__themeToggle {
  cursor: pointer;
  background: none;
  border: 1px solid #ffffff14;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  margin-left: .5rem;
  font-size: 1.1rem;
  transition: all .2s cubic-bezier(.34, 1.56, .64, 1);
  display: flex;
}

.Layout-module-scss-module__YPfFYW__themeToggle:hover {
  background: #fbbf241f;
  border-color: #fbbf244d;
  transform: rotate(20deg);
}

/* [project]/src/styles/BottomNav.module.scss.module.css [app-client] (css) */
@keyframes BottomNav-module-scss-module__8pliIW__fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes BottomNav-module-scss-module__8pliIW__fadeInScale {
  from {
    opacity: 0;
    transform: scale(.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes BottomNav-module-scss-module__8pliIW__pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .7;
  }
}

@keyframes BottomNav-module-scss-module__8pliIW__glowPulse {
  0%, 100% {
    box-shadow: 0 0 20px #8b5cf640;
  }

  50% {
    box-shadow: 0 0 35px #8b5cf640, 0 0 50px #8b5cf61a;
  }
}

@keyframes BottomNav-module-scss-module__8pliIW__slideIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }

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

:root {
  --bg-deep: #0a0f1a;
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-card: #1a1f2e;
  --bg-card-hover: #232938;
  --bg-elevated: #2a3142;
  --text-primary: #f8fafc;
  --text-secondary: #f8fafccc;
  --text-muted: #f8fafc99;
  --text-dim: #f8fafc66;
  --accent-primary: #8b5cf6;
  --accent-primary-light: #a78bfa;
  --accent-glow: #8b5cf640;
  --accent-bg: #8b5cf61f;
  --accent-border: #8b5cf633;
  --skill-writing: #10b981;
  --skill-speaking: #a855f7;
  --skill-reading: #06b6d4;
  --skill-listening: #f59e0b;
  --success: #22c55e;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: #06b6d4;
  --border-subtle: #ffffff0d;
  --border-default: #ffffff14;
  --border-hover: #ffffff1f;
  --font-display: Space Grotesk, system-ui, sans-serif;
  --font-body: DM Sans, system-ui, sans-serif;
  --font-mono: DM Mono, ui-monospace, monospace;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 2px #0000004d;
  --shadow-md: 0 4px 12px #00000040;
  --shadow-lg: 0 12px 32px #00000059;
  --shadow-glow: 0 8px 24px #8b5cf640;
}

.BottomNav-module-scss-module__8pliIW__bottomNav {
  background: var(--bg-card);
  border-top: 1px solid var(--border-default);
  height: 80px;
  padding: 8px 16px;
  padding-bottom: env(safe-area-inset-bottom, 8px);
  z-index: 100;
  transition: background-color .3s, border-color .3s;
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

@media (max-width: 767px) {
  .BottomNav-module-scss-module__8pliIW__bottomNav {
    justify-content: space-around;
    align-items: flex-start;
    display: flex;
  }
}

.BottomNav-module-scss-module__8pliIW__navItem {
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  min-width: 64px;
  padding: 8px 16px;
  text-decoration: none;
  transition: all .4s cubic-bezier(.34, 1.56, .64, 1);
  display: flex;
}

.BottomNav-module-scss-module__8pliIW__navItem:active {
  transform: scale(.9);
}

.BottomNav-module-scss-module__8pliIW__iconWrapper {
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 32px;
  transition: all .4s cubic-bezier(.34, 1.56, .64, 1);
  display: flex;
  position: relative;
}

.BottomNav-module-scss-module__8pliIW__activeIndicator {
  background: var(--accent-bg);
  z-index: -1;
  border-radius: 12px;
  position: absolute;
  inset: 0;
}

.BottomNav-module-scss-module__8pliIW__label {
  letter-spacing: .02em;
  font-family: DM Sans, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  transition: all .2s cubic-bezier(.4, 0, .2, 1);
}

.BottomNav-module-scss-module__8pliIW__active {
  color: var(--accent-primary-light);
}

.BottomNav-module-scss-module__8pliIW__active .BottomNav-module-scss-module__8pliIW__iconWrapper {
  color: var(--accent-primary-light);
  transform: scale(1.1);
}

.BottomNav-module-scss-module__8pliIW__active .BottomNav-module-scss-module__8pliIW__label {
  color: var(--accent-primary-light);
  font-weight: 700;
}

.BottomNav-module-scss-module__8pliIW__active .BottomNav-module-scss-module__8pliIW__iconWrapper:after {
  content: "";
  background: var(--accent-primary);
  width: 4px;
  height: 4px;
  box-shadow: 0 0 8px var(--accent-primary);
  border-radius: 50%;
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
}

/*# sourceMappingURL=src_styles_5d961684._.css.map*/