:root {
  --purple-50: #faf5ff;
  --purple-100: #f3e8ff;
  --purple-200: #e9d5ff;
  --purple-600: #9333ea;
  --purple-700: #7e22ce;
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --green-500: #10b981;
  --emerald-600: #059669;
  --amber-500: #f59e0b;
  --red-500: #ef4444;

  --primary-gradient: linear-gradient(135deg, var(--purple-600), #3b82f6);
  --primary-gradient-hover: linear-gradient(135deg, var(--purple-700), var(--blue-700));
  --page-gradient: linear-gradient(135deg, var(--purple-50) 0%, #ffffff 52%, var(--blue-50) 100%);
  --subtle-gradient: linear-gradient(135deg, var(--purple-100), var(--blue-100));
  --card-gradient: linear-gradient(135deg, var(--purple-600), var(--blue-600));
  --card: #ffffff;
  --border: rgba(229, 231, 235, 0.92);
  --text: var(--gray-900);
  --muted: var(--gray-600);
  --accent: var(--purple-600);
  --input-bg: #ffffff;
  --nav-bg: rgba(255, 255, 255, 0.8);
  --nav-text: var(--gray-900);
  --nav-border: rgba(229, 231, 235, 0.9);
  --shadow: var(--shadow-lg);

  --shadow-sm: 0 8px 20px rgba(17, 24, 39, 0.06);
  --shadow-md: 0 14px 32px rgba(17, 24, 39, 0.08);
  --shadow-lg: 0 22px 48px rgba(17, 24, 39, 0.12);
  --shadow-xl: 0 30px 72px rgba(17, 24, 39, 0.16);
  --shadow-2xl: 0 40px 100px rgba(17, 24, 39, 0.22);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --focus-ring: 0 0 0 3px rgba(147, 51, 234, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  color: var(--gray-900);
  background:
    radial-gradient(circle at top left, rgba(147, 51, 234, 0.12), transparent 32%),
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.12), transparent 28%),
    var(--page-gradient);
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

main,
section,
article,
nav,
header,
footer {
  display: block;
}

a {
  color: inherit;
}

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

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

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

.is-hidden,
[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 60;
  transform: translateY(-200%);
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--gray-900);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-container {
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-main {
  padding: 2rem 0 4rem;
}

.site-main--full {
  padding: 0 0 4rem;
}

.gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(147, 51, 234, 0.1);
  color: var(--purple-700);
  font-size: 0.875rem;
  font-weight: 700;
}

.section-title {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.section-subtitle {
  margin: 0.9rem 0 0;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--gray-600);
}

.section-heading {
  margin: 0 auto 1rem;
  max-width: 760px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section-heading p {
  margin: 1rem auto 0;
  max-width: 640px;
  color: var(--gray-600);
  font-size: 1.05rem;
}

.panel {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.panel--soft {
  background: linear-gradient(135deg, rgba(250, 245, 255, 0.92), rgba(239, 246, 255, 0.92));
}

.panel--gradient {
  background: var(--card-gradient);
  color: #ffffff;
  border-color: rgba(147, 51, 234, 0.28);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 44px;
  padding: 0.95rem 1.6rem;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible,
.btn:focus-visible,
.form-control:focus,
.form-select:focus,
.form-check-input:focus,
.nav-link-chip:focus-visible,
.nav-toggle:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.button--primary {
  background: var(--primary-gradient);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(147, 51, 234, 0.25);
}

.button--primary:hover {
  background: var(--primary-gradient-hover);
  color: #ffffff;
}

.button--outline {
  border-color: var(--purple-600);
  background: rgba(255, 255, 255, 0.88);
  color: var(--purple-600);
}

.button--outline:hover {
  background: rgba(243, 232, 255, 0.86);
}

.button--ghost {
  background: transparent;
  color: var(--gray-700);
}

.button--ghost:hover {
  background: rgba(243, 244, 246, 0.8);
  color: var(--purple-700);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
}

.button--secondary:hover {
  background: rgba(255, 255, 255, 0.22);
}

.button--full {
  width: 100%;
}

.button--compact {
  min-height: 40px;
  padding: 0.72rem 1.1rem;
  border-radius: 999px;
  font-size: 0.95rem;
}

.button-spinner {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: currentColor;
  animation: spin 0.8s linear infinite;
}

.button[disabled],
.btn[disabled] {
  opacity: 0.64;
  cursor: not-allowed;
  transform: none;
}

.form-label,
label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-700);
}

.form-control,
.form-select,
input,
textarea,
select {
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-lg);
  background: #ffffff;
  color: var(--gray-900);
  padding: 0.95rem 1rem;
  box-shadow: none;
}

.form-control::placeholder,
input::placeholder,
textarea::placeholder {
  color: var(--gray-400);
}

.form-control:focus,
.form-select:focus,
input:focus,
textarea:focus,
select:focus {
  border-color: var(--purple-600);
}

.field-note {
  font-size: 0.82rem;
  color: var(--gray-500);
}

.alert {
  border: 0;
  border-radius: var(--radius-lg);
  padding: 1rem 1.1rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.alert.is-dismissing {
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
}

.alert-info {
  background: rgba(59, 130, 246, 0.12);
  color: var(--blue-700);
}

.alert-success {
  background: rgba(16, 185, 129, 0.14);
  color: #065f46;
}

.alert-danger {
  background: rgba(239, 68, 68, 0.14);
  color: #991b1b;
}

.alert-warning {
  background: rgba(245, 158, 11, 0.16);
  color: #92400e;
}

.status-badge,
.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.badge-soft-primary {
  background: rgba(147, 51, 234, 0.12);
  color: var(--purple-700);
}

.badge-soft-success {
  background: rgba(16, 185, 129, 0.14);
  color: #047857;
}

.badge-soft-warning {
  background: rgba(245, 158, 11, 0.16);
  color: #b45309;
}

.badge-soft-danger {
  background: rgba(239, 68, 68, 0.14);
  color: #b91c1c;
}

.badge-soft-secondary {
  background: rgba(107, 114, 128, 0.12);
  color: var(--gray-600);
}

.text-muted {
  color: var(--gray-600) !important;
}

.card {
  border: 1px solid rgba(229, 231, 235, 0.92);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.94);
}

.card-body {
  padding: 1.5rem;
}

.btn {
  border-radius: var(--radius-lg);
  font-weight: 700;
}

.btn-primary,
.btn-success {
  border: none;
  background: var(--primary-gradient);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(147, 51, 234, 0.22);
}

.btn-primary:hover,
.btn-success:hover {
  background: var(--primary-gradient-hover);
  color: #ffffff;
}

.btn-outline-primary,
.btn-outline-secondary,
.btn-outline-dark,
.btn-outline-success,
.btn-outline-warning,
.btn-outline-danger {
  background: #ffffff;
  border-width: 2px;
  font-weight: 700;
}

.btn-outline-primary {
  border-color: var(--purple-600);
  color: var(--purple-600);
}

.btn-outline-secondary {
  border-color: var(--gray-300);
  color: var(--gray-700);
}

.btn-outline-dark {
  border-color: var(--gray-900);
  color: var(--gray-900);
}

.btn-outline-success {
  border-color: var(--green-500);
  color: var(--emerald-600);
}

.btn-outline-warning {
  border-color: var(--amber-500);
  color: #b45309;
}

.btn-outline-danger {
  border-color: var(--red-500);
  color: #b91c1c;
}

.btn-light {
  background: var(--gray-50);
  color: var(--gray-900);
}

.btn-warning {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #ffffff;
  border: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
}

.site-nav {
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(18px);
  box-shadow: 0 6px 24px rgba(17, 24, 39, 0.04);
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
  position: relative;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 1rem;
  background: var(--primary-gradient);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(147, 51, 234, 0.22);
}

.brand-mark svg {
  width: 1.45rem;
  height: 1.45rem;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-name {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-tag {
  font-size: 0.78rem;
  color: var(--gray-500);
}

.brand-link--footer .brand-tag {
  color: rgba(255, 255, 255, 0.7);
}

.site-nav__panel {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-nav__user-chip,
.nav-link-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav__user-chip {
  background: rgba(243, 232, 255, 0.82);
  color: var(--purple-700);
}

.nav-link-chip {
  color: var(--gray-700);
}

.nav-link-chip:hover {
  background: rgba(243, 244, 246, 0.9);
  color: var(--purple-700);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(243, 244, 246, 0.86);
  align-items: center;
  justify-content: center;
  gap: 0.18rem;
  flex-direction: column;
}

.nav-toggle span {
  display: block;
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: var(--gray-700);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-nav.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.site-nav.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-nav.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

.site-footer {
  background: #0f172a;
  color: rgba(255, 255, 255, 0.74);
  padding: 3rem 0 2rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
}

.site-footer__column h2 {
  margin: 0 0 1rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
}

.site-footer__column a {
  display: block;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
}

.site-footer__column a:hover,
.site-footer__bottom-links a:hover {
  color: #ffffff;
}

.site-footer__bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
}

.site-footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer__bottom-links a {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
}

.consent-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
}

.consent-banner__card {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(229, 231, 235, 0.95);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-2xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.consent-banner__copy h2 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 800;
}

.consent-banner__copy p {
  margin: 0;
  color: var(--gray-600);
}

.consent-banner__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.content-page,
.legal-page {
  width: min(960px, 100%);
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.8rem);
  border-radius: 2rem;
  border: 1px solid rgba(229, 231, 235, 0.95);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-lg);
}

.content-page h1,
.legal-page h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  text-align: center;
  letter-spacing: -0.03em;
}

.content-page h2,
.legal-page h2 {
  margin: 2rem 0 0.9rem;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 800;
}

.content-page p,
.legal-page p,
.content-page li,
.legal-page li {
  color: var(--gray-700);
  font-size: 1rem;
  line-height: 1.75;
}

.content-page ul,
.legal-page ul,
.content-page ol,
.legal-page ol {
  margin: 0.9rem 0 1.2rem;
  padding-left: 1.25rem;
}

.legal-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin: 1rem 0 2rem;
  color: var(--gray-600);
  font-size: 0.95rem;
}

