* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --pointer-x: 50%;
  --pointer-y: 18%;
  --bg: #120d1f;
  --bg-soft: #191325;
  --panel: rgba(24, 18, 38, 0.82);
  --panel-strong: rgba(29, 23, 45, 0.92);
  --panel-light: rgba(34, 27, 51, 0.82);
  --border: rgba(165, 140, 255, 0.16);
  --border-strong: rgba(190, 170, 255, 0.26);
  --text: #efe7ff;
  --text-strong: #f5eeff;
  --muted: #d1c7ef;
  --muted-soft: #b8a7e8;
  --chrome: #f4effd;
  --chrome-dark: #e8defd;
  --violet: #9d7bff;
  --violet-strong: #b38dff;
  --magenta: #c59bff;
  --magenta-soft: #eddcff;
  --cyan: #8bb4ff;
  --cyan-soft: #dfeaff;
  --gold: #d9b770;
  --sage: #98c7b0;
  --rose: #d39ad1;
  --danger: #ff7a8f;
  --success: #78d7b4;
  --shadow-xl: 0 22px 46px rgba(15, 10, 25, 0.42);
  --shadow-lg: 0 12px 24px rgba(15, 10, 25, 0.28);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  color: var(--text);
  font-family: "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(184, 138, 255, 0.16), transparent 20%),
    radial-gradient(circle at 18% 10%, rgba(150, 120, 255, 0.18), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(110, 140, 255, 0.12), transparent 18%),
    linear-gradient(180deg, #110d1f 0%, #1a1228 24%, #120d1f 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.32), transparent 82%);
}

body::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 16%),
    radial-gradient(circle at center, transparent 58%, rgba(0, 0, 0, 0.12) 100%);
  opacity: 0.38;
}

.page-glow {
  position: fixed;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
  animation: none;
}

.page-glow-left {
  top: -10rem;
  left: -11rem;
  background: rgba(124, 94, 246, 0.22);
}

.page-glow-right {
  top: 8rem;
  right: -11rem;
  background: rgba(164, 136, 255, 0.16);
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.65) 0.65px, transparent 0.65px);
  background-size: 14px 14px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 88%);
}

.app-shell {
  position: relative;
  z-index: 1;
  width: 100%;
}

.app {
  width: min(1440px, calc(100% - 48px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 32px 0 48px;
}

.hero-panel {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 28px;
  padding: 34px;
  margin-bottom: 30px;
  overflow: hidden;
  border: 1px solid rgba(173, 150, 255, 0.2);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(31, 24, 47, 0.96), rgba(42, 33, 66, 0.96) 42%, rgba(28, 26, 46, 0.96));
  box-shadow: 0 22px 44px rgba(20, 14, 32, 0.38), inset 0 1px 0 rgba(207, 185, 255, 0.18);
  backdrop-filter: blur(18px) saturate(1.2);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: auto -8% -36% auto;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106, 94, 249, 0.14) 0%, rgba(74, 169, 216, 0.08) 38%, rgba(122, 165, 139, 0.04) 62%, transparent 78%);
  pointer-events: none;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-xl) - 2px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  pointer-events: none;
}

.hero-panel:hover {
  border-color: var(--border-strong);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.24);
}

.hero-copy,
.hero-actions-card,
.workspace-card,
.stat-card {
  position: relative;
}

.hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}

.page-nav {
  display: grid;
  gap: 16px;
}

.page-nav-group {
  display: grid;
  gap: 10px;
}

