/* ── Variables ──────────────────────────────────────────────────── */
:root {
  --black:   #080808;
  --dark:    #0f0f12;
  --darker:  #111118;
  --red:     #d42020;
  --bright:  #ff2222;
  --orange:  #ff6600;
  --white:   #f0ece4;
  --muted:   #7a8a9a;

  --font-display: 'Bebas Neue', Impact, 'Arial Black', sans-serif;
  --font-body:    'Space Mono', 'Courier New', monospace;

  --section-pad: clamp(60px, 10vw, 120px);
  --max-w:       1160px;
  --radius:      10px;
}

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: clamp(13px, 1.5vw, 15px);
  line-height: 1.75;
  overflow-x: hidden;
}

/* ── Animations ─────────────────────────────────────────────────── */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50%       { transform: translateY(-18px) rotate(var(--rot, 0deg)); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes blob-morph {
  0%   { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  33%  { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  66%  { border-radius: 20% 60% 50% 40% / 70% 30% 60% 40%; }
  100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

@keyframes glow-pulse {
  0%, 100% { text-shadow: 0 0 20px rgba(212,32,32,.7), 0 0 50px rgba(212,32,32,.35); }
  50%       { text-shadow: 0 0 40px rgba(255,34,34,1), 0 0 90px rgba(212,32,32,.6), 0 0 160px rgba(212,32,32,.3); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scale-in {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes flicker {
  0%, 95%, 100% { opacity: 1; }
  96%            { opacity: 0.4; }
  97%            { opacity: 1; }
  98%            { opacity: 0.2; }
  99%            { opacity: 1; }
}

/* ── Complaint Modal (checkbox hack) ───────────────────────────── */
.pfs-toggle { display: none; }

.rx-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.pfs-toggle:checked ~ .rx-overlay {
  opacity: 1;
  pointer-events: all;
}

.rx-content {
  text-align: center;
  padding: 2.5rem 3rem;
  max-width: 500px;
  width: calc(100% - 3rem);
  border: 2px solid var(--red);
  border-radius: var(--radius);
  background: var(--dark);
  position: relative;
  animation: scale-in 0.3s ease both;
}

.rx-stamp {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: var(--red);
  border: 3px solid var(--red);
  display: inline-block;
  padding: 0.2rem 1rem;
  margin-bottom: 1rem;
  transform: rotate(-4deg);
  opacity: 0.9;
}

.rx-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--white);
  letter-spacing: 0.1em;
  margin-bottom: 0.9rem;
}

.rx-prescription {
  font-size: 0.82rem;
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 1rem 1.4rem;
  margin: 0.75rem 0;
  background: rgba(0,0,0,0.4);
  text-align: left;
  line-height: 1.7;
  color: var(--muted);
}

.rx-prescription strong { color: var(--white); display: block; margin-bottom: 0.35rem; font-size: 0.88rem; }

.rx-sig {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 0.75rem;
  font-style: italic;
}

.rx-dismiss {
  display: inline-block;
  margin-top: 1.4rem;
  padding: 0.8rem 2.2rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s, filter 0.2s;
}

.rx-dismiss:hover { transform: scale(1.04); filter: brightness(1.15); }

.rx-close {
  position: absolute;
  top: 0.9rem;
  right: 1.1rem;
  color: var(--muted);
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  font-family: var(--font-body);
}
.rx-close:hover { color: var(--white); }

/* ── Ticker ──────────────────────────────────────────────────────── */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: var(--red);
  color: var(--white);
  padding: 0.45rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.ticker {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: marquee 20s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  letter-spacing: 0.2em;
  align-items: center;
}

.ticker span { padding: 0 1.2rem; }

/* ── Hero ────────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 55% at 50% 40%, #1a0505 0%, var(--black) 68%);
  text-align: center;
  padding: var(--section-pad) 1.5rem;
}

.bg-shape {
  position: absolute;
  filter: blur(65px);
  animation: blob-morph 14s ease-in-out infinite;
  pointer-events: none;
}

.bg-shape--1 { width: 600px; height: 600px; background: var(--red);    top: -140px; left: -200px; opacity: 0.1;  animation-duration: 16s; }
.bg-shape--2 { width: 400px; height: 400px; background: var(--orange); bottom: -80px; right: -100px; opacity: 0.07; animation-delay: -5s; animation-duration: 18s; }
.bg-shape--3 { width: 280px; height: 280px; background: var(--bright); top: 40%; left: 62%; opacity: 0.06; animation-delay: -9s; animation-duration: 22s; }
.bg-shape--4 { width: 450px; height: 200px; background: var(--red);   bottom: 28%; left: 4%; opacity: 0.07; animation-delay: -3s; }

/* Floating exclamation marks */
.float-x {
  position: absolute;
  pointer-events: none;
  animation: float 7s ease-in-out infinite;
  color: var(--red);
}

.float-x--1 { width: 35px;  top: 9%;   left: 5%;   --rot: -12deg; opacity: 0.2;  animation-duration: 7s; }
.float-x--2 { width: 22px;  top: 14%;  right: 7%;  --rot: 18deg;  opacity: 0.25; animation-duration: 8.5s; animation-delay: -2.5s; color: var(--orange); }
.float-x--3 { width: 55px;  bottom: 8%; right: 9%; --rot: 28deg;  opacity: 0.14; animation-duration: 9s;   animation-delay: -5s; }
.float-x--4 { width: 28px;  bottom: 22%; left: 8%; --rot: -30deg; opacity: 0.2;  animation-duration: 6s;   animation-delay: -1s; color: var(--orange); }
.float-x--5 { width: 18px;  top: 55%;  left: 3%;  --rot: 8deg;   opacity: 0.18; animation-duration: 8s;   animation-delay: -3s; }
.float-x--6 { width: 42px;  top: 35%;  right: 4%; --rot: -22deg; opacity: 0.13; animation-duration: 7.5s; animation-delay: -6s; color: var(--orange); }

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  animation: fade-up 0.9s ease both;
}

.hero__eyebrow {
  font-size: clamp(0.65rem, 1.3vw, 0.78rem);
  letter-spacing: 0.28em;
  color: var(--red);
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  font-family: var(--font-body);
}

.hero__title {
  font-family: var(--font-display);
  line-height: 0.82;
  margin-bottom: 2rem;
}

.hero__title--people {
  display: block;
  font-size: clamp(5rem, 18vw, 14rem);
  color: var(--white);
  letter-spacing: 0.04em;
  text-indent: 0.04em;
}

.hero__title--fucking {
  display: block;
  font-size: clamp(3.5rem, 13vw, 10rem);
  color: var(--red);
  letter-spacing: 0.04em;
  text-indent: 0.04em;
  animation: glow-pulse 4s ease-in-out infinite;
}

.hero__title--suck {
  display: block;
  font-size: clamp(5rem, 18vw, 14rem);
  color: var(--white);
  letter-spacing: 0.04em;
  text-indent: 0.04em;
}

.hero__sub {
  font-size: clamp(0.82rem, 1.8vw, 1rem);
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.hero__sub strong { color: var(--white); font-weight: 400; }

.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.6rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  letter-spacing: 0.15em;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s, filter 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 36px rgba(212,32,32,.4);
  text-decoration: none;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  filter: brightness(1.15);
  box-shadow: 0 0 60px rgba(255,34,34,.65);
}

.hero__fine {
  font-size: 0.66rem;
  color: var(--muted);
  margin-top: 1.4rem;
  opacity: 0.5;
  font-style: italic;
}

/* ── Quote section ───────────────────────────────────────────────── */
.quote-section {
  padding: var(--section-pad) 1.5rem;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(212,32,32,.1);
}

.quote-bg-art {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20rem;
  opacity: 0.025;
  pointer-events: none;
  filter: blur(4px);
  animation: spin-slow 60s linear infinite;
  white-space: nowrap;
  color: var(--red);
  font-family: var(--font-display);
  letter-spacing: -0.05em;
}

.the-quote {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.the-quote p {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.the-quote em { color: var(--red); font-style: normal; }

.the-quote cite {
  font-size: clamp(0.72rem, 1.4vw, 0.85rem);
  color: var(--muted);
  font-style: normal;
  line-height: 1.8;
}

.the-quote cite small {
  display: block;
  margin-top: 0.4rem;
  font-style: italic;
  color: var(--orange);
  opacity: 0.8;
}

/* ── Shared section header ───────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  padding: 0.25rem 0.85rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,32,32,.3);
  border-radius: 3px;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--red);
  text-transform: uppercase;
  font-family: var(--font-body);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  letter-spacing: 0.05em;
  margin: 0.7rem 0 0.5rem;
}

.section-header p {
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  font-size: clamp(0.75rem, 1.5vw, 0.88rem);
  line-height: 1.8;
}

/* ── Stats ───────────────────────────────────────────────────────── */
.stats-section {
  padding: var(--section-pad) 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
  margin-bottom: 1.2rem;
}

.stat-card {
  padding: 1.8rem 1.5rem;
  border-radius: var(--radius);
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.05);
  border-top-width: 3px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}

.stat-card:hover { transform: translateY(-5px); }

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  border-radius: inherit;
}

.stat-card--red    { border-top-color: var(--red); }
.stat-card--red::before    { background: var(--red); }
.stat-card--orange { border-top-color: var(--orange); }
.stat-card--orange::before { background: var(--orange); }
.stat-card--white  { border-top-color: rgba(240,236,228,.3); }
.stat-card--white::before  { background: var(--white); }
.stat-card--muted  { border-top-color: var(--muted); }
.stat-card--muted::before  { background: var(--muted); }

.stat-card__number {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
}

.stat-card--red .stat-card__number    { color: var(--red); }
.stat-card--orange .stat-card__number { color: var(--orange); }
.stat-card--white .stat-card__number  { color: var(--white); }
.stat-card--muted .stat-card__number  { color: var(--muted); }

.stat-card__label {
  color: var(--muted);
  margin-top: 0.5rem;
  font-size: 0.78rem;
  line-height: 1.55;
}

.stat-card__icon {
  position: absolute;
  bottom: 0.9rem;
  right: 1.1rem;
  font-size: 1.8rem;
  opacity: 0.3;
}

.stats-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.7rem;
  font-style: italic;
  opacity: 0.6;
}

/* ── Testimonials ────────────────────────────────────────────────── */
.testimonials-section {
  padding: var(--section-pad) 1.5rem;
  background: var(--dark);
  border-top: 1px solid rgba(212,32,32,.08);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.testimonial-card {
  padding: 1.8rem 2rem;
  background: var(--black);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.3s, border-color 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212,32,32,.35);
}

.testimonial-card__stars {
  color: var(--red);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.testimonial-card blockquote {
  color: var(--white);
  font-size: 0.82rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
}

.testimonial-card blockquote::before {
  content: '\201C';
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--red);
  opacity: 0.25;
  position: absolute;
  top: -1.2rem;
  left: -0.5rem;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}

.testimonial-card__author strong { display: block; font-size: 0.82rem; }
.testimonial-card__author span   { display: block; font-size: 0.72rem; color: var(--muted); }

/* ── Services ────────────────────────────────────────────────────── */
.services-section {
  padding: var(--section-pad) 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}

.service-card {
  padding: 2rem;
  background: var(--dark);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.3s;
}

.service-card:hover { transform: translateY(-5px); }

.service-card--featured {
  border-color: rgba(212,32,32,.45);
  background: linear-gradient(145deg, var(--dark) 0%, rgba(212,32,32,.04) 100%);
}

.service-card__icon { font-size: 2rem; margin-bottom: 1rem; display: block; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  letter-spacing: 0.06em;
  margin-bottom: 0.7rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.7;
}

.service-card__badge {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.2rem 0.65rem;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  border-radius: 3px;
  background: rgba(255,255,255,0.05);
  color: var(--muted);
  text-transform: uppercase;
  font-family: var(--font-body);
}

.service-card--featured .service-card__badge {
  background: var(--red);
  color: var(--white);
}

/* ── Manifesto ───────────────────────────────────────────────────── */
.manifesto-section {
  padding: var(--section-pad) 1.5rem;
  background: #0c0606;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(212,32,32,.12);
  border-bottom: 1px solid rgba(212,32,32,.12);
}

.manifesto-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 28rem;
  opacity: 0.025;
  pointer-events: none;
  filter: blur(6px);
  animation: spin-slow 70s linear infinite;
  line-height: 1;
  color: var(--red);
  letter-spacing: -0.05em;
}

.manifesto-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.manifesto-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 4.5rem);
  letter-spacing: 0.1em;
  color: var(--red);
  margin: 0.75rem 0 2rem;
}

