:root {
  --bg: #020615;
  --bg-alt: #040b1a;
  --card: #070d1a;
  --primary: #5a8cff;
  --primary-soft: rgba(90, 140, 255, 0.14);
  --primary-strong: #2a6be3;
  --text: #e6f0ff;
  --muted: #9fb1cc;
  --border: #132347;
  --danger: #e1e7ff;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 999px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.85);
  --shadow-small: 0 8px 20px rgba(0, 0, 0, 0.8);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --t-fast: 120ms;
  --t-normal: 180ms;
  --focus: rgba(42, 107, 227, 0.9);
  --accent: #3a84f4;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(1200px 600px at 20% -10%, #08122c 0%, transparent 60%),
    radial-gradient(1000px 500px at 80% 0%, #061227 0%, transparent 55%),
    linear-gradient(180deg, #040b1a 0%, #020615 55%, #000000 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: linear-gradient(to bottom, rgba(6, 14, 36, 0.95), rgba(6, 14, 36, 0.82), transparent);
  border-bottom: 1px solid rgba(42, 107, 227, 0.25);
}
@supports not (backdrop-filter: blur(2px)) {
  .site-header {
    background: rgba(6, 14, 36, 0.92);
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 30% 70% 60% 40%;
  background: conic-gradient(from 220deg, #1f4fa3, #3ba5ff, #7dbaff, #1f4fa3);
  box-shadow: var(--shadow-small);
  font-size: 0.75rem;
}

.logo-text {
  font-size: 0.95rem;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
}
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: #000000;
  color: #e5e7eb;
  border: 1px solid #1f1f1f;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), var(--shadow-small);
  font-size: 18px;
}

.nav a {
  padding: 0.4rem 0.1rem;
  color: var(--muted);
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--primary), var(--primary-strong));
  transition: width var(--t-fast) var(--ease);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  width: 100%;
}

/* removed special highlight for Licenses to avoid constant white marker */

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
/* Login Button standardmäßig verstecken – wird nur für nicht eingeloggte Nutzer gezeigt */
/* show Login by default; JS will toggle visibility based on auth state */

.header-actions .btn-primary,
.header-actions .btn-secondary {
  padding: 0.55rem 1.0rem;
}

.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}

.hero-text p {
  margin: 0;
  color: var(--muted);
  max-width: 32rem;
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  will-change: transform, box-shadow;
}

.btn-primary {
  background: #000000;
  color: #ffffff;
  border-color: #1f1f1f;
  box-shadow: none;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(20, 60, 140, 0.35);
  border-color: rgba(90, 140, 220, 0.6);
}

.btn-secondary {
  background: #000000;
  color: #ffffff;
  border-color: #1f1f1f;
  box-shadow: none;
}

.btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(20, 60, 140, 0.35);
  border-color: rgba(90, 140, 220, 0.6);
}

.btn-primary:active,
.btn-secondary:active {
  transform: translateY(0);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 10px 20px rgba(0, 0, 0, 0.6);
}

.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.back-arrow:focus-visible,
.nav a:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}
.btn-primary[disabled],
.btn-secondary[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.back-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #000000;
  color: #e5e7eb;
  border: 1px solid #1f1f1f;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), var(--shadow-small);
  font-size: 18px;
  line-height: 1;
}
.back-arrow:hover {
  background: #000000;
  color: #ffffff;
  transform: translateY(-2px);
}
.page-head .back-arrow {
  margin-right: 0.6rem;
}

.btn-full {
  width: 100%;
}