.page-nav-group-label {
  color: var(--muted-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.page-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-nav-link,
.btn-link,
.mobile-quick-action {
  text-decoration: none;
}

.page-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(176, 151, 255, 0.18);
  border-radius: 999px;
  color: var(--chrome-dark);
  background: rgba(255, 255, 255, 0.04);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.mobile-quick-actions {
  display: none;
}

.page-nav-link:hover,
.page-nav-link.is-active {
  transform: translateY(-1px);
  border-color: rgba(196, 177, 255, 0.34);
  background: linear-gradient(135deg, rgba(98, 69, 170, 0.9), rgba(50, 40, 76, 0.9));
  color: var(--text-strong);
  box-shadow: 0 10px 22px rgba(124, 94, 246, 0.18);
}

.brand {
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand img {
  width: 136px;
  height: 136px;
  object-fit: contain;
  filter:
    drop-shadow(0 16px 24px rgba(0, 0, 0, 0.24));
  transition: transform 0.25s ease, filter 0.25s ease;
  animation: none;
}

.brand img:hover {
  transform: translateY(-2px);
  filter:
    drop-shadow(0 18px 26px rgba(0, 0, 0, 0.28));
}

.brand-copy {
  max-width: 700px;
}

.eyebrow,
.panel-kicker {
  color: #c9d1e4;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.brand-copy h1 {
  margin: 10px 0 16px;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
  color: var(--chrome);
  background: linear-gradient(135deg, #f1e2ff 0%, #d9c6ff 28%, #c5a5ff 60%, #9d7bff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.hero-subtitle {
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.78;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--chrome-dark);
  font-size: 0.95rem;
  backdrop-filter: blur(8px);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.hero-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: #d7deed;
}

.hero-actions-card {
  width: min(390px, 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.018);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 12px 28px rgba(0, 0, 0, 0.12);
}

.hero-actions-card::before {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.hero-actions-copy h2 {
  margin: 10px 0 12px;
  font-size: 1.7rem;
  line-height: 1.2;
}

.hero-actions-copy p:last-child,
.workspace-text {
  color: var(--muted);
  line-height: 1.72;
}

.hero-actions-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-actions-item {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.022)),
    rgba(255, 255, 255, 0.018);
}

.hero-actions-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text-strong);
  font-size: 0.96rem;
}

.hero-actions-item span {
  color: var(--muted);
  line-height: 1.6;
}

.header-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.header-actions > .btn-primary,
.header-actions > .btn-secondary {
  width: 100%;
  justify-content: flex-start;
}

.toolbar-actions {
  align-items: end;
}

.toolbar-inline-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-primary,
.btn-secondary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 18px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.btn-primary::before,
.btn-secondary::before {
  display: none;
}

.btn-primary:hover::before,
.btn-secondary:hover::before {
  display: none;
}

.btn-primary {
  color: #f5edff;
  border: 1px solid rgba(187, 168, 255, 0.26);
  padding: 16px 24px;
  background: linear-gradient(135deg, #9d7bff, #7d5ef2 42%, #b38dff);
  box-shadow:
    0 12px 20px rgba(124, 94, 246, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 26px rgba(124, 94, 246, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  color: var(--text);
  border: 1px solid rgba(185, 165, 255, 0.18);
  padding: 15px 22px;
  background: linear-gradient(135deg, rgba(38, 30, 58, 0.92), rgba(49, 40, 71, 0.92));
  box-shadow: inset 0 1px 0 rgba(211, 196, 255, 0.14);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(196, 177, 255, 0.28);
  background: linear-gradient(135deg, rgba(44, 36, 66, 0.96), rgba(57, 46, 83, 0.96));
}

.btn-primary svg,
.btn-secondary svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.dashboard {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-heading h2,
.workspace-header h2 {
  margin-top: 6px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.2;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stat-card {
  overflow: hidden;
  min-height: 178px;
  padding: 26px;
  border: 1px solid rgba(177, 157, 255, 0.18);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(26, 20, 39, 0.96), rgba(40, 31, 61, 0.96) 38%, rgba(32, 25, 48, 0.96));
  backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 18px 30px rgba(12, 8, 20, 0.34), inset 0 1px 0 rgba(219, 208, 255, 0.12);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.stat-card::after {
  display: none;
}

.stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.stat-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: #d3dbee;
}

.stat-label svg {
  width: 18px;
  height: 18px;
}

.stat-card h3 {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-card span {
  position: relative;
  display: block;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--text-strong);
}

.stat-meta {
  position: relative;
  margin-top: 14px;
  color: var(--muted-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.workspace-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(30, 23, 45, 0.96), rgba(23, 18, 35, 0.96)),
    rgba(18, 14, 29, 0.88);
  box-shadow: var(--shadow-xl);
}

.workspace-card-empty {
  min-height: 220px;
  justify-content: center;
}

.dashboard-section-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.surface-note {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.018);
  color: var(--muted);
  line-height: 1.65;
}

.surface-note-muted {
  color: var(--muted-soft);
}

.workspace-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 18px;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.022)),
    rgba(255, 255, 255, 0.018);
  color: var(--text);
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.026);
}

