:root {
  --bg: #fff8f0;
  --ink: #2a2f45;
  --muted: #6b728a;
  --coral: #ff7a7a;
  --mint: #7ed6c1;
  --sky: #7eb6ff;
  --sun: #ffc857;
  --card: #ffffff;
  --line: rgba(42, 47, 69, 0.08);
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  padding: 1.25rem 1.25rem 3rem;
  position: relative;
  overflow-x: hidden;
}

.blobs {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 20%, rgba(126, 214, 193, 0.45), transparent 35%),
    radial-gradient(circle at 85% 15%, rgba(255, 122, 122, 0.35), transparent 32%),
    radial-gradient(circle at 70% 80%, rgba(126, 182, 255, 0.4), transparent 38%),
    radial-gradient(circle at 20% 85%, rgba(255, 200, 87, 0.35), transparent 30%);
}

.top {
  width: min(920px, 100%);
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
}
.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(42, 47, 69, 0.12);
}

nav {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}
nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}
nav a:hover { color: var(--ink); }

main {
  width: min(920px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.card {
  background: var(--card);
  border-radius: 28px;
  padding: 2rem 1.75rem 2.15rem;
  box-shadow: 0 18px 50px rgba(42, 47, 69, 0.1);
  border: 1px solid var(--line);
  animation: rise 0.7s ease both;
}

.hero { text-align: center; }

.logo {
  width: min(220px, 70%);
  height: auto;
  margin: 0 auto 1.15rem;
  display: block;
  border-radius: 22px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--coral);
  margin-bottom: 0.65rem;
}

h1 {
  font-size: clamp(1.65rem, 4vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

h2 {
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.7rem;
}

h3 {
  font-size: 1.02rem;
  margin-bottom: 0.4rem;
}

.samples-heading {
  margin-top: 1.35rem;
  margin-bottom: 0.35rem;
}

.samples-intro {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.lede, .panel > p, article p, .note, .social-note, .fine {
  color: var(--muted);
  line-height: 1.55;
}

.lede { margin-bottom: 1.2rem; }
.panel > p { margin-bottom: 1rem; }

.status {
  display: inline-block;
  background: linear-gradient(120deg, rgba(126,214,193,0.35), rgba(126,182,255,0.35));
  color: var(--ink);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, var(--coral), #ff9a6b);
  color: white;
  text-decoration: none;
  font-weight: 700;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(255, 122, 122, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 122, 122, 0.45);
}
.btn.ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  border: 1.5px solid rgba(42, 47, 69, 0.15);
}
.btn.ghost:hover {
  border-color: rgba(42, 47, 69, 0.35);
  box-shadow: none;
}

.pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
}
.pills li {
  background: rgba(126, 214, 193, 0.25);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 700;
}

.grid {
  display: grid;
  gap: 0.9rem;
}
.grid.three { grid-template-columns: repeat(3, 1fr); }

.grid article {
  background: rgba(255, 248, 240, 0.85);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem 1.05rem;
}

.samples {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 0.25rem;
}

.samples figure {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(42, 47, 69, 0.06);
}

.samples a {
  display: block;
  background: #fafafa;
}

.samples img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: #fff;
  transition: transform 0.2s ease;
}

.samples a:hover img {
  transform: scale(1.02);
}

.samples figcaption {
  padding: 0.7rem 0.85rem 0.85rem;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
}

.note { font-size: 0.92rem; margin-top: 1rem; }

.contact { text-align: center; }
.contact .btn { margin: 0.35rem 0 1rem; }
.social-note { font-size: 0.9rem; }

footer {
  width: min(920px, 100%);
  margin: 1.75rem auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}
.fine { margin-top: 0.35rem; font-size: 0.82rem; }

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

@media (max-width: 720px) {
  .grid.three, .samples { grid-template-columns: 1fr; }
  .top { flex-direction: column; align-items: flex-start; }
  .card { padding: 1.5rem 1.2rem 1.7rem; border-radius: 22px; }
}

.cover-row {
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr;
  gap: 1.25rem;
  align-items: center;
  margin: 1.25rem 0 0.5rem;
}
.cover {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(42, 47, 69, 0.12);
}
.cover img {
  display: block;
  width: 100%;
  height: auto;
}
.cover-copy h3 {
  margin-bottom: 0.5rem;
}
.cover-copy p {
  color: var(--muted);
  line-height: 1.55;
}
@media (max-width: 720px) {
  .cover-row { grid-template-columns: 1fr; }
  .cover { max-width: 280px; margin: 0 auto; }
}

.panel > p + p { margin-top: 0.75rem; }

.qr-box {
  margin-top: 1.25rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255,248,240,0.9);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem 1.25rem;
}
.qr-box img {
  width: 160px;
  height: 160px;
  background: #fff;
  border-radius: 8px;
}
.qr-box code {
  font-size: 0.9rem;
  background: rgba(42,47,69,0.06);
  padding: 0.15rem 0.4rem;
  border-radius: 6px;
}

.upload-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1rem;
  text-align: left;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.upload-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.92rem;
}
.upload-form input[type="text"],
.upload-form input[type="file"] {
  font: inherit;
  font-weight: 500;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  border: 1.5px solid rgba(42,47,69,0.15);
  background: #fff;
}
.upload-form label.check {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.65rem;
  font-weight: 500;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}
.upload-form label.check input { margin-top: 0.2rem; }
.upload-form .btn {
  border: none;
  cursor: pointer;
  align-self: center;
  font: inherit;
}
.samples.compare { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 720px) {
  .samples.compare { grid-template-columns: 1fr; }
}
a { color: inherit; }
.cover-copy a, .note a, .fine a { color: var(--coral); font-weight: 700; }
