/* ============================================================
   RESET & BASE STYLES
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Lexend', 'Inter', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text-1);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button, input, select, textarea {
  font-family: inherit;
}

/* ============================================================
   DESIGN TOKENS — GRAPHIC DESIGNER DARK THEME
============================================================ */
:root {
  --bg:        #06060a;
  --bg-1:      #0c0c12;
  --bg-2:      #111119;
  --bg-3:      #161622;
  --border:    rgba(255,255,255,0.07);
  --border-md: rgba(255,255,255,0.13);
  --border-lg: rgba(255,255,255,0.22);
  
  --text-1:    #f8fafc;
  --text-2:    #94a3b8;
  --text-3:    #64748b;
  
  --cyan:      #38bdf8;
  --teal:      #14b8a6;
  --teal-2:    #2dd4bf;
  --purple:    #a855f7;
  --pink:      #ec4899;
  --orange:    #f97316;
  --orange-2:  #fb923c;
  --terracotta: #c84b24;
  
  --grad-primary: linear-gradient(135deg, #f97316 0%, #a855f7 50%, #38bdf8 100%);
  --grad-text:    linear-gradient(135deg, #fb923c 0%, #f472b6 50%, #38bdf8 100%);
  --grad-accent:  linear-gradient(135deg, #c84b24 0%, #e0713a 50%, #f0a060 100%);
  
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  
  --shadow-sm: 0 4px 20px rgba(0,0,0,0.3);
  --shadow-lg: 0 30px 80px rgba(0,0,0,0.6);
}

/* Background noise */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   PILLS & BADGES
============================================================ */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid var(--border-md);
  background: rgba(255,255,255,0.04);
  color: var(--text-2);
  margin-bottom: 18px;
}

.pill-glow {
  border-color: rgba(56, 189, 248, 0.35);
  color: var(--cyan);
  background: rgba(56, 189, 248, 0.08);
}

.pill-purple {
  border-color: rgba(168, 85, 247, 0.35);
  color: #c084fc;
  background: rgba(168, 85, 247, 0.08);
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
  user-select: none;
}

.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 4px 25px rgba(249,115,22,0.35);
}

.btn-primary:hover {
  box-shadow: 0 8px 35px rgba(168,85,247,0.5);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text-1);
  border: 1px solid var(--border-md);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--border-lg);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(18, 22, 16, 0.40);
  backdrop-filter: blur(28px) saturate(190%);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
  width: 100%;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 12, 10, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 68px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.4px;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-logo-badge {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 34px;
  max-width: 140px;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-links li {
  white-space: nowrap;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
  padding: 7px 14px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
  display: inline-block;
}

.nav-links a:hover {
  color: var(--text-1);
  background: rgba(255,255,255,0.06);
}

.nav-links a.active {
  color: var(--cyan);
  font-weight: 600;
}

.nav-hire-btn {
  color: #fff !important;
  background: var(--grad-primary) !important;
  border-radius: 100px !important;
  padding: 8px 18px !important;
  font-weight: 700 !important;
  margin-left: 8px;
}

.nav-admin-link {
  color: var(--text-3) !important;
  font-size: 12px !important;
  border: 1px dashed var(--border-md);
  border-radius: 6px !important;
  padding: 4px 8px !important;
  margin-left: 4px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-2);
  border-radius: 2px;
}

@media (max-width: 992px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(6,6,10,0.98);
    border-bottom: 1px solid var(--border);
    padding: 16px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: var(--radius); }
}

/* ============================================================
   HERO SECTION: SYLVA LIVING WORLD MASTER LAYOUT
============================================================ */
.hero-sylva-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 880px;
  overflow: hidden;
  background: #383b34;
}

.sylva-hero-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 460px;
  gap: 60px;
  align-items: center;
}

.hero-inner > * {
  pointer-events: auto;
}

.hero-inner .fade-up:first-child {
  background: rgba(30, 36, 28, 0.45);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 36px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.hero-title {
  font-size: clamp(38px, 5.2vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--text-1);
  margin-bottom: 22px;
}

.hero-title .accent {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 16.5px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-tools-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.tool-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-2);
  border: 1px solid var(--border-md);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
}

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

.hero-card {
  background: var(--bg-2);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--border), var(--shadow-lg);
  position: relative;
}

.hero-card-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

.hero-card-footer {
  padding: 24px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  text-align: center;
}

.hero-stat-num {
  font-size: 24px;
  font-weight: 900;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  font-size: 11px;
  color: var(--text-3);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ============================================================
   PORTFOLIO SECTION & PROJECT CARDS
============================================================ */
.portfolio-section {
  padding: 90px 0;
  position: relative;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--text-1);
}

.section-sub {
  font-size: 15px;
  color: var(--text-2);
  margin-top: 8px;
}

.filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.filter-btn {
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--text-2);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  border-color: var(--border-lg);
  color: var(--text-1);
}

.filter-btn.active {
  background: var(--grad-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(249,115,22,0.3);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 28px;
}

@media (max-width: 768px) {
  .projects-grid { grid-template-columns: 1fr; }
}

.project-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
}

