/* ============================================================
   Islamify v2 — page-specific styles
   Home, Pricing, Login. One file, clearly sectioned.
   ============================================================ */


/* =============================================================
   HOME
   ============================================================= */

/* Hero split: copy left, preview card right */
.home-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0 40px;
}
.home-hero .copy h1 {
  font-size: clamp(40px, 4.8vw, 60px);
  font-weight: 500;
  letter-spacing: -0.028em;
  line-height: 1.02;
  margin: 20px 0 24px;
}
.home-hero .copy h1 em {
  font-style: normal;
  color: var(--brand-ink);
}
.home-hero .copy .lede {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 56ch;
  line-height: 1.55;
  margin-bottom: 32px;
}
.home-hero .copy .ctas {
  display: flex; gap: 12px; margin-bottom: 20px;
  flex-wrap: wrap;
}
.home-hero .copy .trust-micro {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-subtle);
  letter-spacing: 0.06em;
  line-height: 1.6;
  max-width: 50ch;
}

/* Preview card — frosted glass with teal depth */
.home-hero .preview {
  background:
    linear-gradient(180deg,
      color-mix(in oklab, var(--bg-card) 80%, transparent) 0%,
      var(--glass-bg) 100%);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}
.home-hero .preview::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.6) 50%,
    transparent 100%);
  pointer-events: none;
}
[data-theme="dark"] .home-hero .preview::before {
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(129, 251, 255, 0.25) 50%,
    transparent 100%);
}
.home-hero .preview::after {
  content: "";
  position: absolute;
  top: -40%; right: -20%;
  width: 200px; height: 200px;
  background: radial-gradient(circle,
    rgba(129, 251, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.home-hero .preview .head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 16px; margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.home-hero .preview .head .t {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.1em; color: var(--text-subtle);
  text-transform: uppercase;
}
.home-hero .preview .head .dots { display: flex; gap: 4px; }
.home-hero .preview .head .dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border-strong);
}
.home-hero .preview .u-msg {
  background: var(--brand); color: #fff;
  padding: 10px 14px; border-radius: 14px 14px 4px 14px;
  font-size: 13.5px;
  margin-left: auto;
  max-width: 80%;
  display: inline-block;
  float: right; clear: both;
}
[data-theme="dark"] .home-hero .preview .u-msg { color: #0a1518; }
.home-hero .preview .ai-msg {
  clear: both; padding: 16px 0 8px;
  font-size: 13.5px; line-height: 1.6;
  color: var(--text);
}
.home-hero .preview .ai-msg .ayah-mini {
  margin: 14px 0;
  padding: 14px 16px;
  background: var(--bg-soft);
  border-inline-start: 2px solid var(--brand);
  border-radius: 0 10px 10px 0;
}
.home-hero .preview .ayah-mini .ar {
  font-family: var(--font-quran); font-size: 18px;
  direction: rtl; line-height: 1.9;
  margin-bottom: 6px; color: var(--text);
}
.home-hero .preview .ayah-mini .rf {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text-subtle); letter-spacing: 0.08em;
  text-transform: uppercase;
}
.home-hero .preview .scholar-badge {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 12px;
  padding: 4px 10px; border-radius: 999px;
  background: color-mix(in oklab, var(--brand) 12%, transparent);
  font-size: 11px; color: var(--brand-ink);
  font-family: var(--font-mono); letter-spacing: 0.05em;
}
[data-theme="dark"] .home-hero .preview .scholar-badge {
  color: var(--brand-ink);
}
.home-hero .preview .scholar-badge svg { flex-shrink: 0; }

@media (max-width: 960px) {
  .home-hero { grid-template-columns: 1fr; gap: 48px; padding: 48px 0 20px; }
  .home-hero .preview { max-width: 520px; margin: 0 auto; }
}

/* Features grid (4 cards) */
.home-features {
  padding: 80px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 960px) {
  .home-features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .home-features { grid-template-columns: 1fr; }
}

/* Trust section (Shura) */
.home-trust {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.home-trust .wrap {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; align-items: start;
}
.home-trust .wrap h2 {
  font-size: clamp(30px, 3vw, 42px);
  letter-spacing: -0.02em;
}
.home-trust .wrap .prose p {
  font-size: 17px; line-height: 1.65;
  color: var(--text);
  max-width: 62ch;
}
.home-trust .wrap .prose p.muted { color: var(--text-muted); font-size: 15.5px; }
@media (max-width: 860px) {
  .home-trust .wrap { grid-template-columns: 1fr; gap: 32px; }
}

/* Halal-Tech pledge */
.home-pledge {
  padding: 64px 0;
  border-top: 1px solid var(--border);
}
.home-pledge h2 {
  font-size: 24px;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.home-pledge ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px 48px;
  max-width: 800px;
}
.home-pledge ul li {
  font-size: 16.5px;
  color: var(--text);
  line-height: 1.5;
  padding-inline-start: 24px;
  position: relative;
}
.home-pledge ul li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0; top: 0.7em;
  width: 14px; height: 1px;
  background: var(--brand);
}
.home-pledge ul li strong { font-weight: 600; }
@media (max-width: 720px) {
  .home-pledge ul { grid-template-columns: 1fr; }
}

/* Pricing teaser (compact 4-tier row) */
.home-pricing-teaser {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.home-pricing-teaser h2 {
  font-size: clamp(28px, 2.6vw, 36px);
  margin-bottom: 16px;
}
.home-pricing-teaser > p {
  color: var(--text-muted);
  max-width: 56ch;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.55;
}
.home-pricing-teaser .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
  text-align: start;
}
.home-pricing-teaser .tc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  transition: border-color 0.15s ease, transform 0.08s ease;
}
.home-pricing-teaser .tc:hover { border-color: var(--brand); }
.home-pricing-teaser .tc .ar {
  font-family: var(--font-quran);
  font-size: 28px;
  color: var(--brand);
  direction: rtl;
  line-height: 1;
  margin-bottom: 10px;
}
.home-pricing-teaser .tc .nm {
  font-family: var(--font-sans);
  font-weight: 600; font-size: 16px;
  letter-spacing: -0.01em;
}
.home-pricing-teaser .tc .mn {
  font-size: 12px; color: var(--text-muted);
  font-style: italic; margin: 2px 0 10px;
}
.home-pricing-teaser .tc .pr {
  font-family: var(--font-sans);
  font-weight: 500; font-size: 20px;
  letter-spacing: -0.02em;
}
.home-pricing-teaser .tc .pr small {
  font-size: 11px; color: var(--text-muted);
  font-weight: 400; font-family: var(--font-mono); letter-spacing: 0.04em;
}
@media (max-width: 960px) {
  .home-pricing-teaser .row { grid-template-columns: repeat(2, 1fr); }
}