.legal-page a,
.content-page a,
.info-card a {
  color: var(--purple-600);
}

.info-card {
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245, 158, 11, 0.25);
  background: linear-gradient(135deg, rgba(254, 243, 199, 0.42), rgba(255, 251, 235, 0.95));
  color: #92400e;
}

.content-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1.25rem 0 1.5rem;
}

.content-card {
  padding: 1.2rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(229, 231, 235, 0.95);
  background: linear-gradient(135deg, rgba(250, 245, 255, 0.72), rgba(255, 255, 255, 0.98));
  box-shadow: var(--shadow-sm);
}

.content-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  line-height: 1.3;
  font-weight: 800;
}

.content-card p,
.content-card li {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.7;
}

.content-card ul {
  margin: 0.75rem 0 0;
}

.faq-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.faq-item {
  padding: 1.35rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(229, 231, 235, 0.95);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

.faq-item h2,
.faq-item h3 {
  margin: 0 0 0.7rem;
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 800;
}

.faq-item p:last-child,
.faq-item ul:last-child,
.faq-item ol:last-child {
  margin-bottom: 0;
}

.landing-page {
  padding-top: 0;
}

.landing-hero {
  position: relative;
  overflow: hidden;
  padding: 4.8rem 0 4rem;
}

.landing-hero::before,
.landing-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(8px);
}

