:root {
  --bg: #050506;
  --bg-deep: #000000;
  --bg-elevated: rgba(10, 10, 12, 0.82);
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f5f5f7;
  --muted: #b8b4c4;
  --accent: #ff5724;
  --accent-2: #ff7a45;
  --accent-3: #a855f7;
  --gradient: linear-gradient(135deg, #ffb347 0%, #ff7a45 30%, #ff5724 50%, #9d4edd 78%, #7c3aed 100%);
  --gradient-soft: linear-gradient(
    155deg,
    rgba(255, 160, 80, 0.05) 0%,
    rgba(255, 87, 36, 0.03) 38%,
    rgba(124, 58, 237, 0.05) 68%,
    rgba(168, 85, 247, 0.04) 100%
  );
  --glass-bg: rgba(8, 8, 10, 0.55);
  --glass-bg-strong: rgba(6, 6, 8, 0.78);
  --glass-border: rgba(255, 255, 255, 0.14);
  --glass-highlight: rgba(255, 255, 255, 0.08);
  --glass-blur: 28px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --font: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html:has(.landing) {
  height: 100%;
  overflow: hidden;
}

body {
  margin: 0;
  min-height: 100dvh;
  background:
    radial-gradient(ellipse 90% 70% at 8% 8%, rgba(255, 140, 66, 0.07), transparent 52%),
    radial-gradient(ellipse 85% 65% at 92% 10%, rgba(124, 58, 237, 0.08), transparent 50%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 55%, var(--bg-deep) 100%);
  color: var(--text);
  font: 15px/1.55 var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body:has(.landing) {
  height: 100dvh;
  max-height: 100dvh;
  overflow: hidden;
}

/* Animated ambient mesh */
.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 65% at 0% 28%, rgba(255, 140, 66, 0.08), transparent 55%),
    radial-gradient(ellipse 85% 60% at 100% 22%, rgba(124, 58, 237, 0.09), transparent 50%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 50%, var(--bg-deep) 100%);
}

.blob {
  position: absolute;
  border-radius: 40% 60% 65% 35% / 45% 55% 45% 55%;
  filter: blur(72px);
  opacity: 0.72;
  will-change: transform, border-radius;
}

.blob-1 {
  width: min(70vmax, 720px);
  height: min(70vmax, 720px);
  top: -18%;
  left: -12%;
  background: radial-gradient(circle at 30% 30%, #ff8c42, #ff5724 55%, transparent 72%);
  animation: blob-drift-a 24s ease-in-out infinite;
}

.blob-2 {
  width: min(58vmax, 600px);
  height: min(58vmax, 600px);
  top: 28%;
  right: -16%;
  background: radial-gradient(circle at 40% 40%, #c084fc, #7c3aed 50%, transparent 70%);
  animation: blob-drift-b 20s ease-in-out infinite;
  animation-delay: -4s;
}

.blob-3 {
  width: min(52vmax, 540px);
  height: min(52vmax, 540px);
  bottom: -8%;
  left: 18%;
  background: radial-gradient(circle at 50% 50%, #5b21b6, #3b0764 45%, transparent 68%);
  animation: blob-drift-c 26s ease-in-out infinite;
  animation-delay: -8s;
}

.blob-4 {
  width: min(48vmax, 500px);
  height: min(48vmax, 500px);
  top: 8%;
  left: 42%;
  background: radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.9), rgba(120, 50, 200, 0.35) 55%, transparent 72%);
  opacity: 0.5;
  animation: blob-drift-d 22s ease-in-out infinite;
  animation-delay: -12s;
}

.blob-5 {
  width: min(44vmax, 460px);
  height: min(44vmax, 460px);
  bottom: 18%;
  right: 22%;
  background: radial-gradient(circle at 40% 60%, #ffa033, #e85d04 50%, transparent 70%);
  opacity: 0.55;
  animation: blob-drift-e 18s ease-in-out infinite;
  animation-delay: -6s;
}

.ambient-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 42%, transparent 12%, rgba(0, 0, 0, 0.62) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, transparent 20%, transparent 74%, rgba(0, 0, 0, 0.82) 100%);
}

/* Landing: blurred poster carousel */
.ambient-bg-posters {
  background:
    radial-gradient(ellipse 85% 60% at 10% 22%, rgba(255, 140, 66, 0.08), transparent 55%),
    radial-gradient(ellipse 80% 55% at 90% 28%, rgba(124, 58, 237, 0.09), transparent 52%),
    linear-gradient(180deg, #000 0%, var(--bg) 48%, #000 100%);
}

.ambient-bg-posters::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--gradient-soft);
  pointer-events: none;
}