.link-card svg {
  width: 22px;
  height: 22px;
  color: var(--violet-strong);
  flex-shrink: 0;
}

.link-card span {
  display: grid;
  gap: 4px;
}

.link-card strong {
  font-size: 1rem;
}

.link-card small {
  color: var(--muted);
  line-height: 1.45;
}

.chart-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 18px;
}

.chart-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.022)),
    rgba(255, 255, 255, 0.016);
}

.chart-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.chart-card h3 {
  font-size: 1.08rem;
}

.chart-card p {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.6;
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chart-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--chrome-dark);
  font-size: 0.9rem;
  white-space: nowrap;
}

.chart-swatch {
  width: 12px;
  height: 12px;
  border-radius: 999px;
}

.chart-swatch-income {
  background: linear-gradient(180deg, #7cf7a4, #22c55e);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.35);
}

.chart-swatch-expense {
  background: linear-gradient(180deg, #ff9a9a, #ef4444);
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.35);
}

.monthly-chart {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
  min-height: 300px;
}

.monthly-chart-item {
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 10px;
  min-height: 280px;
}

.monthly-chart-bars {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 6px;
  min-height: 220px;
  padding: 14px 10px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.monthly-chart-bar-group {
  display: flex;
  align-items: end;
  gap: 6px;
  width: 100%;
  height: 100%;
}

.monthly-chart-bar {
  flex: 1;
  min-height: 8px;
  border-radius: 16px 16px 6px 6px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.14);
}

.monthly-chart-bar-income {
  background: linear-gradient(180deg, rgba(124, 247, 164, 0.95), rgba(34, 197, 94, 0.9));
}

.monthly-chart-bar-expense {
  background: linear-gradient(180deg, rgba(255, 154, 154, 0.95), rgba(239, 68, 68, 0.9));
}

.monthly-chart-label {
  text-align: center;
  color: var(--chrome-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.monthly-chart-values {
  display: grid;
  gap: 4px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
}

.chart-summary-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.chart-summary-chip {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.chart-summary-chip span {
  color: var(--muted-soft);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.chart-summary-chip strong {
  color: var(--text-strong);
  font-size: 1.08rem;
}

.type-chart {
  display: grid;
  gap: 14px;
}

.type-chart-row {
  display: grid;
  gap: 8px;
}

.type-chart-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--chrome-dark);
  font-size: 0.95rem;
}

.type-chart-track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.type-chart-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(216, 75, 255, 0.9), rgba(125, 49, 242, 0.95));
  box-shadow: 0 0 14px rgba(157, 65, 255, 0.22);
}

.type-chart-fill-sale {
  background: linear-gradient(90deg, rgba(124, 247, 164, 0.95), rgba(34, 197, 94, 0.95));
  box-shadow: 0 0 14px rgba(34, 197, 94, 0.22);
}

.type-chart-fill-purchase {
  background: linear-gradient(90deg, rgba(255, 199, 124, 0.95), rgba(245, 158, 11, 0.95));
  box-shadow: 0 0 14px rgba(245, 158, 11, 0.22);
}

.type-chart-fill-expense {
  background: linear-gradient(90deg, rgba(255, 154, 154, 0.95), rgba(239, 68, 68, 0.95));
  box-shadow: 0 0 14px rgba(239, 68, 68, 0.22);
}

.type-chart-fill-stock {
  background: linear-gradient(90deg, rgba(147, 197, 253, 0.95), rgba(96, 165, 250, 0.95));
  box-shadow: 0 0 14px rgba(96, 165, 250, 0.22);
}

.type-chart-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-panel-home .brand-copy h1 {
  max-width: 12ch;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(30, 23, 45, 0.96), rgba(22, 18, 35, 0.96)),
    rgba(18, 14, 29, 0.88);
  box-shadow: var(--shadow-lg);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  color: #e7ebf7;
}

