/* =========================================================
   BUYING TIME — Luxury QR Gateway & Marketplace Hub
   Curated by Michael Angelo
   ========================================================= */

:root {
  --bg-color: #080a0f;
  --bg-card: rgba(18, 24, 38, 0.72);
  --bg-card-hover: rgba(28, 36, 56, 0.88);
  --border-card: rgba(212, 175, 55, 0.22);
  --border-card-hover: rgba(212, 175, 55, 0.6);
  
  --gold-primary: #d4af37;
  --gold-light: #f5df97;
  --gold-dark: #8c7020;
  --gold-glow: rgba(212, 175, 55, 0.28);
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  --lume-glow: #00ffbf;
  --lume-glow-bright: #39ffca;
  --transition-smooth: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-color);
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.5;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 1.5rem 1rem 3rem 1rem;
  transition: background-color 0.4s ease;
}

/* Ambient Radial Glow */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
  transition: opacity 0.5s ease;
}

.glow-1 {
  width: 380px;
  height: 380px;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, rgba(212, 175, 55, 0) 70%);
}

.glow-2 {
  width: 450px;
  height: 450px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(30, 42, 68, 0.35) 0%, rgba(8, 10, 15, 0) 70%);
}

/* Container */
.page-container {
  width: 100%;
  max-width: 520px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

/* Top Action Bar */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-bottom: 0.25rem;
}

.top-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.top-badge-text {
  color: var(--gold-light);
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  padding: 0.45rem 0.95rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pill-btn:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-1px);
}

.pill-btn:active {
  transform: scale(0.97);
}

.icon-svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
}

/* Brand Hero & Watch */
.brand-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

/* Signature Photography Showcase */
.hero-image-wrap {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: 
    0 16px 36px -10px rgba(0, 0, 0, 0.8),
    0 0 25px var(--gold-glow);
  position: relative;
  background: #111520;
  transition: var(--transition-smooth);
}

.hero-image-wrap:hover {
  transform: translateY(-2px);
  border-color: var(--gold-primary);
  box-shadow: 
    0 20px 42px -8px rgba(0, 0, 0, 0.9),
    0 0 35px rgba(212, 175, 55, 0.35);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-image-wrap:hover .hero-image {
  transform: scale(1.02);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 10, 15, 0) 0%,
    rgba(8, 10, 15, 0.1) 40%,
    rgba(6, 8, 13, 0.65) 68%,
    rgba(6, 8, 13, 0.94) 92%,
    rgba(6, 8, 13, 0.98) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 1.25rem 0.85rem 0.95rem 0.85rem;
  text-align: center;
}

.card-brand-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  width: 100%;
}

.card-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 6vw, 2.65rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #d4af37;
  background: linear-gradient(180deg, #fcedb3 0%, #d4af37 60%, #9e7f22 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.95));
  line-height: 1.1;
  text-transform: uppercase;
}

