/* =====================================================================
   KATRUPA MARKETING — DESIGN SYSTEM
   Gold + Dark Green premium branding, mobile-first, animated 3D UI
   ===================================================================== */

:root {
  --green-950: #0a2417;
  --green-900: #0d2b1a;
  --green-800: #123a22;
  --green-700: #175e3a;
  --green-600: #1c7a49;
  --green-500: #248f56;
  --gold-100: #f8f0d8;
  --gold-300: #e9cd85;
  --gold-500: #d3a94e;
  --gold-600: #c2953a;
  --gold-700: #a97b2b;
  --cream: #f8f4ea;
  --paper: #fffdf7;
  --ink: #1b201b;
  --muted: #6d7568;
  --hairline: rgba(20, 58, 34, 0.12);
  --danger: #c1443c;
  --success: #2f8f55;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --shadow-soft: 0 10px 26px rgba(15, 32, 20, 0.10);
  --shadow-deep: 0 22px 48px rgba(10, 24, 15, 0.24);
  --shadow-gold: 0 10px 24px rgba(169, 123, 43, 0.22);
  --transition: all 0.28s cubic-bezier(.22,.7,.24,1);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Display typography — used with restraint on hero/section moments,
   not on dense UI where a sans face keeps things scannable. */
.hero h1, .section-head h2, .cta-band h2, .auth-card h2,
.brand .brand-text, .footer-logo-text, .card-3d h3, .hero-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.card-3d h3, .hero-card h3 { font-weight: 500; }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; }

/* Accessible focus visibility across the whole site */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold-500); outline-offset: 2px;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* Comfortable minimum touch targets on phones/tablets */
@media (max-width: 600px) {
  .btn { min-height: 44px; padding: 12px 22px; }
  .form-control { min-height: 44px; }
}

/* ---------------------------------------------------------------------
   Buttons — animated, 3D depth
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.btn-gold {
  background: linear-gradient(160deg, var(--gold-300), var(--gold-600));
  color: var(--green-950);
  box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255,255,255,0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(169, 123, 43, 0.32), inset 0 1px 0 rgba(255,255,255,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold-100);
  border: 1.5px solid var(--gold-500);
}
.btn-outline:hover {
  background: rgba(211, 169, 78, 0.12);
  border-color: var(--gold-300);
  transform: translateY(-2px);
}

.btn-dark {
  background: linear-gradient(160deg, var(--green-700), var(--green-900));
  color: var(--gold-100);
  box-shadow: 0 10px 22px rgba(10, 24, 15, 0.28);
}
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(10, 24, 15, 0.34); }

.btn-block { width: 100%; }
.btn-sm { padding: 9px 18px; font-size: 13px; border-radius: 9px; }
.btn-danger { background: var(--danger); color: #fff; }

/* ---------------------------------------------------------------------
   Navbar
   --------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 24, 15, 0.82);
  backdrop-filter: blur(14px);
  padding: 16px 0;
  transition: var(--transition);
  border-bottom: 1px solid rgba(211,169,78,0.12);
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

/* Brand / logo — pinned to the far left corner at every breakpoint,
   never squeezed toward the center by the nav links or actions. */