.manifesto-list {
  list-style: none;
  padding: 0;
  text-align: left;
  display: inline-block;
}

.manifesto-list li {
  font-size: clamp(0.82rem, 1.8vw, 0.96rem);
  padding: 0.65rem 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
  transition: color 0.2s, padding-left 0.2s;
  line-height: 1.6;
}

.manifesto-list li:last-child { border-bottom: none; }
.manifesto-list li:hover { color: var(--red); padding-left: 0.4rem; }

.manifesto-list li::before {
  content: '!!';
  font-family: var(--font-display);
  font-size: 0.9em;
  flex-shrink: 0;
  color: var(--red);
  opacity: 0.6;
  letter-spacing: -0.05em;
}

.manifesto-list em {
  color: var(--orange);
  font-style: normal;
}

/* ── CTA ─────────────────────────────────────────────────────────── */
.cta-section {
  padding: var(--section-pad) 1.5rem;
  text-align: center;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: var(--red);
  top: -270px; left: 50%;
  transform: translateX(-50%);
  filter: blur(120px);
  opacity: 0.08;
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: var(--orange);
  bottom: -100px; right: 8%;
  filter: blur(80px);
  opacity: 0.05;
  pointer-events: none;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  line-height: 1;
}

.cta-section p {
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  font-size: clamp(0.78rem, 1.6vw, 0.9rem);
  position: relative;
  z-index: 1;
  line-height: 1.8;
}