.card-hero-tagline {
  font-family: var(--font-sans);
  font-size: clamp(0.58rem, 2vw, 0.74rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #f8fafc;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
  max-width: 95%;
  line-height: 1.35;
}

/* =========================================================
   AUTHENTIC AUTOMATIC HOROLOGY WATCH DIAL
   ========================================================= */
.watch-wrapper {
  perspective: 1000px;
  cursor: pointer;
  user-select: none;
}

.watch-case {
  width: 184px;
  height: 184px;
  border-radius: 50%;
  background: linear-gradient(145deg, #1c2333, #090c12);
  padding: 6px;
  box-shadow: 
    0 18px 38px -10px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.07),
    0 0 25px var(--gold-glow);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.watch-wrapper:hover .watch-case {
  transform: scale(1.02);
  box-shadow: 
    0 22px 42px -8px rgba(0, 0, 0, 0.9),
    0 0 0 1px var(--gold-primary),
    0 0 35px rgba(212, 175, 55, 0.4);
}

.watch-bezel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(
    from 180deg at 50% 50%, 
    #b08d2b 0deg, 
    #fcedb3 60deg, 
    #7a5f1a 120deg, 
    #ffd97d 180deg, 
    #5e4914 240deg, 
    #fcedb3 300deg, 
    #b08d2b 360deg
  );
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.watch-dial {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 45% 45%, #182030 0%, #0b0e17 65%, #05070c 100%);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.85);
}

/* Dial Hour Markers */
.dial-markers {
  position: absolute;
  inset: 0;
}

.marker {
  position: absolute;
  width: 2px;
  height: 10px;
  background: var(--gold-primary);
  top: 50%;
  left: 50%;
  transform-origin: center -68px;
  border-radius: 1px;
}

/* Specific angles for each hour */
.marker-12 { transform: translate(-50%, 68px) rotate(0deg); height: 12px; }
.marker-1  { transform: translate(-50%, 68px) rotate(30deg); }
.marker-2  { transform: translate(-50%, 68px) rotate(60deg); }
.marker-3  { transform: translate(-50%, 68px) rotate(90deg); }
.marker-4  { transform: translate(-50%, 68px) rotate(120deg); }
.marker-5  { transform: translate(-50%, 68px) rotate(150deg); }
.marker-6  { transform: translate(-50%, 68px) rotate(180deg); height: 12px; }
.marker-7  { transform: translate(-50%, 68px) rotate(210deg); }
.marker-8  { transform: translate(-50%, 68px) rotate(240deg); }
.marker-9  { transform: translate(-50%, 68px) rotate(270deg); height: 12px; }
.marker-10 { transform: translate(-50%, 68px) rotate(300deg); }
.marker-11 { transform: translate(-50%, 68px) rotate(330deg); }

.double-baton {
  display: block;
  width: 6px;
  height: 12px;
  border-left: 2px solid var(--gold-primary);
  border-right: 2px solid var(--gold-primary);
  transform: translateX(-2px);
}

.baton {
  display: block;
  width: 4px;
  height: 12px;
  background: var(--gold-primary);
  transform: translateX(-1px);
}

/* Date Window at 3 o'clock */
.date-window {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(32px, -50%) rotate(-90deg);
  background: #f8fafc;
  color: #0f172a;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.65rem;
  padding: 1px 3px;
  border-radius: 2px;
  border: 1px solid #64748b;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.5);
  line-height: 1;
}

/* Dial Branding Text */
.dial-branding {
  position: absolute;
  width: 100%;
  top: 28%;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.dial-brand-name {
  font-family: var(--font-serif);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
}

.dial-calibre {
  font-family: var(--font-sans);
  font-size: 0.42rem;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 1px;
}

/* Watch Hands */
.hand {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform-origin: 50% 100%;
  border-radius: 4px 4px 0 0;
  will-change: transform;
}

.hour-hand {
  width: 5px;
  height: 42px;
  margin-left: -2.5px;
  background: linear-gradient(to right, #cfab39, #fff0b3 50%, #9e7f22);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.hour-hand::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 1px;
  right: 1px;
  bottom: 8px;
  background: #fdfdfd;
  border-radius: 2px;
}

.minute-hand {
  width: 3.5px;
  height: 58px;
  margin-left: -1.75px;
  background: linear-gradient(to right, #cfab39, #fff0b3 50%, #9e7f22);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  z-index: 3;
}

.minute-hand::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 0.75px;
  right: 0.75px;
  bottom: 8px;
  background: #fdfdfd;
  border-radius: 1px;
}

.second-hand {
  width: 1.5px;
  height: 68px;
  margin-left: -0.75px;
  background: #ef4444; /* Sporty red seconds hand */
  box-shadow: 0 2px 6px rgba(239, 68, 68, 0.4);
  z-index: 4;
}

.second-counterweight {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 14px;
  background: #ef4444;
  border-radius: 0 0 3px 3px;
}

.center-cap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle, #f5df97, #8c7020);
  border: 1px solid rgba(0,0,0,0.6);
  z-index: 5;
  box-shadow: 0 1px 3px rgba(0,0,0,0.7);
}

.crystal-sheen {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.04) 40%,
    transparent 65%
  );
  pointer-events: none;
}

/* =========================================================
   NIGHT LUME MODE (Super-LumiNova Effect)
   ========================================================= */
body.lume-active {
  --bg-color: #030406;
  background-color: var(--bg-color);
}

body.lume-active .ambient-glow {
  opacity: 0.2;
}

body.lume-active .watch-dial {
  background: #020305;
}

body.lume-active .marker,
body.lume-active .marker-12 .double-baton,
body.lume-active .marker-6 .baton,
body.lume-active .marker-9 .baton {
  background: var(--lume-glow);
  box-shadow: 0 0 10px var(--lume-glow), 0 0 20px var(--lume-glow);
  border-color: var(--lume-glow);
}

body.lume-active .hour-hand::after,
body.lume-active .minute-hand::after {
  background: var(--lume-glow-bright);
  box-shadow: 0 0 12px var(--lume-glow-bright), 0 0 24px var(--lume-glow);
}

body.lume-active #lumeBtn {
  background: rgba(0, 255, 191, 0.15);
  border-color: var(--lume-glow);
  color: var(--lume-glow);
}