.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: clamp(15px, 2.4vw, 21px); color: var(--gold-300);
  flex: 1 1 auto;
  min-width: 0;
  margin-right: 12px;
  overflow: hidden;
}
.brand .brand-text { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.brand .brand-mark {
  width: 38px; height: 38px; border-radius: 11px;
  background: linear-gradient(160deg, var(--gold-300), var(--gold-700));
  display: flex; align-items: center; justify-content: center;
  color: var(--green-950); font-weight: 700;
  box-shadow: 0 6px 14px rgba(169,123,43,0.4);
  flex-shrink: 0;
}
.nav-links { display: flex; gap: 30px; align-items: center; flex: 0 1 auto; justify-content: center; }
.nav-links a { color: var(--gold-100); font-weight: 500; font-size: 14.5px; transition: var(--transition); position: relative; }
.nav-links a::after {
  content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px;
  background: var(--gold-500); transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; gap: 12px; align-items: center; flex: 0 0 auto; margin-left: auto; max-width: 100%; }
.nav-toggle {
  display: none; background: none; border: none; color: var(--gold-300);
  cursor: pointer; line-height: 1;
  width: 44px; height: 44px; align-items: center; justify-content: center;
  border-radius: 10px; transition: var(--transition);
}
.nav-toggle:hover, .nav-toggle:focus-visible { background: rgba(232,194,106,0.12); }
.nav-toggle svg { display: block; }
.nav-toggle .icon-close { display: none; }
.nav-toggle.is-open .icon-burger { display: none; }
.nav-toggle.is-open .icon-close { display: block; }

.nav-links-mobile-only { display: none; }

@media (max-width: 900px) {
  .nav-links { position: fixed; top: 72px; left: 0; right: 0; background: var(--green-950); flex-direction: column; padding: 20px; gap: 18px; transform: translateY(-150%); opacity: 0; transition: var(--transition); max-height: calc(100vh - 72px); overflow-y: auto; }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-toggle { display: flex; }
  .nav-actions .btn { padding: 10px 16px; font-size: 13px; }
  .nav-links-mobile-only { display: list-item; }
  .nav-links-mobile-only a { color: var(--gold-300); font-weight: 700; }
}

@media (max-width: 480px) {
  .navbar { padding: 12px 0; }
  .container { padding: 0 14px; }
  .brand { font-size: 16px; gap: 8px; }
  .brand .brand-mark { width: 34px; height: 34px; border-radius: 10px; }
  .nav-actions { gap: 6px; }
  .nav-actions .btn { padding: 9px 12px; font-size: 12.5px; }
}

/* ---------------------------------------------------------------------
   Hero — animated 3D
   --------------------------------------------------------------------- */
.hero-video {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  line-height: 0; /* removes inline video whitespace gap */
}

.hero-video video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 900px 500px at 15% 0%, rgba(211,169,78,0.10), transparent 60%),
    linear-gradient(175deg, var(--green-900), var(--green-950) 55%);
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.16;
  animation: floatBlob 16s ease-in-out infinite;
}
.hero::before { width: 420px; height: 420px; background: var(--gold-500); top: -140px; right: -100px; }
.hero::after { width: 320px; height: 320px; background: var(--green-500); bottom: -100px; left: -60px; animation-delay: 4s; opacity: 0.12; }

@keyframes floatBlob {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px,-20px) scale(1.06); }
}

.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; position: relative; z-index: 2; }
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; text-align: center; } }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(211,169,78,0.10); color: var(--gold-300);
  padding: 7px 16px; border-radius: 50px; font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid rgba(211,169,78,0.28); margin-bottom: 22px;
  animation: fadeInUp 0.8s ease both;
}
.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.12;
  color: #fff;
  font-weight: 600;
  margin: 0 0 20px;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.hero h1 span { background: linear-gradient(160deg, var(--gold-300), var(--gold-600)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p { color: rgba(248,244,234,0.72); font-size: 17px; line-height: 1.7; margin-bottom: 32px; max-width: 520px; animation: fadeInUp 0.8s ease 0.2s both; font-weight: 400; }
@media (max-width: 960px) { .hero p { margin-inline: auto; } }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.3s both; }
@media (max-width: 960px) { .hero-actions { justify-content: center; } }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* Hero visual card — a certificate-like panel rather than a generic "3D SaaS card" */
.hero-visual { position: relative; perspective: 1400px; }
.hero-card {
  background: linear-gradient(165deg, var(--green-700), var(--green-900));
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-deep);
  transform: rotateY(-5deg) rotateX(2deg);
  transition: transform 0.6s cubic-bezier(.22,.7,.24,1);
  border: 1px solid rgba(211,169,78,0.22);
  animation: floatCard 7s ease-in-out infinite;
}
.hero-visual:hover .hero-card { transform: rotateY(0) rotateX(0); }
@keyframes floatCard { 0%,100% { transform: rotateY(-5deg) rotateX(2deg) translateY(0); } 50% { transform: rotateY(-5deg) rotateX(2deg) translateY(-10px); } }

