:root {
  --vyte-c-purple: #6c1cd1;
  --vyte-c-purple-dark: #2f016a;
  --vyte-c-purple-mid: #4a12a0;
  --vyte-c-purple-light: #b9a6ff;
  --vyte-c-purple-pale: #e1d9ff;
  --vyte-c-cream: #fff8cb;
  --vyte-c-black: #000000;
  --vyte-c-white: #ffffff;
  --vyte-c-bg: #f4f4f5;
  --vyte-c-text: #1a1a2e;
  --vyte-c-text-muted: #555570;
  --vyte-c-border: #d8d4e8;
  --vyte-c-accent-green: #1a7a4a;
  --vyte-c-accent-amber: #b86a00;
  --vyte-c-accent-teal: #0e7a7a;
  --vyte-font-head: 'Lora', Georgia, serif;
  --vyte-font-body: 'Karla', system-ui, sans-serif;
  --vyte-radius: 0px;
  --vyte-shadow-hard: 4px 4px 0px 0px rgba(44,1,80,0.18);
  --vyte-shadow-hard-lg: 6px 6px 0px 0px rgba(44,1,80,0.20);
  --vyte-container: 960px;
  --vyte-space-xs: 0.5rem;
  --vyte-space-sm: 1rem;
  --vyte-space-md: 2rem;
  --vyte-space-lg: 3.5rem;
  --vyte-space-xl: 6rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--vyte-font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--vyte-c-text);
  background: var(--vyte-c-bg);
}

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

a { color: var(--vyte-c-purple); text-decoration: underline; }
a:hover { color: var(--vyte-c-purple-dark); }

h1, h2, h3, h4 {
  font-family: var(--vyte-font-head);
  line-height: 1.25;
  color: var(--vyte-c-purple-dark);
}

.container {
  max-width: var(--vyte-container);
  margin: 0 auto;
  padding: 0 var(--vyte-space-md);
}

.container--narrow {
  max-width: 700px;
}

.section-title {
  font-family: var(--vyte-font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--vyte-c-purple-dark);
  margin-bottom: var(--vyte-space-sm);
}

.section-title--light { color: var(--vyte-c-white); }

.section-intro {
  font-size: 1.05rem;
  color: var(--vyte-c-text-muted);
  max-width: 640px;
  margin-bottom: var(--vyte-space-lg);
}

.section-intro--light { color: var(--vyte-c-purple-pale); }

.btn {
  display: inline-block;
  font-family: var(--vyte-font-body);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--vyte-radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s, transform 0.12s, box-shadow 0.12s;
  line-height: 1.2;
}

.btn--primary {
  background: var(--vyte-c-purple);
  color: var(--vyte-c-white);
  padding: 0.65rem 1.4rem;
  box-shadow: var(--vyte-shadow-hard);
}

.btn--primary:hover {
  background: var(--vyte-c-purple-dark);
  color: var(--vyte-c-white);
  transform: translate(-1px,-1px);
  box-shadow: 5px 5px 0px 0px rgba(44,1,80,0.22);
}

.btn--cta {
  background: var(--vyte-c-purple-dark);
  color: var(--vyte-c-cream);
  padding: 0.85rem 2.2rem;
  font-size: 1.05rem;
  box-shadow: var(--vyte-shadow-hard-lg);
}

.btn--cta:hover {
  background: var(--vyte-c-purple);
  color: var(--vyte-c-white);
  transform: translate(-2px,-2px);
  box-shadow: 8px 8px 0px 0px rgba(44,1,80,0.22);
}

.btn--sm { padding: 0.5rem 1rem; font-size: 0.9rem; }
.btn--full { width: 100%; text-align: center; display: block; }

.umns {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--vyte-c-purple-dark);
  color: var(--vyte-c-white);
  z-index: 9999;
  padding: var(--vyte-space-sm) var(--vyte-space-md);
  display: none;
  border-top: 3px solid var(--vyte-c-purple-light);
}

.umns.is-visible { display: block; }