.landing-hero::before {
  width: 24rem;
  height: 24rem;
  top: 2rem;
  left: -6rem;
  background: rgba(147, 51, 234, 0.14);
}

.landing-hero::after {
  width: 20rem;
  height: 20rem;
  right: -2rem;
  bottom: 1rem;
  background: rgba(59, 130, 246, 0.14);
}

.landing-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 3rem;
  align-items: center;
}

.landing-copy {
  animation: riseIn 0.55s ease;
}

.landing-copy .section-subtitle {
  max-width: 680px;
  font-size: 1.15rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button--hero {
  min-height: 56px;
  padding-inline: 2rem;
  font-size: 1.02rem;
}

.landing-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.landing-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(229, 231, 235, 0.95);
  box-shadow: var(--shadow-sm);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gray-700);
}

.landing-chip span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--purple-600);
}

.landing-preview {
  position: relative;
  padding: 0.25rem;
  border-radius: 2rem;
  background: var(--primary-gradient);
  box-shadow: var(--shadow-2xl);
  animation: riseIn 0.68s ease;
}

.landing-preview__inner {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
  border-radius: calc(2rem - 2px);
  background:
    radial-gradient(circle at top right, rgba(147, 51, 234, 0.14), transparent 32%),
    radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.14), transparent 28%),
    #ffffff;
}

.landing-preview__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
}

.landing-preview__identity {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.landing-preview__avatar {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-gradient);
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 800;
}

.landing-preview__identity strong {
  display: block;
  font-size: 1rem;
}

.landing-preview__identity span {
  color: var(--gray-500);
  font-size: 0.88rem;
}

.landing-preview__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
  font-size: 0.82rem;
  font-weight: 700;
}

.landing-preview__badge::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--green-500);
}

.landing-message-list {
  display: grid;
  gap: 1rem;
}

.landing-message-card {
  padding: 1rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(250, 245, 255, 0.88), rgba(239, 246, 255, 0.9));
  border: 1px solid rgba(229, 231, 235, 0.9);
}

.landing-message-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.7rem;
}

.landing-message-card__meta span:first-child {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(147, 51, 234, 0.12);
  color: var(--purple-700);
  font-size: 0.78rem;
  font-weight: 700;
}

.landing-message-card__meta span:last-child {
  color: var(--gray-500);
  font-size: 0.82rem;
}

.landing-message-card p {
  margin: 0;
  color: var(--gray-700);
}

.landing-preview__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.landing-preview__metric {
  padding: 0.9rem;
  border-radius: 1rem;
  background: var(--gray-50);
  border: 1px solid rgba(229, 231, 235, 0.88);
}

.landing-preview__metric strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
}