.hero-card h3 { color: var(--gold-300); font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; margin: 0 0 22px; font-weight: 600; }
.hero-stat-row { display: flex; justify-content: space-between; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.hero-stat-row:last-child { border-bottom: none; }
.hero-stat-row .label { color: rgba(248,244,234,0.6); font-size: 13.5px; }
.hero-stat-row .value { color: #fff; font-weight: 700; font-size: 17px; }

/* ---------------------------------------------------------------------
   Stats band
   --------------------------------------------------------------------- */
.stats-band { background: var(--green-950); padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
@media (max-width: 800px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-item .num { font-family: var(--font-display); font-size: 38px; font-weight: 600; background: linear-gradient(160deg, var(--gold-300), var(--gold-600)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-item .lbl { color: rgba(248,244,234,0.55); font-size: 13.5px; margin-top: 8px; letter-spacing: 0.01em; }

/* ---------------------------------------------------------------------
   Sections
   --------------------------------------------------------------------- */
.section { padding: 90px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.section-tag { color: var(--gold-700); font-weight: 700; letter-spacing: 2.5px; font-size: 12px; text-transform: uppercase; }
.section-head h2 { font-size: clamp(28px, 4vw, 38px); margin: 12px 0 14px; color: var(--green-950); font-weight: 600; }
.section-head p { color: var(--muted); font-size: 15.5px; line-height: 1.7; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* Card — a quiet, paper-like surface with a restrained hover lift */
.card-3d {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 1px solid var(--hairline);
}
.card-3d:hover { transform: translateY(-5px); box-shadow: var(--shadow-deep); border-color: rgba(211,169,78,0.3); }
.card-3d .icon-badge {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(160deg, var(--green-600), var(--green-900));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-300); font-size: 22px; margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(13, 43, 26, 0.28);
}
.card-3d .card-image {
  width: calc(100% + 56px); margin: -28px -28px 18px; height: 176px;
  object-fit: cover; display: block; border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.card-3d h3 { margin: 0 0 10px; font-size: 20px; color: var(--green-950); font-weight: 500; }
.card-3d p { color: var(--muted); font-size: 14.5px; line-height: 1.6; margin: 0; }
.card-3d .btn {
  position: relative;
  z-index: 2;
}

.price-tag { display: inline-flex; align-items: center; background: var(--gold-100); color: var(--gold-700); font-weight: 700; padding: 6px 14px; border-radius: 8px; font-size: 13px; margin-top: 14px; border: 1px solid rgba(169,123,43,0.18); }

/* CTA band */
.cta-band {
  background: linear-gradient(155deg, var(--green-700), var(--green-950));
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  margin: 0 20px;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: #fff; font-size: clamp(24px,4vw,32px); margin-bottom: 14px; font-weight: 600; }
.cta-band p { color: rgba(248,244,234,0.65); margin-bottom: 26px; }

/* Footer */
.footer .footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 14px;
}
.footer .footer-logo:hover {
  color: inherit;
}

.footer-logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.footer-logo-text {
  color: #f5d98a; /* matches your gold/cream heading color */
  font-size: 20px;
  font-weight: 700;
}
.footer { background: var(--green-950); color: rgba(250,248,242,0.6); padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 40px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer h4 { color: var(--gold-300); font-size: 15px; margin-bottom: 16px; }
.footer a { display: block; color: rgba(250,248,242,0.6); font-size: 14px; margin-bottom: 10px; transition: var(--transition); }
.footer a:hover { color: var(--gold-300); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; text-align: center; font-size: 13px; }

/* ---------------------------------------------------------------------
   Auth pages
   --------------------------------------------------------------------- */
.auth-wrap {
  min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(175deg, var(--green-900), var(--green-950) 70%);
  padding: 100px 20px 40px;
}
.auth-card {
  background: var(--paper); border-radius: var(--radius-lg); padding: 42px;
  width: 100%; max-width: 440px; box-shadow: var(--shadow-deep);
  border: 1px solid var(--hairline);
  animation: fadeInUp 0.6s ease both;
}
.auth-card h2 { color: var(--green-950); margin: 0 0 6px; font-weight: 600; }
.auth-card .sub { color: var(--muted); font-size: 14px; margin-bottom: 26px; }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13.5px; font-weight: 600; color: var(--green-950); margin-bottom: 7px; }
.form-control {
  width: 100%; padding: 12px 15px; border-radius: var(--radius-sm);
  border: 1.5px solid #e3e0d3; font-size: 14.5px; font-family: var(--font-body); transition: var(--transition);
  background: var(--cream); color: var(--ink);
}
.form-control:focus { outline: none; border-color: var(--green-600); background: #fff; box-shadow: 0 0 0 4px rgba(28,122,73,0.10); }
textarea.form-control { resize: vertical; min-height: 100px; }

/* iOS Safari auto-zooms into any input under 16px on focus, which looks
   like the page "jumping" or fields disappearing off-screen. Force 16px
   on touch-sized viewports to prevent that. */
@media (max-width: 600px) {
  .form-control, select.form-control { font-size: 16px; }
}

.alert { padding: 14px 18px; border-radius: var(--radius-sm); font-size: 14px; margin-bottom: 20px; }
.alert-error { background: #fdecea; color: #b3261e; border: 1px solid #f5c2c0; }
.alert-success { background: #e8f7ef; color: #146c43; border: 1px solid #b7ebc9; }

.auth-footer { text-align: center; margin-top: 22px; font-size: 14px; color: var(--muted); }
.auth-footer a { color: var(--green-700); font-weight: 600; }

/* ---------------------------------------------------------------------
   Utility
   --------------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.badge { display: inline-block; padding: 4px 11px; border-radius: 7px; font-size: 11.5px; font-weight: 600; letter-spacing: 0.01em; }
.badge-success { background: #e8f7ef; color: #146c43; }
.badge-warning { background: #fff6e0; color: #a06a00; }
.badge-danger { background: #fdecea; color: #b3261e; }
.badge-muted { background: #f0f0ea; color: #666; }

[data-animate] { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(.2,.8,.2,1); }
[data-animate].in-view { opacity: 1; transform: translateY(0); }

@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 34px; }
  .cta-band { margin: 0 14px; padding: 40px 22px; }
  .auth-card { padding: 30px 24px; }
  .auth-wrap { padding: 90px 14px 30px; }
  .hero { padding-top: 84px; }
}

/* ---------------------------------------------------------------------
   Payment method selection & direct-wallet checkout UI
   --------------------------------------------------------------------- */
.payment-methods { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 10px; }
@media (max-width: 640px) { .payment-methods { grid-template-columns: 1fr; } }

.payment-option {
  display: block; background: #fff; border: 2px solid #e8e6dc; border-radius: var(--radius-md);
  padding: 22px; text-align: left; cursor: pointer; transition: var(--transition); position: relative;
}
.payment-option:hover { border-color: var(--gold-500); transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.payment-option .po-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; color: #fff; margin-bottom: 14px; }
.payment-option .po-title { font-weight: 700; font-size: 16px; color: var(--green-950); margin-bottom: 4px; }
.payment-option .po-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }
.payment-option .po-badge { position: absolute; top: 16px; right: 16px; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 50px; background: var(--gold-100); color: var(--gold-700); }

.po-icon.icon-xendit { background: linear-gradient(135deg,#5b3fd6,#3a2896); }
.po-icon.icon-dragonpay { background: linear-gradient(135deg,#c62828,#7a1414); }
.po-icon.icon-gcash { background: linear-gradient(135deg,#0071ce,#004a94); }
.po-icon.icon-maya { background: linear-gradient(135deg,#1ad1a5,#0a7d63); }

.wallet-panel { display: grid; grid-template-columns: 280px 1fr; gap: 30px; align-items: start; }
@media (max-width: 720px) { .wallet-panel { grid-template-columns: 1fr; } }

.qr-box { background: #fff; border-radius: var(--radius-md); padding: 22px; text-align: center; box-shadow: var(--shadow-soft); border: 1px solid #eee; }
.qr-box img { width: 100%; max-width: 220px; margin: 0 auto 14px; border-radius: var(--radius-sm); }
.qr-box .acct-name { font-weight: 700; color: var(--green-950); font-size: 15px; }
.qr-box .acct-number { font-weight: 800; color: var(--gold-700); font-size: 18px; letter-spacing: 1px; margin-top: 4px; }

.upload-box { border: 2px dashed #d8d6cb; border-radius: var(--radius-sm); padding: 20px; text-align: center; background: var(--cream); cursor: pointer; transition: var(--transition); }
.upload-box:hover { border-color: var(--gold-500); }
.upload-box input[type="file"] { display: block; margin: 10px auto 0; max-width: 100%; }

/* Password show/hide toggle (login, register) */
.password-field { position: relative; }
.password-field .form-control { padding-right: 44px; }
.password-toggle {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; padding: 6px;
  color: var(--muted, #8a8a8a); display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
}
.password-toggle:hover { color: var(--green-700, #1c7a49); }
.icon-toggle-hidden { display: none !important; }

/* Full livelihood program detail page — multi-paragraph description */
.program-description { color: var(--text, #333); line-height: 1.8; font-size: 15px; }
.program-description p { margin: 0 0 18px; }
.program-description p:last-child { margin-bottom: 0; }

/* Program card — full description shown directly (not truncated) */
.program-description-card { text-align: left; margin: 0 0 4px; }
.program-description-card p { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0 0 12px; }
.program-description-card p:last-child { margin-bottom: 0; }

/* Livelihood program packages — Availed badge, locked upgrade state */
.card-3d { position: relative; }
.availed-ribbon {
  position: absolute; top: 14px; right: 14px; background: var(--green-700, #1c7a49); color: #fff;
  font-size: 11.5px; font-weight: 700; padding: 4px 10px; border-radius: 50px; z-index: 2;
}
.card-3d.card-locked { opacity: 0.85; }
.locked-hint { font-size: 12.5px; color: var(--muted); margin-top: 8px; line-height: 1.5; }
