:root {
  color-scheme: light;
  font-family: "Space Grotesk", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  background: #f6f1ea;
  color: #1b1b1b;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, #fff6e7 0%, #f3e8d8 45%, #e9dbc8 100%);
}

main {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 24px 96px;
}

.hero {
  display: grid;
  gap: 24px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(37, 23, 5, 0.12);
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffb12a;
  color: #2a1a00;
  font-weight: 600;
  font-size: 12px;
}

.title {
  font-size: 36px;
  margin: 12px 0 8px;
}

.subtitle {
  color: #5c4b3b;
  font-size: 16px;
  line-height: 1.5;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
}

.preview {
  width: 100%;
  border-radius: 16px;
  border: 2px solid #f0d9b7;
  background: #fff7ec;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.notice {
  font-size: 14px;
  color: #6f5b47;
}

.ar-container {
  position: fixed;
  inset: 0;
  background: #000;
}

.ar-overlay {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  padding: 24px;
}

.ar-overlay .panel {
  pointer-events: auto;
  background: rgba(15, 15, 15, 0.75);
  color: #fff;
  padding: 20px 24px;
  border-radius: 16px;
  max-width: 420px;
  text-align: center;
  backdrop-filter: blur(8px);
}

.ar-overlay .panel button {
  margin-top: 12px;
  width: 100%;
}

.status {
  margin-top: 12px;
  font-size: 13px;
  color: #ffd38b;
}