.landing-preview__metric span {
  display: block;
  margin-top: 0.25rem;
  color: var(--gray-600);
  font-size: 0.84rem;
}

.landing-section {
  padding: 4.5rem 0;
}

.landing-section--soft {
  background: rgba(255, 255, 255, 0.5);
}

.feature-grid,
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.feature-card,
.drop-info-card {
  padding: 1.75rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(229, 231, 235, 0.92);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.drop-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.feature-icon,
.drop-info-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1.25rem;
  margin-bottom: 1rem;
  background: rgba(147, 51, 234, 0.12);
  color: var(--purple-600);
}

.feature-icon svg,
.drop-info-card__icon svg {
  width: 1.8rem;
  height: 1.8rem;
}

.feature-card h3,
.drop-info-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 800;
}

.feature-card p,
.drop-info-card p {
  margin: 0;
  color: var(--gray-600);
}

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

.step-card {
  padding: 1.8rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(229, 231, 235, 0.92);
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: var(--primary-gradient);
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 800;
}

.step-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.35rem;
  font-weight: 800;
}

.step-card p {
  margin: 0;
  color: var(--gray-600);
}

.stats-band {
  padding: 4rem 0;
  background: var(--primary-gradient);
  color: #ffffff;
}

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

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

.stats-item strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 800;
}

.stats-item span {
  display: block;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.78);
}

.cta-section {
  padding: 4.5rem 0 0;
}

.cta-panel {
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.cta-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.06;
  font-weight: 800;
}

.cta-panel p {
  margin: 1rem auto 0;
  max-width: 640px;
  color: var(--gray-600);
  font-size: 1.1rem;
}

.cta-panel .button-row {
  justify-content: center;
}

.auth-page {
  padding: 2rem 0 4rem;
}

.auth-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 11rem);
  border-radius: 2rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-2xl);
  border: 1px solid rgba(229, 231, 235, 0.95);
}

.auth-brand-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2.2rem, 4vw, 4rem);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 32%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.12), transparent 28%),
    var(--primary-gradient);
  color: #ffffff;
}

.auth-brand-panel h1 {
  margin: 1.2rem 0 0.8rem;
  font-size: clamp(2.3rem, 4.2vw, 4rem);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.auth-brand-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
}

.auth-brand-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.auth-brand-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  list-style: none;
}

.auth-brand-list svg {
  width: 1.5rem;
  height: 1.5rem;
  color: rgba(255, 255, 255, 0.84);
  flex-shrink: 0;
}

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

.auth-brand-stats div {
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.auth-brand-stats strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
}

.auth-brand-stats span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.82);
}

.auth-form-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.8rem, 3vw, 3.2rem);
  background: rgba(255, 255, 255, 0.98);
}

.auth-form-shell {
  width: min(430px, 100%);
}

.auth-form-shell h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.08;
  font-weight: 800;
}

.auth-form-shell p {
  margin: 0.6rem 0 0;
  color: var(--gray-600);
}

.auth-form-fields {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}

.auth-field-group {
  display: grid;
  gap: 0.5rem;
}

.auth-actions {
  margin-top: 1.5rem;
}

.auth-footnote {
  margin-top: 1.1rem;
  color: var(--gray-600);
  font-size: 0.92rem;
}

.auth-footnote a {
  color: var(--purple-600);
  font-weight: 700;
}

.form-error-list {
  margin: 1rem 0 0;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-lg);
  background: rgba(239, 68, 68, 0.08);
  color: #991b1b;
  font-size: 0.9rem;
}

.dashboard-shell {
  padding: 1rem 0 4rem;
}

.dashboard-welcome {
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.dashboard-welcome h1 {
  margin: 0 0 0.45rem;
  font-size: 2rem;
  line-height: 1.06;
  font-weight: 800;
}

.dashboard-welcome p {
  margin: 0;
  color: var(--gray-600);
}

.dashboard-online {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
  font-size: 0.88rem;
  font-weight: 700;
}

.dashboard-online span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--green-500);
  animation: pulseGlow 1.6s ease-in-out infinite;
}

.dashboard-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.dashboard-stat-card {
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(229, 231, 235, 0.92);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
}

.dashboard-stat-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.dashboard-stat-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dashboard-stat-card__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.dashboard-stat-card__icon--purple {
  background: rgba(147, 51, 234, 0.12);
  color: var(--purple-600);
}

.dashboard-stat-card__icon--blue {
  background: rgba(59, 130, 246, 0.12);
  color: var(--blue-600);
}

.dashboard-stat-card__icon--green {
  background: rgba(16, 185, 129, 0.14);
  color: var(--green-500);
}

.dashboard-stat-card__icon--amber {
  background: rgba(245, 158, 11, 0.16);
  color: var(--amber-500);
}