.feature-kicker {
  margin-bottom: 14px;
  color: var(--chrome-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.7;
}

.feature-meta {
  margin-top: 14px;
  color: var(--muted-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

.feature-link {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #edf2ff;
  font-weight: 700;
  text-decoration: none;
}

.feature-card .feature-link {
  margin-top: auto;
  padding-top: 18px;
}

.journey-step .feature-link {
  margin-top: 16px;
}

.feature-link:hover {
  text-decoration: underline;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.journey-step {
  padding: 24px;
  border: 1px solid rgba(185, 165, 255, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(31, 24, 47, 0.96), rgba(22, 17, 35, 0.96)),
    rgba(18, 14, 29, 0.88);
}

.journey-step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--chrome-dark);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.journey-step h3 {
  margin: 18px 0 10px;
  font-size: 1.1rem;
}

.journey-step p {
  color: var(--muted);
  line-height: 1.68;
}

.workspace-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 24px;
}

.stats-block {
  margin-bottom: 24px;
}

.toolbar {
  display: flex;
  gap: 18px;
  margin-bottom: 24px;
}

.field-shell {
  flex: 0 0 320px;
}

.field-shell-wide {
  flex: 1;
}

.field-label {
  display: block;
  margin-bottom: 10px;
  color: #d7deed;
  font-size: 0.92rem;
  font-weight: 600;
}

.field-control {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.024)),
    rgba(255, 255, 255, 0.018);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.field-control:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.14);
}

.field-control:focus-within {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 0 4px rgba(157, 65, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.022);
}

.field-control svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #d7deed;
}

.toolbar input,
.toolbar select {
  width: 100%;
  flex: 1;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text);
  font-size: 0.98rem;
  font-family: inherit;
}

.toolbar input::placeholder {
  color: rgba(224, 226, 238, 0.5);
}

.toolbar select {
  appearance: none;
}

.toolbar textarea {
  width: 100%;
  flex: 1;
  min-height: 100px;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text);
  font-size: 0.98rem;
  font-family: inherit;
  resize: vertical;
}

.field-control-textarea {
  align-items: flex-start;
  min-height: 132px;
  padding: 14px 16px;
}

.field-control-textarea textarea {
  min-height: 100px;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.field-control-textarea textarea:focus {
  box-shadow: none;
  background: transparent;
}

.table-panel {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.014)),
    rgba(255, 255, 255, 0.012);
}

.table-panel-header h3 {
  font-size: 1.22rem;
}

.table-panel-header p {
  margin-top: 8px;
  color: var(--muted);
}

.table-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 18px;
}

.table-status-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.table-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--chrome-dark);
  font-size: 0.9rem;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.table-status-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
}

.table-status-pill svg {
  width: 16px;
  height: 16px;
  color: #d7deed;
}

.table-status-pill-strong {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.028);
}

.table-status-pill strong {
  color: var(--text-strong);
}

.metric-status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 1rem !important;
  font-weight: 800;
  letter-spacing: 0 !important;
  line-height: 1.2;
  background: rgba(255, 255, 255, 0.03);
}

.metric-status-positive {
  color: #22c55e !important;
  border-color: rgba(34, 197, 94, 0.2);
  background: rgba(34, 197, 94, 0.08);
}

