/* ============================================================================
   UNDER CONSTRUCTION PAGE  /  VConnect Shop
   Uses the same design tokens as the main shop so the page feels native.
   ============================================================================ */

:root {
  --c-cream:        #F4F5F3;
  --c-cream-deep:   #E8E9E5;
  --c-forest:       #2E5D4E;
  --c-charcoal:     #2B2B2B;
  --c-text:         #3A3A3A;
  --c-muted:        #7A7363;
  --c-border:       #DCDDD8;
  --c-white:        #FFFFFF;
  --c-tan:          #D4A574;

  --f-display: 'Playfair Display', Georgia, serif;
  --f-body:    'DM Sans', system-ui, sans-serif;
  --f-script:  'Caveat', cursive;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--f-body);
  color: var(--c-charcoal);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  /* Same paper-grid + warm/cool ambient lighting as the main hero */
  background-image:
    radial-gradient(circle at 1px 1px, rgba(168,170,165,0.22) 1px, transparent 0),
    radial-gradient(ellipse 700px 520px at 18% 32%, var(--c-cream-deep), transparent 62%),
    radial-gradient(ellipse 620px 700px at 86% 70%, rgba(138,149,128,0.16), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.45) 0%, transparent 38%);
  background-color: var(--c-white);
  background-size: 24px 24px, auto, auto, auto;
}
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }

/* ============================================================================
   LAYOUT
   ============================================================================ */
.uc-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  position: relative;
  overflow: hidden;
}

/* Decorative dashed-circle accent, like the main hero */
.uc-wrap::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  border: 1.5px dashed rgba(212,165,116,0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.uc-wrap::after {
  content: '';
  position: absolute;
  bottom: -180px;
  left: -120px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(138,149,128,0.18), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* ============================================================================
   LOGO
   ============================================================================ */
.uc-logo {
  display: inline-flex;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.uc-logo-img { height: 42px; width: auto; }

/* ============================================================================
   CARD
   ============================================================================ */
.uc-card {
  position: relative;
  z-index: 1;
  max-width: 640px;
  width: 100%;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 18px;
  padding: 64px 56px 52px;
  text-align: center;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 24px 48px -24px rgba(46,93,78,0.14);
}

/* ============================================================================
   STAMP BADGE  (same vibe as the hero "no markup" stamp)
   ============================================================================ */
.uc-stamp {
  position: absolute;
  top: -42px;
  right: -14px;
  width: 96px;
  height: 96px;
  color: var(--c-tan);
  transform: rotate(-12deg);
  animation: uc-stamp-wobble 9s ease-in-out infinite;
}
.uc-stamp svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.uc-stamp-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 0.95;
  pointer-events: none;
}
.uc-stamp-top {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 2px;
  opacity: 0.95;
}
.uc-stamp-bot {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
@keyframes uc-stamp-wobble {
  0%, 100% { transform: rotate(-12deg); }
  50%      { transform: rotate(-7deg); }
}

/* ============================================================================
   TYPOGRAPHY
   ============================================================================ */
.uc-eyebrow {
  display: inline-block;
  font-family: var(--f-script);
  font-size: 22px;
  color: var(--c-tan);
  margin-bottom: 8px;
}
.uc-card h1 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(32px, 4.4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: var(--c-charcoal);
}
.uc-card h1 em {
  font-style: italic;
  color: var(--c-tan);
  font-weight: 600;
  position: relative;
  display: inline-block;
}
.uc-card h1 em::after {
  content: '';
  position: absolute;
  left: -2px; right: -2px;
  bottom: -4px;
  height: 6px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 8' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M2 5 Q50 1 100 4 T198 3' stroke='%23D4A574' stroke-width='2' fill='none' stroke-linecap='round' opacity='0.7'/%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
}
.uc-lead {
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-muted);
  max-width: 460px;
  margin: 0 auto 32px;
}

/* ============================================================================
   PROGRESS BAR
   ============================================================================ */
.uc-progress {
  width: 220px;
  height: 5px;
  background: var(--c-cream-deep);
  border-radius: 4px;
  overflow: hidden;
  margin: 0 auto 10px;
  position: relative;
}
.uc-progress-bar {
  position: absolute;
  inset: 0;
  width: 35%;
  background: linear-gradient(90deg, var(--c-tan), var(--c-forest));
  border-radius: 4px;
  animation: uc-progress 3.2s ease-in-out infinite;
}
@keyframes uc-progress {
  0%   { left: -35%; }
  100% { left: 100%; }
}
.uc-progress-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 32px;
}

/* ============================================================================
   ACTIONS
   ============================================================================ */
.uc-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.uc-btn-primary {
  background: var(--c-forest);
  color: var(--c-white);
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: all 0.2s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.uc-btn-primary:hover {
  background: var(--c-tan);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(212,165,116,0.45);
}
.uc-arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ============================================================================
   HANDWRITTEN NOTE
   ============================================================================ */
.uc-note {
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px dashed var(--c-border);
}
.uc-note-script {
  display: block;
  font-family: var(--f-script);
  font-size: 24px;
  color: var(--c-charcoal);
  line-height: 1.1;
  margin-bottom: 4px;
}
.uc-note-script em { color: var(--c-tan); font-style: italic; }
.uc-note-sub {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
}

/* ============================================================================
   FOOTER
   ============================================================================ */
.uc-footer {
  position: relative;
  z-index: 1;
  margin-top: 36px;
  font-size: 12px;
  color: var(--c-muted);
  text-align: center;
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */
@media (max-width: 600px) {
  .uc-card { padding: 56px 28px 40px; border-radius: 14px; }
  .uc-stamp { width: 80px; height: 80px; top: -34px; right: -8px; }
  .uc-stamp-top { font-size: 11px; }
  .uc-stamp-bot { font-size: 14px; }
  .uc-actions { flex-direction: column; gap: 10px; }
  .uc-btn-primary { width: 100%; justify-content: center; }
}