.dashboard-stat-card strong {
  display: block;
  margin-top: 1rem;
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
}

.dashboard-stat-card span {
  display: block;
  margin-top: 0.45rem;
  color: var(--gray-600);
}

.dashboard-stat-card small {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.84rem;
  color: var(--gray-500);
}

.dashboard-share-card {
  margin-top: 1.5rem;
  padding: 2rem;
}

.dashboard-share-card h2 {
  margin: 0;
  font-size: 1.75rem;
  line-height: 1.08;
  font-weight: 800;
}

.dashboard-share-card p {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.dashboard-share-input-row {
  display: flex;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.dashboard-share-input-wrap {
  position: relative;
  flex: 1;
}

.dashboard-share-input-wrap svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  width: 1.2rem;
  height: 1.2rem;
  color: var(--gray-400);
  transform: translateY(-50%);
}

.dashboard-share-input {
  width: 100%;
  padding-left: 2.95rem;
  background: #ffffff;
  border: 0;
  border-radius: var(--radius-lg);
  color: var(--gray-900);
  min-height: 52px;
}

.dashboard-share-copy {
  flex-shrink: 0;
}

.dashboard-share-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.dashboard-share-status {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.dashboard-share-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-button {
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.social-button:hover {
  background: rgba(255, 255, 255, 0.3);
}

.social-button svg {
  width: 1.15rem;
  height: 1.15rem;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.85fr);
  gap: 1.5rem;
  align-items: start;
  margin-top: 1.5rem;
}

.dashboard-messages {
  padding: 1.6rem;
}

.dashboard-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.dashboard-section-header h2 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.1;
  font-weight: 800;
}

.dashboard-controls {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  width: 100%;
}

.dashboard-controls .dashboard-search {
  flex: 1 1 220px;
}

.dashboard-search,
.dashboard-filter {
  min-height: 48px;
}

.message-stack {
  display: grid;
  gap: 1rem;
  max-height: 820px;
  overflow-y: auto;
  padding-right: 0.2rem;
}

.dashboard-message-card {
  padding: 1.25rem;
  border-radius: 1.25rem;
  border-left: 4px solid var(--purple-600);
  background: linear-gradient(135deg, rgba(250, 245, 255, 0.92), rgba(239, 246, 255, 0.92));
  box-shadow: var(--shadow-sm);
}

.dashboard-message-open {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
}

.message-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.message-badges {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.message-anon-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(147, 51, 234, 0.12);
  color: var(--purple-700);
  font-size: 0.78rem;
  font-weight: 700;
}

.message-flag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.76rem;
  font-weight: 700;
}

.message-flag--unread {
  color: var(--blue-700);
}

.message-flag--read {
  color: var(--green-500);
}

.message-date {
  color: var(--gray-500);
  font-size: 0.84rem;
  white-space: nowrap;
}

.message-content {
  margin: 0;
  color: var(--gray-900);
  font-size: 1rem;
  line-height: 1.7;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.message-source-text {
  display: none;
}

.message-media-preview {
  margin-top: 0.9rem;
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(229, 231, 235, 0.92);
}

.message-media-preview img,
.message-media-preview video {
  width: 100%;
  max-height: 18rem;
  object-fit: cover;
}

.message-audio-pill {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem;
  color: var(--purple-700);
  font-weight: 700;
}

.message-audio-pill svg {
  width: 1.35rem;
  height: 1.35rem;
}

.message-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.message-card-actions span {
  color: var(--gray-500);
  font-size: 0.85rem;
  font-weight: 600;
}

.empty-state {
  padding: 3rem 1rem;
  text-align: center;
}

.empty-state svg {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  color: var(--gray-400);
}

.empty-state h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
}

.empty-state p {
  margin: 0.75rem auto 0;
  max-width: 520px;
  color: var(--gray-600);
}

.dashboard-sidebar {
  display: grid;
  gap: 1.5rem;
}

.sidebar-card {
  padding: 1.5rem;
}

.sidebar-card h3 {
  margin: 0 0 1rem;
  font-size: 1.2rem;
  font-weight: 800;
}

.quick-action-list {
  display: grid;
  gap: 0.85rem;
}

.quick-action {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(243, 232, 255, 0.55);
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.quick-action:hover {
  background: rgba(233, 213, 255, 0.8);
  transform: translateY(-2px);
}

.quick-action svg {
  width: 1.35rem;
  height: 1.35rem;
  color: var(--purple-600);
}

.quick-action strong {
  display: block;
  font-size: 0.98rem;
}

.quick-action span {
  display: block;
  color: var(--gray-600);
  font-size: 0.84rem;
}

.dashboard-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.dashboard-pagination p {
  margin: 0;
  color: var(--gray-600);
}

.dashboard-pagination__links {
  display: flex;
  gap: 0.75rem;
}

.message-viewer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.message-viewer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(6px);
}