.cookie-banner__inner {
  max-width: var(--vyte-container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--vyte-space-sm);
}

.cookie-banner__text {
  flex: 1;
  font-size: 0.9rem;
  min-width: 220px;
}

.cookie-banner__text a { color: var(--vyte-c-purple-light); }

.cookie-banner__actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-cookie-accept {
  background: var(--vyte-c-purple-light);
  color: var(--vyte-c-purple-dark);
  border: none;
  border-radius: var(--vyte-radius);
  padding: 0.5rem 1.2rem;
  font-family: var(--vyte-font-body);
  font-weight: 700;
  cursor: pointer;
  font-size: 0.875rem;
  box-shadow: var(--vyte-shadow-hard);
}

.btn-cookie-accept:hover { background: var(--vyte-c-cream); }

.btn-cookie-reject {
  background: transparent;
  color: var(--vyte-c-purple-pale);
  border: 1px solid var(--vyte-c-purple-light);
  border-radius: var(--vyte-radius);
  padding: 0.5rem 1.2rem;
  font-family: var(--vyte-font-body);
  font-weight: 600;
  cursor: pointer;
  font-size: 0.875rem;
}

.btn-cookie-reject:hover { background: rgba(185,166,255,0.12); }

.cookie-banner__link {
  font-size: 0.85rem;
  color: var(--vyte-c-purple-pale);
  text-decoration: underline;
  cursor: pointer;
}

.uwev {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--vyte-c-white);
  border-bottom: 2px solid var(--vyte-c-border);
  box-shadow: 0 2px 0 0 rgba(108,28,209,0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--vyte-space-md);
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo__name {
  font-family: var(--vyte-font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--vyte-c-purple-dark);
  letter-spacing: -0.02em;
}

.uvkc { margin-left: auto; }

.main-nav__list {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.main-nav__list a {
  font-family: var(--vyte-font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--vyte-c-text);
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border-radius: var(--vyte-radius);
  transition: background 0.14s, color 0.14s;
}

.main-nav__list a:hover,
.main-nav__list a[aria-current="page"] {
  background: var(--vyte-c-purple-pale);
  color: var(--vyte-c-purple-dark);
}

.nav-cta { margin-left: var(--vyte-space-xs); }

.uchq {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  margin-left: auto;
}

.uchq span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--vyte-c-purple-dark);
  transition: transform 0.2s;
}

.hero--full-bleed {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(47,1,106,0.88) 0%, rgba(108,28,209,0.70) 60%, rgba(47,1,106,0.82) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: var(--vyte-space-lg);
  padding-top: var(--vyte-space-xl);
  padding-bottom: var(--vyte-space-xl);
}

.hero__text-col { flex: 1; min-width: 0; }

.hero__eyebrow {
  font-family: var(--vyte-font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vyte-c-purple-light);
  margin-bottom: var(--vyte-space-xs);
}

.hero__heading {
  font-family: var(--vyte-font-head);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--vyte-c-white);
  line-height: 1.15;
  margin-bottom: var(--vyte-space-sm);
}

.hero__stat {
  font-size: 1.4em;
  color: var(--vyte-c-cream);
  font-style: italic;
}

.hero__lead {
  font-size: 1.05rem;
  color: var(--vyte-c-purple-pale);
  margin-bottom: var(--vyte-space-md);
  max-width: 500px;
}

.hero__actions { margin-bottom: var(--vyte-space-md); }

.hero__trust-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.hero__trust-list li {
  font-size: 0.875rem;
  color: var(--vyte-c-purple-pale);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vyte-c-purple-light);
  flex-shrink: 0;
}

.hero__pack-col {
  flex-shrink: 0;
  width: 340px;
}

.hero__pack {
  width: 100%;
  height: auto;
  filter: drop-shadow(8px 8px 0px rgba(0,0,0,0.35));
}

.section-lifestyle,
.section-howworks,
.section-routine,
.section-myths,
.section-faq,
.section-content {
  padding: var(--vyte-space-xl) 0;
  background: var(--vyte-c-white);
}

