:root {
  --bg: #fff8fb;
  --bg-soft: #fffdfd;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --surface-tint: rgba(252, 241, 246, 0.76);
  --line: rgba(133, 97, 111, 0.14);
  --line-strong: rgba(133, 97, 111, 0.22);
  --text: #271f27;
  --text-muted: #6f5a67;
  --accent: #cc708f;
  --accent-strong: #a64b69;
  --accent-soft: rgba(204, 112, 143, 0.16);
  --gold: #c5a77a;
  --shadow-soft: 0 24px 60px rgba(130, 92, 107, 0.12);
  --shadow-strong: 0 38px 90px rgba(140, 97, 114, 0.18);
  --radius-xl: 40px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --max-width: 1220px;
  --font-body: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --dryer-shell-light: #fff8fb;
  --dryer-shell: #f3c6d4;
  --dryer-shell-deep: #de9eb0;
  --dryer-handle: #c97894;
  --dryer-rim: rgba(241, 224, 230, 0.92);
  --dryer-core: rgba(255, 255, 255, 0.96);
  --dryer-ring: rgba(238, 185, 204, 0.96);
  --dryer-shadow: rgba(119, 81, 97, 0.22);
  --attachment: rgba(255, 255, 255, 0.86);
  --attachment-core: rgba(222, 203, 211, 0.9);
}

:root[data-finish="bone"] {
  --accent: #b68473;
  --accent-strong: #8f6254;
  --accent-soft: rgba(182, 132, 115, 0.18);
  --dryer-shell-light: #fffdfa;
  --dryer-shell: #f3e7df;
  --dryer-shell-deep: #d9c6bd;
  --dryer-handle: #cfad9f;
  --dryer-rim: rgba(245, 238, 232, 0.92);
  --dryer-core: rgba(255, 255, 255, 0.98);
  --dryer-ring: rgba(227, 213, 204, 0.96);
  --attachment-core: rgba(214, 203, 196, 0.92);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), transparent 34%),
    radial-gradient(circle at 82% 10%, rgba(244, 208, 221, 0.72), transparent 18%),
    radial-gradient(circle at 20% 55%, rgba(248, 231, 238, 0.92), transparent 24%),
    linear-gradient(180deg, #fffafb 0%, #f9eff3 36%, #fffefd 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  z-index: -1;
  pointer-events: none;
  filter: blur(2px);
}

body::before {
  top: 7rem;
  left: 4vw;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
}

body::after {
  right: 6vw;
  bottom: 8rem;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 212, 224, 0.62), rgba(247, 212, 224, 0));
}

a,
button {
  color: inherit;
  font: inherit;
}

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

button {
  cursor: pointer;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  z-index: 100;
}

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

.section {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.promo-bar {
  padding: 0.85rem 1rem;
  background: linear-gradient(90deg, rgba(244, 220, 228, 0.92), rgba(251, 239, 244, 0.96));
  border-bottom: 1px solid rgba(179, 137, 152, 0.14);
  color: var(--accent-strong);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.promo-track {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 252, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.46);
}

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

.brand-lockup {
  display: inline-flex;
  flex-direction: column;
  gap: 0.12rem;
  text-decoration: none;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: 0.04em;
}

.brand-tag,
.eyebrow,
.review-tag,
.card-kicker,
.routine-label {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav a,
.header-cta {
  text-decoration: none;
  font-size: 0.92rem;
}

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

.header-cta {
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  box-shadow: 0 10px 25px rgba(121, 83, 97, 0.08);
}

.hero,
.results,
.features,
.comparison,
.audience,
.reviews,
.offer,
.faq,
.footer-shell {
  position: relative;
}

.hero {
  display: grid;
  gap: 2rem;
  padding: 3.2rem 0 3.8rem;
}

.hero-copy {
  max-width: 40rem;
}

.hero h1,
.section h2,
.panel-copy h3,
.purchase-card h2,
.routine-card h3,
.offer-card h3,
.feature-card h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(3.25rem, 8vw, 6.4rem);
  max-width: 10ch;
}

.section h2,
.offer-highlight h2 {
  font-size: clamp(2.2rem, 4.2vw, 4.1rem);
  max-width: 13ch;
}

.panel-copy h3,
.purchase-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.routine-card h3,
.offer-card h3,
.feature-card h3 {
  font-size: 1.4rem;
}

.hero-text,
.section-text,
.hero-quote,
.fine-print,
.purchase-note,
.trust-list,
.bundle-box,
.benefit-card p,
.routine-card li,
.study-card p,
.feature-card p,
.comparison-row span,
.panel-copy p,
.use-card p,
.review-card p,
.review-meta,
.offer-card p,
.faq-item p,
.footer-copy p,
.microcopy {
  color: var(--text-muted);
  line-height: 1.72;
}

.hero-actions,
.purchase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.75rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 18px 32px rgba(166, 75, 105, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--line);
}