/* Final CTA */
.home-finalcta {
  padding: 80px 0 40px;
  text-align: center;
}
.home-finalcta h2 {
  font-size: clamp(32px, 3vw, 44px);
  max-width: 22ch; margin: 0 auto 24px;
}
.home-finalcta .sub {
  color: var(--text-muted); font-size: 16px;
  margin-bottom: 28px;
  max-width: 48ch; margin-left: auto; margin-right: auto;
}

/* =============================================================
   PRICING
   ============================================================= */

.pricing-page {
  max-width: 1080px; margin: 0 auto;
  padding: 56px 32px 80px;
}
.pricing-page .trial-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 999px;
  background: var(--brand-soft); color: var(--brand-ink);
  font-family: var(--font-mono); font-size: 12px;
  font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 32px;
  border: 1px solid color-mix(in oklab, var(--brand) 20%, transparent);
}
[data-theme="dark"] .pricing-page .trial-badge { color: var(--brand-ink); }
.pricing-page h1 {
  font-size: clamp(36px, 4.4vw, 54px);
  font-weight: 500; letter-spacing: -0.025em;
  margin-bottom: 20px; line-height: 1.05;
  max-width: 22ch;
  text-wrap: balance;
}
.pricing-page > .lede {
  font-size: 18px; color: var(--text-muted);
  max-width: 60ch; line-height: 1.55;
  margin-bottom: 40px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 880px;
  margin-bottom: 32px;
}
.tier {
  padding: 30px 28px 26px;
  background: linear-gradient(180deg,
    var(--bg-card) 0%,
    color-mix(in oklab, var(--bg-card) 97%, var(--teal-500)) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.2s ease, border-color 0.15s ease;
}
.tier::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.6) 0%,
    transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