/* Brand Identity Typography */
.brand-identity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 2.35rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(212, 175, 55, 0.35);
  margin-bottom: -0.2rem;
}

.brand-tagline {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--gold-light);
  text-transform: uppercase;
  max-width: 90%;
  line-height: 1.4;
}

.curator-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  padding: 0.35rem 0.85rem;
  margin-top: 0.35rem;
  font-size: 0.8125rem;
}

.curator-name {
  color: #ffffff;
  font-weight: 600;
}

.curator-divider {
  color: var(--gold-primary);
  font-size: 0.65rem;
}

.curator-role {
  color: var(--text-secondary);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

/* Status Banner */
.status-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08));
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 12px;
  padding: 0.65rem 1rem;
  text-align: center;
}

.pulsing-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseGreen 2s infinite;
  flex-shrink: 0;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.banner-text {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}

/* =========================================================
   MARKETPLACE LINKS SECTION
   ========================================================= */
.links-section {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-left: 0.25rem;
}

/* Link Cards */
.link-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 1.15rem 1.25rem;
  text-decoration: none;
  color: inherit;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.link-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  transform: skewX(-20deg);
  transition: 0.75s;
}

.link-card:hover::before {
  left: 150%;
}

.link-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-card-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -6px rgba(0, 0, 0, 0.6), 0 0 20px var(--gold-glow);
}

.link-card:active {
  transform: scale(0.985);
}

/* Distinct Card Accents */
.ebay-card:hover {
  border-color: rgba(234, 179, 8, 0.7);
}

.poshmark-card:hover {
  border-color: rgba(244, 63, 94, 0.65);
}

.mercari-card:hover {
  border-color: rgba(56, 189, 248, 0.7);
}

/* Icons & Official Marketplace Logos */
.card-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.official-logo-wrap {
  width: 90px;
  height: 52px;
  border-radius: 12px;
  background: #ffffff;
  padding: 3px 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.official-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.ebay-logo-img {
  max-height: 28px;
}

.poshmark-logo-img {
  max-height: 38px;
}

.mercari-logo-img {
  max-height: 38px;
}

.ebay-card:hover .official-logo-wrap {
  box-shadow: 0 6px 18px rgba(234, 179, 8, 0.45);
  transform: scale(1.04);
}

.poshmark-card:hover .official-logo-wrap {
  box-shadow: 0 6px 18px rgba(244, 63, 94, 0.45);
  transform: scale(1.04);
}

.mercari-card:hover .official-logo-wrap {
  box-shadow: 0 6px 18px rgba(56, 189, 248, 0.45);
  transform: scale(1.04);
}

.vip-icon-wrap {
  color: #34d399;
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.25);
}

.vcard-icon-wrap {
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.25);
}

.marketplace-icon {
  width: 24px;
  height: 24px;
}

/* Card Content Details */
.card-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex-grow: 1;
}

.card-title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.card-title {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
}