.metric-status-negative {
  color: #ef4444 !important;
  border-color: rgba(239, 68, 68, 0.2);
  background: rgba(239, 68, 68, 0.08);
}

.stat-card-profit-positive {
  border-color: rgba(34, 197, 94, 0.16);
}

.stat-card-profit-negative {
  border-color: rgba(239, 68, 68, 0.16);
}

select {
  color: white;
  background: transparent;
}

select option {
  color: white;
  background: #15131d;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #0c0d15;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--magenta), var(--violet));
  border-radius: 999px;
}

button,
input,
select,
textarea {
  font: inherit;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(224, 187, 255, 0.55);
  outline-offset: 2px;
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, 18px, 0) scale(1.04);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes heroSheen {
  0%,
  100% {
    transform: translateX(-130%);
  }

  46% {
    transform: translateX(-130%);
  }

  58% {
    transform: translateX(130%);
  }

  100% {
    transform: translateX(130%);
  }
}

@media (max-width: 1180px) {
  .hero-panel,
  .workspace-header,
  .toolbar,
  .table-panel-header,
  .toolbar-inline-actions {
    flex-direction: column;
  }

  .hero-actions-card,
  .field-shell,
  .field-shell-wide {
    width: 100%;
    flex: 1 1 auto;
  }

  .feature-grid,
  .stats,
  .link-grid,
  .chart-grid,
  .journey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .table-status-bar {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .app {
    width: min(100% - 24px, 1440px);
    padding: 18px 0 30px;
  }

  .hero-panel,
  .workspace-card {
    padding: 22px;
    border-radius: 24px;
  }

  .hero-copy,
  .hero-actions-card {
    gap: 22px;
  }

  .brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand img {
    width: 104px;
    height: 104px;
  }

  .brand-copy h1 {
    font-size: clamp(2.3rem, 10vw, 3.4rem);
  }

  .hero-subtitle,
  .workspace-text,
  .hero-actions-copy p:last-child {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .feature-grid,
  .stats,
  .link-grid,
  .chart-grid,
  .chart-summary-row,
  .journey-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    min-height: 160px;
  }
}

@media (max-width: 768px) {
  .app {
    width: min(100% - 18px, 1440px);
    padding: 18px 0 84px;
  }

  .hero-panel {
    padding: 22px;
  }

  .hero-panel,
  .workspace-header,
  .table-panel-header,
  .toolbar,
  .account-card-head {
    flex-direction: column;
    align-items: stretch;
  }

  .brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .brand img {
    width: 96px;
    height: 96px;
  }

  .brand-copy h1 {
    font-size: clamp(2.1rem, 8vw, 3rem);
  }

  .hero-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-badge {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .page-nav {
    position: sticky;
    bottom: 12px;
    z-index: 25;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid rgba(179, 157, 255, 0.18);
    background: rgba(17, 13, 26, 0.8);
    backdrop-filter: blur(14px);
    box-shadow: 0 16px 24px rgba(0, 0, 0, 0.26);
  }

  .page-nav-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .page-nav-link {
    width: 100%;
    justify-content: center;
    min-height: 52px;
    padding: 12px 10px;
    font-size: 0.87rem;
    line-height: 1.2;
    white-space: nowrap;
  }

  .page-nav-link i {
    width: 15px;
    height: 15px;
  }

  .mobile-quick-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 18px;
  }

  .mobile-quick-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 56px;
    padding: 12px 14px;
    border: 1px solid rgba(176, 151, 255, 0.2);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(111, 84, 180, 0.2), rgba(35, 29, 52, 0.9));
    color: var(--text-strong);
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(28, 20, 42, 0.2);
  }

  .mobile-quick-action i {
    width: 16px;
    height: 16px;
  }

  .hero-actions-card {
    width: 100%;
    padding: 20px;
  }

  .hero-actions-copy h2 {
    font-size: 1.45rem;
  }

  .hero-actions-list {
    gap: 10px;
  }

  .hero-actions-item {
    padding: 12px 14px;
  }

  .header-actions,
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    min-height: 52px;
    border-radius: 14px;
  }

  .header-actions > .btn-primary,
  .header-actions > .btn-secondary {
    justify-content: center;
  }

  .feature-card,
  .journey-step,
  .workspace-card,
  .stat-card,
  .table-panel,
  .account-card {
    padding: 20px;
  }

  .account-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .workspace-header h2 {
    font-size: 1.45rem;
  }

  .stat-card {
    min-height: 150px;
  }

  .field-control {
    min-height: 56px;
  }

  .table-status-pill {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .app {
    width: min(100% - 12px, 1440px);
  }

  .hero-panel {
    padding: 18px;
    border-radius: 22px;
    box-shadow: 0 18px 30px rgba(8, 6, 14, 0.38);
  }

  .hero-actions-card,
  .workspace-card,
  .account-card,
  .table-panel,
  .auth-card {
    padding: 18px;
    border-radius: 20px;
  }

  .brand {
    gap: 16px;
  }

  .brand-copy h1 {
    margin-bottom: 12px;
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 0.98;
  }

  .hero-badges {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-badge {
    justify-content: center;
    min-height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
  }

  .page-nav-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .page-nav-link {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    border-radius: 14px;
    font-weight: 700;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    min-height: 52px;
    border-radius: 14px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  }

  .header-actions,
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .section-heading h2,
  .workspace-header h2 {
    font-size: 1.45rem;
  }

  .stat-card {
    padding: 22px;
    min-height: 142px;
    border-radius: 20px;
  }

  .field-control {
    min-height: 56px;
  }

  .table-status-pill {
    width: 100%;
    justify-content: center;
  }

  .auth-shell {
    padding: 20px 0;
  }

  .auth-header h1 {
    font-size: clamp(1.7rem, 8vw, 2.1rem);
  }

  .auth-field input,
  .auth-password-field .password-input-shell {
    min-height: 54px;
    border-radius: 12px;
  }

  .password-toggle {
    border-radius: 9px;
  }

  img,
  svg,
  video {
    max-width: 100%;
    height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

.auth-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 0;
}

.auth-card {
  width: min(100%, 480px);
  padding: 34px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(185, 165, 255, 0.18);
  background:
    radial-gradient(circle at top, rgba(157, 123, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(31, 23, 47, 0.98), rgba(22, 17, 35, 0.98));
  box-shadow: 0 30px 60px rgba(8, 6, 14, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
}

.auth-card-login {
  position: relative;
  overflow: hidden;
}

.auth-card-login::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(194, 181, 255, 0.18), transparent);
}

.auth-card-login::after {
  content: "";
  position: absolute;
  inset: auto 18% -35% auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155, 120, 255, 0.18), transparent 62%);
  pointer-events: none;
}