.section-lifestyle { background: var(--vyte-c-bg); }
.section-myths { background: var(--vyte-c-bg); }

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--vyte-space-md);
}

.lifestyle-card {
  background: var(--vyte-c-white);
  padding: var(--vyte-space-md);
  border: 1.5px solid var(--vyte-c-border);
}

.card--hard-shadow {
  box-shadow: var(--vyte-shadow-hard-lg);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--vyte-space-sm);
  flex-shrink: 0;
}

.card-icon--purple { background: var(--vyte-c-purple); }
.card-icon--green { background: var(--vyte-c-accent-green); }
.card-icon--amber { background: var(--vyte-c-accent-amber); }
.card-icon--teal { background: var(--vyte-c-accent-teal); }

.lifestyle-card h3 {
  font-family: var(--vyte-font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--vyte-c-purple-dark);
  margin-bottom: 0.5rem;
}

.lifestyle-card p {
  font-size: 0.93rem;
  color: var(--vyte-c-text-muted);
  line-height: 1.6;
}

.section-reviews {
  padding: var(--vyte-space-xl) 0;
}

.uvjw {
  background: var(--vyte-c-purple-dark);
}

.ukxz {
  background: var(--vyte-c-purple);
}

.section-accent-light {
  background: var(--vyte-c-purple-pale);
  padding: var(--vyte-space-xl) 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--vyte-space-md);
  margin-bottom: var(--vyte-space-md);
}

.reviews-grid--full {
  grid-template-columns: repeat(3, 1fr);
}

.review-card {
  background: var(--vyte-c-white);
  padding: var(--vyte-space-md);
  border: 1.5px solid var(--vyte-c-border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.review-card__stars img { display: block; }

.review-card__text {
  font-size: 0.95rem;
  color: var(--vyte-c-text);
  line-height: 1.6;
  font-style: italic;
  flex: 1;
}

.review-card__footer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.review-card__name {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--vyte-c-purple-dark);
}

.review-card__date {
  font-size: 0.8rem;
  color: var(--vyte-c-text-muted);
}

.reviews-disclaimer {
  font-size: 0.8rem;
  color: var(--vyte-c-purple-pale);
  text-align: center;
  margin-top: var(--vyte-space-sm);
}

.reviews-disclaimer--center {
  color: var(--vyte-c-text-muted);
}

.howworks-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vyte-space-lg);
  align-items: start;
}

.howworks-visual img {
  width: 100%;
  height: auto;
  box-shadow: var(--vyte-shadow-hard-lg);
}

.howworks-steps {
  display: flex;
  flex-direction: column;
  gap: var(--vyte-space-md);
}

.step-item {
  display: flex;
  gap: var(--vyte-space-sm);
  align-items: flex-start;
}

.step-number {
  font-family: var(--vyte-font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--vyte-c-purple-light);
  line-height: 1;
  flex-shrink: 0;
  width: 3rem;
  text-align: center;
}

.step-body h3 {
  font-family: var(--vyte-font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--vyte-c-purple-dark);
  margin-bottom: 0.4rem;
}

.step-body p {
  font-size: 0.93rem;
  color: var(--vyte-c-text-muted);
}

.ingredients-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vyte-space-lg);
  align-items: start;
}

.ingredients-img-col img {
  width: 100%;
  height: auto;
  box-shadow: var(--vyte-shadow-hard-lg);
}

.ingredients-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: rgba(255,255,255,0.12);
}

.ingredients-table th,
.ingredients-table td {
  padding: 0.7rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  color: var(--vyte-c-white);
}

.ingredients-table th {
  font-weight: 700;
  font-family: var(--vyte-font-head);
  background: rgba(0,0,0,0.2);
  color: var(--vyte-c-cream);
}

.ingredients-table tr:last-child td { border-bottom: none; }

.ingredients-note {
  font-size: 0.78rem;
  color: var(--vyte-c-purple-pale);
  margin-top: var(--vyte-space-sm);
  line-height: 1.5;
}

.routine-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vyte-space-lg);
  align-items: start;
}

