@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@400;500;600&display=swap');

:root {
  color-scheme: light;
  --bg: #f4f2ee;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --line: #dedbd4;
  --line-strong: #cbc6bc;
  --text: #242522;
  --muted: #77766f;
  --soft: #efede8;
  --gold: #a9783e;
  --gold-soft: #eadcc8;
  --ink-soft: #4f514b;
  --shadow: 0 18px 50px rgba(47, 42, 33, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font: 15px/1.5 'DM Sans', Arial, sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
.notice { min-height: 34px; display: flex; justify-content: center; align-items: center; gap: 10px; background: #ebe6dc; border-bottom: 1px solid #e0d9cb; color: #796342; padding: 8px 20px; font-size: 11px; letter-spacing: 1.7px; text-transform: uppercase; }
.notice::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

header { width: min(1440px, 100%); margin: 0 auto; min-height: 94px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; padding: 24px 5%; border-bottom: 1px solid var(--line); background: rgba(244, 242, 238, .9); }
.brand { color: var(--text); font-size: 22px; font-weight: 600; letter-spacing: 4px; line-height: 1; }
.brand span { color: var(--gold); }
.brand small { display: block; margin-top: 8px; color: var(--muted); font-size: 9px; font-weight: 500; letter-spacing: 2.8px; }
nav { display: flex; justify-content: center; gap: 30px; }
nav a, .bag { color: var(--ink-soft); font-size: 13px; }
nav a { position: relative; padding: 7px 0; }
nav a::after { content: ''; position: absolute; right: 0; bottom: 0; left: 0; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .2s ease; }
nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.bag { justify-self: end; border: 1px solid var(--line-strong); border-radius: 999px; padding: 9px 14px; transition: border-color .2s ease, background .2s ease; }
.bag:hover { border-color: var(--gold); background: var(--paper); }
.bag span { display: inline-grid; place-items: center; min-width: 19px; height: 19px; margin-left: 8px; padding: 0 5px; border-radius: 50%; background: var(--text); color: var(--paper); font-size: 11px; }

main { width: min(1440px, 100%); min-height: 70vh; margin: auto; padding: 68px 5% 96px; }
.eyebrow { color: var(--gold); font-size: 11px; font-weight: 600; letter-spacing: 2.8px; text-transform: uppercase; }
h1, h2 { font-family: 'Playfair Display', Georgia, serif; font-weight: 500; }
h1 { max-width: 680px; margin: 16px 0 18px; font-size: clamp(40px, 5.2vw, 72px); letter-spacing: -.8px; line-height: 1.05; }
h2 { font-size: 30px; }
h3 { font-weight: 500; }
p { color: var(--muted); line-height: 1.75; }
.intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(240px, 330px); align-items: end; gap: 64px; padding-bottom: 54px; border-bottom: 1px solid var(--line); }
.intro p { max-width: 470px; margin: 0; font-size: 16px; }
.stamp { align-self: center; border-left: 1px solid var(--gold-soft); padding: 8px 0 8px 24px; color: var(--ink-soft); font-size: 13px; line-height: 2.05; }

.toolbar { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; margin: 28px 0 20px; }
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); color: var(--text); font: inherit; padding: 12px 14px; transition: border-color .2s ease, box-shadow .2s ease; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(169, 120, 62, .12); outline: none; }
input[type=search] { width: min(280px, 100%); margin-left: auto; }
button, .button { display: inline-block; cursor: pointer; border: 1px solid var(--line-strong); border-radius: 999px; background: transparent; color: var(--text); font: 500 13px 'DM Sans', Arial, sans-serif; padding: 10px 16px; transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease; }
button:hover, .button:hover { border-color: var(--gold); transform: translateY(-1px); }
button.active, .primary { border-color: var(--text); background: var(--text); color: var(--paper); }
button.primary:hover { border-color: var(--gold); background: var(--gold); }
button:disabled { cursor: not-allowed; opacity: .45; transform: none; }
.meta { color: var(--muted); font-size: 12px; }