.hero-proof {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.35rem;
}

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(124, 86, 101, 0.08);
}

.stars {
  color: var(--gold);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.hero-quote {
  max-width: 34rem;
  margin: 0;
}

.hero-quote span {
  display: block;
  margin-top: 0.35rem;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
}

.hero-metrics,
.study-grid,
.feature-grid,
.review-grid,
.offer-grid {
  display: grid;
  gap: 1rem;
}

.metric-card,
.benefit-card,
.gallery-card,
.routine-card,
.study-card,
.feature-card,
.comparison-shell,
.audience-shell,
.review-card,
.offer-highlight,
.offer-card,
.faq-item,
.footer-shell,
.purchase-card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.metric-card {
  padding: 1.15rem 1.2rem;
  border-radius: 22px;
}

.metric-card strong {
  display: block;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.metric-card span {
  color: var(--text-muted);
  font-size: 0.96rem;
}

.fine-print {
  margin: 1rem 0 0;
  font-size: 0.82rem;
}

.hero-aside {
  display: grid;
  gap: 1rem;
}

.product-stage {
  position: relative;
  overflow: hidden;
  padding: 2rem 1.1rem 1.1rem;
  border-radius: var(--radius-xl);
  min-height: 31rem;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.96), transparent 28%),
    radial-gradient(circle at 82% 24%, rgba(255, 223, 232, 0.74), transparent 20%),
    radial-gradient(circle at 50% 80%, rgba(248, 231, 238, 0.86), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(249, 231, 238, 0.84));
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255, 255, 255, 0.86);
}

.product-stage::before,
.product-stage::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 50%;
  pointer-events: none;
}

.product-stage::before {
  top: 3rem;
  right: -2rem;
  width: 11rem;
  height: 11rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0));
}

.product-stage::after {
  left: -2rem;
  bottom: 2rem;
  width: 14rem;
  height: 14rem;
  background: radial-gradient(circle, rgba(255, 223, 232, 0.58), rgba(255, 223, 232, 0));
}

.stage-chip {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(118, 82, 97, 0.1);
  color: var(--accent-strong);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stage-chip-alt {
  top: auto;
  bottom: 5.5rem;
  left: 1rem;
}

.stage-chip-low {
  top: 5rem;
  left: auto;
  right: 1rem;
}

.product-render {
  position: relative;
  z-index: 1;
  width: min(100%, 41rem);
  margin: 2rem auto 0;
  animation: float 7s ease-in-out infinite;
}

.product-render-frame {
  position: relative;
  z-index: 1;
  display: block;
}

.product-photo {
  object-fit: contain;
  filter: drop-shadow(0 34px 42px rgba(122, 82, 98, 0.18));
}

.render-shadow {
  fill: rgba(115, 78, 95, 0.14);
}

.attachment circle,
.attachment rect {
  fill: var(--attachment);
}

.attachment-core {
  fill: var(--attachment-core);
}

.dock-stem {
  fill: rgba(235, 216, 224, 0.94);
}

.dryer-body {
  fill: var(--dryer-shell);
}

.dryer-rim {
  fill: var(--dryer-rim);
}

.dryer-core {
  fill: var(--dryer-core);
}

.dryer-ring {
  fill: var(--dryer-ring);
}

.dryer-handle {
  fill: var(--dryer-handle);
}

.dryer-gloss {
  fill: rgba(255, 255, 255, 0.5);
}

.stage-caption {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-top: -0.75rem;
}

.stage-caption span,
.bundle-items span,
.footer-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  color: var(--text-muted);
  font-size: 0.86rem;
}