.btn-primary::before,
.btn-secondary::before {
  content: "";
  display: none;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-badges span {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(20, 40, 90, 0.9);
  border: 1px solid rgba(70, 120, 200, 0.9);
}

.hero-card {
  background: radial-gradient(circle at top, #0f1e3f 0, #09132b 55%, #09132b 100%);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(70, 120, 200, 0.35);
  box-shadow: var(--shadow-soft);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.badge {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(70, 120, 200, 0.18);
  color: #e5e7eb;
  font-size: 0.78rem;
  border: 1px solid rgba(70, 120, 200, 0.8);
}

.price {
  font-size: 1.3rem;
  font-weight: 600;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
  display: grid;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-list li::before {
  content: "◆";
  margin-right: 0.45rem;
  color: var(--primary);
  font-size: 0.75rem;
}

.hero-note {
  margin: 0.8rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: radial-gradient(circle at top, #0f1e3f 0, #07102a 40%, #000 100%);
}

.section h2 {
  margin: 0 0 0.75rem;
  font-size: 1.6rem;
}

.section p {
  color: var(--muted);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.8rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.8rem;
}

.card {
  display: block;
  background: rgba(10, 16, 35, 0.95);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.3rem;
  border: 1px solid rgba(70, 120, 200, 0.55);
  box-shadow: var(--shadow-small);
}
.card-media {
  height: 140px;
  border-radius: var(--radius-md);
  margin-bottom: 0.9rem;
  border: 1px solid rgba(70, 120, 200, 0.55);
  box-shadow: var(--shadow-small);
}
.card-media {
  background-size: cover;
  background-position: center;
}
.afk-media {
  background-image:
    linear-gradient(rgba(10,16,35,0.55), rgba(10,16,35,0.55)),
    url("https://cdn.discordapp.com/attachments/1471592325686890619/1475191064762781787/macbook-pro-wallpaper.jpg?ex=699c963d&is=699b44bd&hm=e984edbabd5ae3ea07fe94dbf9bd3df828b0694c04e4591244fab9b578b822b7&");
  background-color: #0b1630;
}
.discord-media {
  background-image:
    linear-gradient(rgba(20,10,45,0.65), rgba(20,10,45,0.65)),
    url("https://images.unsplash.com/photo-1518773553398-650c184e0bb3?auto=format&fit=crop&w=1200&q=80");
}
.card:hover {
  border-color: rgba(90, 140, 220, 0.9);
  box-shadow: 0 16px 36px rgba(20, 60, 140, 0.35);
  transform: translateY(-2px);
  transition: transform var(--t-normal) var(--ease), box-shadow var(--t-normal) var(--ease), border-color var(--t-normal) var(--ease);
  will-change: transform, box-shadow;
}
.table-row:hover {
  border-color: rgba(180, 180, 180, 0.95);
  box-shadow: 0 12px 28px rgba(0,0,0,0.75);
  transform: translateY(-1px);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}

.card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  font-size: 0.9rem;
}

.tier-grid .blocked {
  pointer-events: none;
  opacity: 0.55;
  filter: saturate(0.3);
  cursor: not-allowed;
}

.tier-card .btn-primary,
.tier-card .btn-secondary {
  background: linear-gradient(135deg, #0f1e3f, #09132b);
  color: var(--text);
  border-color: rgba(70, 120, 200, 0.55);
  box-shadow: none;
}
.tier-card .btn-primary:hover,
.tier-card .btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 2px rgba(90, 140, 220, 0.35), 0 18px 44px rgba(20, 60, 140, 0.35);
  border-color: rgba(90, 140, 220, 0.6);
}

.page-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.status-chip {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(70, 120, 200, 0.16);
  border: 1px solid rgba(70, 120, 200, 0.7);
  color: #e5e7eb;
  font-size: 0.85rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1rem 0 1.2rem;
}

.stat-card {
  background: rgba(10, 16, 35, 0.95);
  border-radius: var(--radius-md);
  padding: 1rem 1rem;
  border: 1px solid rgba(70, 120, 200, 0.55);
  box-shadow: var(--shadow-small);
  text-align: center;
}

.stat-value {
  font-size: 1.4rem;
  font-weight: 600;
}

.stat-label {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.form {
  display: grid;
  gap: 0.8rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.input label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.input input,
.input select {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(70, 120, 200, 0.45);
  background: rgba(12, 20, 45, 0.9);
  color: var(--text);
}
.input input:focus,
.input select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(77, 163, 255, 0.25);
}

.btn-group {
  display: flex;
  gap: 0.6rem;
}

.table {
  display: grid;
  gap: 0.6rem;
}

.table-row {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr 1fr 0.9fr;
  gap: 0.6rem;
  align-items: center;
  background: rgba(10, 16, 35, 0.95);
  border: 1px solid rgba(70, 120, 200, 0.55);
  border-radius: var(--radius-md);
  padding: 0.6rem 0.7rem;
}

.table-actions {
  display: flex;
  gap: 0.5rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.steps {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.steps li + li {
  margin-top: 0.35rem;
}

.info-box {
  background: rgba(60, 60, 60, 0.3);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.2rem;
  border: 1px solid rgba(160, 160, 160, 0.8);
  box-shadow: var(--shadow-small);
}

.info-box h3 {
  margin: 0 0 0.6rem;
  font-size: 1rem;
}

.info-box p {
  margin: 0;
  font-size: 0.9rem;
}

.buy-section {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.buy-text p {
  margin-top: 0.5rem;
  font-size: 0.94rem;
}

.buy-list {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 0;
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.buy-list li::before {
  content: "✔";
  margin-right: 0.45rem;
  color: var(--primary);
  font-size: 0.78rem;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.tier-grid-home {
  grid-template-columns: repeat(2, minmax(260px, 1fr));
}
@media (max-width: 640px) {
  .tier-grid-home {
    grid-template-columns: 1fr;
  }
}
.tier-grid-afk {
  grid-template-columns: repeat(2, minmax(260px, 1fr));
}
.tier-grid-afk .tier-25 {
  grid-column: 2;
}
@media (max-width: 640px) {
  .tier-grid-afk {
    grid-template-columns: 1fr;
  }
  .tier-grid-afk .tier-25 {
    grid-column: auto;
  }
}

.tier-card {
  background:
    radial-gradient(600px 300px at 20% -10%, #08122c 0%, transparent 60%),
    radial-gradient(500px 250px at 80% 0%, #061227 0%, transparent 55%),
    rgba(10, 16, 35, 0.95);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem 1.3rem;
  border: 1px solid rgba(70, 120, 200, 0.35);
  box-shadow: var(--shadow-soft);
  transition: transform var(--t-normal) var(--ease), box-shadow var(--t-normal) var(--ease), border-color var(--t-normal) var(--ease);
  will-change: transform, box-shadow;
}
.tier-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(20,60,140,0.35);
  border-color: rgba(90, 140, 220, 0.5);
}
.status-chip {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 6px 14px rgba(0,0,0,0.6);
}

.tier-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  padding: 0.5rem 0.6rem;
  border-radius: var(--radius-md);
  background: rgba(12, 20, 45, 0.6);
  border: 1px solid rgba(70, 120, 200, 0.5);
}

.tier-accounts {
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
}

.tier-price {
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text);
}

.tier-text {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.tier-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem;
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.tier-list li::before {
  content: "◆";
  margin-right: 0.45rem;
  color: var(--primary);
  font-size: 0.7rem;
}

.buy-note-center {
  text-align: center;
  margin-top: 1.8rem;
}

.dash-actions {
  margin: 1rem 0 1.2rem;
}

.dash-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1rem;
}
.dash-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.dash-card {
  background: rgba(10, 16, 35, 0.95);
  border-radius: var(--radius-md);
  padding: 1rem 1rem;
  border: 1px solid rgba(70, 120, 200, 0.55);
  box-shadow: var(--shadow-small);
}
.dash-card:hover {
  border-color: rgba(90, 140, 220, 0.9);
  box-shadow: 0 18px 44px rgba(20, 60, 140, 0.35);
  transform: translateY(-1px);
  transition: all 0.12s ease-out;
}

.dash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.dash-actions-row {
  display: flex;
  gap: 0.6rem;
}
.account-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 1rem;
}

.account-form input {
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(90, 90, 90, 0.6);
  background: rgba(26, 26, 26, 0.9);
  color: var(--text);
}

.account-form .chk {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 900px) {
  .account-form {
    grid-template-columns: minmax(0, 1fr);
  }
}
.stat-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.form-row {
  grid-template-columns: minmax(0, 1fr);
}
.discord-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.discord-text p {
  margin: 0.6rem 0 1.2rem;
  font-size: 0.94rem;
}

.discord-button {
  padding-left: 1.6rem;
  padding-right: 1.6rem;
}

.card h3 {
  margin-top: 0;
}

.account-form input {
  outline: none;
}

.section-alt#admin .card + .card {
  margin-top: 1.2rem;
}
.buy-box {
  background: rgba(10, 20, 50, 0.95);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem 1.4rem;
  border: 1px solid rgba(70, 120, 200, 0.65);
  box-shadow: var(--shadow-soft);
}

.buy-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}

.buy-label {
  font-weight: 500;
}

.buy-price {
  font-size: 1.4rem;
  font-weight: 600;
}

.buy-note {
  margin: 0.8rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.faq-item + .faq-item {
  margin-top: 1.1rem;
}

.faq-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.faq-item p {
  margin: 0;
  font-size: 0.9rem;
}

.site-footer {
  border-top: 1px solid rgba(60, 120, 220, 0.35);
  padding: 1.4rem 0 1.7rem;
  background: rgba(8, 18, 50, 0.98);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.footer-links a {
  color: var(--muted);
}

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

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.6rem;
  }

  .hero-card {
    width: 100%;
    margin-top: 1rem;
  }

  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }
  .tier-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
  }

  .split {
    grid-template-columns: minmax(0, 1fr);
  }

  .buy-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .dash-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .page-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }
}

@media (max-width: 720px) {
  .dash-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .dash-card {
    padding: 1.2rem 1.1rem;
  }
  .dash-actions-row .btn-primary,
  .dash-actions-row .btn-secondary {
    flex: 1 1 auto;
  }
  .header-inner {
    padding: 0.8rem 0.3rem;
    flex-wrap: wrap;
  }
  .site-header {
    position: static;
  }

  .nav {
    display: none;
    width: 100%;
  }
  .nav.open {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.8rem;
    padding-top: 0.4rem;
  }
  .nav-toggle {
    display: inline-flex;
  }
  
  .header-actions .btn-primary,
  .header-actions .btn-secondary {
    padding: 0.5rem 0.9rem;
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 3.2rem;
  }
  .hero-text h1 {
    font-size: clamp(1.7rem, 6vw, 2.2rem);
    line-height: 1.2;
    margin-bottom: 0.8rem;
  }
  .hero-text p {
    max-width: none;
    font-size: 0.95rem;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
  }
  .hero-card {
    margin-top: 1rem;
    width: 100%;
  }
  .tier-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .container {
    padding: 0 1.1rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .stat-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .table-row {
    grid-template-columns: minmax(0, 1fr);
  }
  .table-actions {
    flex-wrap: wrap;
  }
  .card + .card {
    margin-top: 1rem;
  }
  .section {
    padding: 2.5rem 0;
  }
  .section h2 {
    font-size: 1.35rem;
  }
  .status-chip {
    font-size: 0.83rem;
  }
  .grid-2 {
    gap: 1.1rem;
  }
  .card {
    padding: 1.2rem 1.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-primary,
  .btn-secondary,
  .card,
  .tier-card,
  .back-arrow,
  .nav a::after {
    transition: none;
    transform: none;
  }
  .table-row {
    transition: none;
  }
}