.message-viewer__panel {
  position: relative;
  width: min(720px, 100%);
  max-height: calc(100vh - 2rem);
  overflow: auto;
  border-radius: 2rem;
  background: #ffffff;
  box-shadow: var(--shadow-2xl);
  padding: 1.5rem;
}

.message-viewer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.message-viewer__top h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 800;
}

.message-viewer__top p {
  margin: 0.35rem 0 0;
  color: var(--gray-500);
}

.message-viewer__close {
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 999px;
  background: rgba(243, 244, 246, 0.95);
  color: var(--gray-700);
  font-size: 1.35rem;
}

.message-viewer__card {
  position: relative;
  overflow: hidden;
  border-radius: 1.75rem;
  padding: 1.35rem;
  background: var(--primary-gradient);
}

.message-viewer__card::before,
.message-viewer__card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.message-viewer__card::before {
  width: 9rem;
  height: 9rem;
  top: -2.5rem;
  right: -2rem;
}

.message-viewer__card::after {
  width: 11rem;
  height: 11rem;
  bottom: -4rem;
  left: -3rem;
}

.message-viewer__label,
.message-viewer__handle {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.94);
  text-align: center;
}

.message-viewer__label {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.message-viewer__bubble {
  position: relative;
  z-index: 1;
  margin: 1rem 0;
  padding: 1.25rem;
  border-radius: 1.5rem;
  background: #ffffff;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.message-viewer__media img,
.message-viewer__media video {
  width: 100%;
  max-height: 320px;
  border-radius: 1rem;
  object-fit: contain;
  background: #0f172a;
}

.message-viewer__media audio {
  width: 100%;
}

.message-viewer__text {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--gray-900);
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.message-viewer__handle {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
}

.message-viewer__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.message-viewer__status {
  color: var(--gray-600);
  font-size: 0.9rem;
  font-weight: 600;
}

.message-viewer__actions-right {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.drop-page {
  padding: 1rem 0 4rem;
}

.drop-shell {
  width: min(960px, 100%);
  margin: 0 auto;
}

.drop-profile {
  text-align: center;
  margin-bottom: 2rem;
}

.drop-avatar {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 7rem;
  height: 7rem;
  margin-bottom: 1.5rem;
  border-radius: 999px;
  background: var(--primary-gradient);
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
  box-shadow: var(--shadow-xl);
}

.drop-avatar::after {
  content: "";
  position: absolute;
  right: 0.25rem;
  bottom: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  border: 4px solid #ffffff;
  background: var(--green-500);
}

.drop-profile h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.06;
  font-weight: 800;
}

.drop-profile p {
  margin: 0.9rem auto 0;
  max-width: 700px;
  color: var(--gray-600);
  font-size: 1.05rem;
}

.drop-card {
  padding: clamp(1.4rem, 3vw, 2rem);
}

.drop-form {
  display: grid;
  gap: 1.4rem;
}

.drop-character-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: -0.4rem;
}

.drop-character-row span {
  font-size: 0.88rem;
  color: var(--gray-500);
}

.drop-character-row span.is-warning {
  color: #b45309;
}

.progress-track {
  width: 9rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--gray-200);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 999px;
  background: var(--primary-gradient);
  transition: width 0.2s ease, background 0.2s ease;
}

.progress-fill.is-warning {
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

.drop-upload {
  display: grid;
  gap: 0.75rem;
}

.drop-upload input[type="file"] {
  display: none;
}

.drop-upload-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 3px dashed var(--gray-300);
  background: rgba(249, 250, 251, 0.9);
  color: var(--gray-700);
  text-align: center;
  min-height: 160px;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.drop-upload-label:hover {
  border-color: rgba(147, 51, 234, 0.45);
  background: rgba(243, 232, 255, 0.5);
  transform: scale(1.01);
}

.drop-upload-label svg {
  width: 2rem;
  height: 2rem;
  color: var(--gray-400);
}

.drop-upload-label strong {
  display: block;
  font-size: 1rem;
}

.drop-upload-label span {
  display: block;
  margin-top: 0.35rem;
  color: var(--gray-500);
  font-size: 0.9rem;
}

.drop-file-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(243, 232, 255, 0.82), rgba(219, 234, 254, 0.82));
  color: var(--gray-700);
  font-size: 0.9rem;
  font-weight: 700;
}

.drop-guidelines {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-top: 1.25rem;
  padding: 1.1rem 1.15rem;
  border-radius: 1.3rem;
  border: 2px solid rgba(245, 158, 11, 0.3);
  background: linear-gradient(135deg, rgba(255, 251, 235, 0.96), rgba(255, 247, 237, 0.96));
}

