:root {
  --bg: #ffffff;
  --panel: #f8fafc;
  --text: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --line-strong: #d1d5db;
  --brand: #f97316;
  --brand-dark: #ea580c;
  --radius-lg: 18px;
  --radius-md: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 20% 0%, #fff7ed 0%, var(--bg) 35%);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
}

.brand {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  gap: 18px;
}

.nav a {
  font-size: 0.95rem;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 8px;
}

.nav a:hover {
  color: var(--text);
  background: #f3f4f6;
}

main {
  padding: 36px 0 20px;
}

.hero {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 34px 10px 28px;
}

.eyebrow {
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin: 0 0 16px;
}

.hero p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 700px;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.22);
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  border-color: var(--line-strong);
  background: #fff;
  color: #1f2937;
}

.btn-secondary:hover {
  background: #f9fafb;
}

.mission-card {
  margin-top: 20px;
  background: linear-gradient(180deg, #fff, #fcfcfd);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: 0 8px 30px rgba(17, 24, 39, 0.04);
}

.mission-card h2 {
  margin: 0 0 8px;
  font-size: 1.4rem;
}

.mission-card p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

.mission-card p + p {
  margin-top: 12px;
}

.products {
  margin-top: 26px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.section-head {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 2px;
}

.section-head h2 {
  margin: 0;
  font-size: 1.35rem;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(17, 24, 39, 0.04);
}

.product-card-muted {
  background: var(--panel);
}

.product-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-top img {
  display: block;
  width: 96px;
  height: auto;
}

.status {
  border: 1px solid #fed7aa;
  background: #fff7ed;
  color: #9a3412;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.status-soon {
  border-color: #d1d5db;
  background: #f3f4f6;
  color: #4b5563;
}

.product-card h3 {
  margin: 14px 0 10px;
  font-size: 1.2rem;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.product-link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-dark);
  font-weight: 600;
}

.product-link::after {
  content: "->";
  font-size: 0.9rem;
}

.product-link:hover {
  color: #c2410c;
}

.product-link-disabled {
  color: #6b7280;
  cursor: default;
}

.product-link-disabled::after {
  content: "";
}

.placeholder-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #e5e7eb;
  color: #374151;
  font-weight: 700;
}

.footer {
  padding: 32px 0 38px;
  text-align: center;
}

.footer p {
  margin: 0;
  color: #9ca3af;
  font-size: 0.92rem;
}

@media (max-width: 700px) {
  .page {
    padding: 0 16px;
  }

  .topbar {
    height: 68px;
  }

  .hero {
    padding-top: 18px;
  }

  .hero p {
    font-size: 1rem;
  }

  .mission-card {
    padding: 20px;
  }
}
