:root {
  --bg: #080f1d;
  --bg-2: #0d1730;
  --panel: rgba(14, 22, 39, 0.86);
  --panel-2: rgba(11, 18, 33, 0.94);
  --panel-soft: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #eef3ff;
  --muted: #a7b4cf;
  --muted-2: #8f9cb6;
  --primary: #7f92ff;
  --primary-2: #a0afff;
  --teal: #44dbc5;
  --gold: #f0c978;
  --danger: #ff8181;
  --success: #5ce0b1;
  --shadow-xl: 0 34px 100px rgba(2, 7, 18, 0.42);
  --shadow-lg: 0 24px 64px rgba(2, 8, 20, 0.34);
  --shadow-md: 0 14px 36px rgba(2, 8, 20, 0.22);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --radius-xs: 10px;
  --max-width: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -0.012em;
  background:
    radial-gradient(circle at 12% 12%, rgba(127, 146, 255, 0.15), transparent 24%),
    radial-gradient(circle at 84% 8%, rgba(68, 219, 197, 0.12), transparent 22%),
    radial-gradient(circle at 85% 82%, rgba(240, 201, 120, 0.08), transparent 18%),
    linear-gradient(180deg, #06111f 0%, #0a1222 52%, #07101d 100%);
  overflow-x: hidden;
}

::selection {
  background: rgba(127, 146, 255, 0.34);
  color: #ffffff;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: #dce7ff;
  text-decoration: none;
  transition: color 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

a:hover {
  color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  color: #f8fbff;
  letter-spacing: -0.03em;
}

p,
ul,
ol {
  color: var(--muted);
}

strong {
  font-weight: 760;
}

main,
nav,
footer,
section,
.container {
  position: relative;
  z-index: 1;
}

.container {
  max-width: var(--max-width);
}

.site-shell {
  position: relative;
}

.site-aura,
.site-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.site-aura {
  z-index: 0;
  filter: blur(14px);
}

.site-aura-one {
  background:
    radial-gradient(circle at 18% 20%, rgba(127, 146, 255, 0.18), transparent 16%),
    radial-gradient(circle at 78% 18%, rgba(68, 219, 197, 0.14), transparent 17%);
}

.site-aura-two {
  background:
    radial-gradient(circle at 42% 2%, rgba(240, 201, 120, 0.06), transparent 15%),
    radial-gradient(circle at 78% 86%, rgba(127, 146, 255, 0.1), transparent 16%);
}

.site-grid {
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 90%);
}

.text-muted-soft,
.small-muted,
.form-label,
.form-check-label,
.section-subtitle,
.footer-tagline,
.footer-text,
.footer-bottom small:last-child,
.text-white-50 {
  color: var(--muted) !important;
}

.page-top-wrap {
  padding-top: 1rem !important;
}

.navbar-modern {
  top: 0;
  padding: 18px 0 0;
  background: transparent;
}

.navbar-shell {
  min-height: 78px;
  padding: 0.85rem 1rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(11, 18, 34, 0.9), rgba(8, 14, 26, 0.78));
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 48px rgba(3, 8, 19, 0.26);
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.navbar-modern.is-scrolled .navbar-shell {
  background: rgba(8, 14, 26, 0.94);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 58px rgba(3, 8, 19, 0.34);
}

.navbar-brand {
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 28px rgba(2, 7, 18, 0.22);
  flex-shrink: 0;
}

.brand-mark-svg {
  width: 30px;
  height: 30px;
}

.brand-copy {
  display: inline-flex;
  flex-direction: column;
  min-width: 0;
}

.brand-title {
  display: block;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.05;
}

.brand-motto {
  display: block;
  margin-top: 0.3rem;
  color: rgba(238, 243, 255, 0.72);
  font-size: 0.75rem;
  letter-spacing: 0.025em;
  font-weight: 650;
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 0.65rem 0.8rem;
  box-shadow: none !important;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(127, 146, 255, 0.2) !important;
}

.navbar-toggler-icon {
  filter: invert(1) brightness(1.4);
}

.nav-link {
  color: rgba(235, 241, 255, 0.78) !important;
  font-weight: 680;
  font-size: 0.93rem;
  padding: 0.72rem 0.92rem !important;
  border-radius: 999px;
  transition: color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.07);
}