.purchase-card {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
}

.price {
  margin: 0.5rem 0 0.75rem;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.price span {
  display: block;
  margin-top: 0.45rem;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.finish-selector {
  display: grid;
  gap: 0.7rem;
  margin: 1.25rem 0 0.9rem;
}

.finish-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 3rem;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.finish-button.is-active {
  border-color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(122, 85, 100, 0.1);
  transform: translateY(-1px);
}

.finish-dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 1px solid rgba(58, 47, 54, 0.08);
}

.finish-dot-blush {
  background: linear-gradient(135deg, #ffe9f1, #d88ca3);
}

.finish-dot-bone {
  background: linear-gradient(135deg, #fffaf6, #d6bfb2);
}

.finish-copy {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.finish-copy strong {
  color: var(--text);
}

.trust-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.trust-list li {
  position: relative;
  padding-left: 1.2rem;
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--accent);
}

.bundle-box {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: var(--surface-tint);
  border: 1px solid rgba(255, 255, 255, 0.82);
}

.bundle-title {
  margin: 0 0 0.8rem;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.bundle-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.microcopy {
  margin: 1rem 0 0;
  font-size: 0.85rem;
}

.benefit-strip,
.image-gallery,
.results,
.features,
.comparison,
.audience,
.reviews,
.offer,
.faq {
  padding: 1rem 0 4.5rem;
}

.benefit-strip {
  display: grid;
  gap: 1rem;
}

.benefit-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.2rem 1.25rem;
  border-radius: var(--radius-md);
}

.benefit-card strong {
  display: block;
  margin-bottom: 0.35rem;
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), var(--accent-soft));
  color: var(--accent-strong);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.section-heading {
  margin-bottom: 1.5rem;
}

.section-text {
  max-width: 42rem;
}
.image-gallery {
  padding-top: 0.25rem;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
}

.gallery-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.gallery-media {
  display: block;
  background: linear-gradient(180deg, rgba(255, 248, 251, 0.98), rgba(248, 236, 242, 0.88));
}

.gallery-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.gallery-card figcaption {
  display: grid;
  gap: 0.5rem;
  padding: 1rem 1.15rem 1.2rem;
}

.gallery-label {
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
}

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


.routine-grid {
  display: grid;
  gap: 1rem;
}

.routine-card {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
}

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

.routine-card li {
  position: relative;
  padding-left: 1.4rem;
}

.routine-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

.routine-card-problem li::before {
  background: rgba(204, 112, 143, 0.5);
}

.routine-card-solution li::before {
  background: rgba(197, 167, 122, 0.7);
}

.routine-card-problem {
  background: rgba(255, 247, 250, 0.72);
}

.routine-card-solution {
  background: rgba(255, 252, 250, 0.82);
}

.study-grid {
  margin-top: 1rem;
}

.study-card {
  padding: 1.3rem 1.2rem;
  border-radius: var(--radius-md);
}

.study-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 2rem;
  line-height: 1;
}

.feature-grid {
  align-items: stretch;
}

.feature-card {
  position: relative;
  padding: 1.45rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto auto -3.2rem -2.4rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.feature-number {
  margin: 0 0 0.9rem;
  color: var(--accent-strong);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.comparison-shell {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.comparison-row {
  display: grid;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-top: 1px solid var(--line);
}

.comparison-row span:first-child {
  font-weight: 600;
  color: var(--text);
}

.comparison-head {
  background: var(--surface-strong);
  border-top: 0;
  color: var(--accent-strong);
  font-size: 0.92rem;
  letter-spacing: 0.03em;
}

.audience-shell {
  padding: 1.1rem;
  border-radius: var(--radius-xl);
}

.tab-list {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.84);
}

.tab-button {
  min-height: 2.85rem;
  padding: 0 1rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
}

.tab-button.is-active {
  background: #fff;
  box-shadow: 0 12px 24px rgba(123, 86, 101, 0.1);
}

.tab-panel {
  display: grid;
  gap: 1.2rem;
  padding: 1.4rem 0.4rem 0.2rem;
}

.use-grid {
  display: grid;
  gap: 1rem;
}

.use-card {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.84);
}

.use-card strong,
.review-meta span:first-child {
  display: block;
  margin-bottom: 0.35rem;
}

.review-grid {
  align-items: stretch;
}

.review-card {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  border-radius: var(--radius-lg);
}

.review-top,
.review-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.7rem;
}

.review-tag {
  color: var(--accent-strong);
}

.review-meta {
  margin-top: auto;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.offer-highlight {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  margin-bottom: 1rem;
}

.offer-grid {
  align-items: stretch;
}

.offer-card {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
}

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

.faq-item {
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-md);
}

.faq-item summary {
  list-style: none;
  position: relative;
  padding-right: 2rem;
  cursor: pointer;
  font-weight: 600;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -0.1rem;
  color: var(--accent-strong);
  font-size: 1.4rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0.85rem 0 0;
}

.footer {
  padding: 0 0 6rem;
}

.footer-shell {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.86), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 232, 238, 0.88));
}

