:root {
  --bg: #f6f6f6;
  --fg: #111111;
  --muted: #555555;
  --accent: #c9963b;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent);
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}

.card {
  background: #ffffff;
  padding: 2.5rem 2.75rem;
  max-width: 840px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.logo {
  margin-bottom: 1.75rem;
}

.logo-title {
  font-size: 2.4rem;
  line-height: 2.24rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none !important;
  color: var(--fg);
}

.logo-subtitle {
  display: block;
  font-size: 1.36rem;
  font-weight: normal;
  color: var(--muted);
  margin-top: 0rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  font-size: 1.65em;
}

.section-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  border-left: 3px solid var(--accent);
  padding-left: 0.5rem;
}

.tagline {
  margin-top: 1.75rem;
  padding-left: 0.35rem;
  border-left: 3px solid var(--accent);
  font-size: 1.02rem;
  color: var(--muted);
}

.content {
  margin-top: 2rem;
  font-size: 0.98rem;
}

.content p + p {
  margin-top: 0.9rem;
}

.highlight {
  font-weight: 600;
}

.legal-block {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eeeeee;
}

.legal-block:last-child {
  border-bottom: none;
}

.legal-block h2 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.legal-block strong {
  color: var(--fg);
  font-weight: 600;
}

.footer {
  margin-top: 2.4rem;
  font-size: 0.85rem;
  color: var(--muted);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 0.8rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-link {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.footer-link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

@media (max-width: 640px) {
  .card {
    padding: 1.9rem 1.7rem;
    border-radius: 12px;
  }

  .logo-title {
    font-size: 1.9rem;
    line-height: 1.8rem;
  }

  .logo-subtitle {
    font-size: 1.08rem;
  }

  .tagline {
    font-size: 0.94rem;
  }
}

.product-card {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: #fcfcfc;
  border: 1px solid #eeeeee;
  border-radius: 12px;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-left: 4px solid var(--accent);
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.04);
}

.product-logo-container {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
}

.product-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  flex: 1;
}

.product-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.product-title a {
  text-decoration: none;
  font-weight: 700;
  color: var(--fg);
}

.product-title a:hover {
  color: var(--accent);
}

.product-desc {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.meta-badges {
  display: flex;
  gap: 0.5rem;
}

.badge {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  background-color: #eee;
  color: var(--muted);
}

.product-link {
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.product-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .product-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
  }
  
  .product-logo-container {
    margin-bottom: 1rem;
  }
  
  .product-meta {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .product-link {
    font-size: 1rem;
  }
  
  .product-card {
    border-left: 1px solid #eeeeee;
    border-top: 4px solid var(--accent);
  }
}