.nav-link.active {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 6px 16px rgba(4, 9, 18, 0.12);
}

.dropdown-menu {
  padding: 0.5rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(11, 18, 34, 0.97);
  box-shadow: var(--shadow-md);
}

.dropdown-item {
  border-radius: 12px;
  color: #e5ecff;
  font-weight: 600;
  padding: 0.75rem 0.9rem;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
}

.nav-cta-group .btn,
.btn {
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.btn-brand {
  color: #07111e;
  background: linear-gradient(135deg, #dfe8ff, #8ab9ff 44%, #4fe0cb 100%);
  border: 0;
  box-shadow: 0 14px 28px rgba(69, 128, 255, 0.2);
}

.btn-brand:hover,
.btn-brand:focus {
  color: #07111e;
  transform: translateY(-1px);
  box-shadow: 0 20px 36px rgba(69, 128, 255, 0.22);
}

.btn-soft {
  color: #eef3ff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-soft:hover,
.btn-soft:focus {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.14);
}

.hero-shell {
  padding: 5.2rem 0 2.3rem;
}

.hero-shell-premium {
  position: relative;
}

.hero-shell-premium::before,
.hero-shell-premium::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-shell-premium::before {
  width: 460px;
  height: 460px;
  right: -160px;
  top: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 146, 255, 0.18), transparent 64%);
}

.hero-shell-premium::after {
  width: 360px;
  height: 360px;
  left: -110px;
  bottom: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(68, 219, 197, 0.16), transparent 68%);
}

.hero-copy,
.hero-card {
  position: relative;
  z-index: 1;
}

.motto-pill,
.role-pill,
.tag-pill,
.price-pill,
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.56rem 0.92rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.05);
  color: #eef4ff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.status-pending {
  background: rgba(255, 190, 92, 0.1);
  border-color: rgba(255, 190, 92, 0.22);
  color: #f6d28d;
}

.hero-copy-premium h1 {
  margin-bottom: 0;
  font-size: clamp(2.75rem, 6vw, 5rem);
  line-height: 0.94;
  max-width: 10ch;
}

