:root {
  --flaudio-bg: #020617;
  --flaudio-fg: #f1f5f9;
  --flaudio-muted: #94a3b8;
  --flaudio-accent: #fb923c;
}

body {
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
}

/* Shared components extracted from index.html */
.glass {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-gradient {
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.12), transparent),
    radial-gradient(
      circle at bottom left,
      rgba(255, 237, 213, 0.05),
      transparent
    );
}

.glow-button {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.2);
}

.glow-button:hover {
  box-shadow: 0 0 30px rgba(249, 115, 22, 0.4);
  transform: translateY(-2px);
}

.mockup-container {
  perspective: 1200px;
}

.mockup-card {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-text-gradient {
  background: linear-gradient(to right, #fb923c, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Legal-page typography (privacy/terms) */
.legal {
  color: rgb(203, 213, 225); /* slate-300 */
}

.legal p {
  margin: 0.75rem 0;
}

.legal h3 {
  margin-top: 1.25rem;
  font-weight: 800;
  color: rgb(241, 245, 249); /* slate-100 */
}

.legal h4 {
  margin-top: 1rem;
  font-weight: 800;
  color: rgb(241, 245, 249);
}

.legal ul {
  padding-left: 1.2rem;
  margin: 0.5rem 0 0.75rem;
}

.legal li {
  margin: 0.25rem 0;
}

.legal a {
  color: var(--flaudio-accent);
  text-decoration: none;
}

.legal a:hover {
  text-decoration: underline;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Support page form styling */
.support-form label {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgb(241, 245, 249);
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(2, 6, 23, 0.72);
  padding: 0.95rem 1rem;
  color: rgb(241, 245, 249);
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.support-form input::placeholder,
.support-form textarea::placeholder {
  color: rgb(100, 116, 139);
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
  border-color: rgba(249, 115, 22, 0.8);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
  background: rgba(15, 23, 42, 0.9);
}

.support-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #fb923c 50%),
    linear-gradient(135deg, #fb923c 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
}

.support-form textarea {
  resize: vertical;
  min-height: 7rem;
}

.support-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 0;
  color: rgb(203, 213, 225);
}

.support-checkbox input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: #f97316;
}

.support-checkbox a {
  color: var(--flaudio-accent);
}

.support-panel ul {
  padding-left: 1.2rem;
}

.support-panel li {
  margin: 0.4rem 0;
}