.routine-img-col img {
  width: 100%;
  height: auto;
  box-shadow: var(--vyte-shadow-hard-lg);
}

.routine-lead {
  font-size: 1.05rem;
  color: var(--vyte-c-text-muted);
  margin-bottom: var(--vyte-space-md);
}

.routine-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--vyte-space-sm);
  margin-bottom: var(--vyte-space-md);
}

.routine-list li {
  display: flex;
  gap: var(--vyte-space-sm);
  align-items: flex-start;
}

.routine-step-num {
  background: var(--vyte-c-purple);
  color: var(--vyte-c-white);
  font-family: var(--vyte-font-head);
  font-weight: 700;
  font-size: 0.95rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--vyte-shadow-hard);
}

.routine-list strong {
  display: block;
  font-weight: 700;
  color: var(--vyte-c-purple-dark);
  margin-bottom: 0.25rem;
}

.routine-list p {
  font-size: 0.9rem;
  color: var(--vyte-c-text-muted);
}

.routine-warning {
  font-size: 0.82rem;
  color: var(--vyte-c-text-muted);
  border-left: 3px solid var(--vyte-c-purple-light);
  padding-left: var(--vyte-space-sm);
  line-height: 1.5;
}

.myths-table-wrap {
  overflow-x: auto;
}

.myths-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
}

.myths-table th,
.myths-table td {
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 1.5px solid var(--vyte-c-border);
  vertical-align: top;
}

.myths-table th {
  font-family: var(--vyte-font-head);
  font-weight: 700;
  background: var(--vyte-c-purple-pale);
  color: var(--vyte-c-purple-dark);
}

.myths-table tr:nth-child(even) td { background: var(--vyte-c-bg); }
.myths-table tr:last-child td { border-bottom: none; }

.myths-table td:first-child {
  font-style: italic;
  color: var(--vyte-c-text-muted);
  width: 45%;
}

.myths-table td:last-child {
  color: var(--vyte-c-text);
  font-weight: 500;
}

.ueqg {
  background: var(--vyte-c-white);
  border: 1.5px solid var(--vyte-c-border);
  box-shadow: var(--vyte-shadow-hard-lg);
  padding: var(--vyte-space-md);
  max-width: 480px;
}

.calc-inputs { margin-bottom: var(--vyte-space-sm); }

.calc-label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--vyte-c-purple-dark);
}

.calc-input {
  width: 100px;
  border: 1.5px solid var(--vyte-c-purple-light);
  border-radius: var(--vyte-radius);
  padding: 0.5rem 0.75rem;
  font-family: var(--vyte-font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--vyte-c-purple-dark);
  background: var(--vyte-c-bg);
}

.calc-result {
  font-size: 1.05rem;
  color: var(--vyte-c-text);
  padding: var(--vyte-space-sm);
  background: var(--vyte-c-purple-pale);
  border-left: 4px solid var(--vyte-c-purple);
  margin-bottom: var(--vyte-space-sm);
}

.calc-result strong {
  font-size: 1.4rem;
  color: var(--vyte-c-purple);
  font-family: var(--vyte-font-head);
}

.calc-note {
  font-size: 0.8rem;
  color: var(--vyte-c-text-muted);
}

.section-order { padding: var(--vyte-space-xl) 0; }

.order-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vyte-space-lg);
  align-items: start;
}

.order-pack-wrap {
  text-align: center;
  margin-bottom: var(--vyte-space-md);
}

.order-pack {
  display: inline-block;
  filter: drop-shadow(6px 6px 0px rgba(0,0,0,0.28));
}

.order-trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: var(--vyte-space-md);
}

.order-trust-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--vyte-c-purple-pale);
}

