:root {
  --ink: #151515;
  --coal: #090909;
  --panel: #ffffff;
  --paper: #f4f5f5;
  --muted: #666a70;
  --line: #dfe1e3;
  --red: #bc171f;
  --red-dark: #8d1017;
  --silver: #c6c9cc;
  --shadow: 0 20px 50px rgba(10, 10, 10, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--panel);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--panel);
  color: var(--ink);
  padding: 0.75rem 1rem;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  top: 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  overflow: hidden;
  white-space: nowrap;
}

.page-width {
  width: min(1160px, calc(100% - 32px));
  margin-inline: auto;
}

.top-note {
  background: var(--red);
  color: white;
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-head {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(9, 9, 9, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-head.is-compact {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  background: rgba(9, 9, 9, 0.97);
}

.nav-wrap {
  width: min(1160px, calc(100% - 32px));
  margin-inline: auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: white;
  text-decoration: none;
}

.brand-logo {
  width: 126px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
}

.brand-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--red), #f04d54);
  font-weight: 900;
  color: white;
  box-shadow: 0 12px 26px rgba(188, 23, 31, 0.35);
}

.brand-mark strong,
.brand-mark small {
  display: block;
}

.brand-mark strong {
  font-size: 1.05rem;
  line-height: 1.1;
}

.brand-mark small {
  color: #cfd2d5;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
  font-size: 0.94rem;
}

.nav-links a {
  text-decoration: none;
  color: #ececec;
}

.nav-links a:hover {
  color: white;
}

.nav-action,
.main-action,
.order-button,
.text-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  background: var(--red);
  color: white;
  text-decoration: none;
  font-weight: 800;
  padding: 0.85rem 1.15rem;
  box-shadow: 0 14px 28px rgba(188, 23, 31, 0.28);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-action {
  min-height: 42px;
  padding: 0.68rem 0.95rem;
}

.main-action:hover,
.order-button:hover,
.text-action:hover,
.nav-action:hover {
  transform: translateY(-2px);
  background: var(--red-dark);
  box-shadow: 0 18px 34px rgba(188, 23, 31, 0.34);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: transparent;
  padding: 0.65rem;
}

.menu-button span:not(.visually-hidden) {
  display: block;
  height: 2px;
  background: white;
  margin: 5px 0;
}

.hero-section {
  background:
    radial-gradient(circle at 78% 18%, rgba(188, 23, 31, 0.24), transparent 28%),
    linear-gradient(140deg, #090909 0%, #1b1b1d 54%, #090909 100%);
  color: white;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.9rem;
  color: var(--red);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.hero-copy h1,
.content-section h2,
.final-section h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-copy h1 {
  font-size: clamp(2.65rem, 6vw, 3.8rem);
  max-width: 860px;
}

.hero-lead {
  color: #d7d7d7;
  font-size: clamp(1.04rem, 2vw, 1.22rem);
  max-width: 720px;
  margin: 1.25rem 0 1.4rem;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem 1rem;
  padding: 0;
  margin: 0 0 1.5rem;
  list-style: none;
  color: #f2f2f2;
}

.benefit-list li {
  position: relative;
  padding-left: 1.45rem;
}

.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(188, 23, 31, 0.22);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.quiet-link {
  color: white;
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.use-note {
  margin: 1.25rem 0 0;
  color: #c8cbcd;
  font-size: 0.92rem;
}

.product-panel {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.product-panel::before {
  content: "";
  position: absolute;
  width: min(430px, 86vw);
  height: min(430px, 86vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250, 244, 228, 0.92) 0%, rgba(206, 184, 133, 0.34) 46%, transparent 72%);
  filter: blur(4px);
  opacity: 0.86;
}

.badge-stack {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.badge-stack span {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  backdrop-filter: blur(10px);
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

.badge-stack span:nth-child(1) {
  top: 7%;
  left: 0;
}

.badge-stack span:nth-child(2) {
  right: 0;
  top: 42%;
}

.badge-stack span:nth-child(3) {
  left: 8%;
  bottom: 13%;
}

.bottle-stage {
  position: relative;
  z-index: 2;
  width: min(380px, 78vw);
  display: grid;
  place-items: center;
}

.product-photo {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 34px 34px rgba(0, 0, 0, 0.36));
}

.hero-product {
  max-height: 590px;
}

.trust-strip {
  background: #111;
  color: white;
  padding: 1.2rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.trust-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 0.75rem;
  align-items: start;
  padding: 1rem;
}

.trust-icon {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(188, 23, 31, 0.16);
  color: white;
  font-weight: 900;
}

.trust-item h2,
.trust-item p {
  margin: 0;
}

.trust-item h2 {
  font-size: 1rem;
  line-height: 1.2;
}

.trust-item p {
  color: #c9ccce;
  font-size: 0.88rem;
  margin-top: 0.25rem;
}

.content-section {
  padding: clamp(4rem, 8vw, 6.8rem) 0;
}

.soft-bg {
  background: var(--paper);
}

.section-head {
  max-width: 760px;
  margin-bottom: 2.2rem;
}

.section-head h2,
.content-section h2,
.final-section h2 {
  font-size: clamp(2rem, 4vw, 3.0rem);
}

.section-head p:last-child {
  color: var(--muted);
}

.split-layout,
.work-grid,
.quality-grid,
.faq-layout,
.final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.split-layout p,
.work-grid p,
.quality-grid p,
.faq-layout p,
.final-grid p {
  color: var(--muted);
  font-size: 1.03rem;
}

.mini-product {
  min-height: 420px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #111 0%, #2a2a2d 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-product {
  width: min(340px, 78%);
  max-height: 380px;
}

.feature-grid,
.step-grid,
.review-grid,
.price-grid {
  display: grid;
  gap: 1.2rem;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.step-card,
.price-card,
.review-card,
.quality-cards article,
.ingredient-notes article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(18, 18, 18, 0.06);
}

.feature-card {
  padding: 1.4rem;
}

.feature-card h3,
.step-card h3,
.price-card h3,
.review-card h3,
.quality-cards h3,
.ingredient-notes h3 {
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.package-art {
  width: 100%;
  height: 190px;
  object-fit: contain;
  margin: 0.5rem 0 0.9rem;
  padding: 0.4rem;
  border-radius: 8px;
  background: linear-gradient(135deg, #f7f4ea, #ffffff);
}

.feature-card p,
.step-card p,
.price-card li,
.review-card p,
.quality-cards p,
.ingredient-notes p {
  color: var(--muted);
  margin: 0;
}

.dark-band {
  background:
    linear-gradient(135deg, rgba(188, 23, 31, 0.2), transparent 42%),
    #0d0d0e;
  color: white;
}

.dark-band p {
  color: #d2d4d6;
}

.flow-box {
  display: grid;
  gap: 1rem;
}

.flow-box span {
  min-height: 72px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  align-items: center;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-weight: 900;
}

.flow-box span:not(:last-child)::after {
  content: "→";
  margin-left: auto;
  color: var(--red);
  font-size: 1.4rem;
}

.ingredient-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 1.5rem;
  align-items: start;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

caption {
  text-align: left;
  padding: 1rem;
  color: var(--muted);
  font-weight: 700;
}

th,
td {
  padding: 0.95rem 1rem;
  border-top: 1px solid var(--line);
  text-align: left;
}

th {
  background: #18181a;
  color: white;
  border-top: 0;
}

td:last-child,
th:last-child {
  text-align: right;
  font-weight: 800;
}

.small-print,
.price-disclaimer {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 1rem;
}

.ingredient-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.ingredient-notes article {
  padding: 1rem;
}

.step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card {
  padding: 1.4rem;
}

.step-card span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--red);
  color: white;
  font-weight: 900;
  margin-bottom: 1rem;
}

.notice-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.notice-grid p {
  margin: 0;
  border-left: 3px solid var(--red);
  background: white;
  padding: 0.9rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.price-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
}

.key-pack {
  border-color: rgba(188, 23, 31, 0.55);
  box-shadow: 0 24px 60px rgba(188, 23, 31, 0.18);
  transform: translateY(-12px);
}

.pack-badge {
  align-self: flex-start;
  margin: -0.2rem 0 0.8rem;
  background: var(--red);
  color: white;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-weight: 900;
  font-size: 0.78rem;
}

.pack-label {
  margin: 0 0 0.25rem;
  color: var(--red);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 0.82rem;
}

.price {
  margin: 1rem 0 0;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 950;
  line-height: 1;
}

.price-note {
  color: var(--muted);
  margin: 0.2rem 0 1rem;
}

.price-card ul {
  margin: 0 0 1.2rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.price-card li {
  padding-left: 1.3rem;
  position: relative;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 900;
}

.order-button {
  margin-top: auto;
  width: 100%;
}

.price-disclaimer {
  text-align: center;
  margin: 1.5rem auto 0;
  max-width: 820px;
}

.quality-section {
  background: #18181a;
  color: white;
}

.quality-section p {
  color: #d2d4d6;
}

.quality-cards {
  display: grid;
  gap: 1rem;
}

.quality-cards article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  padding: 1.15rem;
}

.quality-cards p {
  color: #cfd2d5;
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card {
  padding: 1rem;
}

.review-card img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  margin-bottom: 1rem;
}

.stars {
  color: var(--red);
  font-weight: 900;
  margin: 0 0 0.3rem;
}

.faq-layout {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 0;
  box-shadow: 0 8px 20px rgba(18, 18, 18, 0.05);
}

summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.2rem;
  font-weight: 900;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--red);
}

details[open] summary::after {
  content: "-";
}

details p {
  padding: 0 1.2rem 1rem;
  margin: 0;
  color: var(--muted);
}

.final-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: linear-gradient(135deg, #111, #2b1012);
  color: white;
}

.final-grid {
  grid-template-columns: minmax(0, 1fr) auto;
}

.final-grid p {
  color: #d5d7d9;
}

.site-foot {
  background: #080808;
  color: white;
  padding: 3.2rem 0 1.2rem;
}

.foot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(160px, 0.45fr) minmax(180px, 0.45fr);
  gap: 2rem;
}

.foot-brand {
  margin-bottom: 1rem;
}

.site-foot p {
  color: #c7c9cb;
  max-width: 680px;
}

.site-foot h2 {
  font-size: 1rem;
  margin: 0 0 0.8rem;
}

.footer-link {
  display: block;
  width: fit-content;
  color: #d7d9dc;
  background: transparent;
  border: 0;
  padding: 0.25rem 0;
  text-decoration: none;
  cursor: pointer;
}

.footer-link:hover {
  color: white;
}

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #b8bbbe;
  font-size: 0.9rem;
}

.foot-bottom a {
  color: white;
  font-weight: 900;
}

.modal-layer {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.68);
}

