:root {
  --ink: #263238;
  --ink-soft: #546e7a;
  --paper: #f4faf9;
  --panel: #ffffff;
  --wash: #e0f5f2;
  --wash-alt: #d6f0ed;
  --cta: #0ca392;
  --cta-dark: #0a8a7b;
  --line: rgba(38, 50, 56, 0.14);
}

* {
  box-sizing: border-box;
  border-radius: 0 !important;
}

body {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

/* ── Header ── */

.topbar {
  width: 100%;
  padding: 0 clamp(16px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  position: static;
}

.brand-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  height: 36px;
  width: 36px;
  object-fit: contain;
  display: block;
}

.brand {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  line-height: 1;
}

.motto {
  margin: 0;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  line-height: 1;
}

.topbar nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.auth-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.auth-user-email {
  font-size: 0.84rem;
  color: var(--ink-soft);
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.topbar a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.nav-active {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--cta);
}

/* ── Buttons ── */

.button {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 20px;
  color: white;
  background: var(--cta);
  border: 1px solid transparent;
  transition: background 180ms ease;
}

.button:hover {
  background: var(--cta-dark);
}

.button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

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

.button-small {
  padding: 7px 14px;
}

.button-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.button-outline:hover {
  background: var(--wash);
}

/* ── Page layout ── */

main {
  width: 100%;
}

/* ── Hero ── */

.hero {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  padding: clamp(48px, 8vw, 100px) clamp(16px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.hero-content {
  flex: 1 1 0;
  min-width: 0;
}

.hero-image {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: clamp(24px, 5vw, 80px);
}

.hero-image img {
  width: clamp(280px, 44vw, 640px);
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }
  .hero-image {
    width: 100%;
    margin-right: 0;
  }
  .hero-image img {
    width: 100%;
  }
}

.tag {
  display: inline-block;
  margin: 0;
  padding: 4px 10px;
  background: rgba(12, 163, 146, 0.1);
  border: 1px solid rgba(12, 163, 146, 0.2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  color: var(--cta);
}

h1 {
  margin: 18px 0 12px;
  max-width: 22ch;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.05;
}

.subtitle {
  margin: 0;
  max-width: 56ch;
  line-height: 1.65;
  font-size: 1rem;
  color: var(--ink-soft);
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ── Feature grid ── */

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.card {
  background: var(--panel);
  border-right: 1px solid var(--line);
  padding: clamp(24px, 3vw, 48px) clamp(16px, 3vw, 40px);
}

.card:last-child {
  border-right: none;
}

.card h2 {
  margin: 0 0 12px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card p {
  margin: 0;
  line-height: 1.65;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ── Business / outcomes ── */

.business {
  padding: clamp(40px, 6vw, 80px) clamp(16px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: var(--wash);
}

.business h2 {
  margin: 0 0 16px;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.business ul {
  margin: 0 0 28px;
  padding-left: 20px;
  line-height: 2;
  color: var(--ink-soft);
  max-width: 60ch;
}

/* ── Unified value proposition ── */

.value-props {
  padding: clamp(40px, 7vw, 92px) clamp(16px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(5, 72, 64, 0.98) 0%, rgba(8, 105, 94, 0.98) 100%),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.03) 0px,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 30px
    );
  color: #e9f1ff;
}

.value-props-head {
  max-width: 74ch;
}

.value-props-head .tag {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: #d8e6ff;
}

.value-props-head h2 {
  margin: 18px 0 10px;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.12;
  max-width: 22ch;
}

.value-props-head p {
  margin: 0;
  color: rgba(233, 241, 255, 0.86);
  line-height: 1.75;
}

.value-props-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.value-props-grid article {
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.03);
}

.value-props-grid h3 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.value-props-grid p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.72;
  color: rgba(233, 241, 255, 0.84);
}

.value-props-cta {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.value-props .button-outline {
  color: #e9f1ff;
  border-color: rgba(255, 255, 255, 0.3);
}

.value-props .button-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* ── Support banner (home page) ── */

.support-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: clamp(28px, 4vw, 56px) clamp(16px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.support-banner h2 {
  margin: 0 0 6px;
  font-size: 1.2rem;
}

.support-banner p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.support-banner .button-outline {
  white-space: nowrap;
}

/* ── Docs page ── */

.docs-main {
  width: 100%;
  margin: 0;
}

.docs-intro {
  width: 100%;
  border: 1px solid var(--line);
  border-left: none;
  border-right: none;
  padding: clamp(20px, 3.5vw, 34px) clamp(16px, 4vw, 64px);
  background: var(--panel);
  margin-bottom: 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.docs-intro p {
  margin: 0;
  line-height: 1.5;
}

.docs-copy h1 {
  margin: 8px 0 6px;
  max-width: none;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.docs-kicker {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--cta);
}

.docs-subtitle {
  color: var(--ink-soft);
  max-width: 72ch;
}

.docs-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 0;
}

.docs-redoc {
  width: 100%;
  border: 1px solid var(--line);
  border-left: none;
  border-right: none;
  border-top: none;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfb 100%);
}

#redoc-reference {
  display: block;
  width: 100%;
  min-height: calc(100vh - 140px);
}

@media (max-width: 1024px) {
  .docs-intro {
    align-items: flex-start;
  }

  .docs-actions {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .docs-intro {
    padding: 18px 14px;
    gap: 14px;
  }

  .docs-copy h1 {
    font-size: 1.25rem;
    line-height: 1.2;
  }

  .docs-subtitle {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .docs-actions {
    gap: 8px;
  }

  .docs-actions .button,
  .docs-actions .button-outline {
    width: 100%;
    text-align: center;
  }

  .docs-redoc {
    border-left: 0;
    border-right: 0;
  }

  #redoc-reference {
    min-height: calc(100vh - 110px);
  }
}

/* ── Support page ── */

.support-main {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 48px);
}

/* ── Auth pages ── */

.auth-main {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 48px);
}

.auth-card {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: clamp(24px, 4vw, 40px);
}

.auth-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.auth-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.auth-form input {
  width: 100%;
  border: 1px solid var(--line);
  padding: 11px 12px;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: #ffffff;
}

.auth-form input:focus {
  border-color: var(--cta);
  outline: 2px solid rgba(12, 163, 146, 0.18);
  outline-offset: 1px;
}

.auth-switch {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.auth-switch a {
  color: var(--cta-dark);
  font-weight: 700;
}

.auth-divider {
  margin: 0;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

.auth-google-button {
  width: 100%;
  text-align: center;
}

/* ── Account page ── */

.account-main {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.account-card {
  border: 1px solid var(--line);
  padding: clamp(24px, 4vw, 40px);
  background: var(--panel);
}

.account-card h2 {
  margin: 0 0 16px;
  font-size: 1.05rem;
}

.account-details {
  margin-top: 22px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.account-details p {
  margin: 0 0 10px;
  color: var(--ink-soft);
}

/* ── Subscription section ── */

.sub-loading,
.sub-empty {
  color: var(--ink-soft);
  margin: 0;
}

.sub-empty a {
  color: var(--cta);
  text-decoration: underline;
}

.sub-details p {
  margin: 0 0 10px;
  color: var(--ink-soft);
}

.sub-status-badge {
  font-weight: 700;
  padding: 2px 8px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sub-actions {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.status-ok {
  color: #2e7d32;
  font-weight: 600;
}

.status-error {
  color: #c62828;
  font-weight: 600;
}

.status-active {
  color: #2e7d32;
}

.status-canceled {
  color: #c62828;
}

.status-expired {
  color: #ef6c00;
}

.support-card {
  border: 1px solid var(--line);
  padding: clamp(24px, 4vw, 40px);
  background: var(--panel);
}

.support-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.support-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 11px 12px;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: #ffffff;
}

.support-form textarea {
  resize: vertical;
  min-height: 160px;
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
  border-color: var(--cta);
  outline: 2px solid rgba(12, 163, 146, 0.18);
  outline-offset: 1px;
}

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

.captcha-row {
  margin-top: 4px;
}

.form-status {
  min-height: 1.3em;
  margin: 0;
  font-weight: 600;
}

.form-status.success {
  color: #2e7d32;
}

.form-status.error {
  color: #c62828;
}

/* ── Footer ── */

footer {
  width: 100%;
  padding: 20px clamp(16px, 4vw, 64px);
  border-top: 1px solid var(--line);
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.88rem;
  background: var(--panel);
}

footer a {
  color: var(--ink-soft);
  text-decoration: none;
}

footer a:hover {
  color: var(--ink);
}

.footer-copy {
  color: var(--ink-soft);
  margin-left: auto;
}

/* ── Privacy body prose ── */

.privacy-body {
  margin-top: 28px;
  line-height: 1.72;
  font-size: 0.95rem;
}

.privacy-body h2 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 32px 0 10px;
  color: var(--ink);
}

.privacy-body h3 {
  font-size: 0.8rem;
  font-weight: 700;
  margin: 18px 0 4px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.privacy-body p {
  margin: 0 0 12px;
  color: var(--ink-soft);
}

.privacy-body ul {
  margin: 0 0 12px;
  padding-left: 20px;
  color: var(--ink-soft);
}

.privacy-body a {
  color: var(--cta);
  text-decoration: underline;
}

/* ── Form privacy note ── */

.form-privacy {
  margin: 0;
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.form-privacy a {
  color: var(--ink-soft);
  text-decoration: underline;
}

/* ── Reveal animation ── */

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
}

.reveal.visible {
  animation: rise-in 550ms ease-out both;
}

/* ── Responsive ── */

@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .card {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .card:last-child {
    border-bottom: none;
  }

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

@media (max-width: 600px) {
  .topbar nav {
    gap: 10px;
  }

  .button {
    width: 100%;
    text-align: center;
  }

  .button-small {
    width: auto;
  }

  .captcha-row {
    overflow-x: auto;
  }

  .footer-copy {
    margin-left: 0;
    width: 100%;
  }

  .value-props-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Plans page ── */

.plans-main {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 48px);
}

.plans-hero {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.plans-hero h1 {
  margin: 8px 0 12px;
}

.plans-empty {
  text-align: center;
  color: var(--ink-soft);
  padding: 48px 0;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.plan-card {
  background: var(--panel);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 3vw, 36px);
}

.plan-card-top {
  flex: 1;
}

.plan-name {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.plan-description {
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 20px;
}

.plan-amount {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--cta-dark);
}

.plan-interval {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.plan-features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.plan-features li {
  padding: 5px 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.plan-features li::before {
  content: "✓ ";
  color: var(--cta);
  font-weight: 700;
}

.plan-features-loading {
  color: var(--ink-soft);
  font-style: italic;
}

.plan-features-loading::before {
  content: none;
}

.plan-card-actions {
  margin-top: auto;
}

.plan-subscribe-btn {
  width: 100%;
  text-align: center;
}

.plan-status-msg {
  margin: 8px 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  min-height: 1.2em;
}

/* ── Admin page ── */

.admin-main {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 56px) clamp(16px, 4vw, 48px);
}

.admin-header-section {
  margin-bottom: 24px;
}

.admin-key-gate {
  max-width: 420px;
}

.admin-key-gate p {
  color: var(--ink-soft);
  margin-bottom: 12px;
}

.admin-key-form {
  display: flex;
  gap: 8px;
}

.admin-key-form .input-field {
  flex: 1;
}

.admin-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--line);
  margin-bottom: 28px;
}

.admin-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  padding: 10px 22px;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  transition: color 180ms;
}

.admin-tab:hover {
  color: var(--ink);
}

.admin-tab-active {
  color: var(--cta-dark);
  border-bottom-color: var(--cta);
}

.admin-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.admin-section-header h2 {
  margin: 0;
  font-size: 1rem;
}

.admin-form {
  display: grid;
  gap: 10px;
  max-width: 700px;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: clamp(16px, 3vw, 28px);
  margin-bottom: 24px;
}

.admin-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 2px;
}

.admin-form-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}

.admin-form-row > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.admin-form-actions {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.admin-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
}

.plan-features-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 8px 0;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.admin-table th {
  text-align: left;
  padding: 8px 12px;
  background: var(--wash);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}

.admin-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.admin-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.admin-versions-toggle-row {
  background: var(--wash-alt);
}

.admin-versions-toggle-cell {
  padding: 8px !important;
}

.admin-versions-toggle {
  background: none;
  border: none;
  padding: 4px 8px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 6px;
}

.admin-versions-toggle:hover {
  color: var(--ink);
  background: var(--wash);
}

.toggle-icon {
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}

.admin-version-row {
  background: var(--wash-alt);
}

.admin-version-row td {
  padding: 8px 12px;
  font-size: 0.9rem;
}

.version-indent {
  color: var(--ink-soft);
  margin-right: 4px;
}

.version-badge {
  background: var(--wash);
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 3px;
  display: inline-block;
}

.version-name {
  color: var(--ink-soft);
  font-style: italic;
}

.admin-list {
  background: var(--panel);
  border: 1px solid var(--line);
}

.admin-loading,
.admin-empty,
.admin-placeholder {
  padding: 24px 16px;
  color: var(--ink-soft);
  margin: 0;
  font-style: italic;
}

.admin-uid {
  font-size: 0.78rem;
  font-family: monospace;
  word-break: break-all;
}

.admin-filter-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.input-field {
  width: 100%;
  border: 1px solid var(--line);
  padding: 9px 12px;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: #ffffff;
}

.input-field:focus {
  border-color: var(--cta);
  outline: 2px solid rgba(12, 163, 146, 0.18);
  outline-offset: 1px;
}

.input-field-small {
  width: auto;
  padding: 6px 10px;
}

.button-danger {
  color: #c62828;
  border-color: rgba(198, 40, 40, 0.3);
}

.button-danger:hover {
  background: rgba(198, 40, 40, 0.06);
}

.status-badge {
  display: inline-block;
  padding: 2px 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 640px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }

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

  .admin-table th:nth-child(n+4),
  .admin-table td:nth-child(n+4) {
    display: none;
  }
}