[data-theme="dark"] .tier::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}
.tier:hover {
  border-color: color-mix(in oklab, var(--brand) 30%, var(--border));
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.tier.featured {
  border: 1px solid var(--brand);
  background: linear-gradient(180deg,
    var(--brand-soft) 0%,
    var(--bg-card) 160px);
  box-shadow: var(--shadow-glow);
}
[data-theme="dark"] .tier.featured {
  background: linear-gradient(180deg, #0c2b31 0%, var(--bg-card) 160px);
}
.tier.featured:hover {
  transform: translateY(-4px);
  box-shadow:
    var(--shadow-glow),
    0 30px 80px -20px rgba(14, 116, 144, 0.3);
}
.tier.beitrag {
  border: 1px dashed var(--brand);
}
.tier .head {
  border-bottom: 1px dashed var(--border);
  padding-bottom: 20px;
}
.tier .ar {
  font-family: var(--font-quran); font-size: 48px;
  color: var(--brand); line-height: 1; direction: rtl;
  margin-bottom: 12px;
}
.tier .nm {
  font-family: var(--font-sans); font-weight: 600;
  font-size: 22px; letter-spacing: -0.015em;
}
.tier .mg {
  font-size: 13px; color: var(--text-muted);
  font-style: italic; margin-top: 4px;
}
.tier .pr {
  font-family: var(--font-sans); font-size: 36px;
  font-weight: 500; letter-spacing: -0.025em;
}
.tier .pr small {
  font-size: 14px; color: var(--text-muted);
  font-weight: 400; margin-left: 4px;
}
.tier .desc {
  font-size: 15px; color: var(--text);
  line-height: 1.6;
}
.tier .desc strong { color: var(--text); font-weight: 600; }
.tier .cta { margin-top: auto; padding-top: 8px; }
.tier .badge-beitrag {
  position: absolute; top: 14px; inset-inline-end: 14px;
  font-family: var(--font-mono); font-size: 10px;
  padding: 4px 10px; border-radius: 999px;
  background: var(--brand); color: #fff;
  letter-spacing: 0.1em; text-transform: uppercase;
}
[data-theme="dark"] .tier .badge-beitrag { color: #0a1518; }

/* Access-card (Muḥsin gift) — glass + teal halo */
.access-card {
  max-width: 880px;
  padding: 28px 32px;
  border: 1px dashed var(--brand);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse 60% 80% at 0% 100%,
      rgba(129, 251, 255, 0.18) 0%, transparent 60%),
    var(--brand-soft);
  margin-bottom: 48px;
  display: flex; gap: 24px; align-items: flex-start;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.access-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
  pointer-events: none;
}
[data-theme="dark"] .access-card {
  background:
    radial-gradient(ellipse 60% 80% at 0% 100%,
      rgba(52, 212, 219, 0.14) 0%, transparent 60%),
    #0c2b31;
}
[data-theme="dark"] .access-card::before {
  background: linear-gradient(90deg,
    transparent 0%, rgba(129, 251, 255, 0.3) 50%, transparent 100%);
}
.access-card .icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px; background: var(--brand);
  display: grid; place-items: center;
  color: #fff;
}
[data-theme="dark"] .access-card .icon { color: #0a1518; }
.access-card .body h3 {
  font-size: 18px; letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.access-card .body p {
  color: var(--text); font-size: 14.5px;
  line-height: 1.6; margin: 0 0 12px;
}
@media (max-width: 640px) {
  .access-card { flex-direction: column; }
}

/* Fine-print block */
.fine {
  max-width: 880px;
  margin-top: 24px; padding: 20px 24px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: 13.5px; color: var(--text-muted);
  line-height: 1.6;
}
.fine strong { color: var(--text); }

/* FAQ section */
.faq-section {
  max-width: 880px;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.faq-section h2 {
  font-size: 28px; letter-spacing: -0.02em;
  margin-bottom: 24px;
}

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

/* =============================================================
   LOGIN — split layout
   ============================================================= */

.login-page {
  min-height: 100vh;
  background: var(--bg-soft);
  display: flex; flex-direction: column;
}
.login-topbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 32px;
}
.login-topbar .right { display: flex; align-items: center; gap: 12px; }

.login-split {
  flex: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 32px 60px;
  gap: 64px;
  width: 100%;
  align-items: start;
}

/* Left column */
.login-split .left {
  display: flex; flex-direction: column; gap: 40px;
}
.login-split .left .hadith {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-inline-start: 2px solid var(--brand);
}
.login-split .left .hadith .body {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 16.5px; line-height: 1.65;
  color: var(--text);
  margin-bottom: 12px;
}
.login-split .left .hadith .ref {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--text-subtle); letter-spacing: 0.08em;
  text-transform: uppercase;
}

.login-split .mini-tiers {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.login-split .mini-tier {
  padding: 18px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: grid; gap: 4px;
}
.login-split .mini-tier.featured {
  border-color: var(--brand);
  background: linear-gradient(180deg, var(--brand-soft) 0%, var(--bg-card) 60px);
}
[data-theme="dark"] .login-split .mini-tier.featured {
  background: linear-gradient(180deg, #0c2b31 0%, var(--bg-card) 60px);
}
.login-split .mini-tier .ar {
  font-family: var(--font-quran);
  font-size: 22px; color: var(--brand);
  direction: rtl; line-height: 1;
  margin-bottom: 2px;
}
.login-split .mini-tier .nm {
  font-family: var(--font-sans);
  font-weight: 600; font-size: 15px;
  letter-spacing: -0.01em;
}
.login-split .mini-tier .pr {
  font-family: var(--font-sans);
  font-size: 15px; font-weight: 500;
  color: var(--text);
}
.login-split .mini-tier .desc {
  font-size: 12.5px; color: var(--text-muted);
  line-height: 1.5;
  margin-top: 4px;
}

.login-split .access-wrap {
  display: grid; gap: 16px;
}
.login-split .access-wrap .hadith-access {
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-inline-start: 2px solid var(--brand);
}
.login-split .access-wrap .hadith-access .body {
  font-style: italic;
  font-size: 15px; line-height: 1.6;
  color: var(--text);
  margin-bottom: 10px;
}
.login-split .access-wrap .hadith-access .ref {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-subtle); letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Right column — login card */
.login-split .right { position: sticky; top: 24px; }
.login-card {
  width: 100%;
  background:
    linear-gradient(180deg,
      color-mix(in oklab, var(--bg-card) 82%, transparent) 0%,
      var(--glass-bg) 100%);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 36px 32px 32px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}
.login-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%, rgba(255, 255, 255, 0.7) 50%, transparent 100%);
  pointer-events: none;
}
.login-card::after {
  content: "";
  position: absolute;
  top: -30%; right: -20%;
  width: 240px; height: 240px;
  background: radial-gradient(circle,
    rgba(129, 251, 255, 0.14) 0%, transparent 70%);
  pointer-events: none;
}
[data-theme="dark"] .login-card::before {
  background: linear-gradient(90deg,
    transparent 0%, rgba(129, 251, 255, 0.3) 50%, transparent 100%);
}
.login-card > * { position: relative; z-index: 1; }
.login-card .greet {
  text-align: center;
  margin-bottom: 28px;
}
.login-card .greet .ar {
  font-family: var(--font-quran); font-size: 26px;
  color: var(--brand); direction: rtl; line-height: 1;
  margin-bottom: 6px;
}
.login-card .greet .salam {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--text-muted);
  font-size: 15px;
  letter-spacing: -0.005em;
  margin-bottom: 14px;
}
.login-card .greet h1 {
  font-size: 24px; font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.1;
}
.login-card .greet p {
  color: var(--text-muted); font-size: 14.5px;
  margin: 0;
}
.login-card .consent {
  display: flex; align-items: center; justify-content: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13.5px; line-height: 1.5;
  color: var(--text); cursor: pointer;
  margin-bottom: 20px;
  text-align: center;
  transition: border-color 0.15s ease;
}
.login-card .consent:hover { border-color: var(--text-muted); }
.login-card .consent input {
  appearance: none; -webkit-appearance: none;
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px;
  border: 1.5px solid var(--border-strong);
  border-radius: 4px;
  background: var(--bg-card);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
  position: relative;
}
.login-card .consent input:checked {
  background: var(--brand); border-color: var(--brand);
}
.login-card .consent input:checked::after {
  content: ""; position: absolute;
  inset: 2px;
  background: white;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>") center/contain no-repeat;
}
[data-theme="dark"] .login-card .consent input:checked::after { background: #0a1518; }
.login-card .consent a {
  color: var(--accent-link); text-decoration: underline;
  text-underline-offset: 2px;
}

.login-card .sso-list { display: grid; gap: 10px; }
.login-card .sso-btn {
  display: flex; align-items: center; justify-content: center;
  gap: 12px;
  width: 100%; padding: 13px 18px;
  background: linear-gradient(180deg,
    var(--bg-card) 0%,
    color-mix(in oklab, var(--bg-card) 96%, var(--teal-500)) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 14.5px; font-weight: 500;
  color: var(--text);
  box-shadow: var(--shadow-xs);
  transition: border-color 0.15s ease, box-shadow 0.2s ease, transform 0.12s ease, opacity 0.15s ease;
  text-align: center;
  cursor: pointer;
}
.login-card .sso-btn:hover {
  border-color: color-mix(in oklab, var(--brand) 30%, var(--border));
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}
.login-card .sso-btn .ic {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  flex-shrink: 0;
}

/* Gated state — inactive before consent */
.login-card.gated .sso-btn,
.login-card.gated .alt-login a {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
}

.login-card .sep {
  display: flex; align-items: center; gap: 12px;
  margin: 24px 0;
  color: var(--text-subtle);
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.login-card .sep::before, .login-card .sep::after {
  content: ""; flex: 1; height: 1px; background: var(--border);
}
.login-card .alt-login {
  text-align: center;
  font-size: 13px; color: var(--text-muted);
}
.login-card .alt-login a {
  color: var(--text);
  text-decoration: underline; text-underline-offset: 3px;
}

.login-split .foot {
  max-width: 1200px; margin: 0 auto;
  padding: 20px 32px 40px;
  display: flex; gap: 20px;
  justify-content: center;
  font-family: var(--font-mono); font-size: 12px;
  color: var(--text-subtle); letter-spacing: 0.04em;
  flex-wrap: wrap;
}
.login-split .foot a { color: var(--text-subtle); }
.login-split .foot a:hover { color: var(--text); }

@media (max-width: 1000px) {
  .login-split {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 24px;
  }
  .login-split .right { position: static; }
  .login-split .mini-tiers { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .login-split .mini-tiers { grid-template-columns: 1fr; }
}
