:root {
  --bg: #f6f0e6;
  --bg-strong: #fffaf3;
  --text: #1d1a16;
  --muted: #6e655a;
  --line: #ddd1bf;
  --brand: #143f33;
  --brand-strong: #0d2f26;
  --accent: #cc9b45;
  --shadow: 0 20px 50px rgba(20, 63, 51, 0.08);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(204, 155, 69, 0.18), transparent 30%),
    linear-gradient(180deg, #fbf7f1 0%, var(--bg) 100%);
}

a {
  color: inherit;
}

.page-shell {
  min-height: 100vh;
  padding: 24px;
}

.card {
  max-width: 1080px;
  margin: 0 auto;
  background: rgba(255, 250, 243, 0.92);
  border: 1px solid rgba(221, 209, 191, 0.9);
  border-radius: 32px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.topbar,
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-badge {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--brand);
  color: #f9f4eb;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text span,
.muted {
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
}

.hero {
  padding: 48px 28px 56px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.hero-copy h1,
.privacy-content h1 {
  margin: 0 0 16px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

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

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

.store-button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.store-button:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.store-button.primary {
  background: var(--brand);
  color: #fffaf3;
}

.store-button.secondary {
  background: transparent;
  color: var(--brand);
  border: 1px solid rgba(20, 63, 51, 0.18);
}

.store-button.disabled {
  cursor: default;
  background: #efe4d3;
  color: #7c7062;
  border: 1px solid #e2d4c0;
}

.text-link {
  color: var(--brand);
  border: 1px solid rgba(20, 63, 51, 0.12);
}

.hero-panel {
  position: relative;
  padding: 28px;
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(20, 63, 51, 0.98), rgba(11, 34, 28, 0.96)),
    repeating-linear-gradient(
      180deg,
      transparent,
      transparent 24px,
      rgba(255, 255, 255, 0.09) 24px,
      rgba(255, 255, 255, 0.09) 25px
    );
  color: #f8f2e8;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(204, 155, 69, 0.16);
  color: #f3c67b;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-panel h2 {
  margin: 0 0 10px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2rem;
}

.hero-panel p {
  margin: 0;
  max-width: 360px;
  line-height: 1.7;
  color: rgba(248, 242, 232, 0.78);
}

.privacy-content {
  padding: 32px 28px 56px;
}

.privacy-content > p {
  max-width: 760px;
  line-height: 1.8;
  color: var(--muted);
}

.privacy-sections {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.privacy-section {
  padding: 22px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(221, 209, 191, 0.9);
  border-radius: 20px;
}

.privacy-section h2 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.privacy-section p,
.privacy-section li {
  color: var(--muted);
  line-height: 1.75;
}

.privacy-section ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.footer {
  border-top: 1px solid rgba(221, 209, 191, 0.9);
  color: var(--muted);
  font-size: 0.95rem;
}

.footer a {
  color: var(--brand);
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .topbar,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 540px) {
  .page-shell {
    padding: 12px;
  }

  .topbar,
  .hero,
  .privacy-content,
  .footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-copy h1,
  .privacy-content h1 {
    font-size: 2.4rem;
  }

  .store-button,
  .text-link {
    width: 100%;
  }
}