.order-price-block {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.order-price__original {
  font-size: 1rem;
  color: var(--vyte-c-purple-light);
  text-decoration: line-through;
  opacity: 0.7;
}

.order-price__current {
  font-family: var(--vyte-font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--vyte-c-cream);
}

.order-price__label {
  font-size: 0.85rem;
  color: var(--vyte-c-purple-pale);
}

.order-price-note {
  font-size: 0.8rem;
  color: var(--vyte-c-purple-pale);
  line-height: 1.5;
}

.usgm {
  background: var(--vyte-c-white);
  border: 1.5px solid var(--vyte-c-border);
  box-shadow: var(--vyte-shadow-hard-lg);
  padding: var(--vyte-space-md);
}

.order-form__title {
  font-family: var(--vyte-font-head);
  font-size: 1.2rem;
  color: var(--vyte-c-purple-dark);
  margin-bottom: var(--vyte-space-md);
}

.form-field {
  margin-bottom: var(--vyte-space-sm);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-field label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--vyte-c-text);
}

.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="email"],
.form-field textarea {
  border: 1.5px solid var(--vyte-c-border);
  border-radius: var(--vyte-radius);
  padding: 0.65rem 0.85rem;
  font-family: var(--vyte-font-body);
  font-size: 0.95rem;
  color: var(--vyte-c-text);
  background: var(--vyte-c-bg);
  transition: border-color 0.15s;
  width: 100%;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--vyte-c-purple);
  background: var(--vyte-c-white);
}

.form-field--hidden {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-field--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.6rem;
}

.form-field--checkbox input[type="checkbox"] {
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--vyte-c-purple);
}

.form-field--checkbox label {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--vyte-c-text-muted);
  line-height: 1.5;
}

.form-note {
  font-size: 0.8rem;
  color: var(--vyte-c-text-muted);
  margin-top: 0.6rem;
  line-height: 1.4;
}

.section-faq { background: var(--vyte-c-white); }

.faq-list {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.uhgv {
  border: 1.5px solid var(--vyte-c-border);
  background: var(--vyte-c-bg);
  box-shadow: var(--vyte-shadow-hard);
}

.ujhe {
  font-family: var(--vyte-font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--vyte-c-purple-dark);
  padding: var(--vyte-space-sm) var(--vyte-space-md);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ujhe::-webkit-details-marker { display: none; }

.ujhe::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--vyte-c-purple);
  line-height: 1;
  flex-shrink: 0;
}

.uhgv[open] .ujhe::after { content: '−'; }

.upvj {
  padding: 0 var(--vyte-space-md) var(--vyte-space-sm);
  font-size: 0.93rem;
  color: var(--vyte-c-text-muted);
  line-height: 1.65;
}

.upvj a { color: var(--vyte-c-purple); }

.site-footer {
  background: var(--vyte-c-purple-dark);
  color: var(--vyte-c-purple-pale);
  padding: var(--vyte-space-lg) 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vyte-space-lg);
  padding-bottom: var(--vyte-space-lg);
  border-bottom: 1px solid rgba(185,166,255,0.15);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.site-logo--footer span {
  font-family: var(--vyte-font-head);
  font-weight: 700;
  color: var(--vyte-c-white);
}

.site-logo--footer img { filter: brightness(0) invert(1); }

.footer-tagline {
  font-size: 0.875rem;
  color: var(--vyte-c-purple-pale);
  line-height: 1.5;
}

.footer-legal-id {
  font-size: 0.78rem;
  color: rgba(185,166,255,0.7);
  line-height: 1.5;
}

.footer-nav {
  display: flex;
  gap: var(--vyte-space-lg);
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-nav a {
  color: var(--vyte-c-purple-pale);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.14s;
}

.footer-nav a:hover { color: var(--vyte-c-white); text-decoration: underline; }

.footer-disclaimer {
  background: rgba(0,0,0,0.25);
  padding: var(--vyte-space-md) 0;
}

.footer-disclaimer p {
  font-size: 0.78rem;
  color: rgba(185,166,255,0.65);
  line-height: 1.6;
  margin-bottom: 0.4rem;
}

.footer-disclaimer a { color: var(--vyte-c-purple-light); }

.page-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--vyte-c-purple-dark);
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(47,1,106,0.92) 0%, rgba(108,28,209,0.75) 100%);
  z-index: 1;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding-top: var(--vyte-space-xl);
  padding-bottom: var(--vyte-space-xl);
}