.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.card { min-width: 0; padding-bottom: 20px; }
.card > a { display: block; }
.visual { position: relative; display: grid; place-content: center; aspect-ratio: 1.12; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: linear-gradient(145deg, #fff, #efede8); text-align: center; }
.visual.product-image { display: block; background: #fff; }
.product-image img { display: block; width: 100%; height: 100%; object-fit: contain; }
.card .visual { transition: box-shadow .25s ease, transform .25s ease; }
.card:hover .visual { box-shadow: var(--shadow); transform: translateY(-3px); }
.visual strong { color: #a7a69f; font: 36px Georgia, serif; letter-spacing: 4px; }
.visual span { margin-top: 15px; color: var(--muted); font-size: 12px; }
.card .meta { margin-top: 17px; }
.card h3 { margin: 8px 0 4px; font-size: 18px; }
.card-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 17px; }
.price { color: var(--text); font-weight: 600; }
.price small { color: var(--muted); font: 13px 'DM Sans', Arial, sans-serif; }

.detail { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); gap: clamp(36px, 6vw, 84px); margin-top: 30px; }
.detail .visual { aspect-ratio: 1; border-radius: 16px; }
.detail h1 { margin-top: 13px; font-size: clamp(38px, 5vw, 60px); }
.detail > section:last-child > p { max-width: 520px; }
.detail .price { margin: 24px 0 20px; font-family: 'Playfair Display', Georgia, serif; font-size: 34px; font-weight: 500; }
.finishes { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 28px; }
.finishes span { border: 1px solid var(--line-strong); border-radius: 999px; padding: 8px 13px; color: var(--ink-soft); font-size: 12px; }
.detail ul { margin: 0 0 25px; padding-left: 20px; }
.detail li { color: var(--muted); line-height: 2; }
.thumbnails { display: flex; gap: 10px; margin-top: 14px; }
.thumbnails button { width: 74px; height: 74px; padding: 3px; border-radius: 10px; background: var(--surface); }
.thumbnails button[aria-pressed=true] { border-color: var(--gold); box-shadow: 0 0 0 2px var(--gold-soft); }
.thumbnails img { width: 100%; height: 100%; object-fit: contain; border-radius: 6px; }

.panel { margin: 22px 0; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); padding: 28px; box-shadow: 0 8px 30px rgba(47, 42, 33, .04); }
.demo-note { display: flex; align-items: baseline; gap: 14px; margin: -4px 0 18px; padding: 12px 14px; border: 1px solid var(--gold-soft); border-radius: 10px; background: #f7f0e6; color: #72552f; font-size: 13px; }
.demo-note span { color: #8a7357; font-size: 12px; }
.demo-email { display: grid; gap: 8px; max-width: 420px; margin: 22px 0 16px; color: var(--ink-soft); font-size: 13px; }
.demo-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 24px; }
.order-head, .row { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.row { padding: 19px 0; border-top: 1px solid var(--line); }
.row p { margin: 5px 0; font-size: 13px; }
.pill { border-radius: 999px; background: #e5efe4; color: #47704d; font-size: 11px; padding: 7px 12px; }
.expired { background: #eee9e3; color: #8a6e59; }
.order-head { margin-bottom: 22px; }
.order-head h3 { margin: 0 0 6px; }
.order-head small { color: var(--muted); }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 760px; }
.form label { display: grid; gap: 8px; color: var(--ink-soft); font-size: 13px; }
.wide { grid-column: 1 / -1; }
.empty { border: 1px dashed var(--line-strong); border-radius: 14px; padding: 70px 20px; text-align: center; }

footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: min(1440px, 100%); margin: auto; padding: 28px 5%; border-top: 1px solid var(--line); }
footer .brand { font-size: 17px; letter-spacing: 3px; }
footer p, footer span:last-child { margin: 0; color: var(--muted); font-size: 12px; }
#toast { position: fixed; z-index: 10; bottom: 24px; left: 50%; display: none; max-width: min(460px, 90%); transform: translateX(-50%); border: 1px solid var(--gold-soft); border-radius: 999px; background: var(--text); color: var(--paper); padding: 13px 20px; box-shadow: var(--shadow); font-size: 13px; text-align: center; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

@media (max-width: 850px) {
  header { grid-template-columns: 1fr auto; }
  header nav { grid-column: 1 / -1; grid-row: 2; justify-content: flex-start; width: 100%; gap: 22px; }
  .intro { grid-template-columns: 1fr; gap: 28px; }
  .stamp { max-width: 320px; }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .detail { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .notice { font-size: 9px; letter-spacing: 1.2px; }
  header { min-height: 82px; padding: 20px 5%; }
  header nav { gap: 16px; overflow-x: auto; }
  nav a, .bag { font-size: 12px; }
  .brand { font-size: 18px; }
  main { padding-top: 44px; }
  h1 { font-size: 42px; }
  .grid, .form { grid-template-columns: 1fr; }
  .toolbar { align-items: stretch; }
  .toolbar button { font-size: 12px; padding: 9px 12px; }
  input[type=search] { width: 100%; margin: 4px 0 0; }
  .panel { padding: 20px; }
  .row, .order-head { align-items: flex-start; flex-wrap: wrap; }
  footer { align-items: flex-start; flex-direction: column; }
}

/* CADMINES premium light skin */
:root {
  --bg: #f2f1f4;
  --paper: #fcfbfc;
  --surface: #ffffff;
  --line: #e1dfe4;
  --line-strong: #c8c3cc;
  --text: #242226;
  --muted: #737079;
  --soft: #f0edf2;
  --gold: #a9783e;
  --gold-soft: #eadac7;
  --rose: #b86478;
  --rose-soft: #f5e6eb;
  --ink-soft: #4e4a53;
  --shadow: 0 22px 60px rgba(60, 47, 57, .10);
}
body {
  background:
    radial-gradient(circle at 86% 3%, rgba(246, 222, 230, .72), transparent 29rem),
    radial-gradient(circle at 4% 42%, rgba(230, 227, 240, .76), transparent 32rem),
    var(--bg);
}
.notice {
  background: #f6e8ed;
  border-bottom-color: #efd8e0;
  color: #8c5062;
}
.notice-dot { width: 6px; height: 6px; display: inline-block; border-radius: 50%; background: var(--rose); }
.notice::before { display: none; }
header {
  min-height: 104px;
  background: rgba(252, 251, 252, .82);
  border-bottom-color: rgba(205, 200, 210, .75);
  backdrop-filter: blur(18px);
}
.brand-image { display: inline-flex; align-items: center; }
.brand-image img { display: block; width: min(220px, 100%); height: auto; mix-blend-mode: multiply; }
.footer-logo img { width: 165px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
main { padding-top: 72px; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, .88fr);
  align-items: stretch;
  gap: clamp(28px, 6vw, 96px);
  padding: 22px 0 78px;
}
.hero-copy { padding: 28px 0 20px; }
.hero h1 { margin-top: 17px; font-size: clamp(45px, 6vw, 82px); letter-spacing: -1.5px; }
.hero-copy > p { max-width: 560px; font-size: 16px; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; margin-top: 32px; }
.text-link { color: var(--ink-soft); font-size: 13px; }
.text-link span { color: var(--rose); margin-left: 5px; }
.hero-card {
  align-self: center;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid #e6d7dd;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.88), rgba(250,235,241,.85));
  box-shadow: var(--shadow);
}
.hero-card-label { color: var(--rose); font-size: 10px; font-weight: 600; letter-spacing: 2.4px; }
.hero-card strong { display: block; margin: 21px 0 26px; color: var(--text); font: 500 clamp(27px, 3vw, 39px)/1.12 'Playfair Display', Georgia, serif; }
.hero-card ul { margin: 0; padding: 0; list-style: none; }
.hero-card li { padding: 11px 0; border-top: 1px solid rgba(184,100,120,.2); color: var(--ink-soft); font-size: 13px; }
.hero-card li::before { content: '✦'; margin-right: 10px; color: var(--gold); }
.cami-panel {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 24px;
  margin: 0 0 78px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid #ead7dd;
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 12px 40px rgba(75, 51, 65, .07);
}
.cami-orbit {
  width: 72px; height: 72px; display: grid; place-items: center; border: 1px solid #e8cbd5; border-radius: 50%;
  background: radial-gradient(circle, #fff, #f8e8ed); box-shadow: 0 0 0 8px rgba(245,230,235,.7);
}
.cami-orbit img { width: 58px; height: 58px; object-fit: contain; border-radius: 50%; mix-blend-mode: multiply; }
.cami-copy h2 { margin: 8px 0 10px; font-size: clamp(28px, 3vw, 40px); }
.cami-copy > p { max-width: 720px; margin-top: 0; }
.cami-input { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; margin: 20px 0 12px; }
.cami-input textarea { min-height: 58px; resize: vertical; }
.upload-ref { position: relative; display: flex; align-items: center; justify-content: center; min-width: 165px; border: 1px dashed #d7aebc; border-radius: 8px; background: #fff9fb; color: var(--rose); font-size: 12px; cursor: pointer; }
.upload-ref input { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
.cami-copy button { margin-top: 2px; }
.cami-preview { display: inline-flex; align-items: center; gap: 9px; margin-top: 15px; padding: 7px 10px 7px 7px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); color: var(--muted); font-size: 11px; }
.cami-preview img { width: 42px; height: 42px; object-fit: cover; border-radius: 6px; }
.cami-note { margin-top: 14px; color: #7b4e5c; font-size: 13px; }
.cami-disclaimer { margin: 14px 0 0 !important; color: #9a929b !important; font-size: 11px !important; }
.collection-section { padding-top: 6px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 12px; }
.section-heading h2 { margin: 8px 0 0; font-size: clamp(29px, 4vw, 44px); }
.section-intro { max-width: 320px; margin: 0; font-size: 13px; }
.category-pills { display: flex; flex-wrap: wrap; gap: 9px; }
.toolbar { margin: 28px 0 14px; }
.filterbar { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin-bottom: 15px; }
.filter { display: grid; gap: 6px; color: var(--muted); font-size: 11px; letter-spacing: .2px; }
.filter select { padding: 10px 11px; font-size: 12px; }
.collection-meta { margin-top: 4px; }
.results-note { grid-column: 1 / -1; margin: 8px 0 -2px; color: var(--muted); font-size: 12px; }
.cami-mini { display: inline-grid; place-items: center; width: 32px; height: 20px; margin-right: 8px; border-radius: 999px; background: var(--rose-soft); color: var(--rose); font-size: 10px; font-weight: 700; letter-spacing: .7px; }
.spec-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 13px; }
.spec-list span { padding: 5px 8px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 10px; }
.no-results { grid-column: 1 / -1; padding: 46px 0; }
.trust-section { margin-top: 110px; padding-top: 58px; border-top: 1px solid var(--line); }
.trust-section > h2 { max-width: 610px; margin: 10px 0 34px; font-size: clamp(30px, 4vw, 48px); }
.trust-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.trust-grid article { padding: 22px 18px 18px; border-top: 2px solid var(--gold-soft); }
.trust-number { color: var(--rose); font: 600 11px 'DM Sans', Arial, sans-serif; letter-spacing: 1.8px; }
.trust-grid h3 { margin: 14px 0 8px; font-size: 16px; }
.trust-grid p { margin: 0; font-size: 12px; line-height: 1.7; }
.back-link { display: inline-block; color: var(--muted); font-size: 13px; }
.detail-specs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin: 24px 0 28px; }
.detail-specs div { padding: 14px 12px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.55); }
.detail-specs strong, .detail-specs span { display: block; }
.detail-specs strong { color: var(--text); font: 500 18px 'Playfair Display', Georgia, serif; }
.detail-specs span { margin-top: 4px; color: var(--muted); font-size: 10px; }
footer { background: rgba(252, 251, 252, .45); }
#toast { background: #322c35; }
@media (max-width: 850px) {
  .hero { grid-template-columns: 1fr; padding-bottom: 58px; }
  .hero-card { max-width: 520px; }
  .cami-panel { grid-template-columns: 1fr; }
  .cami-orbit { width: 64px; height: 64px; }
  .filterbar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .brand-image img { width: 158px; }
  .footer-logo img { width: 140px; }
  .hero h1 { font-size: 43px; }
  .cami-input { grid-template-columns: 1fr; }
  .upload-ref { min-height: 46px; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .filterbar { grid-template-columns: 1fr 1fr; }
  .filter select { padding-left: 8px; padding-right: 8px; }
  .trust-grid { grid-template-columns: 1fr; }
  .detail-specs { gap: 6px; }
  .detail-specs strong { font-size: 15px; }
}


/* Gold discovery layer */
:root {
  --bg: #f3f0e7;
  --paper: #fffdf8;
  --surface: #ffffff;
  --line: #e5dfd1;
  --line-strong: #cfc3ad;
  --text: #28251f;
  --muted: #787268;
  --soft: #f1ecdf;
  --gold: #ad8245;
  --gold-soft: #ead8ae;
  --rose: #a75d69;
  --rose-soft: #f3e1e4;
  --ink-soft: #4f4a40;
  --shadow: 0 22px 60px rgba(79, 63, 35, .11);
}
body {
  background:
    radial-gradient(circle at 86% 0%, rgba(238, 220, 178, .78), transparent 30rem),
    radial-gradient(circle at 2% 44%, rgba(247, 236, 211, .9), transparent 34rem),
    linear-gradient(135deg, #f8f5ed 0%, #f1eee5 55%, #f6f0dc 100%);
}
.notice { background: #f8f0dc; border-bottom-color: #eadcbe; color: #81633a; }
header { background: rgba(255, 253, 248, .82); border-bottom-color: rgba(210, 199, 177, .76); }
.hero-card { border-color: #e4d4ae; background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(250,241,215,.94)); }
.cami-panel { border-color: #e5d4ac; background: linear-gradient(125deg, rgba(255,255,255,.90), rgba(250,241,216,.86)); }
.cami-orbit { position: relative; overflow: visible; border-color: #d9bd7d; background: radial-gradient(circle, #fffdf8 32%, #f5e6be 100%); }
.cami-ring { position: absolute; inset: -10px; border: 1px solid rgba(173,130,69,.35); border-radius: 50%; pointer-events: none; }
.cami-ring-one { animation: camiOrbit 14s linear infinite; }
.cami-ring-two { inset: -18px; border-color: rgba(167,93,105,.22); animation: camiOrbitReverse 10s linear infinite; }
.cami-spark { position: absolute; color: var(--gold); font-size: 11px; animation: camiFloat 2.8s ease-in-out infinite; }
.spark-one { top: -18px; right: 5px; }
.spark-two { bottom: -14px; left: -6px; animation-delay: 1.1s; color: var(--rose); }
.cami-topline { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.live-chip { display: inline-flex; align-items: center; gap: 7px; border: 1px solid #d9c189; border-radius: 999px; padding: 6px 10px; background: #fffaf0; color: #886c3e; font-size: 9px; font-weight: 600; letter-spacing: 1.2px; }
.live-chip > span { width: 6px; height: 6px; border-radius: 50%; background: #64a16d; box-shadow: 0 0 0 4px rgba(100,161,109,.13); animation: statusPulse 1.8s ease-in-out infinite; }
.mine-steps { display: flex; flex-wrap: wrap; gap: 7px 17px; margin: 16px 0 18px; color: #948b7d; font-size: 10px; letter-spacing: .3px; }
.mine-steps span { display: inline-flex; align-items: center; gap: 6px; }
.mine-steps b { display: inline-grid; place-items: center; width: 19px; height: 19px; border: 1px solid #d9cfbd; border-radius: 50%; font-size: 9px; font-weight: 600; }
.mine-steps span.current { color: var(--rose); }
.mine-steps span.current b { border-color: #cc9ba4; background: var(--rose-soft); color: var(--rose); }
.mine-steps span.done { color: #7b8b6d; }
.mine-steps span.done b { border-color: #b6c8ab; background: #edf4e9; color: #5d8055; }
.cami-submit { display: inline-flex; align-items: center; gap: 8px; }
.cami-button-orb { display: inline-grid; place-items: center; width: 18px; height: 18px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; font-size: 10px; animation: camiPulse 1.8s ease-in-out infinite; }
.cami-status, .cami-note { display: flex; align-items: center; gap: 8px; margin-top: 14px; color: #82643b; font-size: 13px; }
.status-dot { width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(173,130,69,.13); }
.typing-dots { display: inline-flex; gap: 3px; margin-left: 4px; }
.typing-dots i { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); animation: typingDot 1s ease-in-out infinite; }
.typing-dots i:nth-child(2) { animation-delay: .15s; }
.typing-dots i:nth-child(3) { animation-delay: .3s; }
.trust-lead { max-width: 640px; margin: -17px 0 34px; color: var(--ink-soft); font-size: 15px; }
.cadmine-band { position: relative; display: flex; align-items: center; gap: 26px; overflow: hidden; margin-top: 40px; padding: 22px 24px; border: 1px solid #e1d0a8; border-radius: 14px; background: linear-gradient(95deg, #fffaf0, #f6ecd2); }
.cadmine-mark { display: flex; align-items: center; gap: 8px; color: var(--gold); font: 600 11px 'DM Sans', Arial, sans-serif; letter-spacing: 2.5px; white-space: nowrap; }
.cadmine-mark b { display: inline-grid; place-items: center; width: 23px; height: 23px; border: 1px solid #d9bd7d; border-radius: 50%; color: var(--rose); font-size: 14px; }
.cadmine-band p { position: relative; z-index: 1; margin: 0; color: var(--ink-soft); font-size: 12px; }
.cadmine-band p strong { margin-right: 6px; color: var(--text); font-weight: 600; }
.cadmine-glow { position: absolute; top: -40px; right: 8%; width: 170px; height: 130px; border-radius: 50%; background: rgba(227,192,111,.2); filter: blur(8px); animation: glowDrift 6s ease-in-out infinite; }
@keyframes camiOrbit { to { transform: rotate(360deg); } }
@keyframes camiOrbitReverse { to { transform: rotate(-360deg); } }
@keyframes camiFloat { 0%, 100% { transform: translateY(0) scale(1); opacity: .65; } 50% { transform: translateY(-5px) scale(1.16); opacity: 1; } }
@keyframes camiPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,.15); } 50% { box-shadow: 0 0 0 5px rgba(255,255,255,.12); } }
@keyframes statusPulse { 0%, 100% { opacity: .65; } 50% { opacity: 1; } }
@keyframes typingDot { 0%, 80%, 100% { transform: translateY(0); opacity: .35; } 40% { transform: translateY(-3px); opacity: 1; } }
@keyframes glowDrift { 0%, 100% { transform: translateX(0); opacity: .55; } 50% { transform: translateX(-28px); opacity: .9; } }
@media (max-width: 600px) {
  .cadmine-band { align-items: flex-start; flex-direction: column; gap: 12px; }
  .mine-steps { gap: 7px 11px; }
}
@media (prefers-reduced-motion: reduce) {
  .cami-ring, .cami-spark, .cami-button-orb, .live-chip > span, .typing-dots i, .cadmine-glow { animation: none; }
}