.footer-copy {
  max-width: 36rem;
}

.footer-actions {
  display: grid;
  gap: 1rem;
  justify-items: start;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.floating-cta {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%) translateY(120%);
  min-width: min(calc(100vw - 2rem), 20rem);
  min-height: 3.4rem;
  padding: 0 1.2rem;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 20px 42px rgba(158, 83, 109, 0.3);
  transition: transform 220ms ease;
  z-index: 25;
}

.floating-cta.is-visible {
  transform: translateX(-50%) translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (min-width: 700px) {
  .finish-selector {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .benefit-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .routine-grid,
  .offer-grid,
  .review-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .comparison-row {
    grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
    align-items: center;
  }

  .tab-panel {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    padding: 1.6rem 0.2rem 0.2rem;
    align-items: start;
  }

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

@media (min-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
    align-items: start;
  }

  .hero-copy {
    padding-right: 1rem;
  }

  .hero-aside {
    position: sticky;
    top: 6.8rem;
  }

  .site-nav {
    justify-content: center;
    flex: 1;
  }
}

@media (min-width: 1100px) {
  .benefit-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

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

@media (max-width: 899px) {
  .site-nav {
    display: none;
  }
}

@media (max-width: 699px) {
  .promo-bar {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .header-shell {
    gap: 0.6rem;
  }

  .brand-tag {
    display: none;
  }

  .header-cta {
    padding: 0.72rem 1rem;
    font-size: 0.86rem;
  }

  .hero {
    padding-top: 2.2rem;
  }

  .product-stage {
    min-height: 25rem;
    padding-top: 4.5rem;
  }

  .product-render {
    margin-top: 0;
  }

  .stage-chip {
    font-size: 0.68rem;
  }

  .stage-chip-alt {
    bottom: auto;
    top: 7.3rem;
    left: 1rem;
  }

  .stage-chip-low {
    right: 1rem;
    left: auto;
  }

  .footer {
    padding-bottom: 7rem;
  }
}

@media (min-width: 901px) {
  .floating-cta {
    display: none;
  }
}

@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;
  }
}