.ambient-bg-posters .blob {
  display: block;
  z-index: 0;
  opacity: 0.22;
  filter: blur(96px);
}

.poster-wall {
  position: absolute;
  inset: -8%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(18px, 3vh, 32px);
  overflow: hidden;
  filter: blur(16px) saturate(1.05) brightness(0.42) hue-rotate(-8deg);
  transform: scale(1.04);
  opacity: 0.32;
}

.poster-carousel-row {
  overflow: hidden;
  width: 100%;
  flex-shrink: 0;
}

.poster-carousel-track {
  display: flex;
  width: max-content;
  gap: clamp(16px, 2.5vw, 28px);
  padding: 0 clamp(12px, 2vw, 24px);
  will-change: transform;
}

.poster-carousel-row--left .poster-carousel-track {
  animation: poster-marquee-left var(--marquee-duration, 70s) linear infinite;
}

.poster-carousel-row--right .poster-carousel-track {
  animation: poster-marquee-right var(--marquee-duration, 62s) linear infinite;
}

.poster-carousel-poster {
  flex-shrink: 0;
  width: clamp(200px, 22vw, 320px);
  aspect-ratio: 2 / 3;
  border-radius: clamp(12px, 1.4vw, 18px);
  background-size: cover;
  background-position: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

@keyframes poster-marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes poster-marquee-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .poster-carousel-track {
    animation: none !important;
  }
}

.ambient-bg-posters .ambient-vignette {
  z-index: 2;
  background:
    radial-gradient(ellipse 70% 55% at 50% 40%, transparent 0%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.15) 34%,
      rgba(0, 0, 0, 0.15) 66%,
      rgba(0, 0, 0, 0.72) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.12) 30%,
      rgba(0, 0, 0, 0.35) 68%,
      rgba(0, 0, 0, 0.9) 100%
    );
  pointer-events: none;
}

@keyframes blob-drift-a {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    border-radius: 40% 60% 65% 35% / 45% 55% 45% 55%;
  }
  33% {
    transform: translate(12%, 8%) rotate(25deg) scale(1.08);
    border-radius: 55% 45% 40% 60% / 50% 60% 40% 50%;
  }
  66% {
    transform: translate(6%, 14%) rotate(-15deg) scale(0.96);
    border-radius: 35% 65% 55% 45% / 60% 40% 55% 45%;
  }
}

@keyframes blob-drift-b {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    border-radius: 50% 50% 40% 60% / 55% 45% 55% 45%;
  }
  40% {
    transform: translate(-14%, 10%) rotate(-30deg) scale(1.12);
    border-radius: 60% 40% 50% 50% / 45% 55% 50% 50%;
  }
  70% {
    transform: translate(-8%, -6%) rotate(20deg) scale(0.92);
    border-radius: 45% 55% 60% 40% / 50% 50% 45% 55%;
  }
}

@keyframes blob-drift-c {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    border-radius: 45% 55% 50% 50% / 50% 50% 45% 55%;
  }
  50% {
    transform: translate(10%, -12%) scale(1.1);
    border-radius: 60% 40% 45% 55% / 55% 45% 60% 40%;
  }
}

@keyframes blob-drift-d {
  0%, 100% { transform: translate(0, 0) scale(1); }
  35% { transform: translate(-10%, 12%) scale(1.15); }
  65% { transform: translate(8%, -8%) scale(0.9); }
}

