:root {
  --bg: #f6f1e8;
  --panel: #fcfaf6;
  --panel-strong: #efe5d5;
  --ink: #161412;
  --muted: #736a5f;
  --line: #ddd2c0;
  --line-strong: #c5b7a1;
  --accent: #1b1b19;
  --accent-soft: #f0c98d;
  --success: #254332;
  --shadow: 0 24px 80px rgba(22, 20, 18, 0.08);
  --shadow-soft: 0 18px 50px rgba(22, 20, 18, 0.06);
  --radius: 28px;
  --radius-sm: 18px;
  --font-main: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-main);
  background:
    radial-gradient(circle at top left, rgba(240, 201, 141, 0.28), transparent 28%),
    linear-gradient(180deg, #f9f5ee 0%, var(--bg) 20%, #f8f3ec 100%);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: clip;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
}

p {
  color: var(--muted);
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

section {
  position: relative;
}

.announcement-bar {
  background: var(--ink);
  color: #fff;
  min-height: 42px;
  position: relative;
  overflow: hidden;
  z-index: 1100;
}

.announcement-bar .phrase {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  padding: 10px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  transition: opacity 0.6s ease;
}

.announcement-bar .phrase.active {
  opacity: 1;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(221, 210, 192, 0.8);
  background: rgba(249, 245, 238, 0.9);
  backdrop-filter: blur(18px);
  transition: padding 0.3s ease, background-color 0.3s ease;
}

header.scrolled {
  background: rgba(249, 245, 238, 0.96);
}

.header-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
}

