:root {
  --bg: #1f120a;
  --bg-2: #2b1810;
  --cream: #f5ede0;
  --cream-soft: #ece0cc;
  --ink: #2b1810;
  --ink-soft: #5a4435;
  --amber: #c17a20;
  --amber-hi: #d89139;
  --amber-ink: #1a0e06;
  --burgundy: #6b1d1d;
  --line: rgba(245, 237, 224, 0.18);
  --radius: 20px;
  --shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6),
            0 10px 20px -10px rgba(0, 0, 0, 0.4);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--cream);
  background:
    radial-gradient(1200px 600px at 15% 10%, rgba(193, 122, 32, 0.18), transparent 60%),
    radial-gradient(900px 500px at 85% 90%, rgba(107, 29, 29, 0.25), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  background-attachment: fixed;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  z-index: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1  0 0 0 0 0.05  0 0 0 0 0  0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.stage {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 48px 20px 32px;
  gap: 24px;
}

.card {
  width: 100%;
  max-width: 620px;
  background: linear-gradient(180deg, rgba(245, 237, 224, 0.04) 0%, rgba(245, 237, 224, 0.02) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 32px 40px;
  text-align: center;
  box-shadow: var(--shadow);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: rise 700ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(193, 122, 32, 0.12);
  border: 1px solid rgba(193, 122, 32, 0.35);
  color: var(--amber-hi);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber-hi);
  box-shadow: 0 0 0 0 rgba(216, 145, 57, 0.6);
  animation: pulse 2.2s ease-out infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(216, 145, 57, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(216, 145, 57, 0); }
  100% { box-shadow: 0 0 0 0 rgba(216, 145, 57, 0); }
}

.logo {
  display: block;
  width: 108px;
  height: 108px;
  margin: 22px auto 4px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--cream);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5),
              0 0 0 1px rgba(245, 237, 224, 0.1);
}

@media (min-width: 560px) {
  .logo { width: 124px; height: 124px; }
}

.title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(40px, 8vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 18px 0 20px;
  color: var(--cream);
}

.title em {
  font-style: italic;
  font-weight: 900;
  background: linear-gradient(135deg, var(--amber-hi) 0%, #e9b06a 50%, var(--amber) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.tagline {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(15px, 2.3vw, 18px);
  color: var(--cream-soft);
  margin: 0;
  letter-spacing: 0.04em;
}

.divider {
  color: rgba(245, 237, 224, 0.35);
  margin: 26px auto 22px;
  line-height: 0;
}

.message {
  font-size: clamp(15px, 2.2vw, 17px);
  line-height: 1.65;
  color: rgba(245, 237, 224, 0.82);
  max-width: 44ch;
  margin: 0 auto 32px;
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 12px 22px;
  border-radius: 14px;
  text-decoration: none;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 220ms ease,
              background 220ms ease,
              border-color 220ms ease,
              color 220ms ease;
  will-change: transform;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.btn:focus-visible {
  outline: 2px solid var(--amber-hi);
  outline-offset: 3px;
}

.btn-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
  text-align: left;
}

.btn-title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.btn-sub {
  font-size: 13px;
  font-weight: 400;
  opacity: 0.75;
  font-variant-numeric: tabular-nums;
  margin-top: 2px;
}

.btn-icon {
  flex-shrink: 0;
}

.btn-primary {
  background: linear-gradient(135deg, var(--amber-hi) 0%, var(--amber) 100%);
  color: var(--amber-ink);
  box-shadow: 0 12px 24px -12px rgba(193, 122, 32, 0.7),
              inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px -12px rgba(193, 122, 32, 0.8),
              inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: rgba(245, 237, 224, 0.04);
  color: var(--cream);
  border: 1px solid rgba(245, 237, 224, 0.22);
}

.btn-secondary:hover {
  background: rgba(245, 237, 224, 0.08);
  border-color: rgba(245, 237, 224, 0.4);
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: translateY(0);
}

.note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 22px auto 0;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(193, 122, 32, 0.08);
  border: 1px solid rgba(193, 122, 32, 0.28);
  color: var(--cream);
  font-size: 13.5px;
  line-height: 1.4;
  text-align: left;
}

.note svg {
  flex-shrink: 0;
  color: var(--amber-hi);
}

.info-block {
  margin-top: 16px;
  padding: 18px 20px 16px;
  border-radius: 14px;
  background: rgba(245, 237, 224, 0.03);
  border: 1px solid rgba(245, 237, 224, 0.1);
  text-align: center;
}

.info-kicker {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-hi);
}

.info-title {
  margin: 0 0 12px;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-style: italic;
  font-size: 18px;
  color: var(--cream);
}

.info-rows {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.info-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 8px;
  color: rgba(245, 237, 224, 0.78);
  font-size: 14px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease;
}

.info-row svg {
  flex-shrink: 0;
  color: var(--amber-hi);
}

.info-row--link:hover {
  color: var(--cream);
  background: rgba(245, 237, 224, 0.05);
  border-color: rgba(245, 237, 224, 0.15);
}

.info-row--link:focus-visible {
  outline: 2px solid var(--amber-hi);
  outline-offset: 3px;
}

.footer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(245, 237, 224, 0.5);
  letter-spacing: 0.02em;
}

.footer .dot { opacity: 0.6; }

@media (min-width: 560px) {
  .actions {
    flex-direction: row;
    justify-content: center;
  }
  .btn { flex: 1; max-width: 260px; justify-content: flex-start; }
}

@media (min-width: 768px) {
  .card { padding: 56px 48px 48px; }
}

@media (prefers-reduced-motion: reduce) {
  .card, .badge-dot { animation: none; }
  .btn { transition: none; }
  .btn:hover { transform: none; }
}