.accent-text {
  background: linear-gradient(135deg, #dfe6ff 8%, #95b0ff 42%, #44dbc5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p,
.section-subtitle {
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 64ch;
}

.hero-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hero-stat {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.hero-stat strong {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
}

.hero-stat span {
  display: block;
  margin-top: 0.32rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.home-ribbon,
.footer-pill-list,
.dashboard-status-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.home-ribbon span,
.footer-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #eef4ff;
  font-size: 0.82rem;
  font-weight: 700;
}

.home-ribbon i {
  color: #95f0de;
}

.panel-card,
.metric-card,
.content-card,
.feature-tile,
.directory-card,
.mentor-card,
.publication-card,
.market-card,
.campaign-card,
.soft-card,
.chat-card {
  border-radius: 26px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    linear-gradient(180deg, rgba(11, 18, 34, 0.96), rgba(8, 14, 26, 0.94));
  box-shadow: var(--shadow-lg);
}

.panel-card,
.soft-card,
.chat-card {
  padding: 1.6rem;
}

.hero-card,
.showcase-panel {
  padding: 1.7rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(circle at top right, rgba(127, 146, 255, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(14, 23, 42, 0.96), rgba(8, 14, 26, 0.95));
  box-shadow: var(--shadow-xl);
}

.showcase-header strong {
  display: block;
  margin-top: 0.8rem;
  font-size: 1.3rem;
  color: #ffffff;
  line-height: 1.3;
}

.showcase-stack {
  display: grid;
  gap: 0.95rem;
}

.showcase-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
}

.showcase-item-primary {
  background: linear-gradient(135deg, rgba(127, 146, 255, 0.18), rgba(68, 219, 197, 0.08));
}

.showcase-item small {
  display: inline-block;
  margin-bottom: 0.38rem;
  color: #92a6cf;
  font-weight: 700;
}

.showcase-item strong {
  display: block;
  color: #ffffff;
  line-height: 1.35;
}

.showcase-item p {
  margin-top: 0.28rem;
  margin-bottom: 0;
  font-size: 0.93rem;
  line-height: 1.55;
}

.showcase-item i {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #f1f5ff;
  font-size: 1.08rem;
}

.showcase-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.showcase-kpis > div {
  padding: 0.92rem 0.95rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.showcase-kpis span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
}

.showcase-kpis strong {
  display: block;
  margin-top: 0.28rem;
  font-size: 1rem;
  color: #ffffff;
}

.auth-shell {
  position: relative;
  margin-top: 0.35rem;
}

.auth-shell::before {
  content: "";
  position: absolute;
  inset: 16px 0 auto;
  height: calc(100% - 32px);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.auth-card {
  min-height: 100%;
  padding: 1.85rem;
}

.auth-card-login {
  background:
    linear-gradient(180deg, rgba(127, 146, 255, 0.11), rgba(255,255,255,0.02)),
    linear-gradient(180deg, rgba(11, 18, 34, 0.96), rgba(8, 14, 26, 0.95));
}

.auth-card-signup {
  background:
    radial-gradient(circle at top right, rgba(68, 219, 197, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(11, 18, 34, 0.96), rgba(8, 14, 26, 0.95));
}

.form-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
}

.form-steps span {
  display: inline-flex;
  align-items: center;
  padding: 0.52rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.76rem;
  color: #eef3ff;
  font-weight: 700;
}

.mini-note {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.mini-note i,
.tile-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(127, 146, 255, 0.22), rgba(68, 219, 197, 0.16));
  color: #eef4ff;
  font-size: 1.08rem;
  flex-shrink: 0;
}

.mini-note strong,
.content-card strong,
.feature-tile strong,
.directory-card strong,
.mentor-card strong,
.publication-card strong,
.market-card strong,
.campaign-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #ffffff;
  font-size: 1.02rem;
}

.content-card,
.feature-tile,
.directory-card,
.mentor-card,
.publication-card,
.market-card,
.campaign-card {
  padding: 1.2rem;
  height: 100%;
}

.callout-banner {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(240, 201, 120, 0.12), rgba(127, 146, 255, 0.08));
  border: 1px solid rgba(240, 201, 120, 0.18);
}

.section-title {
  margin-bottom: 0.3rem;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.04;
}

.setup-card {
  padding: 1.65rem;
}

.page-header {
  padding: 2.1rem 0 1rem;
}

.page-header > .container > .panel-card:first-child,
.dashboard-hero {
  position: relative;
  overflow: hidden;
  padding: 1.9rem;
  background:
    radial-gradient(circle at top right, rgba(127, 146, 255, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(11, 18, 34, 0.97), rgba(8, 14, 26, 0.95));
}

.page-header > .container > .panel-card:first-child::after,
.dashboard-hero::after {
  content: "";
  position: absolute;
  right: -28px;
  top: -26px;
  width: 180px;
  height: 180px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 35% 35%, rgba(127, 146, 255, 0.14), transparent 52%),
    linear-gradient(135deg, rgba(68, 219, 197, 0.1), rgba(127, 146, 255, 0.02));
  transform: rotate(16deg);
}

.metric-card {
  padding: 1.45rem;
  position: relative;
}

.metric-card::before,
.announcement-card::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(127, 146, 255, 0.08), rgba(255, 255, 255, 0.3), rgba(68, 219, 197, 0.08));
}

.metric-number {
  font-size: 2.4rem;
  font-weight: 820;
  color: #ffffff;
}

.metric-label {
  font-size: 1rem;
  font-weight: 700;
  color: #dfe8ff;
}

.list-tight li + li {
  margin-top: 0.7rem;
}

.announcement-card {
  position: relative;
}

.announcement-stack,
.dashboard-quick-actions,
.board-list,
.message-list {
  display: grid;
  gap: 0.95rem;
}

