﻿:root {
  color-scheme: light dark;
  --bg: #f8f3ea;
  --surface: #fffaf4;
  --surface-strong: #ffffff;
  --text: #1f2933;
  --muted: #667085;
  --border: rgba(31, 41, 51, 0.12);
  --border-strong: rgba(31, 41, 51, 0.18);
  --brand: #24324a;
  --accent: #c89b42;
  --focus: #7c5b25;
  --shadow: 0 18px 50px rgba(31, 41, 51, 0.07);
  --max-width: 1040px;
  --content-width: 820px;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #111827;
    --surface: #172033;
    --surface-strong: #1f2937;
    --text: #f8fafc;
    --muted: #b8c0cc;
    --border: rgba(248, 250, 252, 0.12);
    --border-strong: rgba(248, 250, 252, 0.2);
    --brand: #f4dfb2;
    --accent: #e3bf76;
    --focus: #f4dfb2;
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  }
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top center, color-mix(in srgb, var(--surface) 70%, transparent) 0, transparent 34rem);
}

.page {
  position: relative;
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0 42px;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  color: var(--text);
  text-decoration: none;
}

.logo strong {
  color: var(--brand);
  font-size: 1.05rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--muted);
  font-size: 0.86rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  font-size: 0.95rem;
}

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

.nav a {
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}

.nav a[aria-current="page"] {
  color: var(--brand);
  border-bottom-color: color-mix(in srgb, var(--brand) 38%, transparent);
}

.nav a:hover,
.inline-links a:hover,
a.text-link:hover {
  color: var(--brand);
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

.hero,
.panel,
.legal-section,
.support-card {
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface-strong) 88%, transparent);
  box-shadow: var(--shadow);
}

.hero {
  padding: clamp(34px, 7vw, 72px);
  border-radius: 32px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--brand);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 9vw, 6.2rem);
}

.legal-title {
  font-size: clamp(2.4rem, 8vw, 4.9rem);
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

main {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.content {
  width: min(100%, var(--content-width));
}

.panel,
.legal-section,
.support-card {
  border-radius: 24px;
  padding: clamp(24px, 4vw, 38px);
}

.product-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
}

.product-card h2,
.legal-section h2,
.support-card h2 {
  margin: 0 0 10px;
  font-size: clamp(1.28rem, 3vw, 1.72rem);
}

.product-card p,
.legal-section p,
.support-card p,
.legal-section ul {
  margin: 0;
}

.product-card p + p,
.legal-section p + p,
.support-card p + p {
  margin-top: 12px;
}

.muted {
  color: var(--muted);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  white-space: nowrap;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.inline-links {
  margin-top: 22px;
}

.text-link {
  color: var(--brand);
  font-weight: 750;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

.legal-section ul {
  padding-left: 1.2rem;
}

.legal-section li + li {
  margin-top: 8px;
}

.meta {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.support-card {
  min-height: 100%;
}

.contact-card {
  grid-column: 1 / -1;
}

.mail-button {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  margin-top: 18px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--brand);
  color: var(--bg);
  font-weight: 800;
  text-decoration: none;
}

.site-footer {
  width: min(100%, var(--content-width));
  margin: 68px auto 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-footer p + p {
  margin-top: 4px;
}

a:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--focus) 70%, transparent);
  outline-offset: 4px;
  border-radius: 8px;
}

@media (max-width: 760px) {
  .page {
    width: min(100% - 24px, var(--max-width));
    padding-top: 18px;
  }

  .site-header,
  .product-card {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header {
    padding-bottom: 24px;
  }

  .nav {
    justify-content: flex-start;
    gap: 8px 14px;
  }

  .site-footer {
    margin-top: 56px;
  }

  .hero {
    border-radius: 26px;
  }

  .panel,
  .legal-section,
  .support-card {
    border-radius: 22px;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .status-pill {
    white-space: normal;
  }
}




