/**
 * Rate Card page styles.
 *
 * Loaded only on the "Rate Card Page" template (see sectormadeit_enqueue_assets).
 * Everything is scoped under .rate-card so it never leaks into the rest of the
 * theme, and so it wins over the Tailwind base layer's h1 / h3 / p rules.
 */

.rate-card {
  --rc-bg:       #121218;
  --rc-panel:    #1b1b24;
  --rc-panel-2:  #20202b;
  --rc-hairline: #33333f;
  --rc-text:     #ece6d8;
  --rc-text-dim: #9a97a3;
  --rc-amber:    #e8a13c;
  --rc-red:      #d6524a;

  background-color: var(--rc-bg);
  background-image:
    radial-gradient(circle at 15% 0%,   rgba(232, 161, 60, 0.06), transparent 40%),
    radial-gradient(circle at 85% 100%, rgba(214, 82, 74, 0.05),  transparent 40%);
  color: var(--rc-text);
  font-family: 'Inter', 'Montserrat', sans-serif;
  font-size: 16px;
  min-height: 100vh;
  padding: 160px 20px 80px;
  display: flex;
  justify-content: center;
}

.rate-card * { box-sizing: border-box; }

.rate-card .sheet {
  width: 100%;
  max-width: 640px;
}

/* ── Header ────────────────────────────────────────────────────────────────── */

.rate-card .rate-card-header {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rc-hairline);
  margin-bottom: 36px;
}

.rate-card .rec-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.rate-card .rec-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rc-red);
  box-shadow: 0 0 8px 1px rgba(214, 82, 74, 0.7);
  animation: rc-pulse 2.4s ease-in-out infinite;
}

@keyframes rc-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}

@media (prefers-reduced-motion: reduce) {
  .rate-card .rec-dot { animation: none; }
}

.rate-card .rec-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  color: #d8d4e0;
  text-transform: uppercase;
}

.rate-card .studio-name {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #0e0e13;
  background: #f4f1e8;
  padding: 5px 11px;
  border-radius: 3px;
  margin-bottom: 12px;
}

.rate-card h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 8vw, 46px);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.05;
  color: #ffffff;
  margin: 0;
}

.rate-card h1 span {
  color: var(--rc-red);
  text-shadow: 0 0 20px rgba(214, 82, 74, 0.55);
}

.rate-card .subhead {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  color: #c9c4d4;
  margin-top: 10px;
  letter-spacing: 0.5px;
}

.rate-card .contact-row {
  margin-top: 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--rc-amber);
  text-shadow: 0 0 10px rgba(232, 161, 60, 0.4);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.rate-card .contact-row a {
  color: inherit;
  text-decoration: none;
}

.rate-card .contact-row a:hover { text-decoration: underline; }

.rate-card .contact-divider { color: #56526a; }

/* ── Channel strip sections ────────────────────────────────────────────────── */

.rate-card .bank { margin-bottom: 34px; }

.rate-card .bank-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rc-amber);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.rate-card .bank-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rc-hairline);
}

.rate-card .strip {
  background: var(--rc-panel);
  border: 1px solid var(--rc-hairline);
  border-left: 3px solid var(--rc-amber);
  border-radius: 3px;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
  transition: background 0.15s ease;
}

.rate-card .strip.alt { border-left-color: var(--rc-red); }

.rate-card .strip:last-child { margin-bottom: 0; }

.rate-card .strip-info { min-width: 0; }

.rate-card .strip-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 16.5px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--rc-text);
}

.rate-card .strip-meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--rc-text-dim);
  margin-top: 3px;
  letter-spacing: 0.5px;
}

.rate-card .strip-price {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 19px;
  color: var(--rc-amber);
  background: #0e0e13;
  border: 1px solid var(--rc-hairline);
  padding: 6px 12px;
  border-radius: 3px;
  white-space: nowrap;
  text-shadow: 0 0 12px rgba(232, 161, 60, 0.35);
}

.rate-card .strip.alt .strip-price {
  color: var(--rc-red);
  text-shadow: 0 0 12px rgba(214, 82, 74, 0.35);
}

.rate-card .strip-price sub {
  font-size: 10px;
  color: var(--rc-text-dim);
  text-shadow: none;
  margin-left: 3px;
  bottom: 0;
}

/* ── Bulletin note ─────────────────────────────────────────────────────────── */

.rate-card .note {
  background: var(--rc-panel-2);
  border: 1px solid var(--rc-hairline);
  border-radius: 3px;
  padding: 14px 16px 14px 14px;
  margin-top: 8px;
}

.rate-card .note-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rc-amber);
  margin-bottom: 8px;
}

.rate-card .note ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rate-card .note li {
  font-family: 'Inter', 'Montserrat', sans-serif;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--rc-text);
  padding-left: 16px;
  position: relative;
  margin-bottom: 8px;
}

.rate-card .note li:last-child { margin-bottom: 0; }

.rate-card .note li::before {
  content: "\25B8";
  position: absolute;
  left: 0;
  color: var(--rc-red);
}

/* ── Footer ────────────────────────────────────────────────────────────────── */

.rate-card .rate-card-footer {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--rc-hairline);
  text-align: center;
}

.rate-card .rate-card-footer p {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--rc-text-dim);
  letter-spacing: 1px;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 640px) {
  .rate-card { padding-top: 120px; }
}

@media (max-width: 420px) {
  .rate-card .strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .rate-card .strip-price { align-self: flex-end; }
}