.page-hero__heading {
  font-family: var(--vyte-font-head);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--vyte-c-white);
  margin-bottom: var(--vyte-space-sm);
  line-height: 1.2;
}

.page-hero__lead {
  font-size: 1.05rem;
  color: var(--vyte-c-purple-pale);
  max-width: 580px;
}

.breadcrumb {
  margin-bottom: var(--vyte-space-sm);
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  font-size: 0.82rem;
}

.breadcrumb li { display: flex; align-items: center; gap: 0.3rem; }
.breadcrumb li + li::before { content: '›'; color: var(--vyte-c-purple-light); }
.breadcrumb a { color: var(--vyte-c-purple-light); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--vyte-c-cream); }

.editorial-article { line-height: 1.8; }

.article-img {
  width: 100%;
  height: auto;
  margin-bottom: var(--vyte-space-md);
  box-shadow: var(--vyte-shadow-hard-lg);
}

.editorial-article h2 {
  font-family: var(--vyte-font-head);
  font-size: 1.3rem;
  color: var(--vyte-c-purple-dark);
  margin: var(--vyte-space-md) 0 var(--vyte-space-sm);
}

.editorial-article p {
  color: var(--vyte-c-text);
  margin-bottom: var(--vyte-space-sm);
}

.editorial-disclaimer {
  font-size: 0.82rem;
  color: var(--vyte-c-text-muted);
  border-top: 1px solid var(--vyte-c-border);
  padding-top: var(--vyte-space-sm);
  margin-top: var(--vyte-space-md);
}

.ingredients-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vyte-space-lg);
  margin-bottom: var(--vyte-space-lg);
  align-items: start;
}

.ingredient-detail-img img {
  width: 100%;
  height: auto;
  box-shadow: var(--vyte-shadow-hard-lg);
}

.ingredient-detail-text h2 {
  font-family: var(--vyte-font-head);
  font-size: 1.1rem;
  color: var(--vyte-c-purple-dark);
  margin: var(--vyte-space-md) 0 0.4rem;
}

.ingredient-detail-text h2:first-child { margin-top: 0; }

.ingredient-detail-text p {
  font-size: 0.93rem;
  color: var(--vyte-c-text-muted);
  margin-bottom: 0.5rem;
}

.nutrition-table-wrap { overflow-x: auto; margin-top: var(--vyte-space-md); }

.nutrition-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.nutrition-table th,
.nutrition-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1.5px solid var(--vyte-c-border);
  text-align: left;
  vertical-align: top;
}

.nutrition-table th {
  background: var(--vyte-c-purple-pale);
  font-family: var(--vyte-font-head);
  font-weight: 700;
  color: var(--vyte-c-purple-dark);
}

.nutrition-table tr:last-child td { border-bottom: none; }

.table-note {
  font-size: 0.78rem;
  color: var(--vyte-c-text-muted);
  margin-top: var(--vyte-space-sm);
  line-height: 1.5;
}

.reviews-summary-band {
  display: flex;
  align-items: center;
  gap: var(--vyte-space-md);
  background: var(--vyte-c-purple-pale);
  padding: var(--vyte-space-md);
  margin-bottom: var(--vyte-space-lg);
  box-shadow: var(--vyte-shadow-hard);
}

.reviews-score-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
}

.reviews-score-num {
  font-family: var(--vyte-font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--vyte-c-purple-dark);
  line-height: 1;
}

.reviews-score-count {
  font-size: 0.8rem;
  color: var(--vyte-c-text-muted);
}

.reviews-summary-note {
  font-size: 0.85rem;
  color: var(--vyte-c-text-muted);
  line-height: 1.5;
}

.cta-center {
  text-align: center;
  margin-top: var(--vyte-space-lg);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vyte-space-lg);
  align-items: start;
}

.contact-info-col h2 {
  font-family: var(--vyte-font-head);
  font-size: 1.2rem;
  color: var(--vyte-c-purple-dark);
  margin-bottom: var(--vyte-space-sm);
}