@keyframes blob-drift-e {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  45% { transform: translate(-12%, -10%) rotate(35deg); }
  80% { transform: translate(6%, 8%) rotate(-20deg); }
}

@media (prefers-reduced-motion: reduce) {
  .blob { animation: none; }
}

/* Glass surfaces */
.glass-bar {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.35);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.35);
  border-color: var(--glass-border);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 var(--glass-highlight);
}

.glass-panel {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 var(--glass-highlight);
}

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

button { font-family: inherit; }

/* Landing */
.landing {
  --landing-chrome: 10.5rem;
  position: relative;
  height: 100dvh;
  max-height: 100dvh;
  overflow: hidden;
  overflow-x: clip;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  width: 100%;
  max-width: 100vw;
}

@media (max-width: 959px) {
  .landing { --landing-chrome: 12.75rem; }
}

@media (max-width: 959px) and (max-height: 740px) {
  html:has(.landing) {
    height: auto;
    overflow: auto;
  }

  body:has(.landing) {
    height: auto;
    min-height: 100dvh;
    max-height: none;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .landing {
    height: auto;
    min-height: 100dvh;
    max-height: none;
    overflow-x: hidden;
    overflow-y: visible;
  }

  .landing-main {
    overflow: visible;
    flex: none;
  }
}

.landing > :not(.ambient-bg) {
  position: relative;
  z-index: 1;
}

/* Landing header */
.landing-header {
  position: relative;
  flex-shrink: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--glass-border);
  transition:
    background 0.3s var(--ease),
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.landing-header.scrolled {
  background: var(--glass-bg-strong);
  border-bottom-color: var(--glass-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.landing-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.landing-brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.landing-nav {
  display: none;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.landing-nav a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.15s var(--ease);
}

.landing-nav a:hover { color: var(--text); }

@media (min-width: 640px) {
  .landing-nav { display: flex; }
}

.landing-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: opacity 0.15s var(--ease), transform 0.15s var(--ease), box-shadow 0.15s var(--ease);
}

.landing-cta-gradient {
  background: var(--gradient);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 4px 24px rgba(255, 87, 36, 0.32),
    0 2px 14px rgba(124, 58, 237, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.landing-cta-gradient:hover {
  opacity: 0.95;
  transform: translateY(-1px);
  box-shadow:
    0 8px 32px rgba(255, 87, 36, 0.38),
    0 4px 18px rgba(124, 58, 237, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.landing-cta svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

/* Landing footer */
.landing-footer {
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  padding: 10px 20px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--glass-border);
  margin-top: auto;
}

@media (min-width: 640px) {
  .landing-footer {
    padding: 12px 48px calc(12px + env(safe-area-inset-bottom));
    gap: 10px 20px;
  }
}

.landing-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
}

.landing-footer-brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.landing-footer-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px 18px;
  flex: 1;
  min-width: 0;
}

.landing-footer-links a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.15s var(--ease);
}

.landing-footer-links a:hover { color: var(--text); }

.landing-footer-meta {
  display: contents;
}

.landing-footer-copy {
  margin: 0;
  width: auto;
  margin-left: auto;
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
}

@media (max-width: 639px) {
  .landing-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-inline: 16px;
  }

  .landing-footer-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px 12px;
    width: 100%;
    min-width: 0;
  }

  .landing-footer-links {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    gap: 6px 10px;
    justify-content: flex-start;
  }

  .landing-footer-links a {
    font-size: 12px;
    white-space: nowrap;
  }

  .landing-footer-copy {
    flex: 0 0 auto;
    margin-left: 0;
    width: auto;
    font-size: 10px;
    line-height: 1.3;
  }
}

@media (max-width: 520px) {
  .landing-footer-links a[href^="mailto"] {
    display: none;
  }

  .landing-footer-links {
    gap: 4px 10px;
  }

  .landing-footer-links a {
    font-size: 11px;
  }
}