/* ── Footer ──────────────────────────────────────────────────────── */
.site-footer {
  padding: 3rem 1.5rem 2.5rem;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.site-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.footer-icon {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--red);
  opacity: 0.4;
  margin-bottom: 0.75rem;
  display: block;
  letter-spacing: 0.1em;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.footer-tagline strong { color: var(--red); }

.footer-copy {
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.footer-disclaimer {
  font-size: 0.66rem;
  color: var(--muted);
  opacity: 0.4;
  font-style: italic;
  line-height: 1.7;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .hero__title--people { font-size: clamp(3.5rem, 20vw, 6rem); }
  .hero__title--fucking { font-size: clamp(2.5rem, 14vw, 4.5rem); }
  .hero__title--suck { font-size: clamp(3.5rem, 20vw, 6rem); }
  .rx-content { padding: 2rem 1.5rem; }
  .manifesto-bg { font-size: 12rem; }
  .quote-bg-art { font-size: 10rem; }
}

/* ── Complaint Form ─────────────────────────────────────────────── */
#pfs-rx-content       { max-width: 600px; text-align: left; }
#pfs-rx-content h2    { text-align: center; }
#pfs-rx-content .rx-stamp { display: block; text-align: center; margin: 0 auto 1rem; }

/* Honeypot — visually hidden but not display:none (some bots skip those) */
.hp-field {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.cf-field { margin-bottom: 0.95rem; }

.cf-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.cf-opt {
  text-transform: none;
  letter-spacing: 0;
  font-style: italic;
  opacity: 0.7;
}

.cf-req { color: var(--red); margin-left: 2px; }

#complaint-form input[type="text"],
#complaint-form input[type="email"],
#complaint-form select,
#complaint-form textarea {
  width: 100%;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 5px;
  padding: 0.6rem 0.85rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  line-height: 1.5;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

#complaint-form select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%237a8a9a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  padding-right: 2rem;
}

#complaint-form select option { background: #1a1a1a; color: var(--white); }

#complaint-form input:focus,
#complaint-form select:focus,
#complaint-form textarea:focus {
  outline: none;
  border-color: rgba(212,32,32,.65);
  box-shadow: 0 0 0 3px rgba(212,32,32,.12);
}

#complaint-form textarea      { resize: vertical; min-height: 96px; }

#complaint-form input::placeholder,
#complaint-form textarea::placeholder { color: rgba(122,138,154,0.5); font-style: italic; }

.cf-error {
  font-size: 0.68rem;
  color: var(--bright);
  min-height: 1.1em;
  margin-top: 0.2rem;
  font-style: italic;
}

.cf-error--global { text-align: center; margin-bottom: 0.4rem; }

.cf-count {
  text-align: right;
  font-size: 0.63rem;
  color: var(--muted);
  opacity: 0.45;
  margin-top: 0.2rem;
}

.cf-submit {
  width: 100%;
  padding: 0.85rem 2rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: filter 0.2s, transform 0.2s;
  margin-top: 0.6rem;
}

.cf-submit:hover:not(:disabled) { filter: brightness(1.15); transform: translateY(-2px); }
.cf-submit:disabled              { opacity: 0.65; cursor: not-allowed; transform: none; }

.cf-submit__loading { display: none; }
.cf-submit.is-loading .cf-submit__text    { display: none; }
.cf-submit.is-loading .cf-submit__loading { display: inline; }

.cf-turnstile-wrap { margin: 0.75rem 0 0.25rem; display: flex; justify-content: center; }