.drop-guidelines svg {
  width: 1.55rem;
  height: 1.55rem;
  color: #d97706;
  flex-shrink: 0;
}

.drop-guidelines h3 {
  margin: 0 0 0.45rem;
  color: #92400e;
  font-size: 1rem;
  font-weight: 800;
}

.drop-guidelines ul {
  margin: 0;
  padding-left: 1rem;
  color: #92400e;
  font-size: 0.92rem;
}

.drop-submit {
  min-height: 58px;
}

.drop-trust {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--gray-200);
  text-align: center;
}

.drop-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.drop-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--gray-500);
  font-size: 0.9rem;
}

.drop-trust-badge span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
}

.drop-trust-badge--green span {
  background: var(--green-500);
}

.drop-trust-badge--purple span {
  background: var(--purple-600);
}

.drop-trust p {
  margin: 1rem 0 0;
  color: var(--gray-500);
  font-size: 0.88rem;
}

.drop-success-shell {
  min-height: calc(100vh - 12rem);
  display: grid;
  place-items: center;
}

.drop-success-card {
  width: min(520px, 100%);
  padding: 2rem;
  text-align: center;
}

.drop-success-icon {
  width: 6rem;
  height: 6rem;
  margin: 0 auto 1.5rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4ade80, #10b981);
  color: #ffffff;
  box-shadow: var(--shadow-lg);
}

.drop-success-icon svg {
  width: 2.7rem;
  height: 2.7rem;
}

.drop-success-card h1 {
  margin: 0;
  font-size: 2.2rem;
  line-height: 1.08;
  font-weight: 800;
}

.drop-success-card p {
  margin: 1rem 0 0;
  color: var(--gray-600);
}

.drop-success-actions {
  display: grid;
  gap: 0.85rem;
  margin-top: 2rem;
}

.admin-page {
  padding: 1rem 0 4rem;
}

.admin-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.admin-header h1 {
  margin: 0;
  font-size: 2.1rem;
  line-height: 1.06;
  font-weight: 800;
}

.admin-header p {
  margin: 0.55rem 0 0;
  color: var(--gray-600);
}

.admin-tabs {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  padding: 0.5rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(229, 231, 235, 0.92);
  margin-bottom: 1.5rem;
}

.admin-tab-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  flex: 1 1 180px;
  min-height: 48px;
  padding: 0.8rem 1rem;
  border: 0;
  border-radius: 1rem;
  background: transparent;
  color: var(--gray-700);
  font-weight: 700;
  text-decoration: none;
}

.admin-tab-button.is-active {
  background: var(--purple-600);
  color: #ffffff;
}

.admin-tab-button .count-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.55rem;
  min-height: 1.55rem;
  padding: 0 0.45rem;
  border-radius: 999px;
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.18);
}

.admin-tab-panel[hidden] {
  display: none !important;
}

.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.admin-stat-card {
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(229, 231, 235, 0.92);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
}

.admin-stat-card strong {
  display: block;
  margin-top: 1rem;
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
}

.admin-stat-card span {
  display: block;
  margin-top: 0.4rem;
  color: var(--gray-600);
}

.admin-gradients {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.admin-gradient-card {
  padding: 1.6rem;
  border-radius: 1.5rem;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
}

.admin-gradient-card strong {
  display: block;
  margin-top: 1rem;
  font-size: 2rem;
  line-height: 1;
}

.admin-gradient-card span {
  display: block;
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.78);
}

.admin-gradient-card--purple {
  background: var(--card-gradient);
}

.admin-gradient-card--green {
  background: linear-gradient(135deg, #16a34a, #059669);
}

.admin-gradient-card--red {
  background: linear-gradient(135deg, #ef4444, #e11d48);
}

.admin-card {
  margin-top: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(229, 231, 235, 0.92);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
}

.admin-card-header {
  padding: 1.35rem 1.5rem 0;
}

.admin-card-body {
  padding: 1.35rem 1.5rem 1.5rem;
}

.admin-search-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.admin-list {
  display: grid;
  gap: 0.9rem;
}

.admin-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(249, 250, 251, 0.92);
  transition: background 0.2s ease, transform 0.2s ease;
}

.admin-list-item:hover {
  background: rgba(243, 244, 246, 0.95);
  transform: translateY(-1px);
}

.admin-list-item__leading {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.admin-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--primary-gradient);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
}

.admin-list-item__meta {
  min-width: 0;
}

.admin-list-item__meta strong,
.admin-list-item__meta span,
.admin-list-item__meta p {
  display: block;
  overflow-wrap: anywhere;
}

.admin-list-item__meta span,
.admin-list-item__meta p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin: 0.2rem 0 0;
}

.admin-list-item__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.admin-quick-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.admin-quick-action {
  padding: 1rem;
  border-radius: 1rem;
  text-decoration: none;
  background: rgba(255, 251, 235, 0.92);
}