@media (max-width: 400px) {
  .landing-footer-meta {
    gap: 6px 8px;
  }

  .landing-footer-links {
    gap: 4px 8px;
  }

  .landing-footer-links a {
    font-size: 10px;
  }

  .landing-footer-copy {
    font-size: 9px;
  }

  .landing-header {
    padding: 10px 12px;
    gap: 8px;
  }

  .landing-brand {
    font-size: 16px;
    min-width: 0;
  }

  .landing-brand img {
    width: 32px;
    height: 32px;
  }

  .landing-cta {
    padding: 8px 12px;
    font-size: 12px;
    gap: 6px;
  }
}

/* Inner pages (support, legal) — same ambient treatment as landing */
body:has(.page-shell) {
  background: var(--bg-deep);
}

.page-shell {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  isolation: isolate;
}

.page-shell .ambient-bg-posters .poster-wall {
  opacity: 0.24;
}

.page-shell > :not(.ambient-bg) {
  position: relative;
  z-index: 1;
}

.page-shell-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--glass-border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.page-shell-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
}

.page-shell-brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.page-shell-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-left: auto;
}

.page-shell-nav a {
  font-size: 13px;
  color: var(--muted);
}

.page-shell-nav a:hover,
.page-shell-nav a.active {
  color: var(--text);
}

.page-shell-main {
  flex: 1;
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px 48px;
}

.page-content {
  padding: 8px 0 32px;
  max-width: 720px;
}

.page-content h1 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 4vw, 1.85rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.page-content h2 {
  font-size: 1.1rem;
  margin: 2rem 0 0.5rem;
  letter-spacing: -0.01em;
}

.page-content .updated {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 2rem;
}

.page-content p {
  margin: 0 0 1rem;
  color: rgba(245, 245, 247, 0.92);
  line-height: 1.65;
}

.page-content ul {
  padding-left: 1.25rem;
  margin: 0 0 1rem;
  color: rgba(245, 245, 247, 0.92);
}

.page-content li { margin-bottom: 0.45rem; }

.page-content a {
  color: #6eb5ff;
  text-decoration: none;
}

.page-content a:hover { text-decoration: underline; }

.page-hero {
  padding: 24px 0 20px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 36px);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.page-hero p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  max-width: 52ch;
}

/* Support */
.support-layout {
  display: grid;
  gap: 16px;
  align-items: start;
}

@media (min-width: 880px) {
  .support-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.panel {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.3);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 var(--glass-highlight);
}

@media (min-width: 600px) {
  .panel { padding: 28px; }
}

.panel-head {
  margin-bottom: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.panel-head h2 {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list details:last-child { border-bottom: 0; }

.faq-list summary {
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.45;
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 36px 16px 0;
  position: relative;
  transition: color 0.15s var(--ease);
}

.faq-list summary:hover { color: #fff; }

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--surface);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "×";
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
}

.faq-list details p {
  color: var(--muted);
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.65;
  padding: 0 8px 0 44px;
}

.faq-list details p a {
  color: #6eb5ff;
  font-weight: 500;
}

.support-form {
  display: grid;
  gap: 16px;
  margin-top: 4px;
}

.field label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 8px;
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  font: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.support-form textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.55;
}

.support-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%238e8e93' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 4px;
}

.support-form button[type="submit"] {
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  background: var(--gradient);
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  align-self: flex-start;
  transition: opacity 0.15s var(--ease);
  box-shadow: 0 4px 20px rgba(255, 87, 36, 0.3);
}

.support-form button[type="submit"]:hover:not(:disabled) { opacity: 0.92; }

.support-form button[type="submit"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.status {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid transparent;
}

.status.ok {
  background: rgba(31, 122, 61, 0.12);
  color: #4ade80;
  border-color: rgba(31, 122, 61, 0.25);
}

.status.err {
  background: rgba(192, 57, 43, 0.12);
  color: #f87171;
  border-color: rgba(192, 57, 43, 0.25);
}

.status.err a { color: #f87171; font-weight: 500; }

.page-shell-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: 13px;
  color: var(--muted);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

.page-shell-footer a:hover { color: var(--text); }