.contact-details {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem 1.2rem;
  font-size: 0.93rem;
  margin-bottom: var(--vyte-space-md);
}

.contact-details dt {
  font-weight: 700;
  color: var(--vyte-c-purple-dark);
}

.contact-details dd { color: var(--vyte-c-text); }

.map-container {
  margin-top: var(--vyte-space-sm);
  border: 1.5px solid var(--vyte-c-border);
  box-shadow: var(--vyte-shadow-hard);
  overflow: hidden;
}

.map-container iframe { display: block; }

.contact-form-col h2 {
  font-family: var(--vyte-font-head);
  font-size: 1.2rem;
  color: var(--vyte-c-purple-dark);
  margin-bottom: var(--vyte-space-sm);
}

.legal-section {
  padding: var(--vyte-space-xl) 0;
  background: var(--vyte-c-white);
}

.legal-section h1 {
  font-family: var(--vyte-font-head);
  font-size: 2rem;
  color: var(--vyte-c-purple-dark);
  margin-bottom: var(--vyte-space-xs);
}

.legal-updated {
  font-size: 0.82rem;
  color: var(--vyte-c-text-muted);
  margin-bottom: var(--vyte-space-lg);
}

.legal-section h2 {
  font-family: var(--vyte-font-head);
  font-size: 1.1rem;
  color: var(--vyte-c-purple-dark);
  margin: var(--vyte-space-md) 0 var(--vyte-space-xs);
}

.legal-section p, .legal-section li {
  font-size: 0.93rem;
  color: var(--vyte-c-text);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.legal-section ul, .legal-section ol {
  padding-left: 1.5rem;
  margin-bottom: var(--vyte-space-sm);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin: var(--vyte-space-sm) 0;
}

.legal-table th,
.legal-table td {
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--vyte-c-border);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: var(--vyte-c-purple-pale);
  font-weight: 700;
  color: var(--vyte-c-purple-dark);
}

.thankyou-section {
  padding: var(--vyte-space-xl) 0;
  background: var(--vyte-c-bg);
}

.thankyou-content {
  max-width: 520px;
  text-align: center;
}

.thankyou-icon {
  margin: 0 auto var(--vyte-space-md);
  width: 64px;
}

.thankyou-content h1 {
  font-family: var(--vyte-font-head);
  font-size: 1.8rem;
  color: var(--vyte-c-purple-dark);
  margin-bottom: var(--vyte-space-sm);
}

.thankyou-content p {
  color: var(--vyte-c-text-muted);
  margin-bottom: var(--vyte-space-sm);
}

.error-section {
  padding: var(--vyte-space-xl) 0;
  background: var(--vyte-c-bg);
}

.error-content {
  max-width: 480px;
  text-align: center;
}

.error-code {
  font-family: var(--vyte-font-head);
  font-size: 6rem;
  font-weight: 700;
  color: var(--vyte-c-purple-light);
  line-height: 1;
  margin-bottom: var(--vyte-space-xs);
}

.error-content h1 {
  font-family: var(--vyte-font-head);
  font-size: 1.5rem;
  color: var(--vyte-c-purple-dark);
  margin-bottom: var(--vyte-space-sm);
}

.error-content p {
  color: var(--vyte-c-text-muted);
  margin-bottom: var(--vyte-space-md);
}