.empty-state {
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px dashed rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

.avatar-circle {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(127, 146, 255, 0.26), rgba(68, 219, 197, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.message-bubble {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.rating-stars {
  color: #f3ce83;
}

.progress {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.progress-bar {
  border-radius: 999px;
  background: linear-gradient(90deg, #8fa6ff, #49dcc6);
}

.table-responsive {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  background: rgba(10, 17, 30, 0.74);
}

.table {
  margin-bottom: 0;
  color: var(--text);
  --bs-table-bg: transparent;
  --bs-table-striped-bg: rgba(255, 255, 255, 0.03);
  --bs-table-border-color: rgba(255, 255, 255, 0.07);
}

.table th,
.table td {
  vertical-align: middle;
  padding: 0.95rem 1rem;
}

.table thead th {
  color: #dce6ff;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.035);
}

.form-label {
  display: inline-block;
  margin-bottom: 0.6rem;
  font-weight: 650;
}

.form-control,
.form-select,
textarea.form-control {
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.055);
  color: #eef3ff;
  box-shadow: none;
}

textarea.form-control {
  min-height: 140px;
  padding-top: 0.9rem;
}

.form-control::placeholder,
.form-select,
.dropzone-label small {
  color: #9eacc7;
}

.form-control:focus,
.form-select:focus,
textarea.form-control:focus {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(127, 146, 255, 0.72);
  box-shadow: 0 0 0 0.22rem rgba(127, 146, 255, 0.16);
}

.form-check-input {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.dropzone-label {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  cursor: pointer;
}

.dropzone-label input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.sticky-side {
  position: sticky;
  top: 118px;
}

.news-panel,
.strategic-panel {
  min-height: 100%;
}

.footer-premium {
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(7, 13, 24, 0.42), rgba(5, 10, 18, 0.98));
}

.footer-brand .brand-mark {
  width: 52px;
  height: 52px;
}

.footer-heading {
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 750;
}

.footer-links li + li {
  margin-top: 0.75rem;
}

.footer-links a {
  color: var(--muted);
  font-weight: 600;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-title {
  font-size: 1.08rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.alert {
  border-radius: 18px;
  padding: 0.95rem 1rem;
}

.alert-success {
  color: #d9fff1;
  background: rgba(92, 224, 177, 0.12);
}

.alert-danger {
  color: #ffe3e3;
  background: rgba(255, 129, 129, 0.12);
}

.alert-warning {
  color: #fff0d4;
  background: rgba(240, 201, 120, 0.14);
}

.alert-info {
  color: #e1eaff;
  background: rgba(127, 146, 255, 0.12);
}

@media (max-width: 1199px) {
  .navbar-shell {
    border-radius: 22px;
    padding: 0.85rem 0.95rem;
  }

  .navbar-modern .nav-cta-group {
    width: 100%;
  }

  .navbar-modern .nav-cta-group .btn {
    width: 100%;
  }

  .nav-link {
    margin-top: 0.15rem;
  }
}

@media (max-width: 991px) {
  .hero-shell {
    padding-top: 4.4rem;
  }

  .hero-copy-premium h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 7vw, 3.4rem);
  }

  .hero-mini-stats,
  .showcase-kpis {
    grid-template-columns: 1fr;
  }

  .form-steps {
    justify-content: flex-start;
  }

  .sticky-side {
    position: static;
  }

  .page-header > .container > .panel-card:first-child,
  .dashboard-hero,
  .panel-card,
  .soft-card,
  .chat-card,
  .hero-card,
  .showcase-panel,
  .auth-card {
    padding: 1.35rem;
  }
}

@media (max-width: 767px) {
  .navbar-modern {
    padding-top: 12px;
  }

  .navbar-shell {
    min-height: 72px;
    border-radius: 18px;
  }

  .brand-mark,
  .footer-brand .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .brand-mark-svg {
    width: 24px;
    height: 24px;
  }

  .brand-title {
    font-size: 0.94rem;
  }

  .brand-motto {
    font-size: 0.7rem;
  }

  .hero-shell {
    padding-top: 4rem;
    padding-bottom: 1.5rem;
  }

  .hero-copy p,
  .section-subtitle {
    font-size: 0.96rem;
  }

  .home-ribbon,
  .footer-pill-list,
  .dashboard-status-stack {
    gap: 0.55rem;
  }

  .mini-note {
    grid-template-columns: 1fr;
  }

  .mini-note i,
  .tile-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .page-header {
    padding-top: 1.5rem;
  }

  .table th,
  .table td {
    padding: 0.8rem 0.85rem;
  }
}