.legal-modal {
  width: min(620px, 100%);
  max-height: min(78vh, 680px);
  overflow: auto;
  background: white;
  color: var(--ink);
  border-radius: 8px;
  padding: 1.6rem;
  position: relative;
  box-shadow: var(--shadow);
}

.close-panel {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.5rem;
}

.legal-content h2 {
  margin-top: 0;
}

.legal-content p {
  color: var(--muted);
}

[hidden] {
  display: none !important;
}

@media (max-width: 980px) {
  .menu-button {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.7rem;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 0.8rem;
  }

  .nav-action {
    margin-top: 0.35rem;
    text-align: center;
  }

  .hero-grid,
  .split-layout,
  .work-grid,
  .quality-grid,
  .faq-layout,
  .ingredient-layout,
  .final-grid {
    grid-template-columns: 1fr;
  }

  .product-panel {
    min-height: 520px;
  }

  .trust-grid,
  .feature-grid,
  .notice-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .key-pack {
    order: -1;
    transform: none;
  }

  .final-grid {
    justify-items: start;
  }

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

@media (max-width: 640px) {
  .page-width,
  .nav-wrap {
    width: min(100% - 24px, 1160px);
  }

  .nav-wrap {
    min-height: 66px;
  }

  .brand-mark strong {
    font-size: 0.98rem;
  }

  .hero-section {
    padding: 3.2rem 0;
  }

  .benefit-list,
  .trust-grid,
  .feature-grid,
  .notice-grid,
  .review-grid,
  .ingredient-notes,
  .foot-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .main-action,
  .text-action {
    width: 100%;
  }

  .quiet-link {
    width: 100%;
    text-align: center;
  }

  .product-panel {
    min-height: 500px;
  }

  .badge-stack span {
    position: static;
    margin: 0.35rem;
    font-size: 0.78rem;
  }

  .badge-stack {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1rem;
  }

  .mini-product {
    min-height: 340px;
  }

  .foot-bottom {
    flex-direction: column;
  }
}