@media (max-width: 768px) {
  .uvkc { display: none; }
  .uvkc.is-open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--vyte-c-white);
    border-bottom: 2px solid var(--vyte-c-border);
    z-index: 800;
    padding: var(--vyte-space-sm);
  }
  .uvkc.is-open .main-nav__list {
    flex-direction: column;
    gap: 0.25rem;
  }
  .uchq { display: flex; }
  .nav-cta { display: none; }
  .uwev { position: relative; }

  .hero__content { flex-direction: column; gap: var(--vyte-space-md); text-align: center; }
  .hero__pack-col { width: 220px; margin: 0 auto; }
  .hero__trust-list { justify-content: center; }

  .lifestyle-grid { grid-template-columns: 1fr; }
  .reviews-grid, .reviews-grid--full { grid-template-columns: 1fr; }
  .howworks-layout { grid-template-columns: 1fr; }
  .ingredients-layout { grid-template-columns: 1fr; }
  .ingredients-detail-layout { grid-template-columns: 1fr; }
  .routine-layout { grid-template-columns: 1fr; }
  .order-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: var(--vyte-space-md); }
  .footer-nav { flex-direction: column; gap: var(--vyte-space-sm); }
  .reviews-summary-band { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--vyte-space-sm); }
  .hero__heading { font-size: 1.6rem; }
  .section-title { font-size: 1.3rem; }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.umns{position:fixed !important;left:1rem;right:1rem;bottom:1rem;z-index:9000 !important;max-width:760px;margin-left:auto;margin-right:auto;background:#fff;color:#1a1a1a;border:1px solid rgba(0,0,0,.12);border-radius:12px;box-shadow:0 10px 40px rgba(0,0,0,.18);padding:1rem 1.25rem;transform:translateY(220%);transition:transform .32s ease}
.umns.is-visible,.cookie-banner--visible,.umns.show,.umns.active{transform:none !important}
.umns a{color:inherit;text-decoration:underline}
.umns button{cursor:pointer}
.udix{position:fixed !important;inset:0;z-index:9001 !important;display:none;align-items:center;justify-content:center;background:rgba(0,0,0,.5);padding:1rem}
.udix.is-visible,.cookie-modal--visible,.udix.show,.udix.active{display:flex !important}
.uwff,.udix>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.uvjw .uach,.uvjw .ueqg,.uvjw .uiyb,.uvjw .uetq,.ukxz .uach,.ukxz .ueqg,.ukxz .uiyb,.ukxz .uetq{background:#fff !important;color:#1a1a1a !important}
.uach,.ueqg{color:#1a1a1a !important}
.uach label,.ueqg label,.uach p,.ueqg p,.uach .ukaq,.uach span,.ueqg span,.udik,.uqmh,.uiyb .uocd,.uiyb .uocd *{color:#1a1a1a !important}
.udik,.uqmh{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.uach .ujhv{color:#1a1a1a !important}
.uach .ujhv.is-sel{color:#fff !important}
.usgm .umkq{display:none}
.usgm .umkq.is-visible{display:block !important;color:#c0392b}
.usgm .uwbz,.usgm [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.usgm{color:#1a1a1a}
.uvjw .usgm,.ukxz .usgm{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.ujql{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.ujql img{width:100%;height:100%;object-fit:cover}
.urop,.uzob{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.urop img,.uzob img{width:100%;height:100%;object-fit:cover;display:block}
.urop img{opacity:.28}
.uzob img{opacity:.07}
*:has(> .urop),*:has(> .uzob){position:relative}
.uqzk{position:absolute !important;left:50%;top:52%;transform:translate(-50%,-50%);width:52%;max-width:280px;text-align:center;pointer-events:none;color:#2c2c2c;background:rgba(250,246,238,.94);border-radius:10px;padding:1rem .8rem;box-shadow:0 2px 14px rgba(0,0,0,.16)}
.uqzk .ukfv{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.uqzk .ublv{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.uqbj{margin:1.4rem auto;max-width:920px}
.uqbj img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.uwuk{padding:3rem 0}
.ujgj{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.ujgj img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.uetq{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.ubio{display:flex;overflow:hidden;gap:0 !important}
.ubva{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.ursx{position:absolute;top:50%;transform:translateY(-50%);width:40px;height:40px;border-radius:50%;border:1px solid rgba(0,0,0,.18);background:#fff;cursor:pointer;z-index:2;font-size:1.1rem;line-height:1}
.uimj{left:.5rem}.uxat{right:.5rem}
.uiyb .uocd{display:none}.uiyb .uocd.is-active{display:block}
.uach .urzv{display:block !important}
.uach .uyrx{display:flex;flex-wrap:wrap;gap:.5rem}
.uach .ujhv{cursor:pointer}