.admin-quick-action strong {
  display: block;
  color: var(--gray-900);
}

.admin-quick-action span {
  display: block;
  margin-top: 0.3rem;
  color: var(--gray-600);
  font-size: 0.88rem;
}

.admin-table {
  width: 100%;
}

.admin-table th {
  color: var(--gray-500);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.admin-table td {
  vertical-align: middle;
}

.admin-detail-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.35fr);
  gap: 1.5rem;
  align-items: start;
}

.admin-property-list {
  display: grid;
  gap: 1rem;
}

.admin-property {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(229, 231, 235, 0.92);
}

.admin-property:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.admin-property span {
  display: block;
  color: var(--gray-500);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.admin-property strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.admin-form-stack {
  display: grid;
  gap: 1rem;
}

.admin-form-inline {
  display: flex;
  gap: 0.75rem;
}

.admin-message-feed {
  display: grid;
  gap: 1rem;
  max-height: 860px;
  overflow-y: auto;
}

.feed-card {
  padding: 1rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(229, 231, 235, 0.92);
  background: rgba(255, 255, 255, 0.96);
}

.feed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  color: var(--gray-500);
  font-size: 0.88rem;
}

.feed-content {
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(249, 250, 251, 0.92);
  border: 1px solid rgba(229, 231, 235, 0.92);
  color: var(--gray-900);
  line-height: 1.7;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.feed-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.2rem;
  margin-top: 0.9rem;
  color: var(--gray-600);
  font-size: 0.86rem;
}

.feed-actions {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.feed-actions form {
  margin: 0;
}

.analytics-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
}

.analytics-list {
  display: grid;
  gap: 0.9rem;
}

.analytics-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgba(249, 250, 251, 0.92);
}

.trend-list {
  display: grid;
  gap: 0.85rem;
}

.trend-row {
  display: grid;
  grid-template-columns: 6rem minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
}

.trend-row label {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.82rem;
  font-weight: 700;
}

.trend-bars {
  display: grid;
  gap: 0.45rem;
}

.trend-bar {
  height: 0.55rem;
  border-radius: 999px;
  background: var(--gray-200);
  overflow: hidden;
}

.trend-bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
}

.trend-bar--drop span {
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
}

.trend-bar--message span {
  background: linear-gradient(135deg, #10b981, #059669);
}

.compact-shell {
  width: min(560px, 100%);
  margin: 0 auto;
}

.compact-shell .card {
  padding: 2rem;
}

.compact-shell h1,
.compact-shell h2,
.compact-shell h3,
.compact-shell h4 {
  margin-top: 0;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.34);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
}

@media (max-width: 1080px) {
  .feature-grid,
  .info-grid,
  .steps-grid,
  .dashboard-stat-grid,
  .admin-stat-grid,
  .admin-gradients,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-layout,
  .analytics-grid,
  .admin-detail-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 960px) {
  .site-main {
    padding-top: 1.5rem;
  }

  .brand-tag {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav__panel {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    display: none;
    margin-left: 0;
  }

  .site-nav.is-open .site-nav__panel {
    display: block;
  }

  .site-nav__links {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(229, 231, 235, 0.96);
  }

  .site-nav__links .button,
  .site-nav__links .nav-link-chip,
  .site-nav__links .site-nav__user-chip {
    width: 100%;
  }

  .landing-hero__grid,
  .auth-layout {
    grid-template-columns: 1fr;
  }

  .auth-brand-panel {
    display: none;
  }
}

@media (max-width: 768px) {
  .site-container {
    width: min(100%, calc(100% - 1.25rem));
  }

  .feature-grid,
  .info-grid,
  .steps-grid,
  .dashboard-stat-grid,
  .admin-stat-grid,
  .admin-gradients,
  .admin-quick-actions,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-share-input-row,
  .dashboard-share-meta,
  .admin-form-inline,
  .consent-banner__card,
  .dashboard-welcome,
  .message-viewer__actions,
  .site-footer__bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .dashboard-share-copy,
  .dashboard-pagination__links,
  .message-viewer__actions-right,
  .button-row .button {
    width: 100%;
  }

  .dashboard-share-buttons {
    justify-content: flex-start;
  }

  .trend-row {
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-main {
    padding-bottom: 3rem;
  }

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

  .landing-preview__metrics {
    grid-template-columns: 1fr;
  }

  .drop-avatar {
    width: 6rem;
    height: 6rem;
  }

  .drop-trust-badges {
    gap: 0.9rem;
  }

  .message-card-top,
  .message-card-actions,
  .admin-list-item,
  .site-footer__bottom-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-list-item__actions {
    width: 100%;
    justify-content: flex-start;
  }

  .message-viewer__panel {
    padding: 1rem;
  }
}
