:root {
  --bg-main: #030617;
  --bg-panel: rgba(8, 10, 32, 0.85);
  --bg-glass: rgba(12, 15, 44, 0.6);
  --accent: #7ef0c7;
  --accent-strong: #ffb774;
  --text-main: #f6fbff;
  --text-muted: #a7b6ea;
  --stroke: rgba(255, 255, 255, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --shadow-strong: 0 35px 80px rgba(0, 0, 0, 0.5);
  --shadow-soft: 0 25px 60px rgba(3, 5, 20, 0.55);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Roboto', 'Open Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(12, 24, 64, 0.5), transparent 60%),
              radial-gradient(circle at 80% 0%, rgba(9, 57, 69, 0.35), transparent 50%),
              var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--text-main);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

.announcement {
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.65rem 1rem;
  background: rgba(3, 5, 15, 0.9);
  color: var(--accent);
  border-bottom: 1px solid var(--stroke);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(3, 5, 15, 0.75);
  border-bottom: 1px solid var(--stroke);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo img {
  height: 56px;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav a {
  color: var(--text-muted);
}

.site-nav a:hover {
  color: var(--accent);
}

.hero {
  padding: 5rem 0 4rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--accent-strong);
  margin-bottom: 0.8rem;
}

.hero__content h1 {
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  margin: 0 0 1.5rem;
  line-height: 1.1;
}

.hero__content p {
  color: var(--text-muted);
  font-size: 1.08rem;
}

.hero__media {
  display: flex;
  justify-content: center;
}

.hero__glass {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg-glass);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-strong);
}

.hero__glass img {
  border-radius: var(--radius-md);
}

.notice {
  padding: 2rem 0 0;
}

.notice__card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke);
  background: rgba(9, 13, 40, 0.8);
  box-shadow: var(--shadow-soft);
}

.notice__card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.notice__card p {
  margin: 0;
}

.superfoods {
  padding: 4rem 0 2rem;
}

.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-heading h2 {
  margin: 0 0 0.8rem;
  font-size: 2.4rem;
}

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

.superfoods__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.75rem;
}

.food-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke);
  background: rgba(8, 12, 38, 0.8);
  box-shadow: var(--shadow-soft);
}

.food-card img {
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  height: 180px;
  object-fit: cover;
}

.food-card h3 {
  margin: 0 0 0.6rem;
}

.food-card p {
  margin: 0;
  color: var(--text-muted);
}

.highlight {
  padding: 4rem 0;
}

.highlight__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
  background: rgba(5, 8, 25, 0.9);
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-strong);
  padding: 3rem;
}

.highlight__media img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.highlight__content h2 {
  margin: 0 0 1rem;
  font-size: 2.2rem;
}

.highlight__content p {
  color: var(--text-muted);
}

.product {
  padding: 4rem 0;
}

.product__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  background: rgba(7, 11, 33, 0.85);
  padding: 3rem;
  box-shadow: var(--shadow-strong);
}

.product__media img {
  border-radius: var(--radius-lg);
}

.page-hero {
  padding: 4rem 0;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.page-hero__content h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
}

.page-hero__content p {
  color: var(--text-muted);
  margin: 0;
}

.page-hero__media {
  display: flex;
  justify-content: center;
}

.glass-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  background: var(--bg-glass);
  box-shadow: var(--shadow-strong);
}

.glass-card img {
  border-radius: var(--radius-md);
}

.info-grid {
  padding: 2rem 0 4rem;
}

.info-grid__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.75rem;
}

.info-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke);
  background: rgba(7, 11, 33, 0.85);
  box-shadow: var(--shadow-soft);
}

.info-note {
  margin-top: 2rem;
  text-align: center;
  color: var(--text-muted);
}

.highlight--alt .highlight__grid {
  background: rgba(6, 9, 28, 0.95);
}

.legal-content {
  padding: 2rem 0 5rem;
}

.legal-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  background: rgba(5, 8, 25, 0.92);
  padding: 3rem;
  box-shadow: var(--shadow-strong);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.legal-section h2 {
  margin: 0 0 0.75rem;
  font-size: 1.6rem;
}

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

.legal-section p + p {
  margin-top: 1rem;
}

.legal-list {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.legal-list li {
  margin-bottom: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #031215;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  box-shadow: 0 20px 40px rgba(126, 240, 199, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.contact {
  padding: 4rem 0 5rem;
}

.contact__card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  background: rgba(4, 7, 20, 0.9);
  padding: 3rem;
  box-shadow: var(--shadow-strong);
}

.contact__form {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.contact__form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-weight: 500;
}

.contact__form input,
.contact__form textarea {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  padding: 0.9rem 1rem;
  font: inherit;
}

.contact__form textarea {
  resize: vertical;
}

.form-feedback {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.site-footer {
  background: rgba(2, 4, 14, 0.95);
  padding: 4rem 0;
  border-top: 1px solid var(--stroke);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.site-footer p {
  margin-top: 0;
  color: var(--text-muted);
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin: 1.5rem 0;
}

.legal-nav a {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.legal-nav a:hover {
  color: var(--accent);
}

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

@media (max-width: 900px) {
  .site-nav {
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
  }

  .legal-card,
  .highlight__grid,
  .product__grid,
  .contact__card {
    padding: 2rem;
  }
}

@media (max-width: 600px) {
  .site-header__inner {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero,
  .superfoods,
  .highlight,
  .product,
  .contact {
    padding: 3rem 0;
  }

  .notice__card {
    flex-direction: column;
    text-align: center;
  }

  .contact__card,
  .legal-card {
    padding: 1.75rem;
  }
}