.project-card:hover {
  border-color: var(--border-lg);
  transform: translateY(-6px);
  box-shadow: 0 25px 70px rgba(0,0,0,0.6);
}

.project-thumbnail-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-1);
}

.project-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card:hover .project-thumbnail {
  transform: scale(1.05);
}

.project-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.project-cat-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cyan);
}

.project-year {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 600;
}

.project-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-1);
  line-height: 1.35;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.project-summary {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}

.project-tools {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.tool-chip {
  font-size: 11px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: 6px;
  color: var(--text-3);
  font-weight: 600;
}

/* ============================================================
   PROJECT MODAL (CASE STUDY & LIGHTBOX)
============================================================ */
.project-modal {
  position: fixed;
  inset: 0;
  background: rgba(6, 6, 10, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.project-modal.active {
  display: flex;
  opacity: 1;
}

.project-modal-box {
  background: var(--bg-2);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 1100px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.85);
  transform: translateY(16px) scale(0.97);
  transition: transform 0.25s ease;
}

.project-modal.active .project-modal-box {
  transform: translateY(0) scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
}

.modal-body-scroll {
  padding: 28px;
  overflow-y: auto;
}

.modal-gallery-main {
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 24px;
  display: block;
  object-fit: contain;
}

.palette-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 24px;
}

.color-swatch {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border-md);
  cursor: pointer;
  transition: transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.color-swatch:hover {
  transform: scale(1.1);
}

/* ============================================================
   BLOG SECTION & POST CARDS
============================================================ */
.blog-section {
  padding: 90px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.blog-card:hover {
  border-color: var(--border-lg);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.blog-banner {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
}

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 12px;
}

.blog-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-1);
  line-height: 1.4;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.blog-summary {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}

.blog-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.blog-tag-pill {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 100px;
  background: rgba(56,189,248,0.08);
  border: 1px solid rgba(56,189,248,0.2);
  color: var(--cyan);
}

/* ============================================================
   SINGLE POST READER PAGE
============================================================ */
.post-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 24px 100px;
}

.post-header {
  margin-bottom: 36px;
}

.post-title {
  font-size: clamp(32px, 4.5vw, 50px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--text-1);
  margin-bottom: 18px;
}

.post-content {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-2);
}

.post-content h2, .post-content h3 {
  color: var(--text-1);
  margin: 36px 0 16px;
  letter-spacing: -0.5px;
}

.post-content blockquote {
  border-left: 4px solid var(--cyan);
  padding: 16px 20px;
  background: rgba(56,189,248,0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
  color: var(--text-1);
  font-style: italic;
}

/* ============================================================
   CONTACT SECTION
============================================================ */
.contact-section {
  padding: 90px 0;
  position: relative;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

@media (max-width: 860px) {
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
}

.contact-form {
  background: var(--bg-2);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-3);
  border: 1px solid var(--border-md);
  border-radius: 10px;
  color: var(--text-1);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.form-control:focus {
  border-color: var(--cyan);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* ============================================================
   ADMIN DASHBOARD
============================================================ */
.admin-wrap {
  padding: 40px 0 90px;
}

.admin-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}

.admin-tab-btn {
  background: none;
  border: none;
  color: var(--text-3);
  font-size: 15px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.admin-tab-btn.active {
  background: var(--bg-2);
  color: var(--cyan);
  border: 1px solid var(--border-md);
}

.admin-card {
  background: var(--bg-2);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.admin-table th, .admin-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}

.admin-table th {
  color: var(--text-3);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-3);
  flex-wrap: wrap;
  gap: 12px;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   AUTHENTICATION & SECURITY UI
============================================================ */
.auth-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 29, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.auth-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.auth-card {
  width: 100%;
  max-width: 440px;
  background: rgba(18, 26, 47, 0.95);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(56, 189, 248, 0.15);
  position: relative;
  animation: authCardPop 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes authCardPop {
  0% { transform: scale(0.92) translateY(20px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

.auth-header {
  text-align: center;
  margin-bottom: 28px;
}

.auth-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(168, 85, 247, 0.2));
  border: 1px solid rgba(56, 189, 248, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.25);
}

.auth-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-1);
  margin-bottom: 6px;
}

.auth-sub {
  font-size: 13.5px;
  color: var(--text-3);
  line-height: 1.5;
}

.auth-pass-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.auth-pass-wrap .form-control {
  padding-right: 42px;
}

.auth-toggle-pass {
  position: absolute;
  right: 12px;
  background: transparent;
  border: none;
  color: var(--text-3);
  cursor: pointer;
  padding: 4px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.auth-toggle-pass:hover {
  color: var(--cyan);
}

.auth-error-box {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  color: #f87171;
  margin-bottom: 18px;
  display: none;
  align-items: center;
  gap: 8px;
}

.auth-error-box.show {
  display: flex;
}

.nav-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.nav-user-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--cyan);
}

.nav-user-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
}

.btn-auth-action {
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

