:root {
  --bg: #071f22;
  --panel: #0b2d31;
  --panel-2: #0a2428;
  --text: #eaf7f7;
  --muted: rgba(234, 247, 247, 0.72);
  --border: rgba(234, 247, 247, 0.12);
  --teal: #33a6a6;
  --dark-teal: #0c5d62;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  --radius: 18px;

  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  background:
    radial-gradient(1200px 650px at 20% 0%, rgba(51, 166, 166, 0.22), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(12, 93, 98, 0.32), transparent 55%),
    linear-gradient(180deg, var(--bg), #041517);
  color: var(--text);
}

img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration-color: rgba(51, 166, 166, 0.6); text-underline-offset: 4px; }
a:hover { text-decoration-color: rgba(51, 166, 166, 1); }

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: #fff;
  color: #000;
  border-radius: 10px;
}
.skip-link:focus { left: 0.75rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(4, 21, 23, 0.55);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.brand { display: inline-flex; align-items: center; gap: 0.75rem; }
.brand-logo {
  width: 200px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a {
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  text-decoration: none;
  color: rgba(234, 247, 247, 0.92);
  border: 1px solid transparent;
}
.nav a:hover {
  border-color: rgba(51, 166, 166, 0.32);
  background: rgba(51, 166, 166, 0.10);
}
.nav .nav-cta {
  border-color: rgba(51, 166, 166, 0.50);
  background: rgba(51, 166, 166, 0.14);
}

.hero {
  padding: 4.25rem 0 2.5rem;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.3vw, 3.4rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 1rem;
}
.lead {
  font-size: 1.1rem;
  color: rgba(234, 247, 247, 0.9);
  line-height: 1.55;
  margin: 0 0 1.25rem;
}
.note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.1rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(234, 247, 247, 0.18);
  background: rgba(234, 247, 247, 0.06);
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  font-weight: 650;
}
.button:hover { border-color: rgba(51, 166, 166, 0.45); background: rgba(51, 166, 166, 0.12); }
.button.primary {
  background: linear-gradient(135deg, rgba(51, 166, 166, 0.95), rgba(12, 93, 98, 0.95));
  border-color: rgba(51, 166, 166, 0.65);
  box-shadow: var(--shadow);
}
.button.primary:hover { filter: brightness(1.03); }
.button.ghost { background: transparent; }
.button.small { padding: 0.65rem 0.9rem; font-weight: 600; }


.section { padding: 3.5rem 0; }
.section h2 {
  font-size: 1.9rem;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(4, 21, 23, 0.32);
  padding: 1.25rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
}
.card h3 { margin: 0 0 0.5rem; font-size: 1.3rem; letter-spacing: -0.01em; }
.card p { margin: 0 0 1rem; color: rgba(234, 247, 247, 0.88); line-height: 1.55; }
.card-actions { margin-top: 1rem; }

.bullets {
  margin: 0;
  padding-left: 1.2rem;
  color: rgba(234, 247, 247, 0.82);
  line-height: 1.6;
}
.bullets li { margin: 0.35rem 0; }

.product-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}
.subhead { margin: 1.25rem 0 0.5rem; color: rgba(234, 247, 247, 0.92); font-size: 1.05rem; }
.inline-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1rem; }

.product-media {
  margin: 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(4, 21, 23, 0.24);
  padding: 0.9rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
}
.product-media img { width: 100%; border-radius: 14px; display: block; }
.product-media figcaption { margin-top: 0.75rem; color: var(--muted); font-size: 0.95rem; }

/* Override the generic product image sizing for the juicer kit hero photo */
.product-media.juicer-media img {
  width: 50%;
  margin: 0 auto;
}

.product-media.placeholder {
  min-height: 260px;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}
.placeholder-inner { text-align: center; max-width: 28rem; }
.placeholder-title { font-weight: 750; margin-bottom: 0.35rem; }
.placeholder-note { color: var(--muted); }
.placeholder-note code { color: rgba(234, 247, 247, 0.92); }

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.contact-form {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(4, 21, 23, 0.32);
  padding: 1.25rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
  display: grid;
  gap: 0.85rem;
}
.contact-form label { display: grid; gap: 0.4rem; }
.contact-form span { color: var(--muted); font-size: 0.9rem; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(234, 247, 247, 0.14);
  background: rgba(7, 31, 34, 0.55);
  color: var(--text);
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(51, 166, 166, 0.6);
  box-shadow: 0 0 0 4px rgba(51, 166, 166, 0.12);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  color: var(--muted);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: rgba(234, 247, 247, 0.92); }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .product-inner { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .brand-logo { width: 180px; }
  .juicer-media img { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}


