:root {
  --bg: #f4efe6;
  --bg-accent: #e9dcc6;
  --card: rgba(255, 251, 245, 0.92);
  --text: #1d1914;
  --muted: #6a6157;
  --border: rgba(86, 68, 47, 0.18);
  --primary: #a34824;
  --primary-hover: #85391c;
  --secondary-bg: rgba(163, 72, 36, 0.08);
  --shadow: 0 24px 60px rgba(72, 46, 16, 0.16);
  --spotlight-bg: linear-gradient(135deg, rgba(163, 72, 36, 0.14), rgba(210, 154, 106, 0.16));
  --frame-dark: #3b2b1e;
  --frame-light: #fff5e6;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(circle at top, rgba(163, 72, 36, 0.12), transparent 30%),
    linear-gradient(160deg, var(--bg) 0%, var(--bg-accent) 100%);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
}

.container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card {
  max-width: 700px;
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 40px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-art {
  position: relative;
  height: 190px;
  margin: -8px 0 18px;
  overflow: hidden;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(163, 72, 36, 0.18);
  border-radius: 999px;
}

.hero-orbit-left {
  width: 180px;
  height: 180px;
  top: 0;
  left: -36px;
}

.hero-orbit-right {
  width: 220px;
  height: 220px;
  right: -42px;
  top: -34px;
}

.hero-stack {
  position: absolute;
  inset: 18px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-frame {
  position: absolute;
  width: 220px;
  aspect-ratio: 16 / 10;
  border-radius: 22px;
  border: 1px solid rgba(59, 43, 30, 0.12);
  background: linear-gradient(135deg, rgba(255, 245, 230, 0.95), rgba(236, 214, 188, 0.94));
  box-shadow: 0 18px 40px rgba(72, 46, 16, 0.12);
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 22% 28%, rgba(163, 72, 36, 0.85) 0 10px, transparent 11px),
    radial-gradient(circle at 78% 34%, rgba(59, 43, 30, 0.9) 0 12px, transparent 13px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.1)),
    linear-gradient(160deg, rgba(163, 72, 36, 0.12), rgba(59, 43, 30, 0.18));
}

.hero-frame-back {
  transform: translateX(-72px) rotate(-12deg);
  opacity: 0.5;
}

.hero-frame-mid {
  transform: translateX(72px) rotate(10deg);
  opacity: 0.72;
}

.hero-frame-front {
  width: 270px;
  transform: translateY(8px);
  background: linear-gradient(135deg, rgba(255, 248, 238, 1), rgba(245, 227, 205, 0.98));
  box-shadow: 0 24px 46px rgba(72, 46, 16, 0.18);
}

.hero-frame-front::before {
  inset: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.2)),
    linear-gradient(180deg, rgba(163, 72, 36, 0.14), rgba(59, 43, 30, 0.1));
}

.hero-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(163, 72, 36, 0.08);
}

.hero-dot-one {
  top: 34px;
  left: 34px;
}

.hero-dot-two {
  top: 34px;
  left: 58px;
  background: var(--frame-dark);
}

.hero-dot-three {
  top: 34px;
  left: 82px;
  background: rgba(163, 72, 36, 0.45);
}

h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
  max-width: 11ch;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.subtitle {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
  max-width: 38ch;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, var(--primary), transparent);
  margin: 28px 0;
}

.notice {
  margin: 0 0 22px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--secondary-bg);
}

.notice-title {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
}

.spotlight {
  margin: 6px 0 24px;
  padding: 24px;
  border: 1px solid rgba(163, 72, 36, 0.16);
  border-radius: 20px;
  background: var(--spotlight-bg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.spotlight-label {
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.spotlight-copy {
  margin-bottom: 0;
  font-size: 21px;
  line-height: 1.35;
}

.actions-primary {
  margin-top: 20px;
}

p {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 17px;
}

.actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 13px 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.button.primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(163, 72, 36, 0.22);
}

.button.primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.button.secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.button.secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .card {
    padding: 28px;
    border-radius: 18px;
  }

  .hero-art {
    height: 150px;
    margin-bottom: 12px;
  }

  .hero-frame {
    width: 164px;
    border-radius: 16px;
  }

  .hero-frame::before {
    inset: 12px;
    border-radius: 12px;
  }

  .hero-frame-front {
    width: 210px;
  }

  .hero-dot {
    width: 11px;
    height: 11px;
  }

  .subtitle,
  p {
    font-size: 16px;
  }

  .spotlight {
    padding: 20px;
  }

  .spotlight-copy {
    font-size: 18px;
  }

  .button {
    width: 100%;
    text-align: center;
  }
}