.logo {
  text-decoration: none;
  font-size: 28px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.nav-links a {
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-links a:hover {
  background: rgba(22, 20, 18, 0.05);
  color: var(--ink);
}

.header-cta {
  display: flex;
  justify-content: flex-end;
}

.btn-impact,
.mobile-buy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 16px 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(22, 20, 18, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn-impact:hover,
.mobile-buy-button:hover {
  transform: translateY(-2px);
  background: #272521;
  box-shadow: 0 18px 36px rgba(22, 20, 18, 0.18);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
  text-decoration: none;
  padding: 16px 26px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.btn-outline:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
  background: #fff;
}

.menu-toggle,
.mobile-nav-close {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle {
  width: 30px;
  height: 20px;
  position: relative;
}

.menu-toggle span,
.mobile-nav-close span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.6px;
  background: var(--ink);
  transition: transform 0.25s ease, top 0.25s ease, bottom 0.25s ease;
}

.menu-toggle span:first-child {
  top: 4px;
}

.menu-toggle span:last-child {
  bottom: 4px;
}

.menu-toggle.active span:first-child {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.menu-toggle.active span:last-child {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #f9f4ec 0%, #f2e8da 100%);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.mobile-nav-close {
  display: block;
  width: 28px;
  height: 28px;
  position: relative;
}

.mobile-nav-close span:first-child {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.mobile-nav-close span:last-child {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.mobile-nav-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 30px 20px;
}

.mobile-nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(32px, 7vw, 48px);
  line-height: 1;
}

.mobile-nav-footer {
  padding: 20px;
  border-top: 1px solid var(--line);
}

.mobile-nav-footer .btn-impact {
  width: 100%;
}

.hero-conversion {
  padding: 56px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px;
  align-items: center;
}

.hero-copy {
  padding: 26px 0;
}

.hero-kicker,
.ritual-title,
.hero-card-label,
.comparison-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-copy h1 {
  margin-top: 16px;
  font-family: var(--font-main);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  max-width: 10.5ch;
}

.hero-lead {
  margin-top: 22px;
  max-width: 560px;
  font-size: clamp(18px, 2vw, 21px);
  color: #4d4439;
}

.hero-offer-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: stretch;
  margin-top: 26px;
}

.hero-price-chip,
.hero-proof-chip,
.hero-floating-card,
.benefit-tile,
.visual-proof-card,
.offer-panel,
.comparison-card,
.howto-step,
.testimonial-card,
.faq-item,
.footer-grid,
.mobile-buy-bar {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(221, 210, 192, 0.9);
  box-shadow: var(--shadow-soft);
}

.hero-price-chip {
  min-width: 240px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
}

.hero-price-chip span,
.hero-price-chip small {
  display: block;
}

.hero-price-chip span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-price-chip strong {
  display: block;
  margin: 6px 0;
  font-size: clamp(30px, 5vw, 42px);
  line-height: 1;
}

.hero-price-chip small {
  color: var(--muted);
}

.hero-proof-chip {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.hero-points {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.hero-points li {
  position: relative;
  padding-left: 26px;
  font-weight: 500;
  color: var(--ink);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-soft);
  box-shadow: 0 0 0 4px rgba(240, 201, 141, 0.3);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-microproof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-microproof span,
.offer-trust-row span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  min-height: 580px;
}

.hero-shot {
  position: absolute;
  overflow: hidden;
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
}

.hero-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-shot-main {
  inset: 0 100px 0 0;
}

.hero-shot-detail {
  width: min(220px, 42%);
  right: 0;
  bottom: 120px;
  aspect-ratio: 3 / 2;
}

.hero-shot-detail img {
  object-position: center center;
}

.hero-floating-card {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(160px, 44%);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.42);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
  z-index: 3;
}

.hero-floating-card p {
  margin-top: 6px;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.35;
}

.hero-floating-card a {
  display: inline-block;
  margin-top: 8px;
  color: var(--success);
  font-weight: 700;
  font-size: 0.75rem;
  text-decoration: none;
}

.benefits-strip {
  padding: 18px 0 8px;
}

.benefits-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.benefit-tile {
  padding: 22px;
  border-radius: 22px;
}

.benefit-tile strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.section-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-head.compact {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 34px;
}

.section-head h2 {
  margin-top: 14px;
  font-family: var(--font-main);
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.section-head p {
  margin-top: 18px;
  font-size: 18px;
}

.visual-proof-section,
.offer-section,
.comparison-section,
.howto-section,
.testimonials-section,
.faq-section {
  padding: 92px 0;
}

.visual-proof-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
  align-items: start;
}

.visual-proof-card {
  border-radius: var(--radius);
  overflow: hidden;
}

.visual-proof-card img {
  width: 100%;
  height: auto;
  display: block;
}

.visual-proof-card.tall img {
  width: 100%;
  height: auto;
}

.visual-proof-card-landscape img {
  width: 100%;
  height: auto;
  object-position: center center;
}

.visual-proof-copy {
  padding: 22px;
}

.proof-note-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background:
    radial-gradient(circle at top right, rgba(240, 201, 141, 0.22), transparent 36%),
    rgba(255, 255, 255, 0.76);
  overflow: hidden;
}

.proof-note-card picture {
  display: block;
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px) calc(var(--radius) + 4px) 0 0;
}

.proof-note-card picture img {
  width: 100%;
  height: auto;
  display: block;
}

.proof-note-card .visual-proof-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.proof-bullets {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.proof-bullets li {
  position: relative;
  padding-left: 20px;
  color: var(--ink);
  font-weight: 500;
}

.proof-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-soft);
}

.visual-proof-copy span {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.visual-proof-copy h3 {
  font-size: 24px;
  line-height: 1.05;
  margin-bottom: 12px;
}

.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
  gap: 32px;
  align-items: start;
}

.offer-gallery {
  display: grid;
  gap: 18px;
}

.offer-gallery-lead,
.offer-gallery-stack picture {
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
}

.offer-gallery-lead img {
  width: 100%;
  height: auto;
  display: block;
}

.offer-gallery-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.offer-gallery-stack img {
  width: 100%;
  height: auto;
  display: block;
}

.offer-gallery-stack picture.offer-gallery-portrait img {
  object-position: center center;
}

.offer-gallery-stack picture.offer-gallery-landscape img {
  object-position: center center;
}

.product-info {
  position: sticky;
  top: 116px;
}

.offer-panel {
  padding: 28px;
  border-radius: calc(var(--radius) + 2px);
}

