/* ===== RESET ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
  background: #0a0a0a;
  color: #f2f2f2;
  line-height: 1.6;
}

/* ===== LAYOUT ===== */
.container {
  min-height: 100vh;
  padding: 2rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
  margin: 0 auto;
}

/* ===== HERO ===== */
.hero {
  text-align: center;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: 2.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tagline {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #b0b0b0;
}

/* ===== LOGO ===== */
.logo {
  display: flex;
  justify-content: center;
  margin-bottom: 0.6rem;
}

.logo-svg {
  width: 60px;          /* Mobile default */
  height: auto;
  color: #f2f2f2;

  /* Animation */
  opacity: 0;
  transform: translateY(6px) scale(0.98);
  animation: logoFadeIn 600ms ease-out forwards;
}

/* Desktop refinement */
@media (min-width: 768px) {
  .logo-svg {
    width: 78px;
  }
}

@keyframes logoFadeIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.brand-name {
  opacity: 0;
  animation: textFadeIn 400ms ease-out forwards;
  animation-delay: 200ms;
}

.tagline {
  opacity: 0;
  animation: textFadeIn 400ms ease-out forwards;
  animation-delay: 300ms;
}

@keyframes textFadeIn {
  to {
    opacity: 1;
  }
}

/* ===== MESSAGE ===== */
.message {
  text-align: center;
  margin-bottom: 2.5rem;
}

.message p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

/* Images behave */
.product-image {
  width: 100%;
  height: auto;
  max-width: 420px;
  margin: 0 auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  filter: contrast(1.05) saturate(0.95);
}

@media (min-width: 768px) {
  .products {
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
  }

  .product-image {
    max-width: none;
  }
}


/* ===== CTA ===== */
.cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.button {
  display: block;
  text-align: center;
  padding: 0.85rem 1rem;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition: background 0.15s ease, color 0.15s ease;
}

.button.primary {
  background: #f2f2f2;
  color: #0a0a0a;
}

.button.primary:hover {
  background: #ffffff;
}

.button.secondary {
  border: 1px solid #f2f2f2;
  color: #f2f2f2;
}

.button.secondary:hover {
  background: #1a1a1a;
}

/* ===== CREDIBILITY ===== */
.credibility {
  text-align: center;
  font-size: 0.85rem;
  color: #9a9a9a;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 1rem 0;
}

footer a {
  color: #9a9a9a;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ===== DESKTOP ENHANCEMENTS ===== */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 2.75rem;
  }

  .message p {
    font-size: 1.05rem;
  }
}

/* ===== PRIVACY PAGE ===== */
.privacy ul {
  list-style: none;
  margin: 1rem 0 1.5rem;
  padding: 0;
}

.privacy li {
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.5rem;
  color: #cfcfcf;
}

.privacy li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #888;
}

@media (prefers-reduced-motion: reduce) {
  .logo-svg,
  .brand-name,
  .tagline {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