.auth-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.auth-header .eyebrow {
  color: #d7d1f0;
  letter-spacing: 0.18em;
}

.auth-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.35rem);
  color: var(--text-strong);
  letter-spacing: -0.04em;
}

.auth-header p {
  color: var(--muted);
  line-height: 1.7;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.auth-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--text);
}

.auth-field[hidden] {
  display: none !important;
}

.auth-field span {
  font-size: 0.95rem;
  color: var(--chrome-dark);
}

.auth-field input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(185, 165, 255, 0.18);
  border-radius: 14px;
  padding: 0 16px;
  background: rgba(12, 9, 20, 0.8);
  color: var(--text);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.auth-field input:focus {
  border-color: rgba(185, 165, 255, 0.28);
  box-shadow: 0 0 0 4px rgba(157, 128, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.02);
  background: rgba(16, 12, 26, 0.86);
}

.auth-password-field .password-input-shell {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding-right: 8px;
  border: 1px solid rgba(185, 165, 255, 0.18);
  border-radius: 14px;
  background: rgba(12, 9, 20, 0.8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.auth-password-field .password-input-shell:focus-within {
  border-color: rgba(185, 165, 255, 0.28);
  box-shadow: 0 0 0 4px rgba(157, 128, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.02);
  background: rgba(16, 12, 26, 0.86);
}

.auth-password-field input {
  min-height: 100%;
  padding-left: 16px;
  border: none;
  background: transparent;
  box-shadow: none;
}

.auth-password-field input:focus {
  box-shadow: none;
}

.password-toggle {
  flex-shrink: 0;
  padding: 8px 10px;
  border: 1px solid rgba(185, 165, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--chrome-dark);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.password-toggle:hover {
  border-color: rgba(185, 165, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.auth-message {
  min-height: 24px;
  margin-top: 16px;
  color: var(--chrome-dark);
  line-height: 1.6;
}

.auth-note {
  min-height: 0;
}

.auth-links {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.auth-links a {
  color: #eef2fb;
  text-decoration: none;
}

.auth-links a:hover {
  text-decoration: underline;
}

@media (max-width: 560px) {
  .auth-card {
    padding: 24px;
  }

  .auth-form {
    gap: 14px;
  }

  .auth-field {
    gap: 6px;
  }

  .auth-message {
    margin-top: 12px;
  }

  .auth-links {
    flex-direction: column;
  }
}

.account-dashboard {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.account-summary {
  display: flex;
}

.account-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.account-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(177, 157, 255, 0.16);
  background: linear-gradient(135deg, rgba(30, 23, 45, 0.96), rgba(38, 29, 58, 0.96) 45%, rgba(24, 19, 37, 0.96));
  box-shadow: 0 18px 32px rgba(10, 7, 18, 0.28), inset 0 1px 0 rgba(219, 208, 255, 0.08);
  backdrop-filter: blur(16px) saturate(1.2);
}

.account-card-wide {
  width: 100%;
}

.account-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.account-card-head h2,
.account-card-head h3 {
  color: var(--text-strong);
}

.account-meta {
  color: var(--muted);
  line-height: 1.7;
}

.account-card-note {
  margin-bottom: 16px;
  color: var(--muted-soft);
  line-height: 1.6;
}

.account-form {
  gap: 14px;
}

.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.two-factor-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
}

.two-factor-qr-shell {
  display: flex;
  justify-content: center;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(185, 165, 255, 0.14);
  background: rgba(21, 16, 34, 0.8);
}

.two-factor-qr-image {
  width: min(240px, 100%);
  height: auto;
  border-radius: 18px;
  background: #ffffff;
}

.two-factor-secret {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(17, 13, 26, 0.82);
  border: 1px solid rgba(185, 165, 255, 0.14);
  color: var(--text);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.92rem;
  line-height: 1.7;
  word-break: break-word;
}

.backup-codes-result {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.backup-code-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.backup-code-item {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(185, 165, 255, 0.14);
  background: rgba(17, 13, 26, 0.82);
  color: var(--text);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-align: center;
}

.danger-button {
  border-color: rgba(255, 122, 143, 0.32);
  color: #ffd4dc;
}

.danger-button:hover {
  border-color: rgba(255, 122, 143, 0.42);
  background:
    linear-gradient(180deg, rgba(255, 122, 143, 0.12), rgba(255, 122, 143, 0.08)),
    rgba(255, 122, 143, 0.06);
}

@media (max-width: 900px) {
  .account-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .account-card {
    padding: 22px;
  }

  .account-card-head {
    flex-direction: column;
  }
}

/* Responsive Formulare - Verhindert horizontales Scrollen */
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

@media (max-width: 1024px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Textarea und Input anpassen */
input[type="text"],
input[type="date"],
input[type="number"],
input[type="email"],
textarea,
select {
  width: 100% !important;
  max-width: 100% !important;
  overflow-wrap: break-word;
}

/* Datums-Format Hinweis */
.form-hint {
  display: block;
  font-size: 0.75rem;
  color: var(--muted-soft);
  margin-top: 4px;
  font-style: italic;
}