.product-subtitle {
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-info h2 {
  margin-top: 12px;
  font-family: var(--font-main);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.offer-description {
  margin-top: 16px;
  font-size: 17px;
  color: #4f473d;
}

.offer-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.selector-block {
  margin-top: 28px;
}

.selector-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  margin-bottom: 14px;
}

.selector-head h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.selector-head span {
  font-size: 13px;
  color: var(--muted);
}

.color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.color-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  width: auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  font-weight: 700;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.color-pill:hover,
.color-pill.active {
  border-color: var(--ink);
  background: #fff;
  transform: translateY(-1px);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.arena {
  background: #d5c6b1;
}

.dot.rosa {
  background: #df9eb3;
}

.dot.morado {
  background: #8f74a6;
}

.dot.negro {
  background: #22211f;
}

.color-description {
  margin-top: 16px;
  min-height: 54px;
  font-family: var(--font-display);
  font-size: 23px;
  line-height: 1.2;
  color: #60574b;
  transition: opacity 0.2s ease;
}

.bundle-options {
  display: grid;
  gap: 14px;
}

.bundle-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.bundle-card:hover,
.bundle-card.active {
  border-color: var(--ink);
  background: #fff;
  transform: translateY(-1px);
}

.bundle-info h4 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 18px;
}

.bundle-info p {
  margin-top: 6px;
  font-size: 14px;
}

.bundle-price {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.bundle-badge {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.btn-buy {
  width: 100%;
  margin-top: 26px;
  padding-block: 18px;
}

.cta-support {
  margin-top: 18px;
  display: grid;
  gap: 8px;
}

.urgency-notice,
.shipping-notice {
  font-size: 14px;
  color: var(--muted);
}

.buying-points {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.buying-point {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(246, 241, 232, 0.88);
  border: 1px solid var(--line);
}

.buying-point strong {
  display: block;
  margin-bottom: 4px;
}

.comparison-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.comparison-card {
  border-radius: var(--radius);
  padding: 28px;
}

.comparison-card ul {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.comparison-card li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-weight: 500;
}

.comparison-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.comparison-card.competitor {
  color: #8a7761;
}

.comparison-card.winner {
  color: var(--success);
  background: rgba(255, 255, 255, 0.82);
}

.comparison-card.competitor li {
  color: #6f6355;
}

.comparison-card.winner li {
  color: var(--ink);
}

.howto-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.howto-step,
.testimonial-card {
  border-radius: var(--radius);
  padding: 26px;
}

.step-number {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 42px;
  line-height: 1;
  font-family: var(--font-display);
  color: var(--line-strong);
}

.howto-step h4 {
  font-size: 24px;
  line-height: 1.05;
  margin-bottom: 10px;
}

.testimonial-stars {
  margin-bottom: 18px;
  color: #c49038;
  letter-spacing: 0.16em;
}

.testimonial-card p {
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink);
}

.testimonial-author {
  display: inline-block;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 24px;
  padding: 0 22px;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border: none;
  background: transparent;
  text-align: left;
  color: var(--ink);
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
}

.faq-icon {
  font-size: 24px;
  color: var(--muted);
  transition: transform 0.25s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  padding-bottom: 22px;
}

.main-footer {
  padding: 20px 0 34px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border-radius: calc(var(--radius) + 6px);
}

.footer-logo {
  display: inline-block;
  margin-bottom: 12px;
}

.footer-tagline {
  max-width: 420px;
  font-size: 18px;
}

.footer-links {
  display: flex;
  gap: 40px;
}

.link-column {
  display: grid;
  gap: 10px;
}

.link-column h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.link-column a {
  text-decoration: none;
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
  font-size: 13px;
}

.policy-page {
  min-height: 100vh;
}

.policy-header {
  padding: 22px 0;
}

.policy-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.policy-main {
  padding: 36px 0 88px;
}

.policy-card {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(252, 250, 246, 0.92);
  box-shadow: var(--shadow-soft);
}

.policy-eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.policy-title {
  font-family: var(--font-main);
  font-size: clamp(34px, 5vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.policy-updated {
  margin-top: 14px;
  font-size: 14px;
}

.policy-summary {
  margin-top: 18px;
  font-size: 18px;
  color: #4f473d;
}

.policy-content {
  display: grid;
  gap: 26px;
  margin-top: 30px;
}

.policy-section {
  display: grid;
  gap: 12px;
}

.policy-section h2 {
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.policy-section p,
.policy-section li {
  font-size: 15px;
}

.policy-section ul {
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.policy-links a {
  text-decoration: none;
}

.floating-cta {
  position: fixed;
  right: 28px;
  bottom: 24px;
  z-index: 998;
  transform: translateY(150%);
  transition: transform 0.28s ease;
}

.floating-cta.visible {
  transform: translateY(0);
}

.btn-float {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 35px rgba(37, 211, 102, 0.28);
}

.mobile-buy-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 997;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border-radius: 24px;
  backdrop-filter: blur(20px);
}

.mobile-buy-summary {
  min-width: 0;
}

.mobile-buy-summary span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.mobile-buy-summary strong {
  display: block;
  margin-top: 4px;
  font-size: 20px;
  line-height: 1;
}

.mobile-buy-button {
  flex-shrink: 0;
  padding: 14px 18px;
  font-size: 11px;
}

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .hero-grid,
  .offer-grid,
  .visual-proof-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    flex-wrap: wrap;
  }

  .product-info {
    position: static;
  }

  .benefits-strip-grid,
  .comparison-cards,
  .howto-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, 1200px);
  }

  .header-nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .logo {
    font-size: 24px;
  }

  .hero-conversion {
    padding-top: 28px;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-visual {
    min-height: 480px;
  }

  .hero-shot-main {
    inset: 0 80px 0 0;
  }

  .hero-shot-detail {
    width: min(180px, 40%);
    bottom: 100px;
  }

  .hero-floating-card {
    width: min(240px, 76%);
  }

  .selector-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid,
  .footer-links,
  .footer-bottom {
    flex-direction: column;
  }

  .policy-header .container,
  .policy-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-cta {
    right: 18px;
  }
}

@media (max-width: 640px) {
  .announcement-bar {
    min-height: 52px;
  }

  .announcement-bar .phrase {
    font-size: 9px;
    line-height: 1.35;
    padding-inline: 12px;
  }

  .hero-conversion,
  .visual-proof-section,
  .offer-section,
  .comparison-section,
  .howto-section,
  .testimonials-section,
  .faq-section {
    padding: 72px 0;
  }

  .hero-copy {
    padding-top: 10px;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 11vw, 52px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn-impact,
  .hero-actions .btn-outline {
    width: 100%;
  }

  .hero-visual {
    min-height: 400px;
  }

  .hero-shot-main {
    inset: 0 60px 0 0;
  }

  .hero-shot-detail {
    width: min(150px, 38%);
    bottom: 90px;
  }

  .hero-floating-card {
    width: calc(100% - 28px);
  }

  .benefits-strip-grid,
  .comparison-cards,
  .howto-grid,
  .testimonials-grid,
  .offer-gallery-stack {
    grid-template-columns: 1fr;
  }

  .offer-panel,
  .comparison-card,
  .visual-proof-copy,
  .howto-step,
  .testimonial-card,
  .footer-grid,
  .policy-card {
    padding: 22px;
  }

  .bundle-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .bundle-price {
    font-size: 20px;
  }

  .mobile-buy-bar {
    display: flex;
  }

  .floating-cta {
    bottom: 94px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 22px, 1200px);
  }

  .logo {
    font-size: 20px;
    letter-spacing: 0.34em;
  }

  .hero-proof-chip,
  .hero-price-chip,
  .benefit-tile,
  .buying-point {
    padding: 16px;
  }

  .hero-microproof,
  .offer-trust-row {
    gap: 8px;
  }

  .hero-microproof span,
  .offer-trust-row span {
    font-size: 11px;
    padding: 9px 12px;
  }

  .color-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .color-pill {
    justify-content: center;
    width: 100%;
  }

  .mobile-buy-button {
    padding-inline: 14px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