.card-description {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Badges */
.badge {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-gold {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.badge-ruby {
  background: rgba(244, 63, 94, 0.15);
  color: #fda4af;
  border: 1px solid rgba(244, 63, 94, 0.35);
}

.badge-sapphire {
  background: rgba(56, 189, 248, 0.15);
  color: #7dd3fc;
  border: 1px solid rgba(56, 189, 248, 0.35);
}

.badge-emerald {
  background: rgba(16, 185, 129, 0.15);
  color: #6ee7b7;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.badge-subtle {
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

/* Card Arrow */
.card-arrow {
  width: 22px;
  height: 22px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.card-arrow svg {
  width: 100%;
  height: 100%;
}

.link-card:hover .card-arrow {
  color: var(--gold-light);
  transform: translateX(4px);
}

/* =========================================================
   TRUST & AUTHENTICITY PILLARS
   ========================================================= */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.trust-pill {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 0.85rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.45rem;
}

.trust-icon {
  width: 20px;
  height: 20px;
  color: var(--gold-primary);
}

.trust-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.trust-text strong {
  font-size: 0.75rem;
  color: #ffffff;
  font-weight: 600;
}

.trust-text span {
  font-size: 0.65rem;
  color: var(--text-muted);
}

/* Footer */
.page-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  margin-top: 1rem;
}

.footer-rule {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  margin-bottom: 0.4rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.footer-copy strong {
  color: var(--gold-light);
  font-family: var(--font-serif);
  letter-spacing: 0.08em;
}

.footer-note {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* =========================================================
   MODALS (Contact & QR Code)
   ========================================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 9, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: #0f1420;
  border: 1px solid var(--gold-primary);
  border-radius: 20px;
  width: 100%;
  max-width: 420px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.9), 0 0 35px var(--gold-glow);
  position: relative;
  transform: translateY(18px) scale(0.96);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
}

.modal-box.text-center {
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: #ffffff;
}

.modal-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.4rem;
}

.modal-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle, #f3df9c, #8f7223);
  color: #0c0f17;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px var(--gold-glow);
  margin-bottom: 0.75rem;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
}

.modal-subtitle {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.action-tile {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  text-decoration: none;
  color: #ffffff;
  transition: var(--transition-smooth);
}

.action-tile:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold-primary);
  transform: translateX(3px);
}

.tile-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tile-icon-wrap svg {
  width: 18px;
  height: 18px;
}

.tile-text {
  display: flex;
  flex-direction: column;
}

.tile-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tile-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}

.modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
  display: flex;
  justify-content: center;
}

.modal-secondary-btn {
  background: transparent;
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 9999px;
  padding: 0.55rem 1.3rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.modal-secondary-btn:hover {
  background: var(--gold-primary);
  color: #080a0f;
}

/* =========================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================= */
@media (max-width: 480px) {
  body {
    padding: 1rem 0.85rem 2.5rem 0.85rem;
  }

  .brand-title {
    font-size: 2rem;
  }

  .watch-case {
    width: 168px;
    height: 168px;
  }

  .marker-12 { transform: translate(-50%, 62px) rotate(0deg); }
  .marker-1  { transform: translate(-50%, 62px) rotate(30deg); }
  .marker-2  { transform: translate(-50%, 62px) rotate(60deg); }
  .marker-3  { transform: translate(-50%, 62px) rotate(90deg); }
  .marker-4  { transform: translate(-50%, 62px) rotate(120deg); }
  .marker-5  { transform: translate(-50%, 62px) rotate(150deg); }
  .marker-6  { transform: translate(-50%, 62px) rotate(180deg); }
  .marker-7  { transform: translate(-50%, 62px) rotate(210deg); }
  .marker-8  { transform: translate(-50%, 62px) rotate(240deg); }
  .marker-9  { transform: translate(-50%, 62px) rotate(270deg); }
  .marker-10 { transform: translate(-50%, 62px) rotate(300deg); }
  .marker-11 { transform: translate(-50%, 62px) rotate(330deg); }

  .date-window {
    transform: translate(28px, -50%) rotate(-90deg);
  }

  .hour-hand {
    height: 38px;
  }

  .minute-hand {
    height: 52px;
  }

  .second-hand {
    height: 60px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .trust-pill {
    flex-direction: row;
    text-align: left;
    gap: 0.85rem;
    padding: 0.65rem 0.95rem;
  }
}